diff --git a/src/Semi.Avalonia/Locale/ja-jp.axaml b/src/Semi.Avalonia/Locale/ja-jp.axaml new file mode 100644 index 0000000..e9d10f8 --- /dev/null +++ b/src/Semi.Avalonia/Locale/ja-jp.axaml @@ -0,0 +1,24 @@ + + + + + + + + + + 切り取り + コピー + 貼り付け + + ファイル名 + 隠しファイルを表示 + 確認 + キャンセル + 名前 + 更新日時 + 種類 + サイズ + diff --git a/src/Semi.Avalonia/Locale/ja-jp.axaml.cs b/src/Semi.Avalonia/Locale/ja-jp.axaml.cs new file mode 100644 index 0000000..d054d32 --- /dev/null +++ b/src/Semi.Avalonia/Locale/ja-jp.axaml.cs @@ -0,0 +1,8 @@ +using Avalonia.Controls; + +namespace Semi.Avalonia.Locale; + +public class ja_jp: ResourceDictionary +{ + +} diff --git a/src/Semi.Avalonia/Themes/SemiTheme.axaml.cs b/src/Semi.Avalonia/Themes/SemiTheme.axaml.cs index 88268f3..3847f18 100644 --- a/src/Semi.Avalonia/Themes/SemiTheme.axaml.cs +++ b/src/Semi.Avalonia/Themes/SemiTheme.axaml.cs @@ -14,6 +14,7 @@ public class SemiTheme: Styles { { new CultureInfo("zh-cn"), new zh_cn() }, { new CultureInfo("en-us"), new en_us() }, + { new CultureInfo("ja-jp"), new ja_jp() }, }; private readonly IServiceProvider? sp;