Skip to content

Commit ef106e6

Browse files
authored
Add Japanese localization (#1157)
* Initial Japanese translation Only a small part was translated * Unspecified words will be in English When new words are added, they will be displayed in English even if Japanese support is delayed. * Expanded translation scope * Expanded translation scope * Proceed with translation with a focus on overall settings * Re-translated the outdated settings screen * Add items that only exist in the latest en_US and remove items that do not exist in en_US * A lot of translation work done * A lot more translation work has been done * ja_JP.axaml has been translated into Japanese * Fixed three incomplete parts of the Japanese translation
1 parent cbc7079 commit ef106e6

File tree

3 files changed

+749
-0
lines changed

3 files changed

+749
-0
lines changed

src/App.axaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
<ResourceInclude x:Key="zh_CN" Source="/Resources/Locales/zh_CN.axaml"/>
2121
<ResourceInclude x:Key="zh_TW" Source="/Resources/Locales/zh_TW.axaml"/>
2222
<ResourceInclude x:Key="es_ES" Source="/Resources/Locales/es_ES.axaml"/>
23+
<ResourceInclude x:Key="ja_JP" Source="/Resources/Locales/ja_JP.axaml"/>
2324
</ResourceDictionary>
2425
</Application.Resources>
2526

src/Models/Locales.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ public class Locale
1717
new Locale("Русский", "ru_RU"),
1818
new Locale("简体中文", "zh_CN"),
1919
new Locale("繁體中文", "zh_TW"),
20+
new Locale("日本語", "ja_JP"),
2021
};
2122

2223
public Locale(string name, string key)

0 commit comments

Comments
 (0)