mirror of
https://github.com/libretro/RetroArch
synced 2025-04-09 21:45:45 +00:00
Rename 'Load Recent' and move it to Main Menu
This commit is contained in:
parent
3cd8184fca
commit
59148b6799
@ -402,7 +402,7 @@ const char *menu_hash_to_str_de(uint32_t hash)
|
|||||||
case MENU_LABEL_VALUE_DETECT_CORE_LIST:
|
case MENU_LABEL_VALUE_DETECT_CORE_LIST:
|
||||||
return "Lade Content (Core erkennen)"; /* FIXME */
|
return "Lade Content (Core erkennen)"; /* FIXME */
|
||||||
case MENU_LABEL_VALUE_LOAD_CONTENT_HISTORY:
|
case MENU_LABEL_VALUE_LOAD_CONTENT_HISTORY:
|
||||||
return "Lade Content (Verlauf)";
|
return "Lade Content (Verlauf)"; /* FIXME/UPDATE */
|
||||||
case MENU_LABEL_VALUE_AUDIO_ENABLE:
|
case MENU_LABEL_VALUE_AUDIO_ENABLE:
|
||||||
return "Aktiviere Audio";
|
return "Aktiviere Audio";
|
||||||
case MENU_LABEL_VALUE_FPS_SHOW:
|
case MENU_LABEL_VALUE_FPS_SHOW:
|
||||||
|
@ -409,7 +409,7 @@ const char *menu_hash_to_str_fr(uint32_t hash)
|
|||||||
case MENU_LABEL_VALUE_DETECT_CORE_LIST:
|
case MENU_LABEL_VALUE_DETECT_CORE_LIST:
|
||||||
return "Via les fichiers + détecter le core";
|
return "Via les fichiers + détecter le core";
|
||||||
case MENU_LABEL_VALUE_LOAD_CONTENT_HISTORY:
|
case MENU_LABEL_VALUE_LOAD_CONTENT_HISTORY:
|
||||||
return "Via l'historique";
|
return "Via l'historique"; /* FIXME/UPDATE */
|
||||||
case MENU_LABEL_VALUE_AUDIO_ENABLE:
|
case MENU_LABEL_VALUE_AUDIO_ENABLE:
|
||||||
return "Activer le son";
|
return "Activer le son";
|
||||||
case MENU_LABEL_VALUE_FPS_SHOW:
|
case MENU_LABEL_VALUE_FPS_SHOW:
|
||||||
|
@ -390,7 +390,7 @@ const char *menu_hash_to_str_nl(uint32_t hash)
|
|||||||
case MENU_LABEL_VALUE_DETECT_CORE_LIST:
|
case MENU_LABEL_VALUE_DETECT_CORE_LIST:
|
||||||
return "Selecteer bestand en detecteer Core";
|
return "Selecteer bestand en detecteer Core";
|
||||||
case MENU_LABEL_VALUE_LOAD_CONTENT_HISTORY:
|
case MENU_LABEL_VALUE_LOAD_CONTENT_HISTORY:
|
||||||
return "Selecteer uit geschiedenis";
|
return "Laad Recent";
|
||||||
case MENU_LABEL_VALUE_AUDIO_ENABLE:
|
case MENU_LABEL_VALUE_AUDIO_ENABLE:
|
||||||
return "Audio Activeren";
|
return "Audio Activeren";
|
||||||
case MENU_LABEL_VALUE_FPS_SHOW:
|
case MENU_LABEL_VALUE_FPS_SHOW:
|
||||||
|
@ -398,7 +398,7 @@ const char *menu_hash_to_str_pt(uint32_t hash)
|
|||||||
case MENU_LABEL_VALUE_DETECT_CORE_LIST:
|
case MENU_LABEL_VALUE_DETECT_CORE_LIST:
|
||||||
return "Selecionar Arquivo e Detectar Core";
|
return "Selecionar Arquivo e Detectar Core";
|
||||||
case MENU_LABEL_VALUE_LOAD_CONTENT_HISTORY:
|
case MENU_LABEL_VALUE_LOAD_CONTENT_HISTORY:
|
||||||
return "Selecionar do Histórico";
|
return "Selecionar do Histórico"; /* FIXME/UPDATE */
|
||||||
case MENU_LABEL_VALUE_AUDIO_ENABLE:
|
case MENU_LABEL_VALUE_AUDIO_ENABLE:
|
||||||
return "Ativar Áudio";
|
return "Ativar Áudio";
|
||||||
case MENU_LABEL_VALUE_FPS_SHOW:
|
case MENU_LABEL_VALUE_FPS_SHOW:
|
||||||
|
@ -955,7 +955,7 @@ const char *menu_hash_to_str_us(uint32_t hash)
|
|||||||
case MENU_LABEL_VALUE_DETECT_CORE_LIST:
|
case MENU_LABEL_VALUE_DETECT_CORE_LIST:
|
||||||
return "Select File And Detect Core";
|
return "Select File And Detect Core";
|
||||||
case MENU_LABEL_VALUE_LOAD_CONTENT_HISTORY:
|
case MENU_LABEL_VALUE_LOAD_CONTENT_HISTORY:
|
||||||
return "Select From History";
|
return "Load Recent";
|
||||||
case MENU_LABEL_VALUE_AUDIO_ENABLE:
|
case MENU_LABEL_VALUE_AUDIO_ENABLE:
|
||||||
return "Audio Enable";
|
return "Audio Enable";
|
||||||
case MENU_LABEL_VALUE_FPS_SHOW:
|
case MENU_LABEL_VALUE_FPS_SHOW:
|
||||||
|
@ -1676,14 +1676,6 @@ static int menu_displaylist_parse_load_content_list(menu_displaylist_info_t *inf
|
|||||||
MENU_SETTING_ACTION, 0, 0);
|
MENU_SETTING_ACTION, 0, 0);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
if (settings->history_list_enable)
|
|
||||||
{
|
|
||||||
menu_list_push(info->list,
|
|
||||||
menu_hash_to_str(MENU_LABEL_VALUE_LOAD_CONTENT_HISTORY),
|
|
||||||
menu_hash_to_str(MENU_LABEL_LOAD_CONTENT_HISTORY),
|
|
||||||
MENU_SETTING_ACTION, 0, 0);
|
|
||||||
}
|
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2491,6 +2491,16 @@ static bool setting_append_list_main_menu_options(
|
|||||||
subgroup_info.name,
|
subgroup_info.name,
|
||||||
parent_group);
|
parent_group);
|
||||||
|
|
||||||
|
if (settings->history_list_enable)
|
||||||
|
{
|
||||||
|
CONFIG_ACTION(
|
||||||
|
menu_hash_to_str(MENU_LABEL_LOAD_CONTENT_HISTORY),
|
||||||
|
menu_hash_to_str(MENU_LABEL_VALUE_LOAD_CONTENT_HISTORY),
|
||||||
|
group_info.name,
|
||||||
|
subgroup_info.name,
|
||||||
|
parent_group);
|
||||||
|
}
|
||||||
|
|
||||||
#ifdef HAVE_NETWORKING
|
#ifdef HAVE_NETWORKING
|
||||||
CONFIG_ACTION(
|
CONFIG_ACTION(
|
||||||
menu_hash_to_str(MENU_LABEL_ONLINE_UPDATER),
|
menu_hash_to_str(MENU_LABEL_ONLINE_UPDATER),
|
||||||
|
Loading…
x
Reference in New Issue
Block a user