Compare commits

...

3 commits

Author SHA1 Message Date
Jouri
b20607894f
Merge b84c9def13 into 538fc25014 2024-07-25 23:20:27 +10:00
Ash
538fc25014 feat(main): Version 2.6.0 2024-07-25 13:20:23 +00:00
JouriR
b84c9def13 feat(i18n): Add Dutch translations 2024-07-08 20:36:18 +02:00
2 changed files with 19 additions and 2 deletions

View file

@ -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"
};
}
}

View file

@ -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";
}
}