feat(i18n): Add Portuguese translation

Closes #31

Co-authored-by: Ash Logan <ash@heyquark.com>
This commit is contained in:
Luís 2024-08-03 21:57:15 +10:00 committed by Ash Logan
commit a6fd3783f1
2 changed files with 16 additions and 4 deletions

View file

@ -125,6 +125,18 @@ constexpr config_strings get_config_strings(nn::swkbd::LanguageType language) {
.restart_to_apply_action = "重啓以套用設定",
.need_menu_action = "僅來自WiiU Menu"
};
case nn::swkbd::LanguageType::Portuguese:
return {
.plugin_name = "Inkay",
.network_category = "Selecionar rede",
.connect_to_network_setting = "Conecta-se à Pretendo Network",
.other_category = "Outras configurações",
.reset_wwp_setting = "Resetar Wara Wara Plaza",
.press_a_action = "Aperte A",
.restart_to_apply_action = "Reinicie para aplicar",
.need_menu_action = "Apenas no menu do Wii U"
};
}
}