From a1e9027fe24ce7d51f1cab236e28f1747fd27441 Mon Sep 17 00:00:00 2001 From: Mikael Brunnhede Date: Tue, 26 Sep 2017 14:41:07 +0200 Subject: [PATCH 1/2] Added XMB menu option to show the Settings tab if it has previously been hidden. --- configuration.c | 1 + configuration.h | 1 + intl/msg_hash_chs.h | 16 ++++++++++++- intl/msg_hash_cht.h | 16 ++++++++++++- intl/msg_hash_de.h | 14 +++++++++++ intl/msg_hash_eo.h | 14 +++++++++++ intl/msg_hash_fr.h | 14 +++++++++++ intl/msg_hash_it.h | 14 +++++++++++ intl/msg_hash_ja.h | 16 ++++++++++++- intl/msg_hash_ko.h | 16 ++++++++++++- intl/msg_hash_lbl.h | 4 ++++ intl/msg_hash_nl.h | 14 +++++++++++ intl/msg_hash_pt_br.h | 23 +++++++++++++++++- intl/msg_hash_pt_pt.h | 14 +++++++++++ intl/msg_hash_ru.h | 16 ++++++++++++- intl/msg_hash_us.h | 14 +++++++++++ intl/msg_hash_vn.h | 16 ++++++++++++- menu/cbs/menu_cbs_ok.c | 46 ++++++++++++++++++++++++++++++++++++ menu/cbs/menu_cbs_sublabel.c | 8 +++++++ menu/drivers/xmb.c | 8 +++++++ menu/menu_displaylist.c | 7 ++++++ menu/menu_setting.c | 22 +++++++++++++++++ msg_hash.h | 5 ++++ 23 files changed, 312 insertions(+), 7 deletions(-) diff --git a/configuration.c b/configuration.c index 3f9a0a0abc..96f0153c0e 100644 --- a/configuration.c +++ b/configuration.c @@ -990,6 +990,7 @@ static struct config_path_setting *populate_settings_path(settings_t *settings, /* Paths */ #ifdef HAVE_XMB SETTING_PATH("xmb_font", settings->paths.path_menu_xmb_font, false, NULL, true); + SETTING_PATH("xmb_show_settings_password", settings->paths.menu_xmb_show_settings_password, false, NULL, true); #endif SETTING_PATH("netplay_nickname", settings->paths.username, false, NULL, true); SETTING_PATH("video_filter", settings->paths.path_softfilter_plugin, false, NULL, true); diff --git a/configuration.h b/configuration.h index d4a73dba15..77a0f5f078 100644 --- a/configuration.h +++ b/configuration.h @@ -379,6 +379,7 @@ typedef struct settings #ifdef HAVE_MENU char path_menu_xmb_font[PATH_MAX_LENGTH]; + char menu_xmb_show_settings_password[PATH_MAX_LENGTH]; #endif char path_cheat_database[PATH_MAX_LENGTH]; char path_content_database[PATH_MAX_LENGTH]; diff --git a/intl/msg_hash_chs.h b/intl/msg_hash_chs.h index 7d78d479e4..6f7037f88c 100644 --- a/intl/msg_hash_chs.h +++ b/intl/msg_hash_chs.h @@ -1,4 +1,4 @@ -MSG_HASH( +MSG_HASH( MSG_COMPILER, "编译器" ) @@ -1676,6 +1676,8 @@ MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_ICON_THEME_RETROACTIVE, "RetroActive") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_ICON_THEME_DOTART, "Dot-Art") +MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_MAIN_MENU_ENABLE_SETTINGS, + "Enable Settings Tab") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_MENU_COLOR_THEME, "菜单颜色主题") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_MENU_COLOR_THEME_APPLE_GREEN, @@ -1714,6 +1716,8 @@ MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_MUSIC, "显示音乐页") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_SETTINGS, "显示设置页") +MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_SETTINGS_PASSWORD, + "Set Password For Enabling Settings Tab") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_VIDEO, "显示视频页") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_THEME, @@ -2035,6 +2039,12 @@ MSG_HASH(MSG_INPUT_PRESET_FILENAME, "Preset Filename") MSG_HASH(MSG_INPUT_RENAME_ENTRY, "Rename Title") +MSG_HASH(MSG_INPUT_ENABLE_SETTINGS_PASSWORD, + "Enter Password") +MSG_HASH(MSG_INPUT_ENABLE_SETTINGS_PASSWORD_OK, + "Password correct.") +MSG_HASH(MSG_INPUT_ENABLE_SETTINGS_PASSWORD_NOK, + "Password incorrect.") MSG_HASH(MSG_INTERFACE, "接口") MSG_HASH(MSG_INTERNAL_STORAGE, @@ -2845,6 +2855,8 @@ MSG_HASH(MENU_ENUM_SUBLABEL_MATERIALUI_MENU_COLOR_THEME, "Select a different background color gradient theme.") MSG_HASH(MENU_ENUM_SUBLABEL_MENU_WALLPAPER_OPACITY, "Modify the opacity of the background wallpaper.") +MSG_HASH(MENU_ENUM_SUBLABEL_XMB_MAIN_MENU_ENABLE_SETTINGS, + "Enables the Settings tab. A restart is required for the tab to appear.") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_MENU_COLOR_THEME, "Select a different background color gradient theme.") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_RIBBON_ENABLE, @@ -2861,6 +2873,8 @@ MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_NETPLAY, "Show the netplay tab inside the main menu.") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_SETTINGS, "Show the settings tab inside the main menu.") +MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_SETTINGS_PASSWORD, + "Supplying a password when hiding the settings tab makes it possible to later restore it from the menu, by going to the Main Menu tab, selecting Enable Settings Tab and entering the password.") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_HISTORY, "Show the recent history tab inside the main menu.") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_ADD, diff --git a/intl/msg_hash_cht.h b/intl/msg_hash_cht.h index 41c0f34a4e..bee15e43d4 100644 --- a/intl/msg_hash_cht.h +++ b/intl/msg_hash_cht.h @@ -1,4 +1,4 @@ -MSG_HASH( +MSG_HASH( MSG_COMPILER, "編譯器" ) @@ -1676,6 +1676,8 @@ MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_ICON_THEME_RETROACTIVE, "RetroActive") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_ICON_THEME_DOTART, "Dot-Art") +MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_MAIN_MENU_ENABLE_SETTINGS, + "Enable Settings Tab") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_MENU_COLOR_THEME, "選單顏色主題") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_MENU_COLOR_THEME_APPLE_GREEN, @@ -1714,6 +1716,8 @@ MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_MUSIC, "顯示音樂頁") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_SETTINGS, "顯示設定頁") +MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_SETTINGS_PASSWORD, + "Set Password For Enabling Settings Tab") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_VIDEO, "顯示視訊頁") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_THEME, @@ -2035,6 +2039,12 @@ MSG_HASH(MSG_INPUT_PRESET_FILENAME, "目前檔案") MSG_HASH(MSG_INPUT_RENAME_ENTRY, "Rename Title") +MSG_HASH(MSG_INPUT_ENABLE_SETTINGS_PASSWORD, + "Enter Password") +MSG_HASH(MSG_INPUT_ENABLE_SETTINGS_PASSWORD_OK, + "Password correct.") +MSG_HASH(MSG_INPUT_ENABLE_SETTINGS_PASSWORD_NOK, + "Password incorrect.") MSG_HASH(MSG_INTERFACE, "接口") MSG_HASH(MSG_INTERNAL_STORAGE, @@ -2845,6 +2855,8 @@ MSG_HASH(MENU_ENUM_SUBLABEL_MATERIALUI_MENU_COLOR_THEME, "Select a different background color gradient theme.") MSG_HASH(MENU_ENUM_SUBLABEL_MENU_WALLPAPER_OPACITY, "Modify the opacity of the background wallpaper.") +MSG_HASH(MENU_ENUM_SUBLABEL_XMB_MAIN_MENU_ENABLE_SETTINGS, + "Enables the Settings tab. A restart is required for the tab to appear.") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_MENU_COLOR_THEME, "Select a different background color gradient theme.") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_RIBBON_ENABLE, @@ -2861,6 +2873,8 @@ MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_NETPLAY, "Show the netplay tab inside the main menu.") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_SETTINGS, "Show the settings tab inside the main menu.") +MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_SETTINGS_PASSWORD, + "Supplying a password when hiding the settings tab makes it possible to later restore it from the menu, by going to the Main Menu tab, selecting Enable Settings Tab and entering the password.") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_HISTORY, "Show the recent history tab inside the main menu.") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_ADD, diff --git a/intl/msg_hash_de.h b/intl/msg_hash_de.h index 39e671f9c0..3894f1302c 100644 --- a/intl/msg_hash_de.h +++ b/intl/msg_hash_de.h @@ -1673,6 +1673,8 @@ MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_ICON_THEME_RETROACTIVE, "RetroActive") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_ICON_THEME_DOTART, "Dot-Art") +MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_MAIN_MENU_ENABLE_SETTINGS, + "Enable Settings Tab") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_MENU_COLOR_THEME, "Menü-Farbschema") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_MENU_COLOR_THEME_APPLE_GREEN, @@ -1711,6 +1713,8 @@ MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_MUSIC, "Zeige Tab 'Musik'") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_SETTINGS, "Zeige Tab 'Einstellungen'") +MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_SETTINGS_PASSWORD, + "Set Password For Enabling Settings Tab") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_VIDEO, "Zeige Tab 'Video'") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_NETPLAY, @@ -2035,6 +2039,12 @@ MSG_HASH(MSG_INPUT_PRESET_FILENAME, "Vorlagen-Dateiname") MSG_HASH(MSG_INPUT_RENAME_ENTRY, "Rename Title") +MSG_HASH(MSG_INPUT_ENABLE_SETTINGS_PASSWORD, + "Enter Password") +MSG_HASH(MSG_INPUT_ENABLE_SETTINGS_PASSWORD_OK, + "Password correct.") +MSG_HASH(MSG_INPUT_ENABLE_SETTINGS_PASSWORD_NOK, + "Password incorrect.") MSG_HASH(MSG_INTERFACE, "Netzwerk-Karte") MSG_HASH(MSG_INTERNAL_STORAGE, @@ -2841,6 +2851,8 @@ MSG_HASH(MENU_ENUM_SUBLABEL_MATERIALUI_MENU_COLOR_THEME, "Wähle einen anderen Farbverlauf für das Hintergrundbild.") MSG_HASH(MENU_ENUM_SUBLABEL_MENU_WALLPAPER_OPACITY, "Ändere die Transparenz des Hintergrundbildes.") +MSG_HASH(MENU_ENUM_SUBLABEL_XMB_MAIN_MENU_ENABLE_SETTINGS, + "Enables the Settings tab. A restart is required for the tab to appear.") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_MENU_COLOR_THEME, "Wähle einen anderen Farbverlauf für das Hintergrundbild.") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_RIBBON_ENABLE, @@ -2857,6 +2869,8 @@ MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_NETPLAY, "Zeigen den Tab 'Netplay' im Hauptmenü an.") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_SETTINGS, "Zeige den Tab 'Einstellungen' im Hauptmenü an") +MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_SETTINGS_PASSWORD, + "Supplying a password when hiding the settings tab makes it possible to later restore it from the menu, by going to the Main Menu tab, selecting Enable Settings Tab and entering the password.") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_HISTORY, "Zeige den Tab 'Verlauf' im Hauptmenü an.") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_ADD, diff --git a/intl/msg_hash_eo.h b/intl/msg_hash_eo.h index f3fddd60a1..1d24d3598c 100644 --- a/intl/msg_hash_eo.h +++ b/intl/msg_hash_eo.h @@ -1572,6 +1572,8 @@ MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_ICON_THEME_RETROACTIVE, "RetroActive") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_ICON_THEME_DOTART, "Dot-Art") +MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_MAIN_MENU_ENABLE_SETTINGS, + "Enable Settings Tab") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_MENU_COLOR_THEME, "Menu Color Theme") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_MENU_COLOR_THEME_APPLE_GREEN, @@ -1608,6 +1610,8 @@ MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_MUSIC, "Display Music Tab") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_SETTINGS, "Display Settings Tab") +MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_SETTINGS_PASSWORD, + "Set Password For Enabling Settings Tab") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_VIDEO, "Display Video Tab") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_THEME, @@ -1924,6 +1928,12 @@ MSG_HASH(MSG_INPUT_PRESET_FILENAME, "Preset Filename") MSG_HASH(MSG_INPUT_RENAME_ENTRY, "Rename Title") +MSG_HASH(MSG_INPUT_ENABLE_SETTINGS_PASSWORD, + "Enter Password") +MSG_HASH(MSG_INPUT_ENABLE_SETTINGS_PASSWORD_OK, + "Password correct.") +MSG_HASH(MSG_INPUT_ENABLE_SETTINGS_PASSWORD_NOK, + "Password incorrect.") MSG_HASH(MSG_INTERFACE, "Interface") MSG_HASH(MSG_INTERNAL_STORAGE, @@ -2706,6 +2716,8 @@ MSG_HASH(MENU_ENUM_SUBLABEL_MATERIALUI_MENU_COLOR_THEME, "Select a different background color gradient theme.") MSG_HASH(MENU_ENUM_SUBLABEL_MENU_WALLPAPER_OPACITY, "Modify the opacity of the background wallpaper.") +MSG_HASH(MENU_ENUM_SUBLABEL_XMB_MAIN_MENU_ENABLE_SETTINGS, + "Enables the Settings tab. A restart is required for the tab to appear.") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_MENU_COLOR_THEME, "Select a different background color gradient theme.") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_RIBBON_ENABLE, @@ -2724,6 +2736,8 @@ MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_NETPLAY, "Show the netplay tab inside the main menu.") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_SETTINGS, "Show the settings tab inside the main menu.") +MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_SETTINGS_PASSWORD, + "Supplying a password when hiding the settings tab makes it possible to later restore it from the menu, by going to the Main Menu tab, selecting Enable Settings Tab and entering the password.") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_HISTORY, "Show the recent history tab inside the main menu.") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_ADD, diff --git a/intl/msg_hash_fr.h b/intl/msg_hash_fr.h index e93f65c2f4..4005d86d89 100644 --- a/intl/msg_hash_fr.h +++ b/intl/msg_hash_fr.h @@ -1697,6 +1697,8 @@ MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_ICON_THEME_RETROACTIVE, "RetroActive") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_ICON_THEME_DOTART, "Dot-Art") +MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_MAIN_MENU_ENABLE_SETTINGS, + "Enable Settings Tab") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_MENU_COLOR_THEME, "Palette du menu") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_MENU_COLOR_THEME_APPLE_GREEN, @@ -1733,6 +1735,8 @@ MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_MUSIC, "Afficher l'onglet Musique") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_SETTINGS, "Afficher l'onglet Paramètres") +MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_SETTINGS_PASSWORD, + "Set Password For Enabling Settings Tab") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_VIDEO, "Afficher l'onglet Vidéo") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_THEME, @@ -2055,6 +2059,12 @@ MSG_HASH(MSG_INPUT_PRESET_FILENAME, "Nom du fichier de pré-réglage") MSG_HASH(MSG_INPUT_RENAME_ENTRY, "Rename Title") +MSG_HASH(MSG_INPUT_ENABLE_SETTINGS_PASSWORD, + "Enter Password") +MSG_HASH(MSG_INPUT_ENABLE_SETTINGS_PASSWORD_OK, + "Password correct.") +MSG_HASH(MSG_INPUT_ENABLE_SETTINGS_PASSWORD_NOK, + "Password incorrect.") MSG_HASH(MSG_INTERFACE, "Interface") MSG_HASH(MSG_INTERNAL_STORAGE, @@ -2877,6 +2887,8 @@ MSG_HASH(MENU_ENUM_SUBLABEL_MATERIALUI_MENU_COLOR_THEME, "Select a different background color gradient theme.") MSG_HASH(MENU_ENUM_SUBLABEL_MENU_WALLPAPER_OPACITY, "Modify the opacity of the background wallpaper.") +MSG_HASH(MENU_ENUM_SUBLABEL_XMB_MAIN_MENU_ENABLE_SETTINGS, + "Enables the Settings tab. A restart is required for the tab to appear.") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_MENU_COLOR_THEME, "Select a different background color gradient theme.") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_RIBBON_ENABLE, @@ -2893,6 +2905,8 @@ MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_NETPLAY, "Affiche l'onglet de jeu en réseau dans le menu principal.") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_SETTINGS, "Affiche l'onglet ces réglages dans le menu principal.") +MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_SETTINGS_PASSWORD, + "Supplying a password when hiding the settings tab makes it possible to later restore it from the menu, by going to the Main Menu tab, selecting Enable Settings Tab and entering the password.") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_HISTORY, "Affiche l'onglet de l'historique dans le menu principal.") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_ADD, diff --git a/intl/msg_hash_it.h b/intl/msg_hash_it.h index 5cb4f50653..11b432385e 100644 --- a/intl/msg_hash_it.h +++ b/intl/msg_hash_it.h @@ -1723,6 +1723,8 @@ MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_ICON_THEME_RETROACTIVE, "RetroAttivo") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_ICON_THEME_DOTART, "Dot-Art") +MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_MAIN_MENU_ENABLE_SETTINGS, + "Enable Settings Tab") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_MENU_COLOR_THEME, "Colore del menu") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_MENU_COLOR_THEME_APPLE_GREEN, @@ -1763,6 +1765,8 @@ MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_MUSIC, "Visualizza colonna Musica") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_SETTINGS, "Visualizza colonna Impostazioni") +MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_SETTINGS_PASSWORD, + "Set Password For Enabling Settings Tab") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_VIDEO, "Visualizza colonna Video") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_NETPLAY, @@ -2093,6 +2097,12 @@ MSG_HASH(MSG_INPUT_PRESET_FILENAME, "Nome del file predefinito") MSG_HASH(MSG_INPUT_RENAME_ENTRY, "Rinomina Titolo") +MSG_HASH(MSG_INPUT_ENABLE_SETTINGS_PASSWORD, + "Enter Password") +MSG_HASH(MSG_INPUT_ENABLE_SETTINGS_PASSWORD_OK, + "Password correct.") +MSG_HASH(MSG_INPUT_ENABLE_SETTINGS_PASSWORD_NOK, + "Password incorrect.") MSG_HASH(MSG_INTERFACE, "Interfaccia") MSG_HASH(MSG_INTERNAL_STORAGE, @@ -2923,6 +2933,8 @@ MSG_HASH(MENU_ENUM_SUBLABEL_MATERIALUI_MENU_COLOR_THEME, "Seleziona uno sfondo differente con colore sfumato nel tema.") MSG_HASH(MENU_ENUM_SUBLABEL_MENU_WALLPAPER_OPACITY, "Modifica l'opacità dello sfondo") +MSG_HASH(MENU_ENUM_SUBLABEL_XMB_MAIN_MENU_ENABLE_SETTINGS, + "Enables the Settings tab. A restart is required for the tab to appear.") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_MENU_COLOR_THEME, "Seleziona un colore di sfondo differente nel tema.") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_RIBBON_ENABLE, @@ -2941,6 +2953,8 @@ MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_NETPLAY, "Mostra la colonna camere netplay all'interno del menu principale") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_SETTINGS, "Mostra la colonna impostazioni all'interno del menu principale") +MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_SETTINGS_PASSWORD, + "Supplying a password when hiding the settings tab makes it possible to later restore it from the menu, by going to the Main Menu tab, selecting Enable Settings Tab and entering the password.") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_HISTORY, "Mostra la colonna cronologia all'interno del menu principale.") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_ADD, diff --git a/intl/msg_hash_ja.h b/intl/msg_hash_ja.h index 3b7053e440..8a94a68f07 100644 --- a/intl/msg_hash_ja.h +++ b/intl/msg_hash_ja.h @@ -1,4 +1,4 @@ -#if defined(_MSC_VER) && !defined(_XBOX) +#if defined(_MSC_VER) && !defined(_XBOX) /* https://support.microsoft.com/en-us/kb/980263 */ #pragma execution_character_set("utf-8") #endif @@ -1719,6 +1719,8 @@ MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_ICON_THEME_RETROACTIVE, "レトロアクティブ") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_ICON_THEME_DOTART, "ドット絵") +MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_MAIN_MENU_ENABLE_SETTINGS, + "Enable Settings Tab") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_MENU_COLOR_THEME, "メニューの色テーマ") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_MENU_COLOR_THEME_APPLE_GREEN, @@ -1757,6 +1759,8 @@ MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_MUSIC, "音楽タブを表示") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_SETTINGS, "設定タブを表示") +MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_SETTINGS_PASSWORD, + "Set Password For Enabling Settings Tab") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_VIDEO, "ビデオタブを表示") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_NETPLAY, @@ -2081,6 +2085,12 @@ MSG_HASH(MSG_INPUT_PRESET_FILENAME, "Preset Filename") MSG_HASH(MSG_INPUT_RENAME_ENTRY, "Rename Title") +MSG_HASH(MSG_INPUT_ENABLE_SETTINGS_PASSWORD, + "Enter Password") +MSG_HASH(MSG_INPUT_ENABLE_SETTINGS_PASSWORD_OK, + "Password correct.") +MSG_HASH(MSG_INPUT_ENABLE_SETTINGS_PASSWORD_NOK, + "Password incorrect.") MSG_HASH(MSG_INTERFACE, "インタフェース") MSG_HASH(MSG_INTERNAL_STORAGE, @@ -2865,6 +2875,8 @@ MSG_HASH(MENU_ENUM_SUBLABEL_MATERIALUI_MENU_COLOR_THEME, "Select a different background color gradient theme.") MSG_HASH(MENU_ENUM_SUBLABEL_MENU_WALLPAPER_OPACITY, "Modify the opacity of the background wallpaper.") +MSG_HASH(MENU_ENUM_SUBLABEL_XMB_MAIN_MENU_ENABLE_SETTINGS, + "Enables the Settings tab. A restart is required for the tab to appear.") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_MENU_COLOR_THEME, "Select a different background color gradient theme.") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_RIBBON_ENABLE, @@ -2881,6 +2893,8 @@ MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_NETPLAY, "メニューにネットプレイタブを表示する。") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_SETTINGS, "メニューに設定タブを表示する。") +MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_SETTINGS_PASSWORD, + "Supplying a password when hiding the settings tab makes it possible to later restore it from the menu, by going to the Main Menu tab, selecting Enable Settings Tab and entering the password.") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_HISTORY, "メニューに履歴タブを表示する。") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_ADD, diff --git a/intl/msg_hash_ko.h b/intl/msg_hash_ko.h index a9cc790329..eef786555a 100644 --- a/intl/msg_hash_ko.h +++ b/intl/msg_hash_ko.h @@ -1,4 +1,4 @@ -MSG_HASH( +MSG_HASH( MSG_COMPILER, "컴파일러" ) @@ -1673,6 +1673,8 @@ MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_ICON_THEME_RETROACTIVE, "RetroActive") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_ICON_THEME_DOTART, "Dot-Art") +MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_MAIN_MENU_ENABLE_SETTINGS, + "Enable Settings Tab") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_MENU_COLOR_THEME, "메뉴 색상 테마") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_MENU_COLOR_THEME_APPLE_GREEN, @@ -1711,6 +1713,8 @@ MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_MUSIC, "음악 탭 표시") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_SETTINGS, "설정 탭 보이기") +MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_SETTINGS_PASSWORD, + "Set Password For Enabling Settings Tab") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_VIDEO, "비디오 탭 보이기") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_NETPLAY, @@ -2035,6 +2039,12 @@ MSG_HASH(MSG_INPUT_PRESET_FILENAME, "프리셋 파일명") MSG_HASH(MSG_INPUT_RENAME_ENTRY, "Rename Title") +MSG_HASH(MSG_INPUT_ENABLE_SETTINGS_PASSWORD, + "Enter Password") +MSG_HASH(MSG_INPUT_ENABLE_SETTINGS_PASSWORD_OK, + "Password correct.") +MSG_HASH(MSG_INPUT_ENABLE_SETTINGS_PASSWORD_NOK, + "Password incorrect.") MSG_HASH(MSG_INTERFACE, "인터페이스") MSG_HASH(MSG_INTERNAL_STORAGE, @@ -2841,6 +2851,8 @@ MSG_HASH(MENU_ENUM_SUBLABEL_MATERIALUI_MENU_COLOR_THEME, "배경색 그라데이션 테마를 선택.") MSG_HASH(MENU_ENUM_SUBLABEL_MENU_WALLPAPER_OPACITY, "배경화면의 투명도 변경.") +MSG_HASH(MENU_ENUM_SUBLABEL_XMB_MAIN_MENU_ENABLE_SETTINGS, + "Enables the Settings tab. A restart is required for the tab to appear.") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_MENU_COLOR_THEME, "배경색 그라데이션 테마 선택.") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_RIBBON_ENABLE, @@ -2857,6 +2869,8 @@ MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_NETPLAY, "메인 메뉴에 넷플레이 탭 보이기.") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_SETTINGS, "메인 메뉴에 설정 탭 보이기.") +MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_SETTINGS_PASSWORD, + "Supplying a password when hiding the settings tab makes it possible to later restore it from the menu, by going to the Main Menu tab, selecting Enable Settings Tab and entering the password.") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_HISTORY, "메인 메뉴에 최근 실행목록 탭 보이기.") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_ADD, diff --git a/intl/msg_hash_lbl.h b/intl/msg_hash_lbl.h index 7069e2d7f3..1c267fbb34 100644 --- a/intl/msg_hash_lbl.h +++ b/intl/msg_hash_lbl.h @@ -1151,6 +1151,8 @@ MSG_HASH(MENU_ENUM_LABEL_XMB_ALPHA_FACTOR, "xmb_alpha_factor") MSG_HASH(MENU_ENUM_LABEL_XMB_FONT, "xmb_font") +MSG_HASH(MENU_ENUM_LABEL_XMB_MAIN_MENU_ENABLE_SETTINGS, + "xmb_main_menu_enable_settings") MSG_HASH(MENU_ENUM_LABEL_XMB_MENU_COLOR_THEME, "xmb_menu_color_theme") MSG_HASH(MENU_ENUM_LABEL_XMB_RIBBON_ENABLE, @@ -1171,6 +1173,8 @@ MSG_HASH(MENU_ENUM_LABEL_XMB_SHOW_MUSIC, "xmb_show_music") MSG_HASH(MENU_ENUM_LABEL_XMB_SHOW_SETTINGS, "xmb_show_settings") +MSG_HASH(MENU_ENUM_LABEL_XMB_SHOW_SETTINGS_PASSWORD, + "xmb_show_settings_password") MSG_HASH(MENU_ENUM_LABEL_XMB_SHOW_VIDEO, "xmb_show_video") MSG_HASH(MENU_ENUM_LABEL_XMB_SHOW_NETPLAY, diff --git a/intl/msg_hash_nl.h b/intl/msg_hash_nl.h index 939ac2016b..eda589b5e8 100644 --- a/intl/msg_hash_nl.h +++ b/intl/msg_hash_nl.h @@ -1570,6 +1570,8 @@ MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_ICON_THEME_RETROACTIVE, "RetroActive") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_ICON_THEME_DOTART, "Dot-Art") +MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_MAIN_MENU_ENABLE_SETTINGS, + "Enable Settings Tab") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_MENU_COLOR_THEME, "Menu Color Theme") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_MENU_COLOR_THEME_APPLE_GREEN, @@ -1606,6 +1608,8 @@ MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_MUSIC, "Muziektab weergeven") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_SETTINGS, "Instellingentab weergeven") +MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_SETTINGS_PASSWORD, + "Set Password For Enabling Settings Tab") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_VIDEO, "Videotab weergeven") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_THEME, @@ -1922,6 +1926,12 @@ MSG_HASH(MSG_INPUT_PRESET_FILENAME, "Preset Filename") MSG_HASH(MSG_INPUT_RENAME_ENTRY, "Rename Title") +MSG_HASH(MSG_INPUT_ENABLE_SETTINGS_PASSWORD, + "Enter Password") +MSG_HASH(MSG_INPUT_ENABLE_SETTINGS_PASSWORD_OK, + "Password correct.") +MSG_HASH(MSG_INPUT_ENABLE_SETTINGS_PASSWORD_NOK, + "Password incorrect.") MSG_HASH(MSG_INTERFACE, "Interface") MSG_HASH(MSG_INTERNAL_STORAGE, @@ -2708,6 +2718,8 @@ MSG_HASH(MENU_ENUM_SUBLABEL_MATERIALUI_MENU_COLOR_THEME, "Select a different background color gradient theme.") MSG_HASH(MENU_ENUM_SUBLABEL_MENU_WALLPAPER_OPACITY, "Modify the opacity of the background wallpaper.") +MSG_HASH(MENU_ENUM_SUBLABEL_XMB_MAIN_MENU_ENABLE_SETTINGS, + "Enables the Settings tab. A restart is required for the tab to appear.") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_MENU_COLOR_THEME, "Select a different background color gradient theme.") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_RIBBON_ENABLE, @@ -2724,6 +2736,8 @@ MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_NETPLAY, "Show the netplay tab inside the main menu.") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_SETTINGS, "Show the settings tab inside the main menu.") +MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_SETTINGS_PASSWORD, + "Supplying a password when hiding the settings tab makes it possible to later restore it from the menu, by going to the Main Menu tab, selecting Enable Settings Tab and entering the password.") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_HISTORY, "Show the recent history tab inside the main menu.") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_ADD, diff --git a/intl/msg_hash_pt_br.h b/intl/msg_hash_pt_br.h index 0ce923777d..fa39dc6d8a 100644 --- a/intl/msg_hash_pt_br.h +++ b/intl/msg_hash_pt_br.h @@ -2215,6 +2215,9 @@ MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_ICON_THEME_RETROACTIVE, MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_ICON_THEME_DOTART, "Dot-Art" ) +MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_MAIN_MENU_ENABLE_SETTINGS, + "Enable Settings Tab" + ) MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_MENU_COLOR_THEME, "Tema de Cor do Menu" ) @@ -2275,6 +2278,9 @@ MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_MUSIC, MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_SETTINGS, "Exibir Aba de Configurações" ) +MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_SETTINGS_PASSWORD, + "Set Password For Enabling Settings Tab" + ) MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_VIDEO, "Exibir Aba de Vídeo" ) @@ -2770,6 +2776,15 @@ MSG_HASH(MSG_INPUT_PRESET_FILENAME, MSG_HASH(MSG_INPUT_RENAME_ENTRY, "Renomear Título" ) +MSG_HASH(MSG_INPUT_ENABLE_SETTINGS_PASSWORD, + "Enter Password" + ) +MSG_HASH(MSG_INPUT_ENABLE_SETTINGS_PASSWORD_OK, + "Password correct." + ) +MSG_HASH(MSG_INPUT_ENABLE_SETTINGS_PASSWORD_NOK, + "Password incorrect." + ) MSG_HASH(MSG_INTERFACE, "Interface" ) @@ -3694,6 +3709,9 @@ MSG_HASH(MENU_ENUM_SUBLABEL_MATERIALUI_MENU_COLOR_THEME, MSG_HASH(MENU_ENUM_SUBLABEL_MENU_WALLPAPER_OPACITY, "Modificar a opacidade do plano de fundo." ) +MSG_HASH(MENU_ENUM_SUBLABEL_XMB_MAIN_MENU_ENABLE_SETTINGS, + "Enables the Settings tab. A restart is required for the tab to appear." + ) MSG_HASH(MENU_ENUM_SUBLABEL_XMB_MENU_COLOR_THEME, "Selecionar um tema de gradiente de cor de plano de fundo diferente." ) @@ -3721,6 +3739,9 @@ MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_NETPLAY, MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_SETTINGS, "Mostrar a aba de configurações dentro do menu principal." ) +MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_SETTINGS_PASSWORD, + "Supplying a password when hiding the settings tab makes it possible to later restore it from the menu, by going to the Main Menu tab, selecting Enable Settings Tab and entering the password." + ) MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_HISTORY, "Mostrar a aba de histórico recente dentro do menu principal." ) @@ -3960,4 +3981,4 @@ MSG_HASH(MENU_ENUM_LABEL_VALUE_MATERIALUI_ICONS_ENABLE, ) MSG_HASH(MENU_ENUM_SUBLABEL_MATERIALUI_ICONS_ENABLE, "Habilitar/desabilitar os ícones exibidos do lado esquerdo dos itens de menu. " - ) \ No newline at end of file + ) diff --git a/intl/msg_hash_pt_pt.h b/intl/msg_hash_pt_pt.h index c5cd817d1c..fd41372558 100644 --- a/intl/msg_hash_pt_pt.h +++ b/intl/msg_hash_pt_pt.h @@ -1665,6 +1665,8 @@ MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_ICON_THEME_RETROACTIVE, "RetroActive") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_ICON_THEME_DOTART, "Dot-Art") +MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_MAIN_MENU_ENABLE_SETTINGS, + "Enable Settings Tab") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_MENU_COLOR_THEME, "Cor do tema do Menu") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_MENU_COLOR_THEME_APPLE_GREEN, @@ -1703,6 +1705,8 @@ MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_MUSIC, "Exibir Aba de Música") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_SETTINGS, "Exibir Aba de Definições") +MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_SETTINGS_PASSWORD, + "Set Password For Enabling Settings Tab") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_VIDEO, "Exibir Aba de Vídeo") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_THEME, @@ -2025,6 +2029,12 @@ MSG_HASH(MSG_INPUT_PRESET_FILENAME, "Nome de Arquivo Pré-Definido") MSG_HASH(MSG_INPUT_RENAME_ENTRY, "Rename Title") +MSG_HASH(MSG_INPUT_ENABLE_SETTINGS_PASSWORD, + "Enter Password") +MSG_HASH(MSG_INPUT_ENABLE_SETTINGS_PASSWORD_OK, + "Password correct.") +MSG_HASH(MSG_INPUT_ENABLE_SETTINGS_PASSWORD_NOK, + "Password incorrect.") MSG_HASH(MSG_INTERFACE, "Interface") MSG_HASH(MSG_INTERNAL_STORAGE, @@ -2819,6 +2829,8 @@ MSG_HASH(MENU_ENUM_SUBLABEL_MATERIALUI_MENU_COLOR_THEME, "Selecionar um tema degradê de cor de fundo diferente.") MSG_HASH(MENU_ENUM_SUBLABEL_MENU_WALLPAPER_OPACITY, "Modificar a opacidade do papel de parede.") +MSG_HASH(MENU_ENUM_SUBLABEL_XMB_MAIN_MENU_ENABLE_SETTINGS, + "Enables the Settings tab. A restart is required for the tab to appear.") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_MENU_COLOR_THEME, "Selecionar um tema degradê de cor de fundo diferente.") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_RIBBON_ENABLE, @@ -2833,6 +2845,8 @@ MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_VIDEO, "Mostrar a aba de vídeo dentro do menu principal.") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_SETTINGS, "Mostrar a aba de definições dentro do menu principal.") +MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_SETTINGS_PASSWORD, + "Supplying a password when hiding the settings tab makes it possible to later restore it from the menu, by going to the Main Menu tab, selecting Enable Settings Tab and entering the password.") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_HISTORY, "Mostrar a aba de histórico recente dentro do menu principal.") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_ADD, diff --git a/intl/msg_hash_ru.h b/intl/msg_hash_ru.h index 5ef0f49fba..817ce24679 100644 --- a/intl/msg_hash_ru.h +++ b/intl/msg_hash_ru.h @@ -1,4 +1,4 @@ -#if defined(_MSC_VER) && !defined(_XBOX) +#if defined(_MSC_VER) && !defined(_XBOX) /* https://support.microsoft.com/en-us/kb/980263 */ #pragma execution_character_set("utf-8") #endif @@ -1706,6 +1706,8 @@ MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_ICON_THEME_RETROACTIVE, "RetroActive") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_ICON_THEME_DOTART, "Dot-Art") +MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_MAIN_MENU_ENABLE_SETTINGS, + "Enable Settings Tab") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_MENU_COLOR_THEME, "Цветная тема меню") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_MENU_COLOR_THEME_APPLE_GREEN, @@ -1744,6 +1746,8 @@ MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_MUSIC, "Показать вкладку Музыка") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_SETTINGS, "Показать вкладку Настройки") +MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_SETTINGS_PASSWORD, + "Set Password For Enabling Settings Tab") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_VIDEO, "Показать вкладку Видео") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_NETPLAY, @@ -2070,6 +2074,12 @@ MSG_HASH(MSG_INPUT_PRESET_FILENAME, "Имя настроек") MSG_HASH(MSG_INPUT_RENAME_ENTRY, "Переименовать заголовок") +MSG_HASH(MSG_INPUT_ENABLE_SETTINGS_PASSWORD, + "Enter Password") +MSG_HASH(MSG_INPUT_ENABLE_SETTINGS_PASSWORD_OK, + "Password correct.") +MSG_HASH(MSG_INPUT_ENABLE_SETTINGS_PASSWORD_NOK, + "Password incorrect.") MSG_HASH(MSG_INTERFACE, "Интерфейс") MSG_HASH(MSG_INTERNAL_STORAGE, @@ -2892,6 +2902,8 @@ MSG_HASH(MENU_ENUM_SUBLABEL_MATERIALUI_MENU_COLOR_THEME, "Выберите другую тему цветового градиента.") MSG_HASH(MENU_ENUM_SUBLABEL_MENU_WALLPAPER_OPACITY, "Изменить прозрачность обоев интерфейса.") +MSG_HASH(MENU_ENUM_SUBLABEL_XMB_MAIN_MENU_ENABLE_SETTINGS, + "Enables the Settings tab. A restart is required for the tab to appear.") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_MENU_COLOR_THEME, "Выберите другую тему цветового градиента.") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_RIBBON_ENABLE, @@ -2908,6 +2920,8 @@ MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_NETPLAY, "Показать вкладку Сетевая игра в главном меню.") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_SETTINGS, "Показать вкладку Настройка в главном меню.") +MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_SETTINGS_PASSWORD, + "Supplying a password when hiding the settings tab makes it possible to later restore it from the menu, by going to the Main Menu tab, selecting Enable Settings Tab and entering the password.") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_HISTORY, "Показать вкладку История просмотров в главном меню.") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_ADD, diff --git a/intl/msg_hash_us.h b/intl/msg_hash_us.h index 13b5e8505c..d6d4d9a034 100644 --- a/intl/msg_hash_us.h +++ b/intl/msg_hash_us.h @@ -1725,6 +1725,8 @@ MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_ICON_THEME_RETROACTIVE, "RetroActive") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_ICON_THEME_DOTART, "Dot-Art") +MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_MAIN_MENU_ENABLE_SETTINGS, + "Enable Settings Tab") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_MENU_COLOR_THEME, "Menu Color Theme") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_MENU_COLOR_THEME_APPLE_GREEN, @@ -1765,6 +1767,8 @@ MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_MUSIC, "Show Music Tab") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_SETTINGS, "Show Settings Tab") +MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_SETTINGS_PASSWORD, + "Set Password For Enabling Settings Tab") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_VIDEO, "Show Video Tab") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_NETPLAY, @@ -2095,6 +2099,12 @@ MSG_HASH(MSG_INPUT_PRESET_FILENAME, "Preset Filename") MSG_HASH(MSG_INPUT_RENAME_ENTRY, "Rename Title") +MSG_HASH(MSG_INPUT_ENABLE_SETTINGS_PASSWORD, + "Enter Password") +MSG_HASH(MSG_INPUT_ENABLE_SETTINGS_PASSWORD_OK, + "Password correct.") +MSG_HASH(MSG_INPUT_ENABLE_SETTINGS_PASSWORD_NOK, + "Password incorrect.") MSG_HASH(MSG_INTERFACE, "Interface") MSG_HASH(MSG_INTERNAL_STORAGE, @@ -2925,6 +2935,8 @@ MSG_HASH(MENU_ENUM_SUBLABEL_MATERIALUI_MENU_COLOR_THEME, "Select a different background color gradient theme.") MSG_HASH(MENU_ENUM_SUBLABEL_MENU_WALLPAPER_OPACITY, "Modify the opacity of the background wallpaper.") +MSG_HASH(MENU_ENUM_SUBLABEL_XMB_MAIN_MENU_ENABLE_SETTINGS, + "Enables the Settings tab. A restart is required for the tab to appear.") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_MENU_COLOR_THEME, "Select a different background color gradient theme.") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_RIBBON_ENABLE, @@ -2943,6 +2955,8 @@ MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_NETPLAY, "Show the netplay tab inside the main menu.") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_SETTINGS, "Show the settings tab inside the main menu.") +MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_SETTINGS_PASSWORD, + "Supplying a password when hiding the settings tab makes it possible to later restore it from the menu, by going to the Main Menu tab, selecting Enable Settings Tab and entering the password.") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_HISTORY, "Show the recent history tab inside the main menu.") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_ADD, diff --git a/intl/msg_hash_vn.h b/intl/msg_hash_vn.h index a5582641b6..e8bdcb1c9e 100644 --- a/intl/msg_hash_vn.h +++ b/intl/msg_hash_vn.h @@ -1,4 +1,4 @@ -MSG_HASH( +MSG_HASH( MSG_COMPILER, "Compiler" ) @@ -1691,6 +1691,8 @@ MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_ICON_THEME_RETROACTIVE, "RetroActive") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_ICON_THEME_DOTART, "Dot-Art") +MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_MAIN_MENU_ENABLE_SETTINGS, + "Enable Settings Tab") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_MENU_COLOR_THEME, "Menu Color Theme") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_MENU_COLOR_THEME_APPLE_GREEN, @@ -1729,6 +1731,8 @@ MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_MUSIC, "Display Music Tab") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_SETTINGS, "Show thiết lập Tab") +MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_SETTINGS_PASSWORD, + "Set Password For Enabling Settings Tab") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_VIDEO, "Display Video Tab") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_NETPLAY, @@ -2053,6 +2057,12 @@ MSG_HASH(MSG_INPUT_PRESET_FILENAME, "Preset Filename") MSG_HASH(MSG_INPUT_RENAME_ENTRY, "Rename Title") +MSG_HASH(MSG_INPUT_ENABLE_SETTINGS_PASSWORD, + "Enter Password") +MSG_HASH(MSG_INPUT_ENABLE_SETTINGS_PASSWORD_OK, + "Password correct.") +MSG_HASH(MSG_INPUT_ENABLE_SETTINGS_PASSWORD_NOK, + "Password incorrect.") MSG_HASH(MSG_INTERFACE, "Interface") MSG_HASH(MSG_INTERNAL_STORAGE, @@ -2875,6 +2885,8 @@ MSG_HASH(MENU_ENUM_SUBLABEL_MATERIALUI_MENU_COLOR_THEME, "Select a different background color gradient theme.") MSG_HASH(MENU_ENUM_SUBLABEL_MENU_WALLPAPER_OPACITY, "Modify the opacity of the background wallpaper.") +MSG_HASH(MENU_ENUM_SUBLABEL_XMB_MAIN_MENU_ENABLE_SETTINGS, + "Enables the Settings tab. A restart is required for the tab to appear.") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_MENU_COLOR_THEME, "Select a different background color gradient theme.") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_RIBBON_ENABLE, @@ -2891,6 +2903,8 @@ MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_NETPLAY, "Show the netplay tab inside the main menu.") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_SETTINGS, "Show the settings tab inside the main menu.") +MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_SETTINGS_PASSWORD, + "Supplying a password when hiding the settings tab makes it possible to later restore it from the menu, by going to the Main Menu tab, selecting Enable Settings Tab and entering the password.") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_HISTORY, "Show the recent history tab inside the main menu.") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_ADD, diff --git a/menu/cbs/menu_cbs_ok.c b/menu/cbs/menu_cbs_ok.c index 9b2c920698..8247a54779 100644 --- a/menu/cbs/menu_cbs_ok.c +++ b/menu/cbs/menu_cbs_ok.c @@ -1938,6 +1938,33 @@ static void menu_input_st_string_cb_rename_entry(void *userdata, menu_input_dialog_end(); } +static void menu_input_st_string_cb_enable_settings(void *userdata, + const char *str) +{ + if (str && *str) + { + const char *label = menu_input_dialog_get_buffer(); + settings_t *settings = config_get_ptr(); + + if (string_is_equal(label, settings->paths.menu_xmb_show_settings_password)) + { + settings->bools.menu_xmb_show_settings = true; + + runloop_msg_queue_push( + msg_hash_to_str(MSG_INPUT_ENABLE_SETTINGS_PASSWORD_OK), + 1, 100, true); + } + else + { + runloop_msg_queue_push( + msg_hash_to_str(MSG_INPUT_ENABLE_SETTINGS_PASSWORD_NOK), + 1, 100, true); + } + } + + menu_input_dialog_end(); +} + static void menu_input_st_string_cb_save_preset(void *userdata, const char *str) { @@ -3199,6 +3226,22 @@ static int action_ok_delete_entry(const char *path, return 0; } +static int action_ok_enable_settings(const char *path, + const char *label, unsigned type, size_t idx, size_t entry_idx) +{ + menu_input_ctx_line_t line; + + line.label = msg_hash_to_str(MSG_INPUT_ENABLE_SETTINGS_PASSWORD); + line.label_setting = label; + line.type = type; + line.idx = (unsigned)entry_idx; + line.cb = menu_input_st_string_cb_enable_settings; + + if (!menu_input_dialog_start(&line)) + return -1; + return 0; +} + static int action_ok_rdb_entry_submenu(const char *path, const char *label, unsigned type, size_t idx, size_t entry_idx) { @@ -4308,6 +4351,9 @@ static int menu_cbs_init_bind_ok_compare_label(menu_file_list_cbs_t *cbs, case MENU_ENUM_LABEL_DELETE_ENTRY: BIND_ACTION_OK(cbs, action_ok_delete_entry); break; + case MENU_ENUM_LABEL_XMB_MAIN_MENU_ENABLE_SETTINGS: + BIND_ACTION_OK(cbs, action_ok_enable_settings); + break; case MENU_ENUM_LABEL_QUIT_RETROARCH: BIND_ACTION_OK(cbs, action_ok_quit); break; diff --git a/menu/cbs/menu_cbs_sublabel.c b/menu/cbs/menu_cbs_sublabel.c index 9a9682e71d..f659b9ae5d 100644 --- a/menu/cbs/menu_cbs_sublabel.c +++ b/menu/cbs/menu_cbs_sublabel.c @@ -296,8 +296,10 @@ default_sublabel_macro(action_bind_sublabel_menu_music_tab, default_sublabel_macro(action_bind_sublabel_menu_video_tab, MENU_ENUM_SUBLABEL_XMB_SHOW_VIDEO) default_sublabel_macro(action_bind_sublabel_menu_netplay_tab, MENU_ENUM_SUBLABEL_XMB_SHOW_NETPLAY) default_sublabel_macro(action_bind_sublabel_menu_settings_tab, MENU_ENUM_SUBLABEL_XMB_SHOW_SETTINGS) +default_sublabel_macro(action_bind_sublabel_menu_settings_tab_enable_password, MENU_ENUM_SUBLABEL_XMB_SHOW_SETTINGS_PASSWORD) default_sublabel_macro(action_bind_sublabel_menu_history_tab, MENU_ENUM_SUBLABEL_XMB_SHOW_HISTORY) default_sublabel_macro(action_bind_sublabel_menu_import_content_tab, MENU_ENUM_SUBLABEL_XMB_SHOW_ADD) +default_sublabel_macro(action_bind_sublabel_main_menu_enable_settings, MENU_ENUM_SUBLABEL_XMB_MAIN_MENU_ENABLE_SETTINGS) default_sublabel_macro(action_bind_sublabel_rgui_show_start_screen, MENU_ENUM_SUBLABEL_RGUI_SHOW_START_SCREEN) default_sublabel_macro(action_bind_sublabel_menu_header_opacity, MENU_ENUM_SUBLABEL_MATERIALUI_MENU_HEADER_OPACITY) default_sublabel_macro(action_bind_sublabel_menu_footer_opacity, MENU_ENUM_SUBLABEL_MATERIALUI_MENU_FOOTER_OPACITY) @@ -558,12 +560,18 @@ int menu_cbs_init_bind_sublabel(menu_file_list_cbs_t *cbs, case MENU_ENUM_LABEL_XMB_SHOW_ADD: BIND_ACTION_SUBLABEL(cbs, action_bind_sublabel_menu_import_content_tab); break; + case MENU_ENUM_LABEL_XMB_MAIN_MENU_ENABLE_SETTINGS: + BIND_ACTION_SUBLABEL(cbs, action_bind_sublabel_main_menu_enable_settings); + break; case MENU_ENUM_LABEL_XMB_SHOW_HISTORY: BIND_ACTION_SUBLABEL(cbs, action_bind_sublabel_menu_history_tab); break; case MENU_ENUM_LABEL_XMB_SHOW_SETTINGS: BIND_ACTION_SUBLABEL(cbs, action_bind_sublabel_menu_settings_tab); break; + case MENU_ENUM_LABEL_XMB_SHOW_SETTINGS_PASSWORD: + BIND_ACTION_SUBLABEL(cbs, action_bind_sublabel_menu_settings_tab_enable_password); + break; case MENU_ENUM_LABEL_GOTO_IMAGES: BIND_ACTION_SUBLABEL(cbs, action_bind_sublabel_goto_images); break; diff --git a/menu/drivers/xmb.c b/menu/drivers/xmb.c index f97609ddf5..1aa3378f43 100755 --- a/menu/drivers/xmb.c +++ b/menu/drivers/xmb.c @@ -4331,6 +4331,14 @@ static int xmb_list_push(void *data, void *userdata, } } #endif + + settings_t *settings = config_get_ptr(); + if (!settings->bools.menu_xmb_show_settings && !string_is_empty(settings->paths.menu_xmb_show_settings_password)) + { + entry.enum_idx = MENU_ENUM_LABEL_XMB_MAIN_MENU_ENABLE_SETTINGS; + menu_displaylist_ctl(DISPLAYLIST_SETTING_ENUM, &entry); + } + entry.enum_idx = MENU_ENUM_LABEL_INFORMATION_LIST; menu_displaylist_ctl(DISPLAYLIST_SETTING_ENUM, &entry); #ifndef HAVE_DYNAMIC diff --git a/menu/menu_displaylist.c b/menu/menu_displaylist.c index 89298adca0..598836bde1 100644 --- a/menu/menu_displaylist.c +++ b/menu/menu_displaylist.c @@ -5272,6 +5272,10 @@ bool menu_displaylist_ctl(enum menu_displaylist_ctl_state type, void *data) MENU_ENUM_LABEL_XMB_SHOW_SETTINGS, PARSE_ONLY_BOOL, false); + menu_displaylist_parse_settings_enum(menu, info, + MENU_ENUM_LABEL_XMB_SHOW_SETTINGS_PASSWORD, + PARSE_ONLY_STRING, false); + menu_displaylist_parse_settings_enum(menu, info, MENU_ENUM_LABEL_XMB_SHOW_FAVORITES, PARSE_ONLY_BOOL, false); @@ -6356,6 +6360,9 @@ bool menu_displaylist_ctl(enum menu_displaylist_ctl_state type, void *data) MENU_ENUM_LABEL_START_CORE, PARSE_ACTION, false); } + menu_displaylist_parse_settings_enum(menu, info, + MENU_ENUM_LABEL_XMB_MAIN_MENU_ENABLE_SETTINGS, + PARSE_ACTION, false); #ifndef HAVE_DYNAMIC if (frontend_driver_has_fork()) diff --git a/menu/menu_setting.c b/menu/menu_setting.c index 727f92e04c..552618fe70 100644 --- a/menu/menu_setting.c +++ b/menu/menu_setting.c @@ -2280,6 +2280,14 @@ static bool setting_append_list( &subgroup_info, parent_group); + CONFIG_ACTION( + list, list_info, + MENU_ENUM_LABEL_XMB_MAIN_MENU_ENABLE_SETTINGS, + MENU_ENUM_LABEL_VALUE_XMB_MAIN_MENU_ENABLE_SETTINGS, + &group_info, + &subgroup_info, + parent_group); + #ifndef HAVE_DYNAMIC if (frontend_driver_has_fork()) #endif @@ -5388,6 +5396,20 @@ static bool setting_append_list( SD_FLAG_NONE); settings_data_list_current_add_flags(list, list_info, SD_FLAG_LAKKA_ADVANCED); + CONFIG_STRING( + list, list_info, + settings->paths.menu_xmb_show_settings_password, + sizeof(settings->paths.menu_xmb_show_settings_password), + MENU_ENUM_LABEL_XMB_SHOW_SETTINGS_PASSWORD, + MENU_ENUM_LABEL_VALUE_XMB_SHOW_SETTINGS_PASSWORD, + "", + &group_info, + &subgroup_info, + parent_group, + general_write_handler, + general_read_handler); + settings_data_list_current_add_flags(list, list_info, SD_FLAG_ALLOW_INPUT | SD_FLAG_LAKKA_ADVANCED); + CONFIG_BOOL( list, list_info, &settings->bools.menu_xmb_show_favorites, diff --git a/msg_hash.h b/msg_hash.h index a10d840577..9482dbd021 100644 --- a/msg_hash.h +++ b/msg_hash.h @@ -288,6 +288,9 @@ enum msg_hash_enums MSG_INPUT_PRESET_FILENAME, MSG_INPUT_CHEAT_FILENAME, MSG_INPUT_RENAME_ENTRY, + MSG_INPUT_ENABLE_SETTINGS_PASSWORD, + MSG_INPUT_ENABLE_SETTINGS_PASSWORD_OK, + MSG_INPUT_ENABLE_SETTINGS_PASSWORD_NOK, MSG_REMAP_FILE_SAVED_SUCCESSFULLY, MSG_REMAP_FILE_REMOVED_SUCCESSFULLY, MSG_SHADER_PRESET_SAVED_SUCCESSFULLY, @@ -687,9 +690,11 @@ enum msg_hash_enums MENU_LABEL(XMB_SCALE_FACTOR), MENU_LABEL(XMB_FONT), MENU_LABEL(XMB_THEME), + MENU_LABEL(XMB_MAIN_MENU_ENABLE_SETTINGS), MENU_LABEL(XMB_MENU_COLOR_THEME), MENU_LABEL(XMB_SHADOWS_ENABLE), MENU_LABEL(XMB_SHOW_SETTINGS), + MENU_LABEL(XMB_SHOW_SETTINGS_PASSWORD), MENU_LABEL(XMB_SHOW_FAVORITES), MENU_LABEL(XMB_SHOW_IMAGES), MENU_LABEL(XMB_SHOW_MUSIC), From 208854e3d9c1986a3fc292ec76fb292eed205ba4 Mon Sep 17 00:00:00 2001 From: Mikael Brunnhede Date: Tue, 26 Sep 2017 15:46:56 +0200 Subject: [PATCH 2/2] Put new strings at the end. --- intl/msg_hash_chs.h | 28 ++++++++++++++-------------- intl/msg_hash_cht.h | 28 ++++++++++++++-------------- intl/msg_hash_de.h | 28 ++++++++++++++-------------- intl/msg_hash_eo.h | 28 ++++++++++++++-------------- intl/msg_hash_fr.h | 28 ++++++++++++++-------------- intl/msg_hash_it.h | 28 ++++++++++++++-------------- intl/msg_hash_ja.h | 28 ++++++++++++++-------------- intl/msg_hash_ko.h | 28 ++++++++++++++-------------- intl/msg_hash_nl.h | 28 ++++++++++++++-------------- intl/msg_hash_pt_br.h | 42 +++++++++++++++++++++--------------------- intl/msg_hash_pt_pt.h | 28 ++++++++++++++-------------- intl/msg_hash_ru.h | 28 ++++++++++++++-------------- intl/msg_hash_us.h | 28 ++++++++++++++-------------- intl/msg_hash_vn.h | 28 ++++++++++++++-------------- 14 files changed, 203 insertions(+), 203 deletions(-) diff --git a/intl/msg_hash_chs.h b/intl/msg_hash_chs.h index 6f7037f88c..2cc5e83d20 100644 --- a/intl/msg_hash_chs.h +++ b/intl/msg_hash_chs.h @@ -1676,8 +1676,6 @@ MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_ICON_THEME_RETROACTIVE, "RetroActive") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_ICON_THEME_DOTART, "Dot-Art") -MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_MAIN_MENU_ENABLE_SETTINGS, - "Enable Settings Tab") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_MENU_COLOR_THEME, "菜单颜色主题") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_MENU_COLOR_THEME_APPLE_GREEN, @@ -1716,8 +1714,6 @@ MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_MUSIC, "显示音乐页") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_SETTINGS, "显示设置页") -MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_SETTINGS_PASSWORD, - "Set Password For Enabling Settings Tab") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_VIDEO, "显示视频页") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_THEME, @@ -2039,12 +2035,6 @@ MSG_HASH(MSG_INPUT_PRESET_FILENAME, "Preset Filename") MSG_HASH(MSG_INPUT_RENAME_ENTRY, "Rename Title") -MSG_HASH(MSG_INPUT_ENABLE_SETTINGS_PASSWORD, - "Enter Password") -MSG_HASH(MSG_INPUT_ENABLE_SETTINGS_PASSWORD_OK, - "Password correct.") -MSG_HASH(MSG_INPUT_ENABLE_SETTINGS_PASSWORD_NOK, - "Password incorrect.") MSG_HASH(MSG_INTERFACE, "接口") MSG_HASH(MSG_INTERNAL_STORAGE, @@ -2855,8 +2845,6 @@ MSG_HASH(MENU_ENUM_SUBLABEL_MATERIALUI_MENU_COLOR_THEME, "Select a different background color gradient theme.") MSG_HASH(MENU_ENUM_SUBLABEL_MENU_WALLPAPER_OPACITY, "Modify the opacity of the background wallpaper.") -MSG_HASH(MENU_ENUM_SUBLABEL_XMB_MAIN_MENU_ENABLE_SETTINGS, - "Enables the Settings tab. A restart is required for the tab to appear.") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_MENU_COLOR_THEME, "Select a different background color gradient theme.") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_RIBBON_ENABLE, @@ -2873,8 +2861,6 @@ MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_NETPLAY, "Show the netplay tab inside the main menu.") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_SETTINGS, "Show the settings tab inside the main menu.") -MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_SETTINGS_PASSWORD, - "Supplying a password when hiding the settings tab makes it possible to later restore it from the menu, by going to the Main Menu tab, selecting Enable Settings Tab and entering the password.") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_HISTORY, "Show the recent history tab inside the main menu.") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_ADD, @@ -3059,3 +3045,17 @@ MSG_HASH(MENU_ENUM_LABEL_VALUE_MATERIALUI_ICONS_ENABLE, "Menu Icons") MSG_HASH(MENU_ENUM_SUBLABEL_MATERIALUI_ICONS_ENABLE, "Enable/disable the menu icons shown at the lefthand side of the menu entries.") +MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_MAIN_MENU_ENABLE_SETTINGS, + "Enable Settings Tab") +MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_SETTINGS_PASSWORD, + "Set Password For Enabling Settings Tab") +MSG_HASH(MSG_INPUT_ENABLE_SETTINGS_PASSWORD, + "Enter Password") +MSG_HASH(MSG_INPUT_ENABLE_SETTINGS_PASSWORD_OK, + "Password correct.") +MSG_HASH(MSG_INPUT_ENABLE_SETTINGS_PASSWORD_NOK, + "Password incorrect.") +MSG_HASH(MENU_ENUM_SUBLABEL_XMB_MAIN_MENU_ENABLE_SETTINGS, + "Enables the Settings tab. A restart is required for the tab to appear.") +MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_SETTINGS_PASSWORD, + "Supplying a password when hiding the settings tab makes it possible to later restore it from the menu, by going to the Main Menu tab, selecting Enable Settings Tab and entering the password.") diff --git a/intl/msg_hash_cht.h b/intl/msg_hash_cht.h index bee15e43d4..a1bc897be9 100644 --- a/intl/msg_hash_cht.h +++ b/intl/msg_hash_cht.h @@ -1676,8 +1676,6 @@ MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_ICON_THEME_RETROACTIVE, "RetroActive") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_ICON_THEME_DOTART, "Dot-Art") -MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_MAIN_MENU_ENABLE_SETTINGS, - "Enable Settings Tab") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_MENU_COLOR_THEME, "選單顏色主題") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_MENU_COLOR_THEME_APPLE_GREEN, @@ -1716,8 +1714,6 @@ MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_MUSIC, "顯示音樂頁") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_SETTINGS, "顯示設定頁") -MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_SETTINGS_PASSWORD, - "Set Password For Enabling Settings Tab") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_VIDEO, "顯示視訊頁") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_THEME, @@ -2039,12 +2035,6 @@ MSG_HASH(MSG_INPUT_PRESET_FILENAME, "目前檔案") MSG_HASH(MSG_INPUT_RENAME_ENTRY, "Rename Title") -MSG_HASH(MSG_INPUT_ENABLE_SETTINGS_PASSWORD, - "Enter Password") -MSG_HASH(MSG_INPUT_ENABLE_SETTINGS_PASSWORD_OK, - "Password correct.") -MSG_HASH(MSG_INPUT_ENABLE_SETTINGS_PASSWORD_NOK, - "Password incorrect.") MSG_HASH(MSG_INTERFACE, "接口") MSG_HASH(MSG_INTERNAL_STORAGE, @@ -2855,8 +2845,6 @@ MSG_HASH(MENU_ENUM_SUBLABEL_MATERIALUI_MENU_COLOR_THEME, "Select a different background color gradient theme.") MSG_HASH(MENU_ENUM_SUBLABEL_MENU_WALLPAPER_OPACITY, "Modify the opacity of the background wallpaper.") -MSG_HASH(MENU_ENUM_SUBLABEL_XMB_MAIN_MENU_ENABLE_SETTINGS, - "Enables the Settings tab. A restart is required for the tab to appear.") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_MENU_COLOR_THEME, "Select a different background color gradient theme.") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_RIBBON_ENABLE, @@ -2873,8 +2861,6 @@ MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_NETPLAY, "Show the netplay tab inside the main menu.") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_SETTINGS, "Show the settings tab inside the main menu.") -MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_SETTINGS_PASSWORD, - "Supplying a password when hiding the settings tab makes it possible to later restore it from the menu, by going to the Main Menu tab, selecting Enable Settings Tab and entering the password.") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_HISTORY, "Show the recent history tab inside the main menu.") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_ADD, @@ -3059,3 +3045,17 @@ MSG_HASH(MENU_ENUM_LABEL_VALUE_MATERIALUI_ICONS_ENABLE, "Menu Icons") MSG_HASH(MENU_ENUM_SUBLABEL_MATERIALUI_ICONS_ENABLE, "Enable/disable the menu icons shown at the lefthand side of the menu entries.") +MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_MAIN_MENU_ENABLE_SETTINGS, + "Enable Settings Tab") +MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_SETTINGS_PASSWORD, + "Set Password For Enabling Settings Tab") +MSG_HASH(MSG_INPUT_ENABLE_SETTINGS_PASSWORD, + "Enter Password") +MSG_HASH(MSG_INPUT_ENABLE_SETTINGS_PASSWORD_OK, + "Password correct.") +MSG_HASH(MSG_INPUT_ENABLE_SETTINGS_PASSWORD_NOK, + "Password incorrect.") +MSG_HASH(MENU_ENUM_SUBLABEL_XMB_MAIN_MENU_ENABLE_SETTINGS, + "Enables the Settings tab. A restart is required for the tab to appear.") +MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_SETTINGS_PASSWORD, + "Supplying a password when hiding the settings tab makes it possible to later restore it from the menu, by going to the Main Menu tab, selecting Enable Settings Tab and entering the password.") diff --git a/intl/msg_hash_de.h b/intl/msg_hash_de.h index 3894f1302c..c8e297d1fe 100644 --- a/intl/msg_hash_de.h +++ b/intl/msg_hash_de.h @@ -1673,8 +1673,6 @@ MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_ICON_THEME_RETROACTIVE, "RetroActive") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_ICON_THEME_DOTART, "Dot-Art") -MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_MAIN_MENU_ENABLE_SETTINGS, - "Enable Settings Tab") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_MENU_COLOR_THEME, "Menü-Farbschema") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_MENU_COLOR_THEME_APPLE_GREEN, @@ -1713,8 +1711,6 @@ MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_MUSIC, "Zeige Tab 'Musik'") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_SETTINGS, "Zeige Tab 'Einstellungen'") -MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_SETTINGS_PASSWORD, - "Set Password For Enabling Settings Tab") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_VIDEO, "Zeige Tab 'Video'") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_NETPLAY, @@ -2039,12 +2035,6 @@ MSG_HASH(MSG_INPUT_PRESET_FILENAME, "Vorlagen-Dateiname") MSG_HASH(MSG_INPUT_RENAME_ENTRY, "Rename Title") -MSG_HASH(MSG_INPUT_ENABLE_SETTINGS_PASSWORD, - "Enter Password") -MSG_HASH(MSG_INPUT_ENABLE_SETTINGS_PASSWORD_OK, - "Password correct.") -MSG_HASH(MSG_INPUT_ENABLE_SETTINGS_PASSWORD_NOK, - "Password incorrect.") MSG_HASH(MSG_INTERFACE, "Netzwerk-Karte") MSG_HASH(MSG_INTERNAL_STORAGE, @@ -2851,8 +2841,6 @@ MSG_HASH(MENU_ENUM_SUBLABEL_MATERIALUI_MENU_COLOR_THEME, "Wähle einen anderen Farbverlauf für das Hintergrundbild.") MSG_HASH(MENU_ENUM_SUBLABEL_MENU_WALLPAPER_OPACITY, "Ändere die Transparenz des Hintergrundbildes.") -MSG_HASH(MENU_ENUM_SUBLABEL_XMB_MAIN_MENU_ENABLE_SETTINGS, - "Enables the Settings tab. A restart is required for the tab to appear.") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_MENU_COLOR_THEME, "Wähle einen anderen Farbverlauf für das Hintergrundbild.") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_RIBBON_ENABLE, @@ -2869,8 +2857,6 @@ MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_NETPLAY, "Zeigen den Tab 'Netplay' im Hauptmenü an.") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_SETTINGS, "Zeige den Tab 'Einstellungen' im Hauptmenü an") -MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_SETTINGS_PASSWORD, - "Supplying a password when hiding the settings tab makes it possible to later restore it from the menu, by going to the Main Menu tab, selecting Enable Settings Tab and entering the password.") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_HISTORY, "Zeige den Tab 'Verlauf' im Hauptmenü an.") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_ADD, @@ -3053,3 +3039,17 @@ MSG_HASH(MENU_ENUM_LABEL_VALUE_MATERIALUI_ICONS_ENABLE, "Menu Icons") MSG_HASH(MENU_ENUM_SUBLABEL_MATERIALUI_ICONS_ENABLE, "Enable/disable the menu icons shown at the lefthand side of the menu entries.") +MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_MAIN_MENU_ENABLE_SETTINGS, + "Enable Settings Tab") +MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_SETTINGS_PASSWORD, + "Set Password For Enabling Settings Tab") +MSG_HASH(MSG_INPUT_ENABLE_SETTINGS_PASSWORD, + "Enter Password") +MSG_HASH(MSG_INPUT_ENABLE_SETTINGS_PASSWORD_OK, + "Password correct.") +MSG_HASH(MSG_INPUT_ENABLE_SETTINGS_PASSWORD_NOK, + "Password incorrect.") +MSG_HASH(MENU_ENUM_SUBLABEL_XMB_MAIN_MENU_ENABLE_SETTINGS, + "Enables the Settings tab. A restart is required for the tab to appear.") +MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_SETTINGS_PASSWORD, + "Supplying a password when hiding the settings tab makes it possible to later restore it from the menu, by going to the Main Menu tab, selecting Enable Settings Tab and entering the password.") diff --git a/intl/msg_hash_eo.h b/intl/msg_hash_eo.h index 1d24d3598c..1fbfbeb151 100644 --- a/intl/msg_hash_eo.h +++ b/intl/msg_hash_eo.h @@ -1572,8 +1572,6 @@ MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_ICON_THEME_RETROACTIVE, "RetroActive") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_ICON_THEME_DOTART, "Dot-Art") -MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_MAIN_MENU_ENABLE_SETTINGS, - "Enable Settings Tab") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_MENU_COLOR_THEME, "Menu Color Theme") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_MENU_COLOR_THEME_APPLE_GREEN, @@ -1610,8 +1608,6 @@ MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_MUSIC, "Display Music Tab") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_SETTINGS, "Display Settings Tab") -MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_SETTINGS_PASSWORD, - "Set Password For Enabling Settings Tab") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_VIDEO, "Display Video Tab") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_THEME, @@ -1928,12 +1924,6 @@ MSG_HASH(MSG_INPUT_PRESET_FILENAME, "Preset Filename") MSG_HASH(MSG_INPUT_RENAME_ENTRY, "Rename Title") -MSG_HASH(MSG_INPUT_ENABLE_SETTINGS_PASSWORD, - "Enter Password") -MSG_HASH(MSG_INPUT_ENABLE_SETTINGS_PASSWORD_OK, - "Password correct.") -MSG_HASH(MSG_INPUT_ENABLE_SETTINGS_PASSWORD_NOK, - "Password incorrect.") MSG_HASH(MSG_INTERFACE, "Interface") MSG_HASH(MSG_INTERNAL_STORAGE, @@ -2716,8 +2706,6 @@ MSG_HASH(MENU_ENUM_SUBLABEL_MATERIALUI_MENU_COLOR_THEME, "Select a different background color gradient theme.") MSG_HASH(MENU_ENUM_SUBLABEL_MENU_WALLPAPER_OPACITY, "Modify the opacity of the background wallpaper.") -MSG_HASH(MENU_ENUM_SUBLABEL_XMB_MAIN_MENU_ENABLE_SETTINGS, - "Enables the Settings tab. A restart is required for the tab to appear.") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_MENU_COLOR_THEME, "Select a different background color gradient theme.") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_RIBBON_ENABLE, @@ -2736,8 +2724,6 @@ MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_NETPLAY, "Show the netplay tab inside the main menu.") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_SETTINGS, "Show the settings tab inside the main menu.") -MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_SETTINGS_PASSWORD, - "Supplying a password when hiding the settings tab makes it possible to later restore it from the menu, by going to the Main Menu tab, selecting Enable Settings Tab and entering the password.") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_HISTORY, "Show the recent history tab inside the main menu.") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_ADD, @@ -2922,3 +2908,17 @@ MSG_HASH(MENU_ENUM_LABEL_VALUE_MATERIALUI_ICONS_ENABLE, "Menu Icons") MSG_HASH(MENU_ENUM_SUBLABEL_MATERIALUI_ICONS_ENABLE, "Enable/disable the menu icons shown at the lefthand side of the menu entries.") +MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_MAIN_MENU_ENABLE_SETTINGS, + "Enable Settings Tab") +MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_SETTINGS_PASSWORD, + "Set Password For Enabling Settings Tab") +MSG_HASH(MSG_INPUT_ENABLE_SETTINGS_PASSWORD, + "Enter Password") +MSG_HASH(MSG_INPUT_ENABLE_SETTINGS_PASSWORD_OK, + "Password correct.") +MSG_HASH(MSG_INPUT_ENABLE_SETTINGS_PASSWORD_NOK, + "Password incorrect.") +MSG_HASH(MENU_ENUM_SUBLABEL_XMB_MAIN_MENU_ENABLE_SETTINGS, + "Enables the Settings tab. A restart is required for the tab to appear.") +MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_SETTINGS_PASSWORD, + "Supplying a password when hiding the settings tab makes it possible to later restore it from the menu, by going to the Main Menu tab, selecting Enable Settings Tab and entering the password.") diff --git a/intl/msg_hash_fr.h b/intl/msg_hash_fr.h index 4005d86d89..c2215e8bd9 100644 --- a/intl/msg_hash_fr.h +++ b/intl/msg_hash_fr.h @@ -1697,8 +1697,6 @@ MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_ICON_THEME_RETROACTIVE, "RetroActive") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_ICON_THEME_DOTART, "Dot-Art") -MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_MAIN_MENU_ENABLE_SETTINGS, - "Enable Settings Tab") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_MENU_COLOR_THEME, "Palette du menu") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_MENU_COLOR_THEME_APPLE_GREEN, @@ -1735,8 +1733,6 @@ MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_MUSIC, "Afficher l'onglet Musique") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_SETTINGS, "Afficher l'onglet Paramètres") -MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_SETTINGS_PASSWORD, - "Set Password For Enabling Settings Tab") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_VIDEO, "Afficher l'onglet Vidéo") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_THEME, @@ -2059,12 +2055,6 @@ MSG_HASH(MSG_INPUT_PRESET_FILENAME, "Nom du fichier de pré-réglage") MSG_HASH(MSG_INPUT_RENAME_ENTRY, "Rename Title") -MSG_HASH(MSG_INPUT_ENABLE_SETTINGS_PASSWORD, - "Enter Password") -MSG_HASH(MSG_INPUT_ENABLE_SETTINGS_PASSWORD_OK, - "Password correct.") -MSG_HASH(MSG_INPUT_ENABLE_SETTINGS_PASSWORD_NOK, - "Password incorrect.") MSG_HASH(MSG_INTERFACE, "Interface") MSG_HASH(MSG_INTERNAL_STORAGE, @@ -2887,8 +2877,6 @@ MSG_HASH(MENU_ENUM_SUBLABEL_MATERIALUI_MENU_COLOR_THEME, "Select a different background color gradient theme.") MSG_HASH(MENU_ENUM_SUBLABEL_MENU_WALLPAPER_OPACITY, "Modify the opacity of the background wallpaper.") -MSG_HASH(MENU_ENUM_SUBLABEL_XMB_MAIN_MENU_ENABLE_SETTINGS, - "Enables the Settings tab. A restart is required for the tab to appear.") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_MENU_COLOR_THEME, "Select a different background color gradient theme.") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_RIBBON_ENABLE, @@ -2905,8 +2893,6 @@ MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_NETPLAY, "Affiche l'onglet de jeu en réseau dans le menu principal.") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_SETTINGS, "Affiche l'onglet ces réglages dans le menu principal.") -MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_SETTINGS_PASSWORD, - "Supplying a password when hiding the settings tab makes it possible to later restore it from the menu, by going to the Main Menu tab, selecting Enable Settings Tab and entering the password.") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_HISTORY, "Affiche l'onglet de l'historique dans le menu principal.") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_ADD, @@ -3091,3 +3077,17 @@ MSG_HASH(MENU_ENUM_LABEL_VALUE_MATERIALUI_ICONS_ENABLE, "Menu Icons") MSG_HASH(MENU_ENUM_SUBLABEL_MATERIALUI_ICONS_ENABLE, "Enable/disable the menu icons shown at the lefthand side of the menu entries.") +MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_MAIN_MENU_ENABLE_SETTINGS, + "Enable Settings Tab") +MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_SETTINGS_PASSWORD, + "Set Password For Enabling Settings Tab") +MSG_HASH(MSG_INPUT_ENABLE_SETTINGS_PASSWORD, + "Enter Password") +MSG_HASH(MSG_INPUT_ENABLE_SETTINGS_PASSWORD_OK, + "Password correct.") +MSG_HASH(MSG_INPUT_ENABLE_SETTINGS_PASSWORD_NOK, + "Password incorrect.") +MSG_HASH(MENU_ENUM_SUBLABEL_XMB_MAIN_MENU_ENABLE_SETTINGS, + "Enables the Settings tab. A restart is required for the tab to appear.") +MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_SETTINGS_PASSWORD, + "Supplying a password when hiding the settings tab makes it possible to later restore it from the menu, by going to the Main Menu tab, selecting Enable Settings Tab and entering the password.") diff --git a/intl/msg_hash_it.h b/intl/msg_hash_it.h index 11b432385e..5440d64028 100644 --- a/intl/msg_hash_it.h +++ b/intl/msg_hash_it.h @@ -1723,8 +1723,6 @@ MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_ICON_THEME_RETROACTIVE, "RetroAttivo") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_ICON_THEME_DOTART, "Dot-Art") -MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_MAIN_MENU_ENABLE_SETTINGS, - "Enable Settings Tab") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_MENU_COLOR_THEME, "Colore del menu") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_MENU_COLOR_THEME_APPLE_GREEN, @@ -1765,8 +1763,6 @@ MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_MUSIC, "Visualizza colonna Musica") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_SETTINGS, "Visualizza colonna Impostazioni") -MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_SETTINGS_PASSWORD, - "Set Password For Enabling Settings Tab") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_VIDEO, "Visualizza colonna Video") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_NETPLAY, @@ -2097,12 +2093,6 @@ MSG_HASH(MSG_INPUT_PRESET_FILENAME, "Nome del file predefinito") MSG_HASH(MSG_INPUT_RENAME_ENTRY, "Rinomina Titolo") -MSG_HASH(MSG_INPUT_ENABLE_SETTINGS_PASSWORD, - "Enter Password") -MSG_HASH(MSG_INPUT_ENABLE_SETTINGS_PASSWORD_OK, - "Password correct.") -MSG_HASH(MSG_INPUT_ENABLE_SETTINGS_PASSWORD_NOK, - "Password incorrect.") MSG_HASH(MSG_INTERFACE, "Interfaccia") MSG_HASH(MSG_INTERNAL_STORAGE, @@ -2933,8 +2923,6 @@ MSG_HASH(MENU_ENUM_SUBLABEL_MATERIALUI_MENU_COLOR_THEME, "Seleziona uno sfondo differente con colore sfumato nel tema.") MSG_HASH(MENU_ENUM_SUBLABEL_MENU_WALLPAPER_OPACITY, "Modifica l'opacità dello sfondo") -MSG_HASH(MENU_ENUM_SUBLABEL_XMB_MAIN_MENU_ENABLE_SETTINGS, - "Enables the Settings tab. A restart is required for the tab to appear.") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_MENU_COLOR_THEME, "Seleziona un colore di sfondo differente nel tema.") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_RIBBON_ENABLE, @@ -2953,8 +2941,6 @@ MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_NETPLAY, "Mostra la colonna camere netplay all'interno del menu principale") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_SETTINGS, "Mostra la colonna impostazioni all'interno del menu principale") -MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_SETTINGS_PASSWORD, - "Supplying a password when hiding the settings tab makes it possible to later restore it from the menu, by going to the Main Menu tab, selecting Enable Settings Tab and entering the password.") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_HISTORY, "Mostra la colonna cronologia all'interno del menu principale.") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_ADD, @@ -3145,3 +3131,17 @@ MSG_HASH(MENU_ENUM_LABEL_VALUE_MATERIALUI_ICONS_ENABLE, "Icone del Menu") MSG_HASH(MENU_ENUM_SUBLABEL_MATERIALUI_ICONS_ENABLE, "Abilita/disabilita le icone del menu visualizzate sul lato sinistro di ogni voce.") +MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_MAIN_MENU_ENABLE_SETTINGS, + "Enable Settings Tab") +MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_SETTINGS_PASSWORD, + "Set Password For Enabling Settings Tab") +MSG_HASH(MSG_INPUT_ENABLE_SETTINGS_PASSWORD, + "Enter Password") +MSG_HASH(MSG_INPUT_ENABLE_SETTINGS_PASSWORD_OK, + "Password correct.") +MSG_HASH(MSG_INPUT_ENABLE_SETTINGS_PASSWORD_NOK, + "Password incorrect.") +MSG_HASH(MENU_ENUM_SUBLABEL_XMB_MAIN_MENU_ENABLE_SETTINGS, + "Enables the Settings tab. A restart is required for the tab to appear.") +MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_SETTINGS_PASSWORD, + "Supplying a password when hiding the settings tab makes it possible to later restore it from the menu, by going to the Main Menu tab, selecting Enable Settings Tab and entering the password.") diff --git a/intl/msg_hash_ja.h b/intl/msg_hash_ja.h index 8a94a68f07..b8b2cf8e4c 100644 --- a/intl/msg_hash_ja.h +++ b/intl/msg_hash_ja.h @@ -1719,8 +1719,6 @@ MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_ICON_THEME_RETROACTIVE, "レトロアクティブ") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_ICON_THEME_DOTART, "ドット絵") -MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_MAIN_MENU_ENABLE_SETTINGS, - "Enable Settings Tab") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_MENU_COLOR_THEME, "メニューの色テーマ") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_MENU_COLOR_THEME_APPLE_GREEN, @@ -1759,8 +1757,6 @@ MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_MUSIC, "音楽タブを表示") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_SETTINGS, "設定タブを表示") -MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_SETTINGS_PASSWORD, - "Set Password For Enabling Settings Tab") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_VIDEO, "ビデオタブを表示") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_NETPLAY, @@ -2085,12 +2081,6 @@ MSG_HASH(MSG_INPUT_PRESET_FILENAME, "Preset Filename") MSG_HASH(MSG_INPUT_RENAME_ENTRY, "Rename Title") -MSG_HASH(MSG_INPUT_ENABLE_SETTINGS_PASSWORD, - "Enter Password") -MSG_HASH(MSG_INPUT_ENABLE_SETTINGS_PASSWORD_OK, - "Password correct.") -MSG_HASH(MSG_INPUT_ENABLE_SETTINGS_PASSWORD_NOK, - "Password incorrect.") MSG_HASH(MSG_INTERFACE, "インタフェース") MSG_HASH(MSG_INTERNAL_STORAGE, @@ -2875,8 +2865,6 @@ MSG_HASH(MENU_ENUM_SUBLABEL_MATERIALUI_MENU_COLOR_THEME, "Select a different background color gradient theme.") MSG_HASH(MENU_ENUM_SUBLABEL_MENU_WALLPAPER_OPACITY, "Modify the opacity of the background wallpaper.") -MSG_HASH(MENU_ENUM_SUBLABEL_XMB_MAIN_MENU_ENABLE_SETTINGS, - "Enables the Settings tab. A restart is required for the tab to appear.") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_MENU_COLOR_THEME, "Select a different background color gradient theme.") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_RIBBON_ENABLE, @@ -2893,8 +2881,6 @@ MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_NETPLAY, "メニューにネットプレイタブを表示する。") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_SETTINGS, "メニューに設定タブを表示する。") -MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_SETTINGS_PASSWORD, - "Supplying a password when hiding the settings tab makes it possible to later restore it from the menu, by going to the Main Menu tab, selecting Enable Settings Tab and entering the password.") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_HISTORY, "メニューに履歴タブを表示する。") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_ADD, @@ -3045,3 +3031,17 @@ MSG_HASH(MENU_ENUM_LABEL_VALUE_MATERIALUI_ICONS_ENABLE, "Menu Icons") MSG_HASH(MENU_ENUM_SUBLABEL_MATERIALUI_ICONS_ENABLE, "Enable/disable the menu icons shown at the lefthand side of the menu entries.") +MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_MAIN_MENU_ENABLE_SETTINGS, + "Enable Settings Tab") +MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_SETTINGS_PASSWORD, + "Set Password For Enabling Settings Tab") +MSG_HASH(MSG_INPUT_ENABLE_SETTINGS_PASSWORD, + "Enter Password") +MSG_HASH(MSG_INPUT_ENABLE_SETTINGS_PASSWORD_OK, + "Password correct.") +MSG_HASH(MSG_INPUT_ENABLE_SETTINGS_PASSWORD_NOK, + "Password incorrect.") +MSG_HASH(MENU_ENUM_SUBLABEL_XMB_MAIN_MENU_ENABLE_SETTINGS, + "Enables the Settings tab. A restart is required for the tab to appear.") +MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_SETTINGS_PASSWORD, + "Supplying a password when hiding the settings tab makes it possible to later restore it from the menu, by going to the Main Menu tab, selecting Enable Settings Tab and entering the password.") diff --git a/intl/msg_hash_ko.h b/intl/msg_hash_ko.h index eef786555a..3ff5018be1 100644 --- a/intl/msg_hash_ko.h +++ b/intl/msg_hash_ko.h @@ -1673,8 +1673,6 @@ MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_ICON_THEME_RETROACTIVE, "RetroActive") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_ICON_THEME_DOTART, "Dot-Art") -MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_MAIN_MENU_ENABLE_SETTINGS, - "Enable Settings Tab") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_MENU_COLOR_THEME, "메뉴 색상 테마") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_MENU_COLOR_THEME_APPLE_GREEN, @@ -1713,8 +1711,6 @@ MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_MUSIC, "음악 탭 표시") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_SETTINGS, "설정 탭 보이기") -MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_SETTINGS_PASSWORD, - "Set Password For Enabling Settings Tab") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_VIDEO, "비디오 탭 보이기") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_NETPLAY, @@ -2039,12 +2035,6 @@ MSG_HASH(MSG_INPUT_PRESET_FILENAME, "프리셋 파일명") MSG_HASH(MSG_INPUT_RENAME_ENTRY, "Rename Title") -MSG_HASH(MSG_INPUT_ENABLE_SETTINGS_PASSWORD, - "Enter Password") -MSG_HASH(MSG_INPUT_ENABLE_SETTINGS_PASSWORD_OK, - "Password correct.") -MSG_HASH(MSG_INPUT_ENABLE_SETTINGS_PASSWORD_NOK, - "Password incorrect.") MSG_HASH(MSG_INTERFACE, "인터페이스") MSG_HASH(MSG_INTERNAL_STORAGE, @@ -2851,8 +2841,6 @@ MSG_HASH(MENU_ENUM_SUBLABEL_MATERIALUI_MENU_COLOR_THEME, "배경색 그라데이션 테마를 선택.") MSG_HASH(MENU_ENUM_SUBLABEL_MENU_WALLPAPER_OPACITY, "배경화면의 투명도 변경.") -MSG_HASH(MENU_ENUM_SUBLABEL_XMB_MAIN_MENU_ENABLE_SETTINGS, - "Enables the Settings tab. A restart is required for the tab to appear.") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_MENU_COLOR_THEME, "배경색 그라데이션 테마 선택.") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_RIBBON_ENABLE, @@ -2869,8 +2857,6 @@ MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_NETPLAY, "메인 메뉴에 넷플레이 탭 보이기.") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_SETTINGS, "메인 메뉴에 설정 탭 보이기.") -MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_SETTINGS_PASSWORD, - "Supplying a password when hiding the settings tab makes it possible to later restore it from the menu, by going to the Main Menu tab, selecting Enable Settings Tab and entering the password.") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_HISTORY, "메인 메뉴에 최근 실행목록 탭 보이기.") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_ADD, @@ -3054,3 +3040,17 @@ MSG_HASH(MENU_ENUM_LABEL_VALUE_MATERIALUI_ICONS_ENABLE, "Menu Icons") MSG_HASH(MENU_ENUM_SUBLABEL_MATERIALUI_ICONS_ENABLE, "Enable/disable the menu icons shown at the lefthand side of the menu entries.") +MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_MAIN_MENU_ENABLE_SETTINGS, + "Enable Settings Tab") +MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_SETTINGS_PASSWORD, + "Set Password For Enabling Settings Tab") +MSG_HASH(MSG_INPUT_ENABLE_SETTINGS_PASSWORD, + "Enter Password") +MSG_HASH(MSG_INPUT_ENABLE_SETTINGS_PASSWORD_OK, + "Password correct.") +MSG_HASH(MSG_INPUT_ENABLE_SETTINGS_PASSWORD_NOK, + "Password incorrect.") +MSG_HASH(MENU_ENUM_SUBLABEL_XMB_MAIN_MENU_ENABLE_SETTINGS, + "Enables the Settings tab. A restart is required for the tab to appear.") +MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_SETTINGS_PASSWORD, + "Supplying a password when hiding the settings tab makes it possible to later restore it from the menu, by going to the Main Menu tab, selecting Enable Settings Tab and entering the password.") diff --git a/intl/msg_hash_nl.h b/intl/msg_hash_nl.h index eda589b5e8..b434f8ccd0 100644 --- a/intl/msg_hash_nl.h +++ b/intl/msg_hash_nl.h @@ -1570,8 +1570,6 @@ MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_ICON_THEME_RETROACTIVE, "RetroActive") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_ICON_THEME_DOTART, "Dot-Art") -MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_MAIN_MENU_ENABLE_SETTINGS, - "Enable Settings Tab") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_MENU_COLOR_THEME, "Menu Color Theme") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_MENU_COLOR_THEME_APPLE_GREEN, @@ -1608,8 +1606,6 @@ MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_MUSIC, "Muziektab weergeven") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_SETTINGS, "Instellingentab weergeven") -MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_SETTINGS_PASSWORD, - "Set Password For Enabling Settings Tab") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_VIDEO, "Videotab weergeven") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_THEME, @@ -1926,12 +1922,6 @@ MSG_HASH(MSG_INPUT_PRESET_FILENAME, "Preset Filename") MSG_HASH(MSG_INPUT_RENAME_ENTRY, "Rename Title") -MSG_HASH(MSG_INPUT_ENABLE_SETTINGS_PASSWORD, - "Enter Password") -MSG_HASH(MSG_INPUT_ENABLE_SETTINGS_PASSWORD_OK, - "Password correct.") -MSG_HASH(MSG_INPUT_ENABLE_SETTINGS_PASSWORD_NOK, - "Password incorrect.") MSG_HASH(MSG_INTERFACE, "Interface") MSG_HASH(MSG_INTERNAL_STORAGE, @@ -2718,8 +2708,6 @@ MSG_HASH(MENU_ENUM_SUBLABEL_MATERIALUI_MENU_COLOR_THEME, "Select a different background color gradient theme.") MSG_HASH(MENU_ENUM_SUBLABEL_MENU_WALLPAPER_OPACITY, "Modify the opacity of the background wallpaper.") -MSG_HASH(MENU_ENUM_SUBLABEL_XMB_MAIN_MENU_ENABLE_SETTINGS, - "Enables the Settings tab. A restart is required for the tab to appear.") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_MENU_COLOR_THEME, "Select a different background color gradient theme.") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_RIBBON_ENABLE, @@ -2736,8 +2724,6 @@ MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_NETPLAY, "Show the netplay tab inside the main menu.") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_SETTINGS, "Show the settings tab inside the main menu.") -MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_SETTINGS_PASSWORD, - "Supplying a password when hiding the settings tab makes it possible to later restore it from the menu, by going to the Main Menu tab, selecting Enable Settings Tab and entering the password.") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_HISTORY, "Show the recent history tab inside the main menu.") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_ADD, @@ -2922,3 +2908,17 @@ MSG_HASH(MENU_ENUM_LABEL_VALUE_MATERIALUI_ICONS_ENABLE, "Menu Icons") MSG_HASH(MENU_ENUM_SUBLABEL_MATERIALUI_ICONS_ENABLE, "Enable/disable the menu icons shown at the lefthand side of the menu entries.") +MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_MAIN_MENU_ENABLE_SETTINGS, + "Enable Settings Tab") +MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_SETTINGS_PASSWORD, + "Set Password For Enabling Settings Tab") +MSG_HASH(MSG_INPUT_ENABLE_SETTINGS_PASSWORD, + "Enter Password") +MSG_HASH(MSG_INPUT_ENABLE_SETTINGS_PASSWORD_OK, + "Password correct.") +MSG_HASH(MSG_INPUT_ENABLE_SETTINGS_PASSWORD_NOK, + "Password incorrect.") +MSG_HASH(MENU_ENUM_SUBLABEL_XMB_MAIN_MENU_ENABLE_SETTINGS, + "Enables the Settings tab. A restart is required for the tab to appear.") +MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_SETTINGS_PASSWORD, + "Supplying a password when hiding the settings tab makes it possible to later restore it from the menu, by going to the Main Menu tab, selecting Enable Settings Tab and entering the password.") diff --git a/intl/msg_hash_pt_br.h b/intl/msg_hash_pt_br.h index fa39dc6d8a..ea07b1db12 100644 --- a/intl/msg_hash_pt_br.h +++ b/intl/msg_hash_pt_br.h @@ -2215,9 +2215,6 @@ MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_ICON_THEME_RETROACTIVE, MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_ICON_THEME_DOTART, "Dot-Art" ) -MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_MAIN_MENU_ENABLE_SETTINGS, - "Enable Settings Tab" - ) MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_MENU_COLOR_THEME, "Tema de Cor do Menu" ) @@ -2278,9 +2275,6 @@ MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_MUSIC, MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_SETTINGS, "Exibir Aba de Configurações" ) -MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_SETTINGS_PASSWORD, - "Set Password For Enabling Settings Tab" - ) MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_VIDEO, "Exibir Aba de Vídeo" ) @@ -2776,15 +2770,6 @@ MSG_HASH(MSG_INPUT_PRESET_FILENAME, MSG_HASH(MSG_INPUT_RENAME_ENTRY, "Renomear Título" ) -MSG_HASH(MSG_INPUT_ENABLE_SETTINGS_PASSWORD, - "Enter Password" - ) -MSG_HASH(MSG_INPUT_ENABLE_SETTINGS_PASSWORD_OK, - "Password correct." - ) -MSG_HASH(MSG_INPUT_ENABLE_SETTINGS_PASSWORD_NOK, - "Password incorrect." - ) MSG_HASH(MSG_INTERFACE, "Interface" ) @@ -3709,9 +3694,6 @@ MSG_HASH(MENU_ENUM_SUBLABEL_MATERIALUI_MENU_COLOR_THEME, MSG_HASH(MENU_ENUM_SUBLABEL_MENU_WALLPAPER_OPACITY, "Modificar a opacidade do plano de fundo." ) -MSG_HASH(MENU_ENUM_SUBLABEL_XMB_MAIN_MENU_ENABLE_SETTINGS, - "Enables the Settings tab. A restart is required for the tab to appear." - ) MSG_HASH(MENU_ENUM_SUBLABEL_XMB_MENU_COLOR_THEME, "Selecionar um tema de gradiente de cor de plano de fundo diferente." ) @@ -3739,9 +3721,6 @@ MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_NETPLAY, MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_SETTINGS, "Mostrar a aba de configurações dentro do menu principal." ) -MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_SETTINGS_PASSWORD, - "Supplying a password when hiding the settings tab makes it possible to later restore it from the menu, by going to the Main Menu tab, selecting Enable Settings Tab and entering the password." - ) MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_HISTORY, "Mostrar a aba de histórico recente dentro do menu principal." ) @@ -3982,3 +3961,24 @@ MSG_HASH(MENU_ENUM_LABEL_VALUE_MATERIALUI_ICONS_ENABLE, MSG_HASH(MENU_ENUM_SUBLABEL_MATERIALUI_ICONS_ENABLE, "Habilitar/desabilitar os ícones exibidos do lado esquerdo dos itens de menu. " ) +MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_MAIN_MENU_ENABLE_SETTINGS, + "Enable Settings Tab" + ) +MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_SETTINGS_PASSWORD, + "Set Password For Enabling Settings Tab" + ) +MSG_HASH(MSG_INPUT_ENABLE_SETTINGS_PASSWORD, + "Enter Password" + ) +MSG_HASH(MSG_INPUT_ENABLE_SETTINGS_PASSWORD_OK, + "Password correct." + ) +MSG_HASH(MSG_INPUT_ENABLE_SETTINGS_PASSWORD_NOK, + "Password incorrect." + ) +MSG_HASH(MENU_ENUM_SUBLABEL_XMB_MAIN_MENU_ENABLE_SETTINGS, + "Enables the Settings tab. A restart is required for the tab to appear." + ) +MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_SETTINGS_PASSWORD, + "Supplying a password when hiding the settings tab makes it possible to later restore it from the menu, by going to the Main Menu tab, selecting Enable Settings Tab and entering the password." + ) diff --git a/intl/msg_hash_pt_pt.h b/intl/msg_hash_pt_pt.h index fd41372558..ac543b90df 100644 --- a/intl/msg_hash_pt_pt.h +++ b/intl/msg_hash_pt_pt.h @@ -1665,8 +1665,6 @@ MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_ICON_THEME_RETROACTIVE, "RetroActive") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_ICON_THEME_DOTART, "Dot-Art") -MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_MAIN_MENU_ENABLE_SETTINGS, - "Enable Settings Tab") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_MENU_COLOR_THEME, "Cor do tema do Menu") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_MENU_COLOR_THEME_APPLE_GREEN, @@ -1705,8 +1703,6 @@ MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_MUSIC, "Exibir Aba de Música") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_SETTINGS, "Exibir Aba de Definições") -MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_SETTINGS_PASSWORD, - "Set Password For Enabling Settings Tab") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_VIDEO, "Exibir Aba de Vídeo") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_THEME, @@ -2029,12 +2025,6 @@ MSG_HASH(MSG_INPUT_PRESET_FILENAME, "Nome de Arquivo Pré-Definido") MSG_HASH(MSG_INPUT_RENAME_ENTRY, "Rename Title") -MSG_HASH(MSG_INPUT_ENABLE_SETTINGS_PASSWORD, - "Enter Password") -MSG_HASH(MSG_INPUT_ENABLE_SETTINGS_PASSWORD_OK, - "Password correct.") -MSG_HASH(MSG_INPUT_ENABLE_SETTINGS_PASSWORD_NOK, - "Password incorrect.") MSG_HASH(MSG_INTERFACE, "Interface") MSG_HASH(MSG_INTERNAL_STORAGE, @@ -2829,8 +2819,6 @@ MSG_HASH(MENU_ENUM_SUBLABEL_MATERIALUI_MENU_COLOR_THEME, "Selecionar um tema degradê de cor de fundo diferente.") MSG_HASH(MENU_ENUM_SUBLABEL_MENU_WALLPAPER_OPACITY, "Modificar a opacidade do papel de parede.") -MSG_HASH(MENU_ENUM_SUBLABEL_XMB_MAIN_MENU_ENABLE_SETTINGS, - "Enables the Settings tab. A restart is required for the tab to appear.") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_MENU_COLOR_THEME, "Selecionar um tema degradê de cor de fundo diferente.") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_RIBBON_ENABLE, @@ -2845,8 +2833,6 @@ MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_VIDEO, "Mostrar a aba de vídeo dentro do menu principal.") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_SETTINGS, "Mostrar a aba de definições dentro do menu principal.") -MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_SETTINGS_PASSWORD, - "Supplying a password when hiding the settings tab makes it possible to later restore it from the menu, by going to the Main Menu tab, selecting Enable Settings Tab and entering the password.") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_HISTORY, "Mostrar a aba de histórico recente dentro do menu principal.") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_ADD, @@ -3029,3 +3015,17 @@ MSG_HASH(MENU_ENUM_LABEL_VALUE_MATERIALUI_ICONS_ENABLE, "Menu Icons") MSG_HASH(MENU_ENUM_SUBLABEL_MATERIALUI_ICONS_ENABLE, "Enable/disable the menu icons shown at the lefthand side of the menu entries.") +MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_MAIN_MENU_ENABLE_SETTINGS, + "Enable Settings Tab") +MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_SETTINGS_PASSWORD, + "Set Password For Enabling Settings Tab") +MSG_HASH(MSG_INPUT_ENABLE_SETTINGS_PASSWORD, + "Enter Password") +MSG_HASH(MSG_INPUT_ENABLE_SETTINGS_PASSWORD_OK, + "Password correct.") +MSG_HASH(MSG_INPUT_ENABLE_SETTINGS_PASSWORD_NOK, + "Password incorrect.") +MSG_HASH(MENU_ENUM_SUBLABEL_XMB_MAIN_MENU_ENABLE_SETTINGS, + "Enables the Settings tab. A restart is required for the tab to appear.") +MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_SETTINGS_PASSWORD, + "Supplying a password when hiding the settings tab makes it possible to later restore it from the menu, by going to the Main Menu tab, selecting Enable Settings Tab and entering the password.") diff --git a/intl/msg_hash_ru.h b/intl/msg_hash_ru.h index 817ce24679..8e43483a36 100644 --- a/intl/msg_hash_ru.h +++ b/intl/msg_hash_ru.h @@ -1706,8 +1706,6 @@ MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_ICON_THEME_RETROACTIVE, "RetroActive") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_ICON_THEME_DOTART, "Dot-Art") -MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_MAIN_MENU_ENABLE_SETTINGS, - "Enable Settings Tab") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_MENU_COLOR_THEME, "Цветная тема меню") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_MENU_COLOR_THEME_APPLE_GREEN, @@ -1746,8 +1744,6 @@ MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_MUSIC, "Показать вкладку Музыка") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_SETTINGS, "Показать вкладку Настройки") -MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_SETTINGS_PASSWORD, - "Set Password For Enabling Settings Tab") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_VIDEO, "Показать вкладку Видео") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_NETPLAY, @@ -2074,12 +2070,6 @@ MSG_HASH(MSG_INPUT_PRESET_FILENAME, "Имя настроек") MSG_HASH(MSG_INPUT_RENAME_ENTRY, "Переименовать заголовок") -MSG_HASH(MSG_INPUT_ENABLE_SETTINGS_PASSWORD, - "Enter Password") -MSG_HASH(MSG_INPUT_ENABLE_SETTINGS_PASSWORD_OK, - "Password correct.") -MSG_HASH(MSG_INPUT_ENABLE_SETTINGS_PASSWORD_NOK, - "Password incorrect.") MSG_HASH(MSG_INTERFACE, "Интерфейс") MSG_HASH(MSG_INTERNAL_STORAGE, @@ -2902,8 +2892,6 @@ MSG_HASH(MENU_ENUM_SUBLABEL_MATERIALUI_MENU_COLOR_THEME, "Выберите другую тему цветового градиента.") MSG_HASH(MENU_ENUM_SUBLABEL_MENU_WALLPAPER_OPACITY, "Изменить прозрачность обоев интерфейса.") -MSG_HASH(MENU_ENUM_SUBLABEL_XMB_MAIN_MENU_ENABLE_SETTINGS, - "Enables the Settings tab. A restart is required for the tab to appear.") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_MENU_COLOR_THEME, "Выберите другую тему цветового градиента.") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_RIBBON_ENABLE, @@ -2920,8 +2908,6 @@ MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_NETPLAY, "Показать вкладку Сетевая игра в главном меню.") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_SETTINGS, "Показать вкладку Настройка в главном меню.") -MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_SETTINGS_PASSWORD, - "Supplying a password when hiding the settings tab makes it possible to later restore it from the menu, by going to the Main Menu tab, selecting Enable Settings Tab and entering the password.") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_HISTORY, "Показать вкладку История просмотров в главном меню.") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_ADD, @@ -3112,3 +3098,17 @@ MSG_HASH(MENU_ENUM_LABEL_VALUE_MATERIALUI_ICONS_ENABLE, "Иконки интерфейса") MSG_HASH(MENU_ENUM_SUBLABEL_MATERIALUI_ICONS_ENABLE, "Отображать или скрывать иконки интерфейса, отображающиеся в левой части меню.") +MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_MAIN_MENU_ENABLE_SETTINGS, + "Enable Settings Tab") +MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_SETTINGS_PASSWORD, + "Set Password For Enabling Settings Tab") +MSG_HASH(MSG_INPUT_ENABLE_SETTINGS_PASSWORD, + "Enter Password") +MSG_HASH(MSG_INPUT_ENABLE_SETTINGS_PASSWORD_OK, + "Password correct.") +MSG_HASH(MSG_INPUT_ENABLE_SETTINGS_PASSWORD_NOK, + "Password incorrect.") +MSG_HASH(MENU_ENUM_SUBLABEL_XMB_MAIN_MENU_ENABLE_SETTINGS, + "Enables the Settings tab. A restart is required for the tab to appear.") +MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_SETTINGS_PASSWORD, + "Supplying a password when hiding the settings tab makes it possible to later restore it from the menu, by going to the Main Menu tab, selecting Enable Settings Tab and entering the password.") diff --git a/intl/msg_hash_us.h b/intl/msg_hash_us.h index d6d4d9a034..b12b1f2126 100644 --- a/intl/msg_hash_us.h +++ b/intl/msg_hash_us.h @@ -1725,8 +1725,6 @@ MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_ICON_THEME_RETROACTIVE, "RetroActive") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_ICON_THEME_DOTART, "Dot-Art") -MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_MAIN_MENU_ENABLE_SETTINGS, - "Enable Settings Tab") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_MENU_COLOR_THEME, "Menu Color Theme") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_MENU_COLOR_THEME_APPLE_GREEN, @@ -1767,8 +1765,6 @@ MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_MUSIC, "Show Music Tab") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_SETTINGS, "Show Settings Tab") -MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_SETTINGS_PASSWORD, - "Set Password For Enabling Settings Tab") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_VIDEO, "Show Video Tab") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_NETPLAY, @@ -2099,12 +2095,6 @@ MSG_HASH(MSG_INPUT_PRESET_FILENAME, "Preset Filename") MSG_HASH(MSG_INPUT_RENAME_ENTRY, "Rename Title") -MSG_HASH(MSG_INPUT_ENABLE_SETTINGS_PASSWORD, - "Enter Password") -MSG_HASH(MSG_INPUT_ENABLE_SETTINGS_PASSWORD_OK, - "Password correct.") -MSG_HASH(MSG_INPUT_ENABLE_SETTINGS_PASSWORD_NOK, - "Password incorrect.") MSG_HASH(MSG_INTERFACE, "Interface") MSG_HASH(MSG_INTERNAL_STORAGE, @@ -2935,8 +2925,6 @@ MSG_HASH(MENU_ENUM_SUBLABEL_MATERIALUI_MENU_COLOR_THEME, "Select a different background color gradient theme.") MSG_HASH(MENU_ENUM_SUBLABEL_MENU_WALLPAPER_OPACITY, "Modify the opacity of the background wallpaper.") -MSG_HASH(MENU_ENUM_SUBLABEL_XMB_MAIN_MENU_ENABLE_SETTINGS, - "Enables the Settings tab. A restart is required for the tab to appear.") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_MENU_COLOR_THEME, "Select a different background color gradient theme.") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_RIBBON_ENABLE, @@ -2955,8 +2943,6 @@ MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_NETPLAY, "Show the netplay tab inside the main menu.") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_SETTINGS, "Show the settings tab inside the main menu.") -MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_SETTINGS_PASSWORD, - "Supplying a password when hiding the settings tab makes it possible to later restore it from the menu, by going to the Main Menu tab, selecting Enable Settings Tab and entering the password.") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_HISTORY, "Show the recent history tab inside the main menu.") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_ADD, @@ -3147,3 +3133,17 @@ MSG_HASH(MENU_ENUM_LABEL_VALUE_MATERIALUI_ICONS_ENABLE, "Menu Icons") MSG_HASH(MENU_ENUM_SUBLABEL_MATERIALUI_ICONS_ENABLE, "Enable/disable the menu icons shown at the lefthand side of the menu entries.") +MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_MAIN_MENU_ENABLE_SETTINGS, + "Enable Settings Tab") +MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_SETTINGS_PASSWORD, + "Set Password For Enabling Settings Tab") +MSG_HASH(MSG_INPUT_ENABLE_SETTINGS_PASSWORD, + "Enter Password") +MSG_HASH(MSG_INPUT_ENABLE_SETTINGS_PASSWORD_OK, + "Password correct.") +MSG_HASH(MSG_INPUT_ENABLE_SETTINGS_PASSWORD_NOK, + "Password incorrect.") +MSG_HASH(MENU_ENUM_SUBLABEL_XMB_MAIN_MENU_ENABLE_SETTINGS, + "Enables the Settings tab. A restart is required for the tab to appear.") +MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_SETTINGS_PASSWORD, + "Supplying a password when hiding the settings tab makes it possible to later restore it from the menu, by going to the Main Menu tab, selecting Enable Settings Tab and entering the password.") diff --git a/intl/msg_hash_vn.h b/intl/msg_hash_vn.h index e8bdcb1c9e..0754579517 100644 --- a/intl/msg_hash_vn.h +++ b/intl/msg_hash_vn.h @@ -1691,8 +1691,6 @@ MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_ICON_THEME_RETROACTIVE, "RetroActive") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_ICON_THEME_DOTART, "Dot-Art") -MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_MAIN_MENU_ENABLE_SETTINGS, - "Enable Settings Tab") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_MENU_COLOR_THEME, "Menu Color Theme") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_MENU_COLOR_THEME_APPLE_GREEN, @@ -1731,8 +1729,6 @@ MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_MUSIC, "Display Music Tab") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_SETTINGS, "Show thiết lập Tab") -MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_SETTINGS_PASSWORD, - "Set Password For Enabling Settings Tab") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_VIDEO, "Display Video Tab") MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_NETPLAY, @@ -2057,12 +2053,6 @@ MSG_HASH(MSG_INPUT_PRESET_FILENAME, "Preset Filename") MSG_HASH(MSG_INPUT_RENAME_ENTRY, "Rename Title") -MSG_HASH(MSG_INPUT_ENABLE_SETTINGS_PASSWORD, - "Enter Password") -MSG_HASH(MSG_INPUT_ENABLE_SETTINGS_PASSWORD_OK, - "Password correct.") -MSG_HASH(MSG_INPUT_ENABLE_SETTINGS_PASSWORD_NOK, - "Password incorrect.") MSG_HASH(MSG_INTERFACE, "Interface") MSG_HASH(MSG_INTERNAL_STORAGE, @@ -2885,8 +2875,6 @@ MSG_HASH(MENU_ENUM_SUBLABEL_MATERIALUI_MENU_COLOR_THEME, "Select a different background color gradient theme.") MSG_HASH(MENU_ENUM_SUBLABEL_MENU_WALLPAPER_OPACITY, "Modify the opacity of the background wallpaper.") -MSG_HASH(MENU_ENUM_SUBLABEL_XMB_MAIN_MENU_ENABLE_SETTINGS, - "Enables the Settings tab. A restart is required for the tab to appear.") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_MENU_COLOR_THEME, "Select a different background color gradient theme.") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_RIBBON_ENABLE, @@ -2903,8 +2891,6 @@ MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_NETPLAY, "Show the netplay tab inside the main menu.") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_SETTINGS, "Show the settings tab inside the main menu.") -MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_SETTINGS_PASSWORD, - "Supplying a password when hiding the settings tab makes it possible to later restore it from the menu, by going to the Main Menu tab, selecting Enable Settings Tab and entering the password.") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_HISTORY, "Show the recent history tab inside the main menu.") MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_ADD, @@ -3083,3 +3069,17 @@ MSG_HASH(MENU_ENUM_LABEL_VALUE_MATERIALUI_ICONS_ENABLE, "Menu Icons") MSG_HASH(MENU_ENUM_SUBLABEL_MATERIALUI_ICONS_ENABLE, "Enable/disable the menu icons shown at the lefthand side of the menu entries.") +MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_MAIN_MENU_ENABLE_SETTINGS, + "Enable Settings Tab") +MSG_HASH(MENU_ENUM_LABEL_VALUE_XMB_SHOW_SETTINGS_PASSWORD, + "Set Password For Enabling Settings Tab") +MSG_HASH(MSG_INPUT_ENABLE_SETTINGS_PASSWORD, + "Enter Password") +MSG_HASH(MSG_INPUT_ENABLE_SETTINGS_PASSWORD_OK, + "Password correct.") +MSG_HASH(MSG_INPUT_ENABLE_SETTINGS_PASSWORD_NOK, + "Password incorrect.") +MSG_HASH(MENU_ENUM_SUBLABEL_XMB_MAIN_MENU_ENABLE_SETTINGS, + "Enables the Settings tab. A restart is required for the tab to appear.") +MSG_HASH(MENU_ENUM_SUBLABEL_XMB_SHOW_SETTINGS_PASSWORD, + "Supplying a password when hiding the settings tab makes it possible to later restore it from the menu, by going to the Main Menu tab, selecting Enable Settings Tab and entering the password.")