Note about language name length

This commit is contained in:
str4d
2016-05-23 11:19:44 +00:00
parent f95100a1ff
commit 804011d18d

View File

@@ -79,6 +79,7 @@ public class ConfigUIHelper extends HelperBase {
* Any language-specific flag added to the icon set must be * Any language-specific flag added to the icon set must be
* added to the top-level build.xml for the updater. * added to the top-level build.xml for the updater.
* As of 0.9.12, ISO 639-2 three-letter codes are supported also. * As of 0.9.12, ISO 639-2 three-letter codes are supported also.
* Note: To avoid truncation, ensure language name is no longer than 17 chars.
*/ */
private static final String langs[][] = { private static final String langs[][] = {
{ "ar", "lang_ar", _x("Arabic"), null }, { "ar", "lang_ar", _x("Arabic"), null },
@@ -109,7 +110,7 @@ public class ConfigUIHelper extends HelperBase {
{ "vi", "vn", _x("Vietnamese"), null }, { "vi", "vn", _x("Vietnamese"), null },
{ "zh", "cn", _x("Chinese"), null }, { "zh", "cn", _x("Chinese"), null },
{ "zh_TW", "tw", _x("Chinese"), "Taiwan" }, { "zh_TW", "tw", _x("Chinese"), "Taiwan" },
{ "xx", "a1", "Debug: Find untagged strings", null }, { "xx", "a1", "Untagged strings", null },
}; };