mirror of
https://github.com/PretendoNetwork/Inkay.git
synced 2025-04-02 11:02:05 -04:00
Compare commits
3 commits
5dd1d92a15
...
c1db926840
Author | SHA1 | Date | |
---|---|---|---|
|
c1db926840 | ||
|
538fc25014 | ||
|
fef3284adb |
2 changed files with 18 additions and 2 deletions
|
@ -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メニューからのみ実行可能"
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -49,7 +49,7 @@
|
|||
|
||||
#include <gx2/surface.h>
|
||||
|
||||
#define INKAY_VERSION "v2.5.0"
|
||||
#define INKAY_VERSION "v2.6.0"
|
||||
|
||||
/**
|
||||
Mandatory plugin information.
|
||||
|
@ -59,7 +59,7 @@ WUPS_PLUGIN_NAME("Inkay");
|
|||
WUPS_PLUGIN_DESCRIPTION("Pretendo Network Patcher");
|
||||
WUPS_PLUGIN_VERSION(INKAY_VERSION);
|
||||
WUPS_PLUGIN_AUTHOR("Pretendo contributors");
|
||||
WUPS_PLUGIN_LICENSE("ISC");
|
||||
WUPS_PLUGIN_LICENSE("GPLv3");
|
||||
|
||||
WUPS_USE_STORAGE("inkay");
|
||||
|
||||
|
@ -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ネットワークを使用中";
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue