mirror of
https://github.com/libretro/RetroArch
synced 2025-02-01 00:32:46 +00:00
590 lines
9.5 KiB
C
590 lines
9.5 KiB
C
#if defined(_MSC_VER) && !defined(_XBOX) && (_MSC_VER >= 1500 && _MSC_VER < 1900)
|
|
#if (_MSC_VER >= 1700)
|
|
/* https://support.microsoft.com/en-us/kb/980263 */
|
|
#pragma execution_character_set("utf-8")
|
|
#endif
|
|
#pragma warning(disable:4566)
|
|
#endif
|
|
|
|
/* Top-Level Menu */
|
|
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_MAIN_MENU,
|
|
"Menú Principal"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SETTINGS_TAB,
|
|
"Opcions"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_FAVORITES_TAB,
|
|
"Favorits"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_HISTORY_TAB,
|
|
"Historial"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_IMAGES_TAB,
|
|
"Imatges"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_MUSIC_TAB,
|
|
"Música"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_VIDEO_TAB,
|
|
"Vídeos"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_NETPLAY_TAB,
|
|
"Joc en línia"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_EXPLORE_TAB,
|
|
"Explorar"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_ADD_TAB,
|
|
"Importar Contingut"
|
|
)
|
|
|
|
/* Main Menu */
|
|
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_CONTENT_SETTINGS,
|
|
"Menú Ràpid"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_CONTENT_SETTINGS,
|
|
"Accedeix ràpidament a totes les opcions relacionades amb la partida."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_CORE_LIST,
|
|
"Carregar Nucli"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_CORE_LIST,
|
|
"Selecciona quin nucli utilitzar."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_LOAD_CONTENT_LIST,
|
|
"Carregar Contingut"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_LOAD_CONTENT_LIST,
|
|
"Selecciona quin contingut iniciar."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_LOAD_DISC,
|
|
"Carregar Disc"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_LOAD_DISC,
|
|
"Carrega un disc físic multimèdia. Primer hauràs de seleccionar el nucli (Carregar Nucli) a utilitzar amb el disc."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_DUMP_DISC,
|
|
"Abocar Disc"
|
|
)
|
|
MSG_HASH( /* FIXME Is a specific image format used? Is it determined automatically? User choice? */
|
|
MENU_ENUM_SUBLABEL_DUMP_DISC,
|
|
"Abocar el disc físic multimèdia a l'emmagatzematge intern. Es guardarà com un arxiu d'imatge."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_PLAYLISTS_TAB,
|
|
"Llistes de reproducció"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_PLAYLISTS_TAB,
|
|
"El contingut que coincideixi amb la base de dades apareixerà aquí."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_ADD_CONTENT_LIST,
|
|
"Importar Contingut"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_ADD_CONTENT_LIST,
|
|
"Crea i actualitza les llistes de reproducció escanejant el contingut."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SHOW_WIMP,
|
|
"Mostrar Menú d'Escriptori"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_SHOW_WIMP,
|
|
"Obre el menú tradicional d'escriptori."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_MENU_DISABLE_KIOSK_MODE,
|
|
"Desactiva el mode quiosc (requereix reiniciar)."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_MENU_DISABLE_KIOSK_MODE,
|
|
"Mostra totes les opcions de configuració."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_ONLINE_UPDATER,
|
|
"Actualitzador en línia"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_ONLINE_UPDATER,
|
|
"Descarrega complements, components i contingut per RetroArch."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_NETPLAY,
|
|
"Joc en línia"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_NETPLAY,
|
|
"Uneix-te o organitza una sessió de joc en línia."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SETTINGS,
|
|
"Opcions"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_SETTINGS,
|
|
"Configura el programa."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_INFORMATION_LIST,
|
|
"Informació"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_INFORMATION_LIST_LIST,
|
|
"Mostra la informació del sistema."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_CONFIGURATIONS_LIST,
|
|
"Arxiu de Configuració"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_CONFIGURATIONS_LIST,
|
|
"Gestiona i crea fitxers de configuració."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_HELP_LIST,
|
|
"Ajuda"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_HELP_LIST,
|
|
"Assabenta't del funcionament del programa."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_RESTART_RETROARCH,
|
|
"Reiniciar RetroArch"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_RESTART_RETROARCH,
|
|
"Reinicia el programa."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_QUIT_RETROARCH,
|
|
"Tancar RetroArch"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_QUIT_RETROARCH,
|
|
"Surt del programa."
|
|
)
|
|
|
|
/* Main Menu > Load Core */
|
|
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_DOWNLOAD_CORE,
|
|
"Descarrega Nucli"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_DOWNLOAD_CORE,
|
|
"Descarrega i instal·la un nucli de l'actualitzador en línia."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SIDELOAD_CORE_LIST,
|
|
"Instal·la o Restaura un Nucli"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_SIDELOAD_CORE_LIST,
|
|
"Instal·la o restaura un nucli des de la carpeta 'Downloads'."
|
|
)
|
|
MSG_HASH( /* FIXME Maybe add a description? */
|
|
MENU_ENUM_LABEL_VALUE_START_VIDEO_PROCESSOR,
|
|
"Iniciar Processador de Vídeo"
|
|
)
|
|
MSG_HASH( /* FIXME Maybe add a description? */
|
|
MENU_ENUM_LABEL_VALUE_START_NET_RETROPAD,
|
|
"Iniciar RetroPad Remot"
|
|
)
|
|
|
|
/* Main Menu > Load Content */
|
|
|
|
|
|
/* Main Menu > Load Content > Playlists */
|
|
|
|
|
|
/* Main Menu > Online Updater */
|
|
|
|
|
|
/* Main Menu > Information */
|
|
|
|
|
|
/* Main Menu > Information > Core Information */
|
|
|
|
|
|
/* Main Menu > Information > System Information */
|
|
|
|
|
|
/* Main Menu > Information > Database Manager */
|
|
|
|
|
|
/* Main Menu > Information > Database Manager > Information */
|
|
|
|
|
|
/* Main Menu > Configuration File */
|
|
|
|
|
|
/* Main Menu > Help */
|
|
|
|
|
|
/* Main Menu > Help > Basic Menu Controls */
|
|
|
|
|
|
/* Settings */
|
|
|
|
|
|
/* Settings > Drivers */
|
|
|
|
|
|
/* Settings > Video */
|
|
|
|
#if defined(DINGUX)
|
|
#if defined(RS90) || defined(MIYOO)
|
|
#endif
|
|
#endif
|
|
|
|
/* Settings > Video > CRT SwitchRes */
|
|
|
|
|
|
/* Settings > Video > Output */
|
|
|
|
#if defined(DINGUX) && defined(DINGUX_BETA)
|
|
#endif
|
|
|
|
/* Settings > Video > Fullscreen Mode */
|
|
|
|
|
|
/* Settings > Video > Windowed Mode */
|
|
|
|
|
|
/* Settings > Video > Scaling */
|
|
|
|
#if defined(DINGUX)
|
|
#endif
|
|
|
|
/* Settings > Video > HDR */
|
|
|
|
|
|
/* Settings > Video > Synchronization */
|
|
|
|
|
|
/* Settings > Audio */
|
|
|
|
|
|
/* Settings > Audio > Output */
|
|
|
|
|
|
/* Settings > Audio > Resampler */
|
|
|
|
|
|
/* Settings > Audio > Synchronization */
|
|
|
|
|
|
/* Settings > Audio > MIDI */
|
|
|
|
|
|
/* Settings > Audio > Mixer Settings > Mixer Stream */
|
|
|
|
|
|
/* Settings > Audio > Menu Sounds */
|
|
|
|
|
|
/* Settings > Input */
|
|
|
|
#if defined(HAVE_DINPUT) || defined(HAVE_WINRAWINPUT)
|
|
#endif
|
|
|
|
/* Settings > Input > Haptic Feedback/Vibration */
|
|
|
|
|
|
/* Settings > Input > Menu Controls */
|
|
|
|
|
|
/* Settings > Input > Hotkeys */
|
|
|
|
|
|
/* Settings > Input > Port # Controls */
|
|
|
|
|
|
/* Settings > Latency */
|
|
|
|
|
|
/* Settings > Core */
|
|
|
|
#ifndef HAVE_DYNAMIC
|
|
#endif
|
|
|
|
/* Settings > Configuration */
|
|
|
|
|
|
/* Settings > Saving */
|
|
|
|
|
|
/* Settings > Logging */
|
|
|
|
|
|
/* Settings > File Browser */
|
|
|
|
|
|
/* Settings > Frame Throttle */
|
|
|
|
|
|
/* Settings > Frame Throttle > Rewind */
|
|
|
|
|
|
/* Settings > Frame Throttle > Frame Time Counter */
|
|
|
|
|
|
/* Settings > Recording */
|
|
|
|
|
|
/* Settings > On-Screen Display */
|
|
|
|
|
|
/* Settings > On-Screen Display > On-Screen Overlay */
|
|
|
|
#if defined(ANDROID)
|
|
#endif
|
|
|
|
/* Settings > On-Screen Display > Video Layout */
|
|
|
|
|
|
/* Settings > On-Screen Display > On-Screen Notifications */
|
|
|
|
|
|
/* Settings > User Interface */
|
|
|
|
|
|
/* Settings > User Interface > Menu Item Visibility */
|
|
|
|
|
|
/* Settings > User Interface > Menu Item Visibility > Quick Menu */
|
|
|
|
|
|
/* Settings > User Interface > Views > Settings */
|
|
|
|
|
|
/* Settings > User Interface > Appearance */
|
|
|
|
|
|
/* Settings > AI Service */
|
|
|
|
|
|
/* Settings > Accessibility */
|
|
|
|
|
|
/* Settings > Power Management */
|
|
|
|
/* Settings > Achievements */
|
|
|
|
|
|
/* Settings > Network */
|
|
|
|
|
|
/* Settings > Network > Updater */
|
|
|
|
|
|
/* Settings > Playlists */
|
|
|
|
|
|
/* Settings > Playlists > Playlist Management */
|
|
|
|
|
|
/* Settings > User */
|
|
|
|
|
|
/* Settings > User > Privacy */
|
|
|
|
|
|
/* Settings > User > Accounts */
|
|
|
|
|
|
/* Settings > User > Accounts > RetroAchievements */
|
|
|
|
|
|
/* Settings > User > Accounts > YouTube */
|
|
|
|
|
|
/* Settings > User > Accounts > Twitch */
|
|
|
|
|
|
/* Settings > User > Accounts > Facebook Gaming */
|
|
|
|
|
|
/* Settings > Directory */
|
|
|
|
|
|
/* Music */
|
|
|
|
/* Music > Quick Menu */
|
|
|
|
|
|
/* Netplay */
|
|
|
|
|
|
/* Netplay > Host */
|
|
|
|
|
|
/* Import Content */
|
|
|
|
|
|
/* Import Content > Scan File */
|
|
|
|
|
|
/* Import Content > Manual Scan */
|
|
|
|
|
|
/* Explore tab */
|
|
|
|
/* Playlist > Playlist Item */
|
|
|
|
|
|
/* Playlist Item > Set Core Association */
|
|
|
|
|
|
/* Playlist Item > Information */
|
|
|
|
|
|
/* Quick Menu */
|
|
|
|
|
|
/* Quick Menu > Options */
|
|
|
|
|
|
/* Quick Menu > Options > Manage Core Options */
|
|
|
|
|
|
/* - Legacy (unused) */
|
|
|
|
/* Quick Menu > Controls */
|
|
|
|
|
|
/* Quick Menu > Controls > Load Remap File */
|
|
|
|
|
|
/* Quick Menu > Cheats */
|
|
|
|
|
|
/* Quick Menu > Cheats > Start or Continue Cheat Search */
|
|
|
|
|
|
/* Quick Menu > Cheats > Load Cheat File (Replace) */
|
|
|
|
|
|
/* Quick Menu > Cheats > Load Cheat File (Append) */
|
|
|
|
|
|
/* Quick Menu > Cheats > Cheat Details */
|
|
|
|
|
|
/* Quick Menu > Disc Control */
|
|
|
|
|
|
/* Quick Menu > Shaders */
|
|
|
|
|
|
/* Quick Menu > Shaders > Save */
|
|
|
|
|
|
|
|
|
|
/* Quick Menu > Shaders > Remove */
|
|
|
|
|
|
/* Quick Menu > Shaders > Shader Parameters */
|
|
|
|
|
|
/* Quick Menu > Overrides */
|
|
|
|
|
|
/* Quick Menu > Achievements */
|
|
|
|
|
|
/* Quick Menu > Information */
|
|
|
|
|
|
/* Miscellaneous UI Items */
|
|
|
|
|
|
/* Settings Options */
|
|
|
|
|
|
/* RGUI: Settings > User Interface > Appearance */
|
|
|
|
|
|
/* RGUI: Settings Options */
|
|
|
|
|
|
/* XMB: Settings > User Interface > Appearance */
|
|
|
|
|
|
/* XMB: Settings Options */
|
|
|
|
|
|
/* Ozone: Settings > User Interface > Appearance */
|
|
|
|
|
|
/* MaterialUI: Settings > User Interface > Appearance */
|
|
|
|
|
|
/* MaterialUI: Settings Options */
|
|
|
|
|
|
/* Qt (Desktop Menu) */
|
|
|
|
|
|
/* Unsorted */
|
|
|
|
|
|
/* Unused (Only Exist in Translation Files) */
|
|
|
|
|
|
/* Unused (Needs Confirmation) */
|
|
|
|
|
|
/* Discord Status */
|
|
|
|
|
|
/* Notifications */
|
|
|
|
|
|
/* Lakka */
|
|
|
|
|
|
/* Environment Specific Settings */
|
|
|
|
|
|
#ifdef HAVE_LAKKA_SWITCH
|
|
#endif
|
|
#if defined(HAVE_LAKKA_SWITCH) || defined(HAVE_LIBNX)
|
|
#endif
|
|
#ifdef HAVE_LAKKA
|
|
#endif
|
|
#ifdef GEKKO
|
|
#endif
|
|
#ifdef HAVE_ODROIDGO2
|
|
#else
|
|
#endif
|
|
#if defined(_3DS)
|
|
#endif
|
|
#ifdef HAVE_QT
|
|
#endif
|