mirror of
https://github.com/PretendoNetwork/Inkay.git
synced 2025-04-02 11:02:05 -04:00
Compare commits
3 commits
cf7583edd0
...
b20607894f
Author | SHA1 | Date | |
---|---|---|---|
|
b20607894f | ||
|
538fc25014 | ||
|
b84c9def13 |
2 changed files with 19 additions and 2 deletions
|
@ -77,6 +77,7 @@ constexpr config_strings get_config_strings(nn::swkbd::LanguageType language) {
|
|||
.restart_to_apply_action = "Redémarrer pour appliquer",
|
||||
.need_menu_action = "Depuis le menu Wii U seulement",
|
||||
};
|
||||
|
||||
case nn::swkbd::LanguageType::Italian:
|
||||
return {
|
||||
.plugin_name = "Inkay",
|
||||
|
@ -100,6 +101,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::Dutch:
|
||||
return {
|
||||
.plugin_name = "Inkay",
|
||||
.network_category = "Netwerkselectie",
|
||||
.connect_to_network_setting = "Verbind met het Pretendo-netwerk",
|
||||
.other_category = "Overige instellingen",
|
||||
.reset_wwp_setting = "Reset het Wara Wara Plaza",
|
||||
.press_a_action = "Druk A",
|
||||
.restart_to_apply_action = "Herstart om toe te passen",
|
||||
.need_menu_action = "Alleen vanuit het WiiU-menu"
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -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::Dutch:
|
||||
return "Nintendo Network wordt gebruikt";
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -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::Dutch:
|
||||
return "Pretendo Network wordt gebruikt";
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue