Skip to content

Commit

Permalink
feat(i18n): Add Dutch translation
Browse files Browse the repository at this point in the history
Closes #36

Co-authored-by: Ash Logan <[email protected]>
  • Loading branch information
JouriR and ashquarky committed Aug 3, 2024
1 parent bdfb6ca commit 956419a
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/config.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,18 @@ constexpr config_strings get_config_strings(nn::swkbd::LanguageType language) {
.restart_to_apply_action = "再起動して適用",
.need_menu_action = "WiiUメニューからのみ実行可能"
};

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

Expand Down
4 changes: 4 additions & 0 deletions src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,8 @@ static const char *get_nintendo_network_message() {
return "使用 Nintendo Network";
case nn::swkbd::LanguageType::Japanese:
return "ニンテンドーネットワークを使用中";
case nn::swkbd::LanguageType::Dutch:
return "Nintendo Network wordt gebruikt";
}
}

Expand All @@ -141,6 +143,8 @@ static const char *get_pretendo_message() {
return "使用 Pretendo Network";
case nn::swkbd::LanguageType::Japanese:
return "Pretendoネットワークを使用中";
case nn::swkbd::LanguageType::Dutch:
return "Pretendo Network wordt gebruikt";
}
}

Expand Down

0 comments on commit 956419a

Please sign in to comment.