source: josm/trunk/src/org/openstreetmap/josm/tools/LanguageInfo.java@ 12136

Last change on this file since 12136 was 9070, checked in by Don-vip, 8 years ago

Sonar - squid:S2293 - The diamond operator ("<>") should be used

  • Property svn:eol-style set to native
File size: 8.3 KB
RevLine 
[6380]1// License: GPL. For details, see LICENSE file.
[1755]2package org.openstreetmap.josm.tools;
3
[8283]4import java.util.Collection;
5import java.util.LinkedList;
[5275]6import java.util.Locale;
7
[6362]8public final class LanguageInfo {
[7509]9
[6360]10 private LanguageInfo() {
11 // Hide default constructor for utils classes
12 }
[7509]13
[5916]14 /**
15 * Type of the locale to use
16 * @since 5915
17 */
[5915]18 public enum LocaleType {
19 /** The current default language */
20 DEFAULT,
21 /** The current default language, but not english */
22 DEFAULTNOTENGLISH,
23 /** The base language (i.e. pt for pt_BR) */
24 BASELANGUAGE,
25 /** The standard english texts */
26 ENGLISH
[6142]27 }
[2308]28
29 /**
30 * Replies the wiki language prefix for the given locale. The wiki language
31 * prefix has the form 'Xy:' where 'Xy' is a ISO 639 language code in title
[5915]32 * case (or Xy_AB: for sub languages).
[2512]33 *
[6070]34 * @param type the type
[5915]35 * @return the wiki language prefix or {@code null} for {@link LocaleType#BASELANGUAGE}, when
36 * base language is identical to default or english
[5916]37 * @since 5915
[2308]38 */
[6889]39 public static String getWikiLanguagePrefix(LocaleType type) {
[8510]40 if (type == LocaleType.ENGLISH)
[5915]41 return "";
42
43 String code = getJOSMLocaleCode();
[8510]44 if (type == LocaleType.BASELANGUAGE) {
45 if (code.matches("[^_]+_[^_]+")) {
46 code = code.substring(0, 2);
[6223]47 if ("en".equals(code))
[5915]48 return null;
49 } else {
50 return null;
51 }
[8510]52 } else if (type == LocaleType.DEFAULTNOTENGLISH && "en".equals(code)) {
[5915]53 return null;
[8510]54 } else if (code.matches(".+@.+")) {
55 return code.substring(0, 1).toUpperCase(Locale.ENGLISH) + code.substring(1, 2)
[8846]56 + '-' + code.substring(3, 4).toUpperCase(Locale.ENGLISH) + code.substring(4) + ':';
[8227]57 }
[8846]58 return code.substring(0, 1).toUpperCase(Locale.ENGLISH) + code.substring(1) + ':';
[1755]59 }
[2308]60
61 /**
62 * Replies the wiki language prefix for the current locale.
[2512]63 *
[2308]64 * @return the wiki language prefix
65 * @see Locale#getDefault()
[5915]66 * @see #getWikiLanguagePrefix(LocaleType)
[2308]67 */
[6889]68 public static String getWikiLanguagePrefix() {
[5915]69 return getWikiLanguagePrefix(LocaleType.DEFAULT);
[2308]70 }
71
72 /**
73 * Replies the JOSM locale code for the default locale.
[2512]74 *
[2308]75 * @return the JOSM locale code for the default locale
76 * @see #getJOSMLocaleCode(Locale)
77 */
[6889]78 public static String getJOSMLocaleCode() {
[2308]79 return getJOSMLocaleCode(Locale.getDefault());
80 }
81
82 /**
[3418]83 * Replies the locale code used by JOSM for a given locale.
[2512]84 *
[5266]85 * In most cases JOSM uses the 2-character ISO 639 language code ({@link Locale#getLanguage()}
[2308]86 * to identify the locale of a localized resource, but in some cases it may use the
[5266]87 * programmatic name for locales, as replied by {@link Locale#toString()}.
[8404]88 *
[8284]89 * For unknown country codes and variants this function already does fallback to
[8283]90 * internally known translations.
[2512]91 *
[2308]92 * @param locale the locale. Replies "en" if null.
93 * @return the JOSM code for the given locale
94 */
[6889]95 public static String getJOSMLocaleCode(Locale locale) {
[2308]96 if (locale == null) return "en";
[8510]97 for (String full : getLanguageCodes(locale)) {
[8283]98 if ("iw_IL".equals(full))
99 return "he";
100 else if ("in".equals(full))
101 return "id";
102 else if (I18n.hasCode(full)) // catch all non-single codes
103 return full;
104 }
[2308]105
[8283]106 // return single code as fallback
[2308]107 return locale.getLanguage();
[1755]108 }
[2308]109
[4211]110 /**
111 * Replies the locale code used by Java for a given locale.
112 *
[8233]113 * In most cases JOSM and Java uses the same codes, but for some exceptions this is needed.
114 *
[8440]115 * @param localeName the locale. Replies "en" if null.
[8232]116 * @return the Java code for the given locale
117 * @since 8232
118 */
119 public static String getJavaLocaleCode(String localeName) {
120 if (localeName == null) return "en";
121 if ("ca@valencia".equals(localeName)) {
122 localeName = "ca__valencia";
123 } else if ("he".equals(localeName)) {
124 localeName = "iw_IL";
125 } else if ("id".equals(localeName)) {
126 localeName = "in";
127 }
128 return localeName;
129 }
130
131 /**
132 * Replies the display string used by JOSM for a given locale.
133 *
134 * In most cases returns text replied by {@link Locale#getDisplayName()}, for some
135 * locales an override is used (i.e. when unsupported by Java).
136 *
137 * @param locale the locale. Replies "en" if null.
138 * @return the display string for the given locale
139 * @since 8232
140 */
141 public static String getDisplayName(Locale locale) {
142 return locale.getDisplayName();
143 }
144
145 /**
[8233]146 * Replies the locale used by Java for a given language code.
[8232]147 *
[8233]148 * Accepts JOSM and Java codes as input.
[4211]149 *
[5275]150 * @param localeName the locale code.
[4211]151 * @return the resulting locale
152 */
[6889]153 public static Locale getLocale(String localeName) {
[8846]154 int country = localeName.indexOf('_');
155 int variant = localeName.indexOf('@');
[8283]156 if (variant < 0 && country >= 0)
[8846]157 variant = localeName.indexOf('_', country+1);
[4211]158 Locale l;
[8283]159 if (variant > 0 && country > 0) {
160 l = new Locale(localeName.substring(0, country), localeName.substring(country+1, variant), localeName.substring(variant + 1));
161 } else if (variant > 0) {
162 l = new Locale(localeName.substring(0, variant), "", localeName.substring(variant + 1));
163 } else if (country > 0) {
164 l = new Locale(localeName.substring(0, country), localeName.substring(country + 1));
[4211]165 } else {
166 l = new Locale(localeName);
167 }
168 return l;
169 }
170
[8091]171 /**
172 * Check if a new language is better than a previous existing. Can be used in classes where
173 * multiple user supplied language marked strings appear and the best one is searched. Following
174 * priorities: current language, english, any other
175 *
176 * @param oldLanguage the language code of the existing string
177 * @param newLanguage the language code of the new string
178 * @return true if new one is better
179 * @since 8091
180 */
181 public static boolean isBetterLanguage(String oldLanguage, String newLanguage) {
182 if (oldLanguage == null)
183 return true;
184 String want = getJOSMLocaleCode();
185 return want.equals(newLanguage) || (!want.equals(oldLanguage) && newLanguage.startsWith("en"));
186 }
[8404]187
[8091]188 /**
189 * Replies the language prefix for use in XML elements (with a dot appended).
190 *
191 * @return the XML language prefix
192 * @see #getJOSMLocaleCode()
193 */
[6889]194 public static String getLanguageCodeXML() {
[8227]195 String code = getJOSMLocaleCode();
[8846]196 code = code.replace('@', '-');
197 return code+'.';
[1755]198 }
[7509]199
[8091]200 /**
201 * Replies the language prefix for use in manifests (with an underscore appended).
202 *
203 * @return the manifest language prefix
204 * @see #getJOSMLocaleCode()
205 */
[6889]206 public static String getLanguageCodeManifest() {
[8227]207 String code = getJOSMLocaleCode();
[8846]208 code = code.replace('@', '-');
209 return code+'_';
[1755]210 }
[8283]211
212 /**
213 * Replies a list of language codes for local names. Prefixes range from very specific
214 * to more generic.
215 * <ul>
216 * <li>lang_COUNTRY@variant of the current locale</li>
217 * <li>lang@variant of the current locale</li>
218 * <li>lang_COUNTRY of the current locale</li>
219 * <li>lang of the current locale</li>
220 * </ul>
221 *
[8440]222 * @param l the locale to use, <code>null</code> for default locale
[8419]223 * @return list of codes
[8283]224 * @since 8283
225 */
226 public static Collection<String> getLanguageCodes(Locale l) {
[9070]227 Collection<String> list = new LinkedList<>();
[8510]228 if (l == null)
[8283]229 l = Locale.getDefault();
230 String lang = l.getLanguage();
231 String c = l.getCountry();
232 String v = l.getVariant();
[8510]233 if (c.isEmpty())
[8283]234 c = null;
[8510]235 if (v != null && !v.isEmpty()) {
236 if (c != null)
[8846]237 list.add(lang+'_'+c+'@'+v);
238 list.add(lang+'@'+v);
[8283]239 }
[8510]240 if (c != null)
[8846]241 list.add(lang+'_'+c);
[8283]242 list.add(lang);
243 return list;
244 }
[1755]245}
Note: See TracBrowser for help on using the repository browser.