annotate src/po/Make_all.mak @ 32499:0d2b75395eda v9.0.1581

patch 9.0.1581: translation does not work for plural argument Commit: https://github.com/vim/vim/commit/a1d5f9f33c68d06475406d6f44d307d5e01adc01 Author: Bram Moolenaar <Bram@vim.org> Date: Sat May 27 13:40:11 2023 +0100 patch 9.0.1581: translation does not work for plural argument Problem: Translation does not work for plural argument. Solution: Use PLURAL_MSG() for errors and with xgettext. (closes https://github.com/vim/vim/issues/12443)
author Bram Moolenaar <Bram@vim.org>
date Sat, 27 May 2023 14:45:04 +0200
parents 2fc568b082ef
children 448aef880252
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
14181
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1 #
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2 # Common po Makefile, defines the list of languages.
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3 #
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
4
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
5 LANGUAGES = \
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
6 af \
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
7 ca \
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
8 cs \
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
9 cs.cp1250 \
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
10 da \
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
11 de \
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
12 en_GB \
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
13 eo \
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
14 es \
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
15 fi \
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
16 fr \
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
17 ga \
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
18 it \
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
19 ja \
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
20 ja.euc-jp \
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
21 ja.sjis \
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
22 ko \
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
23 ko.UTF-8 \
14426
c74a5cf0522f patch 8.1.0227: spaces instead of tabs in makefile
Christian Brabandt <cb@256bit.org>
parents: 14181
diff changeset
24 lv \
14181
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
25 nb \
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
26 nl \
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
27 no \
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
28 pl \
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
29 pl.UTF-8 \
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
30 pl.cp1250 \
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
31 pt_BR \
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
32 ru \
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
33 ru.cp1251 \
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
34 sk \
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
35 sk.cp1250 \
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
36 sr \
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
37 sv \
18456
6d11fc4aa683 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 16289
diff changeset
38 tr \
14181
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
39 uk \
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
40 uk.cp1251 \
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
41 vi \
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
42 zh_CN \
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
43 zh_CN.UTF-8 \
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
44 zh_CN.cp936 \
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
45 zh_TW \
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
46 zh_TW.UTF-8 \
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
47
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
48
16289
b4c7e026685c patch 8.1.1149: building desktop files fails with older msgfmt
Bram Moolenaar <Bram@vim.org>
parents: 14426
diff changeset
49 POFILES = \
b4c7e026685c patch 8.1.1149: building desktop files fails with older msgfmt
Bram Moolenaar <Bram@vim.org>
parents: 14426
diff changeset
50 af.po \
b4c7e026685c patch 8.1.1149: building desktop files fails with older msgfmt
Bram Moolenaar <Bram@vim.org>
parents: 14426
diff changeset
51 ca.po \
b4c7e026685c patch 8.1.1149: building desktop files fails with older msgfmt
Bram Moolenaar <Bram@vim.org>
parents: 14426
diff changeset
52 cs.po \
b4c7e026685c patch 8.1.1149: building desktop files fails with older msgfmt
Bram Moolenaar <Bram@vim.org>
parents: 14426
diff changeset
53 cs.cp1250.po \
b4c7e026685c patch 8.1.1149: building desktop files fails with older msgfmt
Bram Moolenaar <Bram@vim.org>
parents: 14426
diff changeset
54 da.po \
b4c7e026685c patch 8.1.1149: building desktop files fails with older msgfmt
Bram Moolenaar <Bram@vim.org>
parents: 14426
diff changeset
55 de.po \
b4c7e026685c patch 8.1.1149: building desktop files fails with older msgfmt
Bram Moolenaar <Bram@vim.org>
parents: 14426
diff changeset
56 en_GB.po \
b4c7e026685c patch 8.1.1149: building desktop files fails with older msgfmt
Bram Moolenaar <Bram@vim.org>
parents: 14426
diff changeset
57 eo.po \
b4c7e026685c patch 8.1.1149: building desktop files fails with older msgfmt
Bram Moolenaar <Bram@vim.org>
parents: 14426
diff changeset
58 es.po \
b4c7e026685c patch 8.1.1149: building desktop files fails with older msgfmt
Bram Moolenaar <Bram@vim.org>
parents: 14426
diff changeset
59 fi.po \
b4c7e026685c patch 8.1.1149: building desktop files fails with older msgfmt
Bram Moolenaar <Bram@vim.org>
parents: 14426
diff changeset
60 fr.po \
b4c7e026685c patch 8.1.1149: building desktop files fails with older msgfmt
Bram Moolenaar <Bram@vim.org>
parents: 14426
diff changeset
61 ga.po \
b4c7e026685c patch 8.1.1149: building desktop files fails with older msgfmt
Bram Moolenaar <Bram@vim.org>
parents: 14426
diff changeset
62 it.po \
b4c7e026685c patch 8.1.1149: building desktop files fails with older msgfmt
Bram Moolenaar <Bram@vim.org>
parents: 14426
diff changeset
63 ja.po \
b4c7e026685c patch 8.1.1149: building desktop files fails with older msgfmt
Bram Moolenaar <Bram@vim.org>
parents: 14426
diff changeset
64 ja.euc-jp.po \
b4c7e026685c patch 8.1.1149: building desktop files fails with older msgfmt
Bram Moolenaar <Bram@vim.org>
parents: 14426
diff changeset
65 ja.sjis.po \
b4c7e026685c patch 8.1.1149: building desktop files fails with older msgfmt
Bram Moolenaar <Bram@vim.org>
parents: 14426
diff changeset
66 ko.po \
b4c7e026685c patch 8.1.1149: building desktop files fails with older msgfmt
Bram Moolenaar <Bram@vim.org>
parents: 14426
diff changeset
67 ko.UTF-8.po \
b4c7e026685c patch 8.1.1149: building desktop files fails with older msgfmt
Bram Moolenaar <Bram@vim.org>
parents: 14426
diff changeset
68 lv.po \
b4c7e026685c patch 8.1.1149: building desktop files fails with older msgfmt
Bram Moolenaar <Bram@vim.org>
parents: 14426
diff changeset
69 nb.po \
b4c7e026685c patch 8.1.1149: building desktop files fails with older msgfmt
Bram Moolenaar <Bram@vim.org>
parents: 14426
diff changeset
70 nl.po \
b4c7e026685c patch 8.1.1149: building desktop files fails with older msgfmt
Bram Moolenaar <Bram@vim.org>
parents: 14426
diff changeset
71 no.po \
b4c7e026685c patch 8.1.1149: building desktop files fails with older msgfmt
Bram Moolenaar <Bram@vim.org>
parents: 14426
diff changeset
72 pl.po \
b4c7e026685c patch 8.1.1149: building desktop files fails with older msgfmt
Bram Moolenaar <Bram@vim.org>
parents: 14426
diff changeset
73 pl.UTF-8.po \
b4c7e026685c patch 8.1.1149: building desktop files fails with older msgfmt
Bram Moolenaar <Bram@vim.org>
parents: 14426
diff changeset
74 pl.cp1250.po \
b4c7e026685c patch 8.1.1149: building desktop files fails with older msgfmt
Bram Moolenaar <Bram@vim.org>
parents: 14426
diff changeset
75 pt_BR.po \
b4c7e026685c patch 8.1.1149: building desktop files fails with older msgfmt
Bram Moolenaar <Bram@vim.org>
parents: 14426
diff changeset
76 ru.po \
b4c7e026685c patch 8.1.1149: building desktop files fails with older msgfmt
Bram Moolenaar <Bram@vim.org>
parents: 14426
diff changeset
77 ru.cp1251.po \
b4c7e026685c patch 8.1.1149: building desktop files fails with older msgfmt
Bram Moolenaar <Bram@vim.org>
parents: 14426
diff changeset
78 sk.po \
b4c7e026685c patch 8.1.1149: building desktop files fails with older msgfmt
Bram Moolenaar <Bram@vim.org>
parents: 14426
diff changeset
79 sk.cp1250.po \
b4c7e026685c patch 8.1.1149: building desktop files fails with older msgfmt
Bram Moolenaar <Bram@vim.org>
parents: 14426
diff changeset
80 sr.po \
b4c7e026685c patch 8.1.1149: building desktop files fails with older msgfmt
Bram Moolenaar <Bram@vim.org>
parents: 14426
diff changeset
81 sv.po \
18456
6d11fc4aa683 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 16289
diff changeset
82 tr.po \
16289
b4c7e026685c patch 8.1.1149: building desktop files fails with older msgfmt
Bram Moolenaar <Bram@vim.org>
parents: 14426
diff changeset
83 uk.po \
b4c7e026685c patch 8.1.1149: building desktop files fails with older msgfmt
Bram Moolenaar <Bram@vim.org>
parents: 14426
diff changeset
84 uk.cp1251.po \
b4c7e026685c patch 8.1.1149: building desktop files fails with older msgfmt
Bram Moolenaar <Bram@vim.org>
parents: 14426
diff changeset
85 vi.po \
b4c7e026685c patch 8.1.1149: building desktop files fails with older msgfmt
Bram Moolenaar <Bram@vim.org>
parents: 14426
diff changeset
86 zh_CN.po \
b4c7e026685c patch 8.1.1149: building desktop files fails with older msgfmt
Bram Moolenaar <Bram@vim.org>
parents: 14426
diff changeset
87 zh_CN.UTF-8.po \
b4c7e026685c patch 8.1.1149: building desktop files fails with older msgfmt
Bram Moolenaar <Bram@vim.org>
parents: 14426
diff changeset
88 zh_CN.cp936.po \
b4c7e026685c patch 8.1.1149: building desktop files fails with older msgfmt
Bram Moolenaar <Bram@vim.org>
parents: 14426
diff changeset
89 zh_TW.po \
b4c7e026685c patch 8.1.1149: building desktop files fails with older msgfmt
Bram Moolenaar <Bram@vim.org>
parents: 14426
diff changeset
90 zh_TW.UTF-8.po \
b4c7e026685c patch 8.1.1149: building desktop files fails with older msgfmt
Bram Moolenaar <Bram@vim.org>
parents: 14426
diff changeset
91
b4c7e026685c patch 8.1.1149: building desktop files fails with older msgfmt
Bram Moolenaar <Bram@vim.org>
parents: 14426
diff changeset
92
14181
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
93 MOFILES = \
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
94 af.mo \
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
95 ca.mo \
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
96 cs.mo \
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
97 da.mo \
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
98 de.mo \
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
99 en_GB.mo \
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
100 eo.mo \
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
101 es.mo \
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
102 fi.mo \
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
103 fr.mo \
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
104 ga.mo \
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
105 it.mo \
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
106 ja.mo \
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
107 ko.UTF-8.mo \
14426
c74a5cf0522f patch 8.1.0227: spaces instead of tabs in makefile
Christian Brabandt <cb@256bit.org>
parents: 14181
diff changeset
108 lv.mo \
14181
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
109 nb.mo \
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
110 nl.mo \
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
111 no.mo \
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
112 pl.mo \
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
113 pt_BR.mo \
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
114 ru.mo \
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
115 sk.mo \
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
116 sr.mo \
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
117 sv.mo \
18456
6d11fc4aa683 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 16289
diff changeset
118 tr.mo \
14181
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
119 uk.mo \
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
120 vi.mo \
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
121 zh_CN.UTF-8.mo \
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
122 zh_TW.UTF-8.mo \
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
123
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
124
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
125 MOCONVERTED = \
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
126 cs.cp1250.mo \
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
127 ja.euc-jp.mo \
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
128 ja.sjis.mo \
32158
d86042b281df patch 9.0.1410: MacOS: sed fails on .po files
Bram Moolenaar <Bram@vim.org>
parents: 27710
diff changeset
129 ko.mo \
14181
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
130 pl.UTF-8.mo \
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
131 pl.cp1250.mo \
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
132 ru.cp1251.mo \
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
133 sk.cp1250.mo \
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
134 uk.cp1251.mo \
27708
bb1a3e598a86 patch 8.2.4380: small differences between Chinese translation files
Bram Moolenaar <Bram@vim.org>
parents: 18456
diff changeset
135 zh_CN.mo \
14181
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
136 zh_CN.cp936.mo \
32158
d86042b281df patch 9.0.1410: MacOS: sed fails on .po files
Bram Moolenaar <Bram@vim.org>
parents: 27710
diff changeset
137 zh_TW.mo \
14181
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
138
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
139
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
140 CHECKFILES = \
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
141 af.ck \
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
142 ca.ck \
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
143 cs.ck \
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
144 cs.cp1250.ck \
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
145 da.ck \
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
146 de.ck \
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
147 en_GB.ck \
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
148 eo.ck \
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
149 es.ck \
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
150 fi.ck \
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
151 fr.ck \
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
152 ga.ck \
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
153 it.ck \
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
154 ja.ck \
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
155 ja.euc-jp.ck \
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
156 ja.sjis.ck \
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
157 ko.UTF-8.ck \
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
158 ko.ck \
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
159 lv.ck \
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
160 nb.ck \
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
161 nl.ck \
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
162 no.ck \
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
163 pl.UTF-8.ck \
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
164 pl.ck \
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
165 pl.cp1250.ck \
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
166 pt_BR.ck \
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
167 ru.ck \
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
168 ru.cp1251.ck \
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
169 sk.ck \
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
170 sk.cp1250.ck \
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
171 sr.ck \
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
172 sv.ck \
18456
6d11fc4aa683 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 16289
diff changeset
173 tr.ck \
14181
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
174 uk.ck \
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
175 uk.cp1251.ck \
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
176 vi.ck \
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
177 zh_CN.UTF-8.ck \
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
178 zh_CN.ck \
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
179 zh_CN.cp936.ck \
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
180 zh_TW.UTF-8.ck \
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
181 zh_TW.ck \
a36fb263c35e patch 8.1.0108: no Danish translations
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
182
32485
2fc568b082ef patch 9.0.1574: MS-Windows: list of translation input files incomplete
Bram Moolenaar <Bram@vim.org>
parents: 32158
diff changeset
183 PO_VIM_INPUTLIST = \
2fc568b082ef patch 9.0.1574: MS-Windows: list of translation input files incomplete
Bram Moolenaar <Bram@vim.org>
parents: 32158
diff changeset
184 ../../runtime/optwin.vim \
2fc568b082ef patch 9.0.1574: MS-Windows: list of translation input files incomplete
Bram Moolenaar <Bram@vim.org>
parents: 32158
diff changeset
185 ../../runtime/defaults.vim
2fc568b082ef patch 9.0.1574: MS-Windows: list of translation input files incomplete
Bram Moolenaar <Bram@vim.org>
parents: 32158
diff changeset
186
2fc568b082ef patch 9.0.1574: MS-Windows: list of translation input files incomplete
Bram Moolenaar <Bram@vim.org>
parents: 32158
diff changeset
187 PO_VIM_JSLIST = \
2fc568b082ef patch 9.0.1574: MS-Windows: list of translation input files incomplete
Bram Moolenaar <Bram@vim.org>
parents: 32158
diff changeset
188 optwin.js \
2fc568b082ef patch 9.0.1574: MS-Windows: list of translation input files incomplete
Bram Moolenaar <Bram@vim.org>
parents: 32158
diff changeset
189 defaults.js
2fc568b082ef patch 9.0.1574: MS-Windows: list of translation input files incomplete
Bram Moolenaar <Bram@vim.org>
parents: 32158
diff changeset
190
32499
0d2b75395eda patch 9.0.1581: translation does not work for plural argument
Bram Moolenaar <Bram@vim.org>
parents: 32485
diff changeset
191 # Arguments for xgettext to pick up messages to translate from the source code.
0d2b75395eda patch 9.0.1581: translation does not work for plural argument
Bram Moolenaar <Bram@vim.org>
parents: 32485
diff changeset
192 XGETTEXT_KEYWORDS = --keyword=_ --keyword=N_ --keyword=NGETTEXT:1,2 --keyword=PLURAL_MSG:2,4