From 991644f02ba394c79b8a5f0c44a40425293da8a0 Mon Sep 17 00:00:00 2001 From: KrahJohlito Date: Sun, 23 May 2021 09:19:43 +0930 Subject: [PATCH] lang: add a seperate entry for BDM and update english template --- include/lang.h | 3 ++- lng/lang_English.lng | 15 ++++++++------- src/lang.c | 5 +++-- 3 files changed, 13 insertions(+), 10 deletions(-) diff --git a/include/lang.h b/include/lang.h index 8acf2cd6b..8af1face3 100644 --- a/include/lang.h +++ b/include/lang.h @@ -15,7 +15,7 @@ enum _STR_IDS { _STR_EXIT, _STR_SETTINGS, _STR_MENU, - _STR_BDM_GAMES, + _STR_USB_GAMES, _STR_HDD_GAMES, _STR_NET_GAMES, _STR_APPS, @@ -283,6 +283,7 @@ enum _STR_IDS { _STR_INFO_RELEASE, _STR_INFO_DEVELOPER, _STR_INFO_DESCRIPTION, + _STR_BDM_GAMES, LANG_STR_COUNT }; diff --git a/lng/lang_English.lng b/lng/lang_English.lng index 38dd515aa..36b83f08c 100644 --- a/lng/lang_English.lng +++ b/lng/lang_English.lng @@ -82,17 +82,17 @@ Loading config... Saving config... Start Device Refresh -USB Device Start Mode +BDM Device Start Mode HDD Device Start Mode ETH Device Start Mode Applications Start Mode Auto Manual -Start HDL Server -HDL Server starting... -HDL Server running... -Failed to start HDL Server. -HDL Server unloading... +Start NBD Server +NBD Server starting... +NBD Server running... +Failed to start NBD Server. +NBD Server unloading... IGR Path Background Color Text Color @@ -155,7 +155,7 @@ Automatic Refresh About Coders Quality Assurance -USB Prefix Path +BDM Prefix Path Boots custom ELF after an IGR. Value in minute(s), 0 to disable spin down. Automatic HDD Spin Down @@ -300,3 +300,4 @@ Genre Release Developer Description +BDM Games diff --git a/src/lang.c b/src/lang.c index ef24911f7..c275dfdf2 100644 --- a/src/lang.c +++ b/src/lang.c @@ -69,7 +69,7 @@ static char *internalEnglish[LANG_STR_COUNT] = { "Saving config...", "Start Device", "Refresh", - "USB Device Start Mode", + "BDM Device Start Mode", "HDD Device Start Mode", "ETH Device Start Mode", "Applications Start Mode", @@ -142,7 +142,7 @@ static char *internalEnglish[LANG_STR_COUNT] = { "About", "Coders", "Quality Assurance", - "USB Prefix Path", + "BDM Prefix Path", "Boots custom ELF after an IGR.", "Value in minute(s), 0 to disable spin down.", "Automatic HDD Spin Down", @@ -287,6 +287,7 @@ static char *internalEnglish[LANG_STR_COUNT] = { "Release", "Developer", "Description", + "BDM Games", }; static int guiLangID = 0;