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