diff options
Diffstat (limited to 'locale/tools')
-rw-r--r-- | locale/tools/src/main.rs | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/locale/tools/src/main.rs b/locale/tools/src/main.rs index 56b81f86..7675b4d6 100644 --- a/locale/tools/src/main.rs +++ b/locale/tools/src/main.rs @@ -46,16 +46,19 @@ static NATIVE_LANGUAGE_NAMES: &[(&str, &str)] = &[ ("fr", "Français"), ("nl", "Nederlands"), ("es", "Español"), - ("eu", "euskara"), + ("eu", "Euskara"), ("ja", "日本語"), ("he", "עִברִית"), ("tr", "Türkçe"), - ("fi", "suomen"), + ("fi", "Suomen"), ("ar", "العربية"), ("zh_Hans", "中文 (简化字)"), ("zh_Hant", "中文 (繁體字)"), ("pl", "Polski"), ("pt", "Português"), + ("it", "Italiano"), + ("ko", "한국인"), + ("el", "ελληνικά"), ]; fn export_load(input: &Path, fallback: Option<PathBuf>) -> Result<BTreeMap<String, String>> { |