feat(i18n): Add German translation (thanks @SteffoSpieler and @BlinkingJarl482)

Add TL note about "Using" vs. "Connected", though I'm willing to change this later
This commit is contained in:
Ash Logan 2024-04-18 11:48:14 +10:00
commit 636354493b

View file

@ -173,6 +173,17 @@ constexpr config_strings get_config_strings(nn::swkbd::LanguageType language) {
.restart_to_apply_action = "Riavvia per applicare",
.need_menu_action = "Solo dal menu WiiU",
};
case nn::swkbd::LanguageType::German:
return {
.plugin_name = "Inkay",
.network_category = "Netzwerkauswahl",
.connect_to_network_setting = "Verbinde zum Pretendo Network",
.other_category = "Andere Einstellungen",
.reset_wwp_setting = "Wara Wara Plaza zurücksetzen",
.press_a_action = "Drücke A",
.restart_to_apply_action = "Neustarten zum Anwenden",
.need_menu_action = "Nur vom Wii U-Menü aus",
};
}
}