comparison src/po/Make_ming.mak @ 14181:a36fb263c35e v8.1.0108

patch 8.1.0108: no Danish translations commit https://github.com/vim/vim/commit/a4a2934e59429e2ff68d478556ad8b2043fb0fda Author: Bram Moolenaar <Bram@vim.org> Date: Sun Jun 24 15:52:56 2018 +0200 patch 8.1.0108: no Danish translations Problem: No Danish translations. Solution: Add Danish message translations. (closes https://github.com/vim/vim/issues/3073) Move list of languages to a common makefile.
author Christian Brabandt <cb@256bit.org>
date Sun, 24 Jun 2018 16:00:07 +0200
parents 378f9f8e6d8f
children aa91480771fe
comparison
equal deleted inserted replaced
14180:92037587bbb3 14181:a36fb263c35e
16 else 16 else
17 VIMRUNTIME = ../../runtime 17 VIMRUNTIME = ../../runtime
18 endif 18 endif
19 endif 19 endif
20 20
21 LANGUAGES = \ 21 # get LANGUAGES, MOFILES and MOCONVERTED
22 af \ 22 include Make_all.mak
23 ca \
24 cs \
25 cs.cp1250 \
26 de \
27 en_GB \
28 eo \
29 es \
30 fi \
31 fr \
32 ga \
33 it \
34 ja \
35 ja.euc-jp \
36 ja.sjis \
37 ko \
38 ko.UTF-8 \
39 nb \
40 nl \
41 no \
42 pl \
43 pl.cp1250 \
44 pl.UTF-8 \
45 pt_BR \
46 ru \
47 ru.cp1251 \
48 sk \
49 sk.cp1250 \
50 sr \
51 sv \
52 uk \
53 uk.cp1251 \
54 vi \
55 zh_CN \
56 zh_CN.cp936 \
57 zh_CN.UTF-8 \
58 zh_TW \
59 zh_TW.UTF-8 \
60
61 MOFILES = \
62 af.mo \
63 ca.mo \
64 cs.cp1250.mo \
65 cs.mo \
66 de.mo \
67 en_GB.mo \
68 eo.mo \
69 es.mo \
70 fi.mo \
71 fr.mo \
72 ga.mo \
73 it.mo \
74 ja.euc-jp.mo \
75 ja.mo \
76 ja.sjis.mo \
77 ko.mo \
78 ko.UTF-8.mo \
79 nb.mo \
80 nl.mo \
81 no.mo \
82 pl.cp1250.mo \
83 pl.mo \
84 pl.UTF-8.mo \
85 pt_BR.mo \
86 ru.cp1251.mo \
87 ru.mo \
88 sk.cp1250.mo \
89 sk.mo \
90 sr.mo \
91 sv.mo \
92 uk.cp1251.mo \
93 uk.mo \
94 vi.mo \
95 zh_CN.mo \
96 zh_CN.cp936.mo \
97 zh_CN.UTF-8.mo \
98 zh_TW.mo \
99 zh_TW.UTF-8.mo \
100 23
101 PACKAGE = vim 24 PACKAGE = vim
102 25
103 # Uncomment one of the lines below or modify it to put the path to your 26 # Uncomment one of the lines below or modify it to put the path to your
104 # gettex binaries; I use the first 27 # gettex binaries; I use the first
133 .PHONY: first_time all install clean $(LANGUAGES) 56 .PHONY: first_time all install clean $(LANGUAGES)
134 57
135 .po.mo: 58 .po.mo:
136 $(MSGFMT) -o $@ $< 59 $(MSGFMT) -o $@ $<
137 60
138 all: $(MOFILES) 61 all: $(MOFILES) $(MOCONVERTED)
139 62
140 first_time: 63 first_time:
141 $(XGETTEXT) --default-domain=$(LANGUAGE) \ 64 $(XGETTEXT) --default-domain=$(LANGUAGE) \
142 --add-comments --keyword=_ --keyword=N_ --keyword=NGETTEXT:1,2 $(wildcard ../*.c) ../if_perl.xs ../GvimExt/gvimext.cpp $(wildcard ../globals.h) ../if_py_both.h ../vim.h 65 --add-comments --keyword=_ --keyword=N_ --keyword=NGETTEXT:1,2 $(wildcard ../*.c) ../if_perl.xs ../GvimExt/gvimext.cpp $(wildcard ../globals.h) ../if_py_both.h ../vim.h
143 66