tdf#156842 increase scale for external PDF data
[LibreOffice.git] / solenv / inc / langlist.mk
blobbae4c50434c80d924821895a60e4d355eeece6c1
2 # This file is part of the LibreOffice project.
4 # This Source Code Form is subject to the terms of the Mozilla Public
5 # License, v. 2.0. If a copy of the MPL was not distributed with this
6 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 # This file incorporates work covered by the following license notice:
10 # Licensed to the Apache Software Foundation (ASF) under one or more
11 # contributor license agreements. See the NOTICE file distributed
12 # with this work for additional information regarding copyright
13 # ownership. The ASF licenses this file to you under the Apache
14 # License, Version 2.0 (the "License"); you may not use this file
15 # except in compliance with the License. You may obtain a copy of
16 # the License at http://www.apache.org/licenses/LICENSE-2.0 .
19 # Complete list of all supported localizations (ISO codes)
20 completelangiso=af \
21 am \
22 ar \
23 as \
24 ast \
25 be \
26 bg \
27 bn \
28 bn-IN \
29 bo \
30 br \
31 brx \
32 bs \
33 ca \
34 ca-valencia \
35 ckb \
36 cs \
37 cy \
38 da \
39 de \
40 dgo \
41 dsb \
42 dz \
43 el \
44 en-GB \
45 en-US \
46 en-ZA \
47 eo \
48 es \
49 et \
50 eu \
51 fa \
52 fi \
53 fr \
54 fur \
55 fy \
56 ga \
57 gd \
58 gl \
59 gu \
60 gug \
61 he \
62 hsb \
63 hi \
64 hr \
65 hu \
66 id \
67 is \
68 it \
69 ja \
70 ka \
71 kab \
72 kk \
73 km \
74 kmr-Latn \
75 kn \
76 ko \
77 kok \
78 ks \
79 lb \
80 lo \
81 lt \
82 lv \
83 mai \
84 mk \
85 ml \
86 mn \
87 mni \
88 mr \
89 my \
90 nb \
91 ne \
92 nl \
93 nn \
94 nr \
95 nso \
96 oc \
97 om \
98 or \
99 pa-IN \
100 pl \
101 pt \
102 pt-BR \
103 ro \
104 ru \
105 rw \
106 sa-IN \
107 sat \
108 sd \
109 sr-Latn \
110 si \
111 sid \
112 sk \
113 sl \
114 sq \
115 sr \
116 ss \
117 st \
118 sv \
119 sw-TZ \
120 szl \
121 ta \
122 te \
123 tg \
124 th \
125 tn \
126 tr \
127 ts \
128 tt \
129 ug \
130 uk \
131 uz \
132 ve \
133 vec \
134 vi \
135 xh \
136 zh-CN \
137 zh-TW \
140 ifneq ($(WITH_LANG),ALL)
141 gb_WITH_LANG=$(WITH_LANG)
142 else
143 # expand ALL based on language list)
144 gb_WITH_LANG=$(completelangiso)
145 endif
146 gb_HELP_LANGS := en-US
148 ifneq ($(ENABLE_RELEASE_BUILD),TRUE)
149 ifneq ($(WITH_LANG),)
150 gb_WITH_LANG += qtz
151 gb_HELP_LANGS += qtz
152 endif
153 endif
155 gb_TRANS_LANGS = $(filter-out en-US,$(filter-out qtz,$(gb_WITH_LANG)))
157 gb_HELP_LANGS += \
158 $(foreach lang,$(filter-out $(WITH_POOR_HELP_LOCALIZATIONS),$(gb_TRANS_LANGS)),\
159 $(if \
160 $(and \
161 $(wildcard $(SRCDIR)/helpcontent2/source/auxiliary/$(lang)),\
162 $(wildcard $(SRCDIR)/translations/source/$(lang)/helpcontent2)),\
163 $(lang)))
165 # Langs that need special handling for registry files. This is done by
166 # MAKE_LANG_SPECIFIC flag in scp.
167 gb_CJK_LANGS := $(filter $(gb_WITH_LANG),ja ko zh-CN zh-TW)
168 gb_CTL_LANGS := $(filter $(gb_WITH_LANG),ar bo dz fa gu he hi km ky-CN lo my ne or pa-IN ta th)
169 gb_CTLSEQCHECK_LANGS := $(filter $(gb_CTL_LANGS),km lo th)
171 # vim: set noet ts=4 sw=4: