Compare commits

...

2 commits

Author SHA1 Message Date
DekoKiyo
5dd1d92a15
Merge fef3284adb into 3f59781bd8 2024-07-24 18:30:59 +09:00
Dekokiyo
fef3284adb 日本語化 2024-06-22 17:44:58 +09:00
2 changed files with 16 additions and 0 deletions

View file

@ -100,6 +100,18 @@ constexpr config_strings get_config_strings(nn::swkbd::LanguageType language) {
.restart_to_apply_action = "Neustarten zum Anwenden",
.need_menu_action = "Nur vom Wii U-Menü aus",
};
case nn::swkbd::LanguageType::Japanese:
return {
.plugin_name = "Inkay",
.network_category = "ネットワークの選択",
.connect_to_network_setting = "Pretendoネットワークに接続",
.other_category = "その他の設定",
.reset_wwp_setting = "わらわら広場をリセット",
.press_a_action = "Aボタンを押す",
.restart_to_apply_action = "再起動して適用",
.need_menu_action = "WiiUメニューからのみ実行可能"
};
}
}

View file

@ -113,6 +113,8 @@ static const char *get_nintendo_network_message() {
return "Usando Nintendo Network";
case nn::swkbd::LanguageType::German:
return "Nutze Nintendo Network";
case nn::swkbd::LanguageType::Japanese:
return "ニンテンドーネットワークを使用中";
}
}
@ -132,6 +134,8 @@ static const char *get_pretendo_message() {
return "Usando Pretendo Network";
case nn::swkbd::LanguageType::German:
return "Nutze Pretendo Network";
case nn::swkbd::LanguageType::Japanese:
return "Pretendoネットワークを使用中";
}
}