source: josm/trunk/src/org/openstreetmap/josm/tools/I18n.java@ 12931

Last change on this file since 12931 was 12931, checked in by Don-vip, 7 years ago

see #14602 - Override digit group separator to be consistent across languages with ISO 80000-1 + checkstyle fixes

  • Property svn:eol-style set to native
File size: 25.4 KB
RevLine 
[8228]1// License: GPL. For details, see LICENSE file.
[626]2package org.openstreetmap.josm.tools;
3
[2754]4import java.io.BufferedInputStream;
[4159]5import java.io.File;
6import java.io.FileInputStream;
[6248]7import java.io.IOException;
[2754]8import java.io.InputStream;
[8975]9import java.lang.annotation.Retention;
10import java.lang.annotation.RetentionPolicy;
[2754]11import java.net.URL;
[7082]12import java.nio.charset.StandardCharsets;
[626]13import java.text.MessageFormat;
[4394]14import java.util.ArrayList;
[1065]15import java.util.Arrays;
[4394]16import java.util.Collection;
[10647]17import java.util.Comparator;
[2754]18import java.util.HashMap;
[6248]19import java.util.Locale;
[6316]20import java.util.Map;
[4159]21import java.util.jar.JarInputStream;
22import java.util.zip.ZipEntry;
[2017]23
[626]24/**
25 * Internationalisation support.
[1169]26 *
[626]27 * @author Immanuel.Scholz
28 */
[6362]29public final class I18n {
[6830]30
[8975]31 /**
32 * This annotates strings which do not permit a clean i18n. This is mostly due to strings
33 * containing two nouns which can occur in singular or plural form.
[8989]34 * <br>
35 * No behaviour is associated with this annotation.
[8975]36 */
37 @Retention(RetentionPolicy.SOURCE)
38 public @interface QuirkyPluralString {
39 }
40
[6360]41 private I18n() {
42 // Hide default constructor for utils classes
43 }
[6830]44
[7894]45 /**
[7901]46 * Enumeration of possible plural modes. It allows us to identify and implement logical conditions of
47 * plural forms defined on <a href="https://help.launchpad.net/Translations/PluralForms">Launchpad</a>.
[7894]48 * See <a href="http://www.unicode.org/cldr/charts/latest/supplemental/language_plural_rules.html">CLDR</a>
[7901]49 * for another complete list.
[7894]50 * @see #pluralEval
51 */
[7893]52 private enum PluralMode {
[7894]53 /** Plural = Not 1. This is the default for many languages, including English: 1 day, but 0 days or 2 days. */
54 MODE_NOTONE,
55 /** No plural. Mainly for Asian languages (Indonesian, Chinese, Japanese, ...) */
56 MODE_NONE,
57 /** Plural = Greater than 1. For some latin languages (French, Brazilian Portuguese) */
58 MODE_GREATERONE,
59 /* Special mode for
60 * <a href="http://www.unicode.org/cldr/charts/latest/supplemental/language_plural_rules.html#ar">Arabic</a>.*
61 MODE_AR,*/
62 /** Special mode for
63 * <a href="http://www.unicode.org/cldr/charts/latest/supplemental/language_plural_rules.html#cs">Czech</a>. */
64 MODE_CS,
65 /** Special mode for
66 * <a href="http://www.unicode.org/cldr/charts/latest/supplemental/language_plural_rules.html#pl">Polish</a>. */
67 MODE_PL,
68 /* Special mode for
69 * <a href="http://www.unicode.org/cldr/charts/latest/supplemental/language_plural_rules.html#ro">Romanian</a>.*
70 MODE_RO,*/
71 /** Special mode for
[8160]72 * <a href="http://www.unicode.org/cldr/charts/latest/supplemental/language_plural_rules.html#lt">Lithuanian</a>. */
73 MODE_LT,
74 /** Special mode for
[7894]75 * <a href="http://www.unicode.org/cldr/charts/latest/supplemental/language_plural_rules.html#ru">Russian</a>. */
76 MODE_RU,
77 /** Special mode for
78 * <a href="http://www.unicode.org/cldr/charts/latest/supplemental/language_plural_rules.html#sk">Slovak</a>. */
79 MODE_SK,
80 /* Special mode for
81 * <a href="http://www.unicode.org/cldr/charts/latest/supplemental/language_plural_rules.html#sl">Slovenian</a>.*
82 MODE_SL,*/
83 }
84
[8126]85 private static volatile PluralMode pluralMode = PluralMode.MODE_NOTONE; /* english default */
86 private static volatile String loadedCode = "en";
[3340]87
[3328]88
[8840]89 private static volatile Map<String, String> strings;
90 private static volatile Map<String, String[]> pstrings;
[7005]91 private static Map<String, PluralMode> languages = new HashMap<>();
[12931]92 static {
93 //languages.put("ar", PluralMode.MODE_AR);
94 languages.put("ast", PluralMode.MODE_NOTONE);
95 languages.put("bg", PluralMode.MODE_NOTONE);
96 languages.put("be", PluralMode.MODE_RU);
97 languages.put("ca", PluralMode.MODE_NOTONE);
98 languages.put("ca@valencia", PluralMode.MODE_NOTONE);
99 languages.put("cs", PluralMode.MODE_CS);
100 languages.put("da", PluralMode.MODE_NOTONE);
101 languages.put("de", PluralMode.MODE_NOTONE);
102 languages.put("el", PluralMode.MODE_NOTONE);
103 languages.put("en_AU", PluralMode.MODE_NOTONE);
104 languages.put("en_GB", PluralMode.MODE_NOTONE);
105 languages.put("es", PluralMode.MODE_NOTONE);
106 languages.put("et", PluralMode.MODE_NOTONE);
107 //languages.put("eu", PluralMode.MODE_NOTONE);
108 languages.put("fi", PluralMode.MODE_NOTONE);
109 languages.put("fr", PluralMode.MODE_GREATERONE);
110 languages.put("gl", PluralMode.MODE_NOTONE);
111 //languages.put("he", PluralMode.MODE_NOTONE);
112 languages.put("hu", PluralMode.MODE_NOTONE);
113 languages.put("id", PluralMode.MODE_NONE);
114 //languages.put("is", PluralMode.MODE_NOTONE);
115 languages.put("it", PluralMode.MODE_NOTONE);
116 languages.put("ja", PluralMode.MODE_NONE);
117 // fully supported only with Java 8 and later (needs CLDR)
118 languages.put("km", PluralMode.MODE_NONE);
119 languages.put("lt", PluralMode.MODE_LT);
120 languages.put("nb", PluralMode.MODE_NOTONE);
121 languages.put("nl", PluralMode.MODE_NOTONE);
122 languages.put("pl", PluralMode.MODE_PL);
123 languages.put("pt", PluralMode.MODE_NOTONE);
124 languages.put("pt_BR", PluralMode.MODE_GREATERONE);
125 //languages.put("ro", PluralMode.MODE_RO);
126 languages.put("ru", PluralMode.MODE_RU);
127 languages.put("sk", PluralMode.MODE_SK);
128 //languages.put("sl", PluralMode.MODE_SL);
129 languages.put("sv", PluralMode.MODE_NOTONE);
130 //languages.put("tr", PluralMode.MODE_NONE);
131 languages.put("uk", PluralMode.MODE_RU);
132 languages.put("vi", PluralMode.MODE_NONE);
133 languages.put("zh_CN", PluralMode.MODE_NONE);
134 languages.put("zh_TW", PluralMode.MODE_NONE);
135 }
[1065]136
[1169]137 /**
[3461]138 * Translates some text for the current locale.
139 * These strings are collected by a script that runs on the source code files.
140 * After translation, the localizations are distributed with the main program.
[6830]141 * <br>
[7893]142 * For example, <code>tr("JOSM''s default value is ''{0}''.", val)</code>.
[6830]143 * <br>
[5266]144 * Use {@link #trn} for distinguishing singular from plural text, i.e.,
[4394]145 * do not use {@code tr(size == 1 ? "singular" : "plural")} nor
146 * {@code size == 1 ? tr("singular") : tr("plural")}
[3461]147 *
148 * @param text the text to translate.
149 * Must be a string literal. (No constants or local vars.)
150 * Can be broken over multiple lines.
151 * An apostrophe ' must be quoted by another apostrophe.
[4394]152 * @param objects the parameters for the string.
[7893]153 * Mark occurrences in {@code text} with <code>{0}</code>, <code>{1}</code>, ...
[4394]154 * @return the translated string.
155 * @see #trn
156 * @see #trc
157 * @see #trnc
[1169]158 */
[8374]159 public static String tr(String text, Object... objects) {
[4399]160 if (text == null) return null;
[2754]161 return MessageFormat.format(gettext(text, null), objects);
[1169]162 }
[626]163
[3461]164 /**
[4394]165 * Translates some text in a context for the current locale.
166 * There can be different translations for the same text within different contexts.
[3461]167 *
168 * @param context string that helps translators to find an appropriate
[4394]169 * translation for {@code text}.
170 * @param text the text to translate.
171 * @return the translated string.
172 * @see #tr
173 * @see #trn
174 * @see #trnc
[3461]175 */
[8374]176 public static String trc(String context, String text) {
[3461]177 if (context == null)
[3389]178 return tr(text);
179 if (text == null)
180 return null;
[8510]181 return MessageFormat.format(gettext(text, context), (Object) null);
[2179]182 }
183
[10748]184 public static String trcLazy(String context, String text) {
[4144]185 if (context == null)
186 return tr(text);
187 if (text == null)
188 return null;
[10748]189 return MessageFormat.format(gettextLazy(text, context), (Object) null);
[4144]190 }
191
[3461]192 /**
193 * Marks a string for translation (such that a script can harvest
194 * the translatable strings from the source files).
195 *
[7893]196 * For example, <code>
[3461]197 * String[] options = new String[] {marktr("up"), marktr("down")};
[7893]198 * lbl.setText(tr(options[0]));</code>
[4394]199 * @param text the string to be marked for translation.
200 * @return {@code text} unmodified.
[3461]201 */
[8374]202 public static String marktr(String text) {
[1169]203 return text;
204 }
[758]205
[8374]206 public static String marktrc(String context, String text) {
[2225]207 return text;
208 }
209
[3461]210 /**
[4394]211 * Translates some text for the current locale and distinguishes between
212 * {@code singularText} and {@code pluralText} depending on {@code n}.
[6830]213 * <br>
[4394]214 * For instance, {@code trn("There was an error!", "There were errors!", i)} or
[7893]215 * <code>trn("Found {0} error in {1}!", "Found {0} errors in {1}!", i, Integer.toString(i), url)</code>.
[4489]216 *
[4394]217 * @param singularText the singular text to translate.
218 * Must be a string literal. (No constants or local vars.)
219 * Can be broken over multiple lines.
220 * An apostrophe ' must be quoted by another apostrophe.
221 * @param pluralText the plural text to translate.
222 * Must be a string literal. (No constants or local vars.)
223 * Can be broken over multiple lines.
224 * An apostrophe ' must be quoted by another apostrophe.
225 * @param n a number to determine whether {@code singularText} or {@code pluralText} is used.
226 * @param objects the parameters for the string.
[7893]227 * Mark occurrences in {@code singularText} and {@code pluralText} with <code>{0}</code>, <code>{1}</code>, ...
[4394]228 * @return the translated string.
229 * @see #tr
230 * @see #trc
231 * @see #trnc
[3461]232 */
[8374]233 public static String trn(String singularText, String pluralText, long n, Object... objects) {
[4394]234 return MessageFormat.format(gettextn(singularText, pluralText, null, n), objects);
[1169]235 }
[626]236
[3461]237 /**
[4394]238 * Translates some text in a context for the current locale and distinguishes between
239 * {@code singularText} and {@code pluralText} depending on {@code n}.
240 * There can be different translations for the same text within different contexts.
241 *
242 * @param context string that helps translators to find an appropriate
243 * translation for {@code text}.
244 * @param singularText the singular text to translate.
245 * Must be a string literal. (No constants or local vars.)
246 * Can be broken over multiple lines.
247 * An apostrophe ' must be quoted by another apostrophe.
248 * @param pluralText the plural text to translate.
249 * Must be a string literal. (No constants or local vars.)
250 * Can be broken over multiple lines.
251 * An apostrophe ' must be quoted by another apostrophe.
252 * @param n a number to determine whether {@code singularText} or {@code pluralText} is used.
253 * @param objects the parameters for the string.
[7893]254 * Mark occurrences in {@code singularText} and {@code pluralText} with <code>{0}</code>, <code>{1}</code>, ...
[4394]255 * @return the translated string.
256 * @see #tr
257 * @see #trc
258 * @see #trn
[3461]259 */
[8374]260 public static String trnc(String context, String singularText, String pluralText, long n, Object... objects) {
[4394]261 return MessageFormat.format(gettextn(singularText, pluralText, context, n), objects);
[1169]262 }
[1065]263
[8374]264 private static String gettext(String text, String ctx, boolean lazy) {
[2174]265 int i;
[8510]266 if (ctx == null && text.startsWith("_:") && (i = text.indexOf('\n')) >= 0) {
267 ctx = text.substring(2, i-1);
[2754]268 text = text.substring(i+1);
269 }
[8510]270 if (strings != null) {
[8846]271 String trans = strings.get(ctx == null ? text : "_:"+ctx+'\n'+text);
[8510]272 if (trans != null)
[2754]273 return trans;
274 }
[8510]275 if (pstrings != null) {
[6796]276 i = pluralEval(1);
[8846]277 String[] trans = pstrings.get(ctx == null ? text : "_:"+ctx+'\n'+text);
[8510]278 if (trans != null && trans.length > i)
[6796]279 return trans[i];
[3037]280 }
[4394]281 return lazy ? gettext(text, null) : text;
[2174]282 }
283
[8374]284 private static String gettext(String text, String ctx) {
[4394]285 return gettext(text, ctx, false);
286 }
287
[4144]288 /* try without context, when context try fails */
[10748]289 private static String gettextLazy(String text, String ctx) {
[4394]290 return gettext(text, ctx, true);
[4144]291 }
292
[8374]293 private static String gettextn(String text, String plural, String ctx, long num) {
[2754]294 int i;
[8510]295 if (ctx == null && text.startsWith("_:") && (i = text.indexOf('\n')) >= 0) {
296 ctx = text.substring(2, i-1);
[2754]297 text = text.substring(i+1);
298 }
[8510]299 if (pstrings != null) {
[2754]300 i = pluralEval(num);
[8846]301 String[] trans = pstrings.get(ctx == null ? text : "_:"+ctx+'\n'+text);
[8510]302 if (trans != null && trans.length > i)
[2754]303 return trans[i];
304 }
305
306 return num == 1 ? text : plural;
307 }
308
[4477]309 public static String escape(String msg) {
310 if (msg == null) return null;
311 return msg.replace("\'", "\'\'").replace("{", "\'{\'").replace("}", "\'}\'");
312 }
313
[4719]314 private static URL getTranslationFile(String lang) {
[12627]315 return I18n.class.getResource("/data/"+lang.replace('@', '-')+".lang");
[4719]316 }
317
[1169]318 /**
319 * Get a list of all available JOSM Translations.
320 * @return an array of locale objects.
321 */
[8374]322 public static Locale[] getAvailableTranslations() {
[7005]323 Collection<Locale> v = new ArrayList<>(languages.size());
[8510]324 if (getTranslationFile("en") != null) {
[2754]325 for (String loc : languages.keySet()) {
[8510]326 if (getTranslationFile(loc) != null) {
[4211]327 v.add(LanguageInfo.getLocale(loc));
[2754]328 }
[1169]329 }
330 }
[2754]331 v.add(Locale.ENGLISH);
332 Locale[] l = new Locale[v.size()];
[1169]333 l = v.toArray(l);
[10647]334 Arrays.sort(l, Comparator.comparing(Locale::toString));
[1169]335 return l;
336 }
[1802]337
[7893]338 /**
339 * Determines if a language exists for the given code.
340 * @param code The language code
341 * @return {@code true} if a language exists, {@code false} otherwise
342 */
343 public static boolean hasCode(String code) {
[4212]344 return languages.containsKey(code);
345 }
346
[12931]347 static void setupJavaLocaleProviders() {
348 // Look up SPI providers first (for JosmDecimalFormatSymbolsProvider).
349 // Enable CLDR locale provider on Java 8 to get additional languages, such as Khmer.
350 // http://docs.oracle.com/javase/8/docs/technotes/guides/intl/enhancements.8.html#cldr
351 // FIXME: This must be updated after we switch to Java 9.
352 // See https://docs.oracle.com/javase/9/docs/api/java/util/spi/LocaleServiceProvider.html
353 System.setProperty("java.locale.providers", "SPI,JRE,CLDR"); // Don't call Utils.updateSystemProperty to avoid spurious log at startup
354 }
355
[7893]356 /**
357 * I18n initialization.
358 */
359 public static void init() {
[12931]360 setupJavaLocaleProviders();
[7894]361
[1802]362 /* try initial language settings, may be changed later again */
[8510]363 if (!load(LanguageInfo.getJOSMLocaleCode())) {
[2754]364 Locale.setDefault(Locale.ENGLISH);
[2785]365 }
[1802]366 }
367
[7012]368 public static void addTexts(File source) {
369 if ("en".equals(loadedCode))
[4171]370 return;
[8373]371 final String enfile = "data/en.lang";
372 final String langfile = "data/"+loadedCode+".lang";
[7033]373 try (
374 FileInputStream fis = new FileInputStream(source);
375 JarInputStream jar = new JarInputStream(fis)
376 ) {
[4159]377 ZipEntry e;
378 boolean found = false;
[7033]379 while (!found && (e = jar.getNextEntry()) != null) {
[4159]380 String name = e.getName();
[8373]381 if (enfile.equals(name))
[4159]382 found = true;
383 }
[7033]384 if (found) {
385 try (
386 FileInputStream fisTrans = new FileInputStream(source);
387 JarInputStream jarTrans = new JarInputStream(fisTrans)
388 ) {
389 found = false;
[8510]390 while (!found && (e = jarTrans.getNextEntry()) != null) {
[7033]391 String name = e.getName();
392 if (name.equals(langfile))
393 found = true;
394 }
395 if (found)
396 load(jar, jarTrans, true);
[4159]397 }
398 }
[7033]399 } catch (IOException e) {
[5874]400 // Ignore
[12620]401 Logging.trace(e);
[4159]402 }
403 }
404
[7012]405 private static boolean load(String l) {
406 if ("en".equals(l) || "en_US".equals(l)) {
[2785]407 strings = null;
408 pstrings = null;
[4171]409 loadedCode = "en";
[2785]410 pluralMode = PluralMode.MODE_NOTONE;
411 return true;
[2754]412 }
[4719]413 URL en = getTranslationFile("en");
[7012]414 if (en == null)
[2754]415 return false;
[4719]416 URL tr = getTranslationFile(l);
[7012]417 if (tr == null || !languages.containsKey(l)) {
[8283]418 return false;
[2754]419 }
[7033]420 try (
421 InputStream enStream = en.openStream();
422 InputStream trStream = tr.openStream()
423 ) {
[5839]424 if (load(enStream, trStream, false)) {
[4159]425 pluralMode = languages.get(l);
426 loadedCode = l;
427 return true;
428 }
[7033]429 } catch (IOException e) {
[5839]430 // Ignore exception
[12620]431 Logging.trace(e);
[4159]432 }
433 return false;
434 }
[2754]435
[6316]436 private static boolean load(InputStream en, InputStream tr, boolean add) {
437 Map<String, String> s;
438 Map<String, String[]> p;
439 if (add) {
[4159]440 s = strings;
441 p = pstrings;
[6316]442 } else {
[7005]443 s = new HashMap<>();
444 p = new HashMap<>();
[4159]445 }
[2754]446 /* file format:
[4501]447 Files are always a group. English file and translated file must provide identical datasets.
448
[2754]449 for all single strings:
450 {
451 unsigned short (2 byte) stringlength
[4501]452 - length 0 indicates missing translation
453 - length 0xFFFE indicates translation equal to original, but otherwise is equal to length 0
[2754]454 string
455 }
456 unsigned short (2 byte) 0xFFFF (marks end of single strings)
457 for all multi strings:
458 {
459 unsigned char (1 byte) stringcount
[4549]460 - count 0 indicates missing translations
461 - count 0xFE indicates translations equal to original, but otherwise is equal to length 0
[2754]462 for stringcount
463 unsigned short (2 byte) stringlength
464 string
465 }
[2785]466 */
[7893]467 try {
[4159]468 InputStream ens = new BufferedInputStream(en);
469 InputStream trs = new BufferedInputStream(tr);
[2754]470 byte[] enlen = new byte[2];
471 byte[] trlen = new byte[2];
472 boolean multimode = false;
473 byte[] str = new byte[4096];
[8510]474 for (;;) {
475 if (multimode) {
[2754]476 int ennum = ens.read();
477 int trnum = trs.read();
[8510]478 if (trnum == 0xFE) /* marks identical string, handle equally to non-translated */
[4549]479 trnum = 0;
[8510]480 if ((ennum == -1 && trnum != -1) || (ennum != -1 && trnum == -1)) /* files do not match */
[2754]481 return false;
[8510]482 if (ennum == -1) {
[2754]483 break;
[2785]484 }
[2754]485 String[] enstrings = new String[ennum];
[8510]486 for (int i = 0; i < ennum; ++i) {
[2754]487 int val = ens.read(enlen);
[8510]488 if (val != 2) /* file corrupt */
[2754]489 return false;
[8510]490 val = (enlen[0] < 0 ? 256+enlen[0] : enlen[0])*256+(enlen[1] < 0 ? 256+enlen[1] : enlen[1]);
491 if (val > str.length) {
[2754]492 str = new byte[val];
[2785]493 }
[2754]494 int rval = ens.read(str, 0, val);
[8510]495 if (rval != val) /* file corrupt */
[2754]496 return false;
[7082]497 enstrings[i] = new String(str, 0, val, StandardCharsets.UTF_8);
[2754]498 }
[9062]499 String[] trstrings = new String[trnum];
[8510]500 for (int i = 0; i < trnum; ++i) {
[2754]501 int val = trs.read(trlen);
[8510]502 if (val != 2) /* file corrupt */
[2754]503 return false;
[8510]504 val = (trlen[0] < 0 ? 256+trlen[0] : trlen[0])*256+(trlen[1] < 0 ? 256+trlen[1] : trlen[1]);
505 if (val > str.length) {
[2754]506 str = new byte[val];
[2785]507 }
[2754]508 int rval = trs.read(str, 0, val);
[8510]509 if (rval != val) /* file corrupt */
[2754]510 return false;
[7082]511 trstrings[i] = new String(str, 0, val, StandardCharsets.UTF_8);
[2754]512 }
[8510]513 if (trnum > 0 && !p.containsKey(enstrings[0])) {
[2754]514 p.put(enstrings[0], trstrings);
[2785]515 }
[7893]516 } else {
[2754]517 int enval = ens.read(enlen);
518 int trval = trs.read(trlen);
[8510]519 if (enval != trval) /* files do not match */
[2754]520 return false;
[8510]521 if (enval == -1) {
[2754]522 break;
[2785]523 }
[8510]524 if (enval != 2) /* files corrupt */
[2754]525 return false;
[8510]526 enval = (enlen[0] < 0 ? 256+enlen[0] : enlen[0])*256+(enlen[1] < 0 ? 256+enlen[1] : enlen[1]);
527 trval = (trlen[0] < 0 ? 256+trlen[0] : trlen[0])*256+(trlen[1] < 0 ? 256+trlen[1] : trlen[1]);
528 if (trval == 0xFFFE) /* marks identical string, handle equally to non-translated */
[4376]529 trval = 0;
[8510]530 if (enval == 0xFFFF) {
[2754]531 multimode = true;
[8510]532 if (trval != 0xFFFF) /* files do not match */
[2754]533 return false;
[7082]534 } else {
535 if (enval > str.length) {
[2754]536 str = new byte[enval];
[2785]537 }
[7082]538 if (trval > str.length) {
[2754]539 str = new byte[trval];
[2785]540 }
[2754]541 int val = ens.read(str, 0, enval);
[8510]542 if (val != enval) /* file corrupt */
[2754]543 return false;
[7082]544 String enstr = new String(str, 0, enval, StandardCharsets.UTF_8);
545 if (trval != 0) {
[2754]546 val = trs.read(str, 0, trval);
[8510]547 if (val != trval) /* file corrupt */
[2754]548 return false;
[7082]549 String trstr = new String(str, 0, trval, StandardCharsets.UTF_8);
[8510]550 if (!s.containsKey(enstr))
[4159]551 s.put(enstr, trstr);
[2754]552 }
553 }
554 }
555 }
[7893]556 } catch (IOException e) {
[12620]557 Logging.trace(e);
[2754]558 return false;
559 }
[7082]560 if (!s.isEmpty()) {
[2754]561 strings = s;
562 pstrings = p;
563 return true;
564 }
565 return false;
566 }
567
[2358]568 /**
[5266]569 * Sets the default locale (see {@link Locale#setDefault(Locale)} to the local
[2358]570 * given by <code>localName</code>.
[2512]571 *
[3418]572 * Ignored if localeName is null. If the locale with name <code>localName</code>
[2358]573 * isn't found the default local is set to <tt>en</tt> (english).
[2512]574 *
[2358]575 * @param localeName the locale name. Ignored if null.
576 */
[8510]577 public static void set(String localeName) {
[1802]578 if (localeName != null) {
[4211]579 Locale l = LanguageInfo.getLocale(localeName);
580 if (load(LanguageInfo.getJOSMLocaleCode(l))) {
[1802]581 Locale.setDefault(l);
[2754]582 } else {
[7012]583 if (!"en".equals(l.getLanguage())) {
[12620]584 Logging.info(tr("Unable to find translation for the locale {0}. Reverting to {1}.",
[8241]585 LanguageInfo.getDisplayName(l), LanguageInfo.getDisplayName(Locale.getDefault())));
[1802]586 } else {
[2754]587 strings = null;
588 pstrings = null;
[1802]589 }
590 }
591 }
592 }
[2754]593
[7893]594 private static int pluralEval(long n) {
595 switch(pluralMode) {
[3353]596 case MODE_NOTONE: /* bg, da, de, el, en, en_GB, es, et, eu, fi, gl, is, it, iw_IL, nb, nl, sv */
[8345]597 return (n != 1) ? 1 : 0;
[8352]598 case MODE_NONE: /* id, vi, ja, km, tr, zh_CN, zh_TW */
[2754]599 return 0;
600 case MODE_GREATERONE: /* fr, pt_BR */
[8345]601 return (n > 1) ? 1 : 0;
[2754]602 case MODE_CS:
[8345]603 return (n == 1) ? 0 : (((n >= 2) && (n <= 4)) ? 1 : 2);
[4670]604 //case MODE_AR:
605 // return ((n == 0) ? 0 : ((n == 1) ? 1 : ((n == 2) ? 2 : ((((n % 100) >= 3)
606 // && ((n % 100) <= 10)) ? 3 : ((((n % 100) >= 11) && ((n % 100) <= 99)) ? 4 : 5)))));
[2754]607 case MODE_PL:
[8345]608 return (n == 1) ? 0 : (((((n % 10) >= 2) && ((n % 10) <= 4))
609 && (((n % 100) < 10) || ((n % 100) >= 20))) ? 1 : 2);
[3957]610 //case MODE_RO:
611 // return ((n == 1) ? 0 : ((((n % 100) > 19) || (((n % 100) == 0) && (n != 0))) ? 2 : 1));
[8160]612 case MODE_LT:
[8345]613 return ((n % 10) == 1) && ((n % 100) != 11) ? 0 : (((n % 10) >= 2)
614 && (((n % 100) < 10) || ((n % 100) >= 20)) ? 1 : 2);
[2754]615 case MODE_RU:
[8345]616 return (((n % 10) == 1) && ((n % 100) != 11)) ? 0 : (((((n % 10) >= 2)
617 && ((n % 10) <= 4)) && (((n % 100) < 10) || ((n % 100) >= 20))) ? 1 : 2);
[2754]618 case MODE_SK:
[8345]619 return (n == 1) ? 1 : (((n >= 2) && (n <= 4)) ? 2 : 0);
[3957]620 //case MODE_SL:
621 // return (((n % 100) == 1) ? 1 : (((n % 100) == 2) ? 2 : ((((n % 100) == 3)
622 // || ((n % 100) == 4)) ? 3 : 0)));
[2754]623 }
624 return 0;
625 }
[626]626}
Note: See TracBrowser for help on using the repository browser.