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

Last change on this file since 8232 was 8232, checked in by stoecker, 9 years ago

see #11148 - move language stuff to the correct place instead of spreading it in the code

  • Property svn:eol-style set to native
File size: 6.8 KB
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.tools;
3
4import static org.openstreetmap.josm.tools.I18n.trc;
5
6import java.util.Locale;
7
8public final class LanguageInfo {
9
10 private LanguageInfo() {
11 // Hide default constructor for utils classes
12 }
13
14 /**
15 * Type of the locale to use
16 * @since 5915
17 */
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
27 }
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
32 * case (or Xy_AB: for sub languages).
33 *
34 * @param type the type
35 * @return the wiki language prefix or {@code null} for {@link LocaleType#BASELANGUAGE}, when
36 * base language is identical to default or english
37 * @since 5915
38 */
39 public static String getWikiLanguagePrefix(LocaleType type) {
40 if(type == LocaleType.ENGLISH)
41 return "";
42
43 String code = getJOSMLocaleCode();
44 if(type == LocaleType.BASELANGUAGE) {
45 if(code.matches("[^_]+_[^_]+")) {
46 code = code.substring(0,2);
47 if ("en".equals(code))
48 return null;
49 } else {
50 return null;
51 }
52 } else if(type == LocaleType.DEFAULTNOTENGLISH && "en".equals(code)) {
53 return null;
54 } else if(code.matches(".+@.+")) {
55 return code.substring(0,1).toUpperCase() + code.substring(1,2)
56 + "-" + code.substring(3,4).toUpperCase() + code.substring(4) + ":";
57 }
58 return code.substring(0,1).toUpperCase() + code.substring(1) + ":";
59 }
60
61 /**
62 * Replies the wiki language prefix for the current locale.
63 *
64 * @return the wiki language prefix
65 * @see Locale#getDefault()
66 * @see #getWikiLanguagePrefix(LocaleType)
67 */
68 public static String getWikiLanguagePrefix() {
69 return getWikiLanguagePrefix(LocaleType.DEFAULT);
70 }
71
72 /**
73 * Replies the JOSM locale code for the default locale.
74 *
75 * @return the JOSM locale code for the default locale
76 * @see #getJOSMLocaleCode(Locale)
77 */
78 public static String getJOSMLocaleCode() {
79 return getJOSMLocaleCode(Locale.getDefault());
80 }
81
82 /**
83 * Replies the locale code used by JOSM for a given locale.
84 *
85 * In most cases JOSM uses the 2-character ISO 639 language code ({@link Locale#getLanguage()}
86 * to identify the locale of a localized resource, but in some cases it may use the
87 * programmatic name for locales, as replied by {@link Locale#toString()}.
88 *
89 * @param locale the locale. Replies "en" if null.
90 * @return the JOSM code for the given locale
91 */
92 public static String getJOSMLocaleCode(Locale locale) {
93 if (locale == null) return "en";
94 String full = locale.toString();
95 if ("iw_IL".equals(full))
96 return "he";
97 else if ("in".equals(full))
98 return "id";
99 else if ("ca__valencia".equals(full))
100 return "ca@valencia";
101 else if (I18n.hasCode(full)) // catch all non-single codes
102 return full;
103
104 // return single code
105 return locale.getLanguage();
106 }
107
108 /**
109 * Replies the locale code used by Java for a given locale.
110 *
111 * @param locale the locale. Replies "en" if null.
112 * @return the Java code for the given locale
113 * @since 8232
114 */
115 public static String getJavaLocaleCode(String localeName) {
116 if (localeName == null) return "en";
117 if ("ca@valencia".equals(localeName)) {
118 localeName = "ca__valencia";
119 } else if ("he".equals(localeName)) {
120 localeName = "iw_IL";
121 } else if ("id".equals(localeName)) {
122 localeName = "in";
123 }
124 return localeName;
125 }
126
127 /**
128 * Replies the display string used by JOSM for a given locale.
129 *
130 * In most cases returns text replied by {@link Locale#getDisplayName()}, for some
131 * locales an override is used (i.e. when unsupported by Java).
132 *
133 * @param locale the locale. Replies "en" if null.
134 * @return the display string for the given locale
135 * @since 8232
136 */
137 public static String getDisplayName(Locale locale) {
138 String full = locale.toString();
139 if ("ca__valencia".equals(full))
140 return trc("language", "Valencian");
141
142 return locale.getDisplayName();
143 }
144
145 /**
146 * Replies the locale code used by Java for a given locale.
147 *
148 * In most cases JOSM and Java uses the same codes, but for some exceptions this is needed.
149 *
150 * @param localeName the locale code.
151 * @return the resulting locale
152 */
153 public static Locale getLocale(String localeName) {
154 localeName = getJavaLocaleCode(localeName);
155 if ("ca__valencia".equals(localeName)) {
156 return new Locale("ca", "", "valencia");
157 }
158 Locale l;
159 int i = localeName.indexOf('_');
160 if (i > 0) {
161 l = new Locale(localeName.substring(0, i), localeName.substring(i + 1));
162 } else {
163 l = new Locale(localeName);
164 }
165 return l;
166 }
167
168 /**
169 * Check if a new language is better than a previous existing. Can be used in classes where
170 * multiple user supplied language marked strings appear and the best one is searched. Following
171 * priorities: current language, english, any other
172 *
173 * @param oldLanguage the language code of the existing string
174 * @param newLanguage the language code of the new string
175 * @return true if new one is better
176 * @since 8091
177 */
178 public static boolean isBetterLanguage(String oldLanguage, String newLanguage) {
179 if (oldLanguage == null)
180 return true;
181 String want = getJOSMLocaleCode();
182 return want.equals(newLanguage) || (!want.equals(oldLanguage) && newLanguage.startsWith("en"));
183 }
184
185 /**
186 * Replies the language prefix for use in XML elements (with a dot appended).
187 *
188 * @return the XML language prefix
189 * @see #getJOSMLocaleCode()
190 */
191 public static String getLanguageCodeXML() {
192 String code = getJOSMLocaleCode();
193 code = code.replace("@", "-");
194 return code+".";
195 }
196
197 /**
198 * Replies the language prefix for use in manifests (with an underscore appended).
199 *
200 * @return the manifest language prefix
201 * @see #getJOSMLocaleCode()
202 */
203 public static String getLanguageCodeManifest() {
204 String code = getJOSMLocaleCode();
205 code = code.replace("@", "-");
206 return code+"_";
207 }
208}
Note: See TracBrowser for help on using the repository browser.