menu_hash_to_str_enum has now become msg_hash_to_str

This commit is contained in:
twinaphex 2016-06-20 00:31:13 +02:00
parent a741dadf20
commit 65dff0a03a
57 changed files with 11056 additions and 12827 deletions

View File

@ -2189,11 +2189,11 @@ void cheevos_populate_menu(void *data)
menu_displaylist_info_t *info = (menu_displaylist_info_t*)data;
menu_entries_add_enum(info->list,
menu_hash_to_str_enum(MENU_ENUM_LABEL_VALUE_CHEEVOS_UNLOCKED_ACHIEVEMENTS),
menu_hash_to_str_enum(MENU_ENUM_LABEL_CHEEVOS_UNLOCKED_ACHIEVEMENTS),
msg_hash_to_str(MENU_ENUM_LABEL_VALUE_CHEEVOS_UNLOCKED_ACHIEVEMENTS),
msg_hash_to_str(MENU_ENUM_LABEL_CHEEVOS_UNLOCKED_ACHIEVEMENTS),
MENU_ENUM_LABEL_CHEEVOS_UNLOCKED_ACHIEVEMENTS,
MENU_SETTINGS_CHEEVOS_NONE, 0, 0);
menu_entries_add_enum(info->list, "", "", MENU_ENUM_LABEL_UNKNOWN,
menu_entries_add_enum(info->list, "", "", MSG_UNKNOWN,
MENU_SETTINGS_CHEEVOS_NONE, 0, 0);
cheevo = cheevos_locals.core.cheevos;
@ -2203,7 +2203,7 @@ void cheevos_populate_menu(void *data)
{
if (!cheevo->active)
menu_entries_add_enum(info->list, cheevo->title,
cheevo->description, MENU_ENUM_LABEL_UNKNOWN,
cheevo->description, MSG_UNKNOWN,
MENU_SETTINGS_CHEEVOS_START + i, 0, 0);
}
@ -2217,19 +2217,19 @@ void cheevos_populate_menu(void *data)
{
if (!cheevo->active)
menu_entries_add_enum(info->list, cheevo->title,
cheevo->description, MENU_ENUM_LABEL_UNKNOWN,
cheevo->description, MSG_UNKNOWN,
MENU_SETTINGS_CHEEVOS_START + i, 0, 0);
}
}
menu_entries_add_enum(info->list, "", "", MENU_ENUM_LABEL_UNKNOWN,
menu_entries_add_enum(info->list, "", "", MSG_UNKNOWN,
MENU_SETTINGS_CHEEVOS_NONE, 0, 0);
menu_entries_add_enum(info->list,
menu_hash_to_str_enum(MENU_ENUM_LABEL_VALUE_CHEEVOS_LOCKED_ACHIEVEMENTS),
menu_hash_to_str_enum(MENU_ENUM_LABEL_CHEEVOS_LOCKED_ACHIEVEMENTS),
msg_hash_to_str(MENU_ENUM_LABEL_VALUE_CHEEVOS_LOCKED_ACHIEVEMENTS),
msg_hash_to_str(MENU_ENUM_LABEL_CHEEVOS_LOCKED_ACHIEVEMENTS),
MENU_ENUM_LABEL_CHEEVOS_LOCKED_ACHIEVEMENTS,
MENU_SETTINGS_CHEEVOS_NONE, 0, 0);
menu_entries_add_enum(info->list, "", "", MENU_ENUM_LABEL_UNKNOWN,
menu_entries_add_enum(info->list, "", "", MSG_UNKNOWN,
MENU_SETTINGS_CHEEVOS_NONE, 0, 0);
cheevo = cheevos_locals.core.cheevos;
@ -2239,7 +2239,7 @@ void cheevos_populate_menu(void *data)
{
if (cheevo->active)
menu_entries_add_enum(info->list, cheevo->title,
cheevo->description, MENU_ENUM_LABEL_UNKNOWN,
cheevo->description, MSG_UNKNOWN,
MENU_SETTINGS_CHEEVOS_START + i, 0, 0);
}
@ -2253,7 +2253,7 @@ void cheevos_populate_menu(void *data)
{
if (cheevo->active)
menu_entries_add_enum(info->list, cheevo->title,
cheevo->description, MENU_ENUM_LABEL_UNKNOWN,
cheevo->description, MSG_UNKNOWN,
MENU_SETTINGS_CHEEVOS_START + i, 0, 0);
}
}

View File

@ -256,7 +256,7 @@ static int frontend_ctr_parse_drive_list(void *data)
return -1;
menu_entries_add_enum(list,
"sdmc:/", "", MENU_ENUM_LABEL_UNKNOWN, MENU_FILE_DIRECTORY, 0, 0);
"sdmc:/", "", MSG_UNKNOWN, MENU_FILE_DIRECTORY, 0, 0);
#endif
return 0;

View File

@ -651,9 +651,9 @@ static int frontend_darwin_parse_drive_list(void *data)
CFSearchPathForDirectoriesInDomains(CFDocumentDirectory, CFUserDomainMask, 1, home_dir_buf, sizeof(home_dir_buf));
menu_entries_add_enum(list,
home_dir_buf, "", MENU_ENUM_LABEL_UNKNOWN, MENU_FILE_DIRECTORY, 0, 0);
home_dir_buf, "", MSG_UNKNOWN, MENU_FILE_DIRECTORY, 0, 0);
menu_entries_add_enum(list, "/", "",
MENU_ENUM_LABEL_UNKNOWN, MENU_FILE_DIRECTORY, 0, 0);
MSG_UNKNOWN, MENU_FILE_DIRECTORY, 0, 0);
ret = 0;

View File

@ -466,14 +466,14 @@ static int frontend_gx_parse_drive_list(void *data)
file_list_t *list = (file_list_t*)data;
#ifdef HW_RVL
menu_entries_add_enum(list,
"sd:/", "", MENU_ENUM_LABEL_UNKNOWN, MENU_FILE_DIRECTORY, 0, 0);
"sd:/", "", MSG_UNKNOWN, MENU_FILE_DIRECTORY, 0, 0);
menu_entries_add_enum(list,
"usb:/", "", MENU_ENUM_LABEL_UNKNOWN, MENU_FILE_DIRECTORY, 0, 0);
"usb:/", "", MSG_UNKNOWN, MENU_FILE_DIRECTORY, 0, 0);
#endif
menu_entries_add_enum(list,
"carda:/", "", MENU_ENUM_LABEL_UNKNOWN, MENU_FILE_DIRECTORY, 0, 0);
"carda:/", "", MSG_UNKNOWN, MENU_FILE_DIRECTORY, 0, 0);
menu_entries_add_enum(list,
"cardb:/", "", MENU_ENUM_LABEL_UNKNOWN, MENU_FILE_DIRECTORY, 0, 0);
"cardb:/", "", MSG_UNKNOWN, MENU_FILE_DIRECTORY, 0, 0);
#endif
return 0;

View File

@ -1829,16 +1829,16 @@ static int frontend_android_parse_drive_list(void *data)
// MENU_FILE_DIRECTORY is not working with labels, placeholders for now
menu_entries_add_enum(list,
app_dir, "Application Dir", MENU_ENUM_LABEL_UNKNOWN, MENU_FILE_DIRECTORY, 0, 0);
app_dir, "Application Dir", MSG_UNKNOWN, MENU_FILE_DIRECTORY, 0, 0);
menu_entries_add_enum(list,
internal_storage_app_path, "External Application Dir", MENU_ENUM_LABEL_UNKNOWN,
internal_storage_app_path, "External Application Dir", MSG_UNKNOWN,
MENU_FILE_DIRECTORY, 0, 0);
menu_entries_add_enum(list,
internal_storage_path, "Internal Memory",
MENU_ENUM_LABEL_UNKNOWN, MENU_FILE_DIRECTORY, 0, 0);
MSG_UNKNOWN, MENU_FILE_DIRECTORY, 0, 0);
menu_entries_add_enum(list, "/", "",
MENU_ENUM_LABEL_UNKNOWN, MENU_FILE_DIRECTORY, 0, 0);
MSG_UNKNOWN, MENU_FILE_DIRECTORY, 0, 0);
return 0;
}

View File

@ -493,27 +493,27 @@ static int frontend_ps3_parse_drive_list(void *data)
file_list_t *list = (file_list_t*)data;
menu_entries_add_enum(list,
"/app_home/", "", MENU_ENUM_LABEL_UNKNOWN, MENU_FILE_DIRECTORY, 0, 0);
"/app_home/", "", MSG_UNKNOWN, MENU_FILE_DIRECTORY, 0, 0);
menu_entries_add_enum(list,
"/dev_hdd0/", "", MENU_ENUM_LABEL_UNKNOWN, MENU_FILE_DIRECTORY, 0, 0);
"/dev_hdd0/", "", MSG_UNKNOWN, MENU_FILE_DIRECTORY, 0, 0);
menu_entries_add_enum(list,
"/dev_hdd1/", "", MENU_ENUM_LABEL_UNKNOWN, MENU_FILE_DIRECTORY, 0, 0);
"/dev_hdd1/", "", MSG_UNKNOWN, MENU_FILE_DIRECTORY, 0, 0);
menu_entries_add_enum(list,
"/host_root/", "", MENU_ENUM_LABEL_UNKNOWN, MENU_FILE_DIRECTORY, 0, 0);
"/host_root/", "", MSG_UNKNOWN, MENU_FILE_DIRECTORY, 0, 0);
menu_entries_add_enum(list,
"/dev_usb000/", "", MENU_ENUM_LABEL_UNKNOWN, MENU_FILE_DIRECTORY, 0, 0);
"/dev_usb000/", "", MSG_UNKNOWN, MENU_FILE_DIRECTORY, 0, 0);
menu_entries_add_enum(list,
"/dev_usb001/", "", MENU_ENUM_LABEL_UNKNOWN, MENU_FILE_DIRECTORY, 0, 0);
"/dev_usb001/", "", MSG_UNKNOWN, MENU_FILE_DIRECTORY, 0, 0);
menu_entries_add_enum(list,
"/dev_usb002/", "", MENU_ENUM_LABEL_UNKNOWN, MENU_FILE_DIRECTORY, 0, 0);
"/dev_usb002/", "", MSG_UNKNOWN, MENU_FILE_DIRECTORY, 0, 0);
menu_entries_add_enum(list,
"/dev_usb003/", "", MENU_ENUM_LABEL_UNKNOWN, MENU_FILE_DIRECTORY, 0, 0);
"/dev_usb003/", "", MSG_UNKNOWN, MENU_FILE_DIRECTORY, 0, 0);
menu_entries_add_enum(list,
"/dev_usb004/", "", MENU_ENUM_LABEL_UNKNOWN, MENU_FILE_DIRECTORY, 0, 0);
"/dev_usb004/", "", MSG_UNKNOWN, MENU_FILE_DIRECTORY, 0, 0);
menu_entries_add_enum(list,
"/dev_usb005/", "", MENU_ENUM_LABEL_UNKNOWN, MENU_FILE_DIRECTORY, 0, 0);
"/dev_usb005/", "", MSG_UNKNOWN, MENU_FILE_DIRECTORY, 0, 0);
menu_entries_add_enum(list,
"/dev_usb006/", "", MENU_ENUM_LABEL_UNKNOWN, MENU_FILE_DIRECTORY, 0, 0);
"/dev_usb006/", "", MSG_UNKNOWN, MENU_FILE_DIRECTORY, 0, 0);
#endif
return 0;

View File

@ -370,14 +370,14 @@ static int frontend_psp_parse_drive_list(void *data)
#ifdef VITA
menu_entries_add_enum(list,
"cache0:/", "", MENU_ENUM_LABEL_UNKNOWN, MENU_FILE_DIRECTORY, 0, 0);
"cache0:/", "", MSG_UNKNOWN, MENU_FILE_DIRECTORY, 0, 0);
#else
menu_entries_add_enum(list,
"ms0:/", "", MENU_ENUM_LABEL_UNKNOWN, MENU_FILE_DIRECTORY, 0, 0);
"ms0:/", "", MSG_UNKNOWN, MENU_FILE_DIRECTORY, 0, 0);
menu_entries_add_enum(list,
"ef0:/", "", MENU_ENUM_LABEL_UNKNOWN, MENU_FILE_DIRECTORY, 0, 0);
"ef0:/", "", MSG_UNKNOWN, MENU_FILE_DIRECTORY, 0, 0);
menu_entries_add_enum(list,
"host0:/", "", MENU_ENUM_LABEL_UNKNOWN, MENU_FILE_DIRECTORY, 0, 0);
"host0:/", "", MSG_UNKNOWN, MENU_FILE_DIRECTORY, 0, 0);
#endif
#endif

View File

@ -229,7 +229,7 @@ static int frontend_win32_parse_drive_list(void *data)
drive[0] = 'A' + i;
if (drives & (1 << i))
menu_entries_add_enum(list,
drive, "", MENU_ENUM_LABEL_UNKNOWN, MENU_FILE_DIRECTORY, 0, 0);
drive, "", MSG_UNKNOWN, MENU_FILE_DIRECTORY, 0, 0);
}
#endif

View File

@ -1368,18 +1368,18 @@ static int frontend_xdk_parse_drive_list(void *data)
#if defined(_XBOX1)
menu_entries_add_enum(list,
"C:", "", MENU_ENUM_LABEL_UNKNOWN, MENU_FILE_DIRECTORY, 0, 0);
"C:", "", MSG_UNKNOWN, MENU_FILE_DIRECTORY, 0, 0);
menu_entries_add_enum(list,
"D:", "", MENU_ENUM_LABEL_UNKNOWN, MENU_FILE_DIRECTORY, 0, 0);
"D:", "", MSG_UNKNOWN, MENU_FILE_DIRECTORY, 0, 0);
menu_entries_add_enum(list,
"E:", "", MENU_ENUM_LABEL_UNKNOWN, MENU_FILE_DIRECTORY, 0, 0);
"E:", "", MSG_UNKNOWN, MENU_FILE_DIRECTORY, 0, 0);
menu_entries_add_enum(list,
"F:", "", MENU_ENUM_LABEL_UNKNOWN, MENU_FILE_DIRECTORY, 0, 0);
"F:", "", MSG_UNKNOWN, MENU_FILE_DIRECTORY, 0, 0);
menu_entries_add_enum(list,
"G:", "", MENU_ENUM_LABEL_UNKNOWN, MENU_FILE_DIRECTORY, 0, 0);
"G:", "", MSG_UNKNOWN, MENU_FILE_DIRECTORY, 0, 0);
#elif defined(_XBOX360)
menu_entries_add_enum(list,
"game:", "", MENU_ENUM_LABEL_UNKNOWN, MENU_FILE_DIRECTORY, 0, 0);
"game:", "", MSG_UNKNOWN, MENU_FILE_DIRECTORY, 0, 0);
#endif
#endif

View File

@ -1186,8 +1186,8 @@ void video_driver_menu_settings(void **list_data, void *list_info_data,
#if defined(GEKKO) || defined(__CELLOS_LV2__)
CONFIG_ACTION(
list, list_info,
menu_hash_to_str_enum(MENU_ENUM_LABEL_SCREEN_RESOLUTION),
menu_hash_to_str_enum(MENU_ENUM_LABEL_VALUE_SCREEN_RESOLUTION),
msg_hash_to_str(MENU_ENUM_LABEL_SCREEN_RESOLUTION),
msg_hash_to_str(MENU_ENUM_LABEL_VALUE_SCREEN_RESOLUTION),
group_info,
subgroup_info,
parent_group);
@ -1197,11 +1197,11 @@ void video_driver_menu_settings(void **list_data, void *list_info_data,
CONFIG_BOOL(
list, list_info,
&global->console.screen.pal60_enable,
menu_hash_to_str_enum(MENU_ENUM_LABEL_PAL60_ENABLE),
menu_hash_to_str_enum(MENU_ENUM_LABEL_VALUE_PAL60_ENABLE),
msg_hash_to_str(MENU_ENUM_LABEL_PAL60_ENABLE),
msg_hash_to_str(MENU_ENUM_LABEL_VALUE_PAL60_ENABLE),
false,
menu_hash_to_str_enum(MENU_ENUM_LABEL_VALUE_OFF),
menu_hash_to_str_enum(MENU_ENUM_LABEL_VALUE_ON),
msg_hash_to_str(MENU_ENUM_LABEL_VALUE_OFF),
msg_hash_to_str(MENU_ENUM_LABEL_VALUE_ON),
group_info,
subgroup_info,
parent_group,
@ -1214,8 +1214,8 @@ void video_driver_menu_settings(void **list_data, void *list_info_data,
CONFIG_UINT(
list, list_info,
&global->console.screen.gamma_correction,
menu_hash_to_str_enum(MENU_ENUM_LABEL_VIDEO_GAMMA),
menu_hash_to_str_enum(MENU_ENUM_LABEL_VALUE_VIDEO_GAMMA),
msg_hash_to_str(MENU_ENUM_LABEL_VIDEO_GAMMA),
msg_hash_to_str(MENU_ENUM_LABEL_VALUE_VIDEO_GAMMA),
0,
group_info,
subgroup_info,
@ -1242,11 +1242,11 @@ void video_driver_menu_settings(void **list_data, void *list_info_data,
CONFIG_BOOL(
list, list_info,
&global->console.softfilter_enable,
menu_hash_to_str_enum(MENU_ENUM_LABEL_VIDEO_SOFT_FILTER),
menu_hash_to_str_enum(MENU_ENUM_LABEL_VALUE_VIDEO_SOFT_FILTER),
msg_hash_to_str(MENU_ENUM_LABEL_VIDEO_SOFT_FILTER),
msg_hash_to_str(MENU_ENUM_LABEL_VALUE_VIDEO_SOFT_FILTER),
false,
menu_hash_to_str_enum(MENU_ENUM_LABEL_VALUE_OFF),
menu_hash_to_str_enum(MENU_ENUM_LABEL_VALUE_ON),
msg_hash_to_str(MENU_ENUM_LABEL_VALUE_OFF),
msg_hash_to_str(MENU_ENUM_LABEL_VALUE_ON),
group_info,
subgroup_info,
parent_group,
@ -1263,8 +1263,8 @@ void video_driver_menu_settings(void **list_data, void *list_info_data,
CONFIG_UINT(
list, list_info,
&settings->video.swap_interval,
menu_hash_to_str_enum(MENU_ENUM_LABEL_VIDEO_FILTER_FLICKER),
menu_hash_to_str_enum(MENU_ENUM_LABEL_VALUE_VIDEO_FILTER_FLICKER),
msg_hash_to_str(MENU_ENUM_LABEL_VIDEO_FILTER_FLICKER),
msg_hash_to_str(MENU_ENUM_LABEL_VALUE_VIDEO_FILTER_FLICKER),
0,
group_info,
subgroup_info,

View File

@ -13,13 +13,811 @@
* If not, see <http://www.gnu.org/licenses/>.
*/
#include <stdint.h>
#include <string.h>
#include <compat/strl.h>
#include "../msg_hash.h"
const char *msg_hash_to_str_de(enum msg_hash_enums msg)
{
switch (msg)
{
case 0:
case MENU_ENUM_LABEL_VALUE_INFORMATION_LIST:
return "Information";
case MENU_ENUM_LABEL_VALUE_USE_BUILTIN_PLAYER:
return "Verwende integrierten Player"; /* FIXME/UPDATE */
case MENU_ENUM_LABEL_VALUE_CONTENT_SETTINGS:
return "Content-Einstellungen"; /* FIXME */
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_CRC32:
return "CRC32";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_MD5:
return "MD5";
case MENU_ENUM_LABEL_VALUE_LOAD_CONTENT_LIST:
return "Lade Content";
case MENU_ENUM_LABEL_VALUE_LOAD_ARCHIVE:
return "Lade Archiv";
case MENU_ENUM_LABEL_VALUE_OPEN_ARCHIVE:
return "Öffne Archiv";
case MENU_ENUM_LABEL_VALUE_ASK_ARCHIVE:
return "Nachfragen";
case MENU_ENUM_LABEL_VALUE_PRIVACY_SETTINGS:
return "Privatsphäre-Einstellungen";
case MENU_ENUM_LABEL_VALUE_HORIZONTAL_MENU: /* Don't change. Breaks everything. (Would be: "Horizontales Menu") */
return "Horizontal Menu";
case MENU_ENUM_LABEL_VALUE_NO_SETTINGS_FOUND:
return "Keine Einstellungen gefunden.";
case MENU_ENUM_LABEL_VALUE_NO_PERFORMANCE_COUNTERS:
return "Keine Leistungszähler.";
case MENU_ENUM_LABEL_VALUE_DRIVER_SETTINGS:
return "Treiber-Einstellungen";
case MENU_ENUM_LABEL_VALUE_CONFIGURATION_SETTINGS:
return "Konfigurations-Einstellungen";
case MENU_ENUM_LABEL_VALUE_CORE_SETTINGS:
return "Core-Einstellungen";
case MENU_ENUM_LABEL_VALUE_VIDEO_SETTINGS:
return "Video-Einstellungen";
case MENU_ENUM_LABEL_VALUE_LOGGING_SETTINGS:
return "Logging-Einstellungen";
case MENU_ENUM_LABEL_VALUE_SAVING_SETTINGS:
return "Spielstand-Einstellungen";
case MENU_ENUM_LABEL_VALUE_REWIND_SETTINGS:
return "Zurückspul-Einstellungen";
case MENU_ENUM_LABEL_VALUE_SHADER:
return "Shader";
case MENU_ENUM_LABEL_VALUE_CHEAT:
return "Cheat";
case MENU_ENUM_LABEL_VALUE_USER:
return "Benutzer";
case MENU_ENUM_LABEL_VALUE_SYSTEM_BGM_ENABLE:
return "Aktiviere System-BGM";
case MENU_ENUM_LABEL_VALUE_RETROPAD:
return "RetroPad";
case MENU_ENUM_LABEL_VALUE_RETROKEYBOARD:
return "RetroKeyboard";
case MENU_ENUM_LABEL_VALUE_AUDIO_BLOCK_FRAMES:
return "Warte auf Audio-Frames";
case MENU_ENUM_LABEL_VALUE_INPUT_DESCRIPTOR_LABEL_SHOW: /* TODO/FIXME */
return "Zeige Core-Eingabe-Beschriftungen";
case MENU_ENUM_LABEL_VALUE_INPUT_DESCRIPTOR_HIDE_UNBOUND:
return "Verstecke unzugewiesene Core-Eingabe-Beschriftungen";
case MENU_ENUM_LABEL_VALUE_VIDEO_FONT_ENABLE:
return "Zeige OSD-Nachrichten";
case MENU_ENUM_LABEL_VALUE_VIDEO_FONT_PATH:
return "Schriftart der OSD-Nachrichten";
case MENU_ENUM_LABEL_VALUE_VIDEO_FONT_SIZE:
return "Schriftgröße der OSD-Nachrichten";
case MENU_ENUM_LABEL_VALUE_VIDEO_MESSAGE_POS_X:
return "X-Position der OSD-Nachrichten";
case MENU_ENUM_LABEL_VALUE_VIDEO_MESSAGE_POS_Y:
return "Y-Position der OSD-Nachrichten";
case MENU_ENUM_LABEL_VALUE_VIDEO_SOFT_FILTER:
return "Aktiviere Soft-Filter";
case MENU_ENUM_LABEL_VALUE_VIDEO_FILTER_FLICKER:
return "Aktiviere Flacker-Filter";
case MENU_ENUM_LABEL_VALUE_DIRECTORY_CONTENT:
return "<Content-Verz.>";
case MENU_ENUM_LABEL_VALUE_UNKNOWN:
return "Unbekannt";
case MENU_ENUM_LABEL_VALUE_DONT_CARE:
return "Mir egal";
case MENU_ENUM_LABEL_VALUE_LINEAR:
return "Linear";
case MENU_ENUM_LABEL_VALUE_NEAREST:
return "Nächster";
case MENU_ENUM_LABEL_VALUE_DIRECTORY_DEFAULT:
return "<Voreinstellung>";
case MENU_ENUM_LABEL_VALUE_DIRECTORY_NONE:
return "<Keins>";
case MENU_ENUM_LABEL_VALUE_NOT_AVAILABLE:
return "Nicht verfügbar";
case MENU_ENUM_LABEL_VALUE_INPUT_REMAPPING_DIRECTORY: /* UPDATE/FIXME */
return "Eingabebelegungs-Verzeichnis";
case MENU_ENUM_LABEL_VALUE_JOYPAD_AUTOCONFIG_DIR:
return "Eingabegerät-Autoconfig-Verzeichnis";
case MENU_ENUM_LABEL_VALUE_RECORDING_CONFIG_DIRECTORY:
return "Aufnahme-Konfigurationsverzeichnis";
case MENU_ENUM_LABEL_VALUE_RECORDING_OUTPUT_DIRECTORY:
return "Aufnahme-Ausgabeverzeichnis";
case MENU_ENUM_LABEL_VALUE_SCREENSHOT_DIRECTORY:
return "Bildschirmfoto-Verzeichnis";
case MENU_ENUM_LABEL_VALUE_PLAYLIST_DIRECTORY:
return "Wiedergabelisten-Verzeichnis";
case MENU_ENUM_LABEL_VALUE_SAVEFILE_DIRECTORY:
return "Spielstand-Verzeichnis";
case MENU_ENUM_LABEL_VALUE_SAVESTATE_DIRECTORY:
return "Savestate-Verzeichnis";
case MENU_ENUM_LABEL_VALUE_STDIN_CMD_ENABLE:
return "stdin-Befehle";
case MENU_ENUM_LABEL_VALUE_VIDEO_DRIVER:
return "Grafiktreiber";
case MENU_ENUM_LABEL_VALUE_RECORD_ENABLE:
return "Aktiviere Aufnahmefunktion";
case MENU_ENUM_LABEL_VALUE_VIDEO_GPU_RECORD:
return "Aktiviere GPU-Aufnahmefunktion";
case MENU_ENUM_LABEL_VALUE_RECORD_PATH: /* FIXME/UPDATE */
return "Aufnahmepfad";
case MENU_ENUM_LABEL_VALUE_RECORD_USE_OUTPUT_DIRECTORY:
return "Verwende Aufnahme-Ausgabeverzeichnis";
case MENU_ENUM_LABEL_VALUE_RECORD_CONFIG:
return "Aufnahme-Konfiguration";
case MENU_ENUM_LABEL_VALUE_VIDEO_POST_FILTER_RECORD:
return "Aktiviere Aufnahme von Post-Filtern";
case MENU_ENUM_LABEL_VALUE_CORE_ASSETS_DIRECTORY:
return "Core-Assets-Verzeichnis"; /* FIXME/UPDATE */
case MENU_ENUM_LABEL_VALUE_ASSETS_DIRECTORY:
return "Assets-Verzeichnis";
case MENU_ENUM_LABEL_VALUE_DYNAMIC_WALLPAPERS_DIRECTORY:
return "Dynamische-Bildschirmhintergründe-Verzeichnis";
case MENU_ENUM_LABEL_VALUE_RGUI_BROWSER_DIRECTORY:
return "Browser-Directory";
case MENU_ENUM_LABEL_VALUE_RGUI_CONFIG_DIRECTORY:
return "Konfigurations-Verzeichnis";
case MENU_ENUM_LABEL_VALUE_LIBRETRO_INFO_PATH:
return "Core-Info-Verzeichnis";
case MENU_ENUM_LABEL_VALUE_LIBRETRO_DIR_PATH:
return "Core-Verzeichnis";
case MENU_ENUM_LABEL_VALUE_CURSOR_DIRECTORY:
return "Cursor-Verzeichnis";
case MENU_ENUM_LABEL_VALUE_CONTENT_DATABASE_DIRECTORY:
return "Content-Datenbankverzeichnis";
case MENU_ENUM_LABEL_VALUE_SYSTEM_DIRECTORY:
return "System/BIOS-Verzeichnis";
case MENU_ENUM_LABEL_VALUE_CHEAT_DATABASE_PATH:
return "Cheat-Datei-Verzeichnis";
case MENU_ENUM_LABEL_VALUE_CACHE_DIRECTORY: /* FIXME/UPDATE */
return "Entpack-Verzeichnis";
case MENU_ENUM_LABEL_VALUE_AUDIO_FILTER_DIR:
return "Audio-Filter-Verzeichnis";
case MENU_ENUM_LABEL_VALUE_VIDEO_SHADER_DIR:
return "Grafikshader-Verzeichnis";
case MENU_ENUM_LABEL_VALUE_VIDEO_FILTER_DIR:
return "Grafikfilter-Verzeichnis";
case MENU_ENUM_LABEL_VALUE_OVERLAY_DIRECTORY:
return "Overlay-Verzeichnis";
case MENU_ENUM_LABEL_VALUE_OSK_OVERLAY_DIRECTORY:
return "OSK-Overlay-Verzeichnis";
case MENU_ENUM_LABEL_VALUE_NETPLAY_CLIENT_SWAP_INPUT:
return "Tausche Netplay-Eingabe";
case MENU_ENUM_LABEL_VALUE_NETPLAY_SPECTATOR_MODE_ENABLE:
return "Aktiviere Netplay-Zuschauermodus";
case MENU_ENUM_LABEL_VALUE_NETPLAY_IP_ADDRESS:
return "IP-Addresse für Netplay";
case MENU_ENUM_LABEL_VALUE_NETPLAY_TCP_UDP_PORT:
return "TCP/UDP-Port für Netplay";
case MENU_ENUM_LABEL_VALUE_NETPLAY_ENABLE:
return "Aktiviere Netplay";
case MENU_ENUM_LABEL_VALUE_NETPLAY_DELAY_FRAMES:
return "Verzögere Netplay-Frames";
case MENU_ENUM_LABEL_VALUE_NETPLAY_MODE:
return "Aktiviere Netplay-Client";
case MENU_ENUM_LABEL_VALUE_RGUI_SHOW_START_SCREEN:
return "Zeige Startbildschirm";
case MENU_ENUM_LABEL_VALUE_TITLE_COLOR:
return "Menü-Titel-Farbe";
case MENU_ENUM_LABEL_VALUE_ENTRY_HOVER_COLOR:
return "Hover-Farbe für Menü-Einträge";
case MENU_ENUM_LABEL_VALUE_TIMEDATE_ENABLE:
return "Zeige Uhrzeit / Datum";
case MENU_ENUM_LABEL_VALUE_THREADED_DATA_RUNLOOP_ENABLE:
return "Threaded Data Runloop";
case MENU_ENUM_LABEL_VALUE_ENTRY_NORMAL_COLOR:
return "Normale Farbe für Menü-Einträge";
case MENU_ENUM_LABEL_VALUE_SHOW_ADVANCED_SETTINGS:
return "Zeige erweitere Einstellungen";
case MENU_ENUM_LABEL_VALUE_COLLAPSE_SUBGROUPS_ENABLE:
return "Untergruppen einklappen";
case MENU_ENUM_LABEL_VALUE_MOUSE_ENABLE:
return "Maus-Unterstützung";
case MENU_ENUM_LABEL_VALUE_POINTER_ENABLE:
return "Touch-Unterstützung";
case MENU_ENUM_LABEL_VALUE_CORE_ENABLE:
return "Zeige Core-Namen";
case MENU_ENUM_LABEL_VALUE_DPI_OVERRIDE_ENABLE:
return "Aktiviere DPI-Override";
case MENU_ENUM_LABEL_VALUE_DPI_OVERRIDE_VALUE:
return "DPI-Override";
case MENU_ENUM_LABEL_VALUE_SUSPEND_SCREENSAVER_ENABLE:
return "Bildschirmschone aussetzen";
case MENU_ENUM_LABEL_VALUE_VIDEO_DISABLE_COMPOSITION:
return "Deaktiviere Desktop-Komposition";
case MENU_ENUM_LABEL_VALUE_PAUSE_NONACTIVE:
return "Nicht im Hintergrund laufen";
case MENU_ENUM_LABEL_VALUE_UI_COMPANION_START_ON_BOOT:
return "UI-Companion beim Hochfahren starten";
case MENU_ENUM_LABEL_VALUE_UI_MENUBAR_ENABLE:
return "Menüleiste";
case MENU_ENUM_LABEL_VALUE_ARCHIVE_MODE:
return "Verknüpfte Aktion bei Archivdateien";
case MENU_ENUM_LABEL_VALUE_NETWORK_CMD_ENABLE:
return "Netzwerk-Befehle";
case MENU_ENUM_LABEL_VALUE_NETWORK_CMD_PORT:
return "Port für Netzwerk-Befehle";
case MENU_ENUM_LABEL_VALUE_HISTORY_LIST_ENABLE:
return "Aktiviere Verlaufsliste";
case MENU_ENUM_LABEL_VALUE_CONTENT_HISTORY_SIZE:
return "Länge der Verlaufsliste";
case MENU_ENUM_LABEL_VALUE_VIDEO_REFRESH_RATE_AUTO:
return "Geschätzte Monitor-Bildrate";
case MENU_ENUM_LABEL_VALUE_DUMMY_ON_CORE_SHUTDOWN:
return "Dummy bei Core-Abschaltung";
case MENU_ENUM_LABEL_VALUE_CORE_SET_SUPPORTS_NO_CONTENT_ENABLE: /* TODO/FIXME */
return "Cores nicht automatisch starten";
case MENU_ENUM_LABEL_VALUE_FRAME_THROTTLE_ENABLE:
return "Begrenze maximale Ausführungsgeschwindigkeit";
case MENU_ENUM_LABEL_VALUE_FASTFORWARD_RATIO:
return "Maximale Ausführungsgeschwindigkeitd";
case MENU_ENUM_LABEL_VALUE_AUTO_REMAPS_ENABLE:
return "Lade Remap-Dateien automatisch";
case MENU_ENUM_LABEL_VALUE_SLOWMOTION_RATIO:
return "Zeitlupen-Verhältnis";
case MENU_ENUM_LABEL_VALUE_CORE_SPECIFIC_CONFIG:
return "Core-Spezifische Konfiguration";
case MENU_ENUM_LABEL_VALUE_AUTO_OVERRIDES_ENABLE:
return "Lade Override-Dateien automatisch";
case MENU_ENUM_LABEL_VALUE_CONFIG_SAVE_ON_EXIT:
return "Speichere Konfiguration beim Beenden";
case MENU_ENUM_LABEL_VALUE_VIDEO_SMOOTH:
return "Bilineare Filterung (HW)";
case MENU_ENUM_LABEL_VALUE_VIDEO_GAMMA:
return "Gamma";
case MENU_ENUM_LABEL_VALUE_VIDEO_ALLOW_ROTATE:
return "Erlaube Bildrotation";
case MENU_ENUM_LABEL_VALUE_VIDEO_HARD_SYNC:
return "Synchronisiere GPU und CPU";
case MENU_ENUM_LABEL_VALUE_VIDEO_SWAP_INTERVAL:
return "VSync-Intervall";
case MENU_ENUM_LABEL_VALUE_VIDEO_VSYNC:
return "Vertikale Synchronisation (VSync)";
case MENU_ENUM_LABEL_VALUE_VIDEO_THREADED:
return "Threaded Video";
case MENU_ENUM_LABEL_VALUE_VIDEO_ROTATION:
return "Rotation";
case MENU_ENUM_LABEL_VALUE_VIDEO_GPU_SCREENSHOT:
return "Aktiviere GPU-Bildschirmfotos";
case MENU_ENUM_LABEL_VALUE_VIDEO_CROP_OVERSCAN:
return "Bildränder (Overscan) zuschneiden (Neustart erforderlich)";
case MENU_ENUM_LABEL_VALUE_VIDEO_ASPECT_RATIO_INDEX:
return "Bildseitenverhältnis-Index";
case MENU_ENUM_LABEL_VALUE_VIDEO_ASPECT_RATIO_AUTO:
return "Automatisches Bildseitenverhältnis";
case MENU_ENUM_LABEL_VALUE_VIDEO_FORCE_ASPECT:
return "Erzwinge Bildseitenverhältnis";
case MENU_ENUM_LABEL_VALUE_VIDEO_REFRESH_RATE:
return "Bildwiederholrate";
case MENU_ENUM_LABEL_VALUE_VIDEO_FORCE_SRGB_DISABLE:
return "Erzwinge Deaktivierung des sRGB FBO";
case MENU_ENUM_LABEL_VALUE_VIDEO_WINDOWED_FULLSCREEN:
return "Unechter Vollbild-Modus (Windowed Fullscreen)";
case MENU_ENUM_LABEL_VALUE_PAL60_ENABLE:
return "Verwende PAL60-Modus";
case MENU_ENUM_LABEL_VALUE_VIDEO_VFILTER:
return "Bild entflackern";
case MENU_ENUM_LABEL_VALUE_VIDEO_VI_WIDTH:
return "Kalibriere VI-Bildbreite";
case MENU_ENUM_LABEL_VALUE_VIDEO_BLACK_FRAME_INSERTION:
return "Setze schwarze Frames ein";
case MENU_ENUM_LABEL_VALUE_VIDEO_HARD_SYNC_FRAMES:
return "Synchronisiere Frames fest mit GPU";
case MENU_ENUM_LABEL_VALUE_SORT_SAVEFILES_ENABLE:
return "Sortiere Speicherdaten per Ordner";
case MENU_ENUM_LABEL_VALUE_SORT_SAVESTATES_ENABLE:
return "Sortiere Save States per Ordner";
case MENU_ENUM_LABEL_VALUE_VIDEO_FULLSCREEN:
return "Verwende Vollbildmodus";
case MENU_ENUM_LABEL_VALUE_VIDEO_SCALE:
return "Fenterskalierung";
case MENU_ENUM_LABEL_VALUE_VIDEO_SCALE_INTEGER:
return "Ganzzahlige Bildskalierung";
case MENU_ENUM_LABEL_VALUE_PERFCNT_ENABLE:
return "Leistungsindikatoren";
case MENU_ENUM_LABEL_VALUE_LIBRETRO_LOG_LEVEL:
return "Core-Logging-Stufe";
case MENU_ENUM_LABEL_VALUE_LOG_VERBOSITY:
return "Log-Ausführlichkeit";
case MENU_ENUM_LABEL_VALUE_SAVESTATE_AUTO_LOAD:
return "Automatisches Laden von Save States";
case MENU_ENUM_LABEL_VALUE_SAVESTATE_AUTO_INDEX:
return "Automatische Indexierung von Save States";
case MENU_ENUM_LABEL_VALUE_SAVESTATE_AUTO_SAVE:
return "Automatische Save States";
case MENU_ENUM_LABEL_VALUE_AUTOSAVE_INTERVAL:
return "Autospeicherungsintervall";
case MENU_ENUM_LABEL_VALUE_BLOCK_SRAM_OVERWRITE:
return "Blockiere SRAM-Überschreibung";
case MENU_ENUM_LABEL_VALUE_VIDEO_SHARED_CONTEXT:
return "HW-Shared-Context aktivieren";
case MENU_ENUM_LABEL_VALUE_RESTART_RETROARCH:
return "Starte RetroArch neu";
case MENU_ENUM_LABEL_VALUE_NETPLAY_NICKNAME:
return "Benutzername";
case MENU_ENUM_LABEL_VALUE_USER_LANGUAGE:
return "Sprache";
case MENU_ENUM_LABEL_VALUE_CAMERA_ALLOW:
return "Erlaube Kamera-Zugriff";
case MENU_ENUM_LABEL_VALUE_LOCATION_ALLOW:
return "Erlaube Standort-Lokalisierung";
case MENU_ENUM_LABEL_VALUE_PAUSE_LIBRETRO:
return "Pausiere, wenn das Menü aktiv ist";
case MENU_ENUM_LABEL_VALUE_INPUT_OSK_OVERLAY_ENABLE:
return "Zeige Tastatur-Overlay";
case MENU_ENUM_LABEL_VALUE_INPUT_OVERLAY_ENABLE:
return "Aktiviere Overlay";
case MENU_ENUM_LABEL_VALUE_VIDEO_MONITOR_INDEX:
return "Monitor-Index";
case MENU_ENUM_LABEL_VALUE_VIDEO_FRAME_DELAY:
return "Bildverzögerung";
case MENU_ENUM_LABEL_VALUE_INPUT_DUTY_CYCLE:
return "Auslastungsgrad";
case MENU_ENUM_LABEL_VALUE_INPUT_TURBO_PERIOD:
return "Turbo-Dauer";
case MENU_ENUM_LABEL_VALUE_INPUT_AXIS_THRESHOLD:
return "Schwellwert der Eingabe-Achsen";
case MENU_ENUM_LABEL_VALUE_INPUT_REMAP_BINDS_ENABLE:
return "Bind-Remapping aktivieren";
case MENU_ENUM_LABEL_VALUE_INPUT_MAX_USERS:
return "Maximale Benutzerzahl";
case MENU_ENUM_LABEL_VALUE_INPUT_AUTODETECT_ENABLE:
return "Automatische Konfiguration aktivieren";
case MENU_ENUM_LABEL_VALUE_AUDIO_OUTPUT_RATE:
return "Audio-Frequenzrate (KHz)";
case MENU_ENUM_LABEL_VALUE_AUDIO_MAX_TIMING_SKEW:
return "Maximaler Audioversatz";
case MENU_ENUM_LABEL_VALUE_CHEAT_NUM_PASSES:
return "Cheat-Durchgänge";
case MENU_ENUM_LABEL_VALUE_REMAP_FILE_SAVE_CORE:
return "Speichere Core-Remap-Datei";
case MENU_ENUM_LABEL_VALUE_REMAP_FILE_SAVE_GAME:
return "Speichere Spiel-Remap-Datei";
case MENU_ENUM_LABEL_VALUE_CHEAT_APPLY_CHANGES:
return "Änderungen übernehmen";
case MENU_ENUM_LABEL_VALUE_SHADER_APPLY_CHANGES:
return "Änderungen übernehmen";
case MENU_ENUM_LABEL_VALUE_REWIND_ENABLE:
return "Zurückspulen (Rewind) aktivieren";
case MENU_ENUM_LABEL_VALUE_CONTENT_COLLECTION_LIST:
return "Lade Content (Sammlung)"; /* FIXME */
case MENU_ENUM_LABEL_VALUE_DETECT_CORE_LIST:
return "Lade Content (Core erkennen)"; /* FIXME */
case MENU_ENUM_LABEL_VALUE_LOAD_CONTENT_HISTORY:
return "Lade Content (Verlauf)"; /* FIXME/UPDATE */
case MENU_ENUM_LABEL_VALUE_AUDIO_ENABLE:
return "Aktiviere Audio";
case MENU_ENUM_LABEL_VALUE_FPS_SHOW:
return "Zeige Framerate";
case MENU_ENUM_LABEL_VALUE_AUDIO_MUTE:
return "Stumm";
case MENU_ENUM_LABEL_VALUE_AUDIO_VOLUME:
return "Lautstärke (dB)";
case MENU_ENUM_LABEL_VALUE_AUDIO_SYNC:
return "Synchronisiere Audio";
case MENU_ENUM_LABEL_VALUE_AUDIO_RATE_CONTROL_DELTA:
return "Audio Rate Control Delta";
case MENU_ENUM_LABEL_VALUE_VIDEO_SHADER_NUM_PASSES:
return "Shader-Durchgänge"; /* FIXME */
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_SHA1:
return "SHA1";
case MENU_ENUM_LABEL_VALUE_CONFIGURATIONS:
return "Lade Konfigurationsdatei"; /* FIXME/UPDATE */
case MENU_ENUM_LABEL_VALUE_REWIND_GRANULARITY:
return "Genauigkeit des Zurückspulens (Rewind)";
case MENU_ENUM_LABEL_VALUE_REMAP_FILE_LOAD:
return "Lade Remap-Datei";
case MENU_ENUM_LABEL_VALUE_CUSTOM_RATIO:
return "Benutzerdefiniertes Verhältnis";
case MENU_ENUM_LABEL_VALUE_USE_THIS_DIRECTORY:
return "<Diesen Ordner verwenden>";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_START_CONTENT:
return "Starte Content";
case MENU_ENUM_LABEL_VALUE_DISK_OPTIONS: /* UPDATE/FIXME */
return "Datenträger-Optionen";
case MENU_ENUM_LABEL_VALUE_CORE_OPTIONS:
return "Optionen";
case MENU_ENUM_LABEL_VALUE_CORE_CHEAT_OPTIONS:
return "Cheats";
case MENU_ENUM_LABEL_VALUE_CHEAT_FILE_LOAD:
return "Lade Cheat-Datei";
case MENU_ENUM_LABEL_VALUE_CHEAT_FILE_SAVE_AS:
return "Speichere Cheat-Datei unter...";
case MENU_ENUM_LABEL_VALUE_CORE_COUNTERS:
return "Core-Zähler";
case MENU_ENUM_LABEL_VALUE_TAKE_SCREENSHOT:
return "Bildschirmfoto";
case MENU_ENUM_LABEL_VALUE_RESUME:
return "Fortsetzen";
case MENU_ENUM_LABEL_VALUE_DISK_INDEX:
return "Datenträger-Nummer";
case MENU_ENUM_LABEL_VALUE_FRONTEND_COUNTERS:
return "Frontendzähler";
case MENU_ENUM_LABEL_VALUE_DISK_IMAGE_APPEND:
return "Füge Datenträgerabbild hinzu";
case MENU_ENUM_LABEL_VALUE_DISK_CYCLE_TRAY_STATUS:
return "Datenträgerstatus";
case MENU_ENUM_LABEL_VALUE_NO_PLAYLIST_ENTRIES_AVAILABLE:
return "Keine Wiedergabelisten-Eintrage verfügbar.";
case MENU_ENUM_LABEL_VALUE_NO_CORE_INFORMATION_AVAILABLE:
return "Keine Core-Informationen verfügbar.";
case MENU_ENUM_LABEL_VALUE_NO_CORE_OPTIONS_AVAILABLE:
return "Keine Core-Optionen verfügbar.";
case MENU_ENUM_LABEL_VALUE_NO_CORES_AVAILABLE:
return "Kein Core verfügbar.";
case MENU_ENUM_LABEL_VALUE_NO_CORE:
return "Kein Core";
case MENU_ENUM_LABEL_VALUE_DATABASE_MANAGER:
return "Datenbankmanager";
case MENU_ENUM_LABEL_VALUE_CURSOR_MANAGER:
return "Cursormanager";
case MENU_ENUM_LABEL_VALUE_MAIN_MENU:
return "Hauptmenü";
case MENU_ENUM_LABEL_VALUE_SETTINGS:
return "Einstellungen";
case MENU_ENUM_LABEL_VALUE_QUIT_RETROARCH:
return "RetroArch beenden";
case MENU_ENUM_LABEL_VALUE_HELP:
return "Hilfe";
case MENU_ENUM_LABEL_VALUE_SAVE_NEW_CONFIG:
return "Speichere neue Konfiguration";
case MENU_ENUM_LABEL_VALUE_RESTART_CONTENT:
return "Starte neu";
case MENU_ENUM_LABEL_VALUE_CORE_UPDATER_LIST:
return "Core-Updater";
case MENU_ENUM_LABEL_VALUE_CORE_UPDATER_BUILDBOT_URL:
return "Buildbot-Cores-URL";
case MENU_ENUM_LABEL_VALUE_BUILDBOT_ASSETS_URL:
return "Buildbot-Assets-URL";
case MENU_ENUM_LABEL_VALUE_NAVIGATION_WRAPAROUND:
return "Navigation umbrechen";
case MENU_ENUM_LABEL_VALUE_NAVIGATION_BROWSER_FILTER_SUPPORTED_EXTENSIONS_ENABLE:
return "Bekannte Dateiendungen filtern";
case MENU_ENUM_LABEL_VALUE_CORE_UPDATER_AUTO_EXTRACT_ARCHIVE:
return "Heruntergeladene Archive automatisch entpacken";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFORMATION:
return "Systeminformationen";
case MENU_ENUM_LABEL_VALUE_ONLINE_UPDATER:
return "Online-Aktualisierungen";
case MENU_ENUM_LABEL_VALUE_CORE_INFORMATION:
return "Core-Informationen";
case MENU_ENUM_LABEL_VALUE_DIRECTORY_NOT_FOUND:
return "Ordner nicht gefunden.";
case MENU_ENUM_LABEL_VALUE_NO_ITEMS:
return "Keine Einträge.";
case MENU_ENUM_LABEL_VALUE_CORE_LIST:
return "Lade Core";
case MENU_ENUM_LABEL_VALUE_LOAD_CONTENT:
return "Lade Content"; /* FIXME */
case MENU_ENUM_LABEL_VALUE_CLOSE_CONTENT:
return "Schließe";
case MENU_ENUM_LABEL_VALUE_MANAGEMENT:
return "Datenbank-Einstellungen";
case MENU_ENUM_LABEL_VALUE_SAVE_STATE:
return "Speichere Savestate";
case MENU_ENUM_LABEL_VALUE_LOAD_STATE:
return "Lade Savestate";
case MENU_ENUM_LABEL_VALUE_RESUME_CONTENT:
return "Fortsetzen";
case MENU_ENUM_LABEL_VALUE_INPUT_DRIVER:
return "Eingabe-Treiber";
case MENU_ENUM_LABEL_VALUE_AUDIO_DRIVER:
return "Audio-Treiber";
case MENU_ENUM_LABEL_VALUE_JOYPAD_DRIVER:
return "Joypad-Treiber";
case MENU_ENUM_LABEL_VALUE_AUDIO_RESAMPLER_DRIVER:
return "Audio-Resampler-Treiber";
case MENU_ENUM_LABEL_VALUE_RECORD_DRIVER:
return "Aufnahme-Treiber";
case MENU_ENUM_LABEL_VALUE_MENU_DRIVER:
return "Menü-Treiber";
case MENU_ENUM_LABEL_VALUE_CAMERA_DRIVER:
return "Kamera-Treiber";
case MENU_ENUM_LABEL_VALUE_LOCATION_DRIVER:
return "Standort-Treiber";
case MENU_ENUM_LABEL_VALUE_UNABLE_TO_READ_COMPRESSED_FILE:
return "Komprimiertes Archiv kann nicht gelesen werden.";
case MENU_ENUM_LABEL_VALUE_OVERLAY_SCALE:
return "Overlay-Skalierung";
case MENU_ENUM_LABEL_VALUE_OVERLAY_PRESET:
return "Overlay-Voreinstellung";
case MENU_ENUM_LABEL_VALUE_AUDIO_LATENCY:
return "Audiolatenz (ms)";
case MENU_ENUM_LABEL_VALUE_AUDIO_DEVICE:
return "Soundkarte";
case MENU_ENUM_LABEL_VALUE_KEYBOARD_OVERLAY_PRESET:
return "Tastatur-Overlay-Voreinstellung";
case MENU_ENUM_LABEL_VALUE_OVERLAY_OPACITY:
return "Overlay-Transparenz";
case MENU_ENUM_LABEL_VALUE_MENU_WALLPAPER:
return "Menühintergrund";
case MENU_ENUM_LABEL_VALUE_DYNAMIC_WALLPAPER:
return "Dynamischer Hintergrund";
case MENU_ENUM_LABEL_VALUE_CORE_INPUT_REMAPPING_OPTIONS: /* UPDATE/FIXME */
return "Core-Input-Optionen";
case MENU_ENUM_LABEL_VALUE_SHADER_OPTIONS:
return "Shaders";
case MENU_ENUM_LABEL_VALUE_VIDEO_SHADER_PARAMETERS:
return "Momentane Shaderparameter"; /* FIXME/UPDATE */
case MENU_ENUM_LABEL_VALUE_VIDEO_SHADER_PRESET_PARAMETERS:
return "Menü Shaderparameter (Menü)";
case MENU_ENUM_LABEL_VALUE_VIDEO_SHADER_PRESET_SAVE_AS:
return "Speiche Shader-Voreinstellung unter...";
case MENU_ENUM_LABEL_VALUE_NO_SHADER_PARAMETERS:
return "Keine Shaderparameter";
case MENU_ENUM_LABEL_VALUE_VIDEO_SHADER_PRESET:
return "Lade Shader-Voreinstellung";
case MENU_ENUM_LABEL_VALUE_VIDEO_FILTER:
return "Videofilter";
case MENU_ENUM_LABEL_VALUE_AUDIO_DSP_PLUGIN:
return "Audio-DSP-Plugin";
case MENU_ENUM_LABEL_VALUE_STARTING_DOWNLOAD:
return "Starte Download: ";
case MENU_ENUM_LABEL_VALUE_SECONDS:
return "Sekunden";
case MENU_ENUM_LABEL_VALUE_OFF: /* Don't change. Needed for XMB atm. (Would be: "AN") */
return "OFF";
case MENU_ENUM_LABEL_VALUE_ON: /* Don't change. Needed for XMB atm. (Would be: "AUS") */
return "ON";
case MENU_ENUM_LABEL_VALUE_UPDATE_ASSETS:
return "Aktualisiere Assets";
case MENU_ENUM_LABEL_VALUE_UPDATE_CHEATS:
return "Aktualisiere Cheats";
case MENU_ENUM_LABEL_VALUE_UPDATE_AUTOCONFIG_PROFILES:
return "Aktualisiere Autoconfig-Profile";
case MENU_ENUM_LABEL_VALUE_UPDATE_DATABASES:
return "Aktualisiere Datenbanken";
case MENU_ENUM_LABEL_VALUE_UPDATE_OVERLAYS:
return "Aktualisiere Overlays";
case MENU_ENUM_LABEL_VALUE_UPDATE_CG_SHADERS:
return "Aktualisiere CG-Shader";
case MENU_ENUM_LABEL_VALUE_UPDATE_GLSL_SHADERS:
return "Aktualisiere GLSL-Shader";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_CORE_NAME:
return "Core-Name";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_CORE_LABEL:
return "Core-Beschriftung";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_SYSTEM_NAME:
return "System-Name";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_SYSTEM_MANUFACTURER:
return "System-Hersteller";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_CATEGORIES:
return "Kategorien";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_AUTHORS:
return "Autoren";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_PERMISSIONS:
return "Berechtigungen";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_LICENSES:
return "Lizenz(en)";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_SUPPORTED_EXTENSIONS:
return "Unterstütze Erweiterungen";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_FIRMWARE:
return "Firmware";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_CORE_NOTES:
return "Core-Hinweise";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_BUILD_DATE:
return "Build-Datum";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_GIT_VERSION:
return "Git-Version";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_CPU_FEATURES:
return "CPU-Eigenschaften";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_FRONTEND_IDENTIFIER:
return "Frontend-Kennung";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_FRONTEND_NAME:
return "Frontend-Name";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_FRONTEND_OS:
return "Frontend-Betriebssystem";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_RETRORATING_LEVEL:
return "RetroRating-Stufe";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_POWER_SOURCE:
return "Energiequelle";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_POWER_SOURCE_NO_SOURCE:
return "Keine Quelle";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_POWER_SOURCE_CHARGING:
return "Lädt";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_POWER_SOURCE_CHARGED:
return "Geladen";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_POWER_SOURCE_DISCHARGING:
return "Entlädt";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_VIDEO_CONTEXT_DRIVER:
return "Video-Context-Treiber";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_DISPLAY_METRIC_MM_WIDTH:
return "Bildschirmbreite (mm)";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_DISPLAY_METRIC_MM_HEIGHT:
return "Bildschirmhöhe (mm)";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_DISPLAY_METRIC_DPI:
return "Bildschirm-DPI";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_LIBRETRODB_SUPPORT:
return "LibretroDB-Unterstützung";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OVERLAY_SUPPORT:
return "Overlay-Unterstützung";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_COMMAND_IFACE_SUPPORT:
return "Befehlsinterface-Unterstützung";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_NETWORK_COMMAND_IFACE_SUPPORT:
return "Netzwerk-Befehlsinterface-Unterstützung";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_COCOA_SUPPORT:
return "Cocoa-Unterstützung";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_RPNG_SUPPORT:
return "PNG-Unterstützung (RPNG)";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_SDL_SUPPORT:
return "SDL1.2-Unterstützung";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_SDL2_SUPPORT:
return "SDL2-Unterstützung";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OPENGL_SUPPORT:
return "OpenGL-Unterstützung";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OPENGLES_SUPPORT:
return "OpenGL-ES-Unterstützung";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_THREADING_SUPPORT:
return "Threading-Unterstützung";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_KMS_SUPPORT:
return "KMS/EGL-Unterstützung";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_UDEV_SUPPORT:
return "Udev-Unterstützung";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OPENVG_SUPPORT:
return "OpenVG-Unterstützung";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_EGL_SUPPORT:
return "EGL-Unterstützung";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_X11_SUPPORT:
return "X11-Unterstützung";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_WAYLAND_SUPPORT:
return "Wayland-Unterstützung";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_XVIDEO_SUPPORT:
return "XVideo-Unterstützung";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_ALSA_SUPPORT:
return "ALSA-Unterstützung";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OSS_SUPPORT:
return "OSS-Unterstützung";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OPENAL_SUPPORT:
return "OpenAL-Unterstützung";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OPENSL_SUPPORT:
return "OpenSL-Unterstützung";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_RSOUND_SUPPORT:
return "RSound-Unterstützung";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_ROARAUDIO_SUPPORT:
return "RoarAudio-Unterstützung";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_JACK_SUPPORT:
return "JACK-Unterstützung";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_PULSEAUDIO_SUPPORT:
return "PulseAudio-Unterstützung";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_DSOUND_SUPPORT:
return "DirectSound-Unterstützung";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_XAUDIO2_SUPPORT:
return "XAudio2-Unterstützung";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_ZLIB_SUPPORT:
return "Zlib-Unterstützung";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_7ZIP_SUPPORT:
return "7zip-Unterstützung";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_DYLIB_SUPPORT:
return "Dynamic-Library-Unterstützung";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_CG_SUPPORT:
return "Cg-Unterstützung";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_GLSL_SUPPORT:
return "GLSL-Unterstützung";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_HLSL_SUPPORT:
return "HLSL-Unterstützung";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_LIBXML2_SUPPORT:
return "Libxml2-XML-Parsing-Unterstützung";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_SDL_IMAGE_SUPPORT:
return "SDL-Image-Unterstützung";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_FBO_SUPPORT:
return "Unterstützung für OpenGL/Direct3D Render-to-Texture (Multi-Pass Shader)";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_FFMPEG_SUPPORT:
return "FFmpeg-Unterstützung";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_CORETEXT_SUPPORT:
return "CoreText-Unterstützung";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_FREETYPE_SUPPORT:
return "FreeType-Unterstützung";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_NETPLAY_SUPPORT:
return "Netplay-Unterstützung (Peer-to-Peer)";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_PYTHON_SUPPORT:
return "Python-Unterstützung (Script-Unterstützung in Shadern)";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_V4L2_SUPPORT:
return "Video4Linux2-Unterstützung";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_LIBUSB_SUPPORT:
return "Libusb-Unterstützung";
case MENU_ENUM_LABEL_VALUE_YES:
return "Ja";
case MENU_ENUM_LABEL_VALUE_NO:
return "Nein";
case MENU_ENUM_LABEL_VALUE_BACK:
return "ZURÜCK";
case MENU_ENUM_LABEL_VALUE_SCREEN_RESOLUTION:
return "Bildschirmauflösung";
case MENU_ENUM_LABEL_VALUE_DISABLED:
return "Deaktiviert";
case MENU_ENUM_LABEL_VALUE_PORT:
return "Port";
case MENU_ENUM_LABEL_VALUE_NONE:
return "Keins";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_DEVELOPER:
return "Entwickler";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_PUBLISHER:
return "Publisher";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_DESCRIPTION:
return "Beschreibung";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_NAME:
return "Name";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_ORIGIN:
return "Herkunft";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_FRANCHISE:
return "Franchise";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_RELEASE_MONTH:
return "Veröffentlichungsmonat";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_RELEASE_YEAR:
return "Veröffentlichungsjahr";
case MENU_ENUM_LABEL_VALUE_TRUE:
return "True";
case MENU_ENUM_LABEL_VALUE_FALSE:
return "False";
case MENU_ENUM_LABEL_VALUE_MISSING:
return "Fehlt";
case MENU_ENUM_LABEL_VALUE_PRESENT:
return "Vorhanden";
case MENU_ENUM_LABEL_VALUE_OPTIONAL:
return "Optional";
case MENU_ENUM_LABEL_VALUE_REQUIRED:
return "Notwendig";
case MENU_ENUM_LABEL_VALUE_STATUS:
return "Status";
case MENU_ENUM_LABEL_VALUE_AUDIO_SETTINGS:
return "Audio-Einstellungen";
case MENU_ENUM_LABEL_VALUE_INPUT_SETTINGS:
return "Eingabe-Einstellungen";
case MENU_ENUM_LABEL_VALUE_ONSCREEN_DISPLAY_SETTINGS:
return "OSD-Einstellungen";
case MENU_ENUM_LABEL_VALUE_OVERLAY_SETTINGS:
return "Overlay-Einstellungen";
case MENU_ENUM_LABEL_VALUE_MENU_SETTINGS:
return "Menü-Einstellungen";
case MENU_ENUM_LABEL_VALUE_MULTIMEDIA_SETTINGS:
return "Media-Player-Einstellungen"; /* UPDATE/FIXME */
case MENU_ENUM_LABEL_VALUE_UI_SETTINGS:
return "Benutzeroberflächen-Einstellungen";
case MENU_ENUM_LABEL_VALUE_MENU_FILE_BROWSER_SETTINGS:
return "Menü-Dateibrowser-Einstellungen";
case MENU_ENUM_LABEL_VALUE_CORE_UPDATER_SETTINGS:
return "Core-Updater-Einstellungen"; /* UPDATE/FIXME */
case MENU_ENUM_LABEL_VALUE_NETWORK_SETTINGS:
return "Netzwerk-Einstellungen";
case MENU_ENUM_LABEL_VALUE_PLAYLIST_SETTINGS:
return "Wiedergabelisten-Einstellungen";
case MENU_ENUM_LABEL_VALUE_USER_SETTINGS:
return "Benutzer-Einstellungen";
case MENU_ENUM_LABEL_VALUE_DIRECTORY_SETTINGS:
return "Verzeichnis-Einstellungen";
case MENU_ENUM_LABEL_VALUE_RECORDING_SETTINGS:
return "Aufnahme-Einstellungen";
case MENU_ENUM_LABEL_VALUE_NO_INFORMATION_AVAILABLE:
return "Keine Informationen verfügbar.";
case MENU_ENUM_LABEL_VALUE_INPUT_USER_BINDS:
return "Spieler %u Tastenbelegung";
case MENU_ENUM_LABEL_VALUE_LANG_ENGLISH:
return "Englisch";
case MENU_ENUM_LABEL_VALUE_LANG_JAPANESE:
return "Japanisch";
case MENU_ENUM_LABEL_VALUE_LANG_FRENCH:
return "Französisch";
case MENU_ENUM_LABEL_VALUE_LANG_SPANISH:
return "Spanisch";
case MENU_ENUM_LABEL_VALUE_LANG_GERMAN:
return "Deutsch";
case MENU_ENUM_LABEL_VALUE_LANG_ITALIAN:
return "Italienisch";
case MENU_ENUM_LABEL_VALUE_LANG_DUTCH:
return "Niederländisch";
case MENU_ENUM_LABEL_VALUE_LANG_PORTUGUESE:
return "Portugiesisch";
case MENU_ENUM_LABEL_VALUE_LANG_RUSSIAN:
return "Russisch";
case MENU_ENUM_LABEL_VALUE_LANG_KOREAN:
return "Koreanisch";
case MENU_ENUM_LABEL_VALUE_LANG_CHINESE_TRADITIONAL:
return "Chinesisch (Traditionell)";
case MENU_ENUM_LABEL_VALUE_LANG_CHINESE_SIMPLIFIED:
return "Chinesisch (Vereinfacht)";
case MENU_ENUM_LABEL_VALUE_LANG_ESPERANTO:
return "Esperanto";
case MENU_ENUM_LABEL_VALUE_LEFT_ANALOG:
return "Linker Analogstick";
case MENU_ENUM_LABEL_VALUE_RIGHT_ANALOG:
return "Rechter Analogstick";
default:
break;
}

View File

@ -12,6 +12,11 @@
* You should have received a copy of the GNU General Public License along with RetroArch.
* If not, see <http://www.gnu.org/licenses/>.
*/
#include <stdint.h>
#include <string.h>
#include <retro_assert.h>
#include <compat/strl.h>
#include "../msg_hash.h"
@ -202,6 +207,955 @@ const char *msg_hash_to_str_es(enum msg_hash_enums msg)
return "Descargando";
case MSG_EXTRACTING:
return "Extrayendo";
case MENU_ENUM_LABEL_VALUE_MENU_LINEAR_FILTER:
return "Filtro lineal del menú";
case MENU_ENUM_LABEL_MENU_THROTTLE_FRAMERATE:
return "Acelerar velocidad del menú";
case MENU_ENUM_LABEL_VALUE_CHEEVOS_TEST_UNOFFICIAL:
return "Probar versión no oficial";
case MENU_ENUM_LABEL_VALUE_CHEEVOS_SETTINGS:
return "Retrologros";
case MENU_ENUM_LABEL_VALUE_INPUT_ICADE_ENABLE:
return "Activar asignar mando al teclado";
case MENU_ENUM_LABEL_VALUE_INPUT_KEYBOARD_GAMEPAD_MAPPING_TYPE:
return "Tipo de asignación de mando para teclado";
case MENU_ENUM_LABEL_VALUE_INPUT_SMALL_KEYBOARD_ENABLE:
return "Activar miniteclado";
case MENU_ENUM_LABEL_VALUE_SAVE_CURRENT_CONFIG:
return "Guardar configuración actual";
case MENU_ENUM_LABEL_VALUE_STATE_SLOT:
return "Ranura de guardado";
case MENU_ENUM_LABEL_VALUE_CHEEVOS_HARDCORE_MODE_ENABLE:
return "Modo Extremo";
case MENU_ENUM_LABEL_VALUE_ACCOUNTS_CHEEVOS_SETTINGS:
return "Cuenta Cheevos";
case MENU_ENUM_LABEL_VALUE_ACCOUNTS_CHEEVOS_USERNAME:
return "Usuario";
case MENU_ENUM_LABEL_VALUE_ACCOUNTS_CHEEVOS_PASSWORD:
return "Contraseña";
case MENU_ENUM_LABEL_VALUE_ACCOUNTS_RETRO_ACHIEVEMENTS:
return "Retrologros";
case MENU_ENUM_LABEL_VALUE_ACCOUNTS_LIST:
return "Cuentas";
case MENU_ENUM_LABEL_VALUE_ACCOUNTS_LIST_END:
return "Enlace a lista de cuentas";
case MENU_ENUM_LABEL_VALUE_DEBUG_PANEL_ENABLE:
return "Activar panel de depuración";
case MENU_ENUM_LABEL_VALUE_HELP_SCANNING_CONTENT:
return "Buscar contenido";
case MENU_ENUM_LABEL_VALUE_CHEEVOS_DESCRIPTION:
return "Descripción";
case MENU_ENUM_LABEL_VALUE_HELP_AUDIO_VIDEO_TROUBLESHOOTING:
return "Solucionar problemas de vídeo/sonido";
case MENU_ENUM_LABEL_VALUE_HELP_CHANGE_VIRTUAL_GAMEPAD:
return "Cambiar el mando virtual superpuesto";
case MENU_ENUM_LABEL_VALUE_HELP_WHAT_IS_A_CORE:
return "¿Qué es un núcleo?";
case MENU_ENUM_LABEL_VALUE_HELP_LOADING_CONTENT:
return "Cargando contenidos";
case MENU_ENUM_LABEL_VALUE_HELP_LIST:
return "Ayuda";
case MENU_ENUM_LABEL_VALUE_HELP_CONTROLS:
return "Controles básicos del menú";
case MENU_ENUM_LABEL_VALUE_BASIC_MENU_CONTROLS:
return "Controles básicos del menú";
case MENU_ENUM_LABEL_VALUE_BASIC_MENU_CONTROLS_SCROLL_UP:
return "Desplazar hacia arriba";
case MENU_ENUM_LABEL_VALUE_BASIC_MENU_CONTROLS_SCROLL_DOWN:
return "Desplazar hacia abajo";
case MENU_ENUM_LABEL_VALUE_BASIC_MENU_CONTROLS_CONFIRM:
return "Confirmar/Aceptar";
case MENU_ENUM_LABEL_VALUE_BASIC_MENU_CONTROLS_BACK:
return "Retroceder";
case MENU_ENUM_LABEL_VALUE_BASIC_MENU_CONTROLS_START:
return "Valores predeterminados";
case MENU_ENUM_LABEL_VALUE_BASIC_MENU_CONTROLS_INFO:
return "Información";
case MENU_ENUM_LABEL_VALUE_BASIC_MENU_CONTROLS_TOGGLE_MENU:
return "Alternar menú";
case MENU_ENUM_LABEL_VALUE_BASIC_MENU_CONTROLS_QUIT:
return "Abandonar";
case MENU_ENUM_LABEL_VALUE_BASIC_MENU_CONTROLS_TOGGLE_KEYBOARD:
return "Alternar teclado";
case MENU_ENUM_LABEL_VALUE_OPEN_ARCHIVE:
return "Abrir archivo como una carpeta";
case MENU_ENUM_LABEL_VALUE_LOAD_ARCHIVE:
return "Cargar archivo con un núcleo";
case MENU_ENUM_LABEL_VALUE_INPUT_BACK_AS_MENU_ENUM_TOGGLE_ENABLE:
return "Permitir alternar Back como menú";
case MENU_ENUM_LABEL_INPUT_MENU_ENUM_TOGGLE_GAMEPAD_COMBO:
return "Combo para alternar mando con menú";
case MENU_ENUM_LABEL_VALUE_INPUT_OVERLAY_HIDE_IN_MENU:
return "Ocultar superposición en el menú";
case MENU_ENUM_LABEL_VALUE_LANG_POLISH:
return "Polaco";
case MENU_ENUM_LABEL_VALUE_OVERLAY_AUTOLOAD_PREFERRED:
return "Cargar superposición preferida automáticamente";
case MENU_ENUM_LABEL_VALUE_UPDATE_CORE_INFO_FILES:
return "Actualizar archivos de información de núcleos";
case MENU_ENUM_LABEL_VALUE_DOWNLOAD_CORE_CONTENT:
return "Descargar contenido";
case MENU_ENUM_LABEL_VALUE_SCAN_THIS_DIRECTORY:
return "(Escanear esta carpeta)";
case MENU_ENUM_LABEL_VALUE_SCAN_FILE:
return "Escanear archivo";
case MENU_ENUM_LABEL_VALUE_SCAN_DIRECTORY:
return "Escanear carpeta";
case MENU_ENUM_LABEL_VALUE_ADD_CONTENT_LIST:
return "Añadir contenido";
case MENU_ENUM_LABEL_VALUE_INFORMATION_LIST:
return "Información";
case MENU_ENUM_LABEL_VALUE_USE_BUILTIN_PLAYER:
return "Usar reproductor de medios integrado";
case MENU_ENUM_LABEL_VALUE_CONTENT_SETTINGS:
return "Menú rápido";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_CRC32:
return "CRC32";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_MD5:
return "MD5";
case MENU_ENUM_LABEL_VALUE_LOAD_CONTENT_LIST:
return "Cargar contenido";
case MENU_ENUM_LABEL_VALUE_ASK_ARCHIVE:
return "Preguntar";
case MENU_ENUM_LABEL_VALUE_PRIVACY_SETTINGS:
return "Privacidad";
#if 0
case MENU_ENUM_LABEL_VALUE_HORIZONTAL_MENU: /* Don't change. Breaks everything. (Would be: "Menú horizontal") */
return "Horizontal Menu";
/* Don't change these yet. Breaks everything. */
case MENU_ENUM_LABEL_VALUE_SETTINGS_TAB:
return "Pestaña de ajustes";
case MENU_ENUM_LABEL_VALUE_HISTORY_TAB:
return "Pestaña de historial";
case MENU_ENUM_LABEL_VALUE_ADD_TAB:
return "Añadir pestaña";
case MENU_ENUM_LABEL_VALUE_PLAYLISTS_TAB:
return "Pestaña de listas de reproducción";
#endif
case MENU_ENUM_LABEL_VALUE_NO_SETTINGS_FOUND:
return "No se ha encontrado una configuración.";
case MENU_ENUM_LABEL_VALUE_NO_PERFORMANCE_COUNTERS:
return "No hay contadores de rendimiento.";
case MENU_ENUM_LABEL_VALUE_DRIVER_SETTINGS:
return "Controlador";
case MENU_ENUM_LABEL_VALUE_CONFIGURATION_SETTINGS:
return "Configuración";
case MENU_ENUM_LABEL_VALUE_CORE_SETTINGS:
return "Núcleo";
case MENU_ENUM_LABEL_VALUE_VIDEO_SETTINGS:
return "Vídeo";
case MENU_ENUM_LABEL_VALUE_LOGGING_SETTINGS:
return "Registros";
case MENU_ENUM_LABEL_VALUE_SAVING_SETTINGS:
return "Guardado";
case MENU_ENUM_LABEL_VALUE_REWIND_SETTINGS:
return "Rebobinado";
case MENU_ENUM_LABEL_VALUE_SHADER:
return "Shader";
case MENU_ENUM_LABEL_VALUE_CHEAT:
return "Truco";
case MENU_ENUM_LABEL_VALUE_USER:
return "Usuario";
case MENU_ENUM_LABEL_VALUE_SYSTEM_BGM_ENABLE:
return "Activar música del sistema";
case MENU_ENUM_LABEL_VALUE_RETROPAD:
return "RetroPad";
case MENU_ENUM_LABEL_VALUE_RETROKEYBOARD:
return "RetroKeyboard";
case MENU_ENUM_LABEL_VALUE_AUDIO_BLOCK_FRAMES:
return "Bloquear fotogramas";
case MENU_ENUM_LABEL_VALUE_INPUT_BIND_MODE:
return "Modo de asignación";
case MENU_ENUM_LABEL_VALUE_INPUT_DESCRIPTOR_LABEL_SHOW:
return "Mostrar etiquetas de descripción de la entrada";
case MENU_ENUM_LABEL_VALUE_INPUT_DESCRIPTOR_HIDE_UNBOUND:
return "Ocultar descripciones sin asignar de la entrada del núcleo";
case MENU_ENUM_LABEL_VALUE_VIDEO_FONT_ENABLE:
return "Mostrar mensajes en pantalla";
case MENU_ENUM_LABEL_VALUE_VIDEO_FONT_PATH:
return "Fuente de mensajes en pantalla";
case MENU_ENUM_LABEL_VALUE_VIDEO_FONT_SIZE:
return "Tamaño de mensajes en pantalla";
case MENU_ENUM_LABEL_VALUE_VIDEO_MESSAGE_POS_X:
return "Posición X de mensajes en pantalla";
case MENU_ENUM_LABEL_VALUE_VIDEO_MESSAGE_POS_Y:
return "Posición Y de mensajes en pantalla";
case MENU_ENUM_LABEL_VALUE_VIDEO_SOFT_FILTER:
return "Activar filtros por software";
case MENU_ENUM_LABEL_VALUE_VIDEO_FILTER_FLICKER:
return "Filtro de parpadeo";
case MENU_ENUM_LABEL_VALUE_DIRECTORY_CONTENT:
return "(Carpeta de contenido)";
case MENU_ENUM_LABEL_VALUE_UNKNOWN:
return "Desconocido";
case MENU_ENUM_LABEL_VALUE_DONT_CARE:
return "No importa";
case MENU_ENUM_LABEL_VALUE_LINEAR:
return "Lineal";
case MENU_ENUM_LABEL_VALUE_NEAREST:
return "Más cercano";
case MENU_ENUM_LABEL_VALUE_DIRECTORY_DEFAULT:
return "(Predeterminada)";
case MENU_ENUM_LABEL_VALUE_DIRECTORY_NONE:
return "(Ninguna)";
case MENU_ENUM_LABEL_VALUE_NOT_AVAILABLE:
return "No disponible";
case MENU_ENUM_LABEL_VALUE_INPUT_REMAPPING_DIRECTORY:
return "Carpeta de reasignación de entrada";
case MENU_ENUM_LABEL_VALUE_JOYPAD_AUTOCONFIG_DIR:
return "Carpeta de autoconfiguración de dispositivo de entrada";
case MENU_ENUM_LABEL_VALUE_RECORDING_CONFIG_DIRECTORY:
return "Carpeta de configuración de grabación";
case MENU_ENUM_LABEL_VALUE_RECORDING_OUTPUT_DIRECTORY:
return "Carpeta de salida de grabación";
case MENU_ENUM_LABEL_VALUE_SCREENSHOT_DIRECTORY:
return "Carpeta de capturas de pantalla";
case MENU_ENUM_LABEL_VALUE_PLAYLIST_DIRECTORY:
return "Carpeta de listas de reproducción";
case MENU_ENUM_LABEL_VALUE_SAVEFILE_DIRECTORY:
return "Carpeta de partidas guardadas";
case MENU_ENUM_LABEL_VALUE_SAVESTATE_DIRECTORY:
return "Carpeta de guardados rápidos";
case MENU_ENUM_LABEL_VALUE_STDIN_CMD_ENABLE:
return "Comandos stdin";
case MENU_ENUM_LABEL_VALUE_NETWORK_REMOTE_ENABLE:
return "Mando en red";
case MENU_ENUM_LABEL_VALUE_VIDEO_DRIVER:
return "Controlador de vídeo";
case MENU_ENUM_LABEL_VALUE_RECORD_ENABLE:
return "Activar grabación";
case MENU_ENUM_LABEL_VALUE_VIDEO_GPU_RECORD:
return "Activar grabación de GPU";
case MENU_ENUM_LABEL_VALUE_RECORD_PATH:
return "Carpeta de salida";
case MENU_ENUM_LABEL_VALUE_RECORD_USE_OUTPUT_DIRECTORY:
return "Usar carpeta de salida";
case MENU_ENUM_LABEL_VALUE_RECORD_CONFIG:
return "Configuración de grabación";
case MENU_ENUM_LABEL_VALUE_VIDEO_POST_FILTER_RECORD:
return "Activar grabación con filtros";
case MENU_ENUM_LABEL_VALUE_CORE_ASSETS_DIRECTORY:
return "Carpeta de descargas";
case MENU_ENUM_LABEL_VALUE_ASSETS_DIRECTORY:
return "Carpeta de recursos";
case MENU_ENUM_LABEL_VALUE_DYNAMIC_WALLPAPERS_DIRECTORY:
return "Carpeta de fondos de pantalla dinámicos";
case MENU_ENUM_LABEL_VALUE_RGUI_BROWSER_DIRECTORY:
return "Carpeta del navegador de archivos";
case MENU_ENUM_LABEL_VALUE_RGUI_CONFIG_DIRECTORY:
return "Carpeta de configuración";
case MENU_ENUM_LABEL_VALUE_LIBRETRO_INFO_PATH:
return "Carpeta de información del núcleo";
case MENU_ENUM_LABEL_VALUE_LIBRETRO_DIR_PATH:
return "Carpeta de núcleos";
case MENU_ENUM_LABEL_VALUE_CURSOR_DIRECTORY:
return "Carpeta de cursores";
case MENU_ENUM_LABEL_VALUE_CONTENT_DATABASE_DIRECTORY:
return "Carpeta de bases de datos de contenidos";
case MENU_ENUM_LABEL_VALUE_SYSTEM_DIRECTORY:
return "Carpeta de sistema/BIOS";
case MENU_ENUM_LABEL_VALUE_CHEAT_DATABASE_PATH:
return "Carpeta de archivos de trucos";
case MENU_ENUM_LABEL_VALUE_CACHE_DIRECTORY:
return "Carpeta de caché";
case MENU_ENUM_LABEL_VALUE_AUDIO_FILTER_DIR:
return "Carpeta de filtros de sonido";
case MENU_ENUM_LABEL_VALUE_VIDEO_SHADER_DIR:
return "Carpeta de shaders de vídeo";
case MENU_ENUM_LABEL_VALUE_VIDEO_FILTER_DIR:
return "Carpeta de filtros de vídeo";
case MENU_ENUM_LABEL_VALUE_OVERLAY_DIRECTORY:
return "Carpeta de superposiciones";
case MENU_ENUM_LABEL_VALUE_OSK_OVERLAY_DIRECTORY:
return "Carpeta de teclados superpuestos";
case MENU_ENUM_LABEL_VALUE_NETPLAY_CLIENT_SWAP_INPUT:
return "Intercambiar entrada en red";
case MENU_ENUM_LABEL_VALUE_NETPLAY_SPECTATOR_MODE_ENABLE:
return "Permitir espectadores en red";
case MENU_ENUM_LABEL_VALUE_NETPLAY_IP_ADDRESS:
return "Dirección IP";
case MENU_ENUM_LABEL_VALUE_NETPLAY_TCP_UDP_PORT:
return "Puerto TCP/UDP para juego en red";
case MENU_ENUM_LABEL_VALUE_NETPLAY_ENABLE:
return "Activar juego en red";
case MENU_ENUM_LABEL_VALUE_NETPLAY_DELAY_FRAMES:
return "Retraso de fotogramas en red";
case MENU_ENUM_LABEL_VALUE_NETPLAY_MODE:
return "Activar cliente en red";
case MENU_ENUM_LABEL_VALUE_RGUI_SHOW_START_SCREEN:
return "Mostrar pantalla de inicio";
case MENU_ENUM_LABEL_VALUE_TITLE_COLOR:
return "Color de títulos del menú";
case MENU_ENUM_LABEL_VALUE_ENTRY_HOVER_COLOR:
return "Color de entrada resaltada del menú";
case MENU_ENUM_LABEL_VALUE_TIMEDATE_ENABLE:
return "Mostrar fecha y hora";
case MENU_ENUM_LABEL_VALUE_THREADED_DATA_RUNLOOP_ENABLE:
return "Buclar datos hilados";
case MENU_ENUM_LABEL_VALUE_ENTRY_NORMAL_COLOR:
return "Color de entrada normal del menú";
case MENU_ENUM_LABEL_VALUE_SHOW_ADVANCED_SETTINGS:
return "Mostrar ajustes avanzados";
case MENU_ENUM_LABEL_VALUE_MOUSE_ENABLE:
return "Soporte para teclado";
case MENU_ENUM_LABEL_VALUE_POINTER_ENABLE:
return "Soporte táctil";
case MENU_ENUM_LABEL_VALUE_CORE_ENABLE:
return "Mostrar nombre del núcleo";
case MENU_ENUM_LABEL_VALUE_DPI_OVERRIDE_ENABLE:
return "Activar anulación de PPP";
case MENU_ENUM_LABEL_VALUE_DPI_OVERRIDE_VALUE:
return "Anular PPP";
case MENU_ENUM_LABEL_VALUE_XMB_SCALE_FACTOR:
return "Escala del XMB";
case MENU_ENUM_LABEL_VALUE_XMB_ALPHA_FACTOR:
return "Transparencia del XMB";
case MENU_ENUM_LABEL_VALUE_XMB_FONT:
return "Fuente del XMB";
case MENU_ENUM_LABEL_VALUE_SUSPEND_SCREENSAVER_ENABLE:
return "Suspender salvapantallas";
case MENU_ENUM_LABEL_VALUE_VIDEO_DISABLE_COMPOSITION:
return "Desactivar composición de escritorio";
case MENU_ENUM_LABEL_VALUE_PAUSE_NONACTIVE:
return "Detenerse en segundo plano";
case MENU_ENUM_LABEL_VALUE_UI_COMPANION_START_ON_BOOT:
return "Ejecutar al inicio la IU ayudante";
case MENU_ENUM_LABEL_VALUE_UI_COMPANION_ENABLE:
return "Activar IU ayudante";
case MENU_ENUM_LABEL_VALUE_UI_MENUBAR_ENABLE:
return "Barra de menús";
case MENU_ENUM_LABEL_VALUE_ARCHIVE_MODE:
return "Acción para asociar tipos de archivo";
case MENU_ENUM_LABEL_VALUE_NETWORK_CMD_ENABLE:
return "Comandos de red";
case MENU_ENUM_LABEL_VALUE_NETWORK_CMD_PORT:
return "Puerto de comandos de red";
case MENU_ENUM_LABEL_VALUE_HISTORY_LIST_ENABLE:
return "Activar historial";
case MENU_ENUM_LABEL_VALUE_CONTENT_HISTORY_SIZE:
return "Tamaño del historial";
case MENU_ENUM_LABEL_VALUE_VIDEO_REFRESH_RATE_AUTO:
return "Frecuencia estimada del monitor";
case MENU_ENUM_LABEL_VALUE_DUMMY_ON_CORE_SHUTDOWN:
return "Anular al cerrar núcleo";
case MENU_ENUM_LABEL_VALUE_CORE_SET_SUPPORTS_NO_CONTENT_ENABLE: /* TODO/FIXME */
return "No ejecutar automáticamente";
case MENU_ENUM_LABEL_VALUE_FRAME_THROTTLE_ENABLE:
return "Limitar velocidad máxima de ejecución";
case MENU_ENUM_LABEL_VALUE_FASTFORWARD_RATIO:
return "Velocidad máxima de ejecución";
case MENU_ENUM_LABEL_VALUE_AUTO_REMAPS_ENABLE:
return "Cargar autom. archivos de reasignación";
case MENU_ENUM_LABEL_VALUE_SLOWMOTION_RATIO:
return "Cantidad de velocidad reducida";
case MENU_ENUM_LABEL_VALUE_CORE_SPECIFIC_CONFIG:
return "Configuración por núcleo";
case MENU_ENUM_LABEL_VALUE_GAME_SPECIFIC_OPTIONS:
return "Usar opciones de núcleo para cada juego si existen";
case MENU_ENUM_LABEL_VALUE_GAME_SPECIFIC_OPTIONS_CREATE:
return "Crear archivo de opciones del juego";
case MENU_ENUM_LABEL_VALUE_GAME_SPECIFIC_OPTIONS_IN_USE:
return "Archivo de opciones del juego";
case MENU_ENUM_LABEL_VALUE_AUTO_OVERRIDES_ENABLE:
return "Cargar autom. archivos de anulación";
case MENU_ENUM_LABEL_VALUE_CONFIG_SAVE_ON_EXIT:
return "Guardar configuración al salir";
case MENU_ENUM_LABEL_VALUE_VIDEO_SMOOTH:
return "Filtrado bilineal por hardware";
case MENU_ENUM_LABEL_VALUE_VIDEO_GAMMA:
return "Gamma de vídeo";
case MENU_ENUM_LABEL_VALUE_VIDEO_ALLOW_ROTATE:
return "Permitir rotación";
case MENU_ENUM_LABEL_VALUE_VIDEO_HARD_SYNC:
return "Sincronía estricta de GPU";
case MENU_ENUM_LABEL_VALUE_VIDEO_SWAP_INTERVAL:
return "Intervalo de alternado de VSync";
case MENU_ENUM_LABEL_VALUE_VIDEO_VSYNC:
return "VSync/Sincronía vertical";
case MENU_ENUM_LABEL_VALUE_VIDEO_THREADED:
return "Vídeo por hilos";
case MENU_ENUM_LABEL_VALUE_VIDEO_ROTATION:
return "Rotación";
case MENU_ENUM_LABEL_VALUE_VIDEO_GPU_SCREENSHOT:
return "Permitir capturas de pantalla de GPU";
case MENU_ENUM_LABEL_VALUE_VIDEO_CROP_OVERSCAN:
return "Recortar Overscan (Reinicio)";
case MENU_ENUM_LABEL_VALUE_VIDEO_ASPECT_RATIO_INDEX:
return "Índice de proporción de aspecto";
case MENU_ENUM_LABEL_VALUE_VIDEO_ASPECT_RATIO_AUTO:
return "Proporción de aspecto automática";
case MENU_ENUM_LABEL_VALUE_VIDEO_FORCE_ASPECT:
return "Forzar proporción de aspecto";
case MENU_ENUM_LABEL_VALUE_VIDEO_REFRESH_RATE:
return "Frecuencia de actualización";
case MENU_ENUM_LABEL_VALUE_VIDEO_FORCE_SRGB_DISABLE:
return "Forzar anulación del FBO sRGB";
case MENU_ENUM_LABEL_VALUE_VIDEO_WINDOWED_FULLSCREEN:
return "Pantalla completa en ventana";
case MENU_ENUM_LABEL_VALUE_PAL60_ENABLE:
return "Usar modo PAL60";
case MENU_ENUM_LABEL_VALUE_VIDEO_VFILTER:
return "Filtro contra parpadeos";
case MENU_ENUM_LABEL_VALUE_VIDEO_VI_WIDTH:
return "Asignar ancho de interfaz visual";
case MENU_ENUM_LABEL_VALUE_VIDEO_BLACK_FRAME_INSERTION:
return "Insertar fotogramas negros";
case MENU_ENUM_LABEL_VALUE_VIDEO_HARD_SYNC_FRAMES:
return "Fotogramas a sincronizar estrictamente";
case MENU_ENUM_LABEL_VALUE_SORT_SAVEFILES_ENABLE:
return "Ordenar partidas guardadas por carpetas";
case MENU_ENUM_LABEL_VALUE_SORT_SAVESTATES_ENABLE:
return "Ordenar guardados rápidos por carpetas";
case MENU_ENUM_LABEL_VALUE_VIDEO_FULLSCREEN:
return "Pantalla completa";
case MENU_ENUM_LABEL_VALUE_VIDEO_SCALE:
return "Escala de ventana";
case MENU_ENUM_LABEL_VALUE_VIDEO_SCALE_INTEGER:
return "Escala integral";
case MENU_ENUM_LABEL_VALUE_PERFCNT_ENABLE:
return "Contadores de rendimiento";
case MENU_ENUM_LABEL_VALUE_LIBRETRO_LOG_LEVEL:
return "Nivel de registro del núcleo";
case MENU_ENUM_LABEL_VALUE_LOG_VERBOSITY:
return "Verbosidad del registro";
case MENU_ENUM_LABEL_VALUE_SAVESTATE_AUTO_LOAD:
return "Cargar guardado rápido automáticamente";
case MENU_ENUM_LABEL_VALUE_SAVESTATE_AUTO_INDEX:
return "Indizar automáticamente guardados rápidos";
case MENU_ENUM_LABEL_VALUE_SAVESTATE_AUTO_SAVE:
return "Guardado rápido automático";
case MENU_ENUM_LABEL_VALUE_AUTOSAVE_INTERVAL:
return "Intervalo de autoguardados de SaveRAM";
case MENU_ENUM_LABEL_VALUE_BLOCK_SRAM_OVERWRITE:
return "No sobrescribir SaveRAM al cargar un guardado rápido";
case MENU_ENUM_LABEL_VALUE_VIDEO_SHARED_CONTEXT:
return "Activar contexto compartido por HW";
case MENU_ENUM_LABEL_VALUE_RESTART_RETROARCH:
return "Reiniciar RetroArch";
case MENU_ENUM_LABEL_VALUE_NETPLAY_NICKNAME:
return "Nombre de usuario";
case MENU_ENUM_LABEL_VALUE_USER_LANGUAGE:
return "Idioma";
case MENU_ENUM_LABEL_VALUE_CAMERA_ALLOW:
return "Permitir cámara";
case MENU_ENUM_LABEL_VALUE_LOCATION_ALLOW:
return "Permitir ubicación";
case MENU_ENUM_LABEL_VALUE_PAUSE_LIBRETRO:
return "Pausar al activar el menú";
case MENU_ENUM_LABEL_VALUE_INPUT_OSK_OVERLAY_ENABLE:
return "Mostrar teclado superpuesto";
case MENU_ENUM_LABEL_VALUE_INPUT_OVERLAY_ENABLE:
return "Mostrar superposición";
case MENU_ENUM_LABEL_VALUE_VIDEO_MONITOR_INDEX:
return "Índice del monitor";
case MENU_ENUM_LABEL_VALUE_VIDEO_FRAME_DELAY:
return "Retraso de fotogramas";
case MENU_ENUM_LABEL_VALUE_INPUT_DUTY_CYCLE:
return "Ciclo de trabajo";
case MENU_ENUM_LABEL_VALUE_INPUT_TURBO_PERIOD:
return "Período de turbo";
case MENU_ENUM_LABEL_VALUE_INPUT_AXIS_THRESHOLD:
return "Margen de ejes de entrada";
case MENU_ENUM_LABEL_VALUE_INPUT_REMAP_BINDS_ENABLE:
return "Permitir reasignar controles";
case MENU_ENUM_LABEL_VALUE_INPUT_MAX_USERS:
return "Número máximo de usuarios";
case MENU_ENUM_LABEL_VALUE_INPUT_AUTODETECT_ENABLE:
return "Activar autoconfiguración";
case MENU_ENUM_LABEL_VALUE_AUDIO_OUTPUT_RATE:
return "Frecuencia de sonido (KHz)";
case MENU_ENUM_LABEL_VALUE_AUDIO_MAX_TIMING_SKEW:
return "Variación máxima de sincronía de sonido";
case MENU_ENUM_LABEL_VALUE_CHEAT_NUM_PASSES:
return "Pasadas de trucos";
case MENU_ENUM_LABEL_VALUE_REMAP_FILE_SAVE_CORE:
return "Guardar archivo de reasignación del núcleo";
case MENU_ENUM_LABEL_VALUE_REMAP_FILE_SAVE_GAME:
return "Guardar archivo de reasignación del juego";
case MENU_ENUM_LABEL_VALUE_CHEAT_APPLY_CHANGES:
return "Aplicar cambios en trucos";
case MENU_ENUM_LABEL_VALUE_SHADER_APPLY_CHANGES:
return "Aplicar cambios en shaders";
case MENU_ENUM_LABEL_VALUE_REWIND_ENABLE:
return "Activar rebobinado";
case MENU_ENUM_LABEL_VALUE_CONTENT_COLLECTION_LIST:
return "Seleccionar de una colección";
case MENU_ENUM_LABEL_VALUE_DETECT_CORE_LIST:
return "Seleccionar archivo y detectar núcleo";
case MENU_ENUM_LABEL_VALUE_DOWNLOADED_FILE_DETECT_CORE_LIST:
return "Seleccionar archivo descargado y detectar núcleo";
case MENU_ENUM_LABEL_VALUE_LOAD_CONTENT_HISTORY:
return "Cargar archivos recientes";
case MENU_ENUM_LABEL_VALUE_AUDIO_ENABLE:
return "Activar sonido";
case MENU_ENUM_LABEL_VALUE_FPS_SHOW:
return "Mostrar velocidad de fotogramas";
case MENU_ENUM_LABEL_VALUE_AUDIO_MUTE:
return "Silenciar sonido";
case MENU_ENUM_LABEL_VALUE_AUDIO_VOLUME:
return "Volumen de sonido (dB)";
case MENU_ENUM_LABEL_VALUE_AUDIO_SYNC:
return "Activar sincronía de sonido";
case MENU_ENUM_LABEL_VALUE_AUDIO_RATE_CONTROL_DELTA:
return "Delta de control de frecuencia de sonido";
case MENU_ENUM_LABEL_VALUE_VIDEO_SHADER_NUM_PASSES:
return "Pasadas del shader";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_SHA1:
return "SHA1";
case MENU_ENUM_LABEL_VALUE_CONFIGURATIONS:
return "Cargar configuración";
case MENU_ENUM_LABEL_VALUE_REWIND_GRANULARITY:
return "Nivel de detalle del rebobinado";
case MENU_ENUM_LABEL_VALUE_REMAP_FILE_LOAD:
return "Cargar archivo de reasignación";
case MENU_ENUM_LABEL_VALUE_CUSTOM_RATIO:
return "Proporción personalizada";
case MENU_ENUM_LABEL_VALUE_USE_THIS_DIRECTORY:
return "(Usar esta carpeta)";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_START_CONTENT:
return "Ejecutar contenido";
case MENU_ENUM_LABEL_VALUE_DISK_OPTIONS: /* UPDATE/FIXME */
return "Opciones del disco del núcleo";
case MENU_ENUM_LABEL_VALUE_CORE_OPTIONS:
return "Opciones";
case MENU_ENUM_LABEL_VALUE_CORE_CHEAT_OPTIONS: /* UPDATE/FIXME */
return "Opciones de trucos del núcleo";
case MENU_ENUM_LABEL_VALUE_CHEAT_FILE_LOAD:
return "Cargar archivo de trucos";
case MENU_ENUM_LABEL_VALUE_CHEAT_FILE_SAVE_AS:
return "Guardar archivo de trucos como...";
case MENU_ENUM_LABEL_VALUE_CORE_COUNTERS:
return "Contadores del núcleo";
case MENU_ENUM_LABEL_VALUE_TAKE_SCREENSHOT:
return "Capturar pantalla";
case MENU_ENUM_LABEL_VALUE_RESUME:
return "Reanudar";
case MENU_ENUM_LABEL_VALUE_DISK_INDEX:
return "Índice del disco";
case MENU_ENUM_LABEL_VALUE_FRONTEND_COUNTERS:
return "Contadores del frontend";
case MENU_ENUM_LABEL_VALUE_DISK_IMAGE_APPEND:
return "Asignar imagen de disco";
case MENU_ENUM_LABEL_VALUE_DISK_CYCLE_TRAY_STATUS:
return "Estado de la bandeja del disco";
case MENU_ENUM_LABEL_VALUE_NO_PLAYLIST_ENTRIES_AVAILABLE:
return "No hay listas de reproducción.";
case MENU_ENUM_LABEL_VALUE_NO_CORE_INFORMATION_AVAILABLE:
return "No hay información del núcleo.";
case MENU_ENUM_LABEL_VALUE_NO_CORE_OPTIONS_AVAILABLE:
return "No hay opciones del núcleo.";
case MENU_ENUM_LABEL_VALUE_NO_CORES_AVAILABLE:
return "No hay núcleos.";
case MENU_ENUM_LABEL_VALUE_NO_CORE:
return "Sin núcleo";
case MENU_ENUM_LABEL_VALUE_DATABASE_MANAGER:
return "Gestor de bases de datos";
case MENU_ENUM_LABEL_VALUE_CURSOR_MANAGER:
return "Gestor de cursores";
case MENU_ENUM_LABEL_VALUE_MAIN_MENU:
return "Menú principal";
case MENU_ENUM_LABEL_VALUE_SETTINGS:
return "Ajustes";
case MENU_ENUM_LABEL_VALUE_QUIT_RETROARCH:
return "Abandonar RetroArch";
case MENU_ENUM_LABEL_VALUE_SHUTDOWN:
return "Apagar";
case MENU_ENUM_LABEL_VALUE_REBOOT:
return "Reiniciar";
case MENU_ENUM_LABEL_VALUE_HELP:
return "Ayuda";
case MENU_ENUM_LABEL_VALUE_SAVE_NEW_CONFIG:
return "Guardar configuración nueva";
case MENU_ENUM_LABEL_VALUE_RESTART_CONTENT:
return "Reiniciar";
case MENU_ENUM_LABEL_VALUE_CORE_UPDATER_LIST:
return "Actualizador de núcleos";
case MENU_ENUM_LABEL_VALUE_CORE_UPDATER_BUILDBOT_URL:
return "URL de núcleos de Buildbot";
case MENU_ENUM_LABEL_VALUE_BUILDBOT_ASSETS_URL:
return "URL de recursos de Buildbot";
case MENU_ENUM_LABEL_VALUE_NAVIGATION_WRAPAROUND:
return "Seguir navegación";
case MENU_ENUM_LABEL_VALUE_NAVIGATION_BROWSER_FILTER_SUPPORTED_EXTENSIONS_ENABLE:
return "Filtrar por extensiones compatibles";
case MENU_ENUM_LABEL_VALUE_CORE_UPDATER_AUTO_EXTRACT_ARCHIVE:
return "Extraer automáticamente el archivo descargado";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFORMATION:
return "Información del sistema";
case MENU_ENUM_LABEL_VALUE_DEBUG_INFORMATION:
return "Información de depuración";
case MENU_ENUM_LABEL_VALUE_ACHIEVEMENT_LIST:
return "Lista de logros";
case MENU_ENUM_LABEL_VALUE_ONLINE_UPDATER:
return "Actualizador en línea";
case MENU_ENUM_LABEL_VALUE_CORE_INFORMATION:
return "Información del núcleo";
case MENU_ENUM_LABEL_VALUE_DIRECTORY_NOT_FOUND:
return "No se ha encontrado la carpeta.";
case MENU_ENUM_LABEL_VALUE_NO_ITEMS:
return "No hay elementos.";
case MENU_ENUM_LABEL_VALUE_CORE_LIST:
return "Cargar núcleo";
case MENU_ENUM_LABEL_VALUE_LOAD_CONTENT:
return "Seleccionar archivo";
case MENU_ENUM_LABEL_VALUE_CLOSE_CONTENT:
return "Cerrar";
case MENU_ENUM_LABEL_VALUE_MANAGEMENT:
return "Ajustes de bases de datos";
case MENU_ENUM_LABEL_VALUE_SAVE_STATE:
return "Guardado rápido";
case MENU_ENUM_LABEL_VALUE_LOAD_STATE:
return "Carga rápida";
case MENU_ENUM_LABEL_VALUE_RESUME_CONTENT:
return "Reanudar";
case MENU_ENUM_LABEL_VALUE_INPUT_DRIVER:
return "Controlador de entrada";
case MENU_ENUM_LABEL_VALUE_AUDIO_DRIVER:
return "Controlador de sonido";
case MENU_ENUM_LABEL_VALUE_JOYPAD_DRIVER:
return "Controlador de joypad";
case MENU_ENUM_LABEL_VALUE_AUDIO_RESAMPLER_DRIVER:
return "Controlador de muestreo de sonido";
case MENU_ENUM_LABEL_VALUE_RECORD_DRIVER:
return "Controlador de grabación";
case MENU_ENUM_LABEL_VALUE_MENU_DRIVER:
return "Controlador de menú";
case MENU_ENUM_LABEL_VALUE_CAMERA_DRIVER:
return "Controlador de cámara";
case MENU_ENUM_LABEL_VALUE_LOCATION_DRIVER:
return "Controlador de ubicación";
case MENU_ENUM_LABEL_VALUE_UNABLE_TO_READ_COMPRESSED_FILE:
return "No se ha podido leer el archivo comprimido.";
case MENU_ENUM_LABEL_VALUE_OVERLAY_SCALE:
return "Escala de superposición";
case MENU_ENUM_LABEL_VALUE_OVERLAY_PRESET:
return "Preajuste de superposición";
case MENU_ENUM_LABEL_VALUE_AUDIO_LATENCY:
return "Retraso de sonido (ms)";
case MENU_ENUM_LABEL_VALUE_AUDIO_DEVICE:
return "Controlador de sonido";
case MENU_ENUM_LABEL_VALUE_KEYBOARD_OVERLAY_PRESET:
return "Preajuste de teclado superpuesto";
case MENU_ENUM_LABEL_VALUE_OVERLAY_OPACITY:
return "Opacidad de la superposición";
case MENU_ENUM_LABEL_VALUE_MENU_WALLPAPER:
return "Fondo del menú";
case MENU_ENUM_LABEL_VALUE_DYNAMIC_WALLPAPER:
return "Fondo de pantalla dinámico";
case MENU_ENUM_LABEL_VALUE_CORE_INPUT_REMAPPING_OPTIONS:
return "Opciones de entrada del núcleo";
case MENU_ENUM_LABEL_VALUE_SHADER_OPTIONS:
return "Opciones de shaders";
case MENU_ENUM_LABEL_VALUE_VIDEO_SHADER_PARAMETERS:
return "Previsualizar parámetros de shaders";
case MENU_ENUM_LABEL_VALUE_VIDEO_SHADER_PRESET_PARAMETERS:
return "Parámetros de shaders del menú";
case MENU_ENUM_LABEL_VALUE_VIDEO_SHADER_PRESET_SAVE_AS:
return "Guardar preajuste de shaders como...";
case MENU_ENUM_LABEL_VALUE_NO_SHADER_PARAMETERS:
return "No hay parámetros de shaders.";
case MENU_ENUM_LABEL_VALUE_VIDEO_SHADER_PRESET:
return "Cargar preajuste de shaders";
case MENU_ENUM_LABEL_VALUE_VIDEO_FILTER:
return "Filtro de vídeo";
case MENU_ENUM_LABEL_VALUE_AUDIO_DSP_PLUGIN:
return "Plugin DSP de sonido";
case MENU_ENUM_LABEL_VALUE_STARTING_DOWNLOAD:
return "Iniciando descarga: ";
case MENU_ENUM_LABEL_VALUE_SECONDS:
return "segundos";
case MENU_ENUM_LABEL_VALUE_OFF: /* Not changed. Would be "SÍ" */
return "OFF";
case MENU_ENUM_LABEL_VALUE_ON: /* Not changed. Would be "NO" */
return "ON";
case MENU_ENUM_LABEL_VALUE_UPDATE_ASSETS:
return "Actualizar recursos";
case MENU_ENUM_LABEL_VALUE_UPDATE_LAKKA:
return "Actualizar Lakka";
case MENU_ENUM_LABEL_VALUE_UPDATE_CHEATS:
return "Actualizar trucos";
case MENU_ENUM_LABEL_VALUE_UPDATE_AUTOCONFIG_PROFILES:
return "Actualizar perfiles de autoconfiguración";
case MENU_ENUM_LABEL_VALUE_UPDATE_AUTOCONFIG_PROFILES_HID:
return "Actualizar perfiles de autoconfiguración (HID)";
case MENU_ENUM_LABEL_VALUE_UPDATE_DATABASES:
return "Actualizar bases de datos";
case MENU_ENUM_LABEL_VALUE_UPDATE_OVERLAYS:
return "Actualizar superposiciones";
case MENU_ENUM_LABEL_VALUE_UPDATE_CG_SHADERS:
return "Actualizar shaders Cg";
case MENU_ENUM_LABEL_VALUE_UPDATE_GLSL_SHADERS:
return "Actualizar shaders GLSL";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_CORE_NAME:
return "Nombre del núcleo";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_CORE_LABEL:
return "Etiqueta del núcleo";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_SYSTEM_NAME:
return "Nombre del sistema";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_SYSTEM_MANUFACTURER:
return "Fabricante del sistema";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_CATEGORIES:
return "Categorías";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_AUTHORS:
return "Autores";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_PERMISSIONS:
return "Permisos";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_LICENSES:
return "Licencia(s)";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_SUPPORTED_EXTENSIONS:
return "Extensiones compatibles";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_FIRMWARE:
return "Firmware";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_CORE_NOTES:
return "Notas del núcleo";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_BUILD_DATE:
return "Fecha de compilación";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_GIT_VERSION:
return "Versión de Git";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_CPU_FEATURES:
return "Características de CPU";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_FRONTEND_IDENTIFIER:
return "Identificador del frontend";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_FRONTEND_NAME:
return "Nombre del frontend";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_FRONTEND_OS:
return "S.O. del frontend";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_RETRORATING_LEVEL:
return "Nivel de RetroRating";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_POWER_SOURCE:
return "Fuente de alimentación";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_POWER_SOURCE_NO_SOURCE:
return "No hay una fuente";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_POWER_SOURCE_CHARGING:
return "Cargando";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_POWER_SOURCE_CHARGED:
return "Cargada";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_POWER_SOURCE_DISCHARGING:
return "Descargando";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_VIDEO_CONTEXT_DRIVER:
return "Controlador de contexto de vídeo";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_DISPLAY_METRIC_MM_WIDTH:
return "Mostrar ancho métrico (mm)";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_DISPLAY_METRIC_MM_HEIGHT:
return "Mostrar alto métrico (mm)";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_DISPLAY_METRIC_DPI:
return "Mostrar PPP métricos";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_LIBRETRODB_SUPPORT:
return "Soporte de LibretroDB";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OVERLAY_SUPPORT:
return "Soporte de superposiciones";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_COMMAND_IFACE_SUPPORT:
return "Soporte de interfaz de comandos";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_NETWORK_REMOTE_SUPPORT:
return "Soporte de mando en red";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_NETWORK_COMMAND_IFACE_SUPPORT:
return "Soporte de interfaz de comandos en red";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_COCOA_SUPPORT:
return "Soporte de Cocoa";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_RPNG_SUPPORT:
return "Soporte de PNG (RPNG)";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_SDL_SUPPORT:
return "Soporte de SDL1.2";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_SDL2_SUPPORT:
return "Soporte de SDL2";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_VULKAN_SUPPORT:
return "Soporte Vulkan";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OPENGL_SUPPORT:
return "Soporte de OpenGL";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OPENGLES_SUPPORT:
return "Soporte de OpenGL ES";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_THREADING_SUPPORT:
return "Soporte de hilos";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_KMS_SUPPORT:
return "Soporte de KMS/EGL";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_UDEV_SUPPORT:
return "Soporte de Udev";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OPENVG_SUPPORT:
return "Soporte de OpenVG";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_EGL_SUPPORT:
return "Soporte de EGL";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_X11_SUPPORT:
return "Soporte de X11";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_WAYLAND_SUPPORT:
return "Soporte de Wayland";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_XVIDEO_SUPPORT:
return "Soporte de XVideo";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_ALSA_SUPPORT:
return "Soporte de ALSA";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OSS_SUPPORT:
return "Soporte de OSS";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OPENAL_SUPPORT:
return "Soporte de OpenAL";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OPENSL_SUPPORT:
return "Soporte de OpenSL";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_RSOUND_SUPPORT:
return "Soporte de RSound";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_ROARAUDIO_SUPPORT:
return "Soporte de RoarAudio";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_JACK_SUPPORT:
return "Soporte de JACK";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_PULSEAUDIO_SUPPORT:
return "Soporte de PulseAudio";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_DSOUND_SUPPORT:
return "Soporte de DirectSound";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_XAUDIO2_SUPPORT:
return "Soporte de XAudio2";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_ZLIB_SUPPORT:
return "Soporte de Zlib";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_7ZIP_SUPPORT:
return "Soporte de 7zip";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_DYLIB_SUPPORT:
return "Soporte de librerías dinámicas";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_CG_SUPPORT:
return "Soporte de Cg";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_GLSL_SUPPORT:
return "Soporte de GLSL";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_HLSL_SUPPORT:
return "Soporte de HLSL";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_LIBXML2_SUPPORT:
return "Soporte de parseo XML libxml2";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_SDL_IMAGE_SUPPORT:
return "Soporte de imágenes SDL";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_FBO_SUPPORT:
return "Soporte de render-to-texture OpenGL/Direct3D (shaders multipasos)";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_DYNAMIC_SUPPORT:
return "Carga dinámica en tiempo real de librería libretro";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_FFMPEG_SUPPORT:
return "Soporte de FFmpeg";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_CORETEXT_SUPPORT:
return "Soporte de CoreText";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_FREETYPE_SUPPORT:
return "Soporte de FreeType";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_NETPLAY_SUPPORT:
return "Soporte de juego en red (peer-to-peer)";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_PYTHON_SUPPORT:
return "Soporte de Python (soporte de scripts para shaders)";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_V4L2_SUPPORT:
return "Soporte de Video4Linux2";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_LIBUSB_SUPPORT:
return "Soporte de Libusb";
case MENU_ENUM_LABEL_VALUE_YES:
return "";
case MENU_ENUM_LABEL_VALUE_NO:
return "No";
case MENU_ENUM_LABEL_VALUE_BACK:
return "BACK";
case MENU_ENUM_LABEL_VALUE_SCREEN_RESOLUTION:
return "Resolución de pantalla";
case MENU_ENUM_LABEL_VALUE_DISABLED:
return "Desactivado";
case MENU_ENUM_LABEL_VALUE_PORT:
return "Puerto";
case MENU_ENUM_LABEL_VALUE_NONE:
return "Ninguno";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_DEVELOPER:
return "Desarrollador";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_PUBLISHER:
return "Distribuidora";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_DESCRIPTION:
return "Descripción";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_GENRE:
return "Género";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_NAME:
return "Nombre";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_ORIGIN:
return "Origen";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_FRANCHISE:
return "Franquicia";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_RELEASE_MONTH:
return "Mes de lanzamiento";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_RELEASE_YEAR:
return "Año de lanzamiento";
case MENU_ENUM_LABEL_VALUE_TRUE:
return "Activado";
case MENU_ENUM_LABEL_VALUE_FALSE:
return "Desactivado";
case MENU_ENUM_LABEL_VALUE_MISSING:
return "Desaparecido";
case MENU_ENUM_LABEL_VALUE_PRESENT:
return "Presente";
case MENU_ENUM_LABEL_VALUE_OPTIONAL:
return "Opcional";
case MENU_ENUM_LABEL_VALUE_REQUIRED:
return "Necesario";
case MENU_ENUM_LABEL_VALUE_STATUS:
return "Estado";
case MENU_ENUM_LABEL_VALUE_AUDIO_SETTINGS:
return "Sonido";
case MENU_ENUM_LABEL_VALUE_INPUT_SETTINGS:
return "Entrada";
case MENU_ENUM_LABEL_VALUE_ONSCREEN_DISPLAY_SETTINGS:
return "Textos en pantalla (OSD)";
case MENU_ENUM_LABEL_VALUE_OVERLAY_SETTINGS:
return "Superposición";
case MENU_ENUM_LABEL_VALUE_MENU_SETTINGS:
return "Menú";
case MENU_ENUM_LABEL_VALUE_MULTIMEDIA_SETTINGS:
return "Multimedia";
case MENU_ENUM_LABEL_VALUE_UI_SETTINGS:
return "Interfaz de usuario";
case MENU_ENUM_LABEL_VALUE_MENU_FILE_BROWSER_SETTINGS:
return "Navegador de archivos del menú";
case MENU_ENUM_LABEL_VALUE_CORE_UPDATER_SETTINGS:
return "Actualizador";
case MENU_ENUM_LABEL_VALUE_NETWORK_SETTINGS:
return "Red";
case MENU_ENUM_LABEL_VALUE_PLAYLIST_SETTINGS:
return "Lista de reproducción";
case MENU_ENUM_LABEL_VALUE_USER_SETTINGS:
return "Usuario";
case MENU_ENUM_LABEL_VALUE_DIRECTORY_SETTINGS:
return "Carpeta";
case MENU_ENUM_LABEL_VALUE_RECORDING_SETTINGS:
return "Grabación";
case MENU_ENUM_LABEL_VALUE_NO_INFORMATION_AVAILABLE:
return "No hay información disponible.";
case MENU_ENUM_LABEL_VALUE_INPUT_USER_BINDS:
return "Asignaciones de entrada del usuario %u";
case MENU_ENUM_LABEL_VALUE_LANG_ENGLISH:
return "Inglés";
case MENU_ENUM_LABEL_VALUE_LANG_JAPANESE:
return "Japonés";
case MENU_ENUM_LABEL_VALUE_LANG_FRENCH:
return "Francés";
case MENU_ENUM_LABEL_VALUE_LANG_SPANISH:
return "Español";
case MENU_ENUM_LABEL_VALUE_LANG_GERMAN:
return "Alemán";
case MENU_ENUM_LABEL_VALUE_LANG_ITALIAN:
return "Italiano";
case MENU_ENUM_LABEL_VALUE_LANG_DUTCH:
return "Holandés";
case MENU_ENUM_LABEL_VALUE_LANG_PORTUGUESE:
return "Portugués";
case MENU_ENUM_LABEL_VALUE_LANG_RUSSIAN:
return "Ruso";
case MENU_ENUM_LABEL_VALUE_LANG_KOREAN:
return "Coreano";
case MENU_ENUM_LABEL_VALUE_LANG_CHINESE_TRADITIONAL:
return "Chino (Tradicional)";
case MENU_ENUM_LABEL_VALUE_LANG_CHINESE_SIMPLIFIED:
return "Chino (Simplificado)";
case MENU_ENUM_LABEL_VALUE_LANG_ESPERANTO:
return "Esperanto";
case MENU_ENUM_LABEL_VALUE_LEFT_ANALOG:
return "Analógico izquierdo";
case MENU_ENUM_LABEL_VALUE_RIGHT_ANALOG:
return "Analógico derecho";
case MENU_ENUM_LABEL_VALUE_INPUT_HOTKEY_BINDS:
return "Asignaciones de teclas rápidas";
case MENU_ENUM_LABEL_VALUE_FRAME_THROTTLE_SETTINGS:
return "Aumento de fotogramas";
case MENU_ENUM_LABEL_VALUE_SEARCH:
return "Buscar:";
case MENU_ENUM_LABEL_VALUE_USE_BUILTIN_IMAGE_VIEWER:
return "Usar visualizador de imágenes integrado";
case MENU_ENUM_LABEL_VALUE_ENABLE:
return "Activar";
case MENU_ENUM_LABEL_VALUE_START_CORE:
return "Iniciar núcleo";
case MENU_ENUM_LABEL_VALUE_INPUT_POLL_TYPE_BEHAVIOR:
return "Tipo de retardo";
default:
break;
}

View File

@ -12,6 +12,8 @@
* You should have received a copy of the GNU General Public License along with RetroArch.
* If not, see <http://www.gnu.org/licenses/>.
*/
#include <stdint.h>
#include <string.h>
#include "../msg_hash.h"
@ -206,6 +208,867 @@ const char *msg_hash_to_str_fr(enum msg_hash_enums msg)
return "Téléchargement";
case MSG_EXTRACTING:
return "Extraction";
case MENU_ENUM_LABEL_VALUE_OVERLAY_AUTOLOAD_PREFERRED:
return "Charger l'overlay préféré automatiquement";
case MENU_ENUM_LABEL_VALUE_UPDATE_CORE_INFO_FILES:
return "Mettre à jour les informations des coeurs";
case MENU_ENUM_LABEL_VALUE_DOWNLOAD_CORE_CONTENT:
return "Télécharger du contenu";
case MENU_ENUM_LABEL_VALUE_SCAN_THIS_DIRECTORY:
return "<Scanner ce dossier>";
case MENU_ENUM_LABEL_VALUE_SCAN_FILE:
return "Scanner un fichier";
case MENU_ENUM_LABEL_VALUE_SCAN_DIRECTORY:
return "Scanner un dossier";
case MENU_ENUM_LABEL_VALUE_ADD_CONTENT_LIST:
return "Ajouter du contenu";
case MENU_ENUM_LABEL_VALUE_INFORMATION_LIST:
return "Informations";
case MENU_ENUM_LABEL_VALUE_USE_BUILTIN_PLAYER:
return "Utiliser le lecteur vidéo embarqué";
case MENU_ENUM_LABEL_VALUE_CONTENT_SETTINGS:
return "Menu rapide";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_CRC32:
return "CRC32";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_MD5:
return "MD5";
case MENU_ENUM_LABEL_VALUE_LOAD_CONTENT_LIST:
return "Charger du contenu";
case MENU_ENUM_LABEL_VALUE_LOAD_ARCHIVE:
return "Charger l'archive";
case MENU_ENUM_LABEL_VALUE_OPEN_ARCHIVE:
return "Ouvrir l'archive";
case MENU_ENUM_LABEL_VALUE_ASK_ARCHIVE:
return "Demander";
case MENU_ENUM_LABEL_VALUE_PRIVACY_SETTINGS:
return "Confidentialité";
case MENU_ENUM_LABEL_VALUE_HORIZONTAL_MENU:
return "Horizontal Menu";
case MENU_ENUM_LABEL_VALUE_NO_SETTINGS_FOUND:
return "Pas de réglages trouvés.";
case MENU_ENUM_LABEL_VALUE_NO_PERFORMANCE_COUNTERS:
return "Pas de compteurs de performance.";
case MENU_ENUM_LABEL_VALUE_DRIVER_SETTINGS:
return "Pilotes";
case MENU_ENUM_LABEL_VALUE_CONFIGURATION_SETTINGS:
return "Configurations";
case MENU_ENUM_LABEL_VALUE_CORE_SETTINGS:
return "Coeurs";
case MENU_ENUM_LABEL_VALUE_VIDEO_SETTINGS:
return "Vidéo";
case MENU_ENUM_LABEL_VALUE_LOGGING_SETTINGS:
return "Journaux";
case MENU_ENUM_LABEL_VALUE_SAVING_SETTINGS:
return "Sauvegardes";
case MENU_ENUM_LABEL_VALUE_REWIND_SETTINGS:
return "Rembobinage";
case MENU_ENUM_LABEL_VALUE_SHADER:
return "Shader";
case MENU_ENUM_LABEL_VALUE_CHEAT:
return "Triche";
case MENU_ENUM_LABEL_VALUE_USER:
return "Utilisateur";
case MENU_ENUM_LABEL_VALUE_SYSTEM_BGM_ENABLE:
return "Musique du système activée";
case MENU_ENUM_LABEL_VALUE_RETROPAD:
return "RetroPad";
case MENU_ENUM_LABEL_VALUE_RETROKEYBOARD:
return "RetroKeyboard";
case MENU_ENUM_LABEL_AUDIO_BLOCK_FRAMES:
return "audio_block_frames";
case MENU_ENUM_LABEL_VALUE_AUDIO_BLOCK_FRAMES:
return "Block Frames";
case MENU_ENUM_LABEL_VALUE_INPUT_DESCRIPTOR_LABEL_SHOW: /* FIXME/UPDATE */
return "Afficher les remaps du coeur";
case MENU_ENUM_LABEL_VALUE_INPUT_DESCRIPTOR_HIDE_UNBOUND:
return "Cacher les remaps non mappés des coeurs";
case MENU_ENUM_LABEL_VALUE_VIDEO_FONT_ENABLE:
return "Afficher les messages d'info";
case MENU_ENUM_LABEL_VALUE_VIDEO_FONT_PATH:
return "Police des messages d'info";
case MENU_ENUM_LABEL_VALUE_VIDEO_FONT_SIZE:
return "Taille du texte des messages";
case MENU_ENUM_LABEL_VALUE_VIDEO_MESSAGE_POS_X:
return "Position X";
case MENU_ENUM_LABEL_VALUE_VIDEO_MESSAGE_POS_Y:
return "Position Y";
case MENU_ENUM_LABEL_VALUE_VIDEO_SOFT_FILTER:
return "Filtre doux activé";
case MENU_ENUM_LABEL_VIDEO_FILTER_FLICKER:
return "video_filter_flicker";
case MENU_ENUM_LABEL_VALUE_VIDEO_FILTER_FLICKER:
return "Filtre anti-scintillement";
case MENU_ENUM_LABEL_VALUE_DIRECTORY_CONTENT:
return "<Dossier de contenu>";
case MENU_ENUM_LABEL_VALUE_UNKNOWN:
return "Inconnu";
case MENU_ENUM_LABEL_VALUE_DONT_CARE:
return "Peu importe";
case MENU_ENUM_LABEL_VALUE_LINEAR:
return "Linéaire";
case MENU_ENUM_LABEL_VALUE_NEAREST:
return "Au plus proche";
case MENU_ENUM_LABEL_VALUE_DIRECTORY_DEFAULT:
return "<Par défaut>";
case MENU_ENUM_LABEL_VALUE_DIRECTORY_NONE:
return "<Aucun>";
case MENU_ENUM_LABEL_VALUE_NOT_AVAILABLE:
return "Indisponible";
case MENU_ENUM_LABEL_VALUE_INPUT_REMAPPING_DIRECTORY:
return "Dossier de remaps d'entrées";
case MENU_ENUM_LABEL_VALUE_JOYPAD_AUTOCONFIG_DIR:
return "Dossier des autoconfigs d'entrées";
case MENU_ENUM_LABEL_VALUE_RECORDING_CONFIG_DIRECTORY:
return "Dossier des réglages de capture vidéo";
case MENU_ENUM_LABEL_VALUE_RECORDING_OUTPUT_DIRECTORY:
return "Dossier d'enregistrement des vidéos";
case MENU_ENUM_LABEL_VALUE_SCREENSHOT_DIRECTORY:
return "Dossier des captures d'écran";
case MENU_ENUM_LABEL_VALUE_PLAYLIST_DIRECTORY:
return "Dossier des playlists";
case MENU_ENUM_LABEL_VALUE_SAVEFILE_DIRECTORY:
return "Dossier des sauvegardes";
case MENU_ENUM_LABEL_VALUE_SAVESTATE_DIRECTORY:
return "Dossier des sauvegardes rapides";
case MENU_ENUM_LABEL_VALUE_STDIN_CMD_ENABLE:
return "Commandes stdin";
case MENU_ENUM_LABEL_VALUE_VIDEO_DRIVER:
return "Pilote vidéo";
case MENU_ENUM_LABEL_VALUE_RECORD_ENABLE:
return "Autoriser les captures vidéo";
case MENU_ENUM_LABEL_VALUE_VIDEO_GPU_RECORD:
return "Captures vidéo via le GPU";
case MENU_ENUM_LABEL_VALUE_RECORD_PATH: /* FIXME/UPDATE */
return "Chemin de l'enregistrement";
case MENU_ENUM_LABEL_VALUE_RECORD_USE_OUTPUT_DIRECTORY:
return "Utiliser le dossier d'enregistrement";
case MENU_ENUM_LABEL_VALUE_RECORD_CONFIG:
return "Configuration de capture";
case MENU_ENUM_LABEL_VALUE_VIDEO_POST_FILTER_RECORD:
return "Activer les filtres de traitement";
case MENU_ENUM_LABEL_VALUE_CORE_ASSETS_DIRECTORY:
return "Dossier des téléchargements";
case MENU_ENUM_LABEL_VALUE_ASSETS_DIRECTORY:
return "Dossier des assets";
case MENU_ENUM_LABEL_VALUE_DYNAMIC_WALLPAPERS_DIRECTORY:
return "Dossier des fonds d'écran dynamiques";
case MENU_ENUM_LABEL_VALUE_THUMBNAILS_DIRECTORY:
return "Dossier des vignettes";
case MENU_ENUM_LABEL_VALUE_RGUI_BROWSER_DIRECTORY:
return "Dossier racine de navigation";
case MENU_ENUM_LABEL_VALUE_RGUI_CONFIG_DIRECTORY:
return "Dossier des fichiers de configuration";
case MENU_ENUM_LABEL_VALUE_LIBRETRO_INFO_PATH:
return "Dossier des informations des coeurs";
case MENU_ENUM_LABEL_VALUE_LIBRETRO_DIR_PATH:
return "Dossier des coeurs";
case MENU_ENUM_LABEL_VALUE_CURSOR_DIRECTORY:
return "Dossier des curseurs";
case MENU_ENUM_LABEL_VALUE_CONTENT_DATABASE_DIRECTORY:
return "Dossier des bases de données de contenus";
case MENU_ENUM_LABEL_VALUE_SYSTEM_DIRECTORY:
return "Dossier système/BIOS";
case MENU_ENUM_LABEL_VALUE_CHEAT_DATABASE_PATH:
return "Dossier des fichiers de triche";
case MENU_ENUM_LABEL_VALUE_CACHE_DIRECTORY: /* FIXME/UPDATE */
return "Dossier d'extraction";
case MENU_ENUM_LABEL_VALUE_AUDIO_FILTER_DIR:
return "Dossier des filtres audio";
case MENU_ENUM_LABEL_VALUE_VIDEO_SHADER_DIR:
return "Dossier des shaders vidéo";
case MENU_ENUM_LABEL_VALUE_VIDEO_FILTER_DIR:
return "Dossier des filtres vidéo";
case MENU_ENUM_LABEL_VALUE_OVERLAY_DIRECTORY:
return "Dossier des overlays";
case MENU_ENUM_LABEL_VALUE_OSK_OVERLAY_DIRECTORY:
return "Dossier des overlays claviers";
case MENU_ENUM_LABEL_VALUE_NETPLAY_CLIENT_SWAP_INPUT:
return "Inverser les entrées du jeu en réseau";
case MENU_ENUM_LABEL_VALUE_NETPLAY_SPECTATOR_MODE_ENABLE:
return "Activer le mode spectateur";
case MENU_ENUM_LABEL_VALUE_NETPLAY_IP_ADDRESS:
return "Adresse IP";
case MENU_ENUM_LABEL_VALUE_NETPLAY_TCP_UDP_PORT:
return "Port TCP/UDP du jeu en réseau";
case MENU_ENUM_LABEL_VALUE_NETPLAY_ENABLE:
return "Autoriser le jeu en réseau";
case MENU_ENUM_LABEL_VALUE_NETPLAY_DELAY_FRAMES:
return "Netplay Delay Frames";
case MENU_ENUM_LABEL_VALUE_NETPLAY_MODE:
return "Activer le mode client";
case MENU_ENUM_LABEL_VALUE_RGUI_SHOW_START_SCREEN:
return "Afficher l'écran de d'aide";
case MENU_ENUM_LABEL_VALUE_TITLE_COLOR:
return "Couleur du titre du menu";
case MENU_ENUM_LABEL_VALUE_ENTRY_HOVER_COLOR:
return "Couleur de l'entrée active";
case MENU_ENUM_LABEL_VALUE_TIMEDATE_ENABLE:
return "Afficher la date et l'heure";
case MENU_ENUM_LABEL_VALUE_THREADED_DATA_RUNLOOP_ENABLE:
return "Boucle de données threadée";
case MENU_ENUM_LABEL_VALUE_ENTRY_NORMAL_COLOR:
return "Couleur des entrées du menu";
case MENU_ENUM_LABEL_VALUE_SHOW_ADVANCED_SETTINGS:
return "Afficher les réglages avancés";
case MENU_ENUM_LABEL_VALUE_COLLAPSE_SUBGROUPS_ENABLE:
return "Fusionner les sous-groupes";
case MENU_ENUM_LABEL_VALUE_MOUSE_ENABLE:
return "Support de la souris";
case MENU_ENUM_LABEL_VALUE_POINTER_ENABLE:
return "Support du tactile";
case MENU_ENUM_LABEL_VALUE_CORE_ENABLE:
return "Afficher le coeur actuel";
case MENU_ENUM_LABEL_VALUE_DPI_OVERRIDE_ENABLE:
return "Personnaliser le DPI";
case MENU_ENUM_LABEL_VALUE_DPI_OVERRIDE_VALUE:
return "Valeur du DPI personnalisé";
case MENU_ENUM_LABEL_VALUE_SUSPEND_SCREENSAVER_ENABLE:
return "Désactiver l'économiseur d'écran";
case MENU_ENUM_LABEL_VALUE_VIDEO_DISABLE_COMPOSITION:
return "Désactiver le compositeur du bureau";
case MENU_ENUM_LABEL_VALUE_PAUSE_NONACTIVE:
return "Ne pas fonctionner en arrière-plan";
case MENU_ENUM_LABEL_VALUE_UI_COMPANION_START_ON_BOOT:
return "UI Companion Start On Boot";
case MENU_ENUM_LABEL_VALUE_UI_MENUBAR_ENABLE:
return "Menubar";
case MENU_ENUM_LABEL_VALUE_ARCHIVE_MODE:
return "Mode d'ouverture des archives";
case MENU_ENUM_LABEL_VALUE_NETWORK_CMD_ENABLE:
return "Commandes réseau";
case MENU_ENUM_LABEL_VALUE_NETWORK_CMD_PORT:
return "Port des commandes réseau";
case MENU_ENUM_LABEL_VALUE_HISTORY_LIST_ENABLE:
return "Afficher l'historique";
case MENU_ENUM_LABEL_VALUE_CONTENT_HISTORY_SIZE:
return "Taille de l'historique";
case MENU_ENUM_LABEL_VALUE_VIDEO_REFRESH_RATE_AUTO:
return "Fréquence estimée de l'écran";
case MENU_ENUM_LABEL_VALUE_DUMMY_ON_CORE_SHUTDOWN:
return "Utiliser un faux coeur lorsqu'il n'y en a pas";
case MENU_ENUM_LABEL_VALUE_CORE_SET_SUPPORTS_NO_CONTENT_ENABLE: /* TODO/FIXME */
return "Ne pas démarrer de coeur automatiquement";
case MENU_ENUM_LABEL_VALUE_FRAME_THROTTLE_ENABLE:
return "Limiter la vitesse d'exécution";
case MENU_ENUM_LABEL_VALUE_FASTFORWARD_RATIO:
return "Vitesse de l'avance rapide";
case MENU_ENUM_LABEL_VALUE_AUTO_REMAPS_ENABLE:
return "Charger les fichiers remaps automatiquement";
case MENU_ENUM_LABEL_VALUE_SLOWMOTION_RATIO:
return "Taux de ralentissement";
case MENU_ENUM_LABEL_VALUE_CORE_SPECIFIC_CONFIG:
return "Avoir une configuration par-coeur";
case MENU_ENUM_LABEL_VALUE_GAME_SPECIFIC_OPTIONS:
return "Options du coeur par-jeu";
case MENU_ENUM_LABEL_VALUE_AUTO_OVERRIDES_ENABLE:
return "Charger les fichiers d'override automatiquement";
case MENU_ENUM_LABEL_VALUE_CONFIG_SAVE_ON_EXIT:
return "Sauver la config en quittant";
case MENU_ENUM_LABEL_VALUE_VIDEO_SMOOTH:
return "Filtre bilinéaire (HW)";
case MENU_ENUM_LABEL_VALUE_VIDEO_GAMMA:
return "Gamma";
case MENU_ENUM_LABEL_VALUE_VIDEO_ALLOW_ROTATE:
return "Autoriser la rotation";
case MENU_ENUM_LABEL_VALUE_VIDEO_HARD_SYNC:
return "Synchroniser le GPU au CPU";
case MENU_ENUM_LABEL_VALUE_VIDEO_SWAP_INTERVAL:
return "Intervale de synchronisation verticale";
case MENU_ENUM_LABEL_VALUE_VIDEO_VSYNC:
return "Synchronisation verticale";
case MENU_ENUM_LABEL_VALUE_VIDEO_THREADED:
return "Threader l'affichage";
case MENU_ENUM_LABEL_VALUE_VIDEO_ROTATION:
return "Rotation";
case MENU_ENUM_LABEL_VALUE_VIDEO_GPU_SCREENSHOT:
return "Activer les captures d'écran GPU";
case MENU_ENUM_LABEL_VALUE_VIDEO_CROP_OVERSCAN:
return "Tronquer l'overscan (Reload)";
case MENU_ENUM_LABEL_VALUE_VIDEO_ASPECT_RATIO_INDEX:
return "Rapport d'aspect";
case MENU_ENUM_LABEL_VALUE_VIDEO_ASPECT_RATIO_AUTO:
return "Format d'image automatique";
case MENU_ENUM_LABEL_VALUE_VIDEO_FORCE_ASPECT:
return "Forcer le format d'image";
case MENU_ENUM_LABEL_VALUE_VIDEO_REFRESH_RATE:
return "Fréquence de rafraichissement";
case MENU_ENUM_LABEL_VALUE_VIDEO_FORCE_SRGB_DISABLE:
return "Désactiver sRGB FBO";
case MENU_ENUM_LABEL_VALUE_VIDEO_WINDOWED_FULLSCREEN:
return "Mode plein écran fenêtré";
case MENU_ENUM_LABEL_VALUE_PAL60_ENABLE:
return "Utiliser le mode PAL60";
case MENU_ENUM_LABEL_VALUE_VIDEO_VFILTER:
return "Deflicker"; /* TODO */
case MENU_ENUM_LABEL_VALUE_VIDEO_VI_WIDTH:
return "Set VI Screen Width"; /* TODO */
case MENU_ENUM_LABEL_VALUE_VIDEO_BLACK_FRAME_INSERTION:
return "Insérer des frames noires";
case MENU_ENUM_LABEL_VALUE_SORT_SAVEFILES_ENABLE:
return "Classer les sauvegardes par dossier";
case MENU_ENUM_LABEL_VALUE_SORT_SAVESTATES_ENABLE:
return "Classer les savestates par dossier";
case MENU_ENUM_LABEL_VALUE_VIDEO_FULLSCREEN:
return "Plein écran";
case MENU_ENUM_LABEL_VALUE_VIDEO_SCALE:
return "Zoom (en fenêtre)";
case MENU_ENUM_LABEL_VALUE_VIDEO_SCALE_INTEGER:
return "Aligner aux pixels de l'écran";
case MENU_ENUM_LABEL_VALUE_PERFCNT_ENABLE:
return "Compteurs de performance";
case MENU_ENUM_LABEL_VALUE_LIBRETRO_LOG_LEVEL:
return "Verbosité des journaux des coeurs";
case MENU_ENUM_LABEL_VALUE_LOG_VERBOSITY:
return "Verbosité des journaux";
case MENU_ENUM_LABEL_VALUE_SAVESTATE_AUTO_LOAD:
return "Charger automatiquement les savestates";
case MENU_ENUM_LABEL_VALUE_SAVESTATE_AUTO_INDEX:
return "Indexer automatiquement les savestates";
case MENU_ENUM_LABEL_VALUE_SAVESTATE_AUTO_SAVE:
return "Sauvegarde automatique";
case MENU_ENUM_LABEL_VALUE_AUTOSAVE_INTERVAL:
return "Intervale de sauvegarde SaveRAM";
case MENU_ENUM_LABEL_VALUE_BLOCK_SRAM_OVERWRITE:
return "Ne pas écraser la SaveRAM en chargeant la savestate";
case MENU_ENUM_LABEL_VALUE_VIDEO_SHARED_CONTEXT:
return "Partager le contexte matériel";
case MENU_ENUM_LABEL_VALUE_RESTART_RETROARCH:
return "Redémarrer RetroArch";
case MENU_ENUM_LABEL_VALUE_NETPLAY_NICKNAME:
return "Nom d'utilisateur";
case MENU_ENUM_LABEL_VALUE_USER_LANGUAGE:
return "Langage";
case MENU_ENUM_LABEL_VALUE_CAMERA_ALLOW:
return "Autoriser la caméra";
case MENU_ENUM_LABEL_VALUE_LOCATION_ALLOW:
return "Autoriser la localisation";
case MENU_ENUM_LABEL_VALUE_PAUSE_LIBRETRO:
return "Pauser le contenu quand le menu est activé";
case MENU_ENUM_LABEL_VALUE_INPUT_OSK_OVERLAY_ENABLE:
return "Afficher l'overlay clavier";
case MENU_ENUM_LABEL_VALUE_INPUT_OVERLAY_ENABLE:
return "Activer les overlays";
case MENU_ENUM_LABEL_VALUE_VIDEO_MONITOR_INDEX:
return "Écran";
case MENU_ENUM_LABEL_VALUE_VIDEO_FRAME_DELAY:
return "Délayer les frames";
case MENU_ENUM_LABEL_VALUE_INPUT_DUTY_CYCLE:
return "Rapport de cycle";
case MENU_ENUM_LABEL_VALUE_INPUT_TURBO_PERIOD:
return "Délai du turbo";
case MENU_ENUM_LABEL_VALUE_INPUT_AXIS_THRESHOLD:
return "Seuil des axes";
case MENU_ENUM_LABEL_VALUE_INPUT_REMAP_BINDS_ENABLE:
return "Autoriser le remapping des entrées";
case MENU_ENUM_LABEL_VALUE_INPUT_MAX_USERS:
return "Nombre d'utilisateurs";
case MENU_ENUM_LABEL_VALUE_INPUT_AUTODETECT_ENABLE:
return "Activer l'autoconfiguration";
case MENU_ENUM_LABEL_VALUE_AUDIO_OUTPUT_RATE:
return "Fréquence de sortie (KHz)";
case MENU_ENUM_LABEL_VALUE_AUDIO_MAX_TIMING_SKEW:
return "Limite max de l'ajustement";
case MENU_ENUM_LABEL_VALUE_CHEAT_NUM_PASSES:
return "Nombre de passages";
case MENU_ENUM_LABEL_VALUE_REMAP_FILE_SAVE_CORE:
return "Charger un fichier remaps de coeur";
case MENU_ENUM_LABEL_VALUE_REMAP_FILE_SAVE_GAME:
return "Charger un fichier remap de contenu";
case MENU_ENUM_LABEL_VALUE_CHEAT_APPLY_CHANGES:
return "Appliquer les changements";
case MENU_ENUM_LABEL_VALUE_SHADER_APPLY_CHANGES:
return "Appliquer les changements";
case MENU_ENUM_LABEL_VALUE_REWIND_ENABLE:
return "Activer le rembobinage";
case MENU_ENUM_LABEL_VALUE_CONTENT_COLLECTION_LIST:
return "Via les collections";
case MENU_ENUM_LABEL_VALUE_DETECT_CORE_LIST:
return "Via les fichiers (détecter le coeur)";
case MENU_ENUM_LABEL_VALUE_DOWNLOADED_FILE_DETECT_CORE_LIST:
return "Via les téléchargements (détecter le coeur)";
case MENU_ENUM_LABEL_VALUE_LOAD_CONTENT_HISTORY:
return "Récemment ouvert";
case MENU_ENUM_LABEL_VALUE_AUDIO_ENABLE:
return "Activer le son";
case MENU_ENUM_LABEL_VALUE_FPS_SHOW:
return "Afficher le FPS";
case MENU_ENUM_LABEL_VALUE_AUDIO_MUTE:
return "Muet";
case MENU_ENUM_LABEL_VALUE_AUDIO_VOLUME:
return "Volume sonnore (dB)";
case MENU_ENUM_LABEL_VALUE_AUDIO_SYNC:
return "Synchroniser le son";
case MENU_ENUM_LABEL_VALUE_AUDIO_RATE_CONTROL_DELTA:
return "Delta du taux de contrôle";
case MENU_ENUM_LABEL_VALUE_VIDEO_SHADER_NUM_PASSES:
return "Nombre de passages";
case MENU_ENUM_LABEL_VALUE_CONFIGURATIONS:
return "Charger une configuration";
case MENU_ENUM_LABEL_VALUE_REWIND_GRANULARITY:
return "Précision du rembobinage";
case MENU_ENUM_LABEL_VALUE_REMAP_FILE_LOAD:
return "Charger un fichier de remap";
case MENU_ENUM_LABEL_VALUE_CUSTOM_RATIO:
return "Forcer une résolution";
case MENU_ENUM_LABEL_VALUE_USE_THIS_DIRECTORY:
return "<Choisir ce dossier>";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_START_CONTENT:
return "Exécuter le contenu";
case MENU_ENUM_LABEL_VALUE_DISK_OPTIONS:
return "Disques";
case MENU_ENUM_LABEL_VALUE_CORE_OPTIONS:
return "Options";
case MENU_ENUM_LABEL_VALUE_CORE_CHEAT_OPTIONS:
return "Triche";
case MENU_ENUM_LABEL_VALUE_TAKE_SCREENSHOT:
return "Capturer l écran";
case MENU_ENUM_LABEL_VALUE_RESUME:
return "Reprendre";
case MENU_ENUM_LABEL_VALUE_DISK_INDEX:
return "Numéro du disque";
case MENU_ENUM_LABEL_VALUE_FRONTEND_COUNTERS:
return "Compteurs du Frontend";
case MENU_ENUM_LABEL_VALUE_DISK_IMAGE_APPEND:
return "Ajouter une image de disque";
case MENU_ENUM_LABEL_VALUE_DISK_CYCLE_TRAY_STATUS:
return "État du lecteur de disque";
case MENU_ENUM_LABEL_VALUE_NO_PLAYLIST_ENTRIES_AVAILABLE:
return "Playlist vide.";
case MENU_ENUM_LABEL_VALUE_NO_CORE_INFORMATION_AVAILABLE:
return "Pas d'informations disponibles.";
case MENU_ENUM_LABEL_VALUE_NO_CORE_OPTIONS_AVAILABLE:
return "Pas d'options disponibles.";
case MENU_ENUM_LABEL_VALUE_NO_CORES_AVAILABLE:
return "Aucun coeur disponible.";
case MENU_ENUM_LABEL_VALUE_NO_CORE:
return "Aucun coeur";
case MENU_ENUM_LABEL_VALUE_DATABASE_MANAGER:
return "Gestion de la base de données";
case MENU_ENUM_LABEL_VALUE_CURSOR_MANAGER:
return "Gestion des curseurs";
case MENU_ENUM_LABEL_VALUE_MAIN_MENU:
return "Menu principal";
case MENU_ENUM_LABEL_VALUE_SETTINGS:
return "Réglages";
case MENU_ENUM_LABEL_VALUE_QUIT_RETROARCH:
return "Quitter RetroArch";
case MENU_ENUM_LABEL_VALUE_SHUTDOWN:
return "Éteindre";
case MENU_ENUM_LABEL_VALUE_HELP:
return "Aide";
case MENU_ENUM_LABEL_VALUE_SAVE_NEW_CONFIG:
return "Sauvegarder la configuration";
case MENU_ENUM_LABEL_VALUE_RESTART_CONTENT:
return "Redémarrer le contenu";
case MENU_ENUM_LABEL_VALUE_CORE_UPDATER_LIST:
return "Mise à jour des coeurs";
case MENU_ENUM_LABEL_VALUE_CORE_UPDATER_BUILDBOT_URL:
return "URL du buildbot des coeurs";
case MENU_ENUM_LABEL_VALUE_BUILDBOT_ASSETS_URL:
return "URL du buildbot des assets";
case MENU_ENUM_LABEL_VALUE_NAVIGATION_WRAPAROUND:
return "Saut-retour";
case MENU_ENUM_LABEL_VALUE_NAVIGATION_BROWSER_FILTER_SUPPORTED_EXTENSIONS_ENABLE:
return "Filtrer par extentions supportées";
case MENU_ENUM_LABEL_VALUE_CORE_UPDATER_AUTO_EXTRACT_ARCHIVE:
return "Extraire automatiquement";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFORMATION:
return "Informations du système";
case MENU_ENUM_LABEL_VALUE_ONLINE_UPDATER:
return "Mises à jour";
case MENU_ENUM_LABEL_VALUE_CORE_INFORMATION:
return "Informations sur le coeur";
case MENU_ENUM_LABEL_VALUE_DIRECTORY_NOT_FOUND:
return "Dossier non trouvé.";
case MENU_ENUM_LABEL_VALUE_NO_ITEMS:
return "Vide.";
case MENU_ENUM_LABEL_VALUE_CORE_LIST:
return "Charger un coeur";
case MENU_ENUM_LABEL_VALUE_LOAD_CONTENT:
return "Via les fichiers";
case MENU_ENUM_LABEL_VALUE_CLOSE_CONTENT:
return "Quitter";
case MENU_ENUM_LABEL_VALUE_MANAGEMENT:
return "Gestion avancée";
case MENU_ENUM_LABEL_VALUE_SAVE_STATE:
return "Sauvegarder une savestate";
case MENU_ENUM_LABEL_VALUE_LOAD_STATE:
return "Charger une savestate";
case MENU_ENUM_LABEL_VALUE_RESUME_CONTENT:
return "Reprendre";
case MENU_ENUM_LABEL_VALUE_INPUT_DRIVER:
return "Pilote des entrées";
case MENU_ENUM_LABEL_VALUE_AUDIO_DRIVER:
return "Pilote audio";
case MENU_ENUM_LABEL_VALUE_JOYPAD_DRIVER:
return "Pilote des manettes";
case MENU_ENUM_LABEL_VALUE_AUDIO_RESAMPLER_DRIVER:
return "Pilote de ré-échantillonage audio";
case MENU_ENUM_LABEL_VALUE_RECORD_DRIVER:
return "Pilote de capture vidéo";
case MENU_ENUM_LABEL_VALUE_MENU_DRIVER:
return "Pilote de menu";
case MENU_ENUM_LABEL_VALUE_CAMERA_DRIVER:
return "Pilote de caméra";
case MENU_ENUM_LABEL_VALUE_LOCATION_DRIVER:
return "Pilote de localisation";
case MENU_ENUM_LABEL_VALUE_UNABLE_TO_READ_COMPRESSED_FILE:
return "Impossible de lire l'archive.";
case MENU_ENUM_LABEL_VALUE_OVERLAY_SCALE:
return "Zoom de l'overlay";
case MENU_ENUM_LABEL_VALUE_OVERLAY_PRESET:
return "Préréglages de l'overlay";
case MENU_ENUM_LABEL_VALUE_AUDIO_LATENCY:
return "Latence audio (ms)";
case MENU_ENUM_LABEL_VALUE_AUDIO_DEVICE:
return "Carte son";
case MENU_ENUM_LABEL_VALUE_KEYBOARD_OVERLAY_PRESET:
return "Préréglages d'overlay clavier";
case MENU_ENUM_LABEL_VALUE_OVERLAY_OPACITY:
return "Transparence de l'overlay";
case MENU_ENUM_LABEL_VALUE_MENU_WALLPAPER:
return "Fond d'écran";
case MENU_ENUM_LABEL_VALUE_DYNAMIC_WALLPAPER:
return "Fond d'écran dynamique";
case MENU_ENUM_LABEL_VALUE_THUMBNAILS:
return "Vignettes";
case MENU_ENUM_LABEL_VALUE_CORE_INPUT_REMAPPING_OPTIONS:
return "Remap d'entrées";
case MENU_ENUM_LABEL_VALUE_SHADER_OPTIONS:
return "Shaders";
case MENU_ENUM_LABEL_VALUE_NO_SHADER_PARAMETERS:
return "Aucun paramètres.";
case MENU_ENUM_LABEL_VALUE_VIDEO_FILTER:
return "Filtre vidéo";
case MENU_ENUM_LABEL_VALUE_AUDIO_DSP_PLUGIN:
return "Module DSP";
case MENU_ENUM_LABEL_VALUE_STARTING_DOWNLOAD:
return "Téléchargement de : ";
case MENU_ENUM_LABEL_VALUE_OFF:
return "OFF";
case MENU_ENUM_LABEL_VALUE_ON:
return "ON";
case MENU_ENUM_LABEL_VALUE_UPDATE_ASSETS:
return "Mettre à jour les assets";
case MENU_ENUM_LABEL_VALUE_UPDATE_CHEATS:
return "Mettre à jour les codes de triche";
case MENU_ENUM_LABEL_VALUE_UPDATE_AUTOCONFIG_PROFILES:
return "Mettre à jour les profils d'autoconfiguration";
case MENU_ENUM_LABEL_VALUE_UPDATE_AUTOCONFIG_PROFILES_HID:
return "Mettre à jour les profils d'autoconfiguration (HID)";
case MENU_ENUM_LABEL_VALUE_UPDATE_DATABASES:
return "Mettre à jour les bases de données";
case MENU_ENUM_LABEL_VALUE_UPDATE_OVERLAYS:
return "Mettre à jour les overlays";
case MENU_ENUM_LABEL_VALUE_UPDATE_CG_SHADERS:
return "Mettre à jour les shaders CG";
case MENU_ENUM_LABEL_VALUE_UPDATE_GLSL_SHADERS:
return "Mettre à jour les shaders GLSL";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_CORE_NAME:
return "Nom";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_CORE_LABEL:
return "Label";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_SYSTEM_NAME:
return "Système";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_SYSTEM_MANUFACTURER:
return "Fabricant du système";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_CATEGORIES:
return "Catégories";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_AUTHORS:
return "Auteurs";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_PERMISSIONS:
return "Permissions";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_LICENSES:
return "Licence(s)";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_SUPPORTED_EXTENSIONS:
return "Extensions supportées";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_FIRMWARE:
return "Firmware";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_CORE_NOTES:
return "Notes";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_BUILD_DATE:
return "Date de build";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_GIT_VERSION:
return "Version git";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_CPU_FEATURES:
return "Fonctionnalités du CPU";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_FRONTEND_IDENTIFIER:
return "Identifiant frontend";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_FRONTEND_NAME:
return "Nom du frontend";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_FRONTEND_OS:
return "OS du frontend";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_RETRORATING_LEVEL:
return "Niveau RetroRating";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_POWER_SOURCE:
return "Alimentation";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_POWER_SOURCE_NO_SOURCE:
return "Non alimenté";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_POWER_SOURCE_CHARGING:
return "En chargement";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_POWER_SOURCE_CHARGED:
return "Chargé";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_POWER_SOURCE_DISCHARGING:
return "Déchargé";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_VIDEO_CONTEXT_DRIVER:
return "Pilote du contexte vidéo";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_DISPLAY_METRIC_MM_WIDTH:
return "Largeur d'écran (mm)";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_DISPLAY_METRIC_MM_HEIGHT:
return "Hauteur d'écran (mm)";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_DISPLAY_METRIC_DPI:
return "DPI de l'écran";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_LIBRETRODB_SUPPORT:
return "Support de libretroDB";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OVERLAY_SUPPORT:
return "Support des overlays";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_COMMAND_IFACE_SUPPORT:
return "Support de l'interface de commandes";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_NETWORK_COMMAND_IFACE_SUPPORT:
return "Support des commandes réseau";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_COCOA_SUPPORT:
return "Support de Cocoa";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_RPNG_SUPPORT:
return "Support des PNGs (RPNG)";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_SDL_SUPPORT:
return "Support de SDL1.2";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_SDL2_SUPPORT:
return "Support de SDL2";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OPENGL_SUPPORT:
return "Support d'OpenGL";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OPENGLES_SUPPORT:
return "Support d'OpenGL ES";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_THREADING_SUPPORT:
return "Support du threading";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_KMS_SUPPORT:
return "Support de KMS/EGL";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_UDEV_SUPPORT:
return "Support de udev";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OPENVG_SUPPORT:
return "Support d'OpenVG";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_EGL_SUPPORT:
return "Support d'EGL";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_X11_SUPPORT:
return "Support de X11";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_WAYLAND_SUPPORT:
return "Support de Wayland";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_XVIDEO_SUPPORT:
return "Support de XVideo";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_ALSA_SUPPORT:
return "Support d'ALSA";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OSS_SUPPORT:
return "Support d'OSS";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OPENAL_SUPPORT:
return "Support d'OpenAL";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OPENSL_SUPPORT:
return "Support d'OpenSL";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_RSOUND_SUPPORT:
return "Support de RSound";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_ROARAUDIO_SUPPORT:
return "Support de RoarAudio";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_JACK_SUPPORT:
return "Support de JACK";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_PULSEAUDIO_SUPPORT:
return "Support de PulseAudio";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_DSOUND_SUPPORT:
return "Support de DirectSoundt";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_XAUDIO2_SUPPORT:
return "Support de XAudio2";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_ZLIB_SUPPORT:
return "Support de Zlib";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_7ZIP_SUPPORT:
return "Support de 7zip";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_DYLIB_SUPPORT:
return "Support des bibliothèques dynamiques";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_CG_SUPPORT:
return "Support de CG";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_GLSL_SUPPORT:
return "Support de GLSL";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_HLSL_SUPPORT:
return "Support de HLSL";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_LIBXML2_SUPPORT:
return "Support du parser XML libxml2";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_SDL_IMAGE_SUPPORT:
return "Support de SDL_Image";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_FBO_SUPPORT:
return "Support d'OpenGL/Direct3D render-to-texture (shaders multi-passages)";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_FFMPEG_SUPPORT:
return "Support de FFmpeg";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_CORETEXT_SUPPORT:
return "Support de CoreText";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_FREETYPE_SUPPORT:
return "Support de FreeType";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_NETPLAY_SUPPORT:
return "Support du jeu en réseau";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_PYTHON_SUPPORT:
return "Support de Python (scripting des shaders)";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_V4L2_SUPPORT:
return "Support de Video4Linux2";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_LIBUSB_SUPPORT:
return "Support de libusb";
case MENU_ENUM_LABEL_VALUE_YES:
return "Oui";
case MENU_ENUM_LABEL_VALUE_NO:
return "Non";
case MENU_ENUM_LABEL_VALUE_BACK:
return "Retour";
case MENU_ENUM_LABEL_VALUE_SCREEN_RESOLUTION:
return "Résolution d'écran";
case MENU_ENUM_LABEL_VALUE_DISABLED:
return "Désactivé";
case MENU_ENUM_LABEL_VALUE_PORT:
return "Port";
case MENU_ENUM_LABEL_VALUE_NONE:
return "Aucun";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_DEVELOPER:
return "Développeur";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_PUBLISHER:
return "Éditeur";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_DESCRIPTION:
return "Description";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_NAME:
return "Nom";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_ORIGIN:
return "Origine";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_FRANCHISE:
return "Franchise";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_RELEASE_MONTH:
return "Mois de sortie";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_RELEASE_YEAR:
return "Année de sortie";
case MENU_ENUM_LABEL_VALUE_TRUE:
return "Vrai";
case MENU_ENUM_LABEL_VALUE_FALSE:
return "Faux";
case MENU_ENUM_LABEL_VALUE_MISSING:
return "Manquant";
case MENU_ENUM_LABEL_VALUE_PRESENT:
return "Présent";
case MENU_ENUM_LABEL_VALUE_OPTIONAL:
return "Optionnel";
case MENU_ENUM_LABEL_VALUE_REQUIRED:
return "Requis";
case MENU_ENUM_LABEL_VALUE_STATUS:
return "Statut";
case MENU_ENUM_LABEL_VALUE_AUDIO_SETTINGS:
return "Audio";
case MENU_ENUM_LABEL_VALUE_INPUT_SETTINGS:
return "Entrées";
case MENU_ENUM_LABEL_VALUE_ONSCREEN_DISPLAY_SETTINGS:
return "Messages d'info";
case MENU_ENUM_LABEL_VALUE_OVERLAY_SETTINGS:
return "Overlays";
case MENU_ENUM_LABEL_VALUE_MENU_SETTINGS:
return "Menu";
case MENU_ENUM_LABEL_VALUE_MULTIMEDIA_SETTINGS:
return "Multimédia";
case MENU_ENUM_LABEL_VALUE_UI_SETTINGS:
return "Interface graphique";
case MENU_ENUM_LABEL_VALUE_MENU_FILE_BROWSER_SETTINGS:
return "Navigateur de fichiers";
case MENU_ENUM_LABEL_VALUE_CORE_UPDATER_SETTINGS:
return "Mises à jour";
case MENU_ENUM_LABEL_VALUE_NETWORK_SETTINGS:
return "Réseau";
case MENU_ENUM_LABEL_VALUE_PLAYLIST_SETTINGS:
return "Playlists";
case MENU_ENUM_LABEL_VALUE_USER_SETTINGS:
return "Utilisateur";
case MENU_ENUM_LABEL_VALUE_DIRECTORY_SETTINGS:
return "Dossiers";
case MENU_ENUM_LABEL_VALUE_RECORDING_SETTINGS:
return "Capture video";
case MENU_ENUM_LABEL_VALUE_NO_INFORMATION_AVAILABLE:
return "Pas d'informations disponibles.";
case MENU_ENUM_LABEL_VALUE_INPUT_USER_BINDS:
return "Entrées utilisateur %u";
case MENU_ENUM_LABEL_VALUE_LANG_ENGLISH:
return "Anglais";
case MENU_ENUM_LABEL_VALUE_LANG_JAPANESE:
return "Japonais";
case MENU_ENUM_LABEL_VALUE_LANG_FRENCH:
return "Français";
case MENU_ENUM_LABEL_VALUE_LANG_SPANISH:
return "Espagnol";
case MENU_ENUM_LABEL_VALUE_LANG_GERMAN:
return "Allemand";
case MENU_ENUM_LABEL_VALUE_LANG_ITALIAN:
return "Italien";
case MENU_ENUM_LABEL_VALUE_LANG_DUTCH:
return "Néerlandais";
case MENU_ENUM_LABEL_VALUE_LANG_PORTUGUESE:
return "Portuguais";
case MENU_ENUM_LABEL_VALUE_LANG_RUSSIAN:
return "Russe";
case MENU_ENUM_LABEL_VALUE_LANG_KOREAN:
return "Coréen";
case MENU_ENUM_LABEL_VALUE_LANG_CHINESE_TRADITIONAL:
return "Chinois (Traditionnel)";
case MENU_ENUM_LABEL_VALUE_LANG_CHINESE_SIMPLIFIED:
return "Chinois (Simplifié)";
case MENU_ENUM_LABEL_VALUE_LANG_ESPERANTO:
return "Esperanto";
case MENU_ENUM_LABEL_VALUE_LEFT_ANALOG:
return "Stick analogique gauche";
case MENU_ENUM_LABEL_VALUE_RIGHT_ANALOG:
return "Stick analogique droite";
case MENU_ENUM_LABEL_VALUE_INPUT_HOTKEY_BINDS:
return "Racourcis d'entrées";
case MENU_ENUM_LABEL_VALUE_FRAME_THROTTLE_SETTINGS:
return "Vitesse d'affichage";
case MENU_ENUM_LABEL_VALUE_SEARCH:
return "Recherche :";
case MENU_ENUM_LABEL_VALUE_USE_BUILTIN_IMAGE_VIEWER:
return "Utiliser le lecteur d'image embarqué";
case MENU_ENUM_LABEL_VALUE_HELP_LIST:
return "Aide";
case MENU_ENUM_LABEL_VALUE_START_CORE:
return "Démarrer le coeur";
case MENU_ENUM_LABEL_VALUE_START_NET_RETROPAD:
return "Mode manette à distance";
case MENU_ENUM_LABEL_VALUE_SAVE_CURRENT_CONFIG:
return "Sauvegarder la configuration actuelle";
case MENU_ENUM_LABEL_VALUE_SETTINGS_TAB:
return "Réglages";
case MENU_ENUM_LABEL_VALUE_HISTORY_TAB:
return "Historique";
case MENU_ENUM_LABEL_VALUE_ADD_TAB:
return "Scanner";
case MENU_ENUM_LABEL_VALUE_DEBUG_PANEL_ENABLE:
return "Activer le panneau de débogage";
case MENU_ENUM_LABEL_VALUE_INPUT_OVERLAY_HIDE_IN_MENU:
return "Cacher l'overlay dans le menu";
case MENU_ENUM_LABEL_CONTENT_HISTORY_SIZE:
return "Taille de l'historique";
case MENU_ENUM_LABEL_VALUE_ACCOUNTS_LIST:
return "Comptes en ligne";
case MENU_ENUM_LABEL_VALUE_MENU_LINEAR_FILTER:
return "Filtre linéaire";
case MENU_ENUM_LABEL_VALUE_XMB_SCALE_FACTOR:
return "XMB : Zoom";
case MENU_ENUM_LABEL_VALUE_XMB_ALPHA_FACTOR:
return "XMB : Transparence";
case MENU_ENUM_LABEL_VALUE_XMB_FONT:
return "XMB : Police";
case MENU_ENUM_LABEL_VALUE_XMB_THEME:
return "XMB : Theme";
case MENU_ENUM_LABEL_VALUE_XMB_GRADIENT:
return "Dégradé de font d'écran";
case MENU_ENUM_LABEL_VALUE_XMB_SHADOWS_ENABLE:
return "Ombres pour les icones";
case MENU_ENUM_LABEL_VALUE_XMB_RIBBON_ENABLE:
return "Font d'écran animé";
case MENU_ENUM_LABEL_VALUE_NETWORK_REMOTE_ENABLE:
return "Manette réseau";
case MENU_ENUM_LABEL_VALUE_RUN:
return "Lancer";
case MENU_ENUM_LABEL_VALUE_STATE_SLOT:
return "Slot de savestate";
case MENU_ENUM_LABEL_VALUE_UNDO_LOAD_STATE:
return "Annuler charger une savestate";
case MENU_ENUM_LABEL_VALUE_UNDO_SAVE_STATE:
return "Annuler sauvegarder une savestate";
default:
break;
}

View File

@ -12,14 +12,967 @@
* You should have received a copy of the GNU General Public License along with RetroArch.
* If not, see <http://www.gnu.org/licenses/>.
*/
#include <stdint.h>
#include <string.h>
#include <compat/strl.h>
#include "../msg_hash.h"
/* IMPORTANT:
* For non-english characters to work without proper unicode support,
* we need this file to be encoded in ISO 8859-1 (Latin1), not UTF-8.
* If you save this file as UTF-8, you'll break non-english characters
* (e.g. German "Umlauts" and Portugese diacritics).
*/
/* DO NOT REMOVE THIS. If it causes build failure, it's because you saved the file as UTF-8. Read the above comment. */
extern const char force_iso_8859_1[sizeof("àèéìòù")==6+1 ? 1 : -1];
const char *msg_hash_to_str_it(enum msg_hash_enums msg)
{
switch (msg)
{
case 0:
case MENU_ENUM_LABEL_VALUE_INPUT_ICADE_ENABLE:
return "Abilita mappatura gamepad tastiera";
case MENU_ENUM_LABEL_VALUE_INPUT_KEYBOARD_GAMEPAD_MAPPING_TYPE:
return "Tipologia di mappatura gamepad tastiera";
case MENU_ENUM_LABEL_VALUE_INPUT_SMALL_KEYBOARD_ENABLE:
return "Abilita tastiera ridotta";
case MENU_ENUM_LABEL_VALUE_SAVE_CURRENT_CONFIG:
return "Salva configurazione attuale";
case MENU_ENUM_LABEL_VALUE_STATE_SLOT:
return "Slot di stato";
case MENU_ENUM_LABEL_VALUE_ACCOUNTS_CHEEVOS_SETTINGS:
return "Obiettivi dell'account";
case MENU_ENUM_LABEL_VALUE_ACCOUNTS_CHEEVOS_USERNAME:
return "Nome utente";
case MENU_ENUM_LABEL_VALUE_ACCOUNTS_CHEEVOS_PASSWORD:
return "Password";
case MENU_ENUM_LABEL_VALUE_ACCOUNTS_RETRO_ACHIEVEMENTS:
return "Retro Obiettivi";
case MENU_ENUM_LABEL_VALUE_ACCOUNTS_LIST:
return "Account";
case MENU_ENUM_LABEL_VALUE_ACCOUNTS_LIST_END:
return "Lista degli account";
case MENU_ENUM_LABEL_VALUE_DEBUG_PANEL_ENABLE:
return "Abilita pannello di debug";
case MENU_ENUM_LABEL_VALUE_HELP_SCANNING_CONTENT:
return "Scansiona per contenuto";
case MENU_ENUM_LABEL_VALUE_CHEEVOS_DESCRIPTION:
return "Descrizione";
case MENU_ENUM_LABEL_VALUE_HELP_AUDIO_VIDEO_TROUBLESHOOTING:
return "Problemi Audio/Video";
case MENU_ENUM_LABEL_VALUE_HELP_CHANGE_VIRTUAL_GAMEPAD:
return "Cambia i settaggi del gamepad virtuale";
case MENU_ENUM_LABEL_VALUE_HELP_WHAT_IS_A_CORE:
return "Che cosa è un core?";
case MENU_ENUM_LABEL_VALUE_HELP_LOADING_CONTENT:
return "Carica Contenuto";
case MENU_ENUM_LABEL_VALUE_HELP_LIST:
return "Aiuto";
case MENU_ENUM_LABEL_VALUE_HELP_CONTROLS:
return "Menù di base dei controlli";
case MENU_ENUM_LABEL_VALUE_BASIC_MENU_CONTROLS:
return "Menù di base dei controlli";
case MENU_ENUM_LABEL_VALUE_BASIC_MENU_CONTROLS_SCROLL_UP:
return "Scorri verso l'alto";
case MENU_ENUM_LABEL_VALUE_BASIC_MENU_CONTROLS_SCROLL_DOWN:
return "Scorri verso il basso";
case MENU_ENUM_LABEL_VALUE_BASIC_MENU_CONTROLS_CONFIRM:
return "Conferma/OK";
case MENU_ENUM_LABEL_VALUE_BASIC_MENU_CONTROLS_BACK:
return "Indietro";
case MENU_ENUM_LABEL_VALUE_BASIC_MENU_CONTROLS_START:
return "Predefinito";
case MENU_ENUM_LABEL_VALUE_BASIC_MENU_CONTROLS_INFO:
return "Info";
case MENU_ENUM_LABEL_VALUE_BASIC_MENU_CONTROLS_TOGGLE_MENU:
return "Menù a comparsa";
case MENU_ENUM_LABEL_VALUE_BASIC_MENU_CONTROLS_QUIT:
return "Esci";
case MENU_ENUM_LABEL_VALUE_BASIC_MENU_CONTROLS_TOGGLE_KEYBOARD:
return "Tastiera a comparsa";
case MENU_ENUM_LABEL_VALUE_OPEN_ARCHIVE:
return "Apri archivio come cartella";
case MENU_ENUM_LABEL_VALUE_LOAD_ARCHIVE:
return "Carica archivio con il core";
case MENU_ENUM_LABEL_VALUE_INPUT_BACK_AS_MENU_TOGGLE_ENABLE:
return "Indietro quando il menù a comparsa è abilitato";
case MENU_ENUM_LABEL_VALUE_INPUT_MENU_ENUM_TOGGLE_GAMEPAD_COMBO:
return "Combo gamepad per il menù a comparsa";
case MENU_ENUM_LABEL_VALUE_INPUT_OVERLAY_HIDE_IN_MENU:
return "Nascondi overlay nel menù";
case MENU_ENUM_LABEL_VALUE_LANG_POLISH:
return "Polacco";
case MENU_ENUM_LABEL_VALUE_OVERLAY_AUTOLOAD_PREFERRED:
return "Autocarica overlay preferito";
case MENU_ENUM_LABEL_VALUE_UPDATE_CORE_INFO_FILES:
return "Aggiorna i files info dei core";
case MENU_ENUM_LABEL_VALUE_DOWNLOAD_CORE_CONTENT:
return "Contenuto scaricato";
case MENU_ENUM_LABEL_VALUE_SCAN_THIS_DIRECTORY:
return "<Scansiona questa directory>";
case MENU_ENUM_LABEL_VALUE_SCAN_FILE:
return "Scansiona file";
case MENU_ENUM_LABEL_VALUE_SCAN_DIRECTORY:
return "Scansiona directory";
case MENU_ENUM_LABEL_VALUE_ADD_CONTENT_LIST:
return "Aggiungi Contenuto";
case MENU_ENUM_LABEL_VALUE_INFORMATION_LIST:
return "Informazioni";
case MENU_ENUM_LABEL_VALUE_USE_BUILTIN_PLAYER:
return "Usa Media Player interno";
case MENU_ENUM_LABEL_VALUE_CONTENT_SETTINGS:
return "Menù rapido";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_CRC32:
return "CRC32";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_MD5:
return "MD5";
case MENU_ENUM_LABEL_VALUE_LOAD_CONTENT_LIST:
return "Carica Contenuto";
case MENU_ENUM_LABEL_VALUE_ASK_ARCHIVE:
return "Chiedi";
case MENU_ENUM_LABEL_VALUE_PRIVACY_SETTINGS:
return "Privacy";
#if 0
case MENU_ENUM_LABEL_VALUE_HORIZONTAL_MENU:
return "Menú orizzontale";
#else
case MENU_ENUM_LABEL_VALUE_HORIZONTAL_MENU:
return "Horizontal Menu";
#endif
#if 0
case MENU_ENUM_LABEL_VALUE_SETTINGS_TAB:
return "Settaggi scheda";
#else
case MENU_ENUM_LABEL_VALUE_SETTINGS_TAB:
return "Settings tab";
#endif
#if 0
case MENU_ENUM_LABEL_VALUE_HISTORY_TAB:
return "Cronologia scheda";
#else
case MENU_ENUM_LABEL_VALUE_HISTORY_TAB:
return "History tab";
#endif
#if 1
case MENU_ENUM_LABEL_VALUE_ADD_TAB:
return "Add tab";
#else
case MENU_ENUM_LABEL_VALUE_ADD_TAB:
return "Aggiungi scheda";
#endif
#if 0
case MENU_ENUM_LABEL_VALUE_PLAYLISTS_TAB:
return "Scheda Playlist";
#else
case MENU_ENUM_LABEL_VALUE_PLAYLISTS_TAB:
return "Playlists tab";
#endif
case MENU_ENUM_LABEL_VALUE_NO_SETTINGS_FOUND:
return "Nessun settaggio trovato.";
case MENU_ENUM_LABEL_VALUE_NO_PERFORMANCE_COUNTERS:
return "Nessun contatore di performance.";
case MENU_ENUM_LABEL_VALUE_DRIVER_SETTINGS:
return "Driver";
case MENU_ENUM_LABEL_VALUE_CONFIGURATION_SETTINGS:
return "Configurazione";
case MENU_ENUM_LABEL_VALUE_CORE_SETTINGS:
return "Core";
case MENU_ENUM_LABEL_VALUE_VIDEO_SETTINGS:
return "Video";
case MENU_ENUM_LABEL_VALUE_LOGGING_SETTINGS:
return "Logging";
case MENU_ENUM_LABEL_VALUE_SAVING_SETTINGS:
return "Salvataggi";
case MENU_ENUM_LABEL_VALUE_REWIND_SETTINGS:
return "Riavvolgi";
case MENU_ENUM_LABEL_VALUE_SHADER:
return "Shader";
case MENU_ENUM_LABEL_VALUE_CHEAT:
return "Trucchi";
case MENU_ENUM_LABEL_VALUE_USER:
return "Utente";
case MENU_ENUM_LABEL_VALUE_SYSTEM_BGM_ENABLE:
return "Abilita musica di sistema";
case MENU_ENUM_LABEL_VALUE_RETROPAD:
return "RetroPad";
case MENU_ENUM_LABEL_VALUE_RETROKEYBOARD:
return "RetroTastiera";
case MENU_ENUM_LABEL_VALUE_AUDIO_BLOCK_FRAMES:
return "Blocco fotogrammi";
case MENU_ENUM_LABEL_VALUE_INPUT_BIND_MODE:
return "Modalità di collegamento";
case MENU_ENUM_LABEL_VALUE_INPUT_DESCRIPTOR_LABEL_SHOW:
return "Mostra le etichette descrittive degli input del core";
case MENU_ENUM_LABEL_VALUE_INPUT_DESCRIPTOR_HIDE_UNBOUND:
return "Nascondi descrizione core non caricata";
case MENU_ENUM_LABEL_VALUE_VIDEO_FONT_ENABLE:
return "Mostra messaggi sullo schermo";
case MENU_ENUM_LABEL_VALUE_VIDEO_FONT_PATH:
return "Carattere per i messaggi sullo schermo";
case MENU_ENUM_LABEL_VALUE_VIDEO_FONT_SIZE:
return "Dimensione messaggi sullo schermo";
case MENU_ENUM_LABEL_VALUE_VIDEO_MESSAGE_POS_X:
return "Posizione X per i messaggi sullo schermo";
case MENU_ENUM_LABEL_VALUE_VIDEO_MESSAGE_POS_Y:
return "Posizione Y per i messaggi sullo schermo";
case MENU_ENUM_LABEL_VALUE_VIDEO_SOFT_FILTER:
return "Abilita filtro leggero";
case MENU_ENUM_LABEL_VALUE_VIDEO_FILTER_FLICKER:
return "Filtro per il flickering";
case MENU_ENUM_LABEL_VALUE_DIRECTORY_CONTENT:
return "<Directory contenuto>";
case MENU_ENUM_LABEL_VALUE_UNKNOWN:
return "Sconosciuto";
case MENU_ENUM_LABEL_VALUE_DONT_CARE:
return "Non considerare";
case MENU_ENUM_LABEL_VALUE_LINEAR:
return "Lineare";
case MENU_ENUM_LABEL_VALUE_NEAREST:
return "Più vicino";
case MENU_ENUM_LABEL_VALUE_DIRECTORY_DEFAULT:
return "<Predefinito>";
case MENU_ENUM_LABEL_VALUE_DIRECTORY_NONE:
return "<Nessuno>";
case MENU_ENUM_LABEL_VALUE_NOT_AVAILABLE:
return "N/D";
case MENU_ENUM_LABEL_VALUE_INPUT_REMAPPING_DIRECTORY:
return "Directory per la rimappatura dei dispositivi di input";
case MENU_ENUM_LABEL_VALUE_JOYPAD_AUTOCONFIG_DIR:
return "Directory per l'autoconfigurazione dei dispositivi di input";
case MENU_ENUM_LABEL_VALUE_RECORDING_CONFIG_DIRECTORY:
return "Directory della configurazione di registrazione";
case MENU_ENUM_LABEL_VALUE_RECORDING_OUTPUT_DIRECTORY:
return "Directory output di registrazione";
case MENU_ENUM_LABEL_VALUE_SCREENSHOT_DIRECTORY:
return "Directory delle screenshot";
case MENU_ENUM_LABEL_VALUE_PLAYLIST_DIRECTORY:
return "Directory della playlist";
case MENU_ENUM_LABEL_VALUE_SAVEFILE_DIRECTORY:
return "Directory dei file di salvataggio";
case MENU_ENUM_LABEL_VALUE_SAVESTATE_DIRECTORY:
return "Directory degli stati di salvataggio";
case MENU_ENUM_LABEL_VALUE_STDIN_CMD_ENABLE:
return "Comandi stdin";
case MENU_ENUM_LABEL_VALUE_VIDEO_DRIVER:
return "Driver Video";
case MENU_ENUM_LABEL_VALUE_RECORD_ENABLE:
return "Abilita registrazione";
case MENU_ENUM_LABEL_VALUE_VIDEO_GPU_RECORD:
return "Abilita registrazione GPU";
case MENU_ENUM_LABEL_VALUE_RECORD_PATH:
return "File di Output";
case MENU_ENUM_LABEL_VALUE_RECORD_USE_OUTPUT_DIRECTORY:
return "Usa Directory Output";
case MENU_ENUM_LABEL_VALUE_RECORD_CONFIG:
return "Configura registrazione";
case MENU_ENUM_LABEL_VALUE_VIDEO_POST_FILTER_RECORD:
return "Abilita registrazione post-filtro";
case MENU_ENUM_LABEL_VALUE_CORE_ASSETS_DIRECTORY:
return "Directory dei download";
case MENU_ENUM_LABEL_VALUE_ASSETS_DIRECTORY:
return "Directory degli asset";
case MENU_ENUM_LABEL_VALUE_DYNAMIC_WALLPAPERS_DIRECTORY:
return "Directory degli sfondi dinamici";
case MENU_ENUM_LABEL_VALUE_RGUI_BROWSER_DIRECTORY:
return "Directory di selezione file";
case MENU_ENUM_LABEL_VALUE_RGUI_CONFIG_DIRECTORY:
return "Directory di configurazione";
case MENU_ENUM_LABEL_VALUE_LIBRETRO_INFO_PATH:
return "Directory di informazione dei core";
case MENU_ENUM_LABEL_VALUE_LIBRETRO_DIR_PATH:
return "Directory dei core";
case MENU_ENUM_LABEL_VALUE_CURSOR_DIRECTORY:
return "Directory cursore";
case MENU_ENUM_LABEL_VALUE_CONTENT_DATABASE_DIRECTORY:
return "Directory del database";
case MENU_ENUM_LABEL_VALUE_SYSTEM_DIRECTORY:
return "Directory System/BIOS";
case MENU_ENUM_LABEL_VALUE_CHEAT_DATABASE_PATH:
return "Directory Trucchi";
case MENU_ENUM_LABEL_VALUE_CACHE_DIRECTORY:
return "Directory Cache";
case MENU_ENUM_LABEL_VALUE_AUDIO_FILTER_DIR:
return "Directory Filtro Audio";
case MENU_ENUM_LABEL_VALUE_VIDEO_SHADER_DIR:
return "Directory Shader Video";
case MENU_ENUM_LABEL_VALUE_VIDEO_FILTER_DIR:
return "Directory Filtro Video";
case MENU_ENUM_LABEL_VALUE_OVERLAY_DIRECTORY:
return "Directory Overlay";
case MENU_ENUM_LABEL_VALUE_OSK_OVERLAY_DIRECTORY:
return "Directory Overlay OSK";
case MENU_ENUM_LABEL_VALUE_NETPLAY_CLIENT_SWAP_INPUT:
return "Scambia ingressi in rete";
case MENU_ENUM_LABEL_VALUE_NETPLAY_SPECTATOR_MODE_ENABLE:
return "Abilita spettatore in rete";
case MENU_ENUM_LABEL_VALUE_NETPLAY_IP_ADDRESS:
return "Indirizzo IP";
case MENU_ENUM_LABEL_VALUE_NETPLAY_TCP_UDP_PORT:
return "Porta TCP/UDP Rete";
case MENU_ENUM_LABEL_VALUE_NETPLAY_ENABLE:
return "Abilita Rete";
case MENU_ENUM_LABEL_VALUE_NETPLAY_DELAY_FRAMES:
return "Mostra fotogrammi in rete";
case MENU_ENUM_LABEL_VALUE_NETPLAY_MODE:
return "Abilita Client di rete";
case MENU_ENUM_LABEL_VALUE_RGUI_SHOW_START_SCREEN:
return "Mostra schermata di avvio";
case MENU_ENUM_LABEL_VALUE_TITLE_COLOR:
return "Colore dei titoli dei menù";
case MENU_ENUM_LABEL_VALUE_ENTRY_HOVER_COLOR:
return "Colore evidenziato delle voci dei menù";
case MENU_ENUM_LABEL_VALUE_TIMEDATE_ENABLE:
return "Mostra ora / data";
case MENU_ENUM_LABEL_VALUE_THREADED_DATA_RUNLOOP_ENABLE:
return "Carica ciclo di dati nei thread";
case MENU_ENUM_LABEL_VALUE_ENTRY_NORMAL_COLOR:
return "Colore normale voce dei menù";
case MENU_ENUM_LABEL_VALUE_SHOW_ADVANCED_SETTINGS:
return "Mostra settaggi avanzati";
case MENU_ENUM_LABEL_VALUE_MOUSE_ENABLE:
return "Supporto mouse";
case MENU_ENUM_LABEL_VALUE_POINTER_ENABLE:
return "Supporto touch";
case MENU_ENUM_LABEL_VALUE_CORE_ENABLE:
return "Mostra nome dei core";
case MENU_ENUM_LABEL_VALUE_DPI_OVERRIDE_ENABLE:
return "Abilita DPI Override";
case MENU_ENUM_LABEL_VALUE_DPI_OVERRIDE_VALUE:
return "DPI Override";
case MENU_ENUM_LABEL_VALUE_SUSPEND_SCREENSAVER_ENABLE:
return "Spegni salvaschermo";
case MENU_ENUM_LABEL_VALUE_VIDEO_DISABLE_COMPOSITION:
return "Disattiva composizione desktop";
case MENU_ENUM_LABEL_VALUE_PAUSE_NONACTIVE:
return "Non caricare in background";
case MENU_ENUM_LABEL_VALUE_UI_COMPANION_START_ON_BOOT:
return "Abilita UI Companion all'avvio";
case MENU_ENUM_LABEL_VALUE_UI_COMPANION_ENABLE:
return "Abilita UI Companion";
case MENU_ENUM_LABEL_VALUE_UI_MENUBAR_ENABLE:
return "Barra dei menù";
case MENU_ENUM_LABEL_VALUE_ARCHIVE_MODE:
return "Azione per associare i tipi di archivio";
case MENU_ENUM_LABEL_VALUE_NETWORK_CMD_ENABLE:
return "Comandi di rete";
case MENU_ENUM_LABEL_VALUE_NETWORK_CMD_PORT:
return "Porta dei comandi di rete";
case MENU_ENUM_LABEL_VALUE_HISTORY_LIST_ENABLE:
return "Abilita cronologia";
case MENU_ENUM_LABEL_VALUE_CONTENT_HISTORY_SIZE:
return "Dimensione cronologia";
case MENU_ENUM_LABEL_VALUE_VIDEO_REFRESH_RATE_AUTO:
return "Fotogrammi stimati del monitor";
case MENU_ENUM_LABEL_VALUE_DUMMY_ON_CORE_SHUTDOWN:
return "Valore fittizio sull'arresto del core";
case MENU_ENUM_LABEL_VALUE_CORE_SET_SUPPORTS_NO_CONTENT_ENABLE: /* TODO/FIXME */
return "Non avviare automaticamente un core";
case MENU_ENUM_LABEL_VALUE_FRAME_THROTTLE_ENABLE:
return "Limita la velocità massima di caricamento";
case MENU_ENUM_LABEL_VALUE_FASTFORWARD_RATIO:
return "Velocità massima di caricamento";
case MENU_ENUM_LABEL_VALUE_AUTO_REMAPS_ENABLE:
return "Carica file di rimappatura automaticamente";
case MENU_ENUM_LABEL_VALUE_SLOWMOTION_RATIO:
return "Slow-Motion Ratio";
case MENU_ENUM_LABEL_VALUE_CORE_SPECIFIC_CONFIG:
return "Configurazione per core";
case MENU_ENUM_LABEL_VALUE_GAME_SPECIFIC_OPTIONS:
return "Usa opzioni core per gioco se disponibili";
case MENU_ENUM_LABEL_VALUE_GAME_SPECIFIC_OPTIONS_CREATE:
return "Crea file opzioni di gioco";
case MENU_ENUM_LABEL_VALUE_AUTO_OVERRIDES_ENABLE:
return "Carica file di override automaticamente";
case MENU_ENUM_LABEL_VALUE_CONFIG_SAVE_ON_EXIT:
return "Salva configurazione all'uscita";
case MENU_ENUM_LABEL_VALUE_VIDEO_SMOOTH:
return "Filtro bilineare hardware";
case MENU_ENUM_LABEL_VALUE_VIDEO_GAMMA:
return "Gamma video";
case MENU_ENUM_LABEL_VALUE_VIDEO_ALLOW_ROTATE:
return "Permetti rotazione";
case MENU_ENUM_LABEL_VALUE_VIDEO_HARD_SYNC:
return "Sincronizza GPU";
case MENU_ENUM_LABEL_VALUE_VIDEO_SWAP_INTERVAL:
return "Intervallo di swap vsync";
case MENU_ENUM_LABEL_VALUE_VIDEO_VSYNC:
return "VSync";
case MENU_ENUM_LABEL_VALUE_VIDEO_THREADED:
return "Threaded Video";
case MENU_ENUM_LABEL_VALUE_VIDEO_ROTATION:
return "Rotazione";
case MENU_ENUM_LABEL_VALUE_VIDEO_GPU_SCREENSHOT:
return "Abilita Screenshot GPU";
case MENU_ENUM_LABEL_VALUE_VIDEO_CROP_OVERSCAN:
return "Riduci Overscan (Riavvia)";
case MENU_ENUM_LABEL_VALUE_VIDEO_ASPECT_RATIO_INDEX:
return "Indice di aspect ratio";
case MENU_ENUM_LABEL_VALUE_VIDEO_ASPECT_RATIO_AUTO:
return "Aspect ratio automatico";
case MENU_ENUM_LABEL_VALUE_VIDEO_FORCE_ASPECT:
return "Forza aspect ratio";
case MENU_ENUM_LABEL_VALUE_VIDEO_REFRESH_RATE:
return "Frequenza di aggiornamento";
case MENU_ENUM_LABEL_VALUE_VIDEO_FORCE_SRGB_DISABLE:
return "Forza-disattiva sRGB FBO";
case MENU_ENUM_LABEL_VALUE_VIDEO_WINDOWED_FULLSCREEN:
return "Modalità schermo intero con finestra";
case MENU_ENUM_LABEL_VALUE_PAL60_ENABLE:
return "Usa modalità PAL60";
case MENU_ENUM_LABEL_VALUE_VIDEO_VFILTER:
return "Deflicker";
case MENU_ENUM_LABEL_VALUE_VIDEO_VI_WIDTH:
return "Imposta la larghezza dello schermo";
case MENU_ENUM_LABEL_VALUE_VIDEO_BLACK_FRAME_INSERTION:
return "Inserimento cornice nera";
case MENU_ENUM_LABEL_VALUE_VIDEO_HARD_SYNC_FRAMES:
return "Sincronizza fotogrammi GPU";
case MENU_ENUM_LABEL_VALUE_SORT_SAVEFILES_ENABLE:
return "Ordina i salvataggi nelle cartelle";
case MENU_ENUM_LABEL_VALUE_SORT_SAVESTATES_ENABLE:
return "Ordina gli stati di salvataggio nelle cartelle";
case MENU_ENUM_LABEL_VALUE_VIDEO_FULLSCREEN:
return "Usa modalità a schermo intero";
case MENU_ENUM_LABEL_VALUE_VIDEO_SCALE:
return "Scala a finestra";
case MENU_ENUM_LABEL_VALUE_VIDEO_SCALE_INTEGER:
return "Scala a numero intero";
case MENU_ENUM_LABEL_VALUE_PERFCNT_ENABLE:
return "Contatore performance";
case MENU_ENUM_LABEL_VALUE_LIBRETRO_LOG_LEVEL:
return "Livello dei log del core";
case MENU_ENUM_LABEL_VALUE_LOG_VERBOSITY:
return "Dettaglio dei log";
case MENU_ENUM_LABEL_VALUE_SAVESTATE_AUTO_LOAD:
return "Carica automaticamente gli stati di salvataggio";
case MENU_ENUM_LABEL_VALUE_SAVESTATE_AUTO_INDEX:
return "Cataloga automaticamente gli stati di salvataggio";
case MENU_ENUM_LABEL_VALUE_SAVESTATE_AUTO_SAVE:
return "Salva stato automaticamente";
case MENU_ENUM_LABEL_VALUE_AUTOSAVE_INTERVAL:
return "Intervallo di autosalvataggio SaveRAM";
case MENU_ENUM_LABEL_VALUE_BLOCK_SRAM_OVERWRITE:
return "Non sovrascrivere SaveRAM al caricamento degli stati di salvataggio";
case MENU_ENUM_LABEL_VALUE_VIDEO_SHARED_CONTEXT:
return "Abilita contesto condiviso HW";
case MENU_ENUM_LABEL_VALUE_RESTART_RETROARCH:
return "Riavvia RetroArch";
case MENU_ENUM_LABEL_VALUE_NETPLAY_NICKNAME:
return "Nome utente";
case MENU_ENUM_LABEL_VALUE_USER_LANGUAGE:
return "Linguaggio";
case MENU_ENUM_LABEL_VALUE_CAMERA_ALLOW:
return "Consenti fotocamera";
case MENU_ENUM_LABEL_VALUE_LOCATION_ALLOW:
return "Consenti posizionamento";
case MENU_ENUM_LABEL_VALUE_PAUSE_LIBRETRO:
return "In pausa quando il menù è attivato";
case MENU_ENUM_LABEL_VALUE_INPUT_OSK_OVERLAY_ENABLE:
return "Mostra Overlay Tastiera";
case MENU_ENUM_LABEL_VALUE_INPUT_OVERLAY_ENABLE:
return "Mostra Overlay";
case MENU_ENUM_LABEL_VALUE_VIDEO_MONITOR_INDEX:
return "Indice del monitor";
case MENU_ENUM_LABEL_VALUE_VIDEO_FRAME_DELAY:
return "Ritarda fotogramma";
case MENU_ENUM_LABEL_VALUE_INPUT_DUTY_CYCLE:
return "Ciclo dati";
case MENU_ENUM_LABEL_VALUE_INPUT_TURBO_PERIOD:
return "Modalità Turbo";
case MENU_ENUM_LABEL_VALUE_INPUT_AXIS_THRESHOLD:
return "Soglia Input Axis";
case MENU_ENUM_LABEL_VALUE_INPUT_REMAP_BINDS_ENABLE:
return "Abilita rimappatura dei controlli";
case MENU_ENUM_LABEL_VALUE_INPUT_MAX_USERS:
return "Utenti massimi";
case MENU_ENUM_LABEL_VALUE_INPUT_AUTODETECT_ENABLE:
return "Abilita autoconfigurazione";
case MENU_ENUM_LABEL_VALUE_AUDIO_OUTPUT_RATE:
return "Frequenza audio output (KHz)";
case MENU_ENUM_LABEL_VALUE_AUDIO_MAX_TIMING_SKEW:
return "Variazione massima di sincronia dell'audio";
case MENU_ENUM_LABEL_VALUE_CHEAT_NUM_PASSES:
return "Trucchi usati";
case MENU_ENUM_LABEL_VALUE_REMAP_FILE_SAVE_CORE:
return "Salva rimappatura file del core";
case MENU_ENUM_LABEL_VALUE_REMAP_FILE_SAVE_GAME:
return "Salva rimappatura file di gioco";
case MENU_ENUM_LABEL_VALUE_CHEAT_APPLY_CHANGES:
return "Applica i cambiamenti nei trucchi";
case MENU_ENUM_LABEL_VALUE_SHADER_APPLY_CHANGES:
return "Applica i cambiamenti negli shader";
case MENU_ENUM_LABEL_VALUE_REWIND_ENABLE:
return "Abilita riavvolgi";
case MENU_ENUM_LABEL_VALUE_CONTENT_COLLECTION_LIST:
return "Seleziona dalla collezione";
case MENU_ENUM_LABEL_VALUE_DETECT_CORE_LIST:
return "Seleziona il file ed intercetta il core";
case MENU_ENUM_LABEL_VALUE_DOWNLOADED_FILE_DETECT_CORE_LIST:
return "Seleziona file scaricati ed intercetta il core";
case MENU_ENUM_LABEL_VALUE_LOAD_CONTENT_HISTORY:
return "Carica Recenti";
case MENU_ENUM_LABEL_VALUE_AUDIO_ENABLE:
return "Abilita audio";
case MENU_ENUM_LABEL_VALUE_FPS_SHOW:
return "Mostra frequenza dei fotogrammi";
case MENU_ENUM_LABEL_VALUE_AUDIO_MUTE:
return "Silenzia audio";
case MENU_ENUM_LABEL_VALUE_AUDIO_VOLUME:
return "Livello volume audio (dB)";
case MENU_ENUM_LABEL_VALUE_AUDIO_SYNC:
return "Abilita sincro audio";
case MENU_ENUM_LABEL_VALUE_AUDIO_RATE_CONTROL_DELTA:
return "Delta di controllo frequenza audio";
case MENU_ENUM_LABEL_VALUE_VIDEO_SHADER_NUM_PASSES:
return "Passaggi dello shader";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_SHA1:
return "SHA1";
case MENU_ENUM_LABEL_VALUE_CONFIGURATIONS:
return "Carica Configurazione";
case MENU_ENUM_LABEL_VALUE_REWIND_GRANULARITY:
return "Livello della funzione riavvolgi";
case MENU_ENUM_LABEL_VALUE_REMAP_FILE_LOAD:
return "Carica file di rimappatura";
case MENU_ENUM_LABEL_VALUE_CUSTOM_RATIO:
return "Frequenza personalizzata";
case MENU_ENUM_LABEL_VALUE_USE_THIS_DIRECTORY:
return "<Usa questa directory>";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_START_CONTENT:
return "Avvia contenuto";
case MENU_ENUM_LABEL_VALUE_DISK_OPTIONS: /* UPDATE/FIXME */
return "Opzioni disco";
case MENU_ENUM_LABEL_VALUE_CORE_OPTIONS:
return "Opzioni";
case MENU_ENUM_LABEL_VALUE_CORE_CHEAT_OPTIONS: /* UPDATE/FIXME */
return "Opzione dei trucchi per il core";
case MENU_ENUM_LABEL_VALUE_CHEAT_FILE_LOAD:
return "Carica i trucchi";
case MENU_ENUM_LABEL_VALUE_CHEAT_FILE_SAVE_AS:
return "Salva i trucchi come";
case MENU_ENUM_LABEL_VALUE_CORE_COUNTERS:
return "Contatore dei core";
case MENU_ENUM_LABEL_VALUE_TAKE_SCREENSHOT:
return "Cattura Screenshot";
case MENU_ENUM_LABEL_VALUE_RESUME:
return "Riprendi";
case MENU_ENUM_LABEL_VALUE_DISK_INDEX:
return "Indice del disco";
case MENU_ENUM_LABEL_VALUE_FRONTEND_COUNTERS:
return "Contatori Frontend";
case MENU_ENUM_LABEL_VALUE_DISK_IMAGE_APPEND:
return "Aggiungi immagine disco";
case MENU_ENUM_LABEL_VALUE_DISK_CYCLE_TRAY_STATUS:
return "Stato del vassoio del disco";
case MENU_ENUM_LABEL_VALUE_NO_PLAYLIST_ENTRIES_AVAILABLE:
return "Nessuna voce della playlist disponibile.";
case MENU_ENUM_LABEL_VALUE_NO_CORE_INFORMATION_AVAILABLE:
return "Nessuna informazione sul core disponibile.";
case MENU_ENUM_LABEL_VALUE_NO_CORE_OPTIONS_AVAILABLE:
return "Nessuna opzione per il core disponibile.";
case MENU_ENUM_LABEL_VALUE_NO_CORES_AVAILABLE:
return "Nessun core disponibile.";
case MENU_ENUM_LABEL_VALUE_NO_CORE:
return "Nessun Core";
case MENU_ENUM_LABEL_VALUE_DATABASE_MANAGER:
return "Gestore database";
case MENU_ENUM_LABEL_VALUE_CURSOR_MANAGER:
return "Gestore cursori";
case MENU_ENUM_LABEL_VALUE_MAIN_MENU:
return "Menú principale";
case MENU_ENUM_LABEL_VALUE_SETTINGS:
return "Settaggi";
case MENU_ENUM_LABEL_VALUE_QUIT_RETROARCH:
return "Esci da RetroArch";
case MENU_ENUM_LABEL_VALUE_SHUTDOWN:
return "Spegni";
case MENU_ENUM_LABEL_VALUE_REBOOT:
return "Riavvia";
case MENU_ENUM_LABEL_VALUE_HELP:
return "Aiuto";
case MENU_ENUM_LABEL_VALUE_SAVE_NEW_CONFIG:
return "Salva nuova configurazione";
case MENU_ENUM_LABEL_VALUE_RESTART_CONTENT:
return "Riavvia";
case MENU_ENUM_LABEL_VALUE_CORE_UPDATER_LIST:
return "Aggiorna i core";
case MENU_ENUM_LABEL_VALUE_CORE_UPDATER_BUILDBOT_URL:
return "Indirizzo Buildbot Core";
case MENU_ENUM_LABEL_VALUE_BUILDBOT_ASSETS_URL:
return "Indirizzo Buildbot Assets";
case MENU_ENUM_LABEL_VALUE_NAVIGATION_WRAPAROUND:
return "Navigazione avvolgente";
case MENU_ENUM_LABEL_VALUE_NAVIGATION_BROWSER_FILTER_SUPPORTED_EXTENSIONS_ENABLE:
return "Filtra con estensioni supportate";
case MENU_ENUM_LABEL_VALUE_CORE_UPDATER_AUTO_EXTRACT_ARCHIVE:
return "Estrai automaticamente gli archivi scaricati";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFORMATION:
return "Informazione di sistema";
case MENU_ENUM_LABEL_VALUE_DEBUG_INFORMATION:
return "Informazioni di debug";
case MENU_ENUM_LABEL_VALUE_ACHIEVEMENT_LIST:
return "Lista Obiettivi";
case MENU_ENUM_LABEL_VALUE_ONLINE_UPDATER:
return "Aggiorna Online";
case MENU_ENUM_LABEL_VALUE_CORE_INFORMATION:
return "Informazioni del core";
case MENU_ENUM_LABEL_VALUE_DIRECTORY_NOT_FOUND:
return "Directory non trovata.";
case MENU_ENUM_LABEL_VALUE_NO_ITEMS:
return "Nessun oggetto.";
case MENU_ENUM_LABEL_VALUE_CORE_LIST:
return "Carica Core";
case MENU_ENUM_LABEL_VALUE_LOAD_CONTENT:
return "Seleziona contenuto";
case MENU_ENUM_LABEL_VALUE_CLOSE_CONTENT:
return "Chiudi";
case MENU_ENUM_LABEL_VALUE_MANAGEMENT:
return "Settaggi del database";
case MENU_ENUM_LABEL_VALUE_SAVE_STATE:
return "Salva stato";
case MENU_ENUM_LABEL_VALUE_LOAD_STATE:
return "Carica stato";
case MENU_ENUM_LABEL_VALUE_RESUME_CONTENT:
return "Riprendi";
case MENU_ENUM_LABEL_VALUE_INPUT_DRIVER:
return "Driver di Input";
case MENU_ENUM_LABEL_VALUE_AUDIO_DRIVER:
return "Driver Audio";
case MENU_ENUM_LABEL_VALUE_JOYPAD_DRIVER:
return "Driver del Joypad";
case MENU_ENUM_LABEL_VALUE_AUDIO_RESAMPLER_DRIVER:
return "Driver di ricampionamento Audio";
case MENU_ENUM_LABEL_VALUE_RECORD_DRIVER:
return "Driver di Registrazione";
case MENU_ENUM_LABEL_VALUE_MENU_DRIVER:
return "Driver Menù";
case MENU_ENUM_LABEL_VALUE_CAMERA_DRIVER:
return "Driver Fotocamera";
case MENU_ENUM_LABEL_VALUE_LOCATION_DRIVER:
return "Driver di Posizione";
case MENU_ENUM_LABEL_VALUE_UNABLE_TO_READ_COMPRESSED_FILE:
return "Incapace di leggere i file compressi.";
case MENU_ENUM_LABEL_VALUE_OVERLAY_SCALE:
return "Scala Overlay";
case MENU_ENUM_LABEL_VALUE_OVERLAY_PRESET:
return "Overlay Predefinito";
case MENU_ENUM_LABEL_VALUE_AUDIO_LATENCY:
return "Latenza audio (ms)";
case MENU_ENUM_LABEL_VALUE_AUDIO_DEVICE:
return "Dispositivo audio";
case MENU_ENUM_LABEL_VALUE_KEYBOARD_OVERLAY_PRESET:
return "Preimpostato Overlay Tastiera";
case MENU_ENUM_LABEL_VALUE_OVERLAY_OPACITY:
return "Opacità Overlay";
case MENU_ENUM_LABEL_VALUE_MENU_WALLPAPER:
return "Menù sfondi";
case MENU_ENUM_LABEL_VALUE_DYNAMIC_WALLPAPER:
return "Sfondo dinamico";
case MENU_ENUM_LABEL_VALUE_CORE_INPUT_REMAPPING_OPTIONS:
return "Opzioni di rimappatura degli input del core";
case MENU_ENUM_LABEL_VALUE_SHADER_OPTIONS: /* UPDATE/FIXME */
return "Shaders";
case MENU_ENUM_LABEL_VALUE_VIDEO_SHADER_PARAMETERS:
return "Antemprima Parametri Shader";
case MENU_ENUM_LABEL_VALUE_VIDEO_SHADER_PRESET_PARAMETERS:
return "Parametri shader del menù";
case MENU_ENUM_LABEL_VALUE_VIDEO_SHADER_PRESET_SAVE_AS:
return "Salva Shader Preimpostati come";
case MENU_ENUM_LABEL_VALUE_NO_SHADER_PARAMETERS:
return "Nessun parametro shader.";
case MENU_ENUM_LABEL_VALUE_VIDEO_SHADER_PRESET:
return "Carica Shader Preimpostati";
case MENU_ENUM_LABEL_VALUE_VIDEO_FILTER:
return "Filtro Video";
case MENU_ENUM_LABEL_VALUE_AUDIO_DSP_PLUGIN:
return "Plugin audio DSP";
case MENU_ENUM_LABEL_VALUE_STARTING_DOWNLOAD:
return "Avviando il download: ";
case MENU_ENUM_LABEL_VALUE_SECONDS:
return "secondi";
case MENU_ENUM_LABEL_VALUE_OFF:
return "OFF";
case MENU_ENUM_LABEL_VALUE_ON:
return "ON";
case MENU_ENUM_LABEL_VALUE_UPDATE_ASSETS:
return "Aggiorna Asset";
case MENU_ENUM_LABEL_VALUE_UPDATE_CHEATS:
return "Aggiorna Trucchi";
case MENU_ENUM_LABEL_VALUE_UPDATE_AUTOCONFIG_PROFILES:
return "Aggiorna profili di autoconfigurazione";
case MENU_ENUM_LABEL_VALUE_UPDATE_AUTOCONFIG_PROFILES_HID:
return "Aggiorna i profili di autoconfigurazione (HID)";
case MENU_ENUM_LABEL_VALUE_UPDATE_DATABASES:
return "Aggiorna Database";
case MENU_ENUM_LABEL_VALUE_UPDATE_OVERLAYS:
return "Aggiorna Overlay";
case MENU_ENUM_LABEL_VALUE_UPDATE_CG_SHADERS:
return "Aggiorna Cg Shader";
case MENU_ENUM_LABEL_VALUE_UPDATE_GLSL_SHADERS:
return "Aggiorna GLSL Shader";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_CORE_NAME:
return "Nome core";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_CORE_LABEL:
return "Etichetta core";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_SYSTEM_NAME:
return "Nome del sistema";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_SYSTEM_MANUFACTURER:
return "Produttore del sitema";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_CATEGORIES:
return "Categorie";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_AUTHORS:
return "Autori";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_PERMISSIONS:
return "Permessi";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_LICENSES:
return "Licenza(e)";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_SUPPORTED_EXTENSIONS:
return "Estensioni supportate";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_FIRMWARE:
return "Firmware";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_CORE_NOTES:
return "Note del core";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_BUILD_DATE:
return "Data della build";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_GIT_VERSION:
return "Versione git";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_CPU_FEATURES:
return "Caratteristiche CPU";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_FRONTEND_IDENTIFIER:
return "Identificatore frontend";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_FRONTEND_NAME:
return "Nome frontend";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_FRONTEND_OS:
return "OS Frontend";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_RETRORATING_LEVEL:
return "Livello di RetroRating";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_POWER_SOURCE:
return "Fonte di alimentazione";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_POWER_SOURCE_NO_SOURCE:
return "Nessuna fonte";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_POWER_SOURCE_CHARGING:
return "Caricando";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_POWER_SOURCE_CHARGED:
return "Caricato";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_POWER_SOURCE_DISCHARGING:
return "Scarico";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_VIDEO_CONTEXT_DRIVER:
return "Contesto driver video";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_DISPLAY_METRIC_MM_WIDTH:
return "Mostra larghezza (mm)";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_DISPLAY_METRIC_MM_HEIGHT:
return "Mostra altezza (mm)";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_DISPLAY_METRIC_DPI:
return "Mostra DPI";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_LIBRETRODB_SUPPORT:
return "Supporto LibretroDB";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OVERLAY_SUPPORT:
return "Supporto overlay";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_COMMAND_IFACE_SUPPORT:
return "Supporto interfaccia di comando";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_NETWORK_COMMAND_IFACE_SUPPORT:
return "Supporto interfaccia comando di rete";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_COCOA_SUPPORT:
return "Supporto Cocoa";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_RPNG_SUPPORT:
return "Supporto PNG (RPNG)";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_SDL_SUPPORT:
return "Supporto SDL1.2";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_SDL2_SUPPORT:
return "Supporto SDL2";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OPENGL_SUPPORT:
return "Supporto OpenGL";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OPENGLES_SUPPORT:
return "Supporto OpenGL ES";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_THREADING_SUPPORT:
return "Supporto Threading";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_KMS_SUPPORT:
return "Supporto KMS/EGL";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_UDEV_SUPPORT:
return "Supporto Udev";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OPENVG_SUPPORT:
return "Supporto OpenVG";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_EGL_SUPPORT:
return "Supporto EGL";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_X11_SUPPORT:
return "Supporto X11";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_WAYLAND_SUPPORT:
return "Supporto Wayland";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_XVIDEO_SUPPORT:
return "Supporto XVideo";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_ALSA_SUPPORT:
return "Supporto ALSA";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OSS_SUPPORT:
return "Supporto OSS";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OPENAL_SUPPORT:
return "Supporto OpenAL";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OPENSL_SUPPORT:
return "Supporto OpenSL";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_RSOUND_SUPPORT:
return "Supporto RSound";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_ROARAUDIO_SUPPORT:
return "Supporto RoarAudio";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_JACK_SUPPORT:
return "Supporto JACK";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_PULSEAUDIO_SUPPORT:
return "Supporto PulseAudio";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_DSOUND_SUPPORT:
return "Supporto DirectSound";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_XAUDIO2_SUPPORT:
return "Supporto XAudio2";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_ZLIB_SUPPORT:
return "Supporto Zlib";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_7ZIP_SUPPORT:
return "Supporto 7zip";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_DYLIB_SUPPORT:
return "Supporto libreria dinamica";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_CG_SUPPORT:
return "Supporto Cg";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_GLSL_SUPPORT:
return "Supporto GLSL";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_HLSL_SUPPORT:
return "Supporto HLSL";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_LIBXML2_SUPPORT:
return "Supporto analisi XML libxml2 XML";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_SDL_IMAGE_SUPPORT:
return "Supporto immagine SDL";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_FBO_SUPPORT:
return "Supporto renderizza-a-texture (multi-pass shaders) OpenGL/Direct3D";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_FFMPEG_SUPPORT:
return "Supporto FFmpeg";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_CORETEXT_SUPPORT:
return "Supporto CoreText";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_FREETYPE_SUPPORT:
return "Supporto FreeType";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_NETPLAY_SUPPORT:
return "Supporto Netplay (peer-to-peer) ";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_PYTHON_SUPPORT:
return "Supporto Python (supporto script in shaders) ";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_V4L2_SUPPORT:
return "Supporto Video4Linux2";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_LIBUSB_SUPPORT:
return "Supporto Libusb";
case MENU_ENUM_LABEL_VALUE_YES:
return "";
case MENU_ENUM_LABEL_VALUE_NO:
return "No";
case MENU_ENUM_LABEL_VALUE_BACK:
return "INDIETRO";
case MENU_ENUM_LABEL_VALUE_SCREEN_RESOLUTION:
return "Risoluzione schermo";
case MENU_ENUM_LABEL_VALUE_DISABLED:
return "Disattivato";
case MENU_ENUM_LABEL_VALUE_PORT:
return "Porta";
case MENU_ENUM_LABEL_VALUE_NONE:
return "Nessuno";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_DEVELOPER:
return "Sviluppatore";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_PUBLISHER:
return "Editore";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_DESCRIPTION:
return "Descrizione";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_NAME:
return "Nome";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_ORIGIN:
return "Origine";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_FRANCHISE:
return "Franchise";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_RELEASE_MONTH:
return "Mese di uscita";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_RELEASE_YEAR:
return "Anno di uscita";
case MENU_ENUM_LABEL_VALUE_TRUE:
return "Vero";
case MENU_ENUM_LABEL_VALUE_FALSE:
return "Falso";
case MENU_ENUM_LABEL_VALUE_MISSING:
return "Mancante";
case MENU_ENUM_LABEL_VALUE_PRESENT:
return "Presente";
case MENU_ENUM_LABEL_VALUE_OPTIONAL:
return "Opzionale";
case MENU_ENUM_LABEL_VALUE_REQUIRED:
return "Richiesto";
case MENU_ENUM_LABEL_VALUE_STATUS:
return "Stato";
case MENU_ENUM_LABEL_VALUE_AUDIO_SETTINGS:
return "Audio";
case MENU_ENUM_LABEL_VALUE_INPUT_SETTINGS:
return "Input";
case MENU_ENUM_LABEL_VALUE_ONSCREEN_DISPLAY_SETTINGS:
return "Mostra sullo schermo";
case MENU_ENUM_LABEL_VALUE_OVERLAY_SETTINGS:
return "Overlay sullo schermo";
case MENU_ENUM_LABEL_VALUE_MENU_SETTINGS:
return "Menù";
case MENU_ENUM_LABEL_VALUE_MULTIMEDIA_SETTINGS:
return "Multimedia";
case MENU_ENUM_LABEL_VALUE_UI_SETTINGS:
return "Interfaccia Utente";
case MENU_ENUM_LABEL_VALUE_MENU_FILE_BROWSER_SETTINGS:
return "Seleziona file";
case MENU_ENUM_LABEL_VALUE_CORE_UPDATER_SETTINGS:
return "Aggiorna";
case MENU_ENUM_LABEL_VALUE_NETWORK_SETTINGS:
return "Rete";
case MENU_ENUM_LABEL_VALUE_PLAYLIST_SETTINGS:
return "Playlist";
case MENU_ENUM_LABEL_VALUE_USER_SETTINGS:
return "Utente";
case MENU_ENUM_LABEL_VALUE_DIRECTORY_SETTINGS:
return "Directory";
case MENU_ENUM_LABEL_VALUE_RECORDING_SETTINGS:
return "Registrazione";
case MENU_ENUM_LABEL_VALUE_NO_INFORMATION_AVAILABLE:
return "Nessuna informazione disponibile.";
case MENU_ENUM_LABEL_VALUE_INPUT_USER_BINDS:
return "Assegna Ingresso Utente %u";
case MENU_ENUM_LABEL_VALUE_LANG_ENGLISH:
return "Inglese";
case MENU_ENUM_LABEL_VALUE_LANG_JAPANESE:
return "Giapponese";
case MENU_ENUM_LABEL_VALUE_LANG_FRENCH:
return "Francese";
case MENU_ENUM_LABEL_VALUE_LANG_SPANISH:
return "Spagnolo";
case MENU_ENUM_LABEL_VALUE_LANG_GERMAN:
return "Tedesco";
case MENU_ENUM_LABEL_VALUE_LANG_ITALIAN:
return "Italiano";
case MENU_ENUM_LABEL_VALUE_LANG_DUTCH:
return "Olandese";
case MENU_ENUM_LABEL_VALUE_LANG_PORTUGUESE:
return "Portoghese";
case MENU_ENUM_LABEL_VALUE_LANG_RUSSIAN:
return "Russo";
case MENU_ENUM_LABEL_VALUE_LANG_KOREAN:
return "Coreano";
case MENU_ENUM_LABEL_VALUE_LANG_CHINESE_TRADITIONAL:
return "Cinese (Tradizionale)";
case MENU_ENUM_LABEL_VALUE_LANG_CHINESE_SIMPLIFIED:
return "Cinese (Semplificato)";
case MENU_ENUM_LABEL_VALUE_LANG_ESPERANTO:
return "Esperanto";
case MENU_ENUM_LABEL_VALUE_LEFT_ANALOG:
return "Analogico sinistro";
case MENU_ENUM_LABEL_VALUE_RIGHT_ANALOG:
return "Analogico destro";
case MENU_ENUM_LABEL_VALUE_INPUT_HOTKEY_BINDS:
return "Imposta tasti di scelta rapida di input";
case MENU_ENUM_LABEL_VALUE_FRAME_THROTTLE_SETTINGS:
return "Aumenta fotogrammi";
case MENU_ENUM_LABEL_VALUE_SEARCH:
return "Cerca:";
case MENU_ENUM_LABEL_VALUE_USE_BUILTIN_IMAGE_VIEWER:
return "Usa visualizzatore di immagini interno";
case MENU_ENUM_LABEL_VALUE_ENABLE:
return "Attivare";
case MENU_ENUM_LABEL_VALUE_START_CORE:
return "Avvia Core";
case MENU_ENUM_LABEL_VALUE_INPUT_POLL_TYPE_BEHAVIOR:
return "Tipo di ritardo";
default:
break;
}

View File

@ -12,6 +12,10 @@
* You should have received a copy of the GNU General Public License along with RetroArch.
* If not, see <http://www.gnu.org/licenses/>.
*/
#include <stdint.h>
#include <string.h>
#include <compat/strl.h>
#include "../msg_hash.h"
@ -19,7 +23,866 @@ const char *msg_hash_to_str_nl(enum msg_hash_enums msg)
{
switch (msg)
{
case 0:
case MENU_ENUM_LABEL_VALUE_HELP_SCANNING_CONTENT:
return "Scannen naar Content";
case MENU_ENUM_LABEL_VALUE_HELP_AUDIO_VIDEO_TROUBLESHOOTING:
return "Audio/Video Raadpleging";
case MENU_ENUM_LABEL_VALUE_HELP_CHANGE_VIRTUAL_GAMEPAD:
return "Virtuele Gamepad Overlay Veranderen";
case MENU_ENUM_LABEL_VALUE_HELP_WHAT_IS_A_CORE:
return "Wat is een Core?";
case MENU_ENUM_LABEL_VALUE_HELP_LOADING_CONTENT:
return "Hoe Laad je Content?";
case MENU_ENUM_LABEL_VALUE_HELP_LIST:
return "Help";
case MENU_ENUM_LABEL_VALUE_HELP_CONTROLS:
return "Basis Menu Besturing";
case MENU_ENUM_LABEL_VALUE_BASIC_MENU_CONTROLS:
return "Basis menu besturing";
case MENU_ENUM_LABEL_VALUE_BASIC_MENU_CONTROLS_SCROLL_UP:
return "Omhoog Scrollen";
case MENU_ENUM_LABEL_VALUE_BASIC_MENU_CONTROLS_SCROLL_DOWN:
return "Omlaag Scrollen";
case MENU_ENUM_LABEL_VALUE_BASIC_MENU_CONTROLS_CONFIRM:
return "Bevestigen/OK";
case MENU_ENUM_LABEL_VALUE_BASIC_MENU_CONTROLS_BACK:
return "Terug";
case MENU_ENUM_LABEL_VALUE_BASIC_MENU_CONTROLS_START:
return "Reset";
case MENU_ENUM_LABEL_VALUE_BASIC_MENU_CONTROLS_INFO:
return "Info";
case MENU_ENUM_LABEL_VALUE_BASIC_MENU_CONTROLS_TOGGLE_MENU:
return "Menu Schakelaar";
case MENU_ENUM_LABEL_VALUE_BASIC_MENU_CONTROLS_QUIT:
return "Afsluiten";
case MENU_ENUM_LABEL_VALUE_BASIC_MENU_CONTROLS_TOGGLE_KEYBOARD:
return "Keyboard Toggle";
case MENU_ENUM_LABEL_VALUE_OPEN_ARCHIVE:
return "Open Archief als map";
case MENU_ENUM_LABEL_VALUE_LOAD_ARCHIVE:
return "Open Archief met Core";
case MENU_ENUM_LABEL_VALUE_INPUT_BACK_AS_MENU_TOGGLE_ENABLE:
return "Terug als Menu Schakelaar";
case MENU_ENUM_LABEL_VALUE_INPUT_MENU_ENUM_TOGGLE_GAMEPAD_COMBO:
return "Menu Schakelaar Gamepad Combo";
case MENU_ENUM_LABEL_VALUE_INPUT_OVERLAY_HIDE_IN_MENU:
return "Verberg Overlay In Menu";
case MENU_ENUM_LABEL_VALUE_LANG_POLISH:
return "Pools";
case MENU_ENUM_LABEL_VALUE_OVERLAY_AUTOLOAD_PREFERRED:
return "Laad geprefeerd overlay autom.";
case MENU_ENUM_LABEL_VALUE_UPDATE_CORE_INFO_FILES:
return "Update Core Info Bestanden";
case MENU_ENUM_LABEL_VALUE_DOWNLOAD_CORE_CONTENT:
return "Download Content";
case MENU_ENUM_LABEL_VALUE_SCAN_THIS_DIRECTORY:
return "<Scan Deze Map>";
case MENU_ENUM_LABEL_VALUE_SCAN_FILE:
return "Scan een Bestand";
case MENU_ENUM_LABEL_VALUE_SCAN_DIRECTORY:
return "Scan een Map";
case MENU_ENUM_LABEL_VALUE_ADD_CONTENT_LIST:
return "Content toevoegen";
case MENU_ENUM_LABEL_VALUE_INFORMATION_LIST:
return "Informatie";
case MENU_ENUM_LABEL_VALUE_USE_BUILTIN_PLAYER:
return "Gebruik Ingebouwde Media Speler";
case MENU_ENUM_LABEL_VALUE_CONTENT_SETTINGS:
return "Snelmenu";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_CRC32:
return "CRC32";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_MD5:
return "MD5";
case MENU_ENUM_LABEL_VALUE_LOAD_CONTENT_LIST:
return "Laad Content";
case MENU_ENUM_LABEL_VALUE_ASK_ARCHIVE:
return "Keuze";
case MENU_ENUM_LABEL_VALUE_PRIVACY_SETTINGS:
return "Privacy";
case MENU_ENUM_LABEL_VALUE_HORIZONTAL_MENU:
return "Horizontal Menu";
case MENU_ENUM_LABEL_VALUE_SETTINGS_TAB:
return "Instellingen";
case MENU_ENUM_LABEL_VALUE_PLAYLISTS_TAB:
return "Afspeellijsten";
case MENU_ENUM_LABEL_VALUE_HISTORY_TAB:
return "Geschiedenis";
case MENU_ENUM_LABEL_VALUE_NO_SETTINGS_FOUND:
return "Geen instellingen gevonden.";
case MENU_ENUM_LABEL_VALUE_NO_PERFORMANCE_COUNTERS:
return "Geen prestatie tellers.";
case MENU_ENUM_LABEL_VALUE_DRIVER_SETTINGS:
return "Driver";
case MENU_ENUM_LABEL_VALUE_CONFIGURATION_SETTINGS:
return "Configuratie";
case MENU_ENUM_LABEL_VALUE_CORE_SETTINGS:
return "Core";
case MENU_ENUM_LABEL_VALUE_VIDEO_SETTINGS:
return "Video";
case MENU_ENUM_LABEL_VALUE_LOGGING_SETTINGS:
return "Logging";
case MENU_ENUM_LABEL_VALUE_SAVING_SETTINGS:
return "Saving";
case MENU_ENUM_LABEL_VALUE_REWIND_SETTINGS:
return "Rewind";
case MENU_ENUM_LABEL_VALUE_SHADER:
return "Shader";
case MENU_ENUM_LABEL_VALUE_CHEAT:
return "Cheat";
case MENU_ENUM_LABEL_VALUE_USER:
return "Gebruiker";
case MENU_ENUM_LABEL_VALUE_SYSTEM_BGM_ENABLE:
return "Systeem BGM";
case MENU_ENUM_LABEL_VALUE_RETROPAD:
return "RetroPad";
case MENU_ENUM_LABEL_VALUE_RETROKEYBOARD:
return "RetroKeyboard";
case MENU_ENUM_LABEL_VALUE_AUDIO_BLOCK_FRAMES:
return "Block Frames";
case MENU_ENUM_LABEL_VALUE_INPUT_DESCRIPTOR_LABEL_SHOW:
return "Descriptie Labels Weergeven";
case MENU_ENUM_LABEL_VALUE_INPUT_DESCRIPTOR_HIDE_UNBOUND:
return "Verbergen Niet-gemapte Core Input Descripties";
case MENU_ENUM_LABEL_VALUE_VIDEO_FONT_ENABLE:
return "OSD Berichten Weergeven";
case MENU_ENUM_LABEL_VALUE_VIDEO_FONT_PATH:
return "OSD Berichten Font";
case MENU_ENUM_LABEL_VALUE_VIDEO_FONT_SIZE:
return "OSD Berichten Grootte";
case MENU_ENUM_LABEL_VALUE_VIDEO_MESSAGE_POS_X:
return "OSD Berichten X-as positie";
case MENU_ENUM_LABEL_VALUE_VIDEO_MESSAGE_POS_Y:
return "OSD Berichten Y-as positie";
case MENU_ENUM_LABEL_VALUE_VIDEO_SOFT_FILTER:
return "Soft Filter";
case MENU_ENUM_LABEL_VALUE_VIDEO_FILTER_FLICKER:
return "Flicker filter";
case MENU_ENUM_LABEL_VALUE_DIRECTORY_CONTENT:
return "<Content dir>";
case MENU_ENUM_LABEL_VALUE_UNKNOWN:
return "Onbekend";
case MENU_ENUM_LABEL_VALUE_DONT_CARE:
return "Onbelangrijk";
case MENU_ENUM_LABEL_VALUE_LINEAR:
return "Linear";
case MENU_ENUM_LABEL_VALUE_NEAREST:
return "Nearest";
case MENU_ENUM_LABEL_VALUE_DIRECTORY_DEFAULT:
return "<Standaard>";
case MENU_ENUM_LABEL_VALUE_DIRECTORY_NONE:
return "<Niets>";
case MENU_ENUM_LABEL_VALUE_NOT_AVAILABLE:
return "N.v.t";
case MENU_ENUM_LABEL_VALUE_INPUT_REMAPPING_DIRECTORY:
return "Invoer Remapping Map";
case MENU_ENUM_LABEL_VALUE_JOYPAD_AUTOCONFIG_DIR:
return "Invoerapparaten Autoconfig Map";
case MENU_ENUM_LABEL_VALUE_RECORDING_CONFIG_DIRECTORY:
return "Opname Config Map";
case MENU_ENUM_LABEL_VALUE_RECORDING_OUTPUT_DIRECTORY:
return "Opname Uitvoer Map";
case MENU_ENUM_LABEL_VALUE_SCREENSHOT_DIRECTORY:
return "Screenshot Map";
case MENU_ENUM_LABEL_VALUE_PLAYLIST_DIRECTORY:
return "Afspeellijsten Map";
case MENU_ENUM_LABEL_VALUE_SAVEFILE_DIRECTORY:
return "Savebestand Map";
case MENU_ENUM_LABEL_VALUE_SAVESTATE_DIRECTORY:
return "Savestate Map";
case MENU_ENUM_LABEL_VALUE_STDIN_CMD_ENABLE:
return "stdin Commandos";
case MENU_ENUM_LABEL_VALUE_VIDEO_DRIVER:
return "Video Driver";
case MENU_ENUM_LABEL_VALUE_RECORD_ENABLE:
return "Opname";
case MENU_ENUM_LABEL_VALUE_VIDEO_GPU_RECORD:
return "GPU Opname";
case MENU_ENUM_LABEL_VALUE_RECORD_PATH:
return "Uitvoer Bestand";
case MENU_ENUM_LABEL_VALUE_RECORD_USE_OUTPUT_DIRECTORY:
return "Gebruik uitvoer map";
case MENU_ENUM_LABEL_VALUE_RECORD_CONFIG:
return "Opname Configuratie";
case MENU_ENUM_LABEL_VALUE_VIDEO_POST_FILTER_RECORD:
return "Post filter opname activeren";
case MENU_ENUM_LABEL_VALUE_CORE_ASSETS_DIRECTORY:
return "Downloads Map";
case MENU_ENUM_LABEL_VALUE_ASSETS_DIRECTORY:
return "Assets Map";
case MENU_ENUM_LABEL_VALUE_DYNAMIC_WALLPAPERS_DIRECTORY:
return "Dynamische Wallpapers Map";
case MENU_ENUM_LABEL_VALUE_RGUI_BROWSER_DIRECTORY:
return "Bestandsbeheer Map";
case MENU_ENUM_LABEL_VALUE_RGUI_CONFIG_DIRECTORY:
return "Config Map";
case MENU_ENUM_LABEL_VALUE_LIBRETRO_INFO_PATH:
return "Core Info Map";
case MENU_ENUM_LABEL_VALUE_LIBRETRO_DIR_PATH:
return "Core Map";
case MENU_ENUM_LABEL_VALUE_CURSOR_DIRECTORY:
return "Cursor Map";
case MENU_ENUM_LABEL_VALUE_CONTENT_DATABASE_DIRECTORY:
return "Content Database Map";
case MENU_ENUM_LABEL_VALUE_SYSTEM_DIRECTORY:
return "Systeem/BIOS Map";
case MENU_ENUM_LABEL_VALUE_CHEAT_DATABASE_PATH:
return "Cheat Bestand Map";
case MENU_ENUM_LABEL_VALUE_CACHE_DIRECTORY:
return "Cache Map";
case MENU_ENUM_LABEL_VALUE_AUDIO_FILTER_DIR:
return "Audio Filter Map";
case MENU_ENUM_LABEL_VALUE_VIDEO_SHADER_DIR:
return "Video Shader Map";
case MENU_ENUM_LABEL_VALUE_VIDEO_FILTER_DIR:
return "Video Filter Map";
case MENU_ENUM_LABEL_VALUE_OVERLAY_DIRECTORY:
return "Overlay Map";
case MENU_ENUM_LABEL_VALUE_OSK_OVERLAY_DIRECTORY:
return "OSK Overlay Map";
case MENU_ENUM_LABEL_VALUE_NETPLAY_CLIENT_SWAP_INPUT:
return "Swap Netplay Input";
case MENU_ENUM_LABEL_VALUE_NETPLAY_SPECTATOR_MODE_ENABLE:
return "Netplay Spectator Activeren";
case MENU_ENUM_LABEL_VALUE_NETPLAY_IP_ADDRESS:
return "IP Adres";
case MENU_ENUM_LABEL_VALUE_NETPLAY_TCP_UDP_PORT:
return "Netplay TCP/UDP Poort";
case MENU_ENUM_LABEL_VALUE_NETPLAY_ENABLE:
return "Netplay Activeren";
case MENU_ENUM_LABEL_VALUE_NETPLAY_DELAY_FRAMES:
return "Netplay Vertraging Frames";
case MENU_ENUM_LABEL_VALUE_NETPLAY_MODE:
return "Netplay Client Activeren";
case MENU_ENUM_LABEL_VALUE_RGUI_SHOW_START_SCREEN:
return "Start Scherm Weergeven";
case MENU_ENUM_LABEL_VALUE_TITLE_COLOR:
return "Menu titel kleur";
case MENU_ENUM_LABEL_VALUE_ENTRY_HOVER_COLOR:
return "Menu entry hover kleur";
case MENU_ENUM_LABEL_VALUE_TIMEDATE_ENABLE:
return "Tijd/datum weergeven";
case MENU_ENUM_LABEL_VALUE_THREADED_DATA_RUNLOOP_ENABLE:
return "Threaded data runloop";
case MENU_ENUM_LABEL_VALUE_ENTRY_NORMAL_COLOR:
return "Menu entry normale kleur";
case MENU_ENUM_LABEL_VALUE_SHOW_ADVANCED_SETTINGS:
return "Geavanceerde instellingen weergeven";
case MENU_ENUM_LABEL_VALUE_MOUSE_ENABLE:
return "Muis Ondersteuning";
case MENU_ENUM_LABEL_VALUE_POINTER_ENABLE:
return "Touch Ondersteuning";
case MENU_ENUM_LABEL_VALUE_CORE_ENABLE:
return "Core naam weergeven";
case MENU_ENUM_LABEL_VALUE_DPI_OVERRIDE_ENABLE:
return "DPI Override activeren";
case MENU_ENUM_LABEL_VALUE_DPI_OVERRIDE_VALUE:
return "DPI Override";
case MENU_ENUM_LABEL_VALUE_SUSPEND_SCREENSAVER_ENABLE:
return "Onderbreek Screensaver";
case MENU_ENUM_LABEL_VALUE_VIDEO_DISABLE_COMPOSITION:
return "Desktop Compositie deactiveren";
case MENU_ENUM_LABEL_VALUE_PAUSE_NONACTIVE:
return "Laat niet in achtergrond draaien";
case MENU_ENUM_LABEL_VALUE_UI_COMPANION_START_ON_BOOT:
return "UI Companion Start Tijdens Boot";
case MENU_ENUM_LABEL_VALUE_UI_MENUBAR_ENABLE:
return "Menubalk";
case MENU_ENUM_LABEL_VALUE_ARCHIVE_MODE:
return "Archief Bestand Associatie";
case MENU_ENUM_LABEL_VALUE_NETWORK_CMD_ENABLE:
return "Netwerk Commandos";
case MENU_ENUM_LABEL_VALUE_NETWORK_CMD_PORT:
return "Netwerk Commandos Poort";
case MENU_ENUM_LABEL_VALUE_HISTORY_LIST_ENABLE:
return "Geschiedenislijst Activeren";
case MENU_ENUM_LABEL_VALUE_CONTENT_HISTORY_SIZE:
return "Geschiedenislijst grootte";
case MENU_ENUM_LABEL_VALUE_VIDEO_REFRESH_RATE_AUTO:
return "Geschatte Monitor Framerate";
case MENU_ENUM_LABEL_VALUE_DUMMY_ON_CORE_SHUTDOWN:
return "Dummy Tijdens Core Shutdown";
case MENU_ENUM_LABEL_VALUE_CORE_SET_SUPPORTS_NO_CONTENT_ENABLE:
return "Automatisch core opstarten";
case MENU_ENUM_LABEL_VALUE_FRAME_THROTTLE_ENABLE:
return "Beperk Maximale Afspeelsnelheid";
case MENU_ENUM_LABEL_VALUE_FASTFORWARD_RATIO:
return "Maximale Afspeelsnelheid";
case MENU_ENUM_LABEL_VALUE_AUTO_REMAPS_ENABLE:
return "Laad Remap Bestanden Automatisch";
case MENU_ENUM_LABEL_VALUE_SLOWMOTION_RATIO:
return "Slow-Motion Ratio";
case MENU_ENUM_LABEL_VALUE_CORE_SPECIFIC_CONFIG:
return "Configuratie Per-Core";
case MENU_ENUM_LABEL_VALUE_AUTO_OVERRIDES_ENABLE:
return "Laad Override Bestanden Automatisch";
case MENU_ENUM_LABEL_VALUE_CONFIG_SAVE_ON_EXIT:
return "Configuratie Opslaan Tijdens Afsluiten";
case MENU_ENUM_LABEL_VALUE_VIDEO_SMOOTH:
return "Hardware Bilinear Filtering";
case MENU_ENUM_LABEL_VALUE_VIDEO_GAMMA:
return "Video Gamma";
case MENU_ENUM_LABEL_VALUE_VIDEO_ALLOW_ROTATE:
return "Rotatie toestaan";
case MENU_ENUM_LABEL_VALUE_VIDEO_HARD_SYNC:
return "Harde GPU Synchronisatie";
case MENU_ENUM_LABEL_VALUE_VIDEO_SWAP_INTERVAL:
return "VSync Swap Interval";
case MENU_ENUM_LABEL_VALUE_VIDEO_VSYNC:
return "VSync";
case MENU_ENUM_LABEL_VALUE_VIDEO_THREADED:
return "Threaded Video";
case MENU_ENUM_LABEL_VALUE_VIDEO_ROTATION:
return "Rotatie";
case MENU_ENUM_LABEL_VALUE_VIDEO_GPU_SCREENSHOT:
return "GPU Screenshot Activeren";
case MENU_ENUM_LABEL_VALUE_VIDEO_CROP_OVERSCAN:
return "Overscan Afsnijden (Herladen vereist)";
case MENU_ENUM_LABEL_VALUE_VIDEO_ASPECT_RATIO_INDEX:
return "Beeldverhouding Index";
case MENU_ENUM_LABEL_VALUE_VIDEO_ASPECT_RATIO_AUTO:
return "Auto Beeldverhouding";
case MENU_ENUM_LABEL_VALUE_VIDEO_FORCE_ASPECT:
return "Forceer beeldverhouding";
case MENU_ENUM_LABEL_VALUE_VIDEO_REFRESH_RATE:
return "Refresh Rate";
case MENU_ENUM_LABEL_VALUE_VIDEO_FORCE_SRGB_DISABLE:
return "Handmatig sRGB FBO deactiveren";
case MENU_ENUM_LABEL_VALUE_VIDEO_WINDOWED_FULLSCREEN:
return "Windowed Fullscreen Mode"; /* TODO/FIXME */
case MENU_ENUM_LABEL_VALUE_PAL60_ENABLE:
return "PAL60 Mode Activeren";
case MENU_ENUM_LABEL_VALUE_VIDEO_VFILTER:
return "Deflicker"; /* TODO/FIXME */
case MENU_ENUM_LABEL_VALUE_VIDEO_VI_WIDTH:
return "VI Scherm Breedte Instellen";
case MENU_ENUM_LABEL_VALUE_VIDEO_BLACK_FRAME_INSERTION:
return "Zwarte Frame Injectie";
case MENU_ENUM_LABEL_VALUE_VIDEO_HARD_SYNC_FRAMES:
return "Harde GPU Sync Frames";
case MENU_ENUM_LABEL_VALUE_SORT_SAVEFILES_ENABLE:
return "Saves Sorteren In Map";
case MENU_ENUM_LABEL_VALUE_SORT_SAVESTATES_ENABLE:
return "Savestates Sorteren In Map";
case MENU_ENUM_LABEL_VALUE_VIDEO_FULLSCREEN:
return "Gebruik Fullscreen Mode";
case MENU_ENUM_LABEL_VALUE_VIDEO_SCALE:
return "Windowed Schalering";
case MENU_ENUM_LABEL_VALUE_VIDEO_SCALE_INTEGER:
return "Gehele schalering";
case MENU_ENUM_LABEL_VALUE_PERFCNT_ENABLE:
return "Prestatie Teller";
case MENU_ENUM_LABEL_VALUE_LIBRETRO_LOG_LEVEL:
return "Core Logging Niveau";
case MENU_ENUM_LABEL_VALUE_LOG_VERBOSITY:
return "Logging Uitgebreidheid";
case MENU_ENUM_LABEL_VALUE_SAVESTATE_AUTO_LOAD:
return "Automatisch State Loaden";
case MENU_ENUM_LABEL_VALUE_SAVESTATE_AUTO_INDEX:
return "Save State Automatische Index";
case MENU_ENUM_LABEL_VALUE_SAVESTATE_AUTO_SAVE:
return "Automatisch State Saven";
case MENU_ENUM_LABEL_VALUE_AUTOSAVE_INTERVAL:
return "SaveRAM Autosave Interval";
case MENU_ENUM_LABEL_VALUE_BLOCK_SRAM_OVERWRITE:
return "SaveRAM niet overschrijven tijdens laden van savestate";
case MENU_ENUM_LABEL_VALUE_VIDEO_SHARED_CONTEXT:
return "HW Shared Context Activeren";
case MENU_ENUM_LABEL_VALUE_RESTART_RETROARCH:
return "RetroArch Opnieuw Opstarten";
case MENU_ENUM_LABEL_VALUE_NETPLAY_NICKNAME:
return "Gebruikersnaam";
case MENU_ENUM_LABEL_VALUE_USER_LANGUAGE:
return "Taal";
case MENU_ENUM_LABEL_VALUE_CAMERA_ALLOW:
return "Camera Toestaan";
case MENU_ENUM_LABEL_VALUE_LOCATION_ALLOW:
return "Locatie Toestaan";
case MENU_ENUM_LABEL_VALUE_PAUSE_LIBRETRO:
return "Pauseer als menu op voorgrond is";
case MENU_ENUM_LABEL_VALUE_INPUT_OSK_OVERLAY_ENABLE:
return "Toetsenbord Overlay Weergeven";
case MENU_ENUM_LABEL_VALUE_INPUT_OVERLAY_ENABLE:
return "Overlay Weergeven";
case MENU_ENUM_LABEL_VALUE_VIDEO_MONITOR_INDEX:
return "Monitor Index";
case MENU_ENUM_LABEL_VALUE_VIDEO_FRAME_DELAY:
return "Frame Delay"; /* TODO/FIXME */
case MENU_ENUM_LABEL_VALUE_INPUT_DUTY_CYCLE:
return "Duty Cycle"; /* TODO/FIXME */
case MENU_ENUM_LABEL_VALUE_INPUT_TURBO_PERIOD:
return "Turbo Period"; /* TODO/FIXME */
case MENU_ENUM_LABEL_VALUE_INPUT_AXIS_THRESHOLD:
return "Invoer As Threshold"; /* TODO/FIXME */
case MENU_ENUM_LABEL_VALUE_INPUT_REMAP_BINDS_ENABLE:
return "Remap Binds Activeren";
case MENU_ENUM_LABEL_VALUE_INPUT_MAX_USERS:
return "Maximaal aantal gebruikers";
case MENU_ENUM_LABEL_VALUE_INPUT_AUTODETECT_ENABLE:
return "Autoconfiguratie Activeren";
case MENU_ENUM_LABEL_VALUE_AUDIO_OUTPUT_RATE:
return "Audio Uitvoer Frequentie (KHz)";
case MENU_ENUM_LABEL_VALUE_AUDIO_MAX_TIMING_SKEW:
return "Audio Maximale Timing Onevenredigheid";
case MENU_ENUM_LABEL_VALUE_CHEAT_NUM_PASSES:
return "Cheat Passes";
case MENU_ENUM_LABEL_VALUE_REMAP_FILE_SAVE_CORE:
return "Core Remap Bestand Opslaan";
case MENU_ENUM_LABEL_VALUE_REMAP_FILE_SAVE_GAME:
return "Game Remap Bestand Opslaan";
case MENU_ENUM_LABEL_VALUE_CHEAT_APPLY_CHANGES:
return "Cheat Instellingen Toepassen";
case MENU_ENUM_LABEL_VALUE_SHADER_APPLY_CHANGES:
return "Shader Instellingen Toepassen";
case MENU_ENUM_LABEL_VALUE_REWIND_ENABLE:
return "Rewind Activeren";
case MENU_ENUM_LABEL_VALUE_CONTENT_COLLECTION_LIST:
return "Selecteer uit verzameling";
case MENU_ENUM_LABEL_VALUE_DETECT_CORE_LIST:
return "Selecteer bestand en detecteer Core";
case MENU_ENUM_LABEL_VALUE_LOAD_CONTENT_HISTORY:
return "Laad Recent";
case MENU_ENUM_LABEL_VALUE_AUDIO_ENABLE:
return "Audio Activeren";
case MENU_ENUM_LABEL_VALUE_FPS_SHOW:
return "Framerate Weergeven";
case MENU_ENUM_LABEL_VALUE_AUDIO_MUTE:
return "Audio Mute"; /* TODO/FIXME */
case MENU_ENUM_LABEL_VALUE_AUDIO_VOLUME:
return "Audio Uitgangsniveau (dB)";
case MENU_ENUM_LABEL_VALUE_AUDIO_SYNC:
return "Audio Synchronizatie Activeren";
case MENU_ENUM_LABEL_VALUE_AUDIO_RATE_CONTROL_DELTA:
return "Audio Rate Control Delta"; /* TODO/FIXME */
case MENU_ENUM_LABEL_VALUE_VIDEO_SHADER_NUM_PASSES:
return "Shader Passes"; /* TODO/FIXME */
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_SHA1:
return "SHA1";
case MENU_ENUM_LABEL_VALUE_CONFIGURATIONS:
return "Laad Configuratie";
case MENU_ENUM_LABEL_VALUE_REWIND_GRANULARITY:
return "Rewind Granulariteit";
case MENU_ENUM_LABEL_VALUE_REMAP_FILE_LOAD:
return "Laad Remap Bestand";
case MENU_ENUM_LABEL_VALUE_CUSTOM_RATIO:
return "Handmatige beeldverhouding";
case MENU_ENUM_LABEL_VALUE_USE_THIS_DIRECTORY:
return "<Deze directory gebruiken>";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_START_CONTENT:
return "Content Opstarten";
case MENU_ENUM_LABEL_VALUE_DISK_OPTIONS:
return "Disk Beheer";
case MENU_ENUM_LABEL_VALUE_CORE_OPTIONS:
return "Opties";
case MENU_ENUM_LABEL_VALUE_CORE_CHEAT_OPTIONS:
return "Cheats";
case MENU_ENUM_LABEL_VALUE_CHEAT_FILE_LOAD:
return "Cheat Bestand Laden";
case MENU_ENUM_LABEL_VALUE_CHEAT_FILE_SAVE_AS:
return "Cheat Bestand Opslaan Als";
case MENU_ENUM_LABEL_VALUE_CORE_COUNTERS:
return "Core Prestatie Tellers";
case MENU_ENUM_LABEL_VALUE_TAKE_SCREENSHOT:
return "Maak Screenshot";
case MENU_ENUM_LABEL_VALUE_RESUME:
return "Hervatten";
case MENU_ENUM_LABEL_VALUE_DISK_INDEX:
return "Disk Index";
case MENU_ENUM_LABEL_VALUE_FRONTEND_COUNTERS:
return "Frontend Prestatie Tellers";
case MENU_ENUM_LABEL_VALUE_DISK_IMAGE_APPEND:
return "Disk Image Toevoegen";
case MENU_ENUM_LABEL_VALUE_DISK_CYCLE_TRAY_STATUS:
return "Disk Cycle Tray Status"; /* TODO/FIXME */
case MENU_ENUM_LABEL_VALUE_NO_PLAYLIST_ENTRIES_AVAILABLE:
return "Geen afspeellijst items beschikbaar.";
case MENU_ENUM_LABEL_VALUE_NO_CORE_INFORMATION_AVAILABLE:
return "Geen core informatie beschikbaar.";
case MENU_ENUM_LABEL_VALUE_NO_CORE_OPTIONS_AVAILABLE:
return "Geen core opties beschikbaar.";
case MENU_ENUM_LABEL_VALUE_NO_CORES_AVAILABLE:
return "Geen cores beschikbaar.";
case MENU_ENUM_LABEL_VALUE_NO_CORE:
return "Geen core";
case MENU_ENUM_LABEL_VALUE_DATABASE_MANAGER:
return "Databasebeheer";
case MENU_ENUM_LABEL_VALUE_CURSOR_MANAGER:
return "Cursorbeheer";
case MENU_ENUM_LABEL_VALUE_MAIN_MENU:
return "Hoofdmenu";
case MENU_ENUM_LABEL_VALUE_SETTINGS:
return "Instellingen";
case MENU_ENUM_LABEL_VALUE_QUIT_RETROARCH:
return "RetroArch Afsluiten";
case MENU_ENUM_LABEL_VALUE_HELP:
return "Help";
case MENU_ENUM_LABEL_VALUE_SAVE_NEW_CONFIG:
return "Nieuwe configuratie opslaan";
case MENU_ENUM_LABEL_VALUE_RESTART_CONTENT:
return "Herstart";
case MENU_ENUM_LABEL_VALUE_CORE_UPDATER_LIST:
return "Core Updater";
case MENU_ENUM_LABEL_VALUE_CORE_UPDATER_BUILDBOT_URL:
return "Buildbot Cores URL";
case MENU_ENUM_LABEL_VALUE_BUILDBOT_ASSETS_URL:
return "Buildbot Assets URL";
case MENU_ENUM_LABEL_VALUE_NAVIGATION_WRAPAROUND:
return "Navigatie Wrap-Around";
case MENU_ENUM_LABEL_VALUE_NAVIGATION_BROWSER_FILTER_SUPPORTED_EXTENSIONS_ENABLE:
return "Filter op ondersteunde extensies";
case MENU_ENUM_LABEL_VALUE_CORE_UPDATER_AUTO_EXTRACT_ARCHIVE:
return "Automatisch uitpakken van gedownloade archieven";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFORMATION:
return "Systeem Informatie";
case MENU_ENUM_LABEL_VALUE_ONLINE_UPDATER:
return "Online Updater";
case MENU_ENUM_LABEL_VALUE_CORE_INFORMATION:
return "Core Informatie";
case MENU_ENUM_LABEL_VALUE_DIRECTORY_NOT_FOUND:
return "Directory niet gevonden.";
case MENU_ENUM_LABEL_VALUE_NO_ITEMS:
return "Geen items.";
case MENU_ENUM_LABEL_VALUE_CORE_LIST:
return "Laad Core";
case MENU_ENUM_LABEL_VALUE_LOAD_CONTENT:
return "Selecteer bestand";
case MENU_ENUM_LABEL_VALUE_CLOSE_CONTENT:
return "Afsluiten";
case MENU_ENUM_LABEL_VALUE_MANAGEMENT:
return "Database";
case MENU_ENUM_LABEL_VALUE_SAVE_STATE:
return "Save State";
case MENU_ENUM_LABEL_VALUE_LOAD_STATE:
return "Laad State";
case MENU_ENUM_LABEL_VALUE_RESUME_CONTENT:
return "Hervatten";
case MENU_ENUM_LABEL_VALUE_INPUT_DRIVER:
return "Input Driver";
case MENU_ENUM_LABEL_VALUE_AUDIO_DRIVER:
return "Audio Driver";
case MENU_ENUM_LABEL_VALUE_JOYPAD_DRIVER:
return "Joypad Driver";
case MENU_ENUM_LABEL_VALUE_AUDIO_RESAMPLER_DRIVER:
return "Audio Resampler Driver";
case MENU_ENUM_LABEL_VALUE_RECORD_DRIVER:
return "Opname Driver";
case MENU_ENUM_LABEL_VALUE_MENU_DRIVER:
return "Menu Driver";
case MENU_ENUM_LABEL_VALUE_CAMERA_DRIVER:
return "Camera Driver";
case MENU_ENUM_LABEL_VALUE_LOCATION_DRIVER:
return "Locatie Driver";
case MENU_ENUM_LABEL_VALUE_UNABLE_TO_READ_COMPRESSED_FILE:
return "Fout opgetreden tijdens lezen van gecomprimeerd bestand.";
case MENU_ENUM_LABEL_VALUE_OVERLAY_SCALE:
return "Overlay Schalering";
case MENU_ENUM_LABEL_VALUE_OVERLAY_PRESET:
return "Overlay Preset";
case MENU_ENUM_LABEL_VALUE_AUDIO_LATENCY:
return "Audio Latentie (ms)";
case MENU_ENUM_LABEL_VALUE_AUDIO_DEVICE:
return "Audio Apparaat";
case MENU_ENUM_LABEL_VALUE_KEYBOARD_OVERLAY_PRESET:
return "Toetsenbord Overlay Preset";
case MENU_ENUM_LABEL_VALUE_OVERLAY_OPACITY:
return "Overlay Transparentie";
case MENU_ENUM_LABEL_VALUE_MENU_WALLPAPER:
return "Menu Wallpaper";
case MENU_ENUM_LABEL_VALUE_DYNAMIC_WALLPAPER:
return "Dynamic Wallpaper";
case MENU_ENUM_LABEL_VALUE_CORE_INPUT_REMAPPING_OPTIONS:
return "Besturing";
case MENU_ENUM_LABEL_VALUE_SHADER_OPTIONS:
return "Shaders";
case MENU_ENUM_LABEL_VALUE_VIDEO_SHADER_PARAMETERS:
return "Voorbeeldweergave Shader Parameters";
case MENU_ENUM_LABEL_VALUE_VIDEO_SHADER_PRESET_PARAMETERS:
return "Menu Shader Parameters";
case MENU_ENUM_LABEL_VALUE_VIDEO_SHADER_PRESET_SAVE_AS:
return "Shader Preset Opslaan Als";
case MENU_ENUM_LABEL_VALUE_NO_SHADER_PARAMETERS:
return "Geen shader parameters.";
case MENU_ENUM_LABEL_VALUE_VIDEO_SHADER_PRESET:
return "Laad Shader Preset";
case MENU_ENUM_LABEL_VALUE_VIDEO_FILTER:
return "Video Filter";
case MENU_ENUM_LABEL_VALUE_AUDIO_DSP_PLUGIN:
return "Audio DSP Plugin";
case MENU_ENUM_LABEL_VALUE_STARTING_DOWNLOAD:
return "Download starten: ";
case MENU_ENUM_LABEL_VALUE_SECONDS:
return "secondes";
case MENU_ENUM_LABEL_VALUE_OFF:
return "OFF";
case MENU_ENUM_LABEL_VALUE_ON:
return "ON";
case MENU_ENUM_LABEL_VALUE_UPDATE_ASSETS:
return "Update Assets";
case MENU_ENUM_LABEL_VALUE_UPDATE_CHEATS:
return "Update Cheats";
case MENU_ENUM_LABEL_VALUE_UPDATE_AUTOCONFIG_PROFILES:
return "Update Autoconfiguratie Profielen";
case MENU_ENUM_LABEL_VALUE_UPDATE_DATABASES:
return "Update Databases";
case MENU_ENUM_LABEL_VALUE_UPDATE_OVERLAYS:
return "Update Overlays";
case MENU_ENUM_LABEL_VALUE_UPDATE_CG_SHADERS:
return "Update Cg Shaders";
case MENU_ENUM_LABEL_VALUE_UPDATE_GLSL_SHADERS:
return "Update GLSL Shaders";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_CORE_NAME:
return "Core naam";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_CORE_LABEL:
return "Core label";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_SYSTEM_NAME:
return "Systeem naam";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_SYSTEM_MANUFACTURER:
return "Systeem fabrikant";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_CATEGORIES:
return "Categories"; /* TODO/FIXME - need accented characters here */
case MENU_ENUM_LABEL_VALUE_CORE_INFO_AUTHORS:
return "Auteur(s)";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_PERMISSIONS:
return "Permissies";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_LICENSES:
return "Licentie(s)";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_SUPPORTED_EXTENSIONS:
return "Ondersteunde extensies";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_FIRMWARE:
return "Firmware";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_CORE_NOTES:
return "Core opmerkingen";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_BUILD_DATE:
return "Build datum";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_GIT_VERSION:
return "Git versie";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_CPU_FEATURES:
return "CPU Features";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_FRONTEND_IDENTIFIER:
return "Frontend identificatie";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_FRONTEND_NAME:
return "Frontend naam";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_FRONTEND_OS:
return "Frontend OS";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_RETRORATING_LEVEL:
return "RetroRating level";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_POWER_SOURCE:
return "Energie bron";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_POWER_SOURCE_NO_SOURCE:
return "Geen bron";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_POWER_SOURCE_CHARGING:
return "Opladen";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_POWER_SOURCE_CHARGED:
return "Charged";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_POWER_SOURCE_DISCHARGING:
return "Discharging";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_VIDEO_CONTEXT_DRIVER:
return "Video context driver";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_DISPLAY_METRIC_MM_WIDTH:
return "Display metric breedte (mm)";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_DISPLAY_METRIC_MM_HEIGHT:
return "Display metric hoogte (mm)";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_DISPLAY_METRIC_DPI:
return "Display metric DPI";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_LIBRETRODB_SUPPORT:
return "LibretroDB ondersteuning";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OVERLAY_SUPPORT:
return "Overlay ondersteuning";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_COMMAND_IFACE_SUPPORT:
return "Command interface ondersteuning";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_NETWORK_COMMAND_IFACE_SUPPORT:
return "Network Command interface ondersteuning";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_COCOA_SUPPORT:
return "Cocoa ondersteuning";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_RPNG_SUPPORT:
return "PNG ondersteuning (RPNG)";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_SDL_SUPPORT:
return "SDL1.2 ondersteuning";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_SDL2_SUPPORT:
return "SDL2 ondersteuning";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OPENGL_SUPPORT:
return "OpenGL ondersteuning";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OPENGLES_SUPPORT:
return "OpenGL ES ondersteuning";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_THREADING_SUPPORT:
return "Threading ondersteuning";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_KMS_SUPPORT:
return "KMS/EGL ondersteuning";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_UDEV_SUPPORT:
return "Udev ondersteuning";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OPENVG_SUPPORT:
return "OpenVG ondersteuning";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_EGL_SUPPORT:
return "EGL ondersteuning";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_X11_SUPPORT:
return "X11 ondersteuning";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_WAYLAND_SUPPORT:
return "Wayland ondersteuning";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_XVIDEO_SUPPORT:
return "XVideo ondersteuning";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_ALSA_SUPPORT:
return "ALSA ondersteuning";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OSS_SUPPORT:
return "OSS ondersteuning";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OPENAL_SUPPORT:
return "OpenAL ondersteuning";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OPENSL_SUPPORT:
return "OpenSL ondersteuning";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_RSOUND_SUPPORT:
return "RSound ondersteuning";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_ROARAUDIO_SUPPORT:
return "RoarAudio ondersteuning";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_JACK_SUPPORT:
return "JACK ondersteuning";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_PULSEAUDIO_SUPPORT:
return "PulseAudio ondersteuning";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_DSOUND_SUPPORT:
return "DirectSound ondersteuning";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_XAUDIO2_SUPPORT:
return "XAudio2 ondersteuning";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_ZLIB_SUPPORT:
return "Zlib ondersteuning";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_7ZIP_SUPPORT:
return "7zip ondersteuning";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_DYLIB_SUPPORT:
return "Dynamic library ondersteuning";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_CG_SUPPORT:
return "Cg ondersteuning";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_GLSL_SUPPORT:
return "GLSL ondersteuning";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_HLSL_SUPPORT:
return "HLSL ondersteuning";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_LIBXML2_SUPPORT:
return "libxml2 XML parsing ondersteuning";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_SDL_IMAGE_SUPPORT:
return "SDL afbeeldingen ondersteuning";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_FBO_SUPPORT:
return "OpenGL/Direct3D render-to-texture (multi-pass shaders) ondersteuning";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_FFMPEG_SUPPORT:
return "FFmpeg ondersteuning";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_CORETEXT_SUPPORT:
return "CoreText ondersteuning";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_FREETYPE_SUPPORT:
return "FreeType ondersteuning";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_NETPLAY_SUPPORT:
return "Netplay (peer-to-peer) ondersteuning";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_PYTHON_SUPPORT:
return "Python (script ondersteuning in shaders) ondersteuning";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_V4L2_SUPPORT:
return "Video4Linux2 ondersteuning";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_LIBUSB_SUPPORT:
return "Libusb ondersteuning";
case MENU_ENUM_LABEL_VALUE_YES:
return "Ja";
case MENU_ENUM_LABEL_VALUE_NO:
return "Nee";
case MENU_ENUM_LABEL_VALUE_SCREEN_RESOLUTION:
return "Scherm Resolutie";
case MENU_ENUM_LABEL_VALUE_BACK:
return "TERUG";
case MENU_ENUM_LABEL_VALUE_DISABLED:
return "Uitgeschakeld";
case MENU_ENUM_LABEL_VALUE_PORT:
return "Poort";
case MENU_ENUM_LABEL_VALUE_NONE:
return "Geen";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_DEVELOPER:
return "Ontwikkelaar";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_PUBLISHER:
return "Uitgever";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_DESCRIPTION:
return "Omschrijving";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_NAME:
return "Naam";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_ORIGIN:
return "Afkomst";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_FRANCHISE:
return "Franchise";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_RELEASE_MONTH:
return "Release datum maand";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_RELEASE_YEAR:
return "Release datum jaar";
case MENU_ENUM_LABEL_VALUE_TRUE:
return "Waar";
case MENU_ENUM_LABEL_VALUE_FALSE:
return "Niet waar";
case MENU_ENUM_LABEL_VALUE_MISSING:
return "Ontbrekend";
case MENU_ENUM_LABEL_VALUE_PRESENT:
return "Aanwezig";
case MENU_ENUM_LABEL_VALUE_OPTIONAL:
return "Optioneel";
case MENU_ENUM_LABEL_VALUE_REQUIRED:
return "Vereist";
case MENU_ENUM_LABEL_VALUE_STATUS:
return "Status";
case MENU_ENUM_LABEL_VALUE_AUDIO_SETTINGS:
return "Geluid";
case MENU_ENUM_LABEL_VALUE_INPUT_SETTINGS:
return "Invoer";
case MENU_ENUM_LABEL_VALUE_ONSCREEN_DISPLAY_SETTINGS:
return "Onscreen Weergave";
case MENU_ENUM_LABEL_VALUE_OVERLAY_SETTINGS:
return "Onscreen Overlay";
case MENU_ENUM_LABEL_VALUE_MENU_SETTINGS:
return "Menu";
case MENU_ENUM_LABEL_VALUE_MULTIMEDIA_SETTINGS:
return "Multimedia";
case MENU_ENUM_LABEL_VALUE_UI_SETTINGS:
return "Gebruikersinterface";
case MENU_ENUM_LABEL_VALUE_MENU_FILE_BROWSER_SETTINGS:
return "Menu Bestandsbeheer";
case MENU_ENUM_LABEL_VALUE_CORE_UPDATER_SETTINGS:
return "Updater";
case MENU_ENUM_LABEL_VALUE_NETWORK_SETTINGS:
return "Netwerk";
case MENU_ENUM_LABEL_VALUE_PLAYLIST_SETTINGS:
return "Playlist";
case MENU_ENUM_LABEL_VALUE_USER_SETTINGS:
return "Gebruiker";
case MENU_ENUM_LABEL_VALUE_DIRECTORY_SETTINGS:
return "Mappen";
case MENU_ENUM_LABEL_VALUE_RECORDING_SETTINGS:
return "Opname";
case MENU_ENUM_LABEL_VALUE_NO_INFORMATION_AVAILABLE:
return "Informatie is niet beschikbaar.";
case MENU_ENUM_LABEL_VALUE_INPUT_USER_BINDS:
return "Invoer Gebruiker %u Binds";
case MENU_ENUM_LABEL_VALUE_LANG_ENGLISH:
return "Engels";
case MENU_ENUM_LABEL_VALUE_LANG_JAPANESE:
return "Japans";
case MENU_ENUM_LABEL_VALUE_LANG_FRENCH:
return "Frans";
case MENU_ENUM_LABEL_VALUE_LANG_SPANISH:
return "Spaans";
case MENU_ENUM_LABEL_VALUE_LANG_GERMAN:
return "Duits";
case MENU_ENUM_LABEL_VALUE_LANG_ITALIAN:
return "Italiaans";
case MENU_ENUM_LABEL_VALUE_LANG_DUTCH:
return "Nederlands";
case MENU_ENUM_LABEL_VALUE_LANG_PORTUGUESE:
return "Portugees";
case MENU_ENUM_LABEL_VALUE_LANG_RUSSIAN:
return "Russisch";
case MENU_ENUM_LABEL_VALUE_LANG_KOREAN:
return "Koreaans";
case MENU_ENUM_LABEL_VALUE_LANG_CHINESE_TRADITIONAL:
return "Chinees (Traditioneel)";
case MENU_ENUM_LABEL_VALUE_LANG_CHINESE_SIMPLIFIED:
return "Chinees (Gesimplificeerd)";
case MENU_ENUM_LABEL_VALUE_LANG_ESPERANTO:
return "Esperanto";
case MENU_ENUM_LABEL_VALUE_LEFT_ANALOG:
return "Linkse Analog";
case MENU_ENUM_LABEL_VALUE_RIGHT_ANALOG:
return "Rechtse Analog";
case MENU_ENUM_LABEL_VALUE_INPUT_HOTKEY_BINDS:
return "Invoer Hotkey Binds";
case MENU_ENUM_LABEL_VALUE_FRAME_THROTTLE_SETTINGS:
return "Frame Throttle";
case MENU_ENUM_LABEL_VALUE_SEARCH:
return "Zoeken:";
default:
break;
}

View File

@ -12,9 +12,18 @@
* You should have received a copy of the GNU General Public License along with RetroArch.
* If not, see <http://www.gnu.org/licenses/>.
*/
#include <stdint.h>
#include <string.h>
#include "../msg_hash.h"
/* IMPORTANT:
* For non-english characters to work without proper unicode support,
* we need this file to be encoded in ISO 8859-2, not UTF-8.
* If you save this file as UTF-8, you'll break non-english characters
* (e.g. German "Umlauts" and Portugese diacritics).
*/
const char *msg_hash_to_str_pl(enum msg_hash_enums msg)
{
switch (msg)
@ -181,6 +190,824 @@ const char *msg_hash_to_str_pl(enum msg_hash_enums msg)
return "Przewijanie.";
case MSG_REWIND_REACHED_END:
return "W buforze przewijania nie ma więcej danych.";
case MENU_ENUM_LABEL_VALUE_OVERLAY_AUTOLOAD_PREFERRED:
return "Automatycznie wczytaj preferowan± nak³adkê";
case MENU_ENUM_LABEL_VALUE_UPDATE_CORE_INFO_FILES:
return "Aktualizuj pliki informacji o rdzeniach";
case MENU_ENUM_LABEL_VALUE_DOWNLOAD_CORE_CONTENT:
return "Pobierz tre¶ci";
case MENU_ENUM_LABEL_VALUE_SCAN_THIS_DIRECTORY:
return "<Przeszukaj ten katalog>";
case MENU_ENUM_LABEL_VALUE_SCAN_FILE:
return "Skanuj plik";
case MENU_ENUM_LABEL_VALUE_SCAN_DIRECTORY:
return "Przeszukaj katalog";
case MENU_ENUM_LABEL_VALUE_ADD_CONTENT_LIST:
return "Dodaj tre¶æ";
case MENU_ENUM_LABEL_VALUE_INFORMATION_LIST:
return "Informacje";
case MENU_ENUM_LABEL_VALUE_USE_BUILTIN_PLAYER:
return "U¿yj wbudowanego odtwarzacza mediów";
case MENU_ENUM_LABEL_VALUE_CONTENT_SETTINGS:
return "Szybkie menu";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_CRC32:
return "CRC32";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_MD5:
return "MD5";
case MENU_ENUM_LABEL_VALUE_LOAD_CONTENT_LIST:
return "Wczytaj tre¶æ";
case MENU_ENUM_LABEL_VALUE_LOAD_ARCHIVE:
return "Wczytaj archiwum";
case MENU_ENUM_LABEL_VALUE_OPEN_ARCHIVE:
return "Otwórz archiwum";
case MENU_ENUM_LABEL_VALUE_ASK_ARCHIVE:
return "Pytaj";
case MENU_ENUM_LABEL_VALUE_PRIVACY_SETTINGS:
return "Ustawienia prywatno¶ci";
case MENU_ENUM_LABEL_VALUE_HORIZONTAL_MENU: /* Don't change. Breaks everything. (Would be: "Menu poziome") */
return "Horizontal Menu";
case MENU_ENUM_LABEL_VALUE_NO_SETTINGS_FOUND:
return "Nie znaleziono ustawieñ.";
case MENU_ENUM_LABEL_VALUE_NO_PERFORMANCE_COUNTERS:
return "Brak liczników wydajno¶ci.";
case MENU_ENUM_LABEL_VALUE_DRIVER_SETTINGS:
return "Ustawienia kontrolerów";
case MENU_ENUM_LABEL_VALUE_CONFIGURATION_SETTINGS:
return "Ustawienia konfiguracji";
case MENU_ENUM_LABEL_VALUE_CORE_SETTINGS:
return "Ustawienia rdzenia";
case MENU_ENUM_LABEL_VALUE_VIDEO_SETTINGS:
return "Ustawienia wideo";
case MENU_ENUM_LABEL_VALUE_LOGGING_SETTINGS:
return "Ustawienia logowania";
case MENU_ENUM_LABEL_VALUE_SAVING_SETTINGS:
return "Ustawienia zapisywania";
case MENU_ENUM_LABEL_VALUE_REWIND_SETTINGS:
return "Ustawienia przewijania";
case MENU_ENUM_LABEL_VALUE_SHADER:
return "Shader";
case MENU_ENUM_LABEL_VALUE_CHEAT:
return "Cheat";
case MENU_ENUM_LABEL_VALUE_USER:
return "U¿ytkownik";
case MENU_ENUM_LABEL_VALUE_SYSTEM_BGM_ENABLE:
return "W³±cz BGM systemu";
case MENU_ENUM_LABEL_VALUE_RETROPAD:
return "RetroPad";
case MENU_ENUM_LABEL_VALUE_RETROKEYBOARD:
return "RetroKeyboard";
case MENU_ENUM_LABEL_VALUE_AUDIO_BLOCK_FRAMES:
return "Block Frames";
case MENU_ENUM_LABEL_VALUE_INPUT_DESCRIPTOR_LABEL_SHOW:
return "Wy¶wietl opisy przycisków dla tego rdzenia"; /* UPDATE/FIXME */
case MENU_ENUM_LABEL_VALUE_INPUT_DESCRIPTOR_HIDE_UNBOUND:
return "Ukryj nieprzypisane przyciski";
case MENU_ENUM_LABEL_VALUE_VIDEO_FONT_ENABLE:
return "Wy¶wietlaj wiadomo¶ci OSD";
case MENU_ENUM_LABEL_VALUE_VIDEO_FONT_PATH:
return "Czcionka wiadomo¶ci OSD";
case MENU_ENUM_LABEL_VALUE_VIDEO_FONT_SIZE:
return "Rozmiar wiadomo¶ci OSD";
case MENU_ENUM_LABEL_VALUE_VIDEO_MESSAGE_POS_X:
return "Wspó³rzêdna X dla wiadomo¶ci OSD";
case MENU_ENUM_LABEL_VALUE_VIDEO_MESSAGE_POS_Y:
return "Wspó³rzêdna Y dla wiadomo¶ci OSD";
case MENU_ENUM_LABEL_VALUE_VIDEO_SOFT_FILTER:
return "W³±cz filtr programowy";
case MENU_ENUM_LABEL_VALUE_VIDEO_FILTER_FLICKER:
return "Filtr migotania";
case MENU_ENUM_LABEL_VALUE_DIRECTORY_CONTENT:
return "<Katalog tre¶ci>";
case MENU_ENUM_LABEL_VALUE_UNKNOWN:
return "Nieznane";
case MENU_ENUM_LABEL_VALUE_DONT_CARE:
return "Bez znaczenia";
case MENU_ENUM_LABEL_VALUE_LINEAR:
return "Liniowe";
case MENU_ENUM_LABEL_VALUE_NEAREST:
return "Najbli¿sze";
case MENU_ENUM_LABEL_VALUE_DIRECTORY_DEFAULT:
return "<Domy¶lny>";
case MENU_ENUM_LABEL_VALUE_DIRECTORY_NONE:
return "<¯aden>";
case MENU_ENUM_LABEL_VALUE_NOT_AVAILABLE:
return "B/D";
case MENU_ENUM_LABEL_VALUE_INPUT_REMAPPING_DIRECTORY:
return "Katalog plików remapowania";
case MENU_ENUM_LABEL_VALUE_JOYPAD_AUTOCONFIG_DIR:
return "Katalog autokonfiguracji kontrolerów gier";
case MENU_ENUM_LABEL_VALUE_RECORDING_CONFIG_DIRECTORY:
return "Katalog konfiguracji nagrywania";
case MENU_ENUM_LABEL_VALUE_RECORDING_OUTPUT_DIRECTORY:
return "Katalog wyj¶ciowy nagrywania";
case MENU_ENUM_LABEL_VALUE_SCREENSHOT_DIRECTORY:
return "Katalog zrzutów";
case MENU_ENUM_LABEL_VALUE_PLAYLIST_DIRECTORY:
return "Katalog historii";
case MENU_ENUM_LABEL_VALUE_SAVEFILE_DIRECTORY:
return "Katalog zapisów tre¶ci";
case MENU_ENUM_LABEL_VALUE_SAVESTATE_DIRECTORY:
return "Katalog zapisanych stanów";
case MENU_ENUM_LABEL_VALUE_STDIN_CMD_ENABLE:
return "Komendy stdin";
case MENU_ENUM_LABEL_VALUE_VIDEO_DRIVER:
return "Kontroler wideo";
case MENU_ENUM_LABEL_VALUE_RECORD_ENABLE:
return "W³±cz nagrywanie";
case MENU_ENUM_LABEL_VALUE_VIDEO_GPU_RECORD:
return "W³±cz nagrywanie z u¿yciem GPU";
case MENU_ENUM_LABEL_VALUE_RECORD_PATH: /* FIXME/UPDATE */
return "¦cie¿ka nagrywania";
case MENU_ENUM_LABEL_VALUE_RECORD_USE_OUTPUT_DIRECTORY:
return "U¿ywaj katalogu wyj¶ciowego nagrywania";
case MENU_ENUM_LABEL_VALUE_RECORD_CONFIG:
return "Konfiguracja nagrywania";
case MENU_ENUM_LABEL_VALUE_VIDEO_POST_FILTER_RECORD:
return "Nagrywaj wraz z zaaplikowanymi filtrami";
case MENU_ENUM_LABEL_VALUE_CORE_ASSETS_DIRECTORY:
return "Katalog pobranych";
case MENU_ENUM_LABEL_VALUE_ASSETS_DIRECTORY:
return "Katalog assetów";
case MENU_ENUM_LABEL_VALUE_DYNAMIC_WALLPAPERS_DIRECTORY:
return "Katalog dynamicznych tapet";
case MENU_ENUM_LABEL_VALUE_RGUI_BROWSER_DIRECTORY:
return "Katalog przegl±darki";
case MENU_ENUM_LABEL_VALUE_RGUI_CONFIG_DIRECTORY:
return "Katalog zapisanych konfiguracji";
case MENU_ENUM_LABEL_VALUE_LIBRETRO_INFO_PATH:
return "Katalog informacji o rdzeniach";
case MENU_ENUM_LABEL_VALUE_LIBRETRO_DIR_PATH:
return "Katalog rdzeni";
case MENU_ENUM_LABEL_VALUE_CURSOR_DIRECTORY:
return "Katalog z kursorami";
case MENU_ENUM_LABEL_VALUE_CONTENT_DATABASE_DIRECTORY:
return "Katalog bazy danych tre¶ci";
case MENU_ENUM_LABEL_VALUE_SYSTEM_DIRECTORY:
return "Katalog systemu";
case MENU_ENUM_LABEL_VALUE_CHEAT_DATABASE_PATH:
return "Katalog z plikami cheatów";
case MENU_ENUM_LABEL_VALUE_CACHE_DIRECTORY: /* UPDATE/FIXME */
return "Katalog do wypakowywania archiwów";
case MENU_ENUM_LABEL_VALUE_AUDIO_FILTER_DIR:
return "Katalog filtrów audio";
case MENU_ENUM_LABEL_VALUE_VIDEO_SHADER_DIR:
return "Katalog shaderów";
case MENU_ENUM_LABEL_VALUE_VIDEO_FILTER_DIR:
return "Katalog filtrów wideo";
case MENU_ENUM_LABEL_VALUE_OVERLAY_DIRECTORY:
return "Katalog nak³adek";
case MENU_ENUM_LABEL_VALUE_OSK_OVERLAY_DIRECTORY:
return "Katalog klawiatur ekranowych";
case MENU_ENUM_LABEL_VALUE_NETPLAY_CLIENT_SWAP_INPUT:
return "Zamieñ kontrolery w grze sieciowej";
case MENU_ENUM_LABEL_VALUE_NETPLAY_SPECTATOR_MODE_ENABLE:
return "Tryb obserwatora gry sieciowej";
case MENU_ENUM_LABEL_VALUE_NETPLAY_IP_ADDRESS:
return "Adres IP";
case MENU_ENUM_LABEL_VALUE_NETPLAY_TCP_UDP_PORT:
return "Port TCP/UDP gry sieciowej";
case MENU_ENUM_LABEL_VALUE_NETPLAY_ENABLE:
return "W³±cz grê sieciow±";
case MENU_ENUM_LABEL_VALUE_NETPLAY_DELAY_FRAMES:
return "Opóxnione klatki w grze sieciowej";
case MENU_ENUM_LABEL_VALUE_NETPLAY_MODE:
return "Tryb klienta gry sieciowej";
case MENU_ENUM_LABEL_VALUE_RGUI_SHOW_START_SCREEN:
return "Pokazuj ekran startowy";
case MENU_ENUM_LABEL_VALUE_TITLE_COLOR:
return "Kolor tytu³u menu";
case MENU_ENUM_LABEL_VALUE_ENTRY_HOVER_COLOR:
return "Kolor zaznaczonego elementu menu";
case MENU_ENUM_LABEL_VALUE_TIMEDATE_ENABLE:
return "Wy¶wietl czas/datê";
case MENU_ENUM_LABEL_VALUE_THREADED_DATA_RUNLOOP_ENABLE:
return "Osobny w±tek odbierania danych";
case MENU_ENUM_LABEL_VALUE_ENTRY_NORMAL_COLOR:
return "Zwyk³y kolor elementu menu";
case MENU_ENUM_LABEL_VALUE_SHOW_ADVANCED_SETTINGS:
return "Poka¿ zaawansowane ustawienia";
case MENU_ENUM_LABEL_VALUE_MOUSE_ENABLE:
return "Obs³uga myszy";
case MENU_ENUM_LABEL_VALUE_POINTER_ENABLE:
return "Obs³uga dotyku";
case MENU_ENUM_LABEL_VALUE_CORE_ENABLE:
return "Wy¶wietlaj nazwê rdzenia";
case MENU_ENUM_LABEL_VALUE_DPI_OVERRIDE_ENABLE:
return "Pomiñ wykryte DPI";
case MENU_ENUM_LABEL_VALUE_DPI_OVERRIDE_VALUE:
return "W³asne DPI";
case MENU_ENUM_LABEL_VALUE_SUSPEND_SCREENSAVER_ENABLE:
return "Wstrzymaj wygaszacz";
case MENU_ENUM_LABEL_VALUE_VIDEO_DISABLE_COMPOSITION:
return "Wy³±cz efekty kompozycji pulpitu";
case MENU_ENUM_LABEL_VALUE_PAUSE_NONACTIVE:
return "Wstrzymaj gdy w tle";
case MENU_ENUM_LABEL_VALUE_UI_COMPANION_START_ON_BOOT:
return "UI Companion Start On Boot";
case MENU_ENUM_LABEL_VALUE_UI_MENUBAR_ENABLE:
return "Pasek menu";
case MENU_ENUM_LABEL_VALUE_ARCHIVE_MODE:
return "Archive File Assocation Action";
case MENU_ENUM_LABEL_VALUE_NETWORK_CMD_ENABLE:
return "Komendy sieciowe";
case MENU_ENUM_LABEL_VALUE_NETWORK_CMD_PORT:
return "Port dla komend sieciowych";
case MENU_ENUM_LABEL_VALUE_HISTORY_LIST_ENABLE:
return "W³±cz historiê tre¶ci";
case MENU_ENUM_LABEL_VALUE_CONTENT_HISTORY_SIZE:
return "Rozmiar historii tre¶ci";
case MENU_ENUM_LABEL_VALUE_VIDEO_REFRESH_RATE_AUTO:
return "Szacowana czêstotliwo¶æ od¶wie¿ania monitora";
case MENU_ENUM_LABEL_VALUE_DUMMY_ON_CORE_SHUTDOWN:
return "Atrapa rdzenia przy zatrzymaniu rdzenia";
case MENU_ENUM_LABEL_VALUE_CORE_SET_SUPPORTS_NO_CONTENT_ENABLE: /* TODO/FIXME */
return "Nie uruchamiaj rdzenia automatycznie";
case MENU_ENUM_LABEL_VALUE_FRAME_THROTTLE_ENABLE:
return "Limituj maksymaln± szybko¶æ dzia³ania";
case MENU_ENUM_LABEL_VALUE_FASTFORWARD_RATIO:
return "Maksymalna szybko¶æ dzia³ania";
case MENU_ENUM_LABEL_VALUE_AUTO_REMAPS_ENABLE:
return "Automatycznie wczytuj pliki remapowania";
case MENU_ENUM_LABEL_VALUE_SLOWMOTION_RATIO:
return "Wspó³czynnik spowolnienia";
case MENU_ENUM_LABEL_VALUE_CORE_SPECIFIC_CONFIG:
return "Osobna konfiguracja dla ka¿dego rdzenia";
case MENU_ENUM_LABEL_VALUE_AUTO_OVERRIDES_ENABLE:
return "Load Override Files Automatically"; /* this one's rather complicated */
case MENU_ENUM_LABEL_VALUE_CONFIG_SAVE_ON_EXIT:
return "Zapisz konfiguracjê przy wyj¶ciu";
case MENU_ENUM_LABEL_VALUE_VIDEO_SMOOTH:
return "Sprzêtowe filtrowanie dwuliniowe";
case MENU_ENUM_LABEL_VALUE_VIDEO_GAMMA:
return "Gamma wideo";
case MENU_ENUM_LABEL_VALUE_VIDEO_ALLOW_ROTATE:
return "Zezwól na obrót";
case MENU_ENUM_LABEL_VALUE_VIDEO_HARD_SYNC:
return "¦cis³a synchronizacja GPU";
case MENU_ENUM_LABEL_VALUE_VIDEO_SWAP_INTERVAL:
return "VSync Swap Interval";
case MENU_ENUM_LABEL_VALUE_VIDEO_VSYNC:
return "Synchronizacja pionowa";
case MENU_ENUM_LABEL_VALUE_VIDEO_THREADED:
return "Osobny w±tek wideo";
case MENU_ENUM_LABEL_VALUE_VIDEO_ROTATION:
return "Obrót";
case MENU_ENUM_LABEL_VALUE_VIDEO_GPU_SCREENSHOT:
return "Wykonuj zrzuty ekranu z wykorzystaniem GPU";
case MENU_ENUM_LABEL_VALUE_VIDEO_CROP_OVERSCAN:
return "Wytnij overscan (restart)";
case MENU_ENUM_LABEL_VALUE_VIDEO_ASPECT_RATIO_INDEX:
return "Indeks wspó³czynnika proporcji";
case MENU_ENUM_LABEL_VALUE_VIDEO_ASPECT_RATIO_AUTO:
return "Auto wspó³czynnik proporcji";
case MENU_ENUM_LABEL_VALUE_VIDEO_FORCE_ASPECT:
return "Wymu¶ wspó³czynnik proporcji";
case MENU_ENUM_LABEL_VALUE_VIDEO_REFRESH_RATE:
return "Czêstotliwo¶æ od¶wie¿ania";
case MENU_ENUM_LABEL_VALUE_VIDEO_FORCE_SRGB_DISABLE:
return "Wymu¶ wy³±czenie sRGB FBO";
case MENU_ENUM_LABEL_VALUE_VIDEO_WINDOWED_FULLSCREEN:
return "Tryb pe³nego ekranu w oknie";
case MENU_ENUM_LABEL_VALUE_PAL60_ENABLE:
return "U¿yj trybu PAL60";
case MENU_ENUM_LABEL_VALUE_VIDEO_VFILTER:
return "Redukcja migotania";
case MENU_ENUM_LABEL_VALUE_VIDEO_VI_WIDTH:
return "Set VI Screen Width";
case MENU_ENUM_LABEL_VALUE_VIDEO_BLACK_FRAME_INSERTION:
return "Wstawiaj czarne klatki";
case MENU_ENUM_LABEL_VALUE_VIDEO_HARD_SYNC_FRAMES:
return "Hard GPU Sync Frames";
case MENU_ENUM_LABEL_VALUE_SORT_SAVEFILES_ENABLE:
return "Sortuj zapisy w folderach";
case MENU_ENUM_LABEL_VALUE_SORT_SAVESTATES_ENABLE:
return "Sortuj zapisane stany w folderach";
case MENU_ENUM_LABEL_VALUE_VIDEO_FULLSCREEN:
return "Pe³ny ekran";
case MENU_ENUM_LABEL_VALUE_VIDEO_SCALE:
return "Skala w oknie";
case MENU_ENUM_LABEL_VALUE_VIDEO_SCALE_INTEGER:
return "Skaluj w liczbach ca³kowitych";
case MENU_ENUM_LABEL_VALUE_PERFCNT_ENABLE:
return "Liczniki wydajno¶ci";
case MENU_ENUM_LABEL_VALUE_LIBRETRO_LOG_LEVEL:
return "Poziom logowania rdzenia";
case MENU_ENUM_LABEL_VALUE_LOG_VERBOSITY:
return "Szczegó³owo¶æ logowania";
case MENU_ENUM_LABEL_VALUE_SAVESTATE_AUTO_LOAD:
return "Automatyczne wczytywanie stanu";
case MENU_ENUM_LABEL_VALUE_SAVESTATE_AUTO_INDEX:
return "Indeks automatycznie zapisywanego stanu";
case MENU_ENUM_LABEL_VALUE_SAVESTATE_AUTO_SAVE:
return "Automatyczny zapis stanu";
case MENU_ENUM_LABEL_VALUE_AUTOSAVE_INTERVAL:
return "Czêstotliwo¶æ automatycznego zapisu SaveRAM";
case MENU_ENUM_LABEL_VALUE_BLOCK_SRAM_OVERWRITE:
return "Nie nadpisuj SaveRAM przy wczytywaniu stanu";
case MENU_ENUM_LABEL_VALUE_VIDEO_SHARED_CONTEXT:
return "HW Shared Context Enable";
case MENU_ENUM_LABEL_VALUE_RESTART_RETROARCH:
return "Uruchom ponownie RetroArch";
case MENU_ENUM_LABEL_VALUE_NETPLAY_NICKNAME:
return "Nazwa u¿ytkownika";
case MENU_ENUM_LABEL_VALUE_USER_LANGUAGE:
return "Jêzyk";
case MENU_ENUM_LABEL_VALUE_CAMERA_ALLOW:
return "Zezwalaj na dostêp do kamerki";
case MENU_ENUM_LABEL_VALUE_LOCATION_ALLOW:
return "Zezwalaj na dostêp do lokalizacji";
case MENU_ENUM_LABEL_VALUE_PAUSE_LIBRETRO:
return "Pauzuj przy wej¶ciu do menu";
case MENU_ENUM_LABEL_VALUE_INPUT_OSK_OVERLAY_ENABLE:
return "Wy¶wietlaj klawiaturê ekranow±";
case MENU_ENUM_LABEL_VALUE_INPUT_OVERLAY_ENABLE:
return "Wy¶wietlaj nak³adkê";
case MENU_ENUM_LABEL_VALUE_VIDEO_MONITOR_INDEX:
return "Indeks monitora";
case MENU_ENUM_LABEL_VALUE_VIDEO_FRAME_DELAY:
return "Opó¼nienie klatek";
case MENU_ENUM_LABEL_VALUE_INPUT_DUTY_CYCLE:
return "Cykl zmian";
case MENU_ENUM_LABEL_VALUE_INPUT_TURBO_PERIOD:
return "Okres turbo";
case MENU_ENUM_LABEL_VALUE_INPUT_AXIS_THRESHOLD:
return "Próg osi";
case MENU_ENUM_LABEL_VALUE_INPUT_REMAP_BINDS_ENABLE:
return "W³±cz remapowanie bindów";
case MENU_ENUM_LABEL_VALUE_INPUT_MAX_USERS:
return "Maksymalna liczba u¿ytkowników";
case MENU_ENUM_LABEL_VALUE_INPUT_AUTODETECT_ENABLE:
return "W³±cz autokonfiguracjê";
case MENU_ENUM_LABEL_VALUE_AUDIO_OUTPUT_RATE:
return "Czêstotliwo¶æ próbkowania d¼wiêku (KHz)";
case MENU_ENUM_LABEL_VALUE_AUDIO_MAX_TIMING_SKEW:
return "Audio Maximum Timing Skew";
case MENU_ENUM_LABEL_VALUE_CHEAT_NUM_PASSES:
return "Liczba przebiegów cheatów";
case MENU_ENUM_LABEL_VALUE_REMAP_FILE_SAVE_CORE:
return "Zapisz plik remapowania dla rdzenia";
case MENU_ENUM_LABEL_VALUE_REMAP_FILE_SAVE_GAME:
return "Zapisz plik remapowania dla gry";
case MENU_ENUM_LABEL_VALUE_CHEAT_APPLY_CHANGES:
return "Zastosuj zmiany cheatów";
case MENU_ENUM_LABEL_VALUE_SHADER_APPLY_CHANGES:
return "Zastosuj zmiany shaderów";
case MENU_ENUM_LABEL_VALUE_REWIND_ENABLE:
return "W³±cz przewijanie";
case MENU_ENUM_LABEL_VALUE_CONTENT_COLLECTION_LIST:
return "Wybierz z kolekcji";
case MENU_ENUM_LABEL_VALUE_DETECT_CORE_LIST:
return "Wybierz plik i dopasuj rdzeñ";
case MENU_ENUM_LABEL_VALUE_DOWNLOADED_FILE_DETECT_CORE_LIST:
return "Wybierz pobrany plik i dopasuj rdzeñ"; /* this makes little sense */
case MENU_ENUM_LABEL_VALUE_LOAD_CONTENT_HISTORY:
return "Wczytaj z ostatnio u¿ywanych";
case MENU_ENUM_LABEL_VALUE_AUDIO_ENABLE:
return "W³±cz d¼wiêk";
case MENU_ENUM_LABEL_VALUE_FPS_SHOW:
return "Wy¶wietlaj FPS";
case MENU_ENUM_LABEL_VALUE_AUDIO_MUTE:
return "Wycisz d¼wiêk";
case MENU_ENUM_LABEL_VALUE_AUDIO_VOLUME:
return "Poziom g³o¶no¶ci (dB)";
case MENU_ENUM_LABEL_VALUE_AUDIO_SYNC:
return "W³±cz synchronizacjê d¼wiêku";
case MENU_ENUM_LABEL_VALUE_AUDIO_RATE_CONTROL_DELTA:
return "Audio Rate Control Delta";
case MENU_ENUM_LABEL_VALUE_VIDEO_SHADER_NUM_PASSES:
return "Liczba przebiegów shadera";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_SHA1:
return "SHA1";
case MENU_ENUM_LABEL_VALUE_CONFIGURATIONS:
return "Wczytaj konfiguracjê";
case MENU_ENUM_LABEL_VALUE_REWIND_GRANULARITY:
return "P³ynno¶æ przewijania";
case MENU_ENUM_LABEL_VALUE_REMAP_FILE_LOAD:
return "Wczytaj plik remapowania";
case MENU_ENUM_LABEL_VALUE_CUSTOM_RATIO:
return "W³±sny wspó³czynnik";
case MENU_ENUM_LABEL_VALUE_USE_THIS_DIRECTORY:
return "<U¿yj tego katalogu>";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_START_CONTENT:
return "Uruchom tre¶æ";
case MENU_ENUM_LABEL_VALUE_DISK_OPTIONS:
return "Opcje dysku rdzenia";
case MENU_ENUM_LABEL_VALUE_CORE_OPTIONS:
return "Opcje";
case MENU_ENUM_LABEL_VALUE_CORE_CHEAT_OPTIONS:
return "Opcje cheatów rdzenia";
case MENU_ENUM_LABEL_VALUE_CHEAT_FILE_LOAD:
return "Wczytaj plik z cheatami";
case MENU_ENUM_LABEL_VALUE_CHEAT_FILE_SAVE_AS:
return "Zapisz plik z cheatami jako";
case MENU_ENUM_LABEL_VALUE_CORE_COUNTERS:
return "Liczniki rdzenia";
case MENU_ENUM_LABEL_VALUE_TAKE_SCREENSHOT:
return "Zapisz zrzut";
case MENU_ENUM_LABEL_VALUE_RESUME:
return "Wznów";
case MENU_ENUM_LABEL_VALUE_DISK_INDEX:
return "Indeks dysku";
case MENU_ENUM_LABEL_VALUE_FRONTEND_COUNTERS:
return "Liczniki frontendu";
case MENU_ENUM_LABEL_VALUE_DISK_IMAGE_APPEND:
return "Dopisz do obrazu dysku";
case MENU_ENUM_LABEL_VALUE_DISK_CYCLE_TRAY_STATUS:
return "Disk Cycle Tray Status";
case MENU_ENUM_LABEL_VALUE_NO_PLAYLIST_ENTRIES_AVAILABLE:
return "Brak wpisów w playli¶cie.";
case MENU_ENUM_LABEL_VALUE_NO_CORE_INFORMATION_AVAILABLE:
return "Brak informacji o rdzeniu.";
case MENU_ENUM_LABEL_VALUE_NO_CORE_OPTIONS_AVAILABLE:
return "Brak dostêpnych opcji rdzenia.";
case MENU_ENUM_LABEL_VALUE_NO_CORES_AVAILABLE:
return "Brak dostêpnych rdzeni.";
case MENU_ENUM_LABEL_VALUE_NO_CORE:
return "Brak rdzenia";
case MENU_ENUM_LABEL_VALUE_DATABASE_MANAGER:
return "Mened¿er bazy danych";
case MENU_ENUM_LABEL_VALUE_CURSOR_MANAGER:
return "Mened¿er kursorów";
case MENU_ENUM_LABEL_VALUE_MAIN_MENU:
return "Menu g³ówne";
case MENU_ENUM_LABEL_VALUE_SETTINGS:
return "Ustawienia";
case MENU_ENUM_LABEL_VALUE_QUIT_RETROARCH:
return "Opu¶æ RetroArch";
case MENU_ENUM_LABEL_VALUE_HELP:
return "Pooc";
case MENU_ENUM_LABEL_VALUE_SAVE_NEW_CONFIG:
return "Zapisz now± konfiguracjê";
case MENU_ENUM_LABEL_VALUE_RESTART_CONTENT:
return "Restartuj";
case MENU_ENUM_LABEL_VALUE_CORE_UPDATER_LIST:
return "Aktualizator rdzeni";
case MENU_ENUM_LABEL_VALUE_CORE_UPDATER_BUILDBOT_URL:
return "URL rdzeni buildbota";
case MENU_ENUM_LABEL_VALUE_BUILDBOT_ASSETS_URL:
return "URL assetów buildbota";
case MENU_ENUM_LABEL_VALUE_NAVIGATION_WRAPAROUND:
return "Zawijanie nawigacji";
case MENU_ENUM_LABEL_VALUE_NAVIGATION_BROWSER_FILTER_SUPPORTED_EXTENSIONS_ENABLE:
return "Filtruj wed³ug wspieranych rozszerzeñ";
case MENU_ENUM_LABEL_VALUE_CORE_UPDATER_AUTO_EXTRACT_ARCHIVE:
return "Automatycznie wypakowuj pobierane archiwa";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFORMATION:
return "Informacje o systemie";
case MENU_ENUM_LABEL_VALUE_ONLINE_UPDATER:
return "Aktualizator sieciowy";
case MENU_ENUM_LABEL_VALUE_CORE_INFORMATION:
return "Informacje o rdzeniu";
case MENU_ENUM_LABEL_VALUE_DIRECTORY_NOT_FOUND:
return "Nie znaleziono katalogu.";
case MENU_ENUM_LABEL_VALUE_NO_ITEMS:
return "Brak elementów.";
case MENU_ENUM_LABEL_VALUE_CORE_LIST:
return "Wczytaj rdzeñ";
case MENU_ENUM_LABEL_VALUE_LOAD_CONTENT:
return "Wybierz plik";
case MENU_ENUM_LABEL_VALUE_CLOSE_CONTENT:
return "Zamknij";
case MENU_ENUM_LABEL_VALUE_MANAGEMENT:
return "Ustawienia bazy danych";
case MENU_ENUM_LABEL_VALUE_SAVE_STATE:
return "Zapisz stan";
case MENU_ENUM_LABEL_VALUE_LOAD_STATE:
return "Wczytaj stan";
case MENU_ENUM_LABEL_VALUE_RESUME_CONTENT:
return "Wznów";
case MENU_ENUM_LABEL_VALUE_INPUT_DRIVER:
return "Kontroler wej¶cia";
case MENU_ENUM_LABEL_VALUE_AUDIO_DRIVER:
return "Kontroler d¼wiêku";
case MENU_ENUM_LABEL_VALUE_JOYPAD_DRIVER:
return "Kontroler gamepadów";
case MENU_ENUM_LABEL_VALUE_AUDIO_RESAMPLER_DRIVER:
return "Kontroler resamplera d¼wiêku";
case MENU_ENUM_LABEL_VALUE_RECORD_DRIVER:
return "Kontroler nagrywania";
case MENU_ENUM_LABEL_VALUE_MENU_DRIVER:
return "Kontroler menu";
case MENU_ENUM_LABEL_VALUE_CAMERA_DRIVER:
return "Kontroler kamerki";
case MENU_ENUM_LABEL_VALUE_LOCATION_DRIVER:
return "Kontroler lokalizacji";
case MENU_ENUM_LABEL_VALUE_UNABLE_TO_READ_COMPRESSED_FILE:
return "Nie uda³o siê odczytaæ skompresowanego pliku.";
case MENU_ENUM_LABEL_VALUE_OVERLAY_SCALE:
return "Skala nak³adki";
case MENU_ENUM_LABEL_VALUE_OVERLAY_PRESET:
return "Preset nak³adki";
case MENU_ENUM_LABEL_VALUE_AUDIO_LATENCY:
return "Opó¼nienie d¼wiêku (ms)";
case MENU_ENUM_LABEL_VALUE_AUDIO_DEVICE:
return "Urz±dzenie audio";
case MENU_ENUM_LABEL_VALUE_KEYBOARD_OVERLAY_PRESET:
return "Preset klawiatury ekranowej";
case MENU_ENUM_LABEL_VALUE_OVERLAY_OPACITY:
return "Nieprze¼roczysto¶æ nak³adki";
case MENU_ENUM_LABEL_VALUE_MENU_WALLPAPER:
return "Tapeta menu";
case MENU_ENUM_LABEL_VALUE_DYNAMIC_WALLPAPER:
return "Dynamiczna tapeta";
case MENU_ENUM_LABEL_VALUE_CORE_INPUT_REMAPPING_OPTIONS:
return "Opcje remapowania kontrolera rdzenia"; /* this is quite bad */
case MENU_ENUM_LABEL_VALUE_SHADER_OPTIONS:
return "Opcje shadera";
case MENU_ENUM_LABEL_VALUE_VIDEO_SHADER_PARAMETERS:
return "Podgl±d parametrów shadera";
case MENU_ENUM_LABEL_VALUE_VIDEO_SHADER_PRESET_PARAMETERS:
return "Parametry shadera menu";
case MENU_ENUM_LABEL_VALUE_VIDEO_SHADER_PRESET_SAVE_AS:
return "Zapisz preset shadera jako";
case MENU_ENUM_LABEL_VALUE_NO_SHADER_PARAMETERS:
return "Brak parametrów shadera.";
case MENU_ENUM_LABEL_VALUE_VIDEO_SHADER_PRESET:
return "Wczytaj preset shaderów";
case MENU_ENUM_LABEL_VALUE_VIDEO_FILTER:
return "Filtr obrazu";
case MENU_ENUM_LABEL_VALUE_AUDIO_DSP_PLUGIN:
return "Wtyczki audio DSP";
case MENU_ENUM_LABEL_VALUE_STARTING_DOWNLOAD:
return "Rozpoczynanie pobierania: ";
case MENU_ENUM_LABEL_VALUE_SECONDS:
return "sekund";
case MENU_ENUM_LABEL_VALUE_ON: /* Don't change. Needed for XMB atm. (Would be: "W£¡CZONE") */
return "ON";
case MENU_ENUM_LABEL_VALUE_OFF: /* Don't change. Needed for XMB atm. (Would be: "WY£¡CZONE") */
return "OFF";
case MENU_ENUM_LABEL_VALUE_UPDATE_ASSETS:
return "Aktualizuj assety";
case MENU_ENUM_LABEL_VALUE_UPDATE_CHEATS:
return "Aktualizuj cheaty";
case MENU_ENUM_LABEL_VALUE_UPDATE_AUTOCONFIG_PROFILES:
return "Aktualizuj profile autokonfiguracji";
case MENU_ENUM_LABEL_VALUE_UPDATE_AUTOCONFIG_PROFILES_HID:
return "Aktualizuj profile autokonfiguracji (HID)";
case MENU_ENUM_LABEL_VALUE_UPDATE_DATABASES:
return "Aktualizuj bazy danych";
case MENU_ENUM_LABEL_VALUE_UPDATE_OVERLAYS:
return "Aktualizuj nak³adki graficzne";
case MENU_ENUM_LABEL_VALUE_UPDATE_CG_SHADERS:
return "Aktualizuj shadery Cg";
case MENU_ENUM_LABEL_VALUE_UPDATE_GLSL_SHADERS:
return "Aktualizuj shadery GLSL";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_CORE_NAME:
return "Nazwa rdzenia";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_CORE_LABEL:
return "Oznaczenie rdzenia";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_SYSTEM_NAME:
return "Nazwa systemu";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_SYSTEM_MANUFACTURER:
return "Producent systemu";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_CATEGORIES:
return "Kategorie";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_AUTHORS:
return "Autorzy";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_PERMISSIONS:
return "Zezwolenia";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_LICENSES:
return "Licencja(-e)";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_SUPPORTED_EXTENSIONS:
return "Wspierane rozszerzenia";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_FIRMWARE:
return "Firmware";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_CORE_NOTES:
return "Dodatkowe informacje o rdzeniu";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_BUILD_DATE:
return "Data kompilacji";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_GIT_VERSION:
return "Wersja git";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_CPU_FEATURES:
return "W³a¶ciwo¶ci CPU";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_FRONTEND_IDENTIFIER:
return "Identyfikator frontendu";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_FRONTEND_NAME:
return "Nazwa frontendu";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_FRONTEND_OS:
return "System operacyjny hosta:";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_RETRORATING_LEVEL:
return "Poziom RetroRating";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_POWER_SOURCE:
return "¬ród³o zasilania";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_POWER_SOURCE_NO_SOURCE:
return "Brak ¼ród³a";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_POWER_SOURCE_CHARGING:
return "£adowanie";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_POWER_SOURCE_CHARGED:
return "Na³adowano";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_POWER_SOURCE_DISCHARGING:
return "Na baterii";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_VIDEO_CONTEXT_DRIVER:
return "Kontroler wideo";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_DISPLAY_METRIC_MM_WIDTH:
return "Metryczna szeroko¶æ wy¶wietlacza (mm)";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_DISPLAY_METRIC_MM_HEIGHT:
return "Metryczna wysoko¶æ wy¶wietlacza (mm)";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_DISPLAY_METRIC_DPI:
return "Metryczne DPI wy¶wietlacza";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_LIBRETRODB_SUPPORT:
return "Wsparcie LibretroDB";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OVERLAY_SUPPORT:
return "Wsparcie nak³adek graficznych";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_COMMAND_IFACE_SUPPORT:
return "Wsparcie interfejsu wiersza poleceñ";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_NETWORK_COMMAND_IFACE_SUPPORT:
return "Wsparcie interfejsu komend sieciowych";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_COCOA_SUPPORT:
return "Wsparcie Cocoa";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_RPNG_SUPPORT:
return "Wsparcie PNG (RPNG)";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_SDL_SUPPORT:
return "Wsparcie SDL1.2";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_SDL2_SUPPORT:
return "Wsparcie SDL2";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OPENGL_SUPPORT:
return "Wsparcie OpenGL";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OPENGLES_SUPPORT:
return "Wsparcie OpenGL ES";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_THREADING_SUPPORT:
return "Wsparcie wielu w±tków";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_KMS_SUPPORT:
return "Wsparcie KMS/EGL";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_UDEV_SUPPORT:
return "Wsparcie Udev";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OPENVG_SUPPORT:
return "Wsparcie OpenVG";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_EGL_SUPPORT:
return "Wsparcie EGL";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_X11_SUPPORT:
return "Wsparcie X11";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_WAYLAND_SUPPORT:
return "Wsparcie Wayland";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_XVIDEO_SUPPORT:
return "Wsparcie XVideo";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_ALSA_SUPPORT:
return "Wsparcie ALSA";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OSS_SUPPORT:
return "Wsparcie OSS";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OPENAL_SUPPORT:
return "Wsparcie OpenAL";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OPENSL_SUPPORT:
return "Wsparcie OpenSL";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_RSOUND_SUPPORT:
return "Wsparcie RSound";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_ROARAUDIO_SUPPORT:
return "Wsparcie RoarAudio";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_JACK_SUPPORT:
return "Wsparcie JACK";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_PULSEAUDIO_SUPPORT:
return "Wsparcie PulseAudio";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_DSOUND_SUPPORT:
return "Wsparcie DirectSound";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_XAUDIO2_SUPPORT:
return "Wsparcie XAudio2";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_ZLIB_SUPPORT:
return "Wsparcie Zlib";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_7ZIP_SUPPORT:
return "Wsparcie 7zip";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_DYLIB_SUPPORT:
return "Wsparcie bibliotek dynamicznych";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_CG_SUPPORT:
return "Wsparcie Cg";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_GLSL_SUPPORT:
return "Wsparcie GLSL";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_HLSL_SUPPORT:
return "Wsparcie HLSL";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_LIBXML2_SUPPORT:
return "Wsparcie parsowania XML libxml2";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_SDL_IMAGE_SUPPORT:
return "Wsparcie SDL image";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_FBO_SUPPORT:
return "Wsparcie renderowania do tekstury w OpenGL/Direct3D (wielokrotne przebiegi shaderów)";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_FFMPEG_SUPPORT:
return "Wsparcie FFmpeg";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_CORETEXT_SUPPORT:
return "Wsparcie CoreText";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_FREETYPE_SUPPORT:
return "Wsparcie FreeType";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_NETPLAY_SUPPORT:
return "Wsparcie Netplay (peer-to-peer)";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_PYTHON_SUPPORT:
return "Wsparcie Pythona (skrypty w shaderach)";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_V4L2_SUPPORT:
return "Wsparcie Video4Linux2";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_LIBUSB_SUPPORT:
return "Wsparcie libusb";
case MENU_ENUM_LABEL_VALUE_YES:
return "Tak";
case MENU_ENUM_LABEL_VALUE_NO:
return "Nie";
case MENU_ENUM_LABEL_VALUE_BACK:
return "WSTECZ";
case MENU_ENUM_LABEL_VALUE_SCREEN_RESOLUTION:
return "Rozdzielczo¶æ ekranu";
case MENU_ENUM_LABEL_VALUE_DISABLED:
return "Wy³±czone";
case MENU_ENUM_LABEL_VALUE_PORT:
return "Port";
case MENU_ENUM_LABEL_VALUE_NONE:
return "¯aden";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_DEVELOPER:
return "Deweloper";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_PUBLISHER:
return "Wydawca";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_DESCRIPTION:
return "Opis";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_NAME:
return "Nazwa";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_ORIGIN:
return "Pochodzenie";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_FRANCHISE:
return "Franczyza";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_RELEASE_MONTH:
return "Miesi±c wydania";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_RELEASE_YEAR:
return "Rok wydania";
case MENU_ENUM_LABEL_VALUE_TRUE:
return "Prawda";
case MENU_ENUM_LABEL_VALUE_FALSE:
return "Fa³sz";
case MENU_ENUM_LABEL_VALUE_MISSING:
return "Brak";
case MENU_ENUM_LABEL_VALUE_PRESENT:
return "Obecny";
case MENU_ENUM_LABEL_VALUE_OPTIONAL:
return "Opcjonalny";
case MENU_ENUM_LABEL_VALUE_REQUIRED:
return "Wymagany";
case MENU_ENUM_LABEL_VALUE_STATUS:
return "Status";
case MENU_ENUM_LABEL_VALUE_AUDIO_SETTINGS:
return "Ustawienia d¼wiêku";
case MENU_ENUM_LABEL_VALUE_INPUT_SETTINGS:
return "Ustawienia wprowadzania";
case MENU_ENUM_LABEL_VALUE_ONSCREEN_DISPLAY_SETTINGS:
return "Ustawienia OSD";
case MENU_ENUM_LABEL_VALUE_OVERLAY_SETTINGS:
return "Ustawienia przycisków ekranowych";
case MENU_ENUM_LABEL_VALUE_MENU_SETTINGS:
return "Ustawienia menu";
case MENU_ENUM_LABEL_VALUE_MULTIMEDIA_SETTINGS:
return "Ustawienia multimediów";
case MENU_ENUM_LABEL_VALUE_UI_SETTINGS:
return "Ustawienia interfejsu u¿ytkownika";
case MENU_ENUM_LABEL_VALUE_MENU_FILE_BROWSER_SETTINGS:
return "Menu File Browser Settings";
case MENU_ENUM_LABEL_VALUE_CORE_UPDATER_SETTINGS:
return "Ustawienia aktualizatora";
case MENU_ENUM_LABEL_VALUE_NETWORK_SETTINGS:
return "Ustawienia sieci";
case MENU_ENUM_LABEL_VALUE_PLAYLIST_SETTINGS:
return "Ustawienia playlisty";
case MENU_ENUM_LABEL_VALUE_USER_SETTINGS:
return "Ustawienia u¿ytkownika";
case MENU_ENUM_LABEL_VALUE_DIRECTORY_SETTINGS:
return "Ustawienia katalogów";
case MENU_ENUM_LABEL_VALUE_RECORDING_SETTINGS:
return "Ustawienia nagrywania";
case MENU_ENUM_LABEL_VALUE_NO_INFORMATION_AVAILABLE:
return "Brak dostêpnych informacji.";
case MENU_ENUM_LABEL_VALUE_INPUT_USER_BINDS:
return "Wprowad¼ bindy dla u¿ytkownika %u";
case MENU_ENUM_LABEL_VALUE_LANG_ENGLISH:
return "angielski";
case MENU_ENUM_LABEL_VALUE_LANG_JAPANESE:
return "japoñski";
case MENU_ENUM_LABEL_VALUE_LANG_FRENCH:
return "francuski";
case MENU_ENUM_LABEL_VALUE_LANG_SPANISH:
return "hiszpañski";
case MENU_ENUM_LABEL_VALUE_LANG_GERMAN:
return "niemiecki";
case MENU_ENUM_LABEL_VALUE_LANG_ITALIAN:
return "w³oski";
case MENU_ENUM_LABEL_VALUE_LANG_DUTCH:
return "duñski";
case MENU_ENUM_LABEL_VALUE_LANG_PORTUGUESE:
return "portugalski";
case MENU_ENUM_LABEL_VALUE_LANG_RUSSIAN:
return "rosyjski";
case MENU_ENUM_LABEL_VALUE_LANG_KOREAN:
return "koreañski";
case MENU_ENUM_LABEL_VALUE_LANG_CHINESE_TRADITIONAL:
return "chiñski (Tradycyjny)";
case MENU_ENUM_LABEL_VALUE_LANG_CHINESE_SIMPLIFIED:
return "chiñ¶ki (Uproszczony)";
case MENU_ENUM_LABEL_VALUE_LANG_ESPERANTO:
return "esperanto";
case MENU_ENUM_LABEL_VALUE_LEFT_ANALOG:
return "Lewy analog";
case MENU_ENUM_LABEL_VALUE_RIGHT_ANALOG:
return "Prawy analog";
case MENU_ENUM_LABEL_VALUE_INPUT_HOTKEY_BINDS:
return "Input Hotkey Binds";
case MENU_ENUM_LABEL_VALUE_FRAME_THROTTLE_SETTINGS:
return "Frame Throttle Settings";
case MENU_ENUM_LABEL_VALUE_SEARCH:
return "Szukaj:";
case MENU_ENUM_LABEL_VALUE_USE_BUILTIN_IMAGE_VIEWER:
return "U¿yj wbudowanej przegl±darki obrazów";
default:
break;
}

View File

@ -14,6 +14,22 @@
*/
#include "../msg_hash.h"
#include <stdint.h>
#include <string.h>
#include <retro_assert.h>
#include <compat/strl.h>
#include "../../configuration.h"
/* IMPORTANT:
* For non-english characters to work without proper unicode support,
* we need this file to be encoded in ISO 8859-1 (Latin1), not UTF-8.
* If you save this file as UTF-8, you'll break non-english characters
* (e.g. German "Umlauts" and Portugese diacritics).
*/
/* DO NOT REMOVE THIS. If it causes build failure, it's because you saved the file as UTF-8. Read the above comment. */
extern const char force_iso_8859_1[sizeof("áÁâãçéêíÍóõú")==12+1 ? 1 : -1];
const char *msg_hash_to_str_pt(enum msg_hash_enums msg)
{
@ -139,6 +155,820 @@ const char *msg_hash_to_str_pt(enum msg_hash_enums msg)
return "Baixando";
case MSG_EXTRACTING:
return "Extraindo";
case MENU_ENUM_LABEL_VALUE_START_NET_RETROPAD:
return "Iniciar RetroPad Remoto";
case MENU_ENUM_LABEL_VALUE_SCAN_THIS_DIRECTORY:
return "<Escanear este Diretório>";
case MENU_ENUM_LABEL_VALUE_SCAN_FILE:
return "Escanear Arquivo";
case MENU_ENUM_LABEL_VALUE_SCAN_DIRECTORY:
return "Escanear Diretório";
case MENU_ENUM_LABEL_VALUE_START_CORE:
return "Iniciar Core";
case MENU_ENUM_LABEL_VALUE_INFORMATION_LIST:
return "Informação";
case MENU_ENUM_LABEL_VALUE_USE_BUILTIN_PLAYER:
return "Usar Player Interno"; /* TODO/FIXME */
case MENU_ENUM_LABEL_VALUE_CONTENT_SETTINGS:
return "Menu Rápido";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_CRC32:
return "CRC32";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_MD5:
return "MD5";
case MENU_ENUM_LABEL_VALUE_LOAD_CONTENT_LIST:
return "Carregar Conteúdo";
case MENU_ENUM_LABEL_VALUE_LOAD_ARCHIVE:
return "Carregar Arquivo";
case MENU_ENUM_LABEL_VALUE_OPEN_ARCHIVE:
return "Abrir Arquivo";
case MENU_ENUM_LABEL_VALUE_ASK_ARCHIVE:
return "Ask";
case MENU_ENUM_LABEL_VALUE_PRIVACY_SETTINGS:
return "Configurações de Privacidade";
case MENU_ENUM_LABEL_VALUE_HORIZONTAL_MENU:
return "Horizontal Menu"; /* FIXME - don't edit this yet. */
case MENU_ENUM_LABEL_VALUE_NO_SETTINGS_FOUND:
return "Nenhuma definição encontrada.";
case MENU_ENUM_LABEL_VALUE_NO_PERFORMANCE_COUNTERS:
return "Nenhum medidor de desempenho.";
case MENU_ENUM_LABEL_VALUE_DRIVER_SETTINGS:
return "Drivers";
case MENU_ENUM_LABEL_VALUE_CONFIGURATION_SETTINGS:
return "Configurações";
case MENU_ENUM_LABEL_VALUE_CORE_SETTINGS:
return "Core";
case MENU_ENUM_LABEL_VALUE_VIDEO_SETTINGS:
return "Vídeo";
case MENU_ENUM_LABEL_VALUE_LOGGING_SETTINGS:
return "Registro de Dados";
case MENU_ENUM_LABEL_VALUE_SAVING_SETTINGS:
return "Saves";
case MENU_ENUM_LABEL_VALUE_REWIND_SETTINGS:
return "Retrocesso";
case MENU_ENUM_LABEL_VALUE_SHADER:
return "Shader";
case MENU_ENUM_LABEL_VALUE_CHEAT:
return "Cheat";
case MENU_ENUM_LABEL_VALUE_USER:
return "Usuário";
case MENU_ENUM_LABEL_VALUE_SYSTEM_BGM_ENABLE:
return "Ativar Sistema BGM";
case MENU_ENUM_LABEL_VALUE_RETROPAD:
return "RetroPad";
case MENU_ENUM_LABEL_VALUE_RETROKEYBOARD:
return "RetroTeclado";
case MENU_ENUM_LABEL_VALUE_AUDIO_BLOCK_FRAMES:
return "Quadros de Blocos de Áudio";
case MENU_ENUM_LABEL_VALUE_INPUT_DESCRIPTOR_LABEL_SHOW:
return "Mostrar Rótulos de Entradas de Core";
case MENU_ENUM_LABEL_VALUE_INPUT_DESCRIPTOR_HIDE_UNBOUND:
return "Esconder Descritores de Entradas sem Uso";
case MENU_ENUM_LABEL_VALUE_VIDEO_FONT_ENABLE:
return "Mostrar Mensagem de Tela";
case MENU_ENUM_LABEL_VALUE_VIDEO_FONT_PATH:
return "Fonte da Mensagem de Tela";
case MENU_ENUM_LABEL_VALUE_VIDEO_FONT_SIZE:
return "Tamanho da Mensagem de Tela";
case MENU_ENUM_LABEL_VALUE_VIDEO_MESSAGE_POS_X:
return "Posição X da Mensagem de Tela";
case MENU_ENUM_LABEL_VALUE_VIDEO_MESSAGE_POS_Y:
return "Posição Y da Mensagem de Tela";
case MENU_ENUM_LABEL_VALUE_VIDEO_SOFT_FILTER:
return "Ativar Filtro de Suavização";
case MENU_ENUM_LABEL_VALUE_VIDEO_FILTER_FLICKER:
return "Filtro de Cintilação";
case MENU_ENUM_LABEL_VALUE_DIRECTORY_CONTENT:
return "<Diretório de Conteúdo>";
case MENU_ENUM_LABEL_VALUE_UNKNOWN:
return "Desconhecido";
case MENU_ENUM_LABEL_VALUE_DONT_CARE:
return "Tanto faz";
case MENU_ENUM_LABEL_VALUE_LINEAR:
return "Linear";
case MENU_ENUM_LABEL_VALUE_NEAREST:
return "Nearest";
case MENU_ENUM_LABEL_VALUE_DIRECTORY_DEFAULT:
return "<Padrão>";
case MENU_ENUM_LABEL_VALUE_DIRECTORY_NONE:
return "<Nenhum>";
case MENU_ENUM_LABEL_VALUE_NOT_AVAILABLE:
return "N/A";
case MENU_ENUM_LABEL_VALUE_INPUT_REMAPPING_DIRECTORY:
return "Remapeamentos de Controladores";
case MENU_ENUM_LABEL_VALUE_JOYPAD_AUTOCONFIG_DIR:
return "Autoconfigurações de Dispositivos de Entrada";
case MENU_ENUM_LABEL_VALUE_RECORDING_CONFIG_DIRECTORY:
return "Configurações de Gravações";
case MENU_ENUM_LABEL_VALUE_RECORDING_OUTPUT_DIRECTORY:
return "Gravações";
case MENU_ENUM_LABEL_VALUE_SCREENSHOT_DIRECTORY:
return "Capturas de Telas";
case MENU_ENUM_LABEL_VALUE_PLAYLIST_DIRECTORY:
return "Históricos";
case MENU_ENUM_LABEL_VALUE_SAVEFILE_DIRECTORY:
return "Saves";
case MENU_ENUM_LABEL_VALUE_SAVESTATE_DIRECTORY:
return "Savestates";
case MENU_ENUM_LABEL_VALUE_STDIN_CMD_ENABLE:
return "Comandos stdin";
case MENU_ENUM_LABEL_VALUE_VIDEO_DRIVER:
return "Driver de Vídeo";
case MENU_ENUM_LABEL_VALUE_RECORD_ENABLE:
return "Ativar Gravação";
case MENU_ENUM_LABEL_VALUE_VIDEO_GPU_RECORD:
return "Ativar Gravação por GPU";
case MENU_ENUM_LABEL_VALUE_RECORD_PATH: /* FIXME/UPDATE */
return "Caminho da Gravação";
case MENU_ENUM_LABEL_VALUE_RECORD_USE_OUTPUT_DIRECTORY:
return "Diretório de Saída";
case MENU_ENUM_LABEL_VALUE_RECORD_CONFIG:
return "Configurações de Gravação";
case MENU_ENUM_LABEL_VALUE_VIDEO_POST_FILTER_RECORD:
return "Ativar Filtro Pós-Gravação";
case MENU_ENUM_LABEL_VALUE_CORE_ASSETS_DIRECTORY:
return "Recursos (Assets) de Cores"; /* FIXME/UPDATE */
case MENU_ENUM_LABEL_VALUE_ASSETS_DIRECTORY:
return "Recursos (Assets)";
case MENU_ENUM_LABEL_VALUE_DYNAMIC_WALLPAPERS_DIRECTORY:
return "Papéis de Parede Dinâmicos";
case MENU_ENUM_LABEL_VALUE_RGUI_BROWSER_DIRECTORY:
return "Navegação";
case MENU_ENUM_LABEL_VALUE_RGUI_CONFIG_DIRECTORY:
return "Configurações";
case MENU_ENUM_LABEL_VALUE_LIBRETRO_INFO_PATH:
return "Informações de Cores";
case MENU_ENUM_LABEL_VALUE_LIBRETRO_DIR_PATH:
return "Cores";
case MENU_ENUM_LABEL_VALUE_CURSOR_DIRECTORY:
return "Cursores";
case MENU_ENUM_LABEL_VALUE_CONTENT_DATABASE_DIRECTORY:
return "Databases de Conteúdo";
case MENU_ENUM_LABEL_VALUE_SYSTEM_DIRECTORY:
return "System/BIOS";
case MENU_ENUM_LABEL_VALUE_CHEAT_DATABASE_PATH:
return "Cheats";
case MENU_ENUM_LABEL_VALUE_CACHE_DIRECTORY: /* UPDATE/FIXME */
return "Descompactação";
case MENU_ENUM_LABEL_VALUE_AUDIO_FILTER_DIR:
return "Filtros de Áudio";
case MENU_ENUM_LABEL_VALUE_VIDEO_SHADER_DIR:
return "Shaders";
case MENU_ENUM_LABEL_VALUE_VIDEO_FILTER_DIR:
return "Filtros de Vídeo";
case MENU_ENUM_LABEL_VALUE_OVERLAY_DIRECTORY:
return "Overlays";
case MENU_ENUM_LABEL_VALUE_OSK_OVERLAY_DIRECTORY:
return "Overlays de Teclado";
case MENU_ENUM_LABEL_VALUE_NETPLAY_CLIENT_SWAP_INPUT:
return "Trocar Entradas de Netplay";
case MENU_ENUM_LABEL_VALUE_NETPLAY_SPECTATOR_MODE_ENABLE:
return "Ativar Espectador de Netplay";
case MENU_ENUM_LABEL_VALUE_NETPLAY_IP_ADDRESS:
return "Endereço IP";
case MENU_ENUM_LABEL_VALUE_NETPLAY_TCP_UDP_PORT:
return "Portas TCP/UDP de Netplay";
case MENU_ENUM_LABEL_VALUE_NETPLAY_ENABLE:
return "Ativar Netplay";
case MENU_ENUM_LABEL_VALUE_NETPLAY_DELAY_FRAMES:
return "Quadros de Retardo de Netplay";
case MENU_ENUM_LABEL_VALUE_NETPLAY_MODE:
return "Ativar Cliente de Netplay";
case MENU_ENUM_LABEL_VALUE_RGUI_SHOW_START_SCREEN:
return "Mostrar Tela de Início";
case MENU_ENUM_LABEL_VALUE_TITLE_COLOR:
return "Cor do Menu Título";
case MENU_ENUM_LABEL_VALUE_ENTRY_HOVER_COLOR:
return "Cor de Realce do Menu Inicial";
case MENU_ENUM_LABEL_VALUE_TIMEDATE_ENABLE:
return "Mostrar Hora / Data";
case MENU_ENUM_LABEL_VALUE_THREADED_DATA_RUNLOOP_ENABLE:
return "Ativar Runloop de Threads de Dados";
case MENU_ENUM_LABEL_VALUE_ENTRY_NORMAL_COLOR:
return "Cor do Menu Inicial";
case MENU_ENUM_LABEL_VALUE_SHOW_ADVANCED_SETTINGS:
return "Mostrar Configurações Avançadas";
case MENU_ENUM_LABEL_VALUE_MOUSE_ENABLE:
return "Suporte a Mouse";
case MENU_ENUM_LABEL_VALUE_POINTER_ENABLE:
return "Suporte a Touch";
case MENU_ENUM_LABEL_VALUE_CORE_ENABLE:
return "Mostrar Nome dos Cores";
case MENU_ENUM_LABEL_VALUE_DPI_OVERRIDE_ENABLE:
return "Ativar Sobreposição de DPI";
case MENU_ENUM_LABEL_VALUE_DPI_OVERRIDE_VALUE:
return "Sobreposição de DPI";
case MENU_ENUM_LABEL_VALUE_SUSPEND_SCREENSAVER_ENABLE:
return "Suspender Proteção de Tela";
case MENU_ENUM_LABEL_VALUE_VIDEO_DISABLE_COMPOSITION:
return "Desativar Desktop Composition";
case MENU_ENUM_LABEL_VALUE_PAUSE_NONACTIVE:
return "Não Rodar em Background";
case MENU_ENUM_LABEL_VALUE_UI_COMPANION_START_ON_BOOT:
return "Ativar UI Companion ao Iniciar";
case MENU_ENUM_LABEL_VALUE_UI_MENUBAR_ENABLE:
return "Barra de Menu (Dica)";
case MENU_ENUM_LABEL_VALUE_ARCHIVE_MODE:
return "Ação para Arquivos Compactados";
case MENU_ENUM_LABEL_VALUE_NETWORK_CMD_ENABLE:
return "Comandos de Rede";
case MENU_ENUM_LABEL_VALUE_NETWORK_CMD_PORT:
return "Porta para Comandos de Rede";
case MENU_ENUM_LABEL_VALUE_HISTORY_LIST_ENABLE:
return "Ativar Lista de Histórico";
case MENU_ENUM_LABEL_VALUE_CONTENT_HISTORY_SIZE:
return "Tamanho da Lista de Histórico";
case MENU_ENUM_LABEL_VALUE_VIDEO_REFRESH_RATE_AUTO:
return "Taxa de Atualização de Quadros Estimada";
case MENU_ENUM_LABEL_VALUE_DUMMY_ON_CORE_SHUTDOWN:
return "Desligar Core Dummy On";
case MENU_ENUM_LABEL_VALUE_CORE_SET_SUPPORTS_NO_CONTENT_ENABLE: /* TODO/FIXME */
return "Não Iniciar Cores Automaticamente";
case MENU_ENUM_LABEL_VALUE_FRAME_THROTTLE_ENABLE:
return "Limitar Velocidade Máxima de Execução";
case MENU_ENUM_LABEL_VALUE_FASTFORWARD_RATIO:
return "Velocidade Máxima de Execução";
case MENU_ENUM_LABEL_VALUE_AUTO_REMAPS_ENABLE:
return "Carregar Automaticamente Arquivos Remapeados";
case MENU_ENUM_LABEL_VALUE_SLOWMOTION_RATIO:
return "Taxa de Câmera Lenta";
case MENU_ENUM_LABEL_VALUE_CORE_SPECIFIC_CONFIG:
return "Configuração por Core";
case MENU_ENUM_LABEL_VALUE_AUTO_OVERRIDES_ENABLE:
return "Carregar Automaticamente Arquivos de Sobreposição";
case MENU_ENUM_LABEL_VALUE_CONFIG_SAVE_ON_EXIT:
return "Salvar Configuração ao Sair";
case MENU_ENUM_LABEL_VALUE_VIDEO_SMOOTH:
return "Filtragem Bilinear por Hardware";
case MENU_ENUM_LABEL_VALUE_VIDEO_GAMMA:
return "Gamma de Vídeo";
case MENU_ENUM_LABEL_VALUE_VIDEO_ALLOW_ROTATE:
return "Permitir Rotação";
case MENU_ENUM_LABEL_VALUE_VIDEO_HARD_SYNC:
return "Sincronizar GPU com CPU";
case MENU_ENUM_LABEL_VALUE_VIDEO_SWAP_INTERVAL:
return "Intervalo de Permuta do Sincronismo Vertical";
case MENU_ENUM_LABEL_VALUE_VIDEO_VSYNC:
return "Sincronismo Vertical";
case MENU_ENUM_LABEL_VALUE_VIDEO_THREADED:
return "Vídeo em Threads";
case MENU_ENUM_LABEL_VALUE_VIDEO_ROTATION:
return "Rotação";
case MENU_ENUM_LABEL_VALUE_VIDEO_GPU_SCREENSHOT:
return "Ativar Captura de Tela via GPU";
case MENU_ENUM_LABEL_VALUE_VIDEO_CROP_OVERSCAN:
return "Descartar Overscan (Recarregue)";
case MENU_ENUM_LABEL_VALUE_VIDEO_ASPECT_RATIO_INDEX:
return "Índice de Relações de Aspecto";
case MENU_ENUM_LABEL_VALUE_VIDEO_ASPECT_RATIO_AUTO:
return "Relação de Aspecto Automática";
case MENU_ENUM_LABEL_VALUE_VIDEO_FORCE_ASPECT:
return "Forçar Relação de Aspecto";
case MENU_ENUM_LABEL_VALUE_VIDEO_REFRESH_RATE:
return "Taxa de Atualização de Tela";
case MENU_ENUM_LABEL_VALUE_VIDEO_FORCE_SRGB_DISABLE:
return "Forcar Desativação de sRGB FBO";
case MENU_ENUM_LABEL_VALUE_VIDEO_WINDOWED_FULLSCREEN:
return "Modo Tela Cheia em Janela";
case MENU_ENUM_LABEL_VALUE_PAL60_ENABLE:
return "Usar Modo PAL60";
case MENU_ENUM_LABEL_VALUE_VIDEO_VFILTER:
return "Eliminar Cintilação";
case MENU_ENUM_LABEL_VALUE_VIDEO_VI_WIDTH:
return "Definir Largura de Tela VI";
case MENU_ENUM_LABEL_VALUE_VIDEO_BLACK_FRAME_INSERTION:
return "Inserção de Quadro Negro";
case MENU_ENUM_LABEL_VALUE_VIDEO_HARD_SYNC_FRAMES:
return "Quadros de Sincronização entre GPU e CPU";
case MENU_ENUM_LABEL_VALUE_SORT_SAVEFILES_ENABLE:
return "Ordenar Saves em Pastas";
case MENU_ENUM_LABEL_VALUE_SORT_SAVESTATES_ENABLE:
return "Ordenar Savestates em Pastas";
case MENU_ENUM_LABEL_VALUE_VIDEO_FULLSCREEN:
return "Usar Modo Tela Cheia";
case MENU_ENUM_LABEL_VALUE_VIDEO_SCALE:
return "Variar Escala em Janela";
case MENU_ENUM_LABEL_VALUE_VIDEO_SCALE_INTEGER:
return "Escala em Degraus Inteiros";
case MENU_ENUM_LABEL_VALUE_PERFCNT_ENABLE:
return "Contadores de Desempenho";
case MENU_ENUM_LABEL_VALUE_LIBRETRO_LOG_LEVEL:
return "Nível de Registro de Core";
case MENU_ENUM_LABEL_VALUE_LOG_VERBOSITY:
return "Detalhamento de Registro";
case MENU_ENUM_LABEL_VALUE_SAVESTATE_AUTO_LOAD:
return "Carregar Savestate Automaticamente";
case MENU_ENUM_LABEL_VALUE_SAVESTATE_AUTO_INDEX:
return "Índice Automático de Savestates";
case MENU_ENUM_LABEL_VALUE_SAVESTATE_AUTO_SAVE:
return "Savestate Automático";
case MENU_ENUM_LABEL_VALUE_AUTOSAVE_INTERVAL:
return "Intervalo de Gravação Automática de SaveRAM";
case MENU_ENUM_LABEL_VALUE_BLOCK_SRAM_OVERWRITE:
return "Não Sobrescrever SaveRAM ao Carregar Savestate";
case MENU_ENUM_LABEL_VALUE_VIDEO_SHARED_CONTEXT:
return "Ativar Contexto Compartilhado de Hardware";
case MENU_ENUM_LABEL_VALUE_RESTART_RETROARCH:
return "Reiniciar RetroArch";
case MENU_ENUM_LABEL_VALUE_NETPLAY_NICKNAME:
return "Nome de Usuário";
case MENU_ENUM_LABEL_VALUE_USER_LANGUAGE:
return "Idioma";
case MENU_ENUM_LABEL_VALUE_CAMERA_ALLOW:
return "Autorizar Câmera";
case MENU_ENUM_LABEL_VALUE_LOCATION_ALLOW:
return "Autorizar Localização";
case MENU_ENUM_LABEL_VALUE_PAUSE_LIBRETRO:
return "Pausar Quando o Menu for Ativado";
case MENU_ENUM_LABEL_VALUE_INPUT_OSK_OVERLAY_ENABLE:
return "Mostrar Overlay de Teclado";
case MENU_ENUM_LABEL_VALUE_INPUT_OVERLAY_ENABLE:
return "Mostrar Overlay";
case MENU_ENUM_LABEL_VALUE_VIDEO_MONITOR_INDEX:
return "Índice de Monitores";
case MENU_ENUM_LABEL_VALUE_VIDEO_FRAME_DELAY:
return "Retardo de Quadro";
case MENU_ENUM_LABEL_VALUE_INPUT_DUTY_CYCLE:
return "Ciclo de Trabalho";
case MENU_ENUM_LABEL_VALUE_INPUT_TURBO_PERIOD:
return "Período de Turbo";
case MENU_ENUM_LABEL_VALUE_INPUT_AXIS_THRESHOLD:
return "Limiar de Eixo do Controlador";
case MENU_ENUM_LABEL_VALUE_INPUT_REMAP_BINDS_ENABLE:
return "Ativar Remapeamentos";
case MENU_ENUM_LABEL_VALUE_INPUT_MAX_USERS:
return "Usuários Máximos";
case MENU_ENUM_LABEL_VALUE_INPUT_AUTODETECT_ENABLE:
return "Ativar Autoconfiguração";
case MENU_ENUM_LABEL_VALUE_AUDIO_OUTPUT_RATE:
return "Taxa de Amostragem de Áudio (KHz)";
case MENU_ENUM_LABEL_VALUE_AUDIO_MAX_TIMING_SKEW:
return "Distorção Máxima de Sincronização de Áudio";
case MENU_ENUM_LABEL_VALUE_CHEAT_NUM_PASSES:
return "Códigos de Cheat";
case MENU_ENUM_LABEL_VALUE_REMAP_FILE_SAVE_CORE:
return "Salvar Remapeamento de Core";
case MENU_ENUM_LABEL_VALUE_REMAP_FILE_SAVE_GAME:
return "Salvar Remapeamento de Jogo";
case MENU_ENUM_LABEL_VALUE_CHEAT_APPLY_CHANGES:
return "Aplicar Alterações de Cheats";
case MENU_ENUM_LABEL_VALUE_SHADER_APPLY_CHANGES:
return "Aplicar Alterações de Shaders";
case MENU_ENUM_LABEL_VALUE_REWIND_ENABLE:
return "Ativar Retrocesso";
case MENU_ENUM_LABEL_VALUE_CONTENT_COLLECTION_LIST:
return "Selecionar da Coleção";
case MENU_ENUM_LABEL_VALUE_DETECT_CORE_LIST:
return "Selecionar Arquivo e Detectar Core";
case MENU_ENUM_LABEL_VALUE_LOAD_CONTENT_HISTORY:
return "Selecionar do Histórico";
case MENU_ENUM_LABEL_VALUE_AUDIO_ENABLE:
return "Ativar Áudio";
case MENU_ENUM_LABEL_VALUE_FPS_SHOW:
return "Mostrar Taxa de Quadros";
case MENU_ENUM_LABEL_VALUE_AUDIO_MUTE:
return "Silenciar Áudio";
case MENU_ENUM_LABEL_VALUE_AUDIO_VOLUME:
return "Volume de Áudio (dB)";
case MENU_ENUM_LABEL_VALUE_AUDIO_SYNC:
return "Ativar Sincronismo de Áudio";
case MENU_ENUM_LABEL_VALUE_AUDIO_RATE_CONTROL_DELTA:
return "Variação Máxima de Taxa de Áudio";
case MENU_ENUM_LABEL_VALUE_VIDEO_SHADER_NUM_PASSES:
return "Número de Shaders";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_SHA1:
return "SHA1";
case MENU_ENUM_LABEL_VALUE_CONFIGURATIONS:
return "Carregar Configuração";
case MENU_ENUM_LABEL_VALUE_REWIND_GRANULARITY:
return "Granularidade do Retrocesso";
case MENU_ENUM_LABEL_VALUE_REMAP_FILE_LOAD:
return "Carregar Remapeamento";
case MENU_ENUM_LABEL_VALUE_CUSTOM_RATIO:
return "Relação de Aspecto Personalizada";
case MENU_ENUM_LABEL_VALUE_USE_THIS_DIRECTORY:
return "<Usar este diretório>";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_START_CONTENT:
return "Iniciar Conteúdo";
case MENU_ENUM_LABEL_VALUE_DISK_OPTIONS: /* UPDATE/FIXME */
return "Opções de Disco do Core";
case MENU_ENUM_LABEL_VALUE_CORE_OPTIONS:
return "Opções";
case MENU_ENUM_LABEL_VALUE_CORE_CHEAT_OPTIONS:
return "Cheats";
case MENU_ENUM_LABEL_VALUE_CHEAT_FILE_LOAD:
return "Carregar Cheat";
case MENU_ENUM_LABEL_VALUE_CHEAT_FILE_SAVE_AS:
return "Salvar Cheat Como";
case MENU_ENUM_LABEL_VALUE_CORE_COUNTERS:
return "Contadores de Core";
case MENU_ENUM_LABEL_VALUE_TAKE_SCREENSHOT:
return "Capturar Tela";
case MENU_ENUM_LABEL_VALUE_RESUME:
return "Retomar";
case MENU_ENUM_LABEL_VALUE_DISK_INDEX:
return "Índice de Discos";
case MENU_ENUM_LABEL_VALUE_FRONTEND_COUNTERS:
return "Contadores do Frontend";
case MENU_ENUM_LABEL_VALUE_DISK_IMAGE_APPEND:
return "Anexar Imagem de Disco";
case MENU_ENUM_LABEL_VALUE_DISK_CYCLE_TRAY_STATUS:
return "Estado do Drive de Disco";
case MENU_ENUM_LABEL_VALUE_NO_PLAYLIST_ENTRIES_AVAILABLE:
return "Histórico vazio.";
case MENU_ENUM_LABEL_VALUE_NO_CORE_INFORMATION_AVAILABLE:
return "Nenhuma informação de core disponível.";
case MENU_ENUM_LABEL_VALUE_NO_CORE_OPTIONS_AVAILABLE:
return "Nenhuma opção de core disponível.";
case MENU_ENUM_LABEL_VALUE_NO_CORES_AVAILABLE:
return "Nenhum core disponível.";
case MENU_ENUM_LABEL_VALUE_NO_CORE:
return "Nenhum Core";
case MENU_ENUM_LABEL_VALUE_DATABASE_MANAGER:
return "Gerenciador de Databases";
case MENU_ENUM_LABEL_VALUE_CURSOR_MANAGER:
return "Gerenciador de Cursores";
case MENU_ENUM_LABEL_VALUE_MAIN_MENU: /* TODO/FIXME - translate */
return "Main Menu";
case MENU_ENUM_LABEL_VALUE_SETTINGS:
return "Definições";
case MENU_ENUM_LABEL_VALUE_QUIT_RETROARCH:
return "Sair do RetroArch";
case MENU_ENUM_LABEL_VALUE_SHUTDOWN:
return "Desligar";
case MENU_ENUM_LABEL_VALUE_REBOOT:
return "Reiniciar";
case MENU_ENUM_LABEL_VALUE_HELP:
return "Ajuda";
case MENU_ENUM_LABEL_VALUE_SAVE_NEW_CONFIG:
return "Salvar Nova Configuração";
case MENU_ENUM_LABEL_VALUE_RESTART_CONTENT:
return "Reiniciar";
case MENU_ENUM_LABEL_VALUE_CORE_UPDATER_LIST:
return "Atualização de Cores";
case MENU_ENUM_LABEL_VALUE_CORE_UPDATER_BUILDBOT_URL:
return "URL Buildbot de Cores";
case MENU_ENUM_LABEL_VALUE_BUILDBOT_ASSETS_URL:
return "URL Buildbot de Recursos (Assets)";
case MENU_ENUM_LABEL_VALUE_NAVIGATION_WRAPAROUND:
return "Navegação Circular";
case MENU_ENUM_LABEL_VALUE_NAVIGATION_BROWSER_FILTER_SUPPORTED_EXTENSIONS_ENABLE:
return "Filtrar por Extensões Suportadas";
case MENU_ENUM_LABEL_VALUE_CORE_UPDATER_AUTO_EXTRACT_ARCHIVE:
return "Autoextrair Arquivos Baixados";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFORMATION:
return "Informação de Sistema";
case MENU_ENUM_LABEL_VALUE_ONLINE_UPDATER:
return "Atualização Online";
case MENU_ENUM_LABEL_VALUE_CORE_INFORMATION:
return "Informação de Core";
case MENU_ENUM_LABEL_VALUE_DIRECTORY_NOT_FOUND:
return "Diretório não encontrado.";
case MENU_ENUM_LABEL_VALUE_NO_ITEMS:
return "Nenhum item.";
case MENU_ENUM_LABEL_VALUE_CORE_LIST:
return "Carregar Core";
case MENU_ENUM_LABEL_VALUE_LOAD_CONTENT:
return "Selecionar Arquivo";
case MENU_ENUM_LABEL_VALUE_CLOSE_CONTENT:
return "Fechar";
case MENU_ENUM_LABEL_VALUE_MANAGEMENT:
return "Databases";
case MENU_ENUM_LABEL_VALUE_SAVE_STATE:
return "Salvar Savestate";
case MENU_ENUM_LABEL_VALUE_LOAD_STATE:
return "Carregar Savestate";
case MENU_ENUM_LABEL_VALUE_RESUME_CONTENT:
return "Retomar";
case MENU_ENUM_LABEL_VALUE_INPUT_DRIVER:
return "Driver de Controlador";
case MENU_ENUM_LABEL_VALUE_AUDIO_DRIVER:
return "Driver de Áudio";
case MENU_ENUM_LABEL_VALUE_JOYPAD_DRIVER:
return "Driver de Joypad";
case MENU_ENUM_LABEL_VALUE_AUDIO_RESAMPLER_DRIVER:
return "Driver do Amostrador de Áudio";
case MENU_ENUM_LABEL_VALUE_RECORD_DRIVER:
return "Driver de Gravação";
case MENU_ENUM_LABEL_VALUE_MENU_DRIVER:
return "Driver de Menu";
case MENU_ENUM_LABEL_VALUE_CAMERA_DRIVER:
return "Driver de Câmera";
case MENU_ENUM_LABEL_VALUE_LOCATION_DRIVER:
return "Driver de Localização";
case MENU_ENUM_LABEL_VALUE_UNABLE_TO_READ_COMPRESSED_FILE:
return "Incapaz de ler arquivo compactado.";
case MENU_ENUM_LABEL_VALUE_OVERLAY_SCALE:
return "Interpolação de Overlay";
case MENU_ENUM_LABEL_VALUE_OVERLAY_PRESET:
return "Predefinições de Overlay";
case MENU_ENUM_LABEL_VALUE_AUDIO_LATENCY:
return "Latência de Áudio (ms)";
case MENU_ENUM_LABEL_VALUE_AUDIO_DEVICE:
return "Dispositivo de Áudio";
case MENU_ENUM_LABEL_VALUE_KEYBOARD_OVERLAY_PRESET:
return "Predefinições de Overlay de Teclado";
case MENU_ENUM_LABEL_VALUE_OVERLAY_OPACITY:
return "Opacidade de Overlay";
case MENU_ENUM_LABEL_VALUE_MENU_WALLPAPER:
return "Papel de Parede do Menu";
case MENU_ENUM_LABEL_VALUE_DYNAMIC_WALLPAPER:
return "Papel de Parede Dinâmico";
case MENU_ENUM_LABEL_VALUE_CORE_INPUT_REMAPPING_OPTIONS: /* UPDATE/FIXME */
return "Opções de Remapeamento de Controlador de Core";
case MENU_ENUM_LABEL_VALUE_SHADER_OPTIONS:
return "Shaders";
case MENU_ENUM_LABEL_VALUE_VIDEO_SHADER_PARAMETERS:
return "Parâmetros de Shader em Uso";
case MENU_ENUM_LABEL_VALUE_VIDEO_SHADER_PRESET_PARAMETERS:
return "Menu de Parâmetros de Shader";
case MENU_ENUM_LABEL_VALUE_VIDEO_SHADER_PRESET_SAVE_AS:
return "Salvar Predefinições de Shader Como";
case MENU_ENUM_LABEL_VALUE_NO_SHADER_PARAMETERS:
return "Nenhum parâmetro de shader disponível.";
case MENU_ENUM_LABEL_VALUE_VIDEO_SHADER_PRESET:
return "Carregar Predefinições de Shader";
case MENU_ENUM_LABEL_VALUE_VIDEO_FILTER:
return "Filtro de Vídeo";
case MENU_ENUM_LABEL_VALUE_AUDIO_DSP_PLUGIN:
return "Plugin de DSP de Áudio";
case MENU_ENUM_LABEL_VALUE_STARTING_DOWNLOAD:
return "Iniciando download: ";
case MENU_ENUM_LABEL_VALUE_SECONDS:
return "segundos";
case MENU_ENUM_LABEL_VALUE_OFF:
return "OFF";
case MENU_ENUM_LABEL_VALUE_ON:
return "ON";
case MENU_ENUM_LABEL_VALUE_UPDATE_ASSETS:
return "Atualizar Recursos (Assets)";
case MENU_ENUM_LABEL_VALUE_UPDATE_CHEATS:
return "Atualizar Cheats";
case MENU_ENUM_LABEL_VALUE_UPDATE_AUTOCONFIG_PROFILES:
return "Atualizar Perfis de Autoconfiguração";
case MENU_ENUM_LABEL_VALUE_UPDATE_DATABASES:
return "Atualizar Databases";
case MENU_ENUM_LABEL_VALUE_UPDATE_OVERLAYS:
return "Atualizar Overlays";
case MENU_ENUM_LABEL_VALUE_UPDATE_CG_SHADERS:
return "Atualizar Shaders Cg";
case MENU_ENUM_LABEL_VALUE_UPDATE_GLSL_SHADERS:
return "Atualizar Shaders GLSL";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_CORE_NAME:
return "Nome do core";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_CORE_LABEL:
return "Rótulo do core";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_SYSTEM_NAME:
return "Nome do sistema";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_SYSTEM_MANUFACTURER:
return "Fabricante do sistema";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_CATEGORIES:
return "Categorias";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_AUTHORS:
return "Autores";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_PERMISSIONS:
return "Permissões";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_LICENSES:
return "Licença(s)";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_SUPPORTED_EXTENSIONS:
return "Extensões suportadas";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_FIRMWARE:
return "Firmware";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_CORE_NOTES:
return "Notas do core";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_BUILD_DATE:
return "Data do build";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_GIT_VERSION:
return "Versão do git";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_CPU_FEATURES:
return "Atributos da CPU";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_FRONTEND_IDENTIFIER:
return "Indentificador do frontend";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_FRONTEND_NAME:
return "Nome do frontend";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_FRONTEND_OS:
return "OS do frontend";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_RETRORATING_LEVEL:
return "Nível de RetroRating";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_POWER_SOURCE:
return "Fonte de energia";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_POWER_SOURCE_NO_SOURCE:
return "Nenhuma fonte";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_POWER_SOURCE_CHARGING:
return "Carregando";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_POWER_SOURCE_CHARGED:
return "Carregado";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_POWER_SOURCE_DISCHARGING:
return "Descarregando";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_VIDEO_CONTEXT_DRIVER:
return "Driver de contexto de vídeo";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_DISPLAY_METRIC_MM_WIDTH:
return "Mostrar largura (mm)";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_DISPLAY_METRIC_MM_HEIGHT:
return "Mostrar altura (mm)";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_DISPLAY_METRIC_DPI:
return "Mostrar DPI";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_LIBRETRODB_SUPPORT:
return "Suporte a LibretroDB";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OVERLAY_SUPPORT:
return "Suporte a Overlay";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_COMMAND_IFACE_SUPPORT:
return "Suporte a interface de comandos";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_NETWORK_COMMAND_IFACE_SUPPORT:
return "Suporte a interface de comandos de rede";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_COCOA_SUPPORT:
return "Suporte a Cocoa";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_RPNG_SUPPORT:
return "Suporte a PNG (RPNG)";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_SDL_SUPPORT:
return "Suporte a SDL1.2";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_SDL2_SUPPORT:
return "Suporte a SDL2";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OPENGL_SUPPORT:
return "Suporte a OpenGL";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OPENGLES_SUPPORT:
return "Suporte a OpenGL ES";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_THREADING_SUPPORT:
return "Suporte a Threading";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_KMS_SUPPORT:
return "Suporte a KMS/EGL";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_UDEV_SUPPORT:
return "Suporte a Udev";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OPENVG_SUPPORT:
return "Suporte a OpenVG";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_EGL_SUPPORT:
return "Suporte a EGL";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_X11_SUPPORT:
return "Suporte a X11";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_WAYLAND_SUPPORT:
return "Suporte a Wayland";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_XVIDEO_SUPPORT:
return "Suporte a XVideo";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_ALSA_SUPPORT:
return "Suporte a ALSA";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OSS_SUPPORT:
return "Suporte a OSS";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OPENAL_SUPPORT:
return "Suporte a OpenAL";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OPENSL_SUPPORT:
return "Suporte a OpenSL";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_RSOUND_SUPPORT:
return "Suporte a RSound";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_ROARAUDIO_SUPPORT:
return "Suporte a RoarAudio";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_JACK_SUPPORT:
return "Suporte a JACK";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_PULSEAUDIO_SUPPORT:
return "Suporte a PulseAudio";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_DSOUND_SUPPORT:
return "Suporte a DirectSound";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_XAUDIO2_SUPPORT:
return "Suporte a XAudio2";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_ZLIB_SUPPORT:
return "Suporte a Zlib";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_7ZIP_SUPPORT:
return "Suporte a 7zip";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_DYLIB_SUPPORT:
return "Suporte a bibliotecas dinâmicas";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_CG_SUPPORT:
return "Suporte a Cg";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_GLSL_SUPPORT:
return "Suporte a GLSL";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_HLSL_SUPPORT:
return "Suporte a HLSL";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_LIBXML2_SUPPORT:
return "Suporte a análise XML libxml2";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_SDL_IMAGE_SUPPORT:
return "Suporte a imagem SDL";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_FBO_SUPPORT:
return "Suporte a OpenGL/Direct3D render-to-texture (multi-pass shaders)";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_FFMPEG_SUPPORT:
return "Suporte a FFmpeg";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_CORETEXT_SUPPORT:
return "Suporte a CoreText";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_FREETYPE_SUPPORT:
return "Suporte a FreeType";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_NETPLAY_SUPPORT:
return "Suporte a Netplay (peer-to-peer)";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_PYTHON_SUPPORT:
return "Suporte a Python (script em shaders)";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_V4L2_SUPPORT:
return "Suporte a Video4Linux2";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_LIBUSB_SUPPORT:
return "Suporte a Libusb";
case MENU_ENUM_LABEL_VALUE_YES:
return "Sim";
case MENU_ENUM_LABEL_VALUE_NO:
return "Não";
case MENU_ENUM_LABEL_VALUE_BACK:
return "VOLTAR";
case MENU_ENUM_LABEL_VALUE_SCREEN_RESOLUTION:
return "Resolução de Tela";
case MENU_ENUM_LABEL_VALUE_DISABLED:
return "Desativado";
case MENU_ENUM_LABEL_VALUE_PORT:
return "Porta";
case MENU_ENUM_LABEL_VALUE_NONE:
return "Nenhum";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_DEVELOPER:
return "Desenvolvedor";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_PUBLISHER:
return "Editora";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_DESCRIPTION:
return "Descrição";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_NAME:
return "Nome";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_ORIGIN:
return "Origem";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_FRANCHISE:
return "Franquia";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_RELEASE_MONTH:
return "Mês de Lançamento";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_RELEASE_YEAR:
return "Ano de Lançamento";
case MENU_ENUM_LABEL_VALUE_TRUE:
return "Verdadeiro";
case MENU_ENUM_LABEL_VALUE_FALSE:
return "Falso";
case MENU_ENUM_LABEL_VALUE_MISSING:
return "Faltando";
case MENU_ENUM_LABEL_VALUE_PRESENT:
return "Presente";
case MENU_ENUM_LABEL_VALUE_OPTIONAL:
return "Opcional";
case MENU_ENUM_LABEL_VALUE_REQUIRED:
return "Obrigatório";
case MENU_ENUM_LABEL_VALUE_STATUS:
return "Status";
case MENU_ENUM_LABEL_VALUE_AUDIO_SETTINGS:
return "Áudio";
case MENU_ENUM_LABEL_VALUE_INPUT_SETTINGS:
return "Entradas";
case MENU_ENUM_LABEL_VALUE_ONSCREEN_DISPLAY_SETTINGS:
return "Informações de Tela";
case MENU_ENUM_LABEL_VALUE_OVERLAY_SETTINGS:
return "Overlay em Tela";
case MENU_ENUM_LABEL_VALUE_MENU_SETTINGS:
return "Menu";
case MENU_ENUM_LABEL_VALUE_MULTIMEDIA_SETTINGS:
return "Reprodução de Mídia"; /* UPDATE/FIXME */
case MENU_ENUM_LABEL_VALUE_UI_SETTINGS:
return "Interface de Usuário";
case MENU_ENUM_LABEL_VALUE_MENU_FILE_BROWSER_SETTINGS:
return "Menu de Navegação";
case MENU_ENUM_LABEL_VALUE_CORE_UPDATER_SETTINGS:
return "Atualização de Core"; /* UPDATE/FIXME */
case MENU_ENUM_LABEL_VALUE_NETWORK_SETTINGS:
return "Rede";
case MENU_ENUM_LABEL_VALUE_PLAYLIST_SETTINGS:
return "Histórico";
case MENU_ENUM_LABEL_VALUE_USER_SETTINGS:
return "Usuário";
case MENU_ENUM_LABEL_VALUE_DIRECTORY_SETTINGS:
return "Diretórios";
case MENU_ENUM_LABEL_VALUE_RECORDING_SETTINGS:
return "Gravação";
case MENU_ENUM_LABEL_VALUE_NO_INFORMATION_AVAILABLE:
return "Nenhuma informação disponível.";
case MENU_ENUM_LABEL_VALUE_INPUT_USER_BINDS:
return "Usuário %u";
case MENU_ENUM_LABEL_VALUE_LANG_ENGLISH:
return "Inglês";
case MENU_ENUM_LABEL_VALUE_LANG_JAPANESE:
return "Japonês";
case MENU_ENUM_LABEL_VALUE_LANG_FRENCH:
return "Francês";
case MENU_ENUM_LABEL_VALUE_LANG_SPANISH:
return "Espanhol";
case MENU_ENUM_LABEL_VALUE_LANG_GERMAN:
return "Alemão";
case MENU_ENUM_LABEL_VALUE_LANG_ITALIAN:
return "Italiano";
case MENU_ENUM_LABEL_VALUE_LANG_DUTCH:
return "Holandês";
case MENU_ENUM_LABEL_VALUE_LANG_PORTUGUESE:
return "Português";
case MENU_ENUM_LABEL_VALUE_LANG_RUSSIAN:
return "Russo";
case MENU_ENUM_LABEL_VALUE_LANG_KOREAN:
return "Coreano";
case MENU_ENUM_LABEL_VALUE_LANG_CHINESE_TRADITIONAL:
return "Chinês (Tradicional)";
case MENU_ENUM_LABEL_VALUE_LANG_CHINESE_SIMPLIFIED:
return "Chinês (Simplificado)";
case MENU_ENUM_LABEL_VALUE_LANG_ESPERANTO:
return "Esperanto";
case MENU_ENUM_LABEL_VALUE_LEFT_ANALOG:
return "Analógico Esquerdo";
case MENU_ENUM_LABEL_VALUE_RIGHT_ANALOG:
return "Analógico Direito";
case MENU_ENUM_LABEL_VALUE_INPUT_HOTKEY_BINDS:
return "Associação de Teclas de Atalho";
case MENU_ENUM_LABEL_VALUE_FRAME_THROTTLE_SETTINGS:
return "Definições do Limitador de Quadros";
case MENU_ENUM_LABEL_VALUE_SEARCH:
return "Busca:";
case MENU_ENUM_LABEL_VALUE_USE_BUILTIN_IMAGE_VIEWER:
return "Usar Visualizador de Imagens Interno";
default:
break;
}

File diff suppressed because it is too large Load Diff

View File

@ -603,24 +603,24 @@ static int menu_cbs_init_bind_deferred_push_compare_label(
menu_file_list_cbs_t *cbs,
const char *label, uint32_t label_hash)
{
if (string_is_equal(label, menu_hash_to_str_enum(MENU_ENUM_LABEL_DEFERRED_CORE_SETTINGS_LIST)))
if (string_is_equal(label, msg_hash_to_str(MENU_ENUM_LABEL_DEFERRED_CORE_SETTINGS_LIST)))
{
BIND_ACTION_DEFERRED_PUSH(cbs, deferred_push_core_settings_list);
return 0;
}
if (strstr(label, menu_hash_to_str_enum(MENU_ENUM_LABEL_DEFERRED_RDB_ENTRY_DETAIL)))
if (strstr(label, msg_hash_to_str(MENU_ENUM_LABEL_DEFERRED_RDB_ENTRY_DETAIL)))
{
BIND_ACTION_DEFERRED_PUSH(cbs, deferred_push_rdb_entry_detail);
}
else if (strstr(label,
menu_hash_to_str_enum(MENU_ENUM_LABEL_DEFERRED_RPL_ENTRY_ACTIONS)))
msg_hash_to_str(MENU_ENUM_LABEL_DEFERRED_RPL_ENTRY_ACTIONS)))
{
BIND_ACTION_DEFERRED_PUSH(cbs, deferred_push_rpl_entry_actions);
}
else
{
if (cbs->enum_idx != MENU_ENUM_LABEL_UNKNOWN)
if (cbs->enum_idx != MSG_UNKNOWN)
{
switch (cbs->enum_idx)
{

View File

@ -96,7 +96,7 @@ static void menu_action_setting_disp_set_label_configurations(
fill_pathname_base(s, global->path.config,
len);
else
strlcpy(s, menu_hash_to_str_enum(MENU_ENUM_LABEL_VALUE_DIRECTORY_DEFAULT), len);
strlcpy(s, msg_hash_to_str(MENU_ENUM_LABEL_VALUE_DIRECTORY_DEFAULT), len);
}
static void menu_action_setting_disp_set_label_shader_filter_pass(
@ -130,15 +130,15 @@ static void menu_action_setting_disp_set_label_shader_filter_pass(
switch (shader->pass[pass].filter)
{
case 0:
strlcpy(s, menu_hash_to_str_enum(MENU_ENUM_LABEL_VALUE_DONT_CARE),
strlcpy(s, msg_hash_to_str(MENU_ENUM_LABEL_VALUE_DONT_CARE),
len);
break;
case 1:
strlcpy(s, menu_hash_to_str_enum(MENU_ENUM_LABEL_VALUE_LINEAR),
strlcpy(s, msg_hash_to_str(MENU_ENUM_LABEL_VALUE_LINEAR),
len);
break;
case 2:
strlcpy(s, menu_hash_to_str_enum(MENU_ENUM_LABEL_VALUE_NEAREST),
strlcpy(s, msg_hash_to_str(MENU_ENUM_LABEL_VALUE_NEAREST),
len);
break;
}
@ -159,7 +159,7 @@ static void menu_action_setting_disp_set_label_filter(
*s = '\0';
*w = 19;
strlcpy(s2, path, len2);
strlcpy(s, menu_hash_to_str_enum(MENU_ENUM_LABEL_VALUE_NOT_AVAILABLE), len);
strlcpy(s, msg_hash_to_str(MENU_ENUM_LABEL_VALUE_NOT_AVAILABLE), len);
if (settings && *settings->path.softfilter_plugin)
fill_short_pathname_representation(s,
@ -240,7 +240,7 @@ static void menu_action_setting_disp_set_label_shader_pass(
*s = '\0';
*w = 19;
strlcpy(s2, path, len2);
strlcpy(s, menu_hash_to_str_enum(MENU_ENUM_LABEL_VALUE_NOT_AVAILABLE), len);
strlcpy(s, msg_hash_to_str(MENU_ENUM_LABEL_VALUE_NOT_AVAILABLE), len);
#if defined(HAVE_CG) || defined(HAVE_GLSL) || defined(HAVE_HLSL)
menu_driver_ctl(RARCH_MENU_CTL_SHADER_GET,
@ -273,9 +273,9 @@ static void menu_action_setting_disp_set_label_shader_default_filter(
return;
if (settings->video.smooth)
strlcpy(s, menu_hash_to_str_enum(MENU_ENUM_LABEL_VALUE_LINEAR), len);
strlcpy(s, msg_hash_to_str(MENU_ENUM_LABEL_VALUE_LINEAR), len);
else
strlcpy(s, menu_hash_to_str_enum(MENU_ENUM_LABEL_VALUE_NEAREST), len);
strlcpy(s, msg_hash_to_str(MENU_ENUM_LABEL_VALUE_NEAREST), len);
}
static void menu_action_setting_disp_set_label_shader_parameter(
@ -377,7 +377,7 @@ static void menu_action_setting_disp_set_label_shader_scale_pass(
scale_value = shader->pass[pass].fbo.scale_x;
if (!scale_value)
strlcpy(s, menu_hash_to_str_enum(MENU_ENUM_LABEL_VALUE_DONT_CARE), len);
strlcpy(s, msg_hash_to_str(MENU_ENUM_LABEL_VALUE_DONT_CARE), len);
else
snprintf(s, len, "%ux", scale_value);
#endif
@ -475,10 +475,10 @@ static void menu_action_setting_disp_set_label_cheat(
snprintf(s, len, "%s : (%s)",
(cheat_manager_get_code(cheat_index) != NULL)
? cheat_manager_get_code(cheat_index) :
menu_hash_to_str_enum(MENU_ENUM_LABEL_VALUE_NOT_AVAILABLE),
msg_hash_to_str(MENU_ENUM_LABEL_VALUE_NOT_AVAILABLE),
cheat_manager_get_code_state(cheat_index) ?
menu_hash_to_str_enum(MENU_ENUM_LABEL_VALUE_ON) :
menu_hash_to_str_enum(MENU_ENUM_LABEL_VALUE_OFF)
msg_hash_to_str(MENU_ENUM_LABEL_VALUE_ON) :
msg_hash_to_str(MENU_ENUM_LABEL_VALUE_OFF)
);
*w = 19;
strlcpy(s2, path, len2);
@ -800,7 +800,7 @@ static void menu_action_setting_disp_set_label_menu_disk_index(
current = control->get_image_index();
if (current >= images)
strlcpy(s, menu_hash_to_str_enum(MENU_ENUM_LABEL_VALUE_NO_DISK), len);
strlcpy(s, msg_hash_to_str(MENU_ENUM_LABEL_VALUE_NO_DISK), len);
else
snprintf(s, len, "%u", current + 1);
}
@ -868,7 +868,7 @@ static void menu_action_setting_disp_set_label_menu_video_resolution(
snprintf(s, len, "%ux%u", width, height);
}
else
strlcpy(s, menu_hash_to_str_enum(MENU_ENUM_LABEL_VALUE_NOT_AVAILABLE), len);
strlcpy(s, msg_hash_to_str(MENU_ENUM_LABEL_VALUE_NOT_AVAILABLE), len);
}
static void menu_action_setting_generic_disp_set_label(
@ -1355,7 +1355,7 @@ static void menu_action_setting_disp_set_label(file_list_t* list,
static int menu_cbs_init_bind_get_string_representation_compare_label(
menu_file_list_cbs_t *cbs, uint32_t label_hash)
{
if (cbs->enum_idx != MENU_ENUM_LABEL_UNKNOWN)
if (cbs->enum_idx != MSG_UNKNOWN)
{
switch (cbs->enum_idx)
{
@ -1707,7 +1707,7 @@ int menu_cbs_init_bind_get_string_representation(menu_file_list_cbs_t *cbs,
if (!cbs)
return -1;
if (cbs->enum_idx != MENU_ENUM_LABEL_UNKNOWN)
if (cbs->enum_idx != MSG_UNKNOWN)
{
switch (cbs->enum_idx)
{

View File

@ -39,7 +39,7 @@ static int action_info_default(unsigned type, const char *label)
info.directory_ptr = selection;
info.enum_idx = MENU_ENUM_LABEL_INFO_SCREEN;
strlcpy(info.label,
menu_hash_to_str_enum(MENU_ENUM_LABEL_INFO_SCREEN),
msg_hash_to_str(MENU_ENUM_LABEL_INFO_SCREEN),
sizeof(info.label));
if (!menu_displaylist_ctl(DISPLAYLIST_HELP, &info))

View File

@ -392,7 +392,7 @@ static int menu_cbs_init_bind_left_compare_label(menu_file_list_cbs_t *cbs,
{
const char *parent_group = menu_setting_get_parent_group(cbs->setting);
if (string_is_equal(parent_group, menu_hash_to_str_enum(MENU_ENUM_LABEL_MAIN_MENU))
if (string_is_equal(parent_group, msg_hash_to_str(MENU_ENUM_LABEL_MAIN_MENU))
&& (menu_setting_get_type(cbs->setting) == ST_GROUP))
{
BIND_ACTION_LEFT(cbs, action_left_mainmenu);
@ -423,7 +423,7 @@ static int menu_cbs_init_bind_left_compare_label(menu_file_list_cbs_t *cbs,
}
else
{
if (cbs->enum_idx != MENU_ENUM_LABEL_UNKNOWN)
if (cbs->enum_idx != MSG_UNKNOWN)
{
switch (cbs->enum_idx)
{
@ -447,9 +447,9 @@ static int menu_cbs_init_bind_left_compare_label(menu_file_list_cbs_t *cbs,
break;
case MENU_ENUM_LABEL_NO_ITEMS:
case MENU_ENUM_LABEL_NO_PLAYLIST_ENTRIES_AVAILABLE:
if ( string_is_equal(menu_label, menu_hash_to_str_enum(MENU_ENUM_LABEL_MAIN_MENU)) ||
string_is_equal(menu_label, menu_hash_to_str_enum(MENU_ENUM_LABEL_PLAYLISTS_TAB)) ||
string_is_equal(menu_label, menu_hash_to_str_enum(MENU_ENUM_LABEL_HORIZONTAL_MENU))
if ( string_is_equal(menu_label, msg_hash_to_str(MENU_ENUM_LABEL_MAIN_MENU)) ||
string_is_equal(menu_label, msg_hash_to_str(MENU_ENUM_LABEL_PLAYLISTS_TAB)) ||
string_is_equal(menu_label, msg_hash_to_str(MENU_ENUM_LABEL_HORIZONTAL_MENU))
)
{
BIND_ACTION_LEFT(cbs, action_left_mainmenu);
@ -480,9 +480,9 @@ static int menu_cbs_init_bind_left_compare_label(menu_file_list_cbs_t *cbs,
BIND_ACTION_LEFT(cbs, action_left_video_resolution);
break;
case MENU_LABEL_NO_PLAYLIST_ENTRIES_AVAILABLE:
if ( string_is_equal(menu_label, menu_hash_to_str_enum(MENU_ENUM_LABEL_MAIN_MENU)) ||
string_is_equal(menu_label, menu_hash_to_str_enum(MENU_ENUM_LABEL_PLAYLISTS_TAB)) ||
string_is_equal(menu_label, menu_hash_to_str_enum(MENU_ENUM_LABEL_HORIZONTAL_MENU))
if ( string_is_equal(menu_label, msg_hash_to_str(MENU_ENUM_LABEL_MAIN_MENU)) ||
string_is_equal(menu_label, msg_hash_to_str(MENU_ENUM_LABEL_PLAYLISTS_TAB)) ||
string_is_equal(menu_label, msg_hash_to_str(MENU_ENUM_LABEL_HORIZONTAL_MENU))
)
{
BIND_ACTION_LEFT(cbs, action_left_mainmenu);
@ -567,11 +567,11 @@ static int menu_cbs_init_bind_left_compare_type(menu_file_list_cbs_t *cbs,
case MENU_FILE_DOWNLOAD_THUMBNAIL_CONTENT:
case MENU_FILE_SCAN_DIRECTORY:
case MENU_SETTING_GROUP:
if ( string_is_equal(menu_label, menu_hash_to_str_enum(MENU_ENUM_LABEL_HISTORY_TAB)) ||
string_is_equal(menu_label, menu_hash_to_str_enum(MENU_ENUM_LABEL_PLAYLISTS_TAB)) ||
string_is_equal(menu_label, menu_hash_to_str_enum(MENU_ENUM_LABEL_ADD_TAB)) ||
string_is_equal(menu_label, menu_hash_to_str_enum(MENU_ENUM_LABEL_HORIZONTAL_MENU)) ||
string_is_equal(menu_label, menu_hash_to_str_enum(MENU_ENUM_LABEL_SETTINGS_TAB))
if ( string_is_equal(menu_label, msg_hash_to_str(MENU_ENUM_LABEL_HISTORY_TAB)) ||
string_is_equal(menu_label, msg_hash_to_str(MENU_ENUM_LABEL_PLAYLISTS_TAB)) ||
string_is_equal(menu_label, msg_hash_to_str(MENU_ENUM_LABEL_ADD_TAB)) ||
string_is_equal(menu_label, msg_hash_to_str(MENU_ENUM_LABEL_HORIZONTAL_MENU)) ||
string_is_equal(menu_label, msg_hash_to_str(MENU_ENUM_LABEL_SETTINGS_TAB))
)
{
BIND_ACTION_LEFT(cbs, action_left_mainmenu);
@ -603,12 +603,12 @@ int menu_cbs_init_bind_left(menu_file_list_cbs_t *cbs,
if (type == MENU_SETTING_NO_ITEM)
{
if ( string_is_equal(menu_label, menu_hash_to_str_enum(MENU_ENUM_LABEL_HISTORY_TAB)) ||
string_is_equal(menu_label, menu_hash_to_str_enum(MENU_ENUM_LABEL_PLAYLISTS_TAB)) ||
string_is_equal(menu_label, menu_hash_to_str_enum(MENU_ENUM_LABEL_ADD_TAB)) ||
string_is_equal(menu_label, menu_hash_to_str_enum(MENU_ENUM_LABEL_MAIN_MENU)) ||
string_is_equal(menu_label, menu_hash_to_str_enum(MENU_ENUM_LABEL_HORIZONTAL_MENU)) ||
string_is_equal(menu_label, menu_hash_to_str_enum(MENU_ENUM_LABEL_SETTINGS_TAB))
if ( string_is_equal(menu_label, msg_hash_to_str(MENU_ENUM_LABEL_HISTORY_TAB)) ||
string_is_equal(menu_label, msg_hash_to_str(MENU_ENUM_LABEL_PLAYLISTS_TAB)) ||
string_is_equal(menu_label, msg_hash_to_str(MENU_ENUM_LABEL_ADD_TAB)) ||
string_is_equal(menu_label, msg_hash_to_str(MENU_ENUM_LABEL_MAIN_MENU)) ||
string_is_equal(menu_label, msg_hash_to_str(MENU_ENUM_LABEL_HORIZONTAL_MENU)) ||
string_is_equal(menu_label, msg_hash_to_str(MENU_ENUM_LABEL_SETTINGS_TAB))
)
{
BIND_ACTION_LEFT(cbs, action_left_mainmenu);

View File

@ -48,7 +48,7 @@ enum
typedef struct
{
enum menu_hash_enums enum_idx;
enum msg_hash_enums enum_idx;
char path[PATH_MAX_LENGTH];
} menu_file_transfer_t;
@ -125,7 +125,7 @@ int generic_action_ok_displaylist_push(const char *path,
const char *info_label = NULL;
const char *info_path = NULL;
menu_handle_t *menu = NULL;
enum menu_hash_enums enum_idx = MENU_ENUM_LABEL_UNKNOWN;
enum msg_hash_enums enum_idx = MSG_UNKNOWN;
global_t *global = global_get_ptr();
settings_t *settings = config_get_ptr();
file_list_t *selection_buf = menu_entries_get_selection_buf_ptr(0);
@ -147,7 +147,7 @@ int generic_action_ok_displaylist_push(const char *path,
info.type = type;
info.directory_ptr = idx;
info_path = label;
info_label = menu_hash_to_str_enum(
info_label = msg_hash_to_str(
MENU_ENUM_LABEL_DEFERRED_USER_BINDS_LIST);
info.enum_idx = MENU_ENUM_LABEL_DEFERRED_USER_BINDS_LIST;
break;
@ -161,7 +161,7 @@ int generic_action_ok_displaylist_push(const char *path,
fill_pathname_join(detect_content_path, menu_path, content_path,
sizeof(detect_content_path));
info_label = menu_hash_to_str_enum(
info_label = msg_hash_to_str(
MENU_ENUM_LABEL_DEFERRED_ARCHIVE_OPEN_DETECT_CORE);
info.enum_idx = MENU_ENUM_LABEL_DEFERRED_ARCHIVE_OPEN_DETECT_CORE;
info_path = path;
@ -178,7 +178,7 @@ int generic_action_ok_displaylist_push(const char *path,
fill_pathname_join(detect_content_path, menu_path, content_path,
sizeof(detect_content_path));
info_label = menu_hash_to_str_enum(
info_label = msg_hash_to_str(
MENU_ENUM_LABEL_DEFERRED_ARCHIVE_OPEN);
info.enum_idx = MENU_ENUM_LABEL_DEFERRED_ARCHIVE_OPEN;
info_path = path;
@ -192,7 +192,7 @@ int generic_action_ok_displaylist_push(const char *path,
break;
case ACTION_OK_DL_RPL_ENTRY:
strlcpy(menu->deferred_path, label, sizeof(menu->deferred_path));
info_label = menu_hash_to_str_enum(MENU_ENUM_LABEL_DEFERRED_RPL_ENTRY_ACTIONS);
info_label = msg_hash_to_str(MENU_ENUM_LABEL_DEFERRED_RPL_ENTRY_ACTIONS);
info.enum_idx = MENU_ENUM_LABEL_DEFERRED_RPL_ENTRY_ACTIONS;
info.directory_ptr = idx;
rpl_entry_selection_ptr = idx;
@ -200,7 +200,7 @@ int generic_action_ok_displaylist_push(const char *path,
case ACTION_OK_DL_AUDIO_DSP_PLUGIN:
info.directory_ptr = idx;
info_path = settings->directory.audio_filter;
info_label = menu_hash_to_str_enum(MENU_ENUM_LABEL_AUDIO_DSP_PLUGIN);
info_label = msg_hash_to_str(MENU_ENUM_LABEL_AUDIO_DSP_PLUGIN);
info.enum_idx = MENU_ENUM_LABEL_AUDIO_DSP_PLUGIN;
break;
case ACTION_OK_DL_SHADER_PASS:
@ -291,7 +291,7 @@ int generic_action_ok_displaylist_push(const char *path,
break;
case ACTION_OK_DL_RDB_ENTRY:
fill_pathname_join_delim(tmp,
menu_hash_to_str_enum(MENU_ENUM_LABEL_DEFERRED_RDB_ENTRY_DETAIL),
msg_hash_to_str(MENU_ENUM_LABEL_DEFERRED_RDB_ENTRY_DETAIL),
path, '|', sizeof(tmp));
info.directory_ptr = idx;
@ -316,7 +316,7 @@ int generic_action_ok_displaylist_push(const char *path,
info.type = type;
info.directory_ptr = idx;
info_path = path;
info_label = menu_hash_to_str_enum(
info_label = msg_hash_to_str(
MENU_ENUM_LABEL_DEFERRED_ARCHIVE_ACTION_DETECT_CORE);
info.enum_idx = MENU_ENUM_LABEL_DEFERRED_ARCHIVE_ACTION_DETECT_CORE;
@ -329,7 +329,7 @@ int generic_action_ok_displaylist_push(const char *path,
info.type = type;
info.directory_ptr = idx;
info_path = path;
info_label = menu_hash_to_str_enum(
info_label = msg_hash_to_str(
MENU_ENUM_LABEL_DEFERRED_ARCHIVE_ACTION);
info.enum_idx = MENU_ENUM_LABEL_DEFERRED_ARCHIVE_ACTION;
@ -362,7 +362,7 @@ int generic_action_ok_displaylist_push(const char *path,
info.directory_ptr = idx;
info_path = tmp;
info_label = menu_hash_to_str_enum(
info_label = msg_hash_to_str(
MENU_ENUM_LABEL_DEFERRED_DATABASE_MANAGER_LIST);
info.enum_idx = MENU_ENUM_LABEL_DEFERRED_DATABASE_MANAGER_LIST;
break;
@ -372,7 +372,7 @@ int generic_action_ok_displaylist_push(const char *path,
info.directory_ptr = idx;
info_path = tmp;
info_label = menu_hash_to_str_enum(
info_label = msg_hash_to_str(
MENU_ENUM_LABEL_DEFERRED_CURSOR_MANAGER_LIST);
info.enum_idx = MENU_ENUM_LABEL_DEFERRED_CURSOR_MANAGER_LIST;
break;
@ -381,7 +381,7 @@ int generic_action_ok_displaylist_push(const char *path,
info.type = type;
info.directory_ptr = idx;
info_path = path;
info_label = menu_hash_to_str_enum(
info_label = msg_hash_to_str(
MENU_ENUM_LABEL_DEFERRED_CORE_UPDATER_LIST);
info.enum_idx = MENU_ENUM_LABEL_DEFERRED_CORE_UPDATER_LIST;
break;
@ -390,7 +390,7 @@ int generic_action_ok_displaylist_push(const char *path,
info.type = type;
info.directory_ptr = idx;
info_path = path;
info_label = menu_hash_to_str_enum(
info_label = msg_hash_to_str(
MENU_ENUM_LABEL_DEFERRED_THUMBNAILS_UPDATER_LIST);
info.enum_idx = MENU_ENUM_LABEL_DEFERRED_THUMBNAILS_UPDATER_LIST;
break;
@ -399,7 +399,7 @@ int generic_action_ok_displaylist_push(const char *path,
info.type = type;
info.directory_ptr = idx;
info_path = path;
info_label = menu_hash_to_str_enum(
info_label = msg_hash_to_str(
MENU_ENUM_LABEL_DEFERRED_CORE_CONTENT_LIST);
info.enum_idx = MENU_ENUM_LABEL_DEFERRED_CORE_CONTENT_LIST;
break;
@ -408,20 +408,20 @@ int generic_action_ok_displaylist_push(const char *path,
info.type = type;
info.directory_ptr = idx;
info_path = path;
info_label = menu_hash_to_str_enum(MENU_ENUM_LABEL_DEFERRED_LAKKA_LIST);
info_label = msg_hash_to_str(MENU_ENUM_LABEL_DEFERRED_LAKKA_LIST);
info.enum_idx = MENU_ENUM_LABEL_DEFERRED_LAKKA_LIST;
break;
case ACTION_OK_DL_DEFERRED_CORE_LIST:
info.directory_ptr = idx;
info_path = settings->directory.libretro;
info_label = menu_hash_to_str_enum(MENU_ENUM_LABEL_DEFERRED_CORE_LIST);
info_label = msg_hash_to_str(MENU_ENUM_LABEL_DEFERRED_CORE_LIST);
info.enum_idx = MENU_ENUM_LABEL_DEFERRED_CORE_LIST;
break;
case ACTION_OK_DL_DEFERRED_CORE_LIST_SET:
info.directory_ptr = idx;
rdb_entry_start_game_selection_ptr = idx;
info_path = settings->directory.libretro;
info_label = menu_hash_to_str_enum(
info_label = msg_hash_to_str(
MENU_ENUM_LABEL_DEFERRED_CORE_LIST_SET);
info.enum_idx = MENU_ENUM_LABEL_DEFERRED_CORE_LIST_SET;
break;
@ -429,70 +429,70 @@ int generic_action_ok_displaylist_push(const char *path,
info.directory_ptr = idx;
info.type = type;
info_path = path;
info_label = menu_hash_to_str_enum(MENU_ENUM_LABEL_DEFERRED_ACCOUNTS_LIST);
info_label = msg_hash_to_str(MENU_ENUM_LABEL_DEFERRED_ACCOUNTS_LIST);
info.enum_idx = MENU_ENUM_LABEL_DEFERRED_ACCOUNTS_LIST;
break;
case ACTION_OK_DL_INPUT_SETTINGS_LIST:
info.directory_ptr = idx;
info.type = type;
info_path = path;
info_label = menu_hash_to_str_enum(MENU_ENUM_LABEL_DEFERRED_INPUT_SETTINGS_LIST);
info_label = msg_hash_to_str(MENU_ENUM_LABEL_DEFERRED_INPUT_SETTINGS_LIST);
info.enum_idx = MENU_ENUM_LABEL_DEFERRED_INPUT_SETTINGS_LIST;
break;
case ACTION_OK_DL_DRIVER_SETTINGS_LIST:
info.directory_ptr = idx;
info.type = type;
info_path = path;
info_label = menu_hash_to_str_enum(MENU_ENUM_LABEL_DEFERRED_DRIVER_SETTINGS_LIST);
info_label = msg_hash_to_str(MENU_ENUM_LABEL_DEFERRED_DRIVER_SETTINGS_LIST);
info.enum_idx = MENU_ENUM_LABEL_DEFERRED_DRIVER_SETTINGS_LIST;
break;
case ACTION_OK_DL_CORE_SETTINGS_LIST:
info.directory_ptr = idx;
info.type = type;
info_path = path;
info_label = menu_hash_to_str_enum(MENU_ENUM_LABEL_DEFERRED_CORE_SETTINGS_LIST);
info_label = msg_hash_to_str(MENU_ENUM_LABEL_DEFERRED_CORE_SETTINGS_LIST);
info.enum_idx = MENU_ENUM_LABEL_DEFERRED_CORE_SETTINGS_LIST;
break;
case ACTION_OK_DL_VIDEO_SETTINGS_LIST:
info.directory_ptr = idx;
info.type = type;
info_path = path;
info_label = menu_hash_to_str_enum(MENU_ENUM_LABEL_DEFERRED_VIDEO_SETTINGS_LIST);
info_label = msg_hash_to_str(MENU_ENUM_LABEL_DEFERRED_VIDEO_SETTINGS_LIST);
info.enum_idx = MENU_ENUM_LABEL_DEFERRED_VIDEO_SETTINGS_LIST;
break;
case ACTION_OK_DL_AUDIO_SETTINGS_LIST:
info.directory_ptr = idx;
info.type = type;
info_path = path;
info_label = menu_hash_to_str_enum(MENU_ENUM_LABEL_DEFERRED_AUDIO_SETTINGS_LIST);
info_label = msg_hash_to_str(MENU_ENUM_LABEL_DEFERRED_AUDIO_SETTINGS_LIST);
info.enum_idx = MENU_ENUM_LABEL_DEFERRED_AUDIO_SETTINGS_LIST;
break;
case ACTION_OK_DL_INPUT_HOTKEY_BINDS_LIST:
info.directory_ptr = idx;
info.type = type;
info_path = path;
info_label = menu_hash_to_str_enum(MENU_ENUM_LABEL_DEFERRED_INPUT_HOTKEY_BINDS_LIST);
info_label = msg_hash_to_str(MENU_ENUM_LABEL_DEFERRED_INPUT_HOTKEY_BINDS_LIST);
info.enum_idx = MENU_ENUM_LABEL_DEFERRED_INPUT_HOTKEY_BINDS_LIST;
break;
case ACTION_OK_DL_PLAYLIST_SETTINGS_LIST:
info.directory_ptr = idx;
info.type = type;
info_path = path;
info_label = menu_hash_to_str_enum(MENU_ENUM_LABEL_DEFERRED_PLAYLIST_SETTINGS_LIST);
info_label = msg_hash_to_str(MENU_ENUM_LABEL_DEFERRED_PLAYLIST_SETTINGS_LIST);
info.enum_idx = MENU_ENUM_LABEL_DEFERRED_PLAYLIST_SETTINGS_LIST;
break;
case ACTION_OK_DL_ACCOUNTS_CHEEVOS_LIST:
info.directory_ptr = idx;
info.type = type;
info_path = path;
info_label = menu_hash_to_str_enum(MENU_ENUM_LABEL_DEFERRED_ACCOUNTS_CHEEVOS_LIST);
info_label = msg_hash_to_str(MENU_ENUM_LABEL_DEFERRED_ACCOUNTS_CHEEVOS_LIST);
info.enum_idx = MENU_ENUM_LABEL_DEFERRED_ACCOUNTS_CHEEVOS_LIST;
break;
case ACTION_OK_DL_CONTENT_SETTINGS:
dl_type = DISPLAYLIST_CONTENT_SETTINGS;
info.list = selection_buf;
info_path = menu_hash_to_str_enum(MENU_ENUM_LABEL_VALUE_CONTENT_SETTINGS);
info_label = menu_hash_to_str_enum(MENU_ENUM_LABEL_CONTENT_SETTINGS);
info_path = msg_hash_to_str(MENU_ENUM_LABEL_VALUE_CONTENT_SETTINGS);
info_label = msg_hash_to_str(MENU_ENUM_LABEL_CONTENT_SETTINGS);
info.enum_idx = MENU_ENUM_LABEL_CONTENT_SETTINGS;
menu_entries_add_enum(menu_stack, info_path, info_label,
MENU_ENUM_LABEL_CONTENT_SETTINGS,
@ -522,7 +522,7 @@ static int file_load_with_detect_core_wrapper(size_t idx, size_t entry_idx,
char new_core_path[PATH_MAX_LENGTH] = {0};
char menu_path_new[PATH_MAX_LENGTH] = {0};
int ret = 0;
enum menu_hash_enums enum_idx = MENU_ENUM_LABEL_UNKNOWN;
enum msg_hash_enums enum_idx = MSG_UNKNOWN;
const char *menu_path = NULL;
const char *menu_label = NULL;
menu_handle_t *menu = NULL;
@ -537,11 +537,11 @@ static int file_load_with_detect_core_wrapper(size_t idx, size_t entry_idx,
strlcpy(menu_path_new, menu_path, sizeof(menu_path_new));
if (string_is_equal(menu_label,
menu_hash_to_str_enum(MENU_ENUM_LABEL_DEFERRED_ARCHIVE_OPEN_DETECT_CORE)))
msg_hash_to_str(MENU_ENUM_LABEL_DEFERRED_ARCHIVE_OPEN_DETECT_CORE)))
fill_pathname_join(menu_path_new, menu->scratch2_buf, menu->scratch_buf,
sizeof(menu_path_new));
else if (string_is_equal(menu_label,
menu_hash_to_str_enum(MENU_ENUM_LABEL_DEFERRED_ARCHIVE_OPEN)))
msg_hash_to_str(MENU_ENUM_LABEL_DEFERRED_ARCHIVE_OPEN)))
fill_pathname_join(menu_path_new, menu->scratch2_buf, menu->scratch_buf,
sizeof(menu_path_new));
@ -898,12 +898,12 @@ enum
static int generic_action_ok(const char *path,
const char *label, unsigned type, size_t idx, size_t entry_idx,
unsigned id, enum menu_hash_enums flush_id)
unsigned id, enum msg_hash_enums flush_id)
{
char action_path[PATH_MAX_LENGTH] = {0};
unsigned flush_type = 0;
int ret = 0;
enum menu_hash_enums enum_idx = MENU_ENUM_LABEL_UNKNOWN;
enum msg_hash_enums enum_idx = MSG_UNKNOWN;
const char *menu_path = NULL;
const char *menu_label = NULL;
const char *flush_char = NULL;
@ -930,7 +930,7 @@ static int generic_action_ok(const char *path,
strlcpy(settings->path.menu_wallpaper,
action_path, sizeof(settings->path.menu_wallpaper));
task_push_image_load(action_path,
menu_hash_to_str_enum(MENU_ENUM_LABEL_CB_MENU_WALLPAPER),
msg_hash_to_str(MENU_ENUM_LABEL_CB_MENU_WALLPAPER),
menu_display_handle_wallpaper_upload, NULL);
}
break;
@ -963,7 +963,7 @@ static int generic_action_ok(const char *path,
{
struct video_shader *shader = NULL;
menu_driver_ctl(RARCH_MENU_CTL_SHADER_GET, &shader);
flush_char = menu_hash_to_str_enum(flush_id);
flush_char = msg_hash_to_str(flush_id);
menu_shader_manager_set_preset(shader,
video_shader_parse_type(action_path, RARCH_SHADER_NONE),
action_path);
@ -973,7 +973,7 @@ static int generic_action_ok(const char *path,
{
struct video_shader *shader = NULL;
menu_driver_ctl(RARCH_MENU_CTL_SHADER_GET, &shader);
flush_char = menu_hash_to_str_enum(flush_id);
flush_char = msg_hash_to_str(flush_id);
strlcpy(
shader->pass[hack_shader_pass].source.path,
action_path,
@ -985,7 +985,7 @@ static int generic_action_ok(const char *path,
case ACTION_OK_LOAD_RECORD_CONFIGFILE:
{
global_t *global = global_get_ptr();
flush_char = menu_hash_to_str_enum(flush_id);
flush_char = msg_hash_to_str(flush_id);
strlcpy(global->record.config, action_path,
sizeof(global->record.config));
}
@ -993,14 +993,14 @@ static int generic_action_ok(const char *path,
case ACTION_OK_LOAD_REMAPPING_FILE:
{
config_file_t *conf = config_file_new(action_path);
flush_char = menu_hash_to_str_enum(flush_id);
flush_char = msg_hash_to_str(flush_id);
if (conf)
input_remapping_load_file(conf, action_path);
}
break;
case ACTION_OK_LOAD_CHEAT_FILE:
flush_char = menu_hash_to_str_enum(flush_id);
flush_char = msg_hash_to_str(flush_id);
cheat_manager_free();
if (!cheat_manager_load(action_path))
@ -1026,7 +1026,7 @@ static int generic_action_ok(const char *path,
}
break;
default:
flush_char = menu_hash_to_str_enum(flush_id);
flush_char = msg_hash_to_str(flush_id);
break;
}
@ -1042,7 +1042,7 @@ static int action_ok_set_path(const char *path,
const char *label, unsigned type, size_t idx, size_t entry_idx)
{
return generic_action_ok(path, label, type, idx, entry_idx,
ACTION_OK_SET_PATH, MENU_ENUM_LABEL_UNKNOWN);
ACTION_OK_SET_PATH, MSG_UNKNOWN);
}
static int action_ok_menu_wallpaper_load(const char *path,
@ -1050,28 +1050,28 @@ static int action_ok_menu_wallpaper_load(const char *path,
{
return generic_action_ok(path, label, type, idx, entry_idx,
ACTION_OK_LOAD_WALLPAPER, MENU_ENUM_LABEL_UNKNOWN);
ACTION_OK_LOAD_WALLPAPER, MSG_UNKNOWN);
}
static int action_ok_load_core(const char *path,
const char *label, unsigned type, size_t idx, size_t entry_idx)
{
return generic_action_ok(path, label, type, idx, entry_idx,
ACTION_OK_LOAD_CORE, MENU_ENUM_LABEL_UNKNOWN);
ACTION_OK_LOAD_CORE, MSG_UNKNOWN);
}
static int action_ok_config_load(const char *path,
const char *label, unsigned type, size_t idx, size_t entry_idx)
{
return generic_action_ok(path, label, type, idx, entry_idx,
ACTION_OK_LOAD_CONFIG_FILE, MENU_ENUM_LABEL_UNKNOWN);
ACTION_OK_LOAD_CONFIG_FILE, MSG_UNKNOWN);
}
static int action_ok_disk_image_append(const char *path,
const char *label, unsigned type, size_t idx, size_t entry_idx)
{
return generic_action_ok(path, label, type, idx, entry_idx,
ACTION_OK_APPEND_DISK_IMAGE, MENU_ENUM_LABEL_UNKNOWN);
ACTION_OK_APPEND_DISK_IMAGE, MSG_UNKNOWN);
}
static int action_ok_cheat_file_load(const char *path,
@ -1112,9 +1112,9 @@ static int action_ok_shader_pass_load(const char *path,
static int generic_action_ok_help(const char *path,
const char *label, unsigned type, size_t idx, size_t entry_idx,
enum menu_hash_enums id, enum menu_help_type id2)
enum msg_hash_enums id, enum menu_help_type id2)
{
const char *lbl = menu_hash_to_str_enum(id);
const char *lbl = msg_hash_to_str(id);
menu_handle_t *menu = NULL;
menu_driver_ctl(RARCH_MENU_CTL_DRIVER_DATA_GET, &menu);
@ -1305,7 +1305,7 @@ int action_ok_path_use_directory(const char *path,
const char *label, unsigned type, size_t idx, size_t entry_idx)
{
return generic_action_ok(NULL, label, type, idx, entry_idx,
ACTION_OK_SET_DIRECTORY, MENU_ENUM_LABEL_UNKNOWN);
ACTION_OK_SET_DIRECTORY, MSG_UNKNOWN);
}
#ifdef HAVE_LIBRETRODB
@ -1462,9 +1462,9 @@ static int action_ok_file_load(const char *path,
if (
string_is_equal(menu_label,
menu_hash_to_str_enum(MENU_ENUM_LABEL_DEFERRED_ARCHIVE_OPEN_DETECT_CORE)) ||
msg_hash_to_str(MENU_ENUM_LABEL_DEFERRED_ARCHIVE_OPEN_DETECT_CORE)) ||
string_is_equal(menu_label,
menu_hash_to_str_enum(MENU_ENUM_LABEL_DEFERRED_ARCHIVE_OPEN))
msg_hash_to_str(MENU_ENUM_LABEL_DEFERRED_ARCHIVE_OPEN))
)
{
fill_pathname_join(menu_path_new, menu->scratch2_buf, menu->scratch_buf,
@ -1636,7 +1636,7 @@ static void cb_generic_download(void *task_data,
break;
default:
RARCH_WARN("Unknown transfer type '%s' bailing out.\n",
menu_hash_to_str_enum(transf->enum_idx));
msg_hash_to_str(transf->enum_idx));
break;
}
@ -1681,7 +1681,7 @@ static void cb_generic_download(void *task_data,
if (string_is_equal_noncase(file_ext, "zip"))
{
if (!task_push_decompress(output_path, dir_path, NULL, NULL, NULL,
cb_decompressed, (void*)(uintptr_t)menu_hash_calculate(menu_hash_to_str_enum(transf->enum_idx))))
cb_decompressed, (void*)(uintptr_t)menu_hash_calculate(msg_hash_to_str(transf->enum_idx))))
{
err = "Decompression failed.";
goto finish;
@ -1719,7 +1719,7 @@ finish:
static int action_ok_download_generic(const char *path,
const char *label, unsigned type, size_t idx, size_t entry_idx,
enum menu_hash_enums enum_idx)
enum msg_hash_enums enum_idx)
{
#ifdef HAVE_NETWORKING
char s[PATH_MAX_LENGTH] = {0};
@ -1781,7 +1781,7 @@ static int action_ok_download_generic(const char *path,
transf->enum_idx = enum_idx;
strlcpy(transf->path, path, sizeof(transf->path));
task_push_http_transfer(s3, false, menu_hash_to_str_enum(enum_idx), cb_generic_download, transf);
task_push_http_transfer(s3, false, msg_hash_to_str(enum_idx), cb_generic_download, transf);
#endif
return 0;
}
@ -1974,7 +1974,7 @@ static int action_ok_lookup_setting(const char *path,
#ifdef HAVE_NETWORKING
static int generic_action_ok_network(const char *path,
const char *label, unsigned type, size_t idx, size_t entry_idx,
enum menu_hash_enums enum_idx)
enum msg_hash_enums enum_idx)
{
char url_path[PATH_MAX_LENGTH] = {0};
settings_t *settings = config_get_ptr();
@ -1995,14 +1995,14 @@ static int generic_action_ok_network(const char *path,
case MENU_ENUM_LABEL_CB_CORE_CONTENT_LIST:
fill_pathname_join(url_path, settings->network.buildbot_assets_url,
"cores/gw/.index", sizeof(url_path));
url_label = menu_hash_to_str_enum(enum_idx);
url_label = msg_hash_to_str(enum_idx);
type_id2 = ACTION_OK_DL_CORE_CONTENT_LIST;
callback = cb_net_generic;
break;
case MENU_ENUM_LABEL_CB_CORE_UPDATER_LIST:
fill_pathname_join(url_path, settings->network.buildbot_url,
".index-extended", sizeof(url_path));
url_label = menu_hash_to_str_enum(enum_idx);
url_label = msg_hash_to_str(enum_idx);
type_id2 = ACTION_OK_DL_CORE_UPDATER_LIST;
callback = cb_net_generic;
break;
@ -2010,7 +2010,7 @@ static int generic_action_ok_network(const char *path,
fill_pathname_join(url_path,
"http://thumbnailpacks.libretro.com",
".index", sizeof(url_path));
url_label = menu_hash_to_str_enum(enum_idx);
url_label = msg_hash_to_str(enum_idx);
type_id2 = ACTION_OK_DL_THUMBNAILS_UPDATER_LIST;
callback = cb_net_generic;
break;
@ -2021,7 +2021,7 @@ static int generic_action_ok_network(const char *path,
LAKKA_PROJECT, sizeof(url_path));
fill_pathname_join(url_path, url_path,
".index", sizeof(url_path));
url_label = menu_hash_to_str_enum(enum_idx);
url_label = msg_hash_to_str(enum_idx);
type_id2 = ACTION_OK_DL_LAKKA_LIST;
callback = cb_net_generic;
break;
@ -2113,7 +2113,7 @@ static int action_ok_rdb_entry_submenu(const char *path,
strlcpy(new_path, rdb, sizeof(new_path));
fill_pathname_join_delim(new_label,
menu_hash_to_str_enum(MENU_ENUM_LABEL_DEFERRED_CURSOR_MANAGER_LIST),
msg_hash_to_str(MENU_ENUM_LABEL_DEFERRED_CURSOR_MANAGER_LIST),
str_list->elems[0].data, '_',
sizeof(new_label));
@ -2627,7 +2627,7 @@ static int menu_cbs_init_bind_ok_compare_label(menu_file_list_cbs_t *cbs,
return 0;
}
if (cbs->enum_idx != MENU_ENUM_LABEL_UNKNOWN)
if (cbs->enum_idx != MSG_UNKNOWN)
{
switch (cbs->enum_idx)
{
@ -3083,14 +3083,14 @@ static int menu_cbs_init_bind_ok_compare_type(menu_file_list_cbs_t *cbs,
}
break;
case MENU_FILE_CORE:
if (cbs && cbs->enum_idx != MENU_ENUM_LABEL_UNKNOWN)
if (cbs && cbs->enum_idx != MSG_UNKNOWN)
{
switch (cbs->enum_idx)
{
case MENU_ENUM_LABEL_CORE_UPDATER_LIST:
BIND_ACTION_OK(cbs, action_ok_deferred_list_stub);
break;
case MENU_ENUM_LABEL_UNKNOWN:
case MSG_UNKNOWN:
default:
break;
}

View File

@ -476,11 +476,11 @@ static int menu_cbs_init_bind_right_compare_type(menu_file_list_cbs_t *cbs,
case MENU_FILE_DOWNLOAD_THUMBNAIL_CONTENT:
case MENU_FILE_SCAN_DIRECTORY:
case MENU_SETTING_GROUP:
if ( string_is_equal(menu_label, menu_hash_to_str_enum(MENU_ENUM_LABEL_HISTORY_TAB)) ||
string_is_equal(menu_label, menu_hash_to_str_enum(MENU_ENUM_LABEL_PLAYLISTS_TAB)) ||
string_is_equal(menu_label, menu_hash_to_str_enum(MENU_ENUM_LABEL_ADD_TAB)) ||
string_is_equal(menu_label, menu_hash_to_str_enum(MENU_ENUM_LABEL_HORIZONTAL_MENU)) ||
string_is_equal(menu_label, menu_hash_to_str_enum(MENU_ENUM_LABEL_SETTINGS_TAB))
if ( string_is_equal(menu_label, msg_hash_to_str(MENU_ENUM_LABEL_HISTORY_TAB)) ||
string_is_equal(menu_label, msg_hash_to_str(MENU_ENUM_LABEL_PLAYLISTS_TAB)) ||
string_is_equal(menu_label, msg_hash_to_str(MENU_ENUM_LABEL_ADD_TAB)) ||
string_is_equal(menu_label, msg_hash_to_str(MENU_ENUM_LABEL_HORIZONTAL_MENU)) ||
string_is_equal(menu_label, msg_hash_to_str(MENU_ENUM_LABEL_SETTINGS_TAB))
)
{
BIND_ACTION_RIGHT(cbs, action_right_mainmenu);
@ -510,7 +510,7 @@ static int menu_cbs_init_bind_right_compare_label(menu_file_list_cbs_t *cbs,
{
const char *parent_group = menu_setting_get_parent_group(cbs->setting);
if (string_is_equal(parent_group, menu_hash_to_str_enum(MENU_ENUM_LABEL_MAIN_MENU))
if (string_is_equal(parent_group, msg_hash_to_str(MENU_ENUM_LABEL_MAIN_MENU))
&& (menu_setting_get_type(cbs->setting) == ST_GROUP))
{
BIND_ACTION_RIGHT(cbs, action_right_scroll);
@ -541,7 +541,7 @@ static int menu_cbs_init_bind_right_compare_label(menu_file_list_cbs_t *cbs,
}
else
{
if (cbs->enum_idx != MENU_ENUM_LABEL_UNKNOWN)
if (cbs->enum_idx != MSG_UNKNOWN)
{
switch (cbs->enum_idx)
{
@ -565,9 +565,9 @@ static int menu_cbs_init_bind_right_compare_label(menu_file_list_cbs_t *cbs,
break;
case MENU_ENUM_LABEL_NO_ITEMS:
case MENU_ENUM_LABEL_NO_PLAYLIST_ENTRIES_AVAILABLE:
if ( string_is_equal(menu_label, menu_hash_to_str_enum(MENU_ENUM_LABEL_MAIN_MENU)) ||
string_is_equal(menu_label, menu_hash_to_str_enum(MENU_ENUM_LABEL_PLAYLISTS_TAB)) ||
string_is_equal(menu_label, menu_hash_to_str_enum(MENU_ENUM_LABEL_HORIZONTAL_MENU))
if ( string_is_equal(menu_label, msg_hash_to_str(MENU_ENUM_LABEL_MAIN_MENU)) ||
string_is_equal(menu_label, msg_hash_to_str(MENU_ENUM_LABEL_PLAYLISTS_TAB)) ||
string_is_equal(menu_label, msg_hash_to_str(MENU_ENUM_LABEL_HORIZONTAL_MENU))
)
{
BIND_ACTION_RIGHT(cbs, action_right_mainmenu);
@ -597,9 +597,9 @@ static int menu_cbs_init_bind_right_compare_label(menu_file_list_cbs_t *cbs,
BIND_ACTION_RIGHT(cbs, action_right_video_resolution);
break;
case MENU_LABEL_NO_PLAYLIST_ENTRIES_AVAILABLE:
if ( string_is_equal(menu_label, menu_hash_to_str_enum(MENU_ENUM_LABEL_MAIN_MENU)) ||
string_is_equal(menu_label, menu_hash_to_str_enum(MENU_ENUM_LABEL_PLAYLISTS_TAB)) ||
string_is_equal(menu_label, menu_hash_to_str_enum(MENU_ENUM_LABEL_HORIZONTAL_MENU))
if ( string_is_equal(menu_label, msg_hash_to_str(MENU_ENUM_LABEL_MAIN_MENU)) ||
string_is_equal(menu_label, msg_hash_to_str(MENU_ENUM_LABEL_PLAYLISTS_TAB)) ||
string_is_equal(menu_label, msg_hash_to_str(MENU_ENUM_LABEL_HORIZONTAL_MENU))
)
{
BIND_ACTION_RIGHT(cbs, action_right_mainmenu);
@ -626,12 +626,12 @@ int menu_cbs_init_bind_right(menu_file_list_cbs_t *cbs,
if (type == MENU_SETTING_NO_ITEM)
{
if ( string_is_equal(menu_label, menu_hash_to_str_enum(MENU_ENUM_LABEL_HISTORY_TAB)) ||
string_is_equal(menu_label, menu_hash_to_str_enum(MENU_ENUM_LABEL_PLAYLISTS_TAB)) ||
string_is_equal(menu_label, menu_hash_to_str_enum(MENU_ENUM_LABEL_ADD_TAB)) ||
string_is_equal(menu_label, menu_hash_to_str_enum(MENU_ENUM_LABEL_MAIN_MENU)) ||
string_is_equal(menu_label, menu_hash_to_str_enum(MENU_ENUM_LABEL_HORIZONTAL_MENU)) ||
string_is_equal(menu_label, menu_hash_to_str_enum(MENU_ENUM_LABEL_SETTINGS_TAB))
if ( string_is_equal(menu_label, msg_hash_to_str(MENU_ENUM_LABEL_HISTORY_TAB)) ||
string_is_equal(menu_label, msg_hash_to_str(MENU_ENUM_LABEL_PLAYLISTS_TAB)) ||
string_is_equal(menu_label, msg_hash_to_str(MENU_ENUM_LABEL_ADD_TAB)) ||
string_is_equal(menu_label, msg_hash_to_str(MENU_ENUM_LABEL_MAIN_MENU)) ||
string_is_equal(menu_label, msg_hash_to_str(MENU_ENUM_LABEL_HORIZONTAL_MENU)) ||
string_is_equal(menu_label, msg_hash_to_str(MENU_ENUM_LABEL_SETTINGS_TAB))
)
{
BIND_ACTION_RIGHT(cbs, action_right_mainmenu);

View File

@ -44,7 +44,7 @@ int action_scan_file(const char *path,
const char *label, unsigned type, size_t idx)
{
char fullpath[PATH_MAX_LENGTH] = {0};
enum menu_hash_enums enum_idx = MENU_ENUM_LABEL_UNKNOWN;
enum msg_hash_enums enum_idx = MSG_UNKNOWN;
const char *menu_label = NULL;
const char *menu_path = NULL;
menu_handle_t *menu = NULL;
@ -65,7 +65,7 @@ int action_scan_directory(const char *path,
const char *label, unsigned type, size_t idx)
{
char fullpath[PATH_MAX_LENGTH] = {0};
enum menu_hash_enums enum_idx = MENU_ENUM_LABEL_UNKNOWN;
enum msg_hash_enums enum_idx = MSG_UNKNOWN;
const char *menu_label = NULL;
const char *menu_path = NULL;
menu_handle_t *menu = NULL;

View File

@ -323,7 +323,7 @@ static int action_start_lookup_setting(unsigned type, const char *label)
static int menu_cbs_init_bind_start_compare_label(menu_file_list_cbs_t *cbs,
uint32_t hash)
{
if (cbs->enum_idx != MENU_ENUM_LABEL_UNKNOWN)
if (cbs->enum_idx != MSG_UNKNOWN)
{
switch (cbs->enum_idx)
{

View File

@ -74,7 +74,7 @@ static int action_get_title_remap_file_load(const char *path, const char *label,
static int action_get_title_help(const char *path, const char *label,
unsigned menu_type, char *s, size_t len)
{
strlcpy(s, menu_hash_to_str_enum(MENU_ENUM_LABEL_VALUE_HELP_LIST), len);
strlcpy(s, msg_hash_to_str(MENU_ENUM_LABEL_VALUE_HELP_LIST), len);
return 0;
}
@ -87,7 +87,7 @@ static int action_get_title_overlay(const char *path, const char *label,
static int action_get_title_video_filter(const char *path, const char *label,
unsigned menu_type, char *s, size_t len)
{
return fill_title(s, menu_hash_to_str_enum(MENU_ENUM_LABEL_VALUE_VIDEO_FILTER), path, len);
return fill_title(s, msg_hash_to_str(MENU_ENUM_LABEL_VALUE_VIDEO_FILTER), path, len);
}
static int action_get_title_cheat_directory(const char *path, const char *label,
@ -99,19 +99,19 @@ static int action_get_title_cheat_directory(const char *path, const char *label,
static int action_get_title_core_directory(const char *path, const char *label,
unsigned menu_type, char *s, size_t len)
{
return fill_title(s, menu_hash_to_str_enum(MENU_ENUM_LABEL_VALUE_LIBRETRO_DIR_PATH), path, len);
return fill_title(s, msg_hash_to_str(MENU_ENUM_LABEL_VALUE_LIBRETRO_DIR_PATH), path, len);
}
static int action_get_title_core_info_directory(const char *path, const char *label,
unsigned menu_type, char *s, size_t len)
{
return fill_title(s, menu_hash_to_str_enum(MENU_ENUM_LABEL_VALUE_LIBRETRO_INFO_PATH), path, len);
return fill_title(s, msg_hash_to_str(MENU_ENUM_LABEL_VALUE_LIBRETRO_INFO_PATH), path, len);
}
static int action_get_title_audio_filter(const char *path, const char *label,
unsigned menu_type, char *s, size_t len)
{
return fill_title(s, menu_hash_to_str_enum(MENU_ENUM_LABEL_VALUE_AUDIO_FILTER_DIR), path, len);
return fill_title(s, msg_hash_to_str(MENU_ENUM_LABEL_VALUE_AUDIO_FILTER_DIR), path, len);
}
static int action_get_title_font_path(const char *path, const char *label,
@ -273,18 +273,18 @@ static int action_get_title_default(const char *path, const char *label,
static int action_get_title_group_settings(const char *path, const char *label,
unsigned menu_type, char *s, size_t len)
{
if (string_is_equal(label, menu_hash_to_str_enum(MENU_ENUM_LABEL_MAIN_MENU)))
strlcpy(s, menu_hash_to_str_enum(MENU_ENUM_LABEL_VALUE_MAIN_MENU), len);
else if (string_is_equal(label, menu_hash_to_str_enum(MENU_ENUM_LABEL_HISTORY_TAB)))
strlcpy(s, menu_hash_to_str_enum(MENU_ENUM_LABEL_VALUE_HISTORY_TAB), len);
else if (string_is_equal(label, menu_hash_to_str_enum(MENU_ENUM_LABEL_SETTINGS_TAB)))
strlcpy(s, menu_hash_to_str_enum(MENU_ENUM_LABEL_VALUE_SETTINGS_TAB), len);
else if (string_is_equal(label, menu_hash_to_str_enum(MENU_ENUM_LABEL_PLAYLISTS_TAB)))
strlcpy(s, menu_hash_to_str_enum(MENU_ENUM_LABEL_VALUE_PLAYLISTS_TAB), len);
else if (string_is_equal(label, menu_hash_to_str_enum(MENU_ENUM_LABEL_ADD_TAB)))
strlcpy(s, menu_hash_to_str_enum(MENU_ENUM_LABEL_VALUE_ADD_TAB), len);
else if (string_is_equal(label, menu_hash_to_str_enum(MENU_ENUM_LABEL_HORIZONTAL_MENU)))
strlcpy(s, menu_hash_to_str_enum(MENU_ENUM_LABEL_VALUE_HORIZONTAL_MENU), len);
if (string_is_equal(label, msg_hash_to_str(MENU_ENUM_LABEL_MAIN_MENU)))
strlcpy(s, msg_hash_to_str(MENU_ENUM_LABEL_VALUE_MAIN_MENU), len);
else if (string_is_equal(label, msg_hash_to_str(MENU_ENUM_LABEL_HISTORY_TAB)))
strlcpy(s, msg_hash_to_str(MENU_ENUM_LABEL_VALUE_HISTORY_TAB), len);
else if (string_is_equal(label, msg_hash_to_str(MENU_ENUM_LABEL_SETTINGS_TAB)))
strlcpy(s, msg_hash_to_str(MENU_ENUM_LABEL_VALUE_SETTINGS_TAB), len);
else if (string_is_equal(label, msg_hash_to_str(MENU_ENUM_LABEL_PLAYLISTS_TAB)))
strlcpy(s, msg_hash_to_str(MENU_ENUM_LABEL_VALUE_PLAYLISTS_TAB), len);
else if (string_is_equal(label, msg_hash_to_str(MENU_ENUM_LABEL_ADD_TAB)))
strlcpy(s, msg_hash_to_str(MENU_ENUM_LABEL_VALUE_ADD_TAB), len);
else if (string_is_equal(label, msg_hash_to_str(MENU_ENUM_LABEL_HORIZONTAL_MENU)))
strlcpy(s, msg_hash_to_str(MENU_ENUM_LABEL_VALUE_HORIZONTAL_MENU), len);
else
{
char elem0[PATH_MAX_LENGTH] = {0};
@ -317,224 +317,224 @@ static int action_get_title_group_settings(const char *path, const char *label,
static int action_get_user_accounts_cheevos_list(const char *path, const char *label,
unsigned menu_type, char *s, size_t len)
{
sanitize_to_string(s, menu_hash_to_str_enum(MENU_ENUM_LABEL_VALUE_ACCOUNTS_RETRO_ACHIEVEMENTS), len);
sanitize_to_string(s, msg_hash_to_str(MENU_ENUM_LABEL_VALUE_ACCOUNTS_RETRO_ACHIEVEMENTS), len);
return 0;
}
static int action_get_download_core_content_list(const char *path, const char *label,
unsigned menu_type, char *s, size_t len)
{
sanitize_to_string(s, menu_hash_to_str_enum(MENU_ENUM_LABEL_VALUE_DOWNLOAD_CORE_CONTENT), len);
sanitize_to_string(s, msg_hash_to_str(MENU_ENUM_LABEL_VALUE_DOWNLOAD_CORE_CONTENT), len);
return 0;
}
static int action_get_user_accounts_list(const char *path, const char *label,
unsigned menu_type, char *s, size_t len)
{
sanitize_to_string(s, menu_hash_to_str_enum(MENU_ENUM_LABEL_VALUE_ACCOUNTS_LIST), len);
sanitize_to_string(s, msg_hash_to_str(MENU_ENUM_LABEL_VALUE_ACCOUNTS_LIST), len);
return 0;
}
static int action_get_core_information_list(const char *path, const char *label,
unsigned menu_type, char *s, size_t len)
{
sanitize_to_string(s, menu_hash_to_str_enum(MENU_ENUM_LABEL_VALUE_CORE_INFORMATION), len);
sanitize_to_string(s, msg_hash_to_str(MENU_ENUM_LABEL_VALUE_CORE_INFORMATION), len);
return 0;
}
static int action_get_core_list(const char *path, const char *label,
unsigned menu_type, char *s, size_t len)
{
sanitize_to_string(s, menu_hash_to_str_enum(MENU_ENUM_LABEL_VALUE_CORE_LIST), len);
sanitize_to_string(s, msg_hash_to_str(MENU_ENUM_LABEL_VALUE_CORE_LIST), len);
return 0;
}
static int action_get_online_updater_list(const char *path, const char *label,
unsigned menu_type, char *s, size_t len)
{
sanitize_to_string(s, menu_hash_to_str_enum(MENU_ENUM_LABEL_VALUE_ONLINE_UPDATER), len);
sanitize_to_string(s, msg_hash_to_str(MENU_ENUM_LABEL_VALUE_ONLINE_UPDATER), len);
return 0;
}
static int action_get_online_thumbnails_updater_list(const char *path, const char *label,
unsigned menu_type, char *s, size_t len)
{
sanitize_to_string(s, menu_hash_to_str_enum(MENU_ENUM_LABEL_VALUE_THUMBNAILS_UPDATER_LIST), len);
sanitize_to_string(s, msg_hash_to_str(MENU_ENUM_LABEL_VALUE_THUMBNAILS_UPDATER_LIST), len);
return 0;
}
static int action_get_core_updater_list(const char *path, const char *label,
unsigned menu_type, char *s, size_t len)
{
sanitize_to_string(s, menu_hash_to_str_enum(MENU_ENUM_LABEL_VALUE_CORE_UPDATER_LIST), len);
sanitize_to_string(s, msg_hash_to_str(MENU_ENUM_LABEL_VALUE_CORE_UPDATER_LIST), len);
return 0;
}
static int action_get_add_content_list(const char *path, const char *label,
unsigned menu_type, char *s, size_t len)
{
sanitize_to_string(s, menu_hash_to_str_enum(MENU_ENUM_LABEL_VALUE_ADD_CONTENT_LIST), len);
sanitize_to_string(s, msg_hash_to_str(MENU_ENUM_LABEL_VALUE_ADD_CONTENT_LIST), len);
return 0;
}
static int action_get_core_options_list(const char *path, const char *label,
unsigned menu_type, char *s, size_t len)
{
sanitize_to_string(s, menu_hash_to_str_enum(MENU_ENUM_LABEL_VALUE_CORE_OPTIONS), len);
sanitize_to_string(s, msg_hash_to_str(MENU_ENUM_LABEL_VALUE_CORE_OPTIONS), len);
return 0;
}
static int action_get_load_recent_list(const char *path, const char *label,
unsigned menu_type, char *s, size_t len)
{
sanitize_to_string(s, menu_hash_to_str_enum(MENU_ENUM_LABEL_VALUE_LOAD_CONTENT_HISTORY), len);
sanitize_to_string(s, msg_hash_to_str(MENU_ENUM_LABEL_VALUE_LOAD_CONTENT_HISTORY), len);
return 0;
}
static int action_get_quick_menu_list(const char *path, const char *label,
unsigned menu_type, char *s, size_t len)
{
sanitize_to_string(s, menu_hash_to_str_enum(MENU_ENUM_LABEL_VALUE_CONTENT_SETTINGS), len);
sanitize_to_string(s, msg_hash_to_str(MENU_ENUM_LABEL_VALUE_CONTENT_SETTINGS), len);
return 0;
}
static int action_get_input_remapping_options_list(const char *path, const char *label,
unsigned menu_type, char *s, size_t len)
{
sanitize_to_string(s, menu_hash_to_str_enum(MENU_ENUM_LABEL_VALUE_CORE_INPUT_REMAPPING_OPTIONS), len);
sanitize_to_string(s, msg_hash_to_str(MENU_ENUM_LABEL_VALUE_CORE_INPUT_REMAPPING_OPTIONS), len);
return 0;
}
static int action_get_shader_options_list(const char *path, const char *label,
unsigned menu_type, char *s, size_t len)
{
sanitize_to_string(s, menu_hash_to_str_enum(MENU_ENUM_LABEL_VALUE_SHADER_OPTIONS), len);
sanitize_to_string(s, msg_hash_to_str(MENU_ENUM_LABEL_VALUE_SHADER_OPTIONS), len);
return 0;
}
static int action_get_disk_options_list(const char *path, const char *label,
unsigned menu_type, char *s, size_t len)
{
sanitize_to_string(s, menu_hash_to_str_enum(MENU_ENUM_LABEL_VALUE_DISK_OPTIONS), len);
sanitize_to_string(s, msg_hash_to_str(MENU_ENUM_LABEL_VALUE_DISK_OPTIONS), len);
return 0;
}
static int action_get_frontend_counters_list(const char *path, const char *label,
unsigned menu_type, char *s, size_t len)
{
sanitize_to_string(s, menu_hash_to_str_enum(MENU_ENUM_LABEL_VALUE_FRONTEND_COUNTERS), len);
sanitize_to_string(s, msg_hash_to_str(MENU_ENUM_LABEL_VALUE_FRONTEND_COUNTERS), len);
return 0;
}
static int action_get_core_counters_list(const char *path, const char *label,
unsigned menu_type, char *s, size_t len)
{
sanitize_to_string(s, menu_hash_to_str_enum(MENU_ENUM_LABEL_VALUE_CORE_COUNTERS), len);
sanitize_to_string(s, msg_hash_to_str(MENU_ENUM_LABEL_VALUE_CORE_COUNTERS), len);
return 0;
}
static int action_get_playlist_settings_list(const char *path, const char *label,
unsigned menu_type, char *s, size_t len)
{
sanitize_to_string(s, menu_hash_to_str_enum(MENU_ENUM_LABEL_VALUE_PLAYLIST_SETTINGS), len);
sanitize_to_string(s, msg_hash_to_str(MENU_ENUM_LABEL_VALUE_PLAYLIST_SETTINGS), len);
return 0;
}
static int action_get_input_hotkey_binds_settings_list(const char *path, const char *label,
unsigned menu_type, char *s, size_t len)
{
sanitize_to_string(s, menu_hash_to_str_enum(MENU_ENUM_LABEL_VALUE_INPUT_HOTKEY_BINDS), len);
sanitize_to_string(s, msg_hash_to_str(MENU_ENUM_LABEL_VALUE_INPUT_HOTKEY_BINDS), len);
return 0;
}
static int action_get_driver_settings_list(const char *path, const char *label,
unsigned menu_type, char *s, size_t len)
{
sanitize_to_string(s, menu_hash_to_str_enum(MENU_ENUM_LABEL_VALUE_DRIVER_SETTINGS), len);
sanitize_to_string(s, msg_hash_to_str(MENU_ENUM_LABEL_VALUE_DRIVER_SETTINGS), len);
return 0;
}
static int action_get_core_settings_list(const char *path, const char *label,
unsigned menu_type, char *s, size_t len)
{
sanitize_to_string(s, menu_hash_to_str_enum(MENU_ENUM_LABEL_VALUE_CORE_SETTINGS), len);
sanitize_to_string(s, msg_hash_to_str(MENU_ENUM_LABEL_VALUE_CORE_SETTINGS), len);
return 0;
}
static int action_get_video_settings_list(const char *path, const char *label,
unsigned menu_type, char *s, size_t len)
{
sanitize_to_string(s, menu_hash_to_str_enum(MENU_ENUM_LABEL_VALUE_VIDEO_SETTINGS), len);
sanitize_to_string(s, msg_hash_to_str(MENU_ENUM_LABEL_VALUE_VIDEO_SETTINGS), len);
return 0;
}
static int action_get_audio_settings_list(const char *path, const char *label,
unsigned menu_type, char *s, size_t len)
{
sanitize_to_string(s, menu_hash_to_str_enum(MENU_ENUM_LABEL_VALUE_AUDIO_SETTINGS), len);
sanitize_to_string(s, msg_hash_to_str(MENU_ENUM_LABEL_VALUE_AUDIO_SETTINGS), len);
return 0;
}
static int action_get_input_settings_list(const char *path, const char *label,
unsigned menu_type, char *s, size_t len)
{
sanitize_to_string(s, menu_hash_to_str_enum(MENU_ENUM_LABEL_VALUE_INPUT_SETTINGS), len);
sanitize_to_string(s, msg_hash_to_str(MENU_ENUM_LABEL_VALUE_INPUT_SETTINGS), len);
return 0;
}
static int action_get_core_cheat_options_list(const char *path, const char *label,
unsigned menu_type, char *s, size_t len)
{
sanitize_to_string(s, menu_hash_to_str_enum(MENU_ENUM_LABEL_VALUE_CORE_CHEAT_OPTIONS), len);
sanitize_to_string(s, msg_hash_to_str(MENU_ENUM_LABEL_VALUE_CORE_CHEAT_OPTIONS), len);
return 0;
}
static int action_get_load_content_list(const char *path, const char *label,
unsigned menu_type, char *s, size_t len)
{
sanitize_to_string(s, menu_hash_to_str_enum(MENU_ENUM_LABEL_VALUE_LOAD_CONTENT_LIST), len);
sanitize_to_string(s, msg_hash_to_str(MENU_ENUM_LABEL_VALUE_LOAD_CONTENT_LIST), len);
return 0;
}
static int action_get_cursor_manager_list(const char *path, const char *label,
unsigned menu_type, char *s, size_t len)
{
sanitize_to_string(s, menu_hash_to_str_enum(MENU_ENUM_LABEL_VALUE_CURSOR_MANAGER), len);
sanitize_to_string(s, msg_hash_to_str(MENU_ENUM_LABEL_VALUE_CURSOR_MANAGER), len);
return 0;
}
static int action_get_database_manager_list(const char *path, const char *label,
unsigned menu_type, char *s, size_t len)
{
sanitize_to_string(s, menu_hash_to_str_enum(MENU_ENUM_LABEL_VALUE_DATABASE_MANAGER), len);
sanitize_to_string(s, msg_hash_to_str(MENU_ENUM_LABEL_VALUE_DATABASE_MANAGER), len);
return 0;
}
static int action_get_system_information_list(const char *path, const char *label,
unsigned menu_type, char *s, size_t len)
{
sanitize_to_string(s, menu_hash_to_str_enum(MENU_ENUM_LABEL_VALUE_SYSTEM_INFORMATION), len);
sanitize_to_string(s, msg_hash_to_str(MENU_ENUM_LABEL_VALUE_SYSTEM_INFORMATION), len);
return 0;
}
static int action_get_network_information_list(const char *path, const char *label,
unsigned menu_type, char *s, size_t len)
{
sanitize_to_string(s, menu_hash_to_str_enum(MENU_ENUM_LABEL_VALUE_NETWORK_INFORMATION), len);
sanitize_to_string(s, msg_hash_to_str(MENU_ENUM_LABEL_VALUE_NETWORK_INFORMATION), len);
return 0;
}
static int action_get_settings_list(const char *path, const char *label,
unsigned menu_type, char *s, size_t len)
{
sanitize_to_string(s, menu_hash_to_str_enum(MENU_ENUM_LABEL_VALUE_SETTINGS), len);
sanitize_to_string(s, msg_hash_to_str(MENU_ENUM_LABEL_VALUE_SETTINGS), len);
return 0;
}
static int action_get_title_information_list(const char *path, const char *label,
unsigned menu_type, char *s, size_t len)
{
sanitize_to_string(s, menu_hash_to_str_enum(MENU_ENUM_LABEL_VALUE_INFORMATION_LIST), len);
sanitize_to_string(s, msg_hash_to_str(MENU_ENUM_LABEL_VALUE_INFORMATION_LIST), len);
return 0;
}
@ -644,31 +644,31 @@ static int action_get_title_recording_output_directory(const char *path, const c
static int action_get_title_video_shader_directory(const char *path, const char *label,
unsigned menu_type, char *s, size_t len)
{
return fill_title(s, menu_hash_to_str_enum(MENU_ENUM_LABEL_VALUE_VIDEO_SHADER_DIR), path, len);
return fill_title(s, msg_hash_to_str(MENU_ENUM_LABEL_VALUE_VIDEO_SHADER_DIR), path, len);
}
static int action_get_title_audio_filter_directory(const char *path, const char *label,
unsigned menu_type, char *s, size_t len)
{
return fill_title(s, menu_hash_to_str_enum(MENU_ENUM_LABEL_VALUE_AUDIO_FILTER_DIR), path, len);
return fill_title(s, msg_hash_to_str(MENU_ENUM_LABEL_VALUE_AUDIO_FILTER_DIR), path, len);
}
static int action_get_title_video_filter_directory(const char *path, const char *label,
unsigned menu_type, char *s, size_t len)
{
return fill_title(s, menu_hash_to_str_enum(MENU_ENUM_LABEL_VALUE_VIDEO_FILTER_DIR), path, len);
return fill_title(s, msg_hash_to_str(MENU_ENUM_LABEL_VALUE_VIDEO_FILTER_DIR), path, len);
}
static int action_get_title_savefile_directory(const char *path, const char *label,
unsigned menu_type, char *s, size_t len)
{
return fill_title(s, menu_hash_to_str_enum(MENU_ENUM_LABEL_VALUE_SAVEFILE_DIRECTORY), path, len);
return fill_title(s, msg_hash_to_str(MENU_ENUM_LABEL_VALUE_SAVEFILE_DIRECTORY), path, len);
}
static int action_get_title_overlay_directory(const char *path, const char *label,
unsigned menu_type, char *s, size_t len)
{
return fill_title(s, menu_hash_to_str_enum(MENU_ENUM_LABEL_VALUE_OVERLAY_DIRECTORY), path, len);
return fill_title(s, msg_hash_to_str(MENU_ENUM_LABEL_VALUE_OVERLAY_DIRECTORY), path, len);
}
static int action_get_title_system_directory(const char *path, const char *label,
@ -680,13 +680,13 @@ static int action_get_title_system_directory(const char *path, const char *label
static int action_get_title_assets_directory(const char *path, const char *label,
unsigned menu_type, char *s, size_t len)
{
return fill_title(s, menu_hash_to_str_enum(MENU_ENUM_LABEL_VALUE_ASSETS_DIRECTORY), path, len);
return fill_title(s, msg_hash_to_str(MENU_ENUM_LABEL_VALUE_ASSETS_DIRECTORY), path, len);
}
static int action_get_title_extraction_directory(const char *path, const char *label,
unsigned menu_type, char *s, size_t len)
{
return fill_title(s, menu_hash_to_str_enum(MENU_ENUM_LABEL_VALUE_CACHE_DIRECTORY), path, len);
return fill_title(s, msg_hash_to_str(MENU_ENUM_LABEL_VALUE_CACHE_DIRECTORY), path, len);
}
static int action_get_title_menu(const char *path, const char *label,
@ -716,7 +716,7 @@ static int menu_cbs_init_bind_title_compare_label(menu_file_list_cbs_t *cbs,
{
const char *parent_group = menu_setting_get_parent_group(cbs->setting);
if (string_is_equal(parent_group, menu_hash_to_str_enum(MENU_ENUM_LABEL_MAIN_MENU))
if (string_is_equal(parent_group, msg_hash_to_str(MENU_ENUM_LABEL_MAIN_MENU))
&& menu_setting_get_type(cbs->setting) == ST_GROUP)
{
BIND_ACTION_GET_TITLE(cbs, action_get_title_group_settings);
@ -724,13 +724,13 @@ static int menu_cbs_init_bind_title_compare_label(menu_file_list_cbs_t *cbs,
}
}
if (string_is_equal(label, menu_hash_to_str_enum(MENU_ENUM_LABEL_DEFERRED_CORE_SETTINGS_LIST)))
if (string_is_equal(label, msg_hash_to_str(MENU_ENUM_LABEL_DEFERRED_CORE_SETTINGS_LIST)))
{
BIND_ACTION_GET_TITLE(cbs, action_get_core_settings_list);
return 0;
}
if (cbs->enum_idx != MENU_ENUM_LABEL_UNKNOWN)
if (cbs->enum_idx != MSG_UNKNOWN)
{
switch (cbs->enum_idx)
{

View File

@ -693,7 +693,7 @@ static int mui_get_core_title(char *s, size_t len)
}
if (string_is_empty(core_name))
core_name = menu_hash_to_str_enum(MENU_ENUM_LABEL_VALUE_NO_CORE);
core_name = msg_hash_to_str(MENU_ENUM_LABEL_VALUE_NO_CORE);
if (!core_version)
core_version = "";
@ -1257,19 +1257,19 @@ static void mui_preswitch_tabs(mui_handle_t *mui, unsigned action)
{
case MUI_SYSTEM_TAB_MAIN:
menu_stack->list[stack_size - 1].label =
strdup(menu_hash_to_str_enum(MENU_ENUM_LABEL_MAIN_MENU));
strdup(msg_hash_to_str(MENU_ENUM_LABEL_MAIN_MENU));
menu_stack->list[stack_size - 1].type =
MENU_SETTINGS;
break;
case MUI_SYSTEM_TAB_PLAYLISTS:
menu_stack->list[stack_size - 1].label =
strdup(menu_hash_to_str_enum(MENU_ENUM_LABEL_PLAYLISTS_TAB));
strdup(msg_hash_to_str(MENU_ENUM_LABEL_PLAYLISTS_TAB));
menu_stack->list[stack_size - 1].type =
MENU_PLAYLISTS_TAB;
break;
case MUI_SYSTEM_TAB_SETTINGS:
menu_stack->list[stack_size - 1].label =
strdup(menu_hash_to_str_enum(MENU_ENUM_LABEL_SETTINGS_TAB));
strdup(msg_hash_to_str(MENU_ENUM_LABEL_SETTINGS_TAB));
menu_stack->list[stack_size - 1].type =
MENU_SETTINGS;
break;
@ -1338,8 +1338,8 @@ static int mui_list_push(void *data, void *userdata,
case DISPLAYLIST_LOAD_CONTENT_LIST:
menu_entries_ctl(MENU_ENTRIES_CTL_CLEAR, info->list);
menu_entries_add_enum(info->list,
menu_hash_to_str_enum(MENU_ENUM_LABEL_VALUE_LOAD_CONTENT),
menu_hash_to_str_enum(MENU_ENUM_LABEL_LOAD_CONTENT),
msg_hash_to_str(MENU_ENUM_LABEL_VALUE_LOAD_CONTENT),
msg_hash_to_str(MENU_ENUM_LABEL_LOAD_CONTENT),
MENU_ENUM_LABEL_LOAD_CONTENT,
MENU_SETTING_ACTION, 0, 0);
@ -1347,14 +1347,14 @@ static int mui_list_push(void *data, void *userdata,
if (core_info_list_num_info_files(list))
{
menu_entries_add_enum(info->list,
menu_hash_to_str_enum(MENU_ENUM_LABEL_VALUE_DETECT_CORE_LIST),
menu_hash_to_str_enum(MENU_ENUM_LABEL_DETECT_CORE_LIST),
msg_hash_to_str(MENU_ENUM_LABEL_VALUE_DETECT_CORE_LIST),
msg_hash_to_str(MENU_ENUM_LABEL_DETECT_CORE_LIST),
MENU_ENUM_LABEL_DETECT_CORE_LIST,
MENU_SETTING_ACTION, 0, 0);
menu_entries_add_enum(info->list,
menu_hash_to_str_enum(MENU_ENUM_LABEL_VALUE_DOWNLOADED_FILE_DETECT_CORE_LIST),
menu_hash_to_str_enum(MENU_ENUM_LABEL_DOWNLOADED_FILE_DETECT_CORE_LIST),
msg_hash_to_str(MENU_ENUM_LABEL_VALUE_DOWNLOADED_FILE_DETECT_CORE_LIST),
msg_hash_to_str(MENU_ENUM_LABEL_DOWNLOADED_FILE_DETECT_CORE_LIST),
MENU_ENUM_LABEL_DOWNLOADED_FILE_DETECT_CORE_LIST,
MENU_SETTING_ACTION, 0, 0);
}

View File

@ -134,39 +134,39 @@ static int action_iterate_help(menu_handle_t *menu,
s2,
menu_hash_to_str_enum(
msg_hash_to_str(
MENU_ENUM_LABEL_VALUE_BASIC_MENU_CONTROLS_SCROLL_UP),
desc[0],
menu_hash_to_str_enum(
msg_hash_to_str(
MENU_ENUM_LABEL_VALUE_BASIC_MENU_CONTROLS_SCROLL_DOWN),
desc[1],
menu_hash_to_str_enum(
msg_hash_to_str(
MENU_ENUM_LABEL_VALUE_BASIC_MENU_CONTROLS_CONFIRM),
desc[2],
menu_hash_to_str_enum(
msg_hash_to_str(
MENU_ENUM_LABEL_VALUE_BASIC_MENU_CONTROLS_BACK),
desc[3],
menu_hash_to_str_enum(
msg_hash_to_str(
MENU_ENUM_LABEL_VALUE_BASIC_MENU_CONTROLS_INFO),
desc[4],
menu_hash_to_str_enum(
msg_hash_to_str(
MENU_ENUM_LABEL_VALUE_BASIC_MENU_CONTROLS_START),
desc[5],
menu_hash_to_str_enum(
msg_hash_to_str(
MENU_ENUM_LABEL_VALUE_BASIC_MENU_CONTROLS_TOGGLE_MENU),
desc[6],
menu_hash_to_str_enum(
msg_hash_to_str(
MENU_ENUM_LABEL_VALUE_BASIC_MENU_CONTROLS_QUIT),
desc[7],
menu_hash_to_str_enum(
msg_hash_to_str(
MENU_ENUM_LABEL_VALUE_BASIC_MENU_CONTROLS_TOGGLE_KEYBOARD),
desc[8]
@ -273,7 +273,7 @@ int generic_menu_iterate(void *data, void *userdata, enum menu_action action)
int ret = 0;
uint32_t label_hash = 0;
uint32_t hash = 0;
enum menu_hash_enums enum_idx = MENU_ENUM_LABEL_UNKNOWN;
enum msg_hash_enums enum_idx = MSG_UNKNOWN;
menu_handle_t *menu = (menu_handle_t*)data;
file_list_t *menu_stack = menu_entries_get_menu_stack_ptr(0);
file_list_t *selection_buf = menu_entries_get_selection_buf_ptr(0);
@ -367,7 +367,7 @@ int generic_menu_iterate(void *data, void *userdata, enum menu_action action)
info.list = menu_stack;
strlcpy(info.label,
menu_hash_to_str_enum(MENU_ENUM_LABEL_HELP),
msg_hash_to_str(MENU_ENUM_LABEL_HELP),
sizeof(info.label));
info.enum_idx = MENU_ENUM_LABEL_HELP;
@ -401,7 +401,7 @@ bool generic_menu_init_list(void *data)
file_list_t *selection_buf = menu_entries_get_selection_buf_ptr(0);
strlcpy(info.label,
menu_hash_to_str_enum(MENU_ENUM_LABEL_MAIN_MENU), sizeof(info.label));
msg_hash_to_str(MENU_ENUM_LABEL_MAIN_MENU), sizeof(info.label));
info.enum_idx = MENU_ENUM_LABEL_MAIN_MENU;
menu_entries_add_enum(menu_stack, info.path,

View File

@ -388,11 +388,11 @@ static bool nk_menu_init_list(void *data)
file_list_t *selection_buf = menu_entries_get_selection_buf_ptr(0);
strlcpy(info.label,
menu_hash_to_str_enum(MENU_ENUM_LABEL_HISTORY_TAB), sizeof(info.label));
msg_hash_to_str(MENU_ENUM_LABEL_HISTORY_TAB), sizeof(info.label));
info.enum_idx = MENU_ENUM_LABEL_HISTORY_TAB;
menu_entries_add_enum(menu_stack,
info.path, info.label, MENU_ENUM_LABEL_UNKNOWN,
info.path, info.label, MSG_UNKNOWN,
info.type, info.flags, 0);
command_event(CMD_EVENT_HISTORY_INIT, NULL);

View File

@ -545,7 +545,7 @@ static void rgui_render(void *data)
blit_line(
RGUI_TERM_START_X(fb_width),
RGUI_TERM_START_X(fb_width),
menu_hash_to_str_enum(MENU_ENUM_LABEL_VALUE_BACK),
msg_hash_to_str(MENU_ENUM_LABEL_VALUE_BACK),
TITLE_COLOR(settings));
strlcpy(title_buf, string_to_upper(title_buf), sizeof(title_buf));

View File

@ -1276,7 +1276,7 @@ static void xmb_init_horizontal_list(xmb_handle_t *xmb)
info.flags = SL_FLAG_ALLOW_EMPTY_LIST;
info.enum_idx = MENU_ENUM_LABEL_CONTENT_COLLECTION_LIST;
strlcpy(info.label,
menu_hash_to_str_enum(MENU_ENUM_LABEL_CONTENT_COLLECTION_LIST),
msg_hash_to_str(MENU_ENUM_LABEL_CONTENT_COLLECTION_LIST),
sizeof(info.label));
strlcpy(info.path,
settings->directory.playlist,
@ -1511,7 +1511,7 @@ static void xmb_populate_entries(void *data,
static uintptr_t xmb_icon_get_id(xmb_handle_t *xmb,
xmb_node_t *core_node, xmb_node_t *node,
enum menu_hash_enums enum_idx, unsigned type, bool active)
enum msg_hash_enums enum_idx, unsigned type, bool active)
{
switch (enum_idx)
{
@ -2980,31 +2980,31 @@ static void xmb_list_cache(void *data, enum menu_list_type type, unsigned action
{
case XMB_SYSTEM_TAB_MAIN:
menu_stack->list[stack_size - 1].label =
strdup(menu_hash_to_str_enum(MENU_ENUM_LABEL_MAIN_MENU));
strdup(msg_hash_to_str(MENU_ENUM_LABEL_MAIN_MENU));
menu_stack->list[stack_size - 1].type =
MENU_SETTINGS;
break;
case XMB_SYSTEM_TAB_SETTINGS:
menu_stack->list[stack_size - 1].label =
strdup(menu_hash_to_str_enum(MENU_ENUM_LABEL_SETTINGS_TAB));
strdup(msg_hash_to_str(MENU_ENUM_LABEL_SETTINGS_TAB));
menu_stack->list[stack_size - 1].type =
MENU_SETTINGS_TAB;
break;
case XMB_SYSTEM_TAB_HISTORY:
menu_stack->list[stack_size - 1].label =
strdup(menu_hash_to_str_enum(MENU_ENUM_LABEL_HISTORY_TAB));
strdup(msg_hash_to_str(MENU_ENUM_LABEL_HISTORY_TAB));
menu_stack->list[stack_size - 1].type =
MENU_HISTORY_TAB;
break;
case XMB_SYSTEM_TAB_ADD:
menu_stack->list[stack_size - 1].label =
strdup(menu_hash_to_str_enum(MENU_ENUM_LABEL_ADD_TAB));
strdup(msg_hash_to_str(MENU_ENUM_LABEL_ADD_TAB));
menu_stack->list[stack_size - 1].type =
MENU_ADD_TAB;
break;
default:
menu_stack->list[stack_size - 1].label =
strdup(menu_hash_to_str_enum(MENU_ENUM_LABEL_HORIZONTAL_MENU));
strdup(msg_hash_to_str(MENU_ENUM_LABEL_HORIZONTAL_MENU));
menu_stack->list[stack_size - 1].type =
MENU_SETTING_HORIZONTAL_MENU;
break;
@ -3081,7 +3081,7 @@ static int deferred_push_content_actions(menu_displaylist_info_t *info)
static int xmb_list_bind_init_compare_label(menu_file_list_cbs_t *cbs,
uint32_t label_hash)
{
if (cbs && cbs->enum_idx != MENU_ENUM_LABEL_UNKNOWN)
if (cbs && cbs->enum_idx != MSG_UNKNOWN)
{
switch (cbs->enum_idx)
{
@ -3195,7 +3195,7 @@ static bool xmb_menu_init_list(void *data)
file_list_t *selection_buf = menu_entries_get_selection_buf_ptr(0);
strlcpy(info.label,
menu_hash_to_str_enum(MENU_ENUM_LABEL_MAIN_MENU), sizeof(info.label));
msg_hash_to_str(MENU_ENUM_LABEL_MAIN_MENU), sizeof(info.label));
info.enum_idx = MENU_ENUM_LABEL_MAIN_MENU;
menu_entries_add_enum(menu_stack, info.path,

View File

@ -1129,11 +1129,11 @@ static bool zarch_menu_init_list(void *data)
file_list_t *selection_buf = menu_entries_get_selection_buf_ptr(0);
strlcpy(info.label,
menu_hash_to_str_enum(MENU_ENUM_LABEL_HISTORY_TAB), sizeof(info.label));
msg_hash_to_str(MENU_ENUM_LABEL_HISTORY_TAB), sizeof(info.label));
info.enum_idx = MENU_ENUM_LABEL_HISTORY_TAB;
menu_entries_add_enum(menu_stack,
info.path, info.label, MENU_ENUM_LABEL_UNKNOWN, info.type, info.flags, 0);
info.path, info.label, MENU_ENUM_LABEL_HISTORY_TAB, info.type, info.flags, 0);
command_event(CMD_EVENT_HISTORY_INIT, NULL);

View File

@ -30,811 +30,6 @@
/* DO NOT REMOVE THIS. If it causes build failure, it's because you saved the file as UTF-8. Read the above comment. */
extern const char force_iso_8859_1[sizeof("äÄöÖßüÜ")==7+1 ? 1 : -1];
const char *menu_hash_to_str_de_enum(enum menu_hash_enums msg)
{
switch (msg)
{
case MENU_ENUM_LABEL_VALUE_INFORMATION_LIST:
return "Information";
case MENU_ENUM_LABEL_VALUE_USE_BUILTIN_PLAYER:
return "Verwende integrierten Player"; /* FIXME/UPDATE */
case MENU_ENUM_LABEL_VALUE_CONTENT_SETTINGS:
return "Content-Einstellungen"; /* FIXME */
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_CRC32:
return "CRC32";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_MD5:
return "MD5";
case MENU_ENUM_LABEL_VALUE_LOAD_CONTENT_LIST:
return "Lade Content";
case MENU_ENUM_LABEL_VALUE_LOAD_ARCHIVE:
return "Lade Archiv";
case MENU_ENUM_LABEL_VALUE_OPEN_ARCHIVE:
return "Öffne Archiv";
case MENU_ENUM_LABEL_VALUE_ASK_ARCHIVE:
return "Nachfragen";
case MENU_ENUM_LABEL_VALUE_PRIVACY_SETTINGS:
return "Privatsphäre-Einstellungen";
case MENU_ENUM_LABEL_VALUE_HORIZONTAL_MENU: /* Don't change. Breaks everything. (Would be: "Horizontales Menu") */
return "Horizontal Menu";
case MENU_ENUM_LABEL_VALUE_NO_SETTINGS_FOUND:
return "Keine Einstellungen gefunden.";
case MENU_ENUM_LABEL_VALUE_NO_PERFORMANCE_COUNTERS:
return "Keine Leistungszähler.";
case MENU_ENUM_LABEL_VALUE_DRIVER_SETTINGS:
return "Treiber-Einstellungen";
case MENU_ENUM_LABEL_VALUE_CONFIGURATION_SETTINGS:
return "Konfigurations-Einstellungen";
case MENU_ENUM_LABEL_VALUE_CORE_SETTINGS:
return "Core-Einstellungen";
case MENU_ENUM_LABEL_VALUE_VIDEO_SETTINGS:
return "Video-Einstellungen";
case MENU_ENUM_LABEL_VALUE_LOGGING_SETTINGS:
return "Logging-Einstellungen";
case MENU_ENUM_LABEL_VALUE_SAVING_SETTINGS:
return "Spielstand-Einstellungen";
case MENU_ENUM_LABEL_VALUE_REWIND_SETTINGS:
return "Zurückspul-Einstellungen";
case MENU_ENUM_LABEL_VALUE_SHADER:
return "Shader";
case MENU_ENUM_LABEL_VALUE_CHEAT:
return "Cheat";
case MENU_ENUM_LABEL_VALUE_USER:
return "Benutzer";
case MENU_ENUM_LABEL_VALUE_SYSTEM_BGM_ENABLE:
return "Aktiviere System-BGM";
case MENU_ENUM_LABEL_VALUE_RETROPAD:
return "RetroPad";
case MENU_ENUM_LABEL_VALUE_RETROKEYBOARD:
return "RetroKeyboard";
case MENU_ENUM_LABEL_VALUE_AUDIO_BLOCK_FRAMES:
return "Warte auf Audio-Frames";
case MENU_ENUM_LABEL_VALUE_INPUT_DESCRIPTOR_LABEL_SHOW: /* TODO/FIXME */
return "Zeige Core-Eingabe-Beschriftungen";
case MENU_ENUM_LABEL_VALUE_INPUT_DESCRIPTOR_HIDE_UNBOUND:
return "Verstecke unzugewiesene Core-Eingabe-Beschriftungen";
case MENU_ENUM_LABEL_VALUE_VIDEO_FONT_ENABLE:
return "Zeige OSD-Nachrichten";
case MENU_ENUM_LABEL_VALUE_VIDEO_FONT_PATH:
return "Schriftart der OSD-Nachrichten";
case MENU_ENUM_LABEL_VALUE_VIDEO_FONT_SIZE:
return "Schriftgröße der OSD-Nachrichten";
case MENU_ENUM_LABEL_VALUE_VIDEO_MESSAGE_POS_X:
return "X-Position der OSD-Nachrichten";
case MENU_ENUM_LABEL_VALUE_VIDEO_MESSAGE_POS_Y:
return "Y-Position der OSD-Nachrichten";
case MENU_ENUM_LABEL_VALUE_VIDEO_SOFT_FILTER:
return "Aktiviere Soft-Filter";
case MENU_ENUM_LABEL_VALUE_VIDEO_FILTER_FLICKER:
return "Aktiviere Flacker-Filter";
case MENU_ENUM_LABEL_VALUE_DIRECTORY_CONTENT:
return "<Content-Verz.>";
case MENU_ENUM_LABEL_VALUE_UNKNOWN:
return "Unbekannt";
case MENU_ENUM_LABEL_VALUE_DONT_CARE:
return "Mir egal";
case MENU_ENUM_LABEL_VALUE_LINEAR:
return "Linear";
case MENU_ENUM_LABEL_VALUE_NEAREST:
return "Nächster";
case MENU_ENUM_LABEL_VALUE_DIRECTORY_DEFAULT:
return "<Voreinstellung>";
case MENU_ENUM_LABEL_VALUE_DIRECTORY_NONE:
return "<Keins>";
case MENU_ENUM_LABEL_VALUE_NOT_AVAILABLE:
return "Nicht verfügbar";
case MENU_ENUM_LABEL_VALUE_INPUT_REMAPPING_DIRECTORY: /* UPDATE/FIXME */
return "Eingabebelegungs-Verzeichnis";
case MENU_ENUM_LABEL_VALUE_JOYPAD_AUTOCONFIG_DIR:
return "Eingabegerät-Autoconfig-Verzeichnis";
case MENU_ENUM_LABEL_VALUE_RECORDING_CONFIG_DIRECTORY:
return "Aufnahme-Konfigurationsverzeichnis";
case MENU_ENUM_LABEL_VALUE_RECORDING_OUTPUT_DIRECTORY:
return "Aufnahme-Ausgabeverzeichnis";
case MENU_ENUM_LABEL_VALUE_SCREENSHOT_DIRECTORY:
return "Bildschirmfoto-Verzeichnis";
case MENU_ENUM_LABEL_VALUE_PLAYLIST_DIRECTORY:
return "Wiedergabelisten-Verzeichnis";
case MENU_ENUM_LABEL_VALUE_SAVEFILE_DIRECTORY:
return "Spielstand-Verzeichnis";
case MENU_ENUM_LABEL_VALUE_SAVESTATE_DIRECTORY:
return "Savestate-Verzeichnis";
case MENU_ENUM_LABEL_VALUE_STDIN_CMD_ENABLE:
return "stdin-Befehle";
case MENU_ENUM_LABEL_VALUE_VIDEO_DRIVER:
return "Grafiktreiber";
case MENU_ENUM_LABEL_VALUE_RECORD_ENABLE:
return "Aktiviere Aufnahmefunktion";
case MENU_ENUM_LABEL_VALUE_VIDEO_GPU_RECORD:
return "Aktiviere GPU-Aufnahmefunktion";
case MENU_ENUM_LABEL_VALUE_RECORD_PATH: /* FIXME/UPDATE */
return "Aufnahmepfad";
case MENU_ENUM_LABEL_VALUE_RECORD_USE_OUTPUT_DIRECTORY:
return "Verwende Aufnahme-Ausgabeverzeichnis";
case MENU_ENUM_LABEL_VALUE_RECORD_CONFIG:
return "Aufnahme-Konfiguration";
case MENU_ENUM_LABEL_VALUE_VIDEO_POST_FILTER_RECORD:
return "Aktiviere Aufnahme von Post-Filtern";
case MENU_ENUM_LABEL_VALUE_CORE_ASSETS_DIRECTORY:
return "Core-Assets-Verzeichnis"; /* FIXME/UPDATE */
case MENU_ENUM_LABEL_VALUE_ASSETS_DIRECTORY:
return "Assets-Verzeichnis";
case MENU_ENUM_LABEL_VALUE_DYNAMIC_WALLPAPERS_DIRECTORY:
return "Dynamische-Bildschirmhintergründe-Verzeichnis";
case MENU_ENUM_LABEL_VALUE_RGUI_BROWSER_DIRECTORY:
return "Browser-Directory";
case MENU_ENUM_LABEL_VALUE_RGUI_CONFIG_DIRECTORY:
return "Konfigurations-Verzeichnis";
case MENU_ENUM_LABEL_VALUE_LIBRETRO_INFO_PATH:
return "Core-Info-Verzeichnis";
case MENU_ENUM_LABEL_VALUE_LIBRETRO_DIR_PATH:
return "Core-Verzeichnis";
case MENU_ENUM_LABEL_VALUE_CURSOR_DIRECTORY:
return "Cursor-Verzeichnis";
case MENU_ENUM_LABEL_VALUE_CONTENT_DATABASE_DIRECTORY:
return "Content-Datenbankverzeichnis";
case MENU_ENUM_LABEL_VALUE_SYSTEM_DIRECTORY:
return "System/BIOS-Verzeichnis";
case MENU_ENUM_LABEL_VALUE_CHEAT_DATABASE_PATH:
return "Cheat-Datei-Verzeichnis";
case MENU_ENUM_LABEL_VALUE_CACHE_DIRECTORY: /* FIXME/UPDATE */
return "Entpack-Verzeichnis";
case MENU_ENUM_LABEL_VALUE_AUDIO_FILTER_DIR:
return "Audio-Filter-Verzeichnis";
case MENU_ENUM_LABEL_VALUE_VIDEO_SHADER_DIR:
return "Grafikshader-Verzeichnis";
case MENU_ENUM_LABEL_VALUE_VIDEO_FILTER_DIR:
return "Grafikfilter-Verzeichnis";
case MENU_ENUM_LABEL_VALUE_OVERLAY_DIRECTORY:
return "Overlay-Verzeichnis";
case MENU_ENUM_LABEL_VALUE_OSK_OVERLAY_DIRECTORY:
return "OSK-Overlay-Verzeichnis";
case MENU_ENUM_LABEL_VALUE_NETPLAY_CLIENT_SWAP_INPUT:
return "Tausche Netplay-Eingabe";
case MENU_ENUM_LABEL_VALUE_NETPLAY_SPECTATOR_MODE_ENABLE:
return "Aktiviere Netplay-Zuschauermodus";
case MENU_ENUM_LABEL_VALUE_NETPLAY_IP_ADDRESS:
return "IP-Addresse für Netplay";
case MENU_ENUM_LABEL_VALUE_NETPLAY_TCP_UDP_PORT:
return "TCP/UDP-Port für Netplay";
case MENU_ENUM_LABEL_VALUE_NETPLAY_ENABLE:
return "Aktiviere Netplay";
case MENU_ENUM_LABEL_VALUE_NETPLAY_DELAY_FRAMES:
return "Verzögere Netplay-Frames";
case MENU_ENUM_LABEL_VALUE_NETPLAY_MODE:
return "Aktiviere Netplay-Client";
case MENU_ENUM_LABEL_VALUE_RGUI_SHOW_START_SCREEN:
return "Zeige Startbildschirm";
case MENU_ENUM_LABEL_VALUE_TITLE_COLOR:
return "Menü-Titel-Farbe";
case MENU_ENUM_LABEL_VALUE_ENTRY_HOVER_COLOR:
return "Hover-Farbe für Menü-Einträge";
case MENU_ENUM_LABEL_VALUE_TIMEDATE_ENABLE:
return "Zeige Uhrzeit / Datum";
case MENU_ENUM_LABEL_VALUE_THREADED_DATA_RUNLOOP_ENABLE:
return "Threaded Data Runloop";
case MENU_ENUM_LABEL_VALUE_ENTRY_NORMAL_COLOR:
return "Normale Farbe für Menü-Einträge";
case MENU_ENUM_LABEL_VALUE_SHOW_ADVANCED_SETTINGS:
return "Zeige erweitere Einstellungen";
case MENU_ENUM_LABEL_VALUE_COLLAPSE_SUBGROUPS_ENABLE:
return "Untergruppen einklappen";
case MENU_ENUM_LABEL_VALUE_MOUSE_ENABLE:
return "Maus-Unterstützung";
case MENU_ENUM_LABEL_VALUE_POINTER_ENABLE:
return "Touch-Unterstützung";
case MENU_ENUM_LABEL_VALUE_CORE_ENABLE:
return "Zeige Core-Namen";
case MENU_ENUM_LABEL_VALUE_DPI_OVERRIDE_ENABLE:
return "Aktiviere DPI-Override";
case MENU_ENUM_LABEL_VALUE_DPI_OVERRIDE_VALUE:
return "DPI-Override";
case MENU_ENUM_LABEL_VALUE_SUSPEND_SCREENSAVER_ENABLE:
return "Bildschirmschone aussetzen";
case MENU_ENUM_LABEL_VALUE_VIDEO_DISABLE_COMPOSITION:
return "Deaktiviere Desktop-Komposition";
case MENU_ENUM_LABEL_VALUE_PAUSE_NONACTIVE:
return "Nicht im Hintergrund laufen";
case MENU_ENUM_LABEL_VALUE_UI_COMPANION_START_ON_BOOT:
return "UI-Companion beim Hochfahren starten";
case MENU_ENUM_LABEL_VALUE_UI_MENUBAR_ENABLE:
return "Menüleiste";
case MENU_ENUM_LABEL_VALUE_ARCHIVE_MODE:
return "Verknüpfte Aktion bei Archivdateien";
case MENU_ENUM_LABEL_VALUE_NETWORK_CMD_ENABLE:
return "Netzwerk-Befehle";
case MENU_ENUM_LABEL_VALUE_NETWORK_CMD_PORT:
return "Port für Netzwerk-Befehle";
case MENU_ENUM_LABEL_VALUE_HISTORY_LIST_ENABLE:
return "Aktiviere Verlaufsliste";
case MENU_ENUM_LABEL_VALUE_CONTENT_HISTORY_SIZE:
return "Länge der Verlaufsliste";
case MENU_ENUM_LABEL_VALUE_VIDEO_REFRESH_RATE_AUTO:
return "Geschätzte Monitor-Bildrate";
case MENU_ENUM_LABEL_VALUE_DUMMY_ON_CORE_SHUTDOWN:
return "Dummy bei Core-Abschaltung";
case MENU_ENUM_LABEL_VALUE_CORE_SET_SUPPORTS_NO_CONTENT_ENABLE: /* TODO/FIXME */
return "Cores nicht automatisch starten";
case MENU_ENUM_LABEL_VALUE_FRAME_THROTTLE_ENABLE:
return "Begrenze maximale Ausführungsgeschwindigkeit";
case MENU_ENUM_LABEL_VALUE_FASTFORWARD_RATIO:
return "Maximale Ausführungsgeschwindigkeitd";
case MENU_ENUM_LABEL_VALUE_AUTO_REMAPS_ENABLE:
return "Lade Remap-Dateien automatisch";
case MENU_ENUM_LABEL_VALUE_SLOWMOTION_RATIO:
return "Zeitlupen-Verhältnis";
case MENU_ENUM_LABEL_VALUE_CORE_SPECIFIC_CONFIG:
return "Core-Spezifische Konfiguration";
case MENU_ENUM_LABEL_VALUE_AUTO_OVERRIDES_ENABLE:
return "Lade Override-Dateien automatisch";
case MENU_ENUM_LABEL_VALUE_CONFIG_SAVE_ON_EXIT:
return "Speichere Konfiguration beim Beenden";
case MENU_ENUM_LABEL_VALUE_VIDEO_SMOOTH:
return "Bilineare Filterung (HW)";
case MENU_ENUM_LABEL_VALUE_VIDEO_GAMMA:
return "Gamma";
case MENU_ENUM_LABEL_VALUE_VIDEO_ALLOW_ROTATE:
return "Erlaube Bildrotation";
case MENU_ENUM_LABEL_VALUE_VIDEO_HARD_SYNC:
return "Synchronisiere GPU und CPU";
case MENU_ENUM_LABEL_VALUE_VIDEO_SWAP_INTERVAL:
return "VSync-Intervall";
case MENU_ENUM_LABEL_VALUE_VIDEO_VSYNC:
return "Vertikale Synchronisation (VSync)";
case MENU_ENUM_LABEL_VALUE_VIDEO_THREADED:
return "Threaded Video";
case MENU_ENUM_LABEL_VALUE_VIDEO_ROTATION:
return "Rotation";
case MENU_ENUM_LABEL_VALUE_VIDEO_GPU_SCREENSHOT:
return "Aktiviere GPU-Bildschirmfotos";
case MENU_ENUM_LABEL_VALUE_VIDEO_CROP_OVERSCAN:
return "Bildränder (Overscan) zuschneiden (Neustart erforderlich)";
case MENU_ENUM_LABEL_VALUE_VIDEO_ASPECT_RATIO_INDEX:
return "Bildseitenverhältnis-Index";
case MENU_ENUM_LABEL_VALUE_VIDEO_ASPECT_RATIO_AUTO:
return "Automatisches Bildseitenverhältnis";
case MENU_ENUM_LABEL_VALUE_VIDEO_FORCE_ASPECT:
return "Erzwinge Bildseitenverhältnis";
case MENU_ENUM_LABEL_VALUE_VIDEO_REFRESH_RATE:
return "Bildwiederholrate";
case MENU_ENUM_LABEL_VALUE_VIDEO_FORCE_SRGB_DISABLE:
return "Erzwinge Deaktivierung des sRGB FBO";
case MENU_ENUM_LABEL_VALUE_VIDEO_WINDOWED_FULLSCREEN:
return "Unechter Vollbild-Modus (Windowed Fullscreen)";
case MENU_ENUM_LABEL_VALUE_PAL60_ENABLE:
return "Verwende PAL60-Modus";
case MENU_ENUM_LABEL_VALUE_VIDEO_VFILTER:
return "Bild entflackern";
case MENU_ENUM_LABEL_VALUE_VIDEO_VI_WIDTH:
return "Kalibriere VI-Bildbreite";
case MENU_ENUM_LABEL_VALUE_VIDEO_BLACK_FRAME_INSERTION:
return "Setze schwarze Frames ein";
case MENU_ENUM_LABEL_VALUE_VIDEO_HARD_SYNC_FRAMES:
return "Synchronisiere Frames fest mit GPU";
case MENU_ENUM_LABEL_VALUE_SORT_SAVEFILES_ENABLE:
return "Sortiere Speicherdaten per Ordner";
case MENU_ENUM_LABEL_VALUE_SORT_SAVESTATES_ENABLE:
return "Sortiere Save States per Ordner";
case MENU_ENUM_LABEL_VALUE_VIDEO_FULLSCREEN:
return "Verwende Vollbildmodus";
case MENU_ENUM_LABEL_VALUE_VIDEO_SCALE:
return "Fenterskalierung";
case MENU_ENUM_LABEL_VALUE_VIDEO_SCALE_INTEGER:
return "Ganzzahlige Bildskalierung";
case MENU_ENUM_LABEL_VALUE_PERFCNT_ENABLE:
return "Leistungsindikatoren";
case MENU_ENUM_LABEL_VALUE_LIBRETRO_LOG_LEVEL:
return "Core-Logging-Stufe";
case MENU_ENUM_LABEL_VALUE_LOG_VERBOSITY:
return "Log-Ausführlichkeit";
case MENU_ENUM_LABEL_VALUE_SAVESTATE_AUTO_LOAD:
return "Automatisches Laden von Save States";
case MENU_ENUM_LABEL_VALUE_SAVESTATE_AUTO_INDEX:
return "Automatische Indexierung von Save States";
case MENU_ENUM_LABEL_VALUE_SAVESTATE_AUTO_SAVE:
return "Automatische Save States";
case MENU_ENUM_LABEL_VALUE_AUTOSAVE_INTERVAL:
return "Autospeicherungsintervall";
case MENU_ENUM_LABEL_VALUE_BLOCK_SRAM_OVERWRITE:
return "Blockiere SRAM-Überschreibung";
case MENU_ENUM_LABEL_VALUE_VIDEO_SHARED_CONTEXT:
return "HW-Shared-Context aktivieren";
case MENU_ENUM_LABEL_VALUE_RESTART_RETROARCH:
return "Starte RetroArch neu";
case MENU_ENUM_LABEL_VALUE_NETPLAY_NICKNAME:
return "Benutzername";
case MENU_ENUM_LABEL_VALUE_USER_LANGUAGE:
return "Sprache";
case MENU_ENUM_LABEL_VALUE_CAMERA_ALLOW:
return "Erlaube Kamera-Zugriff";
case MENU_ENUM_LABEL_VALUE_LOCATION_ALLOW:
return "Erlaube Standort-Lokalisierung";
case MENU_ENUM_LABEL_VALUE_PAUSE_LIBRETRO:
return "Pausiere, wenn das Menü aktiv ist";
case MENU_ENUM_LABEL_VALUE_INPUT_OSK_OVERLAY_ENABLE:
return "Zeige Tastatur-Overlay";
case MENU_ENUM_LABEL_VALUE_INPUT_OVERLAY_ENABLE:
return "Aktiviere Overlay";
case MENU_ENUM_LABEL_VALUE_VIDEO_MONITOR_INDEX:
return "Monitor-Index";
case MENU_ENUM_LABEL_VALUE_VIDEO_FRAME_DELAY:
return "Bildverzögerung";
case MENU_ENUM_LABEL_VALUE_INPUT_DUTY_CYCLE:
return "Auslastungsgrad";
case MENU_ENUM_LABEL_VALUE_INPUT_TURBO_PERIOD:
return "Turbo-Dauer";
case MENU_ENUM_LABEL_VALUE_INPUT_AXIS_THRESHOLD:
return "Schwellwert der Eingabe-Achsen";
case MENU_ENUM_LABEL_VALUE_INPUT_REMAP_BINDS_ENABLE:
return "Bind-Remapping aktivieren";
case MENU_ENUM_LABEL_VALUE_INPUT_MAX_USERS:
return "Maximale Benutzerzahl";
case MENU_ENUM_LABEL_VALUE_INPUT_AUTODETECT_ENABLE:
return "Automatische Konfiguration aktivieren";
case MENU_ENUM_LABEL_VALUE_AUDIO_OUTPUT_RATE:
return "Audio-Frequenzrate (KHz)";
case MENU_ENUM_LABEL_VALUE_AUDIO_MAX_TIMING_SKEW:
return "Maximaler Audioversatz";
case MENU_ENUM_LABEL_VALUE_CHEAT_NUM_PASSES:
return "Cheat-Durchgänge";
case MENU_ENUM_LABEL_VALUE_REMAP_FILE_SAVE_CORE:
return "Speichere Core-Remap-Datei";
case MENU_ENUM_LABEL_VALUE_REMAP_FILE_SAVE_GAME:
return "Speichere Spiel-Remap-Datei";
case MENU_ENUM_LABEL_VALUE_CHEAT_APPLY_CHANGES:
return "Änderungen übernehmen";
case MENU_ENUM_LABEL_VALUE_SHADER_APPLY_CHANGES:
return "Änderungen übernehmen";
case MENU_ENUM_LABEL_VALUE_REWIND_ENABLE:
return "Zurückspulen (Rewind) aktivieren";
case MENU_ENUM_LABEL_VALUE_CONTENT_COLLECTION_LIST:
return "Lade Content (Sammlung)"; /* FIXME */
case MENU_ENUM_LABEL_VALUE_DETECT_CORE_LIST:
return "Lade Content (Core erkennen)"; /* FIXME */
case MENU_ENUM_LABEL_VALUE_LOAD_CONTENT_HISTORY:
return "Lade Content (Verlauf)"; /* FIXME/UPDATE */
case MENU_ENUM_LABEL_VALUE_AUDIO_ENABLE:
return "Aktiviere Audio";
case MENU_ENUM_LABEL_VALUE_FPS_SHOW:
return "Zeige Framerate";
case MENU_ENUM_LABEL_VALUE_AUDIO_MUTE:
return "Stumm";
case MENU_ENUM_LABEL_VALUE_AUDIO_VOLUME:
return "Lautstärke (dB)";
case MENU_ENUM_LABEL_VALUE_AUDIO_SYNC:
return "Synchronisiere Audio";
case MENU_ENUM_LABEL_VALUE_AUDIO_RATE_CONTROL_DELTA:
return "Audio Rate Control Delta";
case MENU_ENUM_LABEL_VALUE_VIDEO_SHADER_NUM_PASSES:
return "Shader-Durchgänge"; /* FIXME */
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_SHA1:
return "SHA1";
case MENU_ENUM_LABEL_VALUE_CONFIGURATIONS:
return "Lade Konfigurationsdatei"; /* FIXME/UPDATE */
case MENU_ENUM_LABEL_VALUE_REWIND_GRANULARITY:
return "Genauigkeit des Zurückspulens (Rewind)";
case MENU_ENUM_LABEL_VALUE_REMAP_FILE_LOAD:
return "Lade Remap-Datei";
case MENU_ENUM_LABEL_VALUE_CUSTOM_RATIO:
return "Benutzerdefiniertes Verhältnis";
case MENU_ENUM_LABEL_VALUE_USE_THIS_DIRECTORY:
return "<Diesen Ordner verwenden>";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_START_CONTENT:
return "Starte Content";
case MENU_ENUM_LABEL_VALUE_DISK_OPTIONS: /* UPDATE/FIXME */
return "Datenträger-Optionen";
case MENU_ENUM_LABEL_VALUE_CORE_OPTIONS:
return "Optionen";
case MENU_ENUM_LABEL_VALUE_CORE_CHEAT_OPTIONS:
return "Cheats";
case MENU_ENUM_LABEL_VALUE_CHEAT_FILE_LOAD:
return "Lade Cheat-Datei";
case MENU_ENUM_LABEL_VALUE_CHEAT_FILE_SAVE_AS:
return "Speichere Cheat-Datei unter...";
case MENU_ENUM_LABEL_VALUE_CORE_COUNTERS:
return "Core-Zähler";
case MENU_ENUM_LABEL_VALUE_TAKE_SCREENSHOT:
return "Bildschirmfoto";
case MENU_ENUM_LABEL_VALUE_RESUME:
return "Fortsetzen";
case MENU_ENUM_LABEL_VALUE_DISK_INDEX:
return "Datenträger-Nummer";
case MENU_ENUM_LABEL_VALUE_FRONTEND_COUNTERS:
return "Frontendzähler";
case MENU_ENUM_LABEL_VALUE_DISK_IMAGE_APPEND:
return "Füge Datenträgerabbild hinzu";
case MENU_ENUM_LABEL_VALUE_DISK_CYCLE_TRAY_STATUS:
return "Datenträgerstatus";
case MENU_ENUM_LABEL_VALUE_NO_PLAYLIST_ENTRIES_AVAILABLE:
return "Keine Wiedergabelisten-Eintrage verfügbar.";
case MENU_ENUM_LABEL_VALUE_NO_CORE_INFORMATION_AVAILABLE:
return "Keine Core-Informationen verfügbar.";
case MENU_ENUM_LABEL_VALUE_NO_CORE_OPTIONS_AVAILABLE:
return "Keine Core-Optionen verfügbar.";
case MENU_ENUM_LABEL_VALUE_NO_CORES_AVAILABLE:
return "Kein Core verfügbar.";
case MENU_ENUM_LABEL_VALUE_NO_CORE:
return "Kein Core";
case MENU_ENUM_LABEL_VALUE_DATABASE_MANAGER:
return "Datenbankmanager";
case MENU_ENUM_LABEL_VALUE_CURSOR_MANAGER:
return "Cursormanager";
case MENU_ENUM_LABEL_VALUE_MAIN_MENU:
return "Hauptmenü";
case MENU_ENUM_LABEL_VALUE_SETTINGS:
return "Einstellungen";
case MENU_ENUM_LABEL_VALUE_QUIT_RETROARCH:
return "RetroArch beenden";
case MENU_ENUM_LABEL_VALUE_HELP:
return "Hilfe";
case MENU_ENUM_LABEL_VALUE_SAVE_NEW_CONFIG:
return "Speichere neue Konfiguration";
case MENU_ENUM_LABEL_VALUE_RESTART_CONTENT:
return "Starte neu";
case MENU_ENUM_LABEL_VALUE_CORE_UPDATER_LIST:
return "Core-Updater";
case MENU_ENUM_LABEL_VALUE_CORE_UPDATER_BUILDBOT_URL:
return "Buildbot-Cores-URL";
case MENU_ENUM_LABEL_VALUE_BUILDBOT_ASSETS_URL:
return "Buildbot-Assets-URL";
case MENU_ENUM_LABEL_VALUE_NAVIGATION_WRAPAROUND:
return "Navigation umbrechen";
case MENU_ENUM_LABEL_VALUE_NAVIGATION_BROWSER_FILTER_SUPPORTED_EXTENSIONS_ENABLE:
return "Bekannte Dateiendungen filtern";
case MENU_ENUM_LABEL_VALUE_CORE_UPDATER_AUTO_EXTRACT_ARCHIVE:
return "Heruntergeladene Archive automatisch entpacken";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFORMATION:
return "Systeminformationen";
case MENU_ENUM_LABEL_VALUE_ONLINE_UPDATER:
return "Online-Aktualisierungen";
case MENU_ENUM_LABEL_VALUE_CORE_INFORMATION:
return "Core-Informationen";
case MENU_ENUM_LABEL_VALUE_DIRECTORY_NOT_FOUND:
return "Ordner nicht gefunden.";
case MENU_ENUM_LABEL_VALUE_NO_ITEMS:
return "Keine Einträge.";
case MENU_ENUM_LABEL_VALUE_CORE_LIST:
return "Lade Core";
case MENU_ENUM_LABEL_VALUE_LOAD_CONTENT:
return "Lade Content"; /* FIXME */
case MENU_ENUM_LABEL_VALUE_CLOSE_CONTENT:
return "Schließe";
case MENU_ENUM_LABEL_VALUE_MANAGEMENT:
return "Datenbank-Einstellungen";
case MENU_ENUM_LABEL_VALUE_SAVE_STATE:
return "Speichere Savestate";
case MENU_ENUM_LABEL_VALUE_LOAD_STATE:
return "Lade Savestate";
case MENU_ENUM_LABEL_VALUE_RESUME_CONTENT:
return "Fortsetzen";
case MENU_ENUM_LABEL_VALUE_INPUT_DRIVER:
return "Eingabe-Treiber";
case MENU_ENUM_LABEL_VALUE_AUDIO_DRIVER:
return "Audio-Treiber";
case MENU_ENUM_LABEL_VALUE_JOYPAD_DRIVER:
return "Joypad-Treiber";
case MENU_ENUM_LABEL_VALUE_AUDIO_RESAMPLER_DRIVER:
return "Audio-Resampler-Treiber";
case MENU_ENUM_LABEL_VALUE_RECORD_DRIVER:
return "Aufnahme-Treiber";
case MENU_ENUM_LABEL_VALUE_MENU_DRIVER:
return "Menü-Treiber";
case MENU_ENUM_LABEL_VALUE_CAMERA_DRIVER:
return "Kamera-Treiber";
case MENU_ENUM_LABEL_VALUE_LOCATION_DRIVER:
return "Standort-Treiber";
case MENU_ENUM_LABEL_VALUE_UNABLE_TO_READ_COMPRESSED_FILE:
return "Komprimiertes Archiv kann nicht gelesen werden.";
case MENU_ENUM_LABEL_VALUE_OVERLAY_SCALE:
return "Overlay-Skalierung";
case MENU_ENUM_LABEL_VALUE_OVERLAY_PRESET:
return "Overlay-Voreinstellung";
case MENU_ENUM_LABEL_VALUE_AUDIO_LATENCY:
return "Audiolatenz (ms)";
case MENU_ENUM_LABEL_VALUE_AUDIO_DEVICE:
return "Soundkarte";
case MENU_ENUM_LABEL_VALUE_KEYBOARD_OVERLAY_PRESET:
return "Tastatur-Overlay-Voreinstellung";
case MENU_ENUM_LABEL_VALUE_OVERLAY_OPACITY:
return "Overlay-Transparenz";
case MENU_ENUM_LABEL_VALUE_MENU_WALLPAPER:
return "Menühintergrund";
case MENU_ENUM_LABEL_VALUE_DYNAMIC_WALLPAPER:
return "Dynamischer Hintergrund";
case MENU_ENUM_LABEL_VALUE_CORE_INPUT_REMAPPING_OPTIONS: /* UPDATE/FIXME */
return "Core-Input-Optionen";
case MENU_ENUM_LABEL_VALUE_SHADER_OPTIONS:
return "Shaders";
case MENU_ENUM_LABEL_VALUE_VIDEO_SHADER_PARAMETERS:
return "Momentane Shaderparameter"; /* FIXME/UPDATE */
case MENU_ENUM_LABEL_VALUE_VIDEO_SHADER_PRESET_PARAMETERS:
return "Menü Shaderparameter (Menü)";
case MENU_ENUM_LABEL_VALUE_VIDEO_SHADER_PRESET_SAVE_AS:
return "Speiche Shader-Voreinstellung unter...";
case MENU_ENUM_LABEL_VALUE_NO_SHADER_PARAMETERS:
return "Keine Shaderparameter";
case MENU_ENUM_LABEL_VALUE_VIDEO_SHADER_PRESET:
return "Lade Shader-Voreinstellung";
case MENU_ENUM_LABEL_VALUE_VIDEO_FILTER:
return "Videofilter";
case MENU_ENUM_LABEL_VALUE_AUDIO_DSP_PLUGIN:
return "Audio-DSP-Plugin";
case MENU_ENUM_LABEL_VALUE_STARTING_DOWNLOAD:
return "Starte Download: ";
case MENU_ENUM_LABEL_VALUE_SECONDS:
return "Sekunden";
case MENU_ENUM_LABEL_VALUE_OFF: /* Don't change. Needed for XMB atm. (Would be: "AN") */
return "OFF";
case MENU_ENUM_LABEL_VALUE_ON: /* Don't change. Needed for XMB atm. (Would be: "AUS") */
return "ON";
case MENU_ENUM_LABEL_VALUE_UPDATE_ASSETS:
return "Aktualisiere Assets";
case MENU_ENUM_LABEL_VALUE_UPDATE_CHEATS:
return "Aktualisiere Cheats";
case MENU_ENUM_LABEL_VALUE_UPDATE_AUTOCONFIG_PROFILES:
return "Aktualisiere Autoconfig-Profile";
case MENU_ENUM_LABEL_VALUE_UPDATE_DATABASES:
return "Aktualisiere Datenbanken";
case MENU_ENUM_LABEL_VALUE_UPDATE_OVERLAYS:
return "Aktualisiere Overlays";
case MENU_ENUM_LABEL_VALUE_UPDATE_CG_SHADERS:
return "Aktualisiere CG-Shader";
case MENU_ENUM_LABEL_VALUE_UPDATE_GLSL_SHADERS:
return "Aktualisiere GLSL-Shader";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_CORE_NAME:
return "Core-Name";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_CORE_LABEL:
return "Core-Beschriftung";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_SYSTEM_NAME:
return "System-Name";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_SYSTEM_MANUFACTURER:
return "System-Hersteller";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_CATEGORIES:
return "Kategorien";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_AUTHORS:
return "Autoren";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_PERMISSIONS:
return "Berechtigungen";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_LICENSES:
return "Lizenz(en)";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_SUPPORTED_EXTENSIONS:
return "Unterstütze Erweiterungen";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_FIRMWARE:
return "Firmware";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_CORE_NOTES:
return "Core-Hinweise";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_BUILD_DATE:
return "Build-Datum";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_GIT_VERSION:
return "Git-Version";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_CPU_FEATURES:
return "CPU-Eigenschaften";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_FRONTEND_IDENTIFIER:
return "Frontend-Kennung";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_FRONTEND_NAME:
return "Frontend-Name";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_FRONTEND_OS:
return "Frontend-Betriebssystem";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_RETRORATING_LEVEL:
return "RetroRating-Stufe";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_POWER_SOURCE:
return "Energiequelle";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_POWER_SOURCE_NO_SOURCE:
return "Keine Quelle";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_POWER_SOURCE_CHARGING:
return "Lädt";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_POWER_SOURCE_CHARGED:
return "Geladen";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_POWER_SOURCE_DISCHARGING:
return "Entlädt";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_VIDEO_CONTEXT_DRIVER:
return "Video-Context-Treiber";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_DISPLAY_METRIC_MM_WIDTH:
return "Bildschirmbreite (mm)";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_DISPLAY_METRIC_MM_HEIGHT:
return "Bildschirmhöhe (mm)";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_DISPLAY_METRIC_DPI:
return "Bildschirm-DPI";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_LIBRETRODB_SUPPORT:
return "LibretroDB-Unterstützung";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OVERLAY_SUPPORT:
return "Overlay-Unterstützung";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_COMMAND_IFACE_SUPPORT:
return "Befehlsinterface-Unterstützung";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_NETWORK_COMMAND_IFACE_SUPPORT:
return "Netzwerk-Befehlsinterface-Unterstützung";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_COCOA_SUPPORT:
return "Cocoa-Unterstützung";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_RPNG_SUPPORT:
return "PNG-Unterstützung (RPNG)";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_SDL_SUPPORT:
return "SDL1.2-Unterstützung";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_SDL2_SUPPORT:
return "SDL2-Unterstützung";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OPENGL_SUPPORT:
return "OpenGL-Unterstützung";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OPENGLES_SUPPORT:
return "OpenGL-ES-Unterstützung";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_THREADING_SUPPORT:
return "Threading-Unterstützung";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_KMS_SUPPORT:
return "KMS/EGL-Unterstützung";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_UDEV_SUPPORT:
return "Udev-Unterstützung";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OPENVG_SUPPORT:
return "OpenVG-Unterstützung";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_EGL_SUPPORT:
return "EGL-Unterstützung";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_X11_SUPPORT:
return "X11-Unterstützung";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_WAYLAND_SUPPORT:
return "Wayland-Unterstützung";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_XVIDEO_SUPPORT:
return "XVideo-Unterstützung";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_ALSA_SUPPORT:
return "ALSA-Unterstützung";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OSS_SUPPORT:
return "OSS-Unterstützung";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OPENAL_SUPPORT:
return "OpenAL-Unterstützung";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OPENSL_SUPPORT:
return "OpenSL-Unterstützung";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_RSOUND_SUPPORT:
return "RSound-Unterstützung";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_ROARAUDIO_SUPPORT:
return "RoarAudio-Unterstützung";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_JACK_SUPPORT:
return "JACK-Unterstützung";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_PULSEAUDIO_SUPPORT:
return "PulseAudio-Unterstützung";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_DSOUND_SUPPORT:
return "DirectSound-Unterstützung";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_XAUDIO2_SUPPORT:
return "XAudio2-Unterstützung";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_ZLIB_SUPPORT:
return "Zlib-Unterstützung";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_7ZIP_SUPPORT:
return "7zip-Unterstützung";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_DYLIB_SUPPORT:
return "Dynamic-Library-Unterstützung";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_CG_SUPPORT:
return "Cg-Unterstützung";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_GLSL_SUPPORT:
return "GLSL-Unterstützung";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_HLSL_SUPPORT:
return "HLSL-Unterstützung";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_LIBXML2_SUPPORT:
return "Libxml2-XML-Parsing-Unterstützung";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_SDL_IMAGE_SUPPORT:
return "SDL-Image-Unterstützung";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_FBO_SUPPORT:
return "Unterstützung für OpenGL/Direct3D Render-to-Texture (Multi-Pass Shader)";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_FFMPEG_SUPPORT:
return "FFmpeg-Unterstützung";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_CORETEXT_SUPPORT:
return "CoreText-Unterstützung";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_FREETYPE_SUPPORT:
return "FreeType-Unterstützung";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_NETPLAY_SUPPORT:
return "Netplay-Unterstützung (Peer-to-Peer)";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_PYTHON_SUPPORT:
return "Python-Unterstützung (Script-Unterstützung in Shadern)";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_V4L2_SUPPORT:
return "Video4Linux2-Unterstützung";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_LIBUSB_SUPPORT:
return "Libusb-Unterstützung";
case MENU_ENUM_LABEL_VALUE_YES:
return "Ja";
case MENU_ENUM_LABEL_VALUE_NO:
return "Nein";
case MENU_ENUM_LABEL_VALUE_BACK:
return "ZURÜCK";
case MENU_ENUM_LABEL_VALUE_SCREEN_RESOLUTION:
return "Bildschirmauflösung";
case MENU_ENUM_LABEL_VALUE_DISABLED:
return "Deaktiviert";
case MENU_ENUM_LABEL_VALUE_PORT:
return "Port";
case MENU_ENUM_LABEL_VALUE_NONE:
return "Keins";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_DEVELOPER:
return "Entwickler";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_PUBLISHER:
return "Publisher";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_DESCRIPTION:
return "Beschreibung";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_NAME:
return "Name";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_ORIGIN:
return "Herkunft";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_FRANCHISE:
return "Franchise";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_RELEASE_MONTH:
return "Veröffentlichungsmonat";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_RELEASE_YEAR:
return "Veröffentlichungsjahr";
case MENU_ENUM_LABEL_VALUE_TRUE:
return "True";
case MENU_ENUM_LABEL_VALUE_FALSE:
return "False";
case MENU_ENUM_LABEL_VALUE_MISSING:
return "Fehlt";
case MENU_ENUM_LABEL_VALUE_PRESENT:
return "Vorhanden";
case MENU_ENUM_LABEL_VALUE_OPTIONAL:
return "Optional";
case MENU_ENUM_LABEL_VALUE_REQUIRED:
return "Notwendig";
case MENU_ENUM_LABEL_VALUE_STATUS:
return "Status";
case MENU_ENUM_LABEL_VALUE_AUDIO_SETTINGS:
return "Audio-Einstellungen";
case MENU_ENUM_LABEL_VALUE_INPUT_SETTINGS:
return "Eingabe-Einstellungen";
case MENU_ENUM_LABEL_VALUE_ONSCREEN_DISPLAY_SETTINGS:
return "OSD-Einstellungen";
case MENU_ENUM_LABEL_VALUE_OVERLAY_SETTINGS:
return "Overlay-Einstellungen";
case MENU_ENUM_LABEL_VALUE_MENU_SETTINGS:
return "Menü-Einstellungen";
case MENU_ENUM_LABEL_VALUE_MULTIMEDIA_SETTINGS:
return "Media-Player-Einstellungen"; /* UPDATE/FIXME */
case MENU_ENUM_LABEL_VALUE_UI_SETTINGS:
return "Benutzeroberflächen-Einstellungen";
case MENU_ENUM_LABEL_VALUE_MENU_FILE_BROWSER_SETTINGS:
return "Menü-Dateibrowser-Einstellungen";
case MENU_ENUM_LABEL_VALUE_CORE_UPDATER_SETTINGS:
return "Core-Updater-Einstellungen"; /* UPDATE/FIXME */
case MENU_ENUM_LABEL_VALUE_NETWORK_SETTINGS:
return "Netzwerk-Einstellungen";
case MENU_ENUM_LABEL_VALUE_PLAYLIST_SETTINGS:
return "Wiedergabelisten-Einstellungen";
case MENU_ENUM_LABEL_VALUE_USER_SETTINGS:
return "Benutzer-Einstellungen";
case MENU_ENUM_LABEL_VALUE_DIRECTORY_SETTINGS:
return "Verzeichnis-Einstellungen";
case MENU_ENUM_LABEL_VALUE_RECORDING_SETTINGS:
return "Aufnahme-Einstellungen";
case MENU_ENUM_LABEL_VALUE_NO_INFORMATION_AVAILABLE:
return "Keine Informationen verfügbar.";
case MENU_ENUM_LABEL_VALUE_INPUT_USER_BINDS:
return "Spieler %u Tastenbelegung";
case MENU_ENUM_LABEL_VALUE_LANG_ENGLISH:
return "Englisch";
case MENU_ENUM_LABEL_VALUE_LANG_JAPANESE:
return "Japanisch";
case MENU_ENUM_LABEL_VALUE_LANG_FRENCH:
return "Französisch";
case MENU_ENUM_LABEL_VALUE_LANG_SPANISH:
return "Spanisch";
case MENU_ENUM_LABEL_VALUE_LANG_GERMAN:
return "Deutsch";
case MENU_ENUM_LABEL_VALUE_LANG_ITALIAN:
return "Italienisch";
case MENU_ENUM_LABEL_VALUE_LANG_DUTCH:
return "Niederländisch";
case MENU_ENUM_LABEL_VALUE_LANG_PORTUGUESE:
return "Portugiesisch";
case MENU_ENUM_LABEL_VALUE_LANG_RUSSIAN:
return "Russisch";
case MENU_ENUM_LABEL_VALUE_LANG_KOREAN:
return "Koreanisch";
case MENU_ENUM_LABEL_VALUE_LANG_CHINESE_TRADITIONAL:
return "Chinesisch (Traditionell)";
case MENU_ENUM_LABEL_VALUE_LANG_CHINESE_SIMPLIFIED:
return "Chinesisch (Vereinfacht)";
case MENU_ENUM_LABEL_VALUE_LANG_ESPERANTO:
return "Esperanto";
case MENU_ENUM_LABEL_VALUE_LEFT_ANALOG:
return "Linker Analogstick";
case MENU_ENUM_LABEL_VALUE_RIGHT_ANALOG:
return "Rechter Analogstick";
default:
break;
}
return "null";
}
int menu_hash_get_help_de(uint32_t hash, char *s, size_t len)
{
uint32_t driver_hash = 0;

View File

@ -18,18 +18,6 @@
#include "../menu_hash.h"
const char *menu_hash_to_str_eo_enum(enum menu_hash_enums msg)
{
switch (msg)
{
case 0:
default:
break;
}
return "null";
}
int menu_hash_get_help_eo(uint32_t hash, char *s, size_t len)
{
int ret = 0;

File diff suppressed because it is too large Load Diff

View File

@ -27,878 +27,6 @@
/* DO NOT REMOVE THIS. If it causes build failure, it's because you saved the file as UTF-8. Read the above comment. */
extern const char force_iso_8859_1[sizeof("àéÉèêô")==6+1 ? 1 : -1];
const char *menu_hash_to_str_fr_enum(enum menu_hash_enums msg)
{
switch (msg)
{
case MENU_ENUM_LABEL_VALUE_OVERLAY_AUTOLOAD_PREFERRED:
return "Charger l'overlay préféré automatiquement";
case MENU_ENUM_LABEL_VALUE_UPDATE_CORE_INFO_FILES:
return "Mettre à jour les informations des coeurs";
case MENU_ENUM_LABEL_VALUE_DOWNLOAD_CORE_CONTENT:
return "Télécharger du contenu";
case MENU_ENUM_LABEL_VALUE_SCAN_THIS_DIRECTORY:
return "<Scanner ce dossier>";
case MENU_ENUM_LABEL_VALUE_SCAN_FILE:
return "Scanner un fichier";
case MENU_ENUM_LABEL_VALUE_SCAN_DIRECTORY:
return "Scanner un dossier";
case MENU_ENUM_LABEL_VALUE_ADD_CONTENT_LIST:
return "Ajouter du contenu";
case MENU_ENUM_LABEL_VALUE_INFORMATION_LIST:
return "Informations";
case MENU_ENUM_LABEL_VALUE_USE_BUILTIN_PLAYER:
return "Utiliser le lecteur vidéo embarqué";
case MENU_ENUM_LABEL_VALUE_CONTENT_SETTINGS:
return "Menu rapide";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_CRC32:
return "CRC32";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_MD5:
return "MD5";
case MENU_ENUM_LABEL_VALUE_LOAD_CONTENT_LIST:
return "Charger du contenu";
case MENU_ENUM_LABEL_VALUE_LOAD_ARCHIVE:
return "Charger l'archive";
case MENU_ENUM_LABEL_VALUE_OPEN_ARCHIVE:
return "Ouvrir l'archive";
case MENU_ENUM_LABEL_VALUE_ASK_ARCHIVE:
return "Demander";
case MENU_ENUM_LABEL_VALUE_PRIVACY_SETTINGS:
return "Confidentialité";
case MENU_ENUM_LABEL_VALUE_HORIZONTAL_MENU:
return "Horizontal Menu";
case MENU_ENUM_LABEL_VALUE_NO_SETTINGS_FOUND:
return "Pas de réglages trouvés.";
case MENU_ENUM_LABEL_VALUE_NO_PERFORMANCE_COUNTERS:
return "Pas de compteurs de performance.";
case MENU_ENUM_LABEL_VALUE_DRIVER_SETTINGS:
return "Pilotes";
case MENU_ENUM_LABEL_VALUE_CONFIGURATION_SETTINGS:
return "Configurations";
case MENU_ENUM_LABEL_VALUE_CORE_SETTINGS:
return "Coeurs";
case MENU_ENUM_LABEL_VALUE_VIDEO_SETTINGS:
return "Vidéo";
case MENU_ENUM_LABEL_VALUE_LOGGING_SETTINGS:
return "Journaux";
case MENU_ENUM_LABEL_VALUE_SAVING_SETTINGS:
return "Sauvegardes";
case MENU_ENUM_LABEL_VALUE_REWIND_SETTINGS:
return "Rembobinage";
case MENU_ENUM_LABEL_VALUE_SHADER:
return "Shader";
case MENU_ENUM_LABEL_VALUE_CHEAT:
return "Triche";
case MENU_ENUM_LABEL_VALUE_USER:
return "Utilisateur";
case MENU_ENUM_LABEL_VALUE_SYSTEM_BGM_ENABLE:
return "Musique du système activée";
case MENU_ENUM_LABEL_VALUE_RETROPAD:
return "RetroPad";
case MENU_ENUM_LABEL_VALUE_RETROKEYBOARD:
return "RetroKeyboard";
case MENU_ENUM_LABEL_AUDIO_BLOCK_FRAMES:
return "audio_block_frames";
case MENU_ENUM_LABEL_VALUE_AUDIO_BLOCK_FRAMES:
return "Block Frames";
case MENU_ENUM_LABEL_VALUE_INPUT_DESCRIPTOR_LABEL_SHOW: /* FIXME/UPDATE */
return "Afficher les remaps du coeur";
case MENU_ENUM_LABEL_VALUE_INPUT_DESCRIPTOR_HIDE_UNBOUND:
return "Cacher les remaps non mappés des coeurs";
case MENU_ENUM_LABEL_VALUE_VIDEO_FONT_ENABLE:
return "Afficher les messages d'info";
case MENU_ENUM_LABEL_VALUE_VIDEO_FONT_PATH:
return "Police des messages d'info";
case MENU_ENUM_LABEL_VALUE_VIDEO_FONT_SIZE:
return "Taille du texte des messages";
case MENU_ENUM_LABEL_VALUE_VIDEO_MESSAGE_POS_X:
return "Position X";
case MENU_ENUM_LABEL_VALUE_VIDEO_MESSAGE_POS_Y:
return "Position Y";
case MENU_ENUM_LABEL_VALUE_VIDEO_SOFT_FILTER:
return "Filtre doux activé";
case MENU_ENUM_LABEL_VIDEO_FILTER_FLICKER:
return "video_filter_flicker";
case MENU_ENUM_LABEL_VALUE_VIDEO_FILTER_FLICKER:
return "Filtre anti-scintillement";
case MENU_ENUM_LABEL_VALUE_DIRECTORY_CONTENT:
return "<Dossier de contenu>";
case MENU_ENUM_LABEL_VALUE_UNKNOWN:
return "Inconnu";
case MENU_ENUM_LABEL_VALUE_DONT_CARE:
return "Peu importe";
case MENU_ENUM_LABEL_VALUE_LINEAR:
return "Linéaire";
case MENU_ENUM_LABEL_VALUE_NEAREST:
return "Au plus proche";
case MENU_ENUM_LABEL_VALUE_DIRECTORY_DEFAULT:
return "<Par défaut>";
case MENU_ENUM_LABEL_VALUE_DIRECTORY_NONE:
return "<Aucun>";
case MENU_ENUM_LABEL_VALUE_NOT_AVAILABLE:
return "Indisponible";
case MENU_ENUM_LABEL_VALUE_INPUT_REMAPPING_DIRECTORY:
return "Dossier de remaps d'entrées";
case MENU_ENUM_LABEL_VALUE_JOYPAD_AUTOCONFIG_DIR:
return "Dossier des autoconfigs d'entrées";
case MENU_ENUM_LABEL_VALUE_RECORDING_CONFIG_DIRECTORY:
return "Dossier des réglages de capture vidéo";
case MENU_ENUM_LABEL_VALUE_RECORDING_OUTPUT_DIRECTORY:
return "Dossier d'enregistrement des vidéos";
case MENU_ENUM_LABEL_VALUE_SCREENSHOT_DIRECTORY:
return "Dossier des captures d'écran";
case MENU_ENUM_LABEL_VALUE_PLAYLIST_DIRECTORY:
return "Dossier des playlists";
case MENU_ENUM_LABEL_VALUE_SAVEFILE_DIRECTORY:
return "Dossier des sauvegardes";
case MENU_ENUM_LABEL_VALUE_SAVESTATE_DIRECTORY:
return "Dossier des sauvegardes rapides";
case MENU_ENUM_LABEL_VALUE_STDIN_CMD_ENABLE:
return "Commandes stdin";
case MENU_ENUM_LABEL_VALUE_VIDEO_DRIVER:
return "Pilote vidéo";
case MENU_ENUM_LABEL_VALUE_RECORD_ENABLE:
return "Autoriser les captures vidéo";
case MENU_ENUM_LABEL_VALUE_VIDEO_GPU_RECORD:
return "Captures vidéo via le GPU";
case MENU_ENUM_LABEL_VALUE_RECORD_PATH: /* FIXME/UPDATE */
return "Chemin de l'enregistrement";
case MENU_ENUM_LABEL_VALUE_RECORD_USE_OUTPUT_DIRECTORY:
return "Utiliser le dossier d'enregistrement";
case MENU_ENUM_LABEL_VALUE_RECORD_CONFIG:
return "Configuration de capture";
case MENU_ENUM_LABEL_VALUE_VIDEO_POST_FILTER_RECORD:
return "Activer les filtres de traitement";
case MENU_ENUM_LABEL_VALUE_CORE_ASSETS_DIRECTORY:
return "Dossier des téléchargements";
case MENU_ENUM_LABEL_VALUE_ASSETS_DIRECTORY:
return "Dossier des assets";
case MENU_ENUM_LABEL_VALUE_DYNAMIC_WALLPAPERS_DIRECTORY:
return "Dossier des fonds d'écran dynamiques";
case MENU_ENUM_LABEL_VALUE_THUMBNAILS_DIRECTORY:
return "Dossier des vignettes";
case MENU_ENUM_LABEL_VALUE_RGUI_BROWSER_DIRECTORY:
return "Dossier racine de navigation";
case MENU_ENUM_LABEL_VALUE_RGUI_CONFIG_DIRECTORY:
return "Dossier des fichiers de configuration";
case MENU_ENUM_LABEL_VALUE_LIBRETRO_INFO_PATH:
return "Dossier des informations des coeurs";
case MENU_ENUM_LABEL_VALUE_LIBRETRO_DIR_PATH:
return "Dossier des coeurs";
case MENU_ENUM_LABEL_VALUE_CURSOR_DIRECTORY:
return "Dossier des curseurs";
case MENU_ENUM_LABEL_VALUE_CONTENT_DATABASE_DIRECTORY:
return "Dossier des bases de données de contenus";
case MENU_ENUM_LABEL_VALUE_SYSTEM_DIRECTORY:
return "Dossier système/BIOS";
case MENU_ENUM_LABEL_VALUE_CHEAT_DATABASE_PATH:
return "Dossier des fichiers de triche";
case MENU_ENUM_LABEL_VALUE_CACHE_DIRECTORY: /* FIXME/UPDATE */
return "Dossier d'extraction";
case MENU_ENUM_LABEL_VALUE_AUDIO_FILTER_DIR:
return "Dossier des filtres audio";
case MENU_ENUM_LABEL_VALUE_VIDEO_SHADER_DIR:
return "Dossier des shaders vidéo";
case MENU_ENUM_LABEL_VALUE_VIDEO_FILTER_DIR:
return "Dossier des filtres vidéo";
case MENU_ENUM_LABEL_VALUE_OVERLAY_DIRECTORY:
return "Dossier des overlays";
case MENU_ENUM_LABEL_VALUE_OSK_OVERLAY_DIRECTORY:
return "Dossier des overlays claviers";
case MENU_ENUM_LABEL_VALUE_NETPLAY_CLIENT_SWAP_INPUT:
return "Inverser les entrées du jeu en réseau";
case MENU_ENUM_LABEL_VALUE_NETPLAY_SPECTATOR_MODE_ENABLE:
return "Activer le mode spectateur";
case MENU_ENUM_LABEL_VALUE_NETPLAY_IP_ADDRESS:
return "Adresse IP";
case MENU_ENUM_LABEL_VALUE_NETPLAY_TCP_UDP_PORT:
return "Port TCP/UDP du jeu en réseau";
case MENU_ENUM_LABEL_VALUE_NETPLAY_ENABLE:
return "Autoriser le jeu en réseau";
case MENU_ENUM_LABEL_VALUE_NETPLAY_DELAY_FRAMES:
return "Netplay Delay Frames";
case MENU_ENUM_LABEL_VALUE_NETPLAY_MODE:
return "Activer le mode client";
case MENU_ENUM_LABEL_VALUE_RGUI_SHOW_START_SCREEN:
return "Afficher l'écran de d'aide";
case MENU_ENUM_LABEL_VALUE_TITLE_COLOR:
return "Couleur du titre du menu";
case MENU_ENUM_LABEL_VALUE_ENTRY_HOVER_COLOR:
return "Couleur de l'entrée active";
case MENU_ENUM_LABEL_VALUE_TIMEDATE_ENABLE:
return "Afficher la date et l'heure";
case MENU_ENUM_LABEL_VALUE_THREADED_DATA_RUNLOOP_ENABLE:
return "Boucle de données threadée";
case MENU_ENUM_LABEL_VALUE_ENTRY_NORMAL_COLOR:
return "Couleur des entrées du menu";
case MENU_ENUM_LABEL_VALUE_SHOW_ADVANCED_SETTINGS:
return "Afficher les réglages avancés";
case MENU_ENUM_LABEL_VALUE_COLLAPSE_SUBGROUPS_ENABLE:
return "Fusionner les sous-groupes";
case MENU_ENUM_LABEL_VALUE_MOUSE_ENABLE:
return "Support de la souris";
case MENU_ENUM_LABEL_VALUE_POINTER_ENABLE:
return "Support du tactile";
case MENU_ENUM_LABEL_VALUE_CORE_ENABLE:
return "Afficher le coeur actuel";
case MENU_ENUM_LABEL_VALUE_DPI_OVERRIDE_ENABLE:
return "Personnaliser le DPI";
case MENU_ENUM_LABEL_VALUE_DPI_OVERRIDE_VALUE:
return "Valeur du DPI personnalisé";
case MENU_ENUM_LABEL_VALUE_SUSPEND_SCREENSAVER_ENABLE:
return "Désactiver l'économiseur d'écran";
case MENU_ENUM_LABEL_VALUE_VIDEO_DISABLE_COMPOSITION:
return "Désactiver le compositeur du bureau";
case MENU_ENUM_LABEL_VALUE_PAUSE_NONACTIVE:
return "Ne pas fonctionner en arrière-plan";
case MENU_ENUM_LABEL_VALUE_UI_COMPANION_START_ON_BOOT:
return "UI Companion Start On Boot";
case MENU_ENUM_LABEL_VALUE_UI_MENUBAR_ENABLE:
return "Menubar";
case MENU_ENUM_LABEL_VALUE_ARCHIVE_MODE:
return "Mode d'ouverture des archives";
case MENU_ENUM_LABEL_VALUE_NETWORK_CMD_ENABLE:
return "Commandes réseau";
case MENU_ENUM_LABEL_VALUE_NETWORK_CMD_PORT:
return "Port des commandes réseau";
case MENU_ENUM_LABEL_VALUE_HISTORY_LIST_ENABLE:
return "Afficher l'historique";
case MENU_ENUM_LABEL_VALUE_CONTENT_HISTORY_SIZE:
return "Taille de l'historique";
case MENU_ENUM_LABEL_VALUE_VIDEO_REFRESH_RATE_AUTO:
return "Fréquence estimée de l'écran";
case MENU_ENUM_LABEL_VALUE_DUMMY_ON_CORE_SHUTDOWN:
return "Utiliser un faux coeur lorsqu'il n'y en a pas";
case MENU_ENUM_LABEL_VALUE_CORE_SET_SUPPORTS_NO_CONTENT_ENABLE: /* TODO/FIXME */
return "Ne pas démarrer de coeur automatiquement";
case MENU_ENUM_LABEL_VALUE_FRAME_THROTTLE_ENABLE:
return "Limiter la vitesse d'exécution";
case MENU_ENUM_LABEL_VALUE_FASTFORWARD_RATIO:
return "Vitesse de l'avance rapide";
case MENU_ENUM_LABEL_VALUE_AUTO_REMAPS_ENABLE:
return "Charger les fichiers remaps automatiquement";
case MENU_ENUM_LABEL_VALUE_SLOWMOTION_RATIO:
return "Taux de ralentissement";
case MENU_ENUM_LABEL_VALUE_CORE_SPECIFIC_CONFIG:
return "Avoir une configuration par-coeur";
case MENU_ENUM_LABEL_VALUE_GAME_SPECIFIC_OPTIONS:
return "Options du coeur par-jeu";
case MENU_ENUM_LABEL_VALUE_AUTO_OVERRIDES_ENABLE:
return "Charger les fichiers d'override automatiquement";
case MENU_ENUM_LABEL_VALUE_CONFIG_SAVE_ON_EXIT:
return "Sauver la config en quittant";
case MENU_ENUM_LABEL_VALUE_VIDEO_SMOOTH:
return "Filtre bilinéaire (HW)";
case MENU_ENUM_LABEL_VALUE_VIDEO_GAMMA:
return "Gamma";
case MENU_ENUM_LABEL_VALUE_VIDEO_ALLOW_ROTATE:
return "Autoriser la rotation";
case MENU_ENUM_LABEL_VALUE_VIDEO_HARD_SYNC:
return "Synchroniser le GPU au CPU";
case MENU_ENUM_LABEL_VALUE_VIDEO_SWAP_INTERVAL:
return "Intervale de synchronisation verticale";
case MENU_ENUM_LABEL_VALUE_VIDEO_VSYNC:
return "Synchronisation verticale";
case MENU_ENUM_LABEL_VALUE_VIDEO_THREADED:
return "Threader l'affichage";
case MENU_ENUM_LABEL_VALUE_VIDEO_ROTATION:
return "Rotation";
case MENU_ENUM_LABEL_VALUE_VIDEO_GPU_SCREENSHOT:
return "Activer les captures d'écran GPU";
case MENU_ENUM_LABEL_VALUE_VIDEO_CROP_OVERSCAN:
return "Tronquer l'overscan (Reload)";
case MENU_ENUM_LABEL_VALUE_VIDEO_ASPECT_RATIO_INDEX:
return "Rapport d'aspect";
case MENU_ENUM_LABEL_VALUE_VIDEO_ASPECT_RATIO_AUTO:
return "Format d'image automatique";
case MENU_ENUM_LABEL_VALUE_VIDEO_FORCE_ASPECT:
return "Forcer le format d'image";
case MENU_ENUM_LABEL_VALUE_VIDEO_REFRESH_RATE:
return "Fréquence de rafraichissement";
case MENU_ENUM_LABEL_VALUE_VIDEO_FORCE_SRGB_DISABLE:
return "Désactiver sRGB FBO";
case MENU_ENUM_LABEL_VALUE_VIDEO_WINDOWED_FULLSCREEN:
return "Mode plein écran fenêtré";
case MENU_ENUM_LABEL_VALUE_PAL60_ENABLE:
return "Utiliser le mode PAL60";
case MENU_ENUM_LABEL_VALUE_VIDEO_VFILTER:
return "Deflicker"; /* TODO */
case MENU_ENUM_LABEL_VALUE_VIDEO_VI_WIDTH:
return "Set VI Screen Width"; /* TODO */
case MENU_ENUM_LABEL_VALUE_VIDEO_BLACK_FRAME_INSERTION:
return "Insérer des frames noires";
case MENU_ENUM_LABEL_VALUE_SORT_SAVEFILES_ENABLE:
return "Classer les sauvegardes par dossier";
case MENU_ENUM_LABEL_VALUE_SORT_SAVESTATES_ENABLE:
return "Classer les savestates par dossier";
case MENU_ENUM_LABEL_VALUE_VIDEO_FULLSCREEN:
return "Plein écran";
case MENU_ENUM_LABEL_VALUE_VIDEO_SCALE:
return "Zoom (en fenêtre)";
case MENU_ENUM_LABEL_VALUE_VIDEO_SCALE_INTEGER:
return "Aligner aux pixels de l'écran";
case MENU_ENUM_LABEL_VALUE_PERFCNT_ENABLE:
return "Compteurs de performance";
case MENU_ENUM_LABEL_VALUE_LIBRETRO_LOG_LEVEL:
return "Verbosité des journaux des coeurs";
case MENU_ENUM_LABEL_VALUE_LOG_VERBOSITY:
return "Verbosité des journaux";
case MENU_ENUM_LABEL_VALUE_SAVESTATE_AUTO_LOAD:
return "Charger automatiquement les savestates";
case MENU_ENUM_LABEL_VALUE_SAVESTATE_AUTO_INDEX:
return "Indexer automatiquement les savestates";
case MENU_ENUM_LABEL_VALUE_SAVESTATE_AUTO_SAVE:
return "Sauvegarde automatique";
case MENU_ENUM_LABEL_VALUE_AUTOSAVE_INTERVAL:
return "Intervale de sauvegarde SaveRAM";
case MENU_ENUM_LABEL_VALUE_BLOCK_SRAM_OVERWRITE:
return "Ne pas écraser la SaveRAM en chargeant la savestate";
case MENU_ENUM_LABEL_VALUE_VIDEO_SHARED_CONTEXT:
return "Partager le contexte matériel";
case MENU_ENUM_LABEL_VALUE_RESTART_RETROARCH:
return "Redémarrer RetroArch";
case MENU_ENUM_LABEL_VALUE_NETPLAY_NICKNAME:
return "Nom d'utilisateur";
case MENU_ENUM_LABEL_VALUE_USER_LANGUAGE:
return "Langage";
case MENU_ENUM_LABEL_VALUE_CAMERA_ALLOW:
return "Autoriser la caméra";
case MENU_ENUM_LABEL_VALUE_LOCATION_ALLOW:
return "Autoriser la localisation";
case MENU_ENUM_LABEL_VALUE_PAUSE_LIBRETRO:
return "Pauser le contenu quand le menu est activé";
case MENU_ENUM_LABEL_VALUE_INPUT_OSK_OVERLAY_ENABLE:
return "Afficher l'overlay clavier";
case MENU_ENUM_LABEL_VALUE_INPUT_OVERLAY_ENABLE:
return "Activer les overlays";
case MENU_ENUM_LABEL_VALUE_VIDEO_MONITOR_INDEX:
return "Écran";
case MENU_ENUM_LABEL_VALUE_VIDEO_FRAME_DELAY:
return "Délayer les frames";
case MENU_ENUM_LABEL_VALUE_INPUT_DUTY_CYCLE:
return "Rapport de cycle";
case MENU_ENUM_LABEL_VALUE_INPUT_TURBO_PERIOD:
return "Délai du turbo";
case MENU_ENUM_LABEL_VALUE_INPUT_AXIS_THRESHOLD:
return "Seuil des axes";
case MENU_ENUM_LABEL_VALUE_INPUT_REMAP_BINDS_ENABLE:
return "Autoriser le remapping des entrées";
case MENU_ENUM_LABEL_VALUE_INPUT_MAX_USERS:
return "Nombre d'utilisateurs";
case MENU_ENUM_LABEL_VALUE_INPUT_AUTODETECT_ENABLE:
return "Activer l'autoconfiguration";
case MENU_ENUM_LABEL_VALUE_AUDIO_OUTPUT_RATE:
return "Fréquence de sortie (KHz)";
case MENU_ENUM_LABEL_VALUE_AUDIO_MAX_TIMING_SKEW:
return "Limite max de l'ajustement";
case MENU_ENUM_LABEL_VALUE_CHEAT_NUM_PASSES:
return "Nombre de passages";
case MENU_ENUM_LABEL_VALUE_REMAP_FILE_SAVE_CORE:
return "Charger un fichier remaps de coeur";
case MENU_ENUM_LABEL_VALUE_REMAP_FILE_SAVE_GAME:
return "Charger un fichier remap de contenu";
case MENU_ENUM_LABEL_VALUE_CHEAT_APPLY_CHANGES:
return "Appliquer les changements";
case MENU_ENUM_LABEL_VALUE_SHADER_APPLY_CHANGES:
return "Appliquer les changements";
case MENU_ENUM_LABEL_VALUE_REWIND_ENABLE:
return "Activer le rembobinage";
case MENU_ENUM_LABEL_VALUE_CONTENT_COLLECTION_LIST:
return "Via les collections";
case MENU_ENUM_LABEL_VALUE_DETECT_CORE_LIST:
return "Via les fichiers (détecter le coeur)";
case MENU_ENUM_LABEL_VALUE_DOWNLOADED_FILE_DETECT_CORE_LIST:
return "Via les téléchargements (détecter le coeur)";
case MENU_ENUM_LABEL_VALUE_LOAD_CONTENT_HISTORY:
return "Récemment ouvert";
case MENU_ENUM_LABEL_VALUE_AUDIO_ENABLE:
return "Activer le son";
case MENU_ENUM_LABEL_VALUE_FPS_SHOW:
return "Afficher le FPS";
case MENU_ENUM_LABEL_VALUE_AUDIO_MUTE:
return "Muet";
case MENU_ENUM_LABEL_VALUE_AUDIO_VOLUME:
return "Volume sonnore (dB)";
case MENU_ENUM_LABEL_VALUE_AUDIO_SYNC:
return "Synchroniser le son";
case MENU_ENUM_LABEL_VALUE_AUDIO_RATE_CONTROL_DELTA:
return "Delta du taux de contrôle";
case MENU_ENUM_LABEL_VALUE_VIDEO_SHADER_NUM_PASSES:
return "Nombre de passages";
case MENU_ENUM_LABEL_VALUE_CONFIGURATIONS:
return "Charger une configuration";
case MENU_ENUM_LABEL_VALUE_REWIND_GRANULARITY:
return "Précision du rembobinage";
case MENU_ENUM_LABEL_VALUE_REMAP_FILE_LOAD:
return "Charger un fichier de remap";
case MENU_ENUM_LABEL_VALUE_CUSTOM_RATIO:
return "Forcer une résolution";
case MENU_ENUM_LABEL_VALUE_USE_THIS_DIRECTORY:
return "<Choisir ce dossier>";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_START_CONTENT:
return "Exécuter le contenu";
case MENU_ENUM_LABEL_VALUE_DISK_OPTIONS:
return "Disques";
case MENU_ENUM_LABEL_VALUE_CORE_OPTIONS:
return "Options";
case MENU_ENUM_LABEL_VALUE_CORE_CHEAT_OPTIONS:
return "Triche";
case MENU_ENUM_LABEL_VALUE_TAKE_SCREENSHOT:
return "Capturer l écran";
case MENU_ENUM_LABEL_VALUE_RESUME:
return "Reprendre";
case MENU_ENUM_LABEL_VALUE_DISK_INDEX:
return "Numéro du disque";
case MENU_ENUM_LABEL_VALUE_FRONTEND_COUNTERS:
return "Compteurs du Frontend";
case MENU_ENUM_LABEL_VALUE_DISK_IMAGE_APPEND:
return "Ajouter une image de disque";
case MENU_ENUM_LABEL_VALUE_DISK_CYCLE_TRAY_STATUS:
return "État du lecteur de disque";
case MENU_ENUM_LABEL_VALUE_NO_PLAYLIST_ENTRIES_AVAILABLE:
return "Playlist vide.";
case MENU_ENUM_LABEL_VALUE_NO_CORE_INFORMATION_AVAILABLE:
return "Pas d'informations disponibles.";
case MENU_ENUM_LABEL_VALUE_NO_CORE_OPTIONS_AVAILABLE:
return "Pas d'options disponibles.";
case MENU_ENUM_LABEL_VALUE_NO_CORES_AVAILABLE:
return "Aucun coeur disponible.";
case MENU_ENUM_LABEL_VALUE_NO_CORE:
return "Aucun coeur";
case MENU_ENUM_LABEL_VALUE_DATABASE_MANAGER:
return "Gestion de la base de données";
case MENU_ENUM_LABEL_VALUE_CURSOR_MANAGER:
return "Gestion des curseurs";
case MENU_ENUM_LABEL_VALUE_MAIN_MENU:
return "Menu principal";
case MENU_ENUM_LABEL_VALUE_SETTINGS:
return "Réglages";
case MENU_ENUM_LABEL_VALUE_QUIT_RETROARCH:
return "Quitter RetroArch";
case MENU_ENUM_LABEL_VALUE_SHUTDOWN:
return "Éteindre";
case MENU_ENUM_LABEL_VALUE_HELP:
return "Aide";
case MENU_ENUM_LABEL_VALUE_SAVE_NEW_CONFIG:
return "Sauvegarder la configuration";
case MENU_ENUM_LABEL_VALUE_RESTART_CONTENT:
return "Redémarrer le contenu";
case MENU_ENUM_LABEL_VALUE_CORE_UPDATER_LIST:
return "Mise à jour des coeurs";
case MENU_ENUM_LABEL_VALUE_CORE_UPDATER_BUILDBOT_URL:
return "URL du buildbot des coeurs";
case MENU_ENUM_LABEL_VALUE_BUILDBOT_ASSETS_URL:
return "URL du buildbot des assets";
case MENU_ENUM_LABEL_VALUE_NAVIGATION_WRAPAROUND:
return "Saut-retour";
case MENU_ENUM_LABEL_VALUE_NAVIGATION_BROWSER_FILTER_SUPPORTED_EXTENSIONS_ENABLE:
return "Filtrer par extentions supportées";
case MENU_ENUM_LABEL_VALUE_CORE_UPDATER_AUTO_EXTRACT_ARCHIVE:
return "Extraire automatiquement";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFORMATION:
return "Informations du système";
case MENU_ENUM_LABEL_VALUE_ONLINE_UPDATER:
return "Mises à jour";
case MENU_ENUM_LABEL_VALUE_CORE_INFORMATION:
return "Informations sur le coeur";
case MENU_ENUM_LABEL_VALUE_DIRECTORY_NOT_FOUND:
return "Dossier non trouvé.";
case MENU_ENUM_LABEL_VALUE_NO_ITEMS:
return "Vide.";
case MENU_ENUM_LABEL_VALUE_CORE_LIST:
return "Charger un coeur";
case MENU_ENUM_LABEL_VALUE_LOAD_CONTENT:
return "Via les fichiers";
case MENU_ENUM_LABEL_VALUE_CLOSE_CONTENT:
return "Quitter";
case MENU_ENUM_LABEL_VALUE_MANAGEMENT:
return "Gestion avancée";
case MENU_ENUM_LABEL_VALUE_SAVE_STATE:
return "Sauvegarder une savestate";
case MENU_ENUM_LABEL_VALUE_LOAD_STATE:
return "Charger une savestate";
case MENU_ENUM_LABEL_VALUE_RESUME_CONTENT:
return "Reprendre";
case MENU_ENUM_LABEL_VALUE_INPUT_DRIVER:
return "Pilote des entrées";
case MENU_ENUM_LABEL_VALUE_AUDIO_DRIVER:
return "Pilote audio";
case MENU_ENUM_LABEL_VALUE_JOYPAD_DRIVER:
return "Pilote des manettes";
case MENU_ENUM_LABEL_VALUE_AUDIO_RESAMPLER_DRIVER:
return "Pilote de ré-échantillonage audio";
case MENU_ENUM_LABEL_VALUE_RECORD_DRIVER:
return "Pilote de capture vidéo";
case MENU_ENUM_LABEL_VALUE_MENU_DRIVER:
return "Pilote de menu";
case MENU_ENUM_LABEL_VALUE_CAMERA_DRIVER:
return "Pilote de caméra";
case MENU_ENUM_LABEL_VALUE_LOCATION_DRIVER:
return "Pilote de localisation";
case MENU_ENUM_LABEL_VALUE_UNABLE_TO_READ_COMPRESSED_FILE:
return "Impossible de lire l'archive.";
case MENU_ENUM_LABEL_VALUE_OVERLAY_SCALE:
return "Zoom de l'overlay";
case MENU_ENUM_LABEL_VALUE_OVERLAY_PRESET:
return "Préréglages de l'overlay";
case MENU_ENUM_LABEL_VALUE_AUDIO_LATENCY:
return "Latence audio (ms)";
case MENU_ENUM_LABEL_VALUE_AUDIO_DEVICE:
return "Carte son";
case MENU_ENUM_LABEL_VALUE_KEYBOARD_OVERLAY_PRESET:
return "Préréglages d'overlay clavier";
case MENU_ENUM_LABEL_VALUE_OVERLAY_OPACITY:
return "Transparence de l'overlay";
case MENU_ENUM_LABEL_VALUE_MENU_WALLPAPER:
return "Fond d'écran";
case MENU_ENUM_LABEL_VALUE_DYNAMIC_WALLPAPER:
return "Fond d'écran dynamique";
case MENU_ENUM_LABEL_VALUE_THUMBNAILS:
return "Vignettes";
case MENU_ENUM_LABEL_VALUE_CORE_INPUT_REMAPPING_OPTIONS:
return "Remap d'entrées";
case MENU_ENUM_LABEL_VALUE_SHADER_OPTIONS:
return "Shaders";
case MENU_ENUM_LABEL_VALUE_NO_SHADER_PARAMETERS:
return "Aucun paramètres.";
case MENU_ENUM_LABEL_VALUE_VIDEO_FILTER:
return "Filtre vidéo";
case MENU_ENUM_LABEL_VALUE_AUDIO_DSP_PLUGIN:
return "Module DSP";
case MENU_ENUM_LABEL_VALUE_STARTING_DOWNLOAD:
return "Téléchargement de : ";
case MENU_ENUM_LABEL_VALUE_OFF:
return "OFF";
case MENU_ENUM_LABEL_VALUE_ON:
return "ON";
case MENU_ENUM_LABEL_VALUE_UPDATE_ASSETS:
return "Mettre à jour les assets";
case MENU_ENUM_LABEL_VALUE_UPDATE_CHEATS:
return "Mettre à jour les codes de triche";
case MENU_ENUM_LABEL_VALUE_UPDATE_AUTOCONFIG_PROFILES:
return "Mettre à jour les profils d'autoconfiguration";
case MENU_ENUM_LABEL_VALUE_UPDATE_AUTOCONFIG_PROFILES_HID:
return "Mettre à jour les profils d'autoconfiguration (HID)";
case MENU_ENUM_LABEL_VALUE_UPDATE_DATABASES:
return "Mettre à jour les bases de données";
case MENU_ENUM_LABEL_VALUE_UPDATE_OVERLAYS:
return "Mettre à jour les overlays";
case MENU_ENUM_LABEL_VALUE_UPDATE_CG_SHADERS:
return "Mettre à jour les shaders CG";
case MENU_ENUM_LABEL_VALUE_UPDATE_GLSL_SHADERS:
return "Mettre à jour les shaders GLSL";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_CORE_NAME:
return "Nom";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_CORE_LABEL:
return "Label";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_SYSTEM_NAME:
return "Système";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_SYSTEM_MANUFACTURER:
return "Fabricant du système";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_CATEGORIES:
return "Catégories";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_AUTHORS:
return "Auteurs";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_PERMISSIONS:
return "Permissions";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_LICENSES:
return "Licence(s)";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_SUPPORTED_EXTENSIONS:
return "Extensions supportées";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_FIRMWARE:
return "Firmware";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_CORE_NOTES:
return "Notes";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_BUILD_DATE:
return "Date de build";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_GIT_VERSION:
return "Version git";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_CPU_FEATURES:
return "Fonctionnalités du CPU";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_FRONTEND_IDENTIFIER:
return "Identifiant frontend";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_FRONTEND_NAME:
return "Nom du frontend";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_FRONTEND_OS:
return "OS du frontend";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_RETRORATING_LEVEL:
return "Niveau RetroRating";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_POWER_SOURCE:
return "Alimentation";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_POWER_SOURCE_NO_SOURCE:
return "Non alimenté";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_POWER_SOURCE_CHARGING:
return "En chargement";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_POWER_SOURCE_CHARGED:
return "Chargé";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_POWER_SOURCE_DISCHARGING:
return "Déchargé";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_VIDEO_CONTEXT_DRIVER:
return "Pilote du contexte vidéo";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_DISPLAY_METRIC_MM_WIDTH:
return "Largeur d'écran (mm)";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_DISPLAY_METRIC_MM_HEIGHT:
return "Hauteur d'écran (mm)";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_DISPLAY_METRIC_DPI:
return "DPI de l'écran";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_LIBRETRODB_SUPPORT:
return "Support de libretroDB";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OVERLAY_SUPPORT:
return "Support des overlays";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_COMMAND_IFACE_SUPPORT:
return "Support de l'interface de commandes";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_NETWORK_COMMAND_IFACE_SUPPORT:
return "Support des commandes réseau";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_COCOA_SUPPORT:
return "Support de Cocoa";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_RPNG_SUPPORT:
return "Support des PNGs (RPNG)";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_SDL_SUPPORT:
return "Support de SDL1.2";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_SDL2_SUPPORT:
return "Support de SDL2";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OPENGL_SUPPORT:
return "Support d'OpenGL";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OPENGLES_SUPPORT:
return "Support d'OpenGL ES";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_THREADING_SUPPORT:
return "Support du threading";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_KMS_SUPPORT:
return "Support de KMS/EGL";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_UDEV_SUPPORT:
return "Support de udev";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OPENVG_SUPPORT:
return "Support d'OpenVG";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_EGL_SUPPORT:
return "Support d'EGL";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_X11_SUPPORT:
return "Support de X11";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_WAYLAND_SUPPORT:
return "Support de Wayland";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_XVIDEO_SUPPORT:
return "Support de XVideo";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_ALSA_SUPPORT:
return "Support d'ALSA";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OSS_SUPPORT:
return "Support d'OSS";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OPENAL_SUPPORT:
return "Support d'OpenAL";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OPENSL_SUPPORT:
return "Support d'OpenSL";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_RSOUND_SUPPORT:
return "Support de RSound";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_ROARAUDIO_SUPPORT:
return "Support de RoarAudio";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_JACK_SUPPORT:
return "Support de JACK";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_PULSEAUDIO_SUPPORT:
return "Support de PulseAudio";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_DSOUND_SUPPORT:
return "Support de DirectSoundt";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_XAUDIO2_SUPPORT:
return "Support de XAudio2";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_ZLIB_SUPPORT:
return "Support de Zlib";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_7ZIP_SUPPORT:
return "Support de 7zip";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_DYLIB_SUPPORT:
return "Support des bibliothèques dynamiques";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_CG_SUPPORT:
return "Support de CG";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_GLSL_SUPPORT:
return "Support de GLSL";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_HLSL_SUPPORT:
return "Support de HLSL";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_LIBXML2_SUPPORT:
return "Support du parser XML libxml2";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_SDL_IMAGE_SUPPORT:
return "Support de SDL_Image";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_FBO_SUPPORT:
return "Support d'OpenGL/Direct3D render-to-texture (shaders multi-passages)";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_FFMPEG_SUPPORT:
return "Support de FFmpeg";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_CORETEXT_SUPPORT:
return "Support de CoreText";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_FREETYPE_SUPPORT:
return "Support de FreeType";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_NETPLAY_SUPPORT:
return "Support du jeu en réseau";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_PYTHON_SUPPORT:
return "Support de Python (scripting des shaders)";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_V4L2_SUPPORT:
return "Support de Video4Linux2";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_LIBUSB_SUPPORT:
return "Support de libusb";
case MENU_ENUM_LABEL_VALUE_YES:
return "Oui";
case MENU_ENUM_LABEL_VALUE_NO:
return "Non";
case MENU_ENUM_LABEL_VALUE_BACK:
return "Retour";
case MENU_ENUM_LABEL_VALUE_SCREEN_RESOLUTION:
return "Résolution d'écran";
case MENU_ENUM_LABEL_VALUE_DISABLED:
return "Désactivé";
case MENU_ENUM_LABEL_VALUE_PORT:
return "Port";
case MENU_ENUM_LABEL_VALUE_NONE:
return "Aucun";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_DEVELOPER:
return "Développeur";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_PUBLISHER:
return "Éditeur";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_DESCRIPTION:
return "Description";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_NAME:
return "Nom";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_ORIGIN:
return "Origine";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_FRANCHISE:
return "Franchise";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_RELEASE_MONTH:
return "Mois de sortie";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_RELEASE_YEAR:
return "Année de sortie";
case MENU_ENUM_LABEL_VALUE_TRUE:
return "Vrai";
case MENU_ENUM_LABEL_VALUE_FALSE:
return "Faux";
case MENU_ENUM_LABEL_VALUE_MISSING:
return "Manquant";
case MENU_ENUM_LABEL_VALUE_PRESENT:
return "Présent";
case MENU_ENUM_LABEL_VALUE_OPTIONAL:
return "Optionnel";
case MENU_ENUM_LABEL_VALUE_REQUIRED:
return "Requis";
case MENU_ENUM_LABEL_VALUE_STATUS:
return "Statut";
case MENU_ENUM_LABEL_VALUE_AUDIO_SETTINGS:
return "Audio";
case MENU_ENUM_LABEL_VALUE_INPUT_SETTINGS:
return "Entrées";
case MENU_ENUM_LABEL_VALUE_ONSCREEN_DISPLAY_SETTINGS:
return "Messages d'info";
case MENU_ENUM_LABEL_VALUE_OVERLAY_SETTINGS:
return "Overlays";
case MENU_ENUM_LABEL_VALUE_MENU_SETTINGS:
return "Menu";
case MENU_ENUM_LABEL_VALUE_MULTIMEDIA_SETTINGS:
return "Multimédia";
case MENU_ENUM_LABEL_VALUE_UI_SETTINGS:
return "Interface graphique";
case MENU_ENUM_LABEL_VALUE_MENU_FILE_BROWSER_SETTINGS:
return "Navigateur de fichiers";
case MENU_ENUM_LABEL_VALUE_CORE_UPDATER_SETTINGS:
return "Mises à jour";
case MENU_ENUM_LABEL_VALUE_NETWORK_SETTINGS:
return "Réseau";
case MENU_ENUM_LABEL_VALUE_PLAYLIST_SETTINGS:
return "Playlists";
case MENU_ENUM_LABEL_VALUE_USER_SETTINGS:
return "Utilisateur";
case MENU_ENUM_LABEL_VALUE_DIRECTORY_SETTINGS:
return "Dossiers";
case MENU_ENUM_LABEL_VALUE_RECORDING_SETTINGS:
return "Capture video";
case MENU_ENUM_LABEL_VALUE_NO_INFORMATION_AVAILABLE:
return "Pas d'informations disponibles.";
case MENU_ENUM_LABEL_VALUE_INPUT_USER_BINDS:
return "Entrées utilisateur %u";
case MENU_ENUM_LABEL_VALUE_LANG_ENGLISH:
return "Anglais";
case MENU_ENUM_LABEL_VALUE_LANG_JAPANESE:
return "Japonais";
case MENU_ENUM_LABEL_VALUE_LANG_FRENCH:
return "Français";
case MENU_ENUM_LABEL_VALUE_LANG_SPANISH:
return "Espagnol";
case MENU_ENUM_LABEL_VALUE_LANG_GERMAN:
return "Allemand";
case MENU_ENUM_LABEL_VALUE_LANG_ITALIAN:
return "Italien";
case MENU_ENUM_LABEL_VALUE_LANG_DUTCH:
return "Néerlandais";
case MENU_ENUM_LABEL_VALUE_LANG_PORTUGUESE:
return "Portuguais";
case MENU_ENUM_LABEL_VALUE_LANG_RUSSIAN:
return "Russe";
case MENU_ENUM_LABEL_VALUE_LANG_KOREAN:
return "Coréen";
case MENU_ENUM_LABEL_VALUE_LANG_CHINESE_TRADITIONAL:
return "Chinois (Traditionnel)";
case MENU_ENUM_LABEL_VALUE_LANG_CHINESE_SIMPLIFIED:
return "Chinois (Simplifié)";
case MENU_ENUM_LABEL_VALUE_LANG_ESPERANTO:
return "Esperanto";
case MENU_ENUM_LABEL_VALUE_LEFT_ANALOG:
return "Stick analogique gauche";
case MENU_ENUM_LABEL_VALUE_RIGHT_ANALOG:
return "Stick analogique droite";
case MENU_ENUM_LABEL_VALUE_INPUT_HOTKEY_BINDS:
return "Racourcis d'entrées";
case MENU_ENUM_LABEL_VALUE_FRAME_THROTTLE_SETTINGS:
return "Vitesse d'affichage";
case MENU_ENUM_LABEL_VALUE_SEARCH:
return "Recherche :";
case MENU_ENUM_LABEL_VALUE_USE_BUILTIN_IMAGE_VIEWER:
return "Utiliser le lecteur d'image embarqué";
case MENU_ENUM_LABEL_VALUE_HELP_LIST:
return "Aide";
case MENU_ENUM_LABEL_VALUE_START_CORE:
return "Démarrer le coeur";
case MENU_ENUM_LABEL_VALUE_START_NET_RETROPAD:
return "Mode manette à distance";
case MENU_ENUM_LABEL_VALUE_SAVE_CURRENT_CONFIG:
return "Sauvegarder la configuration actuelle";
case MENU_ENUM_LABEL_VALUE_SETTINGS_TAB:
return "Réglages";
case MENU_ENUM_LABEL_VALUE_HISTORY_TAB:
return "Historique";
case MENU_ENUM_LABEL_VALUE_ADD_TAB:
return "Scanner";
case MENU_ENUM_LABEL_VALUE_DEBUG_PANEL_ENABLE:
return "Activer le panneau de débogage";
case MENU_ENUM_LABEL_VALUE_INPUT_OVERLAY_HIDE_IN_MENU:
return "Cacher l'overlay dans le menu";
case MENU_ENUM_LABEL_CONTENT_HISTORY_SIZE:
return "Taille de l'historique";
case MENU_ENUM_LABEL_VALUE_ACCOUNTS_LIST:
return "Comptes en ligne";
case MENU_ENUM_LABEL_VALUE_MENU_LINEAR_FILTER:
return "Filtre linéaire";
case MENU_ENUM_LABEL_VALUE_XMB_SCALE_FACTOR:
return "XMB : Zoom";
case MENU_ENUM_LABEL_VALUE_XMB_ALPHA_FACTOR:
return "XMB : Transparence";
case MENU_ENUM_LABEL_VALUE_XMB_FONT:
return "XMB : Police";
case MENU_ENUM_LABEL_VALUE_XMB_THEME:
return "XMB : Theme";
case MENU_ENUM_LABEL_VALUE_XMB_GRADIENT:
return "Dégradé de font d'écran";
case MENU_ENUM_LABEL_VALUE_XMB_SHADOWS_ENABLE:
return "Ombres pour les icones";
case MENU_ENUM_LABEL_VALUE_XMB_RIBBON_ENABLE:
return "Font d'écran animé";
case MENU_ENUM_LABEL_VALUE_NETWORK_REMOTE_ENABLE:
return "Manette réseau";
case MENU_ENUM_LABEL_VALUE_RUN:
return "Lancer";
case MENU_ENUM_LABEL_VALUE_STATE_SLOT:
return "Slot de savestate";
case MENU_ENUM_LABEL_VALUE_UNDO_LOAD_STATE:
return "Annuler charger une savestate";
case MENU_ENUM_LABEL_VALUE_UNDO_SAVE_STATE:
return "Annuler sauvegarder une savestate";
default:
break;
}
return "null";
}
int menu_hash_get_help_fr(uint32_t hash, char *s, size_t len)
{
int ret = 0;

File diff suppressed because it is too large Load Diff

View File

@ -20,877 +20,6 @@
#include "../menu_hash.h"
const char *menu_hash_to_str_nl_enum(enum menu_hash_enums msg)
{
switch (msg)
{
case MENU_ENUM_LABEL_VALUE_HELP_SCANNING_CONTENT:
return "Scannen naar Content";
case MENU_ENUM_LABEL_VALUE_HELP_AUDIO_VIDEO_TROUBLESHOOTING:
return "Audio/Video Raadpleging";
case MENU_ENUM_LABEL_VALUE_HELP_CHANGE_VIRTUAL_GAMEPAD:
return "Virtuele Gamepad Overlay Veranderen";
case MENU_ENUM_LABEL_VALUE_HELP_WHAT_IS_A_CORE:
return "Wat is een Core?";
case MENU_ENUM_LABEL_VALUE_HELP_LOADING_CONTENT:
return "Hoe Laad je Content?";
case MENU_ENUM_LABEL_VALUE_HELP_LIST:
return "Help";
case MENU_ENUM_LABEL_VALUE_HELP_CONTROLS:
return "Basis Menu Besturing";
case MENU_ENUM_LABEL_VALUE_BASIC_MENU_CONTROLS:
return "Basis menu besturing";
case MENU_ENUM_LABEL_VALUE_BASIC_MENU_CONTROLS_SCROLL_UP:
return "Omhoog Scrollen";
case MENU_ENUM_LABEL_VALUE_BASIC_MENU_CONTROLS_SCROLL_DOWN:
return "Omlaag Scrollen";
case MENU_ENUM_LABEL_VALUE_BASIC_MENU_CONTROLS_CONFIRM:
return "Bevestigen/OK";
case MENU_ENUM_LABEL_VALUE_BASIC_MENU_CONTROLS_BACK:
return "Terug";
case MENU_ENUM_LABEL_VALUE_BASIC_MENU_CONTROLS_START:
return "Reset";
case MENU_ENUM_LABEL_VALUE_BASIC_MENU_CONTROLS_INFO:
return "Info";
case MENU_ENUM_LABEL_VALUE_BASIC_MENU_CONTROLS_TOGGLE_MENU:
return "Menu Schakelaar";
case MENU_ENUM_LABEL_VALUE_BASIC_MENU_CONTROLS_QUIT:
return "Afsluiten";
case MENU_ENUM_LABEL_VALUE_BASIC_MENU_CONTROLS_TOGGLE_KEYBOARD:
return "Keyboard Toggle";
case MENU_ENUM_LABEL_VALUE_OPEN_ARCHIVE:
return "Open Archief als map";
case MENU_ENUM_LABEL_VALUE_LOAD_ARCHIVE:
return "Open Archief met Core";
case MENU_ENUM_LABEL_VALUE_INPUT_BACK_AS_MENU_TOGGLE_ENABLE:
return "Terug als Menu Schakelaar";
case MENU_ENUM_LABEL_VALUE_INPUT_MENU_ENUM_TOGGLE_GAMEPAD_COMBO:
return "Menu Schakelaar Gamepad Combo";
case MENU_ENUM_LABEL_VALUE_INPUT_OVERLAY_HIDE_IN_MENU:
return "Verberg Overlay In Menu";
case MENU_ENUM_LABEL_VALUE_LANG_POLISH:
return "Pools";
case MENU_ENUM_LABEL_VALUE_OVERLAY_AUTOLOAD_PREFERRED:
return "Laad geprefeerd overlay autom.";
case MENU_ENUM_LABEL_VALUE_UPDATE_CORE_INFO_FILES:
return "Update Core Info Bestanden";
case MENU_ENUM_LABEL_VALUE_DOWNLOAD_CORE_CONTENT:
return "Download Content";
case MENU_ENUM_LABEL_VALUE_SCAN_THIS_DIRECTORY:
return "<Scan Deze Map>";
case MENU_ENUM_LABEL_VALUE_SCAN_FILE:
return "Scan een Bestand";
case MENU_ENUM_LABEL_VALUE_SCAN_DIRECTORY:
return "Scan een Map";
case MENU_ENUM_LABEL_VALUE_ADD_CONTENT_LIST:
return "Content toevoegen";
case MENU_ENUM_LABEL_VALUE_INFORMATION_LIST:
return "Informatie";
case MENU_ENUM_LABEL_VALUE_USE_BUILTIN_PLAYER:
return "Gebruik Ingebouwde Media Speler";
case MENU_ENUM_LABEL_VALUE_CONTENT_SETTINGS:
return "Snelmenu";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_CRC32:
return "CRC32";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_MD5:
return "MD5";
case MENU_ENUM_LABEL_VALUE_LOAD_CONTENT_LIST:
return "Laad Content";
case MENU_ENUM_LABEL_VALUE_ASK_ARCHIVE:
return "Keuze";
case MENU_ENUM_LABEL_VALUE_PRIVACY_SETTINGS:
return "Privacy";
case MENU_ENUM_LABEL_VALUE_HORIZONTAL_MENU:
return "Horizontal Menu";
case MENU_ENUM_LABEL_VALUE_SETTINGS_TAB:
return "Instellingen";
case MENU_ENUM_LABEL_VALUE_PLAYLISTS_TAB:
return "Afspeellijsten";
case MENU_ENUM_LABEL_VALUE_HISTORY_TAB:
return "Geschiedenis";
case MENU_ENUM_LABEL_VALUE_NO_SETTINGS_FOUND:
return "Geen instellingen gevonden.";
case MENU_ENUM_LABEL_VALUE_NO_PERFORMANCE_COUNTERS:
return "Geen prestatie tellers.";
case MENU_ENUM_LABEL_VALUE_DRIVER_SETTINGS:
return "Driver";
case MENU_ENUM_LABEL_VALUE_CONFIGURATION_SETTINGS:
return "Configuratie";
case MENU_ENUM_LABEL_VALUE_CORE_SETTINGS:
return "Core";
case MENU_ENUM_LABEL_VALUE_VIDEO_SETTINGS:
return "Video";
case MENU_ENUM_LABEL_VALUE_LOGGING_SETTINGS:
return "Logging";
case MENU_ENUM_LABEL_VALUE_SAVING_SETTINGS:
return "Saving";
case MENU_ENUM_LABEL_VALUE_REWIND_SETTINGS:
return "Rewind";
case MENU_ENUM_LABEL_VALUE_SHADER:
return "Shader";
case MENU_ENUM_LABEL_VALUE_CHEAT:
return "Cheat";
case MENU_ENUM_LABEL_VALUE_USER:
return "Gebruiker";
case MENU_ENUM_LABEL_VALUE_SYSTEM_BGM_ENABLE:
return "Systeem BGM";
case MENU_ENUM_LABEL_VALUE_RETROPAD:
return "RetroPad";
case MENU_ENUM_LABEL_VALUE_RETROKEYBOARD:
return "RetroKeyboard";
case MENU_ENUM_LABEL_VALUE_AUDIO_BLOCK_FRAMES:
return "Block Frames";
case MENU_ENUM_LABEL_VALUE_INPUT_DESCRIPTOR_LABEL_SHOW:
return "Descriptie Labels Weergeven";
case MENU_ENUM_LABEL_VALUE_INPUT_DESCRIPTOR_HIDE_UNBOUND:
return "Verbergen Niet-gemapte Core Input Descripties";
case MENU_ENUM_LABEL_VALUE_VIDEO_FONT_ENABLE:
return "OSD Berichten Weergeven";
case MENU_ENUM_LABEL_VALUE_VIDEO_FONT_PATH:
return "OSD Berichten Font";
case MENU_ENUM_LABEL_VALUE_VIDEO_FONT_SIZE:
return "OSD Berichten Grootte";
case MENU_ENUM_LABEL_VALUE_VIDEO_MESSAGE_POS_X:
return "OSD Berichten X-as positie";
case MENU_ENUM_LABEL_VALUE_VIDEO_MESSAGE_POS_Y:
return "OSD Berichten Y-as positie";
case MENU_ENUM_LABEL_VALUE_VIDEO_SOFT_FILTER:
return "Soft Filter";
case MENU_ENUM_LABEL_VALUE_VIDEO_FILTER_FLICKER:
return "Flicker filter";
case MENU_ENUM_LABEL_VALUE_DIRECTORY_CONTENT:
return "<Content dir>";
case MENU_ENUM_LABEL_VALUE_UNKNOWN:
return "Onbekend";
case MENU_ENUM_LABEL_VALUE_DONT_CARE:
return "Onbelangrijk";
case MENU_ENUM_LABEL_VALUE_LINEAR:
return "Linear";
case MENU_ENUM_LABEL_VALUE_NEAREST:
return "Nearest";
case MENU_ENUM_LABEL_VALUE_DIRECTORY_DEFAULT:
return "<Standaard>";
case MENU_ENUM_LABEL_VALUE_DIRECTORY_NONE:
return "<Niets>";
case MENU_ENUM_LABEL_VALUE_NOT_AVAILABLE:
return "N.v.t";
case MENU_ENUM_LABEL_VALUE_INPUT_REMAPPING_DIRECTORY:
return "Invoer Remapping Map";
case MENU_ENUM_LABEL_VALUE_JOYPAD_AUTOCONFIG_DIR:
return "Invoerapparaten Autoconfig Map";
case MENU_ENUM_LABEL_VALUE_RECORDING_CONFIG_DIRECTORY:
return "Opname Config Map";
case MENU_ENUM_LABEL_VALUE_RECORDING_OUTPUT_DIRECTORY:
return "Opname Uitvoer Map";
case MENU_ENUM_LABEL_VALUE_SCREENSHOT_DIRECTORY:
return "Screenshot Map";
case MENU_ENUM_LABEL_VALUE_PLAYLIST_DIRECTORY:
return "Afspeellijsten Map";
case MENU_ENUM_LABEL_VALUE_SAVEFILE_DIRECTORY:
return "Savebestand Map";
case MENU_ENUM_LABEL_VALUE_SAVESTATE_DIRECTORY:
return "Savestate Map";
case MENU_ENUM_LABEL_VALUE_STDIN_CMD_ENABLE:
return "stdin Commandos";
case MENU_ENUM_LABEL_VALUE_VIDEO_DRIVER:
return "Video Driver";
case MENU_ENUM_LABEL_VALUE_RECORD_ENABLE:
return "Opname";
case MENU_ENUM_LABEL_VALUE_VIDEO_GPU_RECORD:
return "GPU Opname";
case MENU_ENUM_LABEL_VALUE_RECORD_PATH:
return "Uitvoer Bestand";
case MENU_ENUM_LABEL_VALUE_RECORD_USE_OUTPUT_DIRECTORY:
return "Gebruik uitvoer map";
case MENU_ENUM_LABEL_VALUE_RECORD_CONFIG:
return "Opname Configuratie";
case MENU_ENUM_LABEL_VALUE_VIDEO_POST_FILTER_RECORD:
return "Post filter opname activeren";
case MENU_ENUM_LABEL_VALUE_CORE_ASSETS_DIRECTORY:
return "Downloads Map";
case MENU_ENUM_LABEL_VALUE_ASSETS_DIRECTORY:
return "Assets Map";
case MENU_ENUM_LABEL_VALUE_DYNAMIC_WALLPAPERS_DIRECTORY:
return "Dynamische Wallpapers Map";
case MENU_ENUM_LABEL_VALUE_RGUI_BROWSER_DIRECTORY:
return "Bestandsbeheer Map";
case MENU_ENUM_LABEL_VALUE_RGUI_CONFIG_DIRECTORY:
return "Config Map";
case MENU_ENUM_LABEL_VALUE_LIBRETRO_INFO_PATH:
return "Core Info Map";
case MENU_ENUM_LABEL_VALUE_LIBRETRO_DIR_PATH:
return "Core Map";
case MENU_ENUM_LABEL_VALUE_CURSOR_DIRECTORY:
return "Cursor Map";
case MENU_ENUM_LABEL_VALUE_CONTENT_DATABASE_DIRECTORY:
return "Content Database Map";
case MENU_ENUM_LABEL_VALUE_SYSTEM_DIRECTORY:
return "Systeem/BIOS Map";
case MENU_ENUM_LABEL_VALUE_CHEAT_DATABASE_PATH:
return "Cheat Bestand Map";
case MENU_ENUM_LABEL_VALUE_CACHE_DIRECTORY:
return "Cache Map";
case MENU_ENUM_LABEL_VALUE_AUDIO_FILTER_DIR:
return "Audio Filter Map";
case MENU_ENUM_LABEL_VALUE_VIDEO_SHADER_DIR:
return "Video Shader Map";
case MENU_ENUM_LABEL_VALUE_VIDEO_FILTER_DIR:
return "Video Filter Map";
case MENU_ENUM_LABEL_VALUE_OVERLAY_DIRECTORY:
return "Overlay Map";
case MENU_ENUM_LABEL_VALUE_OSK_OVERLAY_DIRECTORY:
return "OSK Overlay Map";
case MENU_ENUM_LABEL_VALUE_NETPLAY_CLIENT_SWAP_INPUT:
return "Swap Netplay Input";
case MENU_ENUM_LABEL_VALUE_NETPLAY_SPECTATOR_MODE_ENABLE:
return "Netplay Spectator Activeren";
case MENU_ENUM_LABEL_VALUE_NETPLAY_IP_ADDRESS:
return "IP Adres";
case MENU_ENUM_LABEL_VALUE_NETPLAY_TCP_UDP_PORT:
return "Netplay TCP/UDP Poort";
case MENU_ENUM_LABEL_VALUE_NETPLAY_ENABLE:
return "Netplay Activeren";
case MENU_ENUM_LABEL_VALUE_NETPLAY_DELAY_FRAMES:
return "Netplay Vertraging Frames";
case MENU_ENUM_LABEL_VALUE_NETPLAY_MODE:
return "Netplay Client Activeren";
case MENU_ENUM_LABEL_VALUE_RGUI_SHOW_START_SCREEN:
return "Start Scherm Weergeven";
case MENU_ENUM_LABEL_VALUE_TITLE_COLOR:
return "Menu titel kleur";
case MENU_ENUM_LABEL_VALUE_ENTRY_HOVER_COLOR:
return "Menu entry hover kleur";
case MENU_ENUM_LABEL_VALUE_TIMEDATE_ENABLE:
return "Tijd/datum weergeven";
case MENU_ENUM_LABEL_VALUE_THREADED_DATA_RUNLOOP_ENABLE:
return "Threaded data runloop";
case MENU_ENUM_LABEL_VALUE_ENTRY_NORMAL_COLOR:
return "Menu entry normale kleur";
case MENU_ENUM_LABEL_VALUE_SHOW_ADVANCED_SETTINGS:
return "Geavanceerde instellingen weergeven";
case MENU_ENUM_LABEL_VALUE_MOUSE_ENABLE:
return "Muis Ondersteuning";
case MENU_ENUM_LABEL_VALUE_POINTER_ENABLE:
return "Touch Ondersteuning";
case MENU_ENUM_LABEL_VALUE_CORE_ENABLE:
return "Core naam weergeven";
case MENU_ENUM_LABEL_VALUE_DPI_OVERRIDE_ENABLE:
return "DPI Override activeren";
case MENU_ENUM_LABEL_VALUE_DPI_OVERRIDE_VALUE:
return "DPI Override";
case MENU_ENUM_LABEL_VALUE_SUSPEND_SCREENSAVER_ENABLE:
return "Onderbreek Screensaver";
case MENU_ENUM_LABEL_VALUE_VIDEO_DISABLE_COMPOSITION:
return "Desktop Compositie deactiveren";
case MENU_ENUM_LABEL_VALUE_PAUSE_NONACTIVE:
return "Laat niet in achtergrond draaien";
case MENU_ENUM_LABEL_VALUE_UI_COMPANION_START_ON_BOOT:
return "UI Companion Start Tijdens Boot";
case MENU_ENUM_LABEL_VALUE_UI_MENUBAR_ENABLE:
return "Menubalk";
case MENU_ENUM_LABEL_VALUE_ARCHIVE_MODE:
return "Archief Bestand Associatie";
case MENU_ENUM_LABEL_VALUE_NETWORK_CMD_ENABLE:
return "Netwerk Commandos";
case MENU_ENUM_LABEL_VALUE_NETWORK_CMD_PORT:
return "Netwerk Commandos Poort";
case MENU_ENUM_LABEL_VALUE_HISTORY_LIST_ENABLE:
return "Geschiedenislijst Activeren";
case MENU_ENUM_LABEL_VALUE_CONTENT_HISTORY_SIZE:
return "Geschiedenislijst grootte";
case MENU_ENUM_LABEL_VALUE_VIDEO_REFRESH_RATE_AUTO:
return "Geschatte Monitor Framerate";
case MENU_ENUM_LABEL_VALUE_DUMMY_ON_CORE_SHUTDOWN:
return "Dummy Tijdens Core Shutdown";
case MENU_ENUM_LABEL_VALUE_CORE_SET_SUPPORTS_NO_CONTENT_ENABLE:
return "Automatisch core opstarten";
case MENU_ENUM_LABEL_VALUE_FRAME_THROTTLE_ENABLE:
return "Beperk Maximale Afspeelsnelheid";
case MENU_ENUM_LABEL_VALUE_FASTFORWARD_RATIO:
return "Maximale Afspeelsnelheid";
case MENU_ENUM_LABEL_VALUE_AUTO_REMAPS_ENABLE:
return "Laad Remap Bestanden Automatisch";
case MENU_ENUM_LABEL_VALUE_SLOWMOTION_RATIO:
return "Slow-Motion Ratio";
case MENU_ENUM_LABEL_VALUE_CORE_SPECIFIC_CONFIG:
return "Configuratie Per-Core";
case MENU_ENUM_LABEL_VALUE_AUTO_OVERRIDES_ENABLE:
return "Laad Override Bestanden Automatisch";
case MENU_ENUM_LABEL_VALUE_CONFIG_SAVE_ON_EXIT:
return "Configuratie Opslaan Tijdens Afsluiten";
case MENU_ENUM_LABEL_VALUE_VIDEO_SMOOTH:
return "Hardware Bilinear Filtering";
case MENU_ENUM_LABEL_VALUE_VIDEO_GAMMA:
return "Video Gamma";
case MENU_ENUM_LABEL_VALUE_VIDEO_ALLOW_ROTATE:
return "Rotatie toestaan";
case MENU_ENUM_LABEL_VALUE_VIDEO_HARD_SYNC:
return "Harde GPU Synchronisatie";
case MENU_ENUM_LABEL_VALUE_VIDEO_SWAP_INTERVAL:
return "VSync Swap Interval";
case MENU_ENUM_LABEL_VALUE_VIDEO_VSYNC:
return "VSync";
case MENU_ENUM_LABEL_VALUE_VIDEO_THREADED:
return "Threaded Video";
case MENU_ENUM_LABEL_VALUE_VIDEO_ROTATION:
return "Rotatie";
case MENU_ENUM_LABEL_VALUE_VIDEO_GPU_SCREENSHOT:
return "GPU Screenshot Activeren";
case MENU_ENUM_LABEL_VALUE_VIDEO_CROP_OVERSCAN:
return "Overscan Afsnijden (Herladen vereist)";
case MENU_ENUM_LABEL_VALUE_VIDEO_ASPECT_RATIO_INDEX:
return "Beeldverhouding Index";
case MENU_ENUM_LABEL_VALUE_VIDEO_ASPECT_RATIO_AUTO:
return "Auto Beeldverhouding";
case MENU_ENUM_LABEL_VALUE_VIDEO_FORCE_ASPECT:
return "Forceer beeldverhouding";
case MENU_ENUM_LABEL_VALUE_VIDEO_REFRESH_RATE:
return "Refresh Rate";
case MENU_ENUM_LABEL_VALUE_VIDEO_FORCE_SRGB_DISABLE:
return "Handmatig sRGB FBO deactiveren";
case MENU_ENUM_LABEL_VALUE_VIDEO_WINDOWED_FULLSCREEN:
return "Windowed Fullscreen Mode"; /* TODO/FIXME */
case MENU_ENUM_LABEL_VALUE_PAL60_ENABLE:
return "PAL60 Mode Activeren";
case MENU_ENUM_LABEL_VALUE_VIDEO_VFILTER:
return "Deflicker"; /* TODO/FIXME */
case MENU_ENUM_LABEL_VALUE_VIDEO_VI_WIDTH:
return "VI Scherm Breedte Instellen";
case MENU_ENUM_LABEL_VALUE_VIDEO_BLACK_FRAME_INSERTION:
return "Zwarte Frame Injectie";
case MENU_ENUM_LABEL_VALUE_VIDEO_HARD_SYNC_FRAMES:
return "Harde GPU Sync Frames";
case MENU_ENUM_LABEL_VALUE_SORT_SAVEFILES_ENABLE:
return "Saves Sorteren In Map";
case MENU_ENUM_LABEL_VALUE_SORT_SAVESTATES_ENABLE:
return "Savestates Sorteren In Map";
case MENU_ENUM_LABEL_VALUE_VIDEO_FULLSCREEN:
return "Gebruik Fullscreen Mode";
case MENU_ENUM_LABEL_VALUE_VIDEO_SCALE:
return "Windowed Schalering";
case MENU_ENUM_LABEL_VALUE_VIDEO_SCALE_INTEGER:
return "Gehele schalering";
case MENU_ENUM_LABEL_VALUE_PERFCNT_ENABLE:
return "Prestatie Teller";
case MENU_ENUM_LABEL_VALUE_LIBRETRO_LOG_LEVEL:
return "Core Logging Niveau";
case MENU_ENUM_LABEL_VALUE_LOG_VERBOSITY:
return "Logging Uitgebreidheid";
case MENU_ENUM_LABEL_VALUE_SAVESTATE_AUTO_LOAD:
return "Automatisch State Loaden";
case MENU_ENUM_LABEL_VALUE_SAVESTATE_AUTO_INDEX:
return "Save State Automatische Index";
case MENU_ENUM_LABEL_VALUE_SAVESTATE_AUTO_SAVE:
return "Automatisch State Saven";
case MENU_ENUM_LABEL_VALUE_AUTOSAVE_INTERVAL:
return "SaveRAM Autosave Interval";
case MENU_ENUM_LABEL_VALUE_BLOCK_SRAM_OVERWRITE:
return "SaveRAM niet overschrijven tijdens laden van savestate";
case MENU_ENUM_LABEL_VALUE_VIDEO_SHARED_CONTEXT:
return "HW Shared Context Activeren";
case MENU_ENUM_LABEL_VALUE_RESTART_RETROARCH:
return "RetroArch Opnieuw Opstarten";
case MENU_ENUM_LABEL_VALUE_NETPLAY_NICKNAME:
return "Gebruikersnaam";
case MENU_ENUM_LABEL_VALUE_USER_LANGUAGE:
return "Taal";
case MENU_ENUM_LABEL_VALUE_CAMERA_ALLOW:
return "Camera Toestaan";
case MENU_ENUM_LABEL_VALUE_LOCATION_ALLOW:
return "Locatie Toestaan";
case MENU_ENUM_LABEL_VALUE_PAUSE_LIBRETRO:
return "Pauseer als menu op voorgrond is";
case MENU_ENUM_LABEL_VALUE_INPUT_OSK_OVERLAY_ENABLE:
return "Toetsenbord Overlay Weergeven";
case MENU_ENUM_LABEL_VALUE_INPUT_OVERLAY_ENABLE:
return "Overlay Weergeven";
case MENU_ENUM_LABEL_VALUE_VIDEO_MONITOR_INDEX:
return "Monitor Index";
case MENU_ENUM_LABEL_VALUE_VIDEO_FRAME_DELAY:
return "Frame Delay"; /* TODO/FIXME */
case MENU_ENUM_LABEL_VALUE_INPUT_DUTY_CYCLE:
return "Duty Cycle"; /* TODO/FIXME */
case MENU_ENUM_LABEL_VALUE_INPUT_TURBO_PERIOD:
return "Turbo Period"; /* TODO/FIXME */
case MENU_ENUM_LABEL_VALUE_INPUT_AXIS_THRESHOLD:
return "Invoer As Threshold"; /* TODO/FIXME */
case MENU_ENUM_LABEL_VALUE_INPUT_REMAP_BINDS_ENABLE:
return "Remap Binds Activeren";
case MENU_ENUM_LABEL_VALUE_INPUT_MAX_USERS:
return "Maximaal aantal gebruikers";
case MENU_ENUM_LABEL_VALUE_INPUT_AUTODETECT_ENABLE:
return "Autoconfiguratie Activeren";
case MENU_ENUM_LABEL_VALUE_AUDIO_OUTPUT_RATE:
return "Audio Uitvoer Frequentie (KHz)";
case MENU_ENUM_LABEL_VALUE_AUDIO_MAX_TIMING_SKEW:
return "Audio Maximale Timing Onevenredigheid";
case MENU_ENUM_LABEL_VALUE_CHEAT_NUM_PASSES:
return "Cheat Passes";
case MENU_ENUM_LABEL_VALUE_REMAP_FILE_SAVE_CORE:
return "Core Remap Bestand Opslaan";
case MENU_ENUM_LABEL_VALUE_REMAP_FILE_SAVE_GAME:
return "Game Remap Bestand Opslaan";
case MENU_ENUM_LABEL_VALUE_CHEAT_APPLY_CHANGES:
return "Cheat Instellingen Toepassen";
case MENU_ENUM_LABEL_VALUE_SHADER_APPLY_CHANGES:
return "Shader Instellingen Toepassen";
case MENU_ENUM_LABEL_VALUE_REWIND_ENABLE:
return "Rewind Activeren";
case MENU_ENUM_LABEL_VALUE_CONTENT_COLLECTION_LIST:
return "Selecteer uit verzameling";
case MENU_ENUM_LABEL_VALUE_DETECT_CORE_LIST:
return "Selecteer bestand en detecteer Core";
case MENU_ENUM_LABEL_VALUE_LOAD_CONTENT_HISTORY:
return "Laad Recent";
case MENU_ENUM_LABEL_VALUE_AUDIO_ENABLE:
return "Audio Activeren";
case MENU_ENUM_LABEL_VALUE_FPS_SHOW:
return "Framerate Weergeven";
case MENU_ENUM_LABEL_VALUE_AUDIO_MUTE:
return "Audio Mute"; /* TODO/FIXME */
case MENU_ENUM_LABEL_VALUE_AUDIO_VOLUME:
return "Audio Uitgangsniveau (dB)";
case MENU_ENUM_LABEL_VALUE_AUDIO_SYNC:
return "Audio Synchronizatie Activeren";
case MENU_ENUM_LABEL_VALUE_AUDIO_RATE_CONTROL_DELTA:
return "Audio Rate Control Delta"; /* TODO/FIXME */
case MENU_ENUM_LABEL_VALUE_VIDEO_SHADER_NUM_PASSES:
return "Shader Passes"; /* TODO/FIXME */
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_SHA1:
return "SHA1";
case MENU_ENUM_LABEL_VALUE_CONFIGURATIONS:
return "Laad Configuratie";
case MENU_ENUM_LABEL_VALUE_REWIND_GRANULARITY:
return "Rewind Granulariteit";
case MENU_ENUM_LABEL_VALUE_REMAP_FILE_LOAD:
return "Laad Remap Bestand";
case MENU_ENUM_LABEL_VALUE_CUSTOM_RATIO:
return "Handmatige beeldverhouding";
case MENU_ENUM_LABEL_VALUE_USE_THIS_DIRECTORY:
return "<Deze directory gebruiken>";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_START_CONTENT:
return "Content Opstarten";
case MENU_ENUM_LABEL_VALUE_DISK_OPTIONS:
return "Disk Beheer";
case MENU_ENUM_LABEL_VALUE_CORE_OPTIONS:
return "Opties";
case MENU_ENUM_LABEL_VALUE_CORE_CHEAT_OPTIONS:
return "Cheats";
case MENU_ENUM_LABEL_VALUE_CHEAT_FILE_LOAD:
return "Cheat Bestand Laden";
case MENU_ENUM_LABEL_VALUE_CHEAT_FILE_SAVE_AS:
return "Cheat Bestand Opslaan Als";
case MENU_ENUM_LABEL_VALUE_CORE_COUNTERS:
return "Core Prestatie Tellers";
case MENU_ENUM_LABEL_VALUE_TAKE_SCREENSHOT:
return "Maak Screenshot";
case MENU_ENUM_LABEL_VALUE_RESUME:
return "Hervatten";
case MENU_ENUM_LABEL_VALUE_DISK_INDEX:
return "Disk Index";
case MENU_ENUM_LABEL_VALUE_FRONTEND_COUNTERS:
return "Frontend Prestatie Tellers";
case MENU_ENUM_LABEL_VALUE_DISK_IMAGE_APPEND:
return "Disk Image Toevoegen";
case MENU_ENUM_LABEL_VALUE_DISK_CYCLE_TRAY_STATUS:
return "Disk Cycle Tray Status"; /* TODO/FIXME */
case MENU_ENUM_LABEL_VALUE_NO_PLAYLIST_ENTRIES_AVAILABLE:
return "Geen afspeellijst items beschikbaar.";
case MENU_ENUM_LABEL_VALUE_NO_CORE_INFORMATION_AVAILABLE:
return "Geen core informatie beschikbaar.";
case MENU_ENUM_LABEL_VALUE_NO_CORE_OPTIONS_AVAILABLE:
return "Geen core opties beschikbaar.";
case MENU_ENUM_LABEL_VALUE_NO_CORES_AVAILABLE:
return "Geen cores beschikbaar.";
case MENU_ENUM_LABEL_VALUE_NO_CORE:
return "Geen core";
case MENU_ENUM_LABEL_VALUE_DATABASE_MANAGER:
return "Databasebeheer";
case MENU_ENUM_LABEL_VALUE_CURSOR_MANAGER:
return "Cursorbeheer";
case MENU_ENUM_LABEL_VALUE_MAIN_MENU:
return "Hoofdmenu";
case MENU_ENUM_LABEL_VALUE_SETTINGS:
return "Instellingen";
case MENU_ENUM_LABEL_VALUE_QUIT_RETROARCH:
return "RetroArch Afsluiten";
case MENU_ENUM_LABEL_VALUE_HELP:
return "Help";
case MENU_ENUM_LABEL_VALUE_SAVE_NEW_CONFIG:
return "Nieuwe configuratie opslaan";
case MENU_ENUM_LABEL_VALUE_RESTART_CONTENT:
return "Herstart";
case MENU_ENUM_LABEL_VALUE_CORE_UPDATER_LIST:
return "Core Updater";
case MENU_ENUM_LABEL_VALUE_CORE_UPDATER_BUILDBOT_URL:
return "Buildbot Cores URL";
case MENU_ENUM_LABEL_VALUE_BUILDBOT_ASSETS_URL:
return "Buildbot Assets URL";
case MENU_ENUM_LABEL_VALUE_NAVIGATION_WRAPAROUND:
return "Navigatie Wrap-Around";
case MENU_ENUM_LABEL_VALUE_NAVIGATION_BROWSER_FILTER_SUPPORTED_EXTENSIONS_ENABLE:
return "Filter op ondersteunde extensies";
case MENU_ENUM_LABEL_VALUE_CORE_UPDATER_AUTO_EXTRACT_ARCHIVE:
return "Automatisch uitpakken van gedownloade archieven";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFORMATION:
return "Systeem Informatie";
case MENU_ENUM_LABEL_VALUE_ONLINE_UPDATER:
return "Online Updater";
case MENU_ENUM_LABEL_VALUE_CORE_INFORMATION:
return "Core Informatie";
case MENU_ENUM_LABEL_VALUE_DIRECTORY_NOT_FOUND:
return "Directory niet gevonden.";
case MENU_ENUM_LABEL_VALUE_NO_ITEMS:
return "Geen items.";
case MENU_ENUM_LABEL_VALUE_CORE_LIST:
return "Laad Core";
case MENU_ENUM_LABEL_VALUE_LOAD_CONTENT:
return "Selecteer bestand";
case MENU_ENUM_LABEL_VALUE_CLOSE_CONTENT:
return "Afsluiten";
case MENU_ENUM_LABEL_VALUE_MANAGEMENT:
return "Database";
case MENU_ENUM_LABEL_VALUE_SAVE_STATE:
return "Save State";
case MENU_ENUM_LABEL_VALUE_LOAD_STATE:
return "Laad State";
case MENU_ENUM_LABEL_VALUE_RESUME_CONTENT:
return "Hervatten";
case MENU_ENUM_LABEL_VALUE_INPUT_DRIVER:
return "Input Driver";
case MENU_ENUM_LABEL_VALUE_AUDIO_DRIVER:
return "Audio Driver";
case MENU_ENUM_LABEL_VALUE_JOYPAD_DRIVER:
return "Joypad Driver";
case MENU_ENUM_LABEL_VALUE_AUDIO_RESAMPLER_DRIVER:
return "Audio Resampler Driver";
case MENU_ENUM_LABEL_VALUE_RECORD_DRIVER:
return "Opname Driver";
case MENU_ENUM_LABEL_VALUE_MENU_DRIVER:
return "Menu Driver";
case MENU_ENUM_LABEL_VALUE_CAMERA_DRIVER:
return "Camera Driver";
case MENU_ENUM_LABEL_VALUE_LOCATION_DRIVER:
return "Locatie Driver";
case MENU_ENUM_LABEL_VALUE_UNABLE_TO_READ_COMPRESSED_FILE:
return "Fout opgetreden tijdens lezen van gecomprimeerd bestand.";
case MENU_ENUM_LABEL_VALUE_OVERLAY_SCALE:
return "Overlay Schalering";
case MENU_ENUM_LABEL_VALUE_OVERLAY_PRESET:
return "Overlay Preset";
case MENU_ENUM_LABEL_VALUE_AUDIO_LATENCY:
return "Audio Latentie (ms)";
case MENU_ENUM_LABEL_VALUE_AUDIO_DEVICE:
return "Audio Apparaat";
case MENU_ENUM_LABEL_VALUE_KEYBOARD_OVERLAY_PRESET:
return "Toetsenbord Overlay Preset";
case MENU_ENUM_LABEL_VALUE_OVERLAY_OPACITY:
return "Overlay Transparentie";
case MENU_ENUM_LABEL_VALUE_MENU_WALLPAPER:
return "Menu Wallpaper";
case MENU_ENUM_LABEL_VALUE_DYNAMIC_WALLPAPER:
return "Dynamic Wallpaper";
case MENU_ENUM_LABEL_VALUE_CORE_INPUT_REMAPPING_OPTIONS:
return "Besturing";
case MENU_ENUM_LABEL_VALUE_SHADER_OPTIONS:
return "Shaders";
case MENU_ENUM_LABEL_VALUE_VIDEO_SHADER_PARAMETERS:
return "Voorbeeldweergave Shader Parameters";
case MENU_ENUM_LABEL_VALUE_VIDEO_SHADER_PRESET_PARAMETERS:
return "Menu Shader Parameters";
case MENU_ENUM_LABEL_VALUE_VIDEO_SHADER_PRESET_SAVE_AS:
return "Shader Preset Opslaan Als";
case MENU_ENUM_LABEL_VALUE_NO_SHADER_PARAMETERS:
return "Geen shader parameters.";
case MENU_ENUM_LABEL_VALUE_VIDEO_SHADER_PRESET:
return "Laad Shader Preset";
case MENU_ENUM_LABEL_VALUE_VIDEO_FILTER:
return "Video Filter";
case MENU_ENUM_LABEL_VALUE_AUDIO_DSP_PLUGIN:
return "Audio DSP Plugin";
case MENU_ENUM_LABEL_VALUE_STARTING_DOWNLOAD:
return "Download starten: ";
case MENU_ENUM_LABEL_VALUE_SECONDS:
return "secondes";
case MENU_ENUM_LABEL_VALUE_OFF:
return "OFF";
case MENU_ENUM_LABEL_VALUE_ON:
return "ON";
case MENU_ENUM_LABEL_VALUE_UPDATE_ASSETS:
return "Update Assets";
case MENU_ENUM_LABEL_VALUE_UPDATE_CHEATS:
return "Update Cheats";
case MENU_ENUM_LABEL_VALUE_UPDATE_AUTOCONFIG_PROFILES:
return "Update Autoconfiguratie Profielen";
case MENU_ENUM_LABEL_VALUE_UPDATE_DATABASES:
return "Update Databases";
case MENU_ENUM_LABEL_VALUE_UPDATE_OVERLAYS:
return "Update Overlays";
case MENU_ENUM_LABEL_VALUE_UPDATE_CG_SHADERS:
return "Update Cg Shaders";
case MENU_ENUM_LABEL_VALUE_UPDATE_GLSL_SHADERS:
return "Update GLSL Shaders";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_CORE_NAME:
return "Core naam";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_CORE_LABEL:
return "Core label";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_SYSTEM_NAME:
return "Systeem naam";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_SYSTEM_MANUFACTURER:
return "Systeem fabrikant";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_CATEGORIES:
return "Categories"; /* TODO/FIXME - need accented characters here */
case MENU_ENUM_LABEL_VALUE_CORE_INFO_AUTHORS:
return "Auteur(s)";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_PERMISSIONS:
return "Permissies";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_LICENSES:
return "Licentie(s)";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_SUPPORTED_EXTENSIONS:
return "Ondersteunde extensies";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_FIRMWARE:
return "Firmware";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_CORE_NOTES:
return "Core opmerkingen";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_BUILD_DATE:
return "Build datum";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_GIT_VERSION:
return "Git versie";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_CPU_FEATURES:
return "CPU Features";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_FRONTEND_IDENTIFIER:
return "Frontend identificatie";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_FRONTEND_NAME:
return "Frontend naam";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_FRONTEND_OS:
return "Frontend OS";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_RETRORATING_LEVEL:
return "RetroRating level";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_POWER_SOURCE:
return "Energie bron";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_POWER_SOURCE_NO_SOURCE:
return "Geen bron";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_POWER_SOURCE_CHARGING:
return "Opladen";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_POWER_SOURCE_CHARGED:
return "Charged";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_POWER_SOURCE_DISCHARGING:
return "Discharging";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_VIDEO_CONTEXT_DRIVER:
return "Video context driver";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_DISPLAY_METRIC_MM_WIDTH:
return "Display metric breedte (mm)";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_DISPLAY_METRIC_MM_HEIGHT:
return "Display metric hoogte (mm)";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_DISPLAY_METRIC_DPI:
return "Display metric DPI";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_LIBRETRODB_SUPPORT:
return "LibretroDB ondersteuning";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OVERLAY_SUPPORT:
return "Overlay ondersteuning";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_COMMAND_IFACE_SUPPORT:
return "Command interface ondersteuning";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_NETWORK_COMMAND_IFACE_SUPPORT:
return "Network Command interface ondersteuning";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_COCOA_SUPPORT:
return "Cocoa ondersteuning";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_RPNG_SUPPORT:
return "PNG ondersteuning (RPNG)";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_SDL_SUPPORT:
return "SDL1.2 ondersteuning";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_SDL2_SUPPORT:
return "SDL2 ondersteuning";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OPENGL_SUPPORT:
return "OpenGL ondersteuning";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OPENGLES_SUPPORT:
return "OpenGL ES ondersteuning";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_THREADING_SUPPORT:
return "Threading ondersteuning";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_KMS_SUPPORT:
return "KMS/EGL ondersteuning";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_UDEV_SUPPORT:
return "Udev ondersteuning";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OPENVG_SUPPORT:
return "OpenVG ondersteuning";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_EGL_SUPPORT:
return "EGL ondersteuning";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_X11_SUPPORT:
return "X11 ondersteuning";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_WAYLAND_SUPPORT:
return "Wayland ondersteuning";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_XVIDEO_SUPPORT:
return "XVideo ondersteuning";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_ALSA_SUPPORT:
return "ALSA ondersteuning";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OSS_SUPPORT:
return "OSS ondersteuning";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OPENAL_SUPPORT:
return "OpenAL ondersteuning";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OPENSL_SUPPORT:
return "OpenSL ondersteuning";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_RSOUND_SUPPORT:
return "RSound ondersteuning";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_ROARAUDIO_SUPPORT:
return "RoarAudio ondersteuning";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_JACK_SUPPORT:
return "JACK ondersteuning";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_PULSEAUDIO_SUPPORT:
return "PulseAudio ondersteuning";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_DSOUND_SUPPORT:
return "DirectSound ondersteuning";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_XAUDIO2_SUPPORT:
return "XAudio2 ondersteuning";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_ZLIB_SUPPORT:
return "Zlib ondersteuning";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_7ZIP_SUPPORT:
return "7zip ondersteuning";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_DYLIB_SUPPORT:
return "Dynamic library ondersteuning";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_CG_SUPPORT:
return "Cg ondersteuning";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_GLSL_SUPPORT:
return "GLSL ondersteuning";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_HLSL_SUPPORT:
return "HLSL ondersteuning";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_LIBXML2_SUPPORT:
return "libxml2 XML parsing ondersteuning";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_SDL_IMAGE_SUPPORT:
return "SDL afbeeldingen ondersteuning";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_FBO_SUPPORT:
return "OpenGL/Direct3D render-to-texture (multi-pass shaders) ondersteuning";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_FFMPEG_SUPPORT:
return "FFmpeg ondersteuning";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_CORETEXT_SUPPORT:
return "CoreText ondersteuning";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_FREETYPE_SUPPORT:
return "FreeType ondersteuning";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_NETPLAY_SUPPORT:
return "Netplay (peer-to-peer) ondersteuning";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_PYTHON_SUPPORT:
return "Python (script ondersteuning in shaders) ondersteuning";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_V4L2_SUPPORT:
return "Video4Linux2 ondersteuning";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_LIBUSB_SUPPORT:
return "Libusb ondersteuning";
case MENU_ENUM_LABEL_VALUE_YES:
return "Ja";
case MENU_ENUM_LABEL_VALUE_NO:
return "Nee";
case MENU_ENUM_LABEL_VALUE_SCREEN_RESOLUTION:
return "Scherm Resolutie";
case MENU_ENUM_LABEL_VALUE_BACK:
return "TERUG";
case MENU_ENUM_LABEL_VALUE_DISABLED:
return "Uitgeschakeld";
case MENU_ENUM_LABEL_VALUE_PORT:
return "Poort";
case MENU_ENUM_LABEL_VALUE_NONE:
return "Geen";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_DEVELOPER:
return "Ontwikkelaar";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_PUBLISHER:
return "Uitgever";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_DESCRIPTION:
return "Omschrijving";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_NAME:
return "Naam";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_ORIGIN:
return "Afkomst";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_FRANCHISE:
return "Franchise";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_RELEASE_MONTH:
return "Release datum maand";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_RELEASE_YEAR:
return "Release datum jaar";
case MENU_ENUM_LABEL_VALUE_TRUE:
return "Waar";
case MENU_ENUM_LABEL_VALUE_FALSE:
return "Niet waar";
case MENU_ENUM_LABEL_VALUE_MISSING:
return "Ontbrekend";
case MENU_ENUM_LABEL_VALUE_PRESENT:
return "Aanwezig";
case MENU_ENUM_LABEL_VALUE_OPTIONAL:
return "Optioneel";
case MENU_ENUM_LABEL_VALUE_REQUIRED:
return "Vereist";
case MENU_ENUM_LABEL_VALUE_STATUS:
return "Status";
case MENU_ENUM_LABEL_VALUE_AUDIO_SETTINGS:
return "Geluid";
case MENU_ENUM_LABEL_VALUE_INPUT_SETTINGS:
return "Invoer";
case MENU_ENUM_LABEL_VALUE_ONSCREEN_DISPLAY_SETTINGS:
return "Onscreen Weergave";
case MENU_ENUM_LABEL_VALUE_OVERLAY_SETTINGS:
return "Onscreen Overlay";
case MENU_ENUM_LABEL_VALUE_MENU_SETTINGS:
return "Menu";
case MENU_ENUM_LABEL_VALUE_MULTIMEDIA_SETTINGS:
return "Multimedia";
case MENU_ENUM_LABEL_VALUE_UI_SETTINGS:
return "Gebruikersinterface";
case MENU_ENUM_LABEL_VALUE_MENU_FILE_BROWSER_SETTINGS:
return "Menu Bestandsbeheer";
case MENU_ENUM_LABEL_VALUE_CORE_UPDATER_SETTINGS:
return "Updater";
case MENU_ENUM_LABEL_VALUE_NETWORK_SETTINGS:
return "Netwerk";
case MENU_ENUM_LABEL_VALUE_PLAYLIST_SETTINGS:
return "Playlist";
case MENU_ENUM_LABEL_VALUE_USER_SETTINGS:
return "Gebruiker";
case MENU_ENUM_LABEL_VALUE_DIRECTORY_SETTINGS:
return "Mappen";
case MENU_ENUM_LABEL_VALUE_RECORDING_SETTINGS:
return "Opname";
case MENU_ENUM_LABEL_VALUE_NO_INFORMATION_AVAILABLE:
return "Informatie is niet beschikbaar.";
case MENU_ENUM_LABEL_VALUE_INPUT_USER_BINDS:
return "Invoer Gebruiker %u Binds";
case MENU_ENUM_LABEL_VALUE_LANG_ENGLISH:
return "Engels";
case MENU_ENUM_LABEL_VALUE_LANG_JAPANESE:
return "Japans";
case MENU_ENUM_LABEL_VALUE_LANG_FRENCH:
return "Frans";
case MENU_ENUM_LABEL_VALUE_LANG_SPANISH:
return "Spaans";
case MENU_ENUM_LABEL_VALUE_LANG_GERMAN:
return "Duits";
case MENU_ENUM_LABEL_VALUE_LANG_ITALIAN:
return "Italiaans";
case MENU_ENUM_LABEL_VALUE_LANG_DUTCH:
return "Nederlands";
case MENU_ENUM_LABEL_VALUE_LANG_PORTUGUESE:
return "Portugees";
case MENU_ENUM_LABEL_VALUE_LANG_RUSSIAN:
return "Russisch";
case MENU_ENUM_LABEL_VALUE_LANG_KOREAN:
return "Koreaans";
case MENU_ENUM_LABEL_VALUE_LANG_CHINESE_TRADITIONAL:
return "Chinees (Traditioneel)";
case MENU_ENUM_LABEL_VALUE_LANG_CHINESE_SIMPLIFIED:
return "Chinees (Gesimplificeerd)";
case MENU_ENUM_LABEL_VALUE_LANG_ESPERANTO:
return "Esperanto";
case MENU_ENUM_LABEL_VALUE_LEFT_ANALOG:
return "Linkse Analog";
case MENU_ENUM_LABEL_VALUE_RIGHT_ANALOG:
return "Rechtse Analog";
case MENU_ENUM_LABEL_VALUE_INPUT_HOTKEY_BINDS:
return "Invoer Hotkey Binds";
case MENU_ENUM_LABEL_VALUE_FRAME_THROTTLE_SETTINGS:
return "Frame Throttle";
case MENU_ENUM_LABEL_VALUE_SEARCH:
return "Zoeken:";
default:
break;
}
return "null";
}
int menu_hash_get_help_nl(uint32_t hash, char *s, size_t len)
{
int ret = 0;

View File

@ -19,842 +19,6 @@
#include "../menu_hash.h"
#include "../../configuration.h"
/* IMPORTANT:
* For non-english characters to work without proper unicode support,
* we need this file to be encoded in ISO 8859-2, not UTF-8.
* If you save this file as UTF-8, you'll break non-english characters
* (e.g. German "Umlauts" and Portugese diacritics).
*/
const char *menu_hash_to_str_pl_enum(enum menu_hash_enums msg)
{
switch (msg)
{
case MENU_ENUM_LABEL_VALUE_OVERLAY_AUTOLOAD_PREFERRED:
return "Automatycznie wczytaj preferowan± nak³adkê";
case MENU_ENUM_LABEL_VALUE_UPDATE_CORE_INFO_FILES:
return "Aktualizuj pliki informacji o rdzeniach";
case MENU_ENUM_LABEL_VALUE_DOWNLOAD_CORE_CONTENT:
return "Pobierz tre¶ci";
case MENU_ENUM_LABEL_VALUE_SCAN_THIS_DIRECTORY:
return "<Przeszukaj ten katalog>";
case MENU_ENUM_LABEL_VALUE_SCAN_FILE:
return "Skanuj plik";
case MENU_ENUM_LABEL_VALUE_SCAN_DIRECTORY:
return "Przeszukaj katalog";
case MENU_ENUM_LABEL_VALUE_ADD_CONTENT_LIST:
return "Dodaj tre¶æ";
case MENU_ENUM_LABEL_VALUE_INFORMATION_LIST:
return "Informacje";
case MENU_ENUM_LABEL_VALUE_USE_BUILTIN_PLAYER:
return "U¿yj wbudowanego odtwarzacza mediów";
case MENU_ENUM_LABEL_VALUE_CONTENT_SETTINGS:
return "Szybkie menu";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_CRC32:
return "CRC32";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_MD5:
return "MD5";
case MENU_ENUM_LABEL_VALUE_LOAD_CONTENT_LIST:
return "Wczytaj tre¶æ";
case MENU_ENUM_LABEL_VALUE_LOAD_ARCHIVE:
return "Wczytaj archiwum";
case MENU_ENUM_LABEL_VALUE_OPEN_ARCHIVE:
return "Otwórz archiwum";
case MENU_ENUM_LABEL_VALUE_ASK_ARCHIVE:
return "Pytaj";
case MENU_ENUM_LABEL_VALUE_PRIVACY_SETTINGS:
return "Ustawienia prywatno¶ci";
case MENU_ENUM_LABEL_VALUE_HORIZONTAL_MENU: /* Don't change. Breaks everything. (Would be: "Menu poziome") */
return "Horizontal Menu";
case MENU_ENUM_LABEL_VALUE_NO_SETTINGS_FOUND:
return "Nie znaleziono ustawieñ.";
case MENU_ENUM_LABEL_VALUE_NO_PERFORMANCE_COUNTERS:
return "Brak liczników wydajno¶ci.";
case MENU_ENUM_LABEL_VALUE_DRIVER_SETTINGS:
return "Ustawienia kontrolerów";
case MENU_ENUM_LABEL_VALUE_CONFIGURATION_SETTINGS:
return "Ustawienia konfiguracji";
case MENU_ENUM_LABEL_VALUE_CORE_SETTINGS:
return "Ustawienia rdzenia";
case MENU_ENUM_LABEL_VALUE_VIDEO_SETTINGS:
return "Ustawienia wideo";
case MENU_ENUM_LABEL_VALUE_LOGGING_SETTINGS:
return "Ustawienia logowania";
case MENU_ENUM_LABEL_VALUE_SAVING_SETTINGS:
return "Ustawienia zapisywania";
case MENU_ENUM_LABEL_VALUE_REWIND_SETTINGS:
return "Ustawienia przewijania";
case MENU_ENUM_LABEL_VALUE_SHADER:
return "Shader";
case MENU_ENUM_LABEL_VALUE_CHEAT:
return "Cheat";
case MENU_ENUM_LABEL_VALUE_USER:
return "U¿ytkownik";
case MENU_ENUM_LABEL_VALUE_SYSTEM_BGM_ENABLE:
return "W³±cz BGM systemu";
case MENU_ENUM_LABEL_VALUE_RETROPAD:
return "RetroPad";
case MENU_ENUM_LABEL_VALUE_RETROKEYBOARD:
return "RetroKeyboard";
case MENU_ENUM_LABEL_VALUE_AUDIO_BLOCK_FRAMES:
return "Block Frames";
case MENU_ENUM_LABEL_VALUE_INPUT_DESCRIPTOR_LABEL_SHOW:
return "Wy¶wietl opisy przycisków dla tego rdzenia"; /* UPDATE/FIXME */
case MENU_ENUM_LABEL_VALUE_INPUT_DESCRIPTOR_HIDE_UNBOUND:
return "Ukryj nieprzypisane przyciski";
case MENU_ENUM_LABEL_VALUE_VIDEO_FONT_ENABLE:
return "Wy¶wietlaj wiadomo¶ci OSD";
case MENU_ENUM_LABEL_VALUE_VIDEO_FONT_PATH:
return "Czcionka wiadomo¶ci OSD";
case MENU_ENUM_LABEL_VALUE_VIDEO_FONT_SIZE:
return "Rozmiar wiadomo¶ci OSD";
case MENU_ENUM_LABEL_VALUE_VIDEO_MESSAGE_POS_X:
return "Wspó³rzêdna X dla wiadomo¶ci OSD";
case MENU_ENUM_LABEL_VALUE_VIDEO_MESSAGE_POS_Y:
return "Wspó³rzêdna Y dla wiadomo¶ci OSD";
case MENU_ENUM_LABEL_VALUE_VIDEO_SOFT_FILTER:
return "W³±cz filtr programowy";
case MENU_ENUM_LABEL_VALUE_VIDEO_FILTER_FLICKER:
return "Filtr migotania";
case MENU_ENUM_LABEL_VALUE_DIRECTORY_CONTENT:
return "<Katalog tre¶ci>";
case MENU_ENUM_LABEL_VALUE_UNKNOWN:
return "Nieznane";
case MENU_ENUM_LABEL_VALUE_DONT_CARE:
return "Bez znaczenia";
case MENU_ENUM_LABEL_VALUE_LINEAR:
return "Liniowe";
case MENU_ENUM_LABEL_VALUE_NEAREST:
return "Najbli¿sze";
case MENU_ENUM_LABEL_VALUE_DIRECTORY_DEFAULT:
return "<Domy¶lny>";
case MENU_ENUM_LABEL_VALUE_DIRECTORY_NONE:
return "<¯aden>";
case MENU_ENUM_LABEL_VALUE_NOT_AVAILABLE:
return "B/D";
case MENU_ENUM_LABEL_VALUE_INPUT_REMAPPING_DIRECTORY:
return "Katalog plików remapowania";
case MENU_ENUM_LABEL_VALUE_JOYPAD_AUTOCONFIG_DIR:
return "Katalog autokonfiguracji kontrolerów gier";
case MENU_ENUM_LABEL_VALUE_RECORDING_CONFIG_DIRECTORY:
return "Katalog konfiguracji nagrywania";
case MENU_ENUM_LABEL_VALUE_RECORDING_OUTPUT_DIRECTORY:
return "Katalog wyj¶ciowy nagrywania";
case MENU_ENUM_LABEL_VALUE_SCREENSHOT_DIRECTORY:
return "Katalog zrzutów";
case MENU_ENUM_LABEL_VALUE_PLAYLIST_DIRECTORY:
return "Katalog historii";
case MENU_ENUM_LABEL_VALUE_SAVEFILE_DIRECTORY:
return "Katalog zapisów tre¶ci";
case MENU_ENUM_LABEL_VALUE_SAVESTATE_DIRECTORY:
return "Katalog zapisanych stanów";
case MENU_ENUM_LABEL_VALUE_STDIN_CMD_ENABLE:
return "Komendy stdin";
case MENU_ENUM_LABEL_VALUE_VIDEO_DRIVER:
return "Kontroler wideo";
case MENU_ENUM_LABEL_VALUE_RECORD_ENABLE:
return "W³±cz nagrywanie";
case MENU_ENUM_LABEL_VALUE_VIDEO_GPU_RECORD:
return "W³±cz nagrywanie z u¿yciem GPU";
case MENU_ENUM_LABEL_VALUE_RECORD_PATH: /* FIXME/UPDATE */
return "¦cie¿ka nagrywania";
case MENU_ENUM_LABEL_VALUE_RECORD_USE_OUTPUT_DIRECTORY:
return "U¿ywaj katalogu wyj¶ciowego nagrywania";
case MENU_ENUM_LABEL_VALUE_RECORD_CONFIG:
return "Konfiguracja nagrywania";
case MENU_ENUM_LABEL_VALUE_VIDEO_POST_FILTER_RECORD:
return "Nagrywaj wraz z zaaplikowanymi filtrami";
case MENU_ENUM_LABEL_VALUE_CORE_ASSETS_DIRECTORY:
return "Katalog pobranych";
case MENU_ENUM_LABEL_VALUE_ASSETS_DIRECTORY:
return "Katalog assetów";
case MENU_ENUM_LABEL_VALUE_DYNAMIC_WALLPAPERS_DIRECTORY:
return "Katalog dynamicznych tapet";
case MENU_ENUM_LABEL_VALUE_RGUI_BROWSER_DIRECTORY:
return "Katalog przegl±darki";
case MENU_ENUM_LABEL_VALUE_RGUI_CONFIG_DIRECTORY:
return "Katalog zapisanych konfiguracji";
case MENU_ENUM_LABEL_VALUE_LIBRETRO_INFO_PATH:
return "Katalog informacji o rdzeniach";
case MENU_ENUM_LABEL_VALUE_LIBRETRO_DIR_PATH:
return "Katalog rdzeni";
case MENU_ENUM_LABEL_VALUE_CURSOR_DIRECTORY:
return "Katalog z kursorami";
case MENU_ENUM_LABEL_VALUE_CONTENT_DATABASE_DIRECTORY:
return "Katalog bazy danych tre¶ci";
case MENU_ENUM_LABEL_VALUE_SYSTEM_DIRECTORY:
return "Katalog systemu";
case MENU_ENUM_LABEL_VALUE_CHEAT_DATABASE_PATH:
return "Katalog z plikami cheatów";
case MENU_ENUM_LABEL_VALUE_CACHE_DIRECTORY: /* UPDATE/FIXME */
return "Katalog do wypakowywania archiwów";
case MENU_ENUM_LABEL_VALUE_AUDIO_FILTER_DIR:
return "Katalog filtrów audio";
case MENU_ENUM_LABEL_VALUE_VIDEO_SHADER_DIR:
return "Katalog shaderów";
case MENU_ENUM_LABEL_VALUE_VIDEO_FILTER_DIR:
return "Katalog filtrów wideo";
case MENU_ENUM_LABEL_VALUE_OVERLAY_DIRECTORY:
return "Katalog nak³adek";
case MENU_ENUM_LABEL_VALUE_OSK_OVERLAY_DIRECTORY:
return "Katalog klawiatur ekranowych";
case MENU_ENUM_LABEL_VALUE_NETPLAY_CLIENT_SWAP_INPUT:
return "Zamieñ kontrolery w grze sieciowej";
case MENU_ENUM_LABEL_VALUE_NETPLAY_SPECTATOR_MODE_ENABLE:
return "Tryb obserwatora gry sieciowej";
case MENU_ENUM_LABEL_VALUE_NETPLAY_IP_ADDRESS:
return "Adres IP";
case MENU_ENUM_LABEL_VALUE_NETPLAY_TCP_UDP_PORT:
return "Port TCP/UDP gry sieciowej";
case MENU_ENUM_LABEL_VALUE_NETPLAY_ENABLE:
return "W³±cz grê sieciow±";
case MENU_ENUM_LABEL_VALUE_NETPLAY_DELAY_FRAMES:
return "Opóxnione klatki w grze sieciowej";
case MENU_ENUM_LABEL_VALUE_NETPLAY_MODE:
return "Tryb klienta gry sieciowej";
case MENU_ENUM_LABEL_VALUE_RGUI_SHOW_START_SCREEN:
return "Pokazuj ekran startowy";
case MENU_ENUM_LABEL_VALUE_TITLE_COLOR:
return "Kolor tytu³u menu";
case MENU_ENUM_LABEL_VALUE_ENTRY_HOVER_COLOR:
return "Kolor zaznaczonego elementu menu";
case MENU_ENUM_LABEL_VALUE_TIMEDATE_ENABLE:
return "Wy¶wietl czas/datê";
case MENU_ENUM_LABEL_VALUE_THREADED_DATA_RUNLOOP_ENABLE:
return "Osobny w±tek odbierania danych";
case MENU_ENUM_LABEL_VALUE_ENTRY_NORMAL_COLOR:
return "Zwyk³y kolor elementu menu";
case MENU_ENUM_LABEL_VALUE_SHOW_ADVANCED_SETTINGS:
return "Poka¿ zaawansowane ustawienia";
case MENU_ENUM_LABEL_VALUE_MOUSE_ENABLE:
return "Obs³uga myszy";
case MENU_ENUM_LABEL_VALUE_POINTER_ENABLE:
return "Obs³uga dotyku";
case MENU_ENUM_LABEL_VALUE_CORE_ENABLE:
return "Wy¶wietlaj nazwê rdzenia";
case MENU_ENUM_LABEL_VALUE_DPI_OVERRIDE_ENABLE:
return "Pomiñ wykryte DPI";
case MENU_ENUM_LABEL_VALUE_DPI_OVERRIDE_VALUE:
return "W³asne DPI";
case MENU_ENUM_LABEL_VALUE_SUSPEND_SCREENSAVER_ENABLE:
return "Wstrzymaj wygaszacz";
case MENU_ENUM_LABEL_VALUE_VIDEO_DISABLE_COMPOSITION:
return "Wy³±cz efekty kompozycji pulpitu";
case MENU_ENUM_LABEL_VALUE_PAUSE_NONACTIVE:
return "Wstrzymaj gdy w tle";
case MENU_ENUM_LABEL_VALUE_UI_COMPANION_START_ON_BOOT:
return "UI Companion Start On Boot";
case MENU_ENUM_LABEL_VALUE_UI_MENUBAR_ENABLE:
return "Pasek menu";
case MENU_ENUM_LABEL_VALUE_ARCHIVE_MODE:
return "Archive File Assocation Action";
case MENU_ENUM_LABEL_VALUE_NETWORK_CMD_ENABLE:
return "Komendy sieciowe";
case MENU_ENUM_LABEL_VALUE_NETWORK_CMD_PORT:
return "Port dla komend sieciowych";
case MENU_ENUM_LABEL_VALUE_HISTORY_LIST_ENABLE:
return "W³±cz historiê tre¶ci";
case MENU_ENUM_LABEL_VALUE_CONTENT_HISTORY_SIZE:
return "Rozmiar historii tre¶ci";
case MENU_ENUM_LABEL_VALUE_VIDEO_REFRESH_RATE_AUTO:
return "Szacowana czêstotliwo¶æ od¶wie¿ania monitora";
case MENU_ENUM_LABEL_VALUE_DUMMY_ON_CORE_SHUTDOWN:
return "Atrapa rdzenia przy zatrzymaniu rdzenia";
case MENU_ENUM_LABEL_VALUE_CORE_SET_SUPPORTS_NO_CONTENT_ENABLE: /* TODO/FIXME */
return "Nie uruchamiaj rdzenia automatycznie";
case MENU_ENUM_LABEL_VALUE_FRAME_THROTTLE_ENABLE:
return "Limituj maksymaln± szybko¶æ dzia³ania";
case MENU_ENUM_LABEL_VALUE_FASTFORWARD_RATIO:
return "Maksymalna szybko¶æ dzia³ania";
case MENU_ENUM_LABEL_VALUE_AUTO_REMAPS_ENABLE:
return "Automatycznie wczytuj pliki remapowania";
case MENU_ENUM_LABEL_VALUE_SLOWMOTION_RATIO:
return "Wspó³czynnik spowolnienia";
case MENU_ENUM_LABEL_VALUE_CORE_SPECIFIC_CONFIG:
return "Osobna konfiguracja dla ka¿dego rdzenia";
case MENU_ENUM_LABEL_VALUE_AUTO_OVERRIDES_ENABLE:
return "Load Override Files Automatically"; /* this one's rather complicated */
case MENU_ENUM_LABEL_VALUE_CONFIG_SAVE_ON_EXIT:
return "Zapisz konfiguracjê przy wyj¶ciu";
case MENU_ENUM_LABEL_VALUE_VIDEO_SMOOTH:
return "Sprzêtowe filtrowanie dwuliniowe";
case MENU_ENUM_LABEL_VALUE_VIDEO_GAMMA:
return "Gamma wideo";
case MENU_ENUM_LABEL_VALUE_VIDEO_ALLOW_ROTATE:
return "Zezwól na obrót";
case MENU_ENUM_LABEL_VALUE_VIDEO_HARD_SYNC:
return "¦cis³a synchronizacja GPU";
case MENU_ENUM_LABEL_VALUE_VIDEO_SWAP_INTERVAL:
return "VSync Swap Interval";
case MENU_ENUM_LABEL_VALUE_VIDEO_VSYNC:
return "Synchronizacja pionowa";
case MENU_ENUM_LABEL_VALUE_VIDEO_THREADED:
return "Osobny w±tek wideo";
case MENU_ENUM_LABEL_VALUE_VIDEO_ROTATION:
return "Obrót";
case MENU_ENUM_LABEL_VALUE_VIDEO_GPU_SCREENSHOT:
return "Wykonuj zrzuty ekranu z wykorzystaniem GPU";
case MENU_ENUM_LABEL_VALUE_VIDEO_CROP_OVERSCAN:
return "Wytnij overscan (restart)";
case MENU_ENUM_LABEL_VALUE_VIDEO_ASPECT_RATIO_INDEX:
return "Indeks wspó³czynnika proporcji";
case MENU_ENUM_LABEL_VALUE_VIDEO_ASPECT_RATIO_AUTO:
return "Auto wspó³czynnik proporcji";
case MENU_ENUM_LABEL_VALUE_VIDEO_FORCE_ASPECT:
return "Wymu¶ wspó³czynnik proporcji";
case MENU_ENUM_LABEL_VALUE_VIDEO_REFRESH_RATE:
return "Czêstotliwo¶æ od¶wie¿ania";
case MENU_ENUM_LABEL_VALUE_VIDEO_FORCE_SRGB_DISABLE:
return "Wymu¶ wy³±czenie sRGB FBO";
case MENU_ENUM_LABEL_VALUE_VIDEO_WINDOWED_FULLSCREEN:
return "Tryb pe³nego ekranu w oknie";
case MENU_ENUM_LABEL_VALUE_PAL60_ENABLE:
return "U¿yj trybu PAL60";
case MENU_ENUM_LABEL_VALUE_VIDEO_VFILTER:
return "Redukcja migotania";
case MENU_ENUM_LABEL_VALUE_VIDEO_VI_WIDTH:
return "Set VI Screen Width";
case MENU_ENUM_LABEL_VALUE_VIDEO_BLACK_FRAME_INSERTION:
return "Wstawiaj czarne klatki";
case MENU_ENUM_LABEL_VALUE_VIDEO_HARD_SYNC_FRAMES:
return "Hard GPU Sync Frames";
case MENU_ENUM_LABEL_VALUE_SORT_SAVEFILES_ENABLE:
return "Sortuj zapisy w folderach";
case MENU_ENUM_LABEL_VALUE_SORT_SAVESTATES_ENABLE:
return "Sortuj zapisane stany w folderach";
case MENU_ENUM_LABEL_VALUE_VIDEO_FULLSCREEN:
return "Pe³ny ekran";
case MENU_ENUM_LABEL_VALUE_VIDEO_SCALE:
return "Skala w oknie";
case MENU_ENUM_LABEL_VALUE_VIDEO_SCALE_INTEGER:
return "Skaluj w liczbach ca³kowitych";
case MENU_ENUM_LABEL_VALUE_PERFCNT_ENABLE:
return "Liczniki wydajno¶ci";
case MENU_ENUM_LABEL_VALUE_LIBRETRO_LOG_LEVEL:
return "Poziom logowania rdzenia";
case MENU_ENUM_LABEL_VALUE_LOG_VERBOSITY:
return "Szczegó³owo¶æ logowania";
case MENU_ENUM_LABEL_VALUE_SAVESTATE_AUTO_LOAD:
return "Automatyczne wczytywanie stanu";
case MENU_ENUM_LABEL_VALUE_SAVESTATE_AUTO_INDEX:
return "Indeks automatycznie zapisywanego stanu";
case MENU_ENUM_LABEL_VALUE_SAVESTATE_AUTO_SAVE:
return "Automatyczny zapis stanu";
case MENU_ENUM_LABEL_VALUE_AUTOSAVE_INTERVAL:
return "Czêstotliwo¶æ automatycznego zapisu SaveRAM";
case MENU_ENUM_LABEL_VALUE_BLOCK_SRAM_OVERWRITE:
return "Nie nadpisuj SaveRAM przy wczytywaniu stanu";
case MENU_ENUM_LABEL_VALUE_VIDEO_SHARED_CONTEXT:
return "HW Shared Context Enable";
case MENU_ENUM_LABEL_VALUE_RESTART_RETROARCH:
return "Uruchom ponownie RetroArch";
case MENU_ENUM_LABEL_VALUE_NETPLAY_NICKNAME:
return "Nazwa u¿ytkownika";
case MENU_ENUM_LABEL_VALUE_USER_LANGUAGE:
return "Jêzyk";
case MENU_ENUM_LABEL_VALUE_CAMERA_ALLOW:
return "Zezwalaj na dostêp do kamerki";
case MENU_ENUM_LABEL_VALUE_LOCATION_ALLOW:
return "Zezwalaj na dostêp do lokalizacji";
case MENU_ENUM_LABEL_VALUE_PAUSE_LIBRETRO:
return "Pauzuj przy wej¶ciu do menu";
case MENU_ENUM_LABEL_VALUE_INPUT_OSK_OVERLAY_ENABLE:
return "Wy¶wietlaj klawiaturê ekranow±";
case MENU_ENUM_LABEL_VALUE_INPUT_OVERLAY_ENABLE:
return "Wy¶wietlaj nak³adkê";
case MENU_ENUM_LABEL_VALUE_VIDEO_MONITOR_INDEX:
return "Indeks monitora";
case MENU_ENUM_LABEL_VALUE_VIDEO_FRAME_DELAY:
return "Opó¼nienie klatek";
case MENU_ENUM_LABEL_VALUE_INPUT_DUTY_CYCLE:
return "Cykl zmian";
case MENU_ENUM_LABEL_VALUE_INPUT_TURBO_PERIOD:
return "Okres turbo";
case MENU_ENUM_LABEL_VALUE_INPUT_AXIS_THRESHOLD:
return "Próg osi";
case MENU_ENUM_LABEL_VALUE_INPUT_REMAP_BINDS_ENABLE:
return "W³±cz remapowanie bindów";
case MENU_ENUM_LABEL_VALUE_INPUT_MAX_USERS:
return "Maksymalna liczba u¿ytkowników";
case MENU_ENUM_LABEL_VALUE_INPUT_AUTODETECT_ENABLE:
return "W³±cz autokonfiguracjê";
case MENU_ENUM_LABEL_VALUE_AUDIO_OUTPUT_RATE:
return "Czêstotliwo¶æ próbkowania d¼wiêku (KHz)";
case MENU_ENUM_LABEL_VALUE_AUDIO_MAX_TIMING_SKEW:
return "Audio Maximum Timing Skew";
case MENU_ENUM_LABEL_VALUE_CHEAT_NUM_PASSES:
return "Liczba przebiegów cheatów";
case MENU_ENUM_LABEL_VALUE_REMAP_FILE_SAVE_CORE:
return "Zapisz plik remapowania dla rdzenia";
case MENU_ENUM_LABEL_VALUE_REMAP_FILE_SAVE_GAME:
return "Zapisz plik remapowania dla gry";
case MENU_ENUM_LABEL_VALUE_CHEAT_APPLY_CHANGES:
return "Zastosuj zmiany cheatów";
case MENU_ENUM_LABEL_VALUE_SHADER_APPLY_CHANGES:
return "Zastosuj zmiany shaderów";
case MENU_ENUM_LABEL_VALUE_REWIND_ENABLE:
return "W³±cz przewijanie";
case MENU_ENUM_LABEL_VALUE_CONTENT_COLLECTION_LIST:
return "Wybierz z kolekcji";
case MENU_ENUM_LABEL_VALUE_DETECT_CORE_LIST:
return "Wybierz plik i dopasuj rdzeñ";
case MENU_ENUM_LABEL_VALUE_DOWNLOADED_FILE_DETECT_CORE_LIST:
return "Wybierz pobrany plik i dopasuj rdzeñ"; /* this makes little sense */
case MENU_ENUM_LABEL_VALUE_LOAD_CONTENT_HISTORY:
return "Wczytaj z ostatnio u¿ywanych";
case MENU_ENUM_LABEL_VALUE_AUDIO_ENABLE:
return "W³±cz d¼wiêk";
case MENU_ENUM_LABEL_VALUE_FPS_SHOW:
return "Wy¶wietlaj FPS";
case MENU_ENUM_LABEL_VALUE_AUDIO_MUTE:
return "Wycisz d¼wiêk";
case MENU_ENUM_LABEL_VALUE_AUDIO_VOLUME:
return "Poziom g³o¶no¶ci (dB)";
case MENU_ENUM_LABEL_VALUE_AUDIO_SYNC:
return "W³±cz synchronizacjê d¼wiêku";
case MENU_ENUM_LABEL_VALUE_AUDIO_RATE_CONTROL_DELTA:
return "Audio Rate Control Delta";
case MENU_ENUM_LABEL_VALUE_VIDEO_SHADER_NUM_PASSES:
return "Liczba przebiegów shadera";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_SHA1:
return "SHA1";
case MENU_ENUM_LABEL_VALUE_CONFIGURATIONS:
return "Wczytaj konfiguracjê";
case MENU_ENUM_LABEL_VALUE_REWIND_GRANULARITY:
return "P³ynno¶æ przewijania";
case MENU_ENUM_LABEL_VALUE_REMAP_FILE_LOAD:
return "Wczytaj plik remapowania";
case MENU_ENUM_LABEL_VALUE_CUSTOM_RATIO:
return "W³±sny wspó³czynnik";
case MENU_ENUM_LABEL_VALUE_USE_THIS_DIRECTORY:
return "<U¿yj tego katalogu>";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_START_CONTENT:
return "Uruchom tre¶æ";
case MENU_ENUM_LABEL_VALUE_DISK_OPTIONS:
return "Opcje dysku rdzenia";
case MENU_ENUM_LABEL_VALUE_CORE_OPTIONS:
return "Opcje";
case MENU_ENUM_LABEL_VALUE_CORE_CHEAT_OPTIONS:
return "Opcje cheatów rdzenia";
case MENU_ENUM_LABEL_VALUE_CHEAT_FILE_LOAD:
return "Wczytaj plik z cheatami";
case MENU_ENUM_LABEL_VALUE_CHEAT_FILE_SAVE_AS:
return "Zapisz plik z cheatami jako";
case MENU_ENUM_LABEL_VALUE_CORE_COUNTERS:
return "Liczniki rdzenia";
case MENU_ENUM_LABEL_VALUE_TAKE_SCREENSHOT:
return "Zapisz zrzut";
case MENU_ENUM_LABEL_VALUE_RESUME:
return "Wznów";
case MENU_ENUM_LABEL_VALUE_DISK_INDEX:
return "Indeks dysku";
case MENU_ENUM_LABEL_VALUE_FRONTEND_COUNTERS:
return "Liczniki frontendu";
case MENU_ENUM_LABEL_VALUE_DISK_IMAGE_APPEND:
return "Dopisz do obrazu dysku";
case MENU_ENUM_LABEL_VALUE_DISK_CYCLE_TRAY_STATUS:
return "Disk Cycle Tray Status";
case MENU_ENUM_LABEL_VALUE_NO_PLAYLIST_ENTRIES_AVAILABLE:
return "Brak wpisów w playli¶cie.";
case MENU_ENUM_LABEL_VALUE_NO_CORE_INFORMATION_AVAILABLE:
return "Brak informacji o rdzeniu.";
case MENU_ENUM_LABEL_VALUE_NO_CORE_OPTIONS_AVAILABLE:
return "Brak dostêpnych opcji rdzenia.";
case MENU_ENUM_LABEL_VALUE_NO_CORES_AVAILABLE:
return "Brak dostêpnych rdzeni.";
case MENU_ENUM_LABEL_VALUE_NO_CORE:
return "Brak rdzenia";
case MENU_ENUM_LABEL_VALUE_DATABASE_MANAGER:
return "Mened¿er bazy danych";
case MENU_ENUM_LABEL_VALUE_CURSOR_MANAGER:
return "Mened¿er kursorów";
case MENU_ENUM_LABEL_VALUE_MAIN_MENU:
return "Menu g³ówne";
case MENU_ENUM_LABEL_VALUE_SETTINGS:
return "Ustawienia";
case MENU_ENUM_LABEL_VALUE_QUIT_RETROARCH:
return "Opu¶æ RetroArch";
case MENU_ENUM_LABEL_VALUE_HELP:
return "Pooc";
case MENU_ENUM_LABEL_VALUE_SAVE_NEW_CONFIG:
return "Zapisz now± konfiguracjê";
case MENU_ENUM_LABEL_VALUE_RESTART_CONTENT:
return "Restartuj";
case MENU_ENUM_LABEL_VALUE_CORE_UPDATER_LIST:
return "Aktualizator rdzeni";
case MENU_ENUM_LABEL_VALUE_CORE_UPDATER_BUILDBOT_URL:
return "URL rdzeni buildbota";
case MENU_ENUM_LABEL_VALUE_BUILDBOT_ASSETS_URL:
return "URL assetów buildbota";
case MENU_ENUM_LABEL_VALUE_NAVIGATION_WRAPAROUND:
return "Zawijanie nawigacji";
case MENU_ENUM_LABEL_VALUE_NAVIGATION_BROWSER_FILTER_SUPPORTED_EXTENSIONS_ENABLE:
return "Filtruj wed³ug wspieranych rozszerzeñ";
case MENU_ENUM_LABEL_VALUE_CORE_UPDATER_AUTO_EXTRACT_ARCHIVE:
return "Automatycznie wypakowuj pobierane archiwa";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFORMATION:
return "Informacje o systemie";
case MENU_ENUM_LABEL_VALUE_ONLINE_UPDATER:
return "Aktualizator sieciowy";
case MENU_ENUM_LABEL_VALUE_CORE_INFORMATION:
return "Informacje o rdzeniu";
case MENU_ENUM_LABEL_VALUE_DIRECTORY_NOT_FOUND:
return "Nie znaleziono katalogu.";
case MENU_ENUM_LABEL_VALUE_NO_ITEMS:
return "Brak elementów.";
case MENU_ENUM_LABEL_VALUE_CORE_LIST:
return "Wczytaj rdzeñ";
case MENU_ENUM_LABEL_VALUE_LOAD_CONTENT:
return "Wybierz plik";
case MENU_ENUM_LABEL_VALUE_CLOSE_CONTENT:
return "Zamknij";
case MENU_ENUM_LABEL_VALUE_MANAGEMENT:
return "Ustawienia bazy danych";
case MENU_ENUM_LABEL_VALUE_SAVE_STATE:
return "Zapisz stan";
case MENU_ENUM_LABEL_VALUE_LOAD_STATE:
return "Wczytaj stan";
case MENU_ENUM_LABEL_VALUE_RESUME_CONTENT:
return "Wznów";
case MENU_ENUM_LABEL_VALUE_INPUT_DRIVER:
return "Kontroler wej¶cia";
case MENU_ENUM_LABEL_VALUE_AUDIO_DRIVER:
return "Kontroler d¼wiêku";
case MENU_ENUM_LABEL_VALUE_JOYPAD_DRIVER:
return "Kontroler gamepadów";
case MENU_ENUM_LABEL_VALUE_AUDIO_RESAMPLER_DRIVER:
return "Kontroler resamplera d¼wiêku";
case MENU_ENUM_LABEL_VALUE_RECORD_DRIVER:
return "Kontroler nagrywania";
case MENU_ENUM_LABEL_VALUE_MENU_DRIVER:
return "Kontroler menu";
case MENU_ENUM_LABEL_VALUE_CAMERA_DRIVER:
return "Kontroler kamerki";
case MENU_ENUM_LABEL_VALUE_LOCATION_DRIVER:
return "Kontroler lokalizacji";
case MENU_ENUM_LABEL_VALUE_UNABLE_TO_READ_COMPRESSED_FILE:
return "Nie uda³o siê odczytaæ skompresowanego pliku.";
case MENU_ENUM_LABEL_VALUE_OVERLAY_SCALE:
return "Skala nak³adki";
case MENU_ENUM_LABEL_VALUE_OVERLAY_PRESET:
return "Preset nak³adki";
case MENU_ENUM_LABEL_VALUE_AUDIO_LATENCY:
return "Opó¼nienie d¼wiêku (ms)";
case MENU_ENUM_LABEL_VALUE_AUDIO_DEVICE:
return "Urz±dzenie audio";
case MENU_ENUM_LABEL_VALUE_KEYBOARD_OVERLAY_PRESET:
return "Preset klawiatury ekranowej";
case MENU_ENUM_LABEL_VALUE_OVERLAY_OPACITY:
return "Nieprze¼roczysto¶æ nak³adki";
case MENU_ENUM_LABEL_VALUE_MENU_WALLPAPER:
return "Tapeta menu";
case MENU_ENUM_LABEL_VALUE_DYNAMIC_WALLPAPER:
return "Dynamiczna tapeta";
case MENU_ENUM_LABEL_VALUE_CORE_INPUT_REMAPPING_OPTIONS:
return "Opcje remapowania kontrolera rdzenia"; /* this is quite bad */
case MENU_ENUM_LABEL_VALUE_SHADER_OPTIONS:
return "Opcje shadera";
case MENU_ENUM_LABEL_VALUE_VIDEO_SHADER_PARAMETERS:
return "Podgl±d parametrów shadera";
case MENU_ENUM_LABEL_VALUE_VIDEO_SHADER_PRESET_PARAMETERS:
return "Parametry shadera menu";
case MENU_ENUM_LABEL_VALUE_VIDEO_SHADER_PRESET_SAVE_AS:
return "Zapisz preset shadera jako";
case MENU_ENUM_LABEL_VALUE_NO_SHADER_PARAMETERS:
return "Brak parametrów shadera.";
case MENU_ENUM_LABEL_VALUE_VIDEO_SHADER_PRESET:
return "Wczytaj preset shaderów";
case MENU_ENUM_LABEL_VALUE_VIDEO_FILTER:
return "Filtr obrazu";
case MENU_ENUM_LABEL_VALUE_AUDIO_DSP_PLUGIN:
return "Wtyczki audio DSP";
case MENU_ENUM_LABEL_VALUE_STARTING_DOWNLOAD:
return "Rozpoczynanie pobierania: ";
case MENU_ENUM_LABEL_VALUE_SECONDS:
return "sekund";
case MENU_ENUM_LABEL_VALUE_ON: /* Don't change. Needed for XMB atm. (Would be: "W£¡CZONE") */
return "ON";
case MENU_ENUM_LABEL_VALUE_OFF: /* Don't change. Needed for XMB atm. (Would be: "WY£¡CZONE") */
return "OFF";
case MENU_ENUM_LABEL_VALUE_UPDATE_ASSETS:
return "Aktualizuj assety";
case MENU_ENUM_LABEL_VALUE_UPDATE_CHEATS:
return "Aktualizuj cheaty";
case MENU_ENUM_LABEL_VALUE_UPDATE_AUTOCONFIG_PROFILES:
return "Aktualizuj profile autokonfiguracji";
case MENU_ENUM_LABEL_VALUE_UPDATE_AUTOCONFIG_PROFILES_HID:
return "Aktualizuj profile autokonfiguracji (HID)";
case MENU_ENUM_LABEL_VALUE_UPDATE_DATABASES:
return "Aktualizuj bazy danych";
case MENU_ENUM_LABEL_VALUE_UPDATE_OVERLAYS:
return "Aktualizuj nak³adki graficzne";
case MENU_ENUM_LABEL_VALUE_UPDATE_CG_SHADERS:
return "Aktualizuj shadery Cg";
case MENU_ENUM_LABEL_VALUE_UPDATE_GLSL_SHADERS:
return "Aktualizuj shadery GLSL";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_CORE_NAME:
return "Nazwa rdzenia";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_CORE_LABEL:
return "Oznaczenie rdzenia";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_SYSTEM_NAME:
return "Nazwa systemu";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_SYSTEM_MANUFACTURER:
return "Producent systemu";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_CATEGORIES:
return "Kategorie";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_AUTHORS:
return "Autorzy";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_PERMISSIONS:
return "Zezwolenia";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_LICENSES:
return "Licencja(-e)";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_SUPPORTED_EXTENSIONS:
return "Wspierane rozszerzenia";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_FIRMWARE:
return "Firmware";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_CORE_NOTES:
return "Dodatkowe informacje o rdzeniu";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_BUILD_DATE:
return "Data kompilacji";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_GIT_VERSION:
return "Wersja git";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_CPU_FEATURES:
return "W³a¶ciwo¶ci CPU";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_FRONTEND_IDENTIFIER:
return "Identyfikator frontendu";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_FRONTEND_NAME:
return "Nazwa frontendu";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_FRONTEND_OS:
return "System operacyjny hosta:";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_RETRORATING_LEVEL:
return "Poziom RetroRating";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_POWER_SOURCE:
return "¬ród³o zasilania";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_POWER_SOURCE_NO_SOURCE:
return "Brak ¼ród³a";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_POWER_SOURCE_CHARGING:
return "£adowanie";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_POWER_SOURCE_CHARGED:
return "Na³adowano";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_POWER_SOURCE_DISCHARGING:
return "Na baterii";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_VIDEO_CONTEXT_DRIVER:
return "Kontroler wideo";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_DISPLAY_METRIC_MM_WIDTH:
return "Metryczna szeroko¶æ wy¶wietlacza (mm)";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_DISPLAY_METRIC_MM_HEIGHT:
return "Metryczna wysoko¶æ wy¶wietlacza (mm)";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_DISPLAY_METRIC_DPI:
return "Metryczne DPI wy¶wietlacza";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_LIBRETRODB_SUPPORT:
return "Wsparcie LibretroDB";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OVERLAY_SUPPORT:
return "Wsparcie nak³adek graficznych";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_COMMAND_IFACE_SUPPORT:
return "Wsparcie interfejsu wiersza poleceñ";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_NETWORK_COMMAND_IFACE_SUPPORT:
return "Wsparcie interfejsu komend sieciowych";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_COCOA_SUPPORT:
return "Wsparcie Cocoa";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_RPNG_SUPPORT:
return "Wsparcie PNG (RPNG)";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_SDL_SUPPORT:
return "Wsparcie SDL1.2";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_SDL2_SUPPORT:
return "Wsparcie SDL2";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OPENGL_SUPPORT:
return "Wsparcie OpenGL";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OPENGLES_SUPPORT:
return "Wsparcie OpenGL ES";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_THREADING_SUPPORT:
return "Wsparcie wielu w±tków";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_KMS_SUPPORT:
return "Wsparcie KMS/EGL";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_UDEV_SUPPORT:
return "Wsparcie Udev";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OPENVG_SUPPORT:
return "Wsparcie OpenVG";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_EGL_SUPPORT:
return "Wsparcie EGL";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_X11_SUPPORT:
return "Wsparcie X11";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_WAYLAND_SUPPORT:
return "Wsparcie Wayland";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_XVIDEO_SUPPORT:
return "Wsparcie XVideo";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_ALSA_SUPPORT:
return "Wsparcie ALSA";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OSS_SUPPORT:
return "Wsparcie OSS";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OPENAL_SUPPORT:
return "Wsparcie OpenAL";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OPENSL_SUPPORT:
return "Wsparcie OpenSL";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_RSOUND_SUPPORT:
return "Wsparcie RSound";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_ROARAUDIO_SUPPORT:
return "Wsparcie RoarAudio";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_JACK_SUPPORT:
return "Wsparcie JACK";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_PULSEAUDIO_SUPPORT:
return "Wsparcie PulseAudio";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_DSOUND_SUPPORT:
return "Wsparcie DirectSound";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_XAUDIO2_SUPPORT:
return "Wsparcie XAudio2";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_ZLIB_SUPPORT:
return "Wsparcie Zlib";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_7ZIP_SUPPORT:
return "Wsparcie 7zip";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_DYLIB_SUPPORT:
return "Wsparcie bibliotek dynamicznych";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_CG_SUPPORT:
return "Wsparcie Cg";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_GLSL_SUPPORT:
return "Wsparcie GLSL";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_HLSL_SUPPORT:
return "Wsparcie HLSL";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_LIBXML2_SUPPORT:
return "Wsparcie parsowania XML libxml2";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_SDL_IMAGE_SUPPORT:
return "Wsparcie SDL image";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_FBO_SUPPORT:
return "Wsparcie renderowania do tekstury w OpenGL/Direct3D (wielokrotne przebiegi shaderów)";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_FFMPEG_SUPPORT:
return "Wsparcie FFmpeg";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_CORETEXT_SUPPORT:
return "Wsparcie CoreText";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_FREETYPE_SUPPORT:
return "Wsparcie FreeType";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_NETPLAY_SUPPORT:
return "Wsparcie Netplay (peer-to-peer)";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_PYTHON_SUPPORT:
return "Wsparcie Pythona (skrypty w shaderach)";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_V4L2_SUPPORT:
return "Wsparcie Video4Linux2";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_LIBUSB_SUPPORT:
return "Wsparcie libusb";
case MENU_ENUM_LABEL_VALUE_YES:
return "Tak";
case MENU_ENUM_LABEL_VALUE_NO:
return "Nie";
case MENU_ENUM_LABEL_VALUE_BACK:
return "WSTECZ";
case MENU_ENUM_LABEL_VALUE_SCREEN_RESOLUTION:
return "Rozdzielczo¶æ ekranu";
case MENU_ENUM_LABEL_VALUE_DISABLED:
return "Wy³±czone";
case MENU_ENUM_LABEL_VALUE_PORT:
return "Port";
case MENU_ENUM_LABEL_VALUE_NONE:
return "¯aden";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_DEVELOPER:
return "Deweloper";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_PUBLISHER:
return "Wydawca";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_DESCRIPTION:
return "Opis";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_NAME:
return "Nazwa";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_ORIGIN:
return "Pochodzenie";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_FRANCHISE:
return "Franczyza";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_RELEASE_MONTH:
return "Miesi±c wydania";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_RELEASE_YEAR:
return "Rok wydania";
case MENU_ENUM_LABEL_VALUE_TRUE:
return "Prawda";
case MENU_ENUM_LABEL_VALUE_FALSE:
return "Fa³sz";
case MENU_ENUM_LABEL_VALUE_MISSING:
return "Brak";
case MENU_ENUM_LABEL_VALUE_PRESENT:
return "Obecny";
case MENU_ENUM_LABEL_VALUE_OPTIONAL:
return "Opcjonalny";
case MENU_ENUM_LABEL_VALUE_REQUIRED:
return "Wymagany";
case MENU_ENUM_LABEL_VALUE_STATUS:
return "Status";
case MENU_ENUM_LABEL_VALUE_AUDIO_SETTINGS:
return "Ustawienia d¼wiêku";
case MENU_ENUM_LABEL_VALUE_INPUT_SETTINGS:
return "Ustawienia wprowadzania";
case MENU_ENUM_LABEL_VALUE_ONSCREEN_DISPLAY_SETTINGS:
return "Ustawienia OSD";
case MENU_ENUM_LABEL_VALUE_OVERLAY_SETTINGS:
return "Ustawienia przycisków ekranowych";
case MENU_ENUM_LABEL_VALUE_MENU_SETTINGS:
return "Ustawienia menu";
case MENU_ENUM_LABEL_VALUE_MULTIMEDIA_SETTINGS:
return "Ustawienia multimediów";
case MENU_ENUM_LABEL_VALUE_UI_SETTINGS:
return "Ustawienia interfejsu u¿ytkownika";
case MENU_ENUM_LABEL_VALUE_MENU_FILE_BROWSER_SETTINGS:
return "Menu File Browser Settings";
case MENU_ENUM_LABEL_VALUE_CORE_UPDATER_SETTINGS:
return "Ustawienia aktualizatora";
case MENU_ENUM_LABEL_VALUE_NETWORK_SETTINGS:
return "Ustawienia sieci";
case MENU_ENUM_LABEL_VALUE_PLAYLIST_SETTINGS:
return "Ustawienia playlisty";
case MENU_ENUM_LABEL_VALUE_USER_SETTINGS:
return "Ustawienia u¿ytkownika";
case MENU_ENUM_LABEL_VALUE_DIRECTORY_SETTINGS:
return "Ustawienia katalogów";
case MENU_ENUM_LABEL_VALUE_RECORDING_SETTINGS:
return "Ustawienia nagrywania";
case MENU_ENUM_LABEL_VALUE_NO_INFORMATION_AVAILABLE:
return "Brak dostêpnych informacji.";
case MENU_ENUM_LABEL_VALUE_INPUT_USER_BINDS:
return "Wprowad¼ bindy dla u¿ytkownika %u";
case MENU_ENUM_LABEL_VALUE_LANG_ENGLISH:
return "angielski";
case MENU_ENUM_LABEL_VALUE_LANG_JAPANESE:
return "japoñski";
case MENU_ENUM_LABEL_VALUE_LANG_FRENCH:
return "francuski";
case MENU_ENUM_LABEL_VALUE_LANG_SPANISH:
return "hiszpañski";
case MENU_ENUM_LABEL_VALUE_LANG_GERMAN:
return "niemiecki";
case MENU_ENUM_LABEL_VALUE_LANG_ITALIAN:
return "w³oski";
case MENU_ENUM_LABEL_VALUE_LANG_DUTCH:
return "duñski";
case MENU_ENUM_LABEL_VALUE_LANG_PORTUGUESE:
return "portugalski";
case MENU_ENUM_LABEL_VALUE_LANG_RUSSIAN:
return "rosyjski";
case MENU_ENUM_LABEL_VALUE_LANG_KOREAN:
return "koreañski";
case MENU_ENUM_LABEL_VALUE_LANG_CHINESE_TRADITIONAL:
return "chiñski (Tradycyjny)";
case MENU_ENUM_LABEL_VALUE_LANG_CHINESE_SIMPLIFIED:
return "chiñ¶ki (Uproszczony)";
case MENU_ENUM_LABEL_VALUE_LANG_ESPERANTO:
return "esperanto";
case MENU_ENUM_LABEL_VALUE_LEFT_ANALOG:
return "Lewy analog";
case MENU_ENUM_LABEL_VALUE_RIGHT_ANALOG:
return "Prawy analog";
case MENU_ENUM_LABEL_VALUE_INPUT_HOTKEY_BINDS:
return "Input Hotkey Binds";
case MENU_ENUM_LABEL_VALUE_FRAME_THROTTLE_SETTINGS:
return "Frame Throttle Settings";
case MENU_ENUM_LABEL_VALUE_SEARCH:
return "Szukaj:";
case MENU_ENUM_LABEL_VALUE_USE_BUILTIN_IMAGE_VIEWER:
return "U¿yj wbudowanej przegl±darki obrazów";
default:
break;
}
return "null";
}
int menu_hash_get_help_pl(uint32_t hash, char *s, size_t len)
{
int ret = 0;

View File

@ -20,6 +20,7 @@
#include <compat/strl.h>
#include "../menu_hash.h"
#include "../../msg_hash.h"
#include "../../configuration.h"
/* IMPORTANT:
@ -31,831 +32,6 @@
/* DO NOT REMOVE THIS. If it causes build failure, it's because you saved the file as UTF-8. Read the above comment. */
extern const char force_iso_8859_1[sizeof("áÁâãçéêíÍóõú")==12+1 ? 1 : -1];
const char *menu_hash_to_str_pt_enum(enum menu_hash_enums msg)
{
switch (msg)
{
case MENU_ENUM_LABEL_VALUE_START_NET_RETROPAD:
return "Iniciar RetroPad Remoto";
case MENU_ENUM_LABEL_VALUE_SCAN_THIS_DIRECTORY:
return "<Escanear este Diretório>";
case MENU_ENUM_LABEL_VALUE_SCAN_FILE:
return "Escanear Arquivo";
case MENU_ENUM_LABEL_VALUE_SCAN_DIRECTORY:
return "Escanear Diretório";
case MENU_ENUM_LABEL_VALUE_START_CORE:
return "Iniciar Core";
case MENU_ENUM_LABEL_VALUE_INFORMATION_LIST:
return "Informação";
case MENU_ENUM_LABEL_VALUE_USE_BUILTIN_PLAYER:
return "Usar Player Interno"; /* TODO/FIXME */
case MENU_ENUM_LABEL_VALUE_CONTENT_SETTINGS:
return "Menu Rápido";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_CRC32:
return "CRC32";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_MD5:
return "MD5";
case MENU_ENUM_LABEL_VALUE_LOAD_CONTENT_LIST:
return "Carregar Conteúdo";
case MENU_ENUM_LABEL_VALUE_LOAD_ARCHIVE:
return "Carregar Arquivo";
case MENU_ENUM_LABEL_VALUE_OPEN_ARCHIVE:
return "Abrir Arquivo";
case MENU_ENUM_LABEL_VALUE_ASK_ARCHIVE:
return "Ask";
case MENU_ENUM_LABEL_VALUE_PRIVACY_SETTINGS:
return "Configurações de Privacidade";
case MENU_ENUM_LABEL_VALUE_HORIZONTAL_MENU:
return "Horizontal Menu"; /* FIXME - don't edit this yet. */
case MENU_ENUM_LABEL_VALUE_NO_SETTINGS_FOUND:
return "Nenhuma definição encontrada.";
case MENU_ENUM_LABEL_VALUE_NO_PERFORMANCE_COUNTERS:
return "Nenhum medidor de desempenho.";
case MENU_ENUM_LABEL_VALUE_DRIVER_SETTINGS:
return "Drivers";
case MENU_ENUM_LABEL_VALUE_CONFIGURATION_SETTINGS:
return "Configurações";
case MENU_ENUM_LABEL_VALUE_CORE_SETTINGS:
return "Core";
case MENU_ENUM_LABEL_VALUE_VIDEO_SETTINGS:
return "Vídeo";
case MENU_ENUM_LABEL_VALUE_LOGGING_SETTINGS:
return "Registro de Dados";
case MENU_ENUM_LABEL_VALUE_SAVING_SETTINGS:
return "Saves";
case MENU_ENUM_LABEL_VALUE_REWIND_SETTINGS:
return "Retrocesso";
case MENU_ENUM_LABEL_VALUE_SHADER:
return "Shader";
case MENU_ENUM_LABEL_VALUE_CHEAT:
return "Cheat";
case MENU_ENUM_LABEL_VALUE_USER:
return "Usuário";
case MENU_ENUM_LABEL_VALUE_SYSTEM_BGM_ENABLE:
return "Ativar Sistema BGM";
case MENU_ENUM_LABEL_VALUE_RETROPAD:
return "RetroPad";
case MENU_ENUM_LABEL_VALUE_RETROKEYBOARD:
return "RetroTeclado";
case MENU_ENUM_LABEL_VALUE_AUDIO_BLOCK_FRAMES:
return "Quadros de Blocos de Áudio";
case MENU_ENUM_LABEL_VALUE_INPUT_DESCRIPTOR_LABEL_SHOW:
return "Mostrar Rótulos de Entradas de Core";
case MENU_ENUM_LABEL_VALUE_INPUT_DESCRIPTOR_HIDE_UNBOUND:
return "Esconder Descritores de Entradas sem Uso";
case MENU_ENUM_LABEL_VALUE_VIDEO_FONT_ENABLE:
return "Mostrar Mensagem de Tela";
case MENU_ENUM_LABEL_VALUE_VIDEO_FONT_PATH:
return "Fonte da Mensagem de Tela";
case MENU_ENUM_LABEL_VALUE_VIDEO_FONT_SIZE:
return "Tamanho da Mensagem de Tela";
case MENU_ENUM_LABEL_VALUE_VIDEO_MESSAGE_POS_X:
return "Posição X da Mensagem de Tela";
case MENU_ENUM_LABEL_VALUE_VIDEO_MESSAGE_POS_Y:
return "Posição Y da Mensagem de Tela";
case MENU_ENUM_LABEL_VALUE_VIDEO_SOFT_FILTER:
return "Ativar Filtro de Suavização";
case MENU_ENUM_LABEL_VALUE_VIDEO_FILTER_FLICKER:
return "Filtro de Cintilação";
case MENU_ENUM_LABEL_VALUE_DIRECTORY_CONTENT:
return "<Diretório de Conteúdo>";
case MENU_ENUM_LABEL_VALUE_UNKNOWN:
return "Desconhecido";
case MENU_ENUM_LABEL_VALUE_DONT_CARE:
return "Tanto faz";
case MENU_ENUM_LABEL_VALUE_LINEAR:
return "Linear";
case MENU_ENUM_LABEL_VALUE_NEAREST:
return "Nearest";
case MENU_ENUM_LABEL_VALUE_DIRECTORY_DEFAULT:
return "<Padrão>";
case MENU_ENUM_LABEL_VALUE_DIRECTORY_NONE:
return "<Nenhum>";
case MENU_ENUM_LABEL_VALUE_NOT_AVAILABLE:
return "N/A";
case MENU_ENUM_LABEL_VALUE_INPUT_REMAPPING_DIRECTORY:
return "Remapeamentos de Controladores";
case MENU_ENUM_LABEL_VALUE_JOYPAD_AUTOCONFIG_DIR:
return "Autoconfigurações de Dispositivos de Entrada";
case MENU_ENUM_LABEL_VALUE_RECORDING_CONFIG_DIRECTORY:
return "Configurações de Gravações";
case MENU_ENUM_LABEL_VALUE_RECORDING_OUTPUT_DIRECTORY:
return "Gravações";
case MENU_ENUM_LABEL_VALUE_SCREENSHOT_DIRECTORY:
return "Capturas de Telas";
case MENU_ENUM_LABEL_VALUE_PLAYLIST_DIRECTORY:
return "Históricos";
case MENU_ENUM_LABEL_VALUE_SAVEFILE_DIRECTORY:
return "Saves";
case MENU_ENUM_LABEL_VALUE_SAVESTATE_DIRECTORY:
return "Savestates";
case MENU_ENUM_LABEL_VALUE_STDIN_CMD_ENABLE:
return "Comandos stdin";
case MENU_ENUM_LABEL_VALUE_VIDEO_DRIVER:
return "Driver de Vídeo";
case MENU_ENUM_LABEL_VALUE_RECORD_ENABLE:
return "Ativar Gravação";
case MENU_ENUM_LABEL_VALUE_VIDEO_GPU_RECORD:
return "Ativar Gravação por GPU";
case MENU_ENUM_LABEL_VALUE_RECORD_PATH: /* FIXME/UPDATE */
return "Caminho da Gravação";
case MENU_ENUM_LABEL_VALUE_RECORD_USE_OUTPUT_DIRECTORY:
return "Diretório de Saída";
case MENU_ENUM_LABEL_VALUE_RECORD_CONFIG:
return "Configurações de Gravação";
case MENU_ENUM_LABEL_VALUE_VIDEO_POST_FILTER_RECORD:
return "Ativar Filtro Pós-Gravação";
case MENU_ENUM_LABEL_VALUE_CORE_ASSETS_DIRECTORY:
return "Recursos (Assets) de Cores"; /* FIXME/UPDATE */
case MENU_ENUM_LABEL_VALUE_ASSETS_DIRECTORY:
return "Recursos (Assets)";
case MENU_ENUM_LABEL_VALUE_DYNAMIC_WALLPAPERS_DIRECTORY:
return "Papéis de Parede Dinâmicos";
case MENU_ENUM_LABEL_VALUE_RGUI_BROWSER_DIRECTORY:
return "Navegação";
case MENU_ENUM_LABEL_VALUE_RGUI_CONFIG_DIRECTORY:
return "Configurações";
case MENU_ENUM_LABEL_VALUE_LIBRETRO_INFO_PATH:
return "Informações de Cores";
case MENU_ENUM_LABEL_VALUE_LIBRETRO_DIR_PATH:
return "Cores";
case MENU_ENUM_LABEL_VALUE_CURSOR_DIRECTORY:
return "Cursores";
case MENU_ENUM_LABEL_VALUE_CONTENT_DATABASE_DIRECTORY:
return "Databases de Conteúdo";
case MENU_ENUM_LABEL_VALUE_SYSTEM_DIRECTORY:
return "System/BIOS";
case MENU_ENUM_LABEL_VALUE_CHEAT_DATABASE_PATH:
return "Cheats";
case MENU_ENUM_LABEL_VALUE_CACHE_DIRECTORY: /* UPDATE/FIXME */
return "Descompactação";
case MENU_ENUM_LABEL_VALUE_AUDIO_FILTER_DIR:
return "Filtros de Áudio";
case MENU_ENUM_LABEL_VALUE_VIDEO_SHADER_DIR:
return "Shaders";
case MENU_ENUM_LABEL_VALUE_VIDEO_FILTER_DIR:
return "Filtros de Vídeo";
case MENU_ENUM_LABEL_VALUE_OVERLAY_DIRECTORY:
return "Overlays";
case MENU_ENUM_LABEL_VALUE_OSK_OVERLAY_DIRECTORY:
return "Overlays de Teclado";
case MENU_ENUM_LABEL_VALUE_NETPLAY_CLIENT_SWAP_INPUT:
return "Trocar Entradas de Netplay";
case MENU_ENUM_LABEL_VALUE_NETPLAY_SPECTATOR_MODE_ENABLE:
return "Ativar Espectador de Netplay";
case MENU_ENUM_LABEL_VALUE_NETPLAY_IP_ADDRESS:
return "Endereço IP";
case MENU_ENUM_LABEL_VALUE_NETPLAY_TCP_UDP_PORT:
return "Portas TCP/UDP de Netplay";
case MENU_ENUM_LABEL_VALUE_NETPLAY_ENABLE:
return "Ativar Netplay";
case MENU_ENUM_LABEL_VALUE_NETPLAY_DELAY_FRAMES:
return "Quadros de Retardo de Netplay";
case MENU_ENUM_LABEL_VALUE_NETPLAY_MODE:
return "Ativar Cliente de Netplay";
case MENU_ENUM_LABEL_VALUE_RGUI_SHOW_START_SCREEN:
return "Mostrar Tela de Início";
case MENU_ENUM_LABEL_VALUE_TITLE_COLOR:
return "Cor do Menu Título";
case MENU_ENUM_LABEL_VALUE_ENTRY_HOVER_COLOR:
return "Cor de Realce do Menu Inicial";
case MENU_ENUM_LABEL_VALUE_TIMEDATE_ENABLE:
return "Mostrar Hora / Data";
case MENU_ENUM_LABEL_VALUE_THREADED_DATA_RUNLOOP_ENABLE:
return "Ativar Runloop de Threads de Dados";
case MENU_ENUM_LABEL_VALUE_ENTRY_NORMAL_COLOR:
return "Cor do Menu Inicial";
case MENU_ENUM_LABEL_VALUE_SHOW_ADVANCED_SETTINGS:
return "Mostrar Configurações Avançadas";
case MENU_ENUM_LABEL_VALUE_MOUSE_ENABLE:
return "Suporte a Mouse";
case MENU_ENUM_LABEL_VALUE_POINTER_ENABLE:
return "Suporte a Touch";
case MENU_ENUM_LABEL_VALUE_CORE_ENABLE:
return "Mostrar Nome dos Cores";
case MENU_ENUM_LABEL_VALUE_DPI_OVERRIDE_ENABLE:
return "Ativar Sobreposição de DPI";
case MENU_ENUM_LABEL_VALUE_DPI_OVERRIDE_VALUE:
return "Sobreposição de DPI";
case MENU_ENUM_LABEL_VALUE_SUSPEND_SCREENSAVER_ENABLE:
return "Suspender Proteção de Tela";
case MENU_ENUM_LABEL_VALUE_VIDEO_DISABLE_COMPOSITION:
return "Desativar Desktop Composition";
case MENU_ENUM_LABEL_VALUE_PAUSE_NONACTIVE:
return "Não Rodar em Background";
case MENU_ENUM_LABEL_VALUE_UI_COMPANION_START_ON_BOOT:
return "Ativar UI Companion ao Iniciar";
case MENU_ENUM_LABEL_VALUE_UI_MENUBAR_ENABLE:
return "Barra de Menu (Dica)";
case MENU_ENUM_LABEL_VALUE_ARCHIVE_MODE:
return "Ação para Arquivos Compactados";
case MENU_ENUM_LABEL_VALUE_NETWORK_CMD_ENABLE:
return "Comandos de Rede";
case MENU_ENUM_LABEL_VALUE_NETWORK_CMD_PORT:
return "Porta para Comandos de Rede";
case MENU_ENUM_LABEL_VALUE_HISTORY_LIST_ENABLE:
return "Ativar Lista de Histórico";
case MENU_ENUM_LABEL_VALUE_CONTENT_HISTORY_SIZE:
return "Tamanho da Lista de Histórico";
case MENU_ENUM_LABEL_VALUE_VIDEO_REFRESH_RATE_AUTO:
return "Taxa de Atualização de Quadros Estimada";
case MENU_ENUM_LABEL_VALUE_DUMMY_ON_CORE_SHUTDOWN:
return "Desligar Core Dummy On";
case MENU_ENUM_LABEL_VALUE_CORE_SET_SUPPORTS_NO_CONTENT_ENABLE: /* TODO/FIXME */
return "Não Iniciar Cores Automaticamente";
case MENU_ENUM_LABEL_VALUE_FRAME_THROTTLE_ENABLE:
return "Limitar Velocidade Máxima de Execução";
case MENU_ENUM_LABEL_VALUE_FASTFORWARD_RATIO:
return "Velocidade Máxima de Execução";
case MENU_ENUM_LABEL_VALUE_AUTO_REMAPS_ENABLE:
return "Carregar Automaticamente Arquivos Remapeados";
case MENU_ENUM_LABEL_VALUE_SLOWMOTION_RATIO:
return "Taxa de Câmera Lenta";
case MENU_ENUM_LABEL_VALUE_CORE_SPECIFIC_CONFIG:
return "Configuração por Core";
case MENU_ENUM_LABEL_VALUE_AUTO_OVERRIDES_ENABLE:
return "Carregar Automaticamente Arquivos de Sobreposição";
case MENU_ENUM_LABEL_VALUE_CONFIG_SAVE_ON_EXIT:
return "Salvar Configuração ao Sair";
case MENU_ENUM_LABEL_VALUE_VIDEO_SMOOTH:
return "Filtragem Bilinear por Hardware";
case MENU_ENUM_LABEL_VALUE_VIDEO_GAMMA:
return "Gamma de Vídeo";
case MENU_ENUM_LABEL_VALUE_VIDEO_ALLOW_ROTATE:
return "Permitir Rotação";
case MENU_ENUM_LABEL_VALUE_VIDEO_HARD_SYNC:
return "Sincronizar GPU com CPU";
case MENU_ENUM_LABEL_VALUE_VIDEO_SWAP_INTERVAL:
return "Intervalo de Permuta do Sincronismo Vertical";
case MENU_ENUM_LABEL_VALUE_VIDEO_VSYNC:
return "Sincronismo Vertical";
case MENU_ENUM_LABEL_VALUE_VIDEO_THREADED:
return "Vídeo em Threads";
case MENU_ENUM_LABEL_VALUE_VIDEO_ROTATION:
return "Rotação";
case MENU_ENUM_LABEL_VALUE_VIDEO_GPU_SCREENSHOT:
return "Ativar Captura de Tela via GPU";
case MENU_ENUM_LABEL_VALUE_VIDEO_CROP_OVERSCAN:
return "Descartar Overscan (Recarregue)";
case MENU_ENUM_LABEL_VALUE_VIDEO_ASPECT_RATIO_INDEX:
return "Índice de Relações de Aspecto";
case MENU_ENUM_LABEL_VALUE_VIDEO_ASPECT_RATIO_AUTO:
return "Relação de Aspecto Automática";
case MENU_ENUM_LABEL_VALUE_VIDEO_FORCE_ASPECT:
return "Forçar Relação de Aspecto";
case MENU_ENUM_LABEL_VALUE_VIDEO_REFRESH_RATE:
return "Taxa de Atualização de Tela";
case MENU_ENUM_LABEL_VALUE_VIDEO_FORCE_SRGB_DISABLE:
return "Forcar Desativação de sRGB FBO";
case MENU_ENUM_LABEL_VALUE_VIDEO_WINDOWED_FULLSCREEN:
return "Modo Tela Cheia em Janela";
case MENU_ENUM_LABEL_VALUE_PAL60_ENABLE:
return "Usar Modo PAL60";
case MENU_ENUM_LABEL_VALUE_VIDEO_VFILTER:
return "Eliminar Cintilação";
case MENU_ENUM_LABEL_VALUE_VIDEO_VI_WIDTH:
return "Definir Largura de Tela VI";
case MENU_ENUM_LABEL_VALUE_VIDEO_BLACK_FRAME_INSERTION:
return "Inserção de Quadro Negro";
case MENU_ENUM_LABEL_VALUE_VIDEO_HARD_SYNC_FRAMES:
return "Quadros de Sincronização entre GPU e CPU";
case MENU_ENUM_LABEL_VALUE_SORT_SAVEFILES_ENABLE:
return "Ordenar Saves em Pastas";
case MENU_ENUM_LABEL_VALUE_SORT_SAVESTATES_ENABLE:
return "Ordenar Savestates em Pastas";
case MENU_ENUM_LABEL_VALUE_VIDEO_FULLSCREEN:
return "Usar Modo Tela Cheia";
case MENU_ENUM_LABEL_VALUE_VIDEO_SCALE:
return "Variar Escala em Janela";
case MENU_ENUM_LABEL_VALUE_VIDEO_SCALE_INTEGER:
return "Escala em Degraus Inteiros";
case MENU_ENUM_LABEL_VALUE_PERFCNT_ENABLE:
return "Contadores de Desempenho";
case MENU_ENUM_LABEL_VALUE_LIBRETRO_LOG_LEVEL:
return "Nível de Registro de Core";
case MENU_ENUM_LABEL_VALUE_LOG_VERBOSITY:
return "Detalhamento de Registro";
case MENU_ENUM_LABEL_VALUE_SAVESTATE_AUTO_LOAD:
return "Carregar Savestate Automaticamente";
case MENU_ENUM_LABEL_VALUE_SAVESTATE_AUTO_INDEX:
return "Índice Automático de Savestates";
case MENU_ENUM_LABEL_VALUE_SAVESTATE_AUTO_SAVE:
return "Savestate Automático";
case MENU_ENUM_LABEL_VALUE_AUTOSAVE_INTERVAL:
return "Intervalo de Gravação Automática de SaveRAM";
case MENU_ENUM_LABEL_VALUE_BLOCK_SRAM_OVERWRITE:
return "Não Sobrescrever SaveRAM ao Carregar Savestate";
case MENU_ENUM_LABEL_VALUE_VIDEO_SHARED_CONTEXT:
return "Ativar Contexto Compartilhado de Hardware";
case MENU_ENUM_LABEL_VALUE_RESTART_RETROARCH:
return "Reiniciar RetroArch";
case MENU_ENUM_LABEL_VALUE_NETPLAY_NICKNAME:
return "Nome de Usuário";
case MENU_ENUM_LABEL_VALUE_USER_LANGUAGE:
return "Idioma";
case MENU_ENUM_LABEL_VALUE_CAMERA_ALLOW:
return "Autorizar Câmera";
case MENU_ENUM_LABEL_VALUE_LOCATION_ALLOW:
return "Autorizar Localização";
case MENU_ENUM_LABEL_VALUE_PAUSE_LIBRETRO:
return "Pausar Quando o Menu for Ativado";
case MENU_ENUM_LABEL_VALUE_INPUT_OSK_OVERLAY_ENABLE:
return "Mostrar Overlay de Teclado";
case MENU_ENUM_LABEL_VALUE_INPUT_OVERLAY_ENABLE:
return "Mostrar Overlay";
case MENU_ENUM_LABEL_VALUE_VIDEO_MONITOR_INDEX:
return "Índice de Monitores";
case MENU_ENUM_LABEL_VALUE_VIDEO_FRAME_DELAY:
return "Retardo de Quadro";
case MENU_ENUM_LABEL_VALUE_INPUT_DUTY_CYCLE:
return "Ciclo de Trabalho";
case MENU_ENUM_LABEL_VALUE_INPUT_TURBO_PERIOD:
return "Período de Turbo";
case MENU_ENUM_LABEL_VALUE_INPUT_AXIS_THRESHOLD:
return "Limiar de Eixo do Controlador";
case MENU_ENUM_LABEL_VALUE_INPUT_REMAP_BINDS_ENABLE:
return "Ativar Remapeamentos";
case MENU_ENUM_LABEL_VALUE_INPUT_MAX_USERS:
return "Usuários Máximos";
case MENU_ENUM_LABEL_VALUE_INPUT_AUTODETECT_ENABLE:
return "Ativar Autoconfiguração";
case MENU_ENUM_LABEL_VALUE_AUDIO_OUTPUT_RATE:
return "Taxa de Amostragem de Áudio (KHz)";
case MENU_ENUM_LABEL_VALUE_AUDIO_MAX_TIMING_SKEW:
return "Distorção Máxima de Sincronização de Áudio";
case MENU_ENUM_LABEL_VALUE_CHEAT_NUM_PASSES:
return "Códigos de Cheat";
case MENU_ENUM_LABEL_VALUE_REMAP_FILE_SAVE_CORE:
return "Salvar Remapeamento de Core";
case MENU_ENUM_LABEL_VALUE_REMAP_FILE_SAVE_GAME:
return "Salvar Remapeamento de Jogo";
case MENU_ENUM_LABEL_VALUE_CHEAT_APPLY_CHANGES:
return "Aplicar Alterações de Cheats";
case MENU_ENUM_LABEL_VALUE_SHADER_APPLY_CHANGES:
return "Aplicar Alterações de Shaders";
case MENU_ENUM_LABEL_VALUE_REWIND_ENABLE:
return "Ativar Retrocesso";
case MENU_ENUM_LABEL_VALUE_CONTENT_COLLECTION_LIST:
return "Selecionar da Coleção";
case MENU_ENUM_LABEL_VALUE_DETECT_CORE_LIST:
return "Selecionar Arquivo e Detectar Core";
case MENU_ENUM_LABEL_VALUE_LOAD_CONTENT_HISTORY:
return "Selecionar do Histórico";
case MENU_ENUM_LABEL_VALUE_AUDIO_ENABLE:
return "Ativar Áudio";
case MENU_ENUM_LABEL_VALUE_FPS_SHOW:
return "Mostrar Taxa de Quadros";
case MENU_ENUM_LABEL_VALUE_AUDIO_MUTE:
return "Silenciar Áudio";
case MENU_ENUM_LABEL_VALUE_AUDIO_VOLUME:
return "Volume de Áudio (dB)";
case MENU_ENUM_LABEL_VALUE_AUDIO_SYNC:
return "Ativar Sincronismo de Áudio";
case MENU_ENUM_LABEL_VALUE_AUDIO_RATE_CONTROL_DELTA:
return "Variação Máxima de Taxa de Áudio";
case MENU_ENUM_LABEL_VALUE_VIDEO_SHADER_NUM_PASSES:
return "Número de Shaders";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_SHA1:
return "SHA1";
case MENU_ENUM_LABEL_VALUE_CONFIGURATIONS:
return "Carregar Configuração";
case MENU_ENUM_LABEL_VALUE_REWIND_GRANULARITY:
return "Granularidade do Retrocesso";
case MENU_ENUM_LABEL_VALUE_REMAP_FILE_LOAD:
return "Carregar Remapeamento";
case MENU_ENUM_LABEL_VALUE_CUSTOM_RATIO:
return "Relação de Aspecto Personalizada";
case MENU_ENUM_LABEL_VALUE_USE_THIS_DIRECTORY:
return "<Usar este diretório>";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_START_CONTENT:
return "Iniciar Conteúdo";
case MENU_ENUM_LABEL_VALUE_DISK_OPTIONS: /* UPDATE/FIXME */
return "Opções de Disco do Core";
case MENU_ENUM_LABEL_VALUE_CORE_OPTIONS:
return "Opções";
case MENU_ENUM_LABEL_VALUE_CORE_CHEAT_OPTIONS:
return "Cheats";
case MENU_ENUM_LABEL_VALUE_CHEAT_FILE_LOAD:
return "Carregar Cheat";
case MENU_ENUM_LABEL_VALUE_CHEAT_FILE_SAVE_AS:
return "Salvar Cheat Como";
case MENU_ENUM_LABEL_VALUE_CORE_COUNTERS:
return "Contadores de Core";
case MENU_ENUM_LABEL_VALUE_TAKE_SCREENSHOT:
return "Capturar Tela";
case MENU_ENUM_LABEL_VALUE_RESUME:
return "Retomar";
case MENU_ENUM_LABEL_VALUE_DISK_INDEX:
return "Índice de Discos";
case MENU_ENUM_LABEL_VALUE_FRONTEND_COUNTERS:
return "Contadores do Frontend";
case MENU_ENUM_LABEL_VALUE_DISK_IMAGE_APPEND:
return "Anexar Imagem de Disco";
case MENU_ENUM_LABEL_VALUE_DISK_CYCLE_TRAY_STATUS:
return "Estado do Drive de Disco";
case MENU_ENUM_LABEL_VALUE_NO_PLAYLIST_ENTRIES_AVAILABLE:
return "Histórico vazio.";
case MENU_ENUM_LABEL_VALUE_NO_CORE_INFORMATION_AVAILABLE:
return "Nenhuma informação de core disponível.";
case MENU_ENUM_LABEL_VALUE_NO_CORE_OPTIONS_AVAILABLE:
return "Nenhuma opção de core disponível.";
case MENU_ENUM_LABEL_VALUE_NO_CORES_AVAILABLE:
return "Nenhum core disponível.";
case MENU_ENUM_LABEL_VALUE_NO_CORE:
return "Nenhum Core";
case MENU_ENUM_LABEL_VALUE_DATABASE_MANAGER:
return "Gerenciador de Databases";
case MENU_ENUM_LABEL_VALUE_CURSOR_MANAGER:
return "Gerenciador de Cursores";
case MENU_ENUM_LABEL_VALUE_MAIN_MENU: /* TODO/FIXME - translate */
return "Main Menu";
case MENU_ENUM_LABEL_VALUE_SETTINGS:
return "Definições";
case MENU_ENUM_LABEL_VALUE_QUIT_RETROARCH:
return "Sair do RetroArch";
case MENU_ENUM_LABEL_VALUE_SHUTDOWN:
return "Desligar";
case MENU_ENUM_LABEL_VALUE_REBOOT:
return "Reiniciar";
case MENU_ENUM_LABEL_VALUE_HELP:
return "Ajuda";
case MENU_ENUM_LABEL_VALUE_SAVE_NEW_CONFIG:
return "Salvar Nova Configuração";
case MENU_ENUM_LABEL_VALUE_RESTART_CONTENT:
return "Reiniciar";
case MENU_ENUM_LABEL_VALUE_CORE_UPDATER_LIST:
return "Atualização de Cores";
case MENU_ENUM_LABEL_VALUE_CORE_UPDATER_BUILDBOT_URL:
return "URL Buildbot de Cores";
case MENU_ENUM_LABEL_VALUE_BUILDBOT_ASSETS_URL:
return "URL Buildbot de Recursos (Assets)";
case MENU_ENUM_LABEL_VALUE_NAVIGATION_WRAPAROUND:
return "Navegação Circular";
case MENU_ENUM_LABEL_VALUE_NAVIGATION_BROWSER_FILTER_SUPPORTED_EXTENSIONS_ENABLE:
return "Filtrar por Extensões Suportadas";
case MENU_ENUM_LABEL_VALUE_CORE_UPDATER_AUTO_EXTRACT_ARCHIVE:
return "Autoextrair Arquivos Baixados";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFORMATION:
return "Informação de Sistema";
case MENU_ENUM_LABEL_VALUE_ONLINE_UPDATER:
return "Atualização Online";
case MENU_ENUM_LABEL_VALUE_CORE_INFORMATION:
return "Informação de Core";
case MENU_ENUM_LABEL_VALUE_DIRECTORY_NOT_FOUND:
return "Diretório não encontrado.";
case MENU_ENUM_LABEL_VALUE_NO_ITEMS:
return "Nenhum item.";
case MENU_ENUM_LABEL_VALUE_CORE_LIST:
return "Carregar Core";
case MENU_ENUM_LABEL_VALUE_LOAD_CONTENT:
return "Selecionar Arquivo";
case MENU_ENUM_LABEL_VALUE_CLOSE_CONTENT:
return "Fechar";
case MENU_ENUM_LABEL_VALUE_MANAGEMENT:
return "Databases";
case MENU_ENUM_LABEL_VALUE_SAVE_STATE:
return "Salvar Savestate";
case MENU_ENUM_LABEL_VALUE_LOAD_STATE:
return "Carregar Savestate";
case MENU_ENUM_LABEL_VALUE_RESUME_CONTENT:
return "Retomar";
case MENU_ENUM_LABEL_VALUE_INPUT_DRIVER:
return "Driver de Controlador";
case MENU_ENUM_LABEL_VALUE_AUDIO_DRIVER:
return "Driver de Áudio";
case MENU_ENUM_LABEL_VALUE_JOYPAD_DRIVER:
return "Driver de Joypad";
case MENU_ENUM_LABEL_VALUE_AUDIO_RESAMPLER_DRIVER:
return "Driver do Amostrador de Áudio";
case MENU_ENUM_LABEL_VALUE_RECORD_DRIVER:
return "Driver de Gravação";
case MENU_ENUM_LABEL_VALUE_MENU_DRIVER:
return "Driver de Menu";
case MENU_ENUM_LABEL_VALUE_CAMERA_DRIVER:
return "Driver de Câmera";
case MENU_ENUM_LABEL_VALUE_LOCATION_DRIVER:
return "Driver de Localização";
case MENU_ENUM_LABEL_VALUE_UNABLE_TO_READ_COMPRESSED_FILE:
return "Incapaz de ler arquivo compactado.";
case MENU_ENUM_LABEL_VALUE_OVERLAY_SCALE:
return "Interpolação de Overlay";
case MENU_ENUM_LABEL_VALUE_OVERLAY_PRESET:
return "Predefinições de Overlay";
case MENU_ENUM_LABEL_VALUE_AUDIO_LATENCY:
return "Latência de Áudio (ms)";
case MENU_ENUM_LABEL_VALUE_AUDIO_DEVICE:
return "Dispositivo de Áudio";
case MENU_ENUM_LABEL_VALUE_KEYBOARD_OVERLAY_PRESET:
return "Predefinições de Overlay de Teclado";
case MENU_ENUM_LABEL_VALUE_OVERLAY_OPACITY:
return "Opacidade de Overlay";
case MENU_ENUM_LABEL_VALUE_MENU_WALLPAPER:
return "Papel de Parede do Menu";
case MENU_ENUM_LABEL_VALUE_DYNAMIC_WALLPAPER:
return "Papel de Parede Dinâmico";
case MENU_ENUM_LABEL_VALUE_CORE_INPUT_REMAPPING_OPTIONS: /* UPDATE/FIXME */
return "Opções de Remapeamento de Controlador de Core";
case MENU_ENUM_LABEL_VALUE_SHADER_OPTIONS:
return "Shaders";
case MENU_ENUM_LABEL_VALUE_VIDEO_SHADER_PARAMETERS:
return "Parâmetros de Shader em Uso";
case MENU_ENUM_LABEL_VALUE_VIDEO_SHADER_PRESET_PARAMETERS:
return "Menu de Parâmetros de Shader";
case MENU_ENUM_LABEL_VALUE_VIDEO_SHADER_PRESET_SAVE_AS:
return "Salvar Predefinições de Shader Como";
case MENU_ENUM_LABEL_VALUE_NO_SHADER_PARAMETERS:
return "Nenhum parâmetro de shader disponível.";
case MENU_ENUM_LABEL_VALUE_VIDEO_SHADER_PRESET:
return "Carregar Predefinições de Shader";
case MENU_ENUM_LABEL_VALUE_VIDEO_FILTER:
return "Filtro de Vídeo";
case MENU_ENUM_LABEL_VALUE_AUDIO_DSP_PLUGIN:
return "Plugin de DSP de Áudio";
case MENU_ENUM_LABEL_VALUE_STARTING_DOWNLOAD:
return "Iniciando download: ";
case MENU_ENUM_LABEL_VALUE_SECONDS:
return "segundos";
case MENU_ENUM_LABEL_VALUE_OFF:
return "OFF";
case MENU_ENUM_LABEL_VALUE_ON:
return "ON";
case MENU_ENUM_LABEL_VALUE_UPDATE_ASSETS:
return "Atualizar Recursos (Assets)";
case MENU_ENUM_LABEL_VALUE_UPDATE_CHEATS:
return "Atualizar Cheats";
case MENU_ENUM_LABEL_VALUE_UPDATE_AUTOCONFIG_PROFILES:
return "Atualizar Perfis de Autoconfiguração";
case MENU_ENUM_LABEL_VALUE_UPDATE_DATABASES:
return "Atualizar Databases";
case MENU_ENUM_LABEL_VALUE_UPDATE_OVERLAYS:
return "Atualizar Overlays";
case MENU_ENUM_LABEL_VALUE_UPDATE_CG_SHADERS:
return "Atualizar Shaders Cg";
case MENU_ENUM_LABEL_VALUE_UPDATE_GLSL_SHADERS:
return "Atualizar Shaders GLSL";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_CORE_NAME:
return "Nome do core";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_CORE_LABEL:
return "Rótulo do core";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_SYSTEM_NAME:
return "Nome do sistema";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_SYSTEM_MANUFACTURER:
return "Fabricante do sistema";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_CATEGORIES:
return "Categorias";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_AUTHORS:
return "Autores";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_PERMISSIONS:
return "Permissões";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_LICENSES:
return "Licença(s)";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_SUPPORTED_EXTENSIONS:
return "Extensões suportadas";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_FIRMWARE:
return "Firmware";
case MENU_ENUM_LABEL_VALUE_CORE_INFO_CORE_NOTES:
return "Notas do core";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_BUILD_DATE:
return "Data do build";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_GIT_VERSION:
return "Versão do git";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_CPU_FEATURES:
return "Atributos da CPU";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_FRONTEND_IDENTIFIER:
return "Indentificador do frontend";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_FRONTEND_NAME:
return "Nome do frontend";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_FRONTEND_OS:
return "OS do frontend";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_RETRORATING_LEVEL:
return "Nível de RetroRating";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_POWER_SOURCE:
return "Fonte de energia";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_POWER_SOURCE_NO_SOURCE:
return "Nenhuma fonte";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_POWER_SOURCE_CHARGING:
return "Carregando";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_POWER_SOURCE_CHARGED:
return "Carregado";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_POWER_SOURCE_DISCHARGING:
return "Descarregando";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_VIDEO_CONTEXT_DRIVER:
return "Driver de contexto de vídeo";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_DISPLAY_METRIC_MM_WIDTH:
return "Mostrar largura (mm)";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_DISPLAY_METRIC_MM_HEIGHT:
return "Mostrar altura (mm)";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_DISPLAY_METRIC_DPI:
return "Mostrar DPI";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_LIBRETRODB_SUPPORT:
return "Suporte a LibretroDB";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OVERLAY_SUPPORT:
return "Suporte a Overlay";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_COMMAND_IFACE_SUPPORT:
return "Suporte a interface de comandos";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_NETWORK_COMMAND_IFACE_SUPPORT:
return "Suporte a interface de comandos de rede";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_COCOA_SUPPORT:
return "Suporte a Cocoa";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_RPNG_SUPPORT:
return "Suporte a PNG (RPNG)";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_SDL_SUPPORT:
return "Suporte a SDL1.2";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_SDL2_SUPPORT:
return "Suporte a SDL2";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OPENGL_SUPPORT:
return "Suporte a OpenGL";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OPENGLES_SUPPORT:
return "Suporte a OpenGL ES";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_THREADING_SUPPORT:
return "Suporte a Threading";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_KMS_SUPPORT:
return "Suporte a KMS/EGL";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_UDEV_SUPPORT:
return "Suporte a Udev";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OPENVG_SUPPORT:
return "Suporte a OpenVG";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_EGL_SUPPORT:
return "Suporte a EGL";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_X11_SUPPORT:
return "Suporte a X11";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_WAYLAND_SUPPORT:
return "Suporte a Wayland";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_XVIDEO_SUPPORT:
return "Suporte a XVideo";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_ALSA_SUPPORT:
return "Suporte a ALSA";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OSS_SUPPORT:
return "Suporte a OSS";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OPENAL_SUPPORT:
return "Suporte a OpenAL";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OPENSL_SUPPORT:
return "Suporte a OpenSL";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_RSOUND_SUPPORT:
return "Suporte a RSound";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_ROARAUDIO_SUPPORT:
return "Suporte a RoarAudio";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_JACK_SUPPORT:
return "Suporte a JACK";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_PULSEAUDIO_SUPPORT:
return "Suporte a PulseAudio";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_DSOUND_SUPPORT:
return "Suporte a DirectSound";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_XAUDIO2_SUPPORT:
return "Suporte a XAudio2";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_ZLIB_SUPPORT:
return "Suporte a Zlib";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_7ZIP_SUPPORT:
return "Suporte a 7zip";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_DYLIB_SUPPORT:
return "Suporte a bibliotecas dinâmicas";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_CG_SUPPORT:
return "Suporte a Cg";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_GLSL_SUPPORT:
return "Suporte a GLSL";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_HLSL_SUPPORT:
return "Suporte a HLSL";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_LIBXML2_SUPPORT:
return "Suporte a análise XML libxml2";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_SDL_IMAGE_SUPPORT:
return "Suporte a imagem SDL";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_FBO_SUPPORT:
return "Suporte a OpenGL/Direct3D render-to-texture (multi-pass shaders)";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_FFMPEG_SUPPORT:
return "Suporte a FFmpeg";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_CORETEXT_SUPPORT:
return "Suporte a CoreText";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_FREETYPE_SUPPORT:
return "Suporte a FreeType";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_NETPLAY_SUPPORT:
return "Suporte a Netplay (peer-to-peer)";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_PYTHON_SUPPORT:
return "Suporte a Python (script em shaders)";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_V4L2_SUPPORT:
return "Suporte a Video4Linux2";
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_LIBUSB_SUPPORT:
return "Suporte a Libusb";
case MENU_ENUM_LABEL_VALUE_YES:
return "Sim";
case MENU_ENUM_LABEL_VALUE_NO:
return "Não";
case MENU_ENUM_LABEL_VALUE_BACK:
return "VOLTAR";
case MENU_ENUM_LABEL_VALUE_SCREEN_RESOLUTION:
return "Resolução de Tela";
case MENU_ENUM_LABEL_VALUE_DISABLED:
return "Desativado";
case MENU_ENUM_LABEL_VALUE_PORT:
return "Porta";
case MENU_ENUM_LABEL_VALUE_NONE:
return "Nenhum";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_DEVELOPER:
return "Desenvolvedor";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_PUBLISHER:
return "Editora";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_DESCRIPTION:
return "Descrição";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_NAME:
return "Nome";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_ORIGIN:
return "Origem";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_FRANCHISE:
return "Franquia";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_RELEASE_MONTH:
return "Mês de Lançamento";
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_RELEASE_YEAR:
return "Ano de Lançamento";
case MENU_ENUM_LABEL_VALUE_TRUE:
return "Verdadeiro";
case MENU_ENUM_LABEL_VALUE_FALSE:
return "Falso";
case MENU_ENUM_LABEL_VALUE_MISSING:
return "Faltando";
case MENU_ENUM_LABEL_VALUE_PRESENT:
return "Presente";
case MENU_ENUM_LABEL_VALUE_OPTIONAL:
return "Opcional";
case MENU_ENUM_LABEL_VALUE_REQUIRED:
return "Obrigatório";
case MENU_ENUM_LABEL_VALUE_STATUS:
return "Status";
case MENU_ENUM_LABEL_VALUE_AUDIO_SETTINGS:
return "Áudio";
case MENU_ENUM_LABEL_VALUE_INPUT_SETTINGS:
return "Entradas";
case MENU_ENUM_LABEL_VALUE_ONSCREEN_DISPLAY_SETTINGS:
return "Informações de Tela";
case MENU_ENUM_LABEL_VALUE_OVERLAY_SETTINGS:
return "Overlay em Tela";
case MENU_ENUM_LABEL_VALUE_MENU_SETTINGS:
return "Menu";
case MENU_ENUM_LABEL_VALUE_MULTIMEDIA_SETTINGS:
return "Reprodução de Mídia"; /* UPDATE/FIXME */
case MENU_ENUM_LABEL_VALUE_UI_SETTINGS:
return "Interface de Usuário";
case MENU_ENUM_LABEL_VALUE_MENU_FILE_BROWSER_SETTINGS:
return "Menu de Navegação";
case MENU_ENUM_LABEL_VALUE_CORE_UPDATER_SETTINGS:
return "Atualização de Core"; /* UPDATE/FIXME */
case MENU_ENUM_LABEL_VALUE_NETWORK_SETTINGS:
return "Rede";
case MENU_ENUM_LABEL_VALUE_PLAYLIST_SETTINGS:
return "Histórico";
case MENU_ENUM_LABEL_VALUE_USER_SETTINGS:
return "Usuário";
case MENU_ENUM_LABEL_VALUE_DIRECTORY_SETTINGS:
return "Diretórios";
case MENU_ENUM_LABEL_VALUE_RECORDING_SETTINGS:
return "Gravação";
case MENU_ENUM_LABEL_VALUE_NO_INFORMATION_AVAILABLE:
return "Nenhuma informação disponível.";
case MENU_ENUM_LABEL_VALUE_INPUT_USER_BINDS:
return "Usuário %u";
case MENU_ENUM_LABEL_VALUE_LANG_ENGLISH:
return "Inglês";
case MENU_ENUM_LABEL_VALUE_LANG_JAPANESE:
return "Japonês";
case MENU_ENUM_LABEL_VALUE_LANG_FRENCH:
return "Francês";
case MENU_ENUM_LABEL_VALUE_LANG_SPANISH:
return "Espanhol";
case MENU_ENUM_LABEL_VALUE_LANG_GERMAN:
return "Alemão";
case MENU_ENUM_LABEL_VALUE_LANG_ITALIAN:
return "Italiano";
case MENU_ENUM_LABEL_VALUE_LANG_DUTCH:
return "Holandês";
case MENU_ENUM_LABEL_VALUE_LANG_PORTUGUESE:
return "Português";
case MENU_ENUM_LABEL_VALUE_LANG_RUSSIAN:
return "Russo";
case MENU_ENUM_LABEL_VALUE_LANG_KOREAN:
return "Coreano";
case MENU_ENUM_LABEL_VALUE_LANG_CHINESE_TRADITIONAL:
return "Chinês (Tradicional)";
case MENU_ENUM_LABEL_VALUE_LANG_CHINESE_SIMPLIFIED:
return "Chinês (Simplificado)";
case MENU_ENUM_LABEL_VALUE_LANG_ESPERANTO:
return "Esperanto";
case MENU_ENUM_LABEL_VALUE_LEFT_ANALOG:
return "Analógico Esquerdo";
case MENU_ENUM_LABEL_VALUE_RIGHT_ANALOG:
return "Analógico Direito";
case MENU_ENUM_LABEL_VALUE_INPUT_HOTKEY_BINDS:
return "Associação de Teclas de Atalho";
case MENU_ENUM_LABEL_VALUE_FRAME_THROTTLE_SETTINGS:
return "Definições do Limitador de Quadros";
case MENU_ENUM_LABEL_VALUE_SEARCH:
return "Busca:";
case MENU_ENUM_LABEL_VALUE_USE_BUILTIN_IMAGE_VIEWER:
return "Usar Visualizador de Imagens Interno";
default:
break;
}
return "null";
}
int menu_hash_get_help_pt(uint32_t hash, char *s, size_t len)
{
uint32_t driver_hash = 0;
@ -1808,7 +984,7 @@ int menu_hash_get_help_pt(uint32_t hash, char *s, size_t len)
break;
default:
if (s[0] == '\0')
strlcpy(s, menu_hash_to_str_enum(MENU_ENUM_LABEL_VALUE_NO_INFORMATION_AVAILABLE), len);
strlcpy(s, msg_hash_to_str(MENU_ENUM_LABEL_VALUE_NO_INFORMATION_AVAILABLE), len);
return -1;
}

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -47,7 +47,7 @@ void menu_cbs_init(void *data,
const char *menu_label = NULL;
uint32_t label_hash = 0;
uint32_t menu_label_hash = 0;
enum menu_hash_enums enum_idx = MENU_ENUM_LABEL_UNKNOWN;
enum msg_hash_enums enum_idx = MSG_UNKNOWN;
file_list_t *list = (file_list_t*)data;
if (!list)
return;
@ -78,8 +78,8 @@ void menu_cbs_init(void *data,
repr_label = (!string_is_empty(label)) ? label : path;
#ifdef DEBUG_LOG
if (cbs && cbs->enum_idx != MENU_ENUM_LABEL_UNKNOWN)
RARCH_LOG("\t\t\tenum_idx %d [%s]\n", cbs->enum_idx, menu_hash_to_str_enum(cbs->enum_idx));
if (cbs && cbs->enum_idx != MSG_UNKNOWN)
RARCH_LOG("\t\t\tenum_idx %d [%s]\n", cbs->enum_idx, msg_hash_to_str(cbs->enum_idx));
#endif
menu_cbs_init_bind_ok(cbs, path, label, type, idx, elem0, elem1, menu_label, label_hash, menu_label_hash);

File diff suppressed because it is too large Load Diff

View File

@ -23,6 +23,7 @@
#include <lists/file_list.h>
#include "menu_hash.h"
#include "../msg_hash.h"
#ifndef COLLECTION_SIZE
#define COLLECTION_SIZE 99999
@ -147,7 +148,7 @@ typedef struct menu_displaylist_info
unsigned type_default;
size_t directory_ptr;
unsigned flags;
enum menu_hash_enums enum_idx;
enum msg_hash_enums enum_idx;
rarch_setting_t *setting;
} menu_displaylist_info_t;
@ -156,7 +157,7 @@ typedef struct menu_displaylist_ctx_parse_entry
void *data;
menu_displaylist_info_t *info;
const char *info_label;
enum menu_hash_enums enum_idx;
enum msg_hash_enums enum_idx;
enum menu_displaylist_parse_type parse_type;
bool add_empty_entry;
} menu_displaylist_ctx_parse_entry_t;

View File

@ -389,7 +389,7 @@ void menu_entries_get(size_t i, menu_entry_t *entry)
const char *path = NULL;
const char *entry_label = NULL;
menu_file_list_cbs_t *cbs = NULL;
enum menu_hash_enums enum_idx = MENU_ENUM_LABEL_UNKNOWN;
enum msg_hash_enums enum_idx = MSG_UNKNOWN;
file_list_t *selection_buf = menu_entries_get_selection_buf_ptr(0);
menu_entries_get_last_stack(NULL, &label, NULL, &enum_idx, NULL);
@ -420,7 +420,7 @@ int menu_entries_get_title(char *s, size_t len)
unsigned menu_type = 0;
const char *path = NULL;
const char *label = NULL;
enum menu_hash_enums enum_idx = MENU_ENUM_LABEL_UNKNOWN;
enum msg_hash_enums enum_idx = MSG_UNKNOWN;
menu_file_list_cbs_t *cbs = menu_entries_get_last_stack_actiondata();
if (!cbs)
@ -458,7 +458,7 @@ int menu_entries_get_core_title(char *s, size_t len)
if (string_is_empty(core_name) && info)
core_name = info->info.library_name;
if (string_is_empty(core_name))
core_name = menu_hash_to_str_enum(MENU_ENUM_LABEL_VALUE_NO_CORE);
core_name = msg_hash_to_str(MENU_ENUM_LABEL_VALUE_NO_CORE);
if (!core_version && info)
core_version = info->info.library_version;
@ -535,14 +535,14 @@ void menu_entries_add(file_list_t *list, const char *path, const char *label,
file_list_set_actiondata(list, idx, cbs);
cbs->enum_idx = MENU_ENUM_LABEL_UNKNOWN ;
cbs->enum_idx = MSG_UNKNOWN;
cbs->setting = menu_setting_find(label);
menu_cbs_init(list, cbs, path, label, type, idx);
}
void menu_entries_add_enum(file_list_t *list, const char *path, const char *label,
enum menu_hash_enums enum_idx,
enum msg_hash_enums enum_idx,
unsigned type, size_t directory_ptr, size_t entry_idx)
{
menu_ctx_list_t list_info;
@ -578,7 +578,7 @@ void menu_entries_add_enum(file_list_t *list, const char *path, const char *labe
}
void menu_entries_prepend(file_list_t *list, const char *path, const char *label,
enum menu_hash_enums enum_idx,
enum msg_hash_enums enum_idx,
unsigned type, size_t directory_ptr, size_t entry_idx)
{
menu_ctx_list_t list_info;
@ -624,7 +624,7 @@ menu_file_list_cbs_t *menu_entries_get_last_stack_actiondata(void)
}
void menu_entries_get_last_stack(const char **path, const char **label,
unsigned *file_type, enum menu_hash_enums *enum_idx, size_t *entry_idx)
unsigned *file_type, enum msg_hash_enums *enum_idx, size_t *entry_idx)
{
menu_file_list_cbs_t *cbs = NULL;
menu_list_t *menu_list = NULL;

View File

@ -61,7 +61,7 @@ enum menu_entries_ctl_state
typedef struct menu_file_list_cbs
{
rarch_setting_t *setting;
enum menu_hash_enums enum_idx;
enum msg_hash_enums enum_idx;
int (*action_iterate)(const char *label, unsigned action);
const char *action_iterate_ident;
@ -143,7 +143,7 @@ void menu_entries_add(file_list_t *list, const char *path, const char *label,
unsigned type, size_t directory_ptr, size_t entry_idx);
void menu_entries_get_last_stack(const char **path, const char **label,
unsigned *file_type, enum menu_hash_enums *enum_idx, size_t *entry_idx);
unsigned *file_type, enum msg_hash_enums *enum_idx, size_t *entry_idx);
menu_file_list_cbs_t *menu_entries_get_last_stack_actiondata(void);
@ -175,11 +175,11 @@ void menu_entries_set_alt_at_offset(file_list_t *list, size_t idx,
rarch_setting_t *menu_entries_get_setting(uint32_t i);
void menu_entries_prepend(file_list_t *list, const char *path, const char *label,
enum menu_hash_enums enum_idx,
enum msg_hash_enums enum_idx,
unsigned type, size_t directory_ptr, size_t entry_idx);
void menu_entries_add_enum(file_list_t *list, const char *path, const char *label,
enum menu_hash_enums enum_idx,
enum msg_hash_enums enum_idx,
unsigned type, size_t directory_ptr, size_t entry_idx);
bool menu_entries_ctl(enum menu_entries_ctl_state state, void *data);

View File

@ -294,7 +294,7 @@ void menu_entry_get(menu_entry_t *entry, size_t stack_idx,
if (cbs->action_get_value && use_representation)
{
enum menu_hash_enums enum_idx = MENU_ENUM_LABEL_UNKNOWN;
enum msg_hash_enums enum_idx = MSG_UNKNOWN;
const char *label = NULL;
menu_entries_get_last_stack(NULL, &label, NULL, &enum_idx, NULL);

View File

@ -47,7 +47,7 @@ typedef struct menu_entry
char label[PATH_MAX_LENGTH];
char value[PATH_MAX_LENGTH];
size_t entry_idx;
enum menu_hash_enums enum_idx;
enum msg_hash_enums enum_idx;
unsigned idx;
unsigned type;
unsigned spacing;

View File

@ -23,52 +23,6 @@
#include "../configuration.h"
const char *menu_hash_to_str_enum(enum menu_hash_enums msg)
{
const char *ret = NULL;
settings_t *settings = config_get_ptr();
if (!settings)
return "null";
#ifdef HAVE_LANGEXTRA
switch (settings->user_language)
{
case RETRO_LANGUAGE_FRENCH:
ret = menu_hash_to_str_fr_enum(msg);
break;
case RETRO_LANGUAGE_GERMAN:
ret = menu_hash_to_str_de_enum(msg);
break;
case RETRO_LANGUAGE_SPANISH:
ret = menu_hash_to_str_es_enum(msg);
break;
case RETRO_LANGUAGE_ITALIAN:
ret = menu_hash_to_str_it_enum(msg);
break;
case RETRO_LANGUAGE_PORTUGUESE:
ret = menu_hash_to_str_pt_enum(msg);
break;
case RETRO_LANGUAGE_DUTCH:
ret = menu_hash_to_str_nl_enum(msg);
break;
case RETRO_LANGUAGE_ESPERANTO:
ret = menu_hash_to_str_eo_enum(msg);
break;
case RETRO_LANGUAGE_POLISH:
ret = menu_hash_to_str_pl_enum(msg);
break;
default:
break;
}
#endif
if (ret && !string_is_equal(ret, "null"))
return ret;
return menu_hash_to_str_us_enum(msg);
}
int menu_hash_get_help(uint32_t hash, char *s, size_t len)
{
int ret = -1;

File diff suppressed because it is too large Load Diff

View File

@ -282,7 +282,7 @@ static int menu_input_key_bind_set_mode_common(
info.directory_ptr = selection;
info.enum_idx = MENU_ENUM_LABEL_CUSTOM_BIND;
strlcpy(info.label,
menu_hash_to_str_enum(MENU_ENUM_LABEL_CUSTOM_BIND), sizeof(info.label));
msg_hash_to_str(MENU_ENUM_LABEL_CUSTOM_BIND), sizeof(info.label));
if (menu_displaylist_ctl(DISPLAYLIST_INFO, &info))
menu_displaylist_ctl(DISPLAYLIST_PROCESS, &info);
@ -298,7 +298,7 @@ static int menu_input_key_bind_set_mode_common(
info.directory_ptr = selection;
info.enum_idx = MENU_ENUM_LABEL_CUSTOM_BIND_ALL;
strlcpy(info.label,
menu_hash_to_str_enum(MENU_ENUM_LABEL_CUSTOM_BIND_ALL),
msg_hash_to_str(MENU_ENUM_LABEL_CUSTOM_BIND_ALL),
sizeof(info.label));
if (menu_displaylist_ctl(DISPLAYLIST_INFO, &info))
@ -563,7 +563,7 @@ static bool menu_input_key_bind_iterate(char *s, size_t len)
input_config_bind_map_get_desc(
menu_input->binds.begin - MENU_SETTINGS_BIND_BEGIN),
timeout,
menu_hash_to_str_enum(MENU_ENUM_LABEL_VALUE_SECONDS));
msg_hash_to_str(MENU_ENUM_LABEL_VALUE_SECONDS));
/* binds.begin is updated in keyboard_press callback. */
if (menu_input->binds.begin > menu_input->binds.last)
@ -660,7 +660,7 @@ bool menu_input_ctl(enum menu_input_ctl_state state, void *data)
return false;
menu_input->keyboard.display = true;
menu_input_keyboard_label = menu_hash_to_str_enum(MENU_ENUM_LABEL_VALUE_SEARCH);
menu_input_keyboard_label = msg_hash_to_str(MENU_ENUM_LABEL_VALUE_SEARCH);
menu_input_keyboard_buffer =
input_keyboard_start_line(menu, menu_input_search_cb);
}

File diff suppressed because it is too large Load Diff

View File

@ -27,6 +27,7 @@
#include "../input/input_driver.h"
#include "menu_hash.h"
#include "../msg_hash.h"
RETRO_BEGIN_DECLS
@ -291,7 +292,7 @@ int menu_setting_set(unsigned type, const char *label,
**/
rarch_setting_t *menu_setting_find(const char *label);
rarch_setting_t *menu_setting_find_enum(enum menu_hash_enums enum_idx);
rarch_setting_t *menu_setting_find_enum(enum msg_hash_enums enum_idx);
/**
* setting_set_with_string_representation:
@ -340,7 +341,7 @@ enum setting_type menu_setting_get_type(rarch_setting_t *setting);
enum setting_type menu_setting_get_browser_selection_type(rarch_setting_t *setting);
enum menu_hash_enums menu_setting_get_enum_idx(rarch_setting_t *setting);
enum msg_hash_enums menu_setting_get_enum_idx(rarch_setting_t *setting);
const char *menu_setting_get_values(rarch_setting_t *setting);
@ -394,7 +395,7 @@ void settings_data_list_current_add_free_flags(
void menu_settings_list_current_add_enum_idx(
rarch_setting_t **list,
rarch_setting_info_t *list_info,
enum menu_hash_enums enum_idx);
enum msg_hash_enums enum_idx);
bool menu_setting_free(void *data);

1289
msg_hash.h

File diff suppressed because it is too large Load Diff

View File

@ -558,21 +558,13 @@ LRESULT win32_menu_loop(HWND owner, WPARAM wparam)
{
case ID_M_LOAD_CORE:
extensions = "Libretro core (.dll)\0*.dll\0\All Files\0*.*\0";
#ifdef HAVE_MENU
title = menu_hash_to_str_enum(MENU_ENUM_LABEL_VALUE_CORE_LIST);
#else
title = "Load Core";
#endif
title = msg_hash_to_str(MENU_ENUM_LABEL_VALUE_CORE_LIST);
initial_dir = settings->directory.libretro;
break;
case ID_M_LOAD_CONTENT:
extensions = "All Files\0*.*\0\0";
#ifdef HAVE_MENU
title = menu_hash_to_str_enum(
title = msg_hash_to_str(
MENU_ENUM_LABEL_VALUE_LOAD_CONTENT_LIST);
#else
title = "Load Content";
#endif
initial_dir = settings->directory.menu_content;
break;
}