mirror of
https://github.com/libretro/RetroArch
synced 2025-02-01 00:32:46 +00:00
2783 lines
62 KiB
C
2783 lines
62 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_CONTENTLESS_CORES_TAB,
|
||
"Nuclis independents"
|
||
)
|
||
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."
|
||
)
|
||
#ifdef HAVE_LAKKA
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_EJECT_DISC,
|
||
"Expulsar disc"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_SUBLABEL_EJECT_DISC,
|
||
"Expulsa el disc de la unitat física de CD/DVD."
|
||
)
|
||
#endif
|
||
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 */
|
||
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_FAVORITES,
|
||
"Directori Inicial"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_DOWNLOADED_FILE_DETECT_CORE_LIST,
|
||
"Descàrregues"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_OPEN_ARCHIVE,
|
||
"Explorar Arxiu"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_LOAD_ARCHIVE,
|
||
"Carregar Arxiu"
|
||
)
|
||
|
||
/* Main Menu > Load Content > Playlists */
|
||
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_GOTO_FAVORITES,
|
||
"Favorits"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_SUBLABEL_GOTO_FAVORITES,
|
||
"El contingut afegit a 'Favorits' apareixerà aquí."
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_GOTO_MUSIC,
|
||
"Música"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_SUBLABEL_GOTO_MUSIC,
|
||
"La música reproduïda anteriorment apareixerà aquí."
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_GOTO_IMAGES,
|
||
"Imatges"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_SUBLABEL_GOTO_IMAGES,
|
||
"Les imatges visualitzades anteriorment apareixeran aquí."
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_GOTO_VIDEO,
|
||
"Vídeos"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_SUBLABEL_GOTO_VIDEO,
|
||
"Els vídeos reproduïts anteriorment apareixeran aquí."
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_GOTO_EXPLORE,
|
||
"Explorar"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_SUBLABEL_GOTO_EXPLORE,
|
||
"Explora tots els continguts que coincideixin amb la base de dades mitjançant una interfície de cerca categoritzada."
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_GOTO_CONTENTLESS_CORES,
|
||
"Nuclis independents"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_SUBLABEL_GOTO_CONTENTLESS_CORES,
|
||
"Els cors instal·lats que poden operar sense carregar contingut apareixeran aquí."
|
||
)
|
||
|
||
/* Main Menu > Online Updater */
|
||
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_CORE_UPDATER_LIST,
|
||
"Descarregador de Nuclis"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_UPDATE_INSTALLED_CORES,
|
||
"Actualitzar Nuclis Instal·lats"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_SUBLABEL_UPDATE_INSTALLED_CORES,
|
||
"Actualitza tots els nuclis instal·lats a la darrera versió disponible."
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_SWITCH_INSTALLED_CORES_PFD,
|
||
"Canviar els Nuclis a la versió de Play Store"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_SUBLABEL_SWITCH_INSTALLED_CORES_PFD,
|
||
"Substitueix tots els nuclis heretats i instal·lats manualment per les darreres versions de Play Store, quan estiguin disponibles."
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_THUMBNAILS_UPDATER_LIST,
|
||
"Actualitzador de Miniatures"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_SUBLABEL_THUMBNAILS_UPDATER_LIST,
|
||
"Descarrega el paquet complet de miniatures per al sistema seleccionat."
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_PL_THUMBNAILS_UPDATER_LIST,
|
||
"Actualitzador de Miniatures de Llistes de Reproducció"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_SUBLABEL_PL_THUMBNAILS_UPDATER_LIST,
|
||
"Descarrega les miniatures de les entrades de la llista de reproducció seleccionada."
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_DOWNLOAD_CORE_CONTENT,
|
||
"Descarregador de contingut"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_DOWNLOAD_CORE_SYSTEM_FILES,
|
||
"Descarregador d'arxius de sistema dels nuclis"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_SUBLABEL_DOWNLOAD_CORE_SYSTEM_FILES,
|
||
"Descarrega fitxers del sistema auxiliars necessaris per a un òptim/correcte funcionament."
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_UPDATE_CORE_INFO_FILES,
|
||
"Actualitza els fitxers d'informació del nucli"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_UPDATE_ASSETS,
|
||
"Actualitza els recursos"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_UPDATE_AUTOCONFIG_PROFILES,
|
||
"Actualitza els perfils dels controladors"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_UPDATE_CHEATS,
|
||
"Actualitza els trucs"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_UPDATE_DATABASES,
|
||
"Actualitza les bases de dades"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_UPDATE_OVERLAYS,
|
||
"Actualitza les superposicions"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_UPDATE_GLSL_SHADERS,
|
||
"Actualitza els shaders GLSL"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_UPDATE_CG_SHADERS,
|
||
"Actualitza els shaders Cg"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_UPDATE_SLANG_SHADERS,
|
||
"Actualitza els shaders Slang"
|
||
)
|
||
|
||
/* Main Menu > Information */
|
||
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_CORE_INFORMATION,
|
||
"Informació del nucli"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_SUBLABEL_CORE_INFORMATION,
|
||
"Mostra la informació relativa a l'aplicació/nucli."
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_DISC_INFORMATION,
|
||
"Informació del disc"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_SUBLABEL_DISC_INFORMATION,
|
||
"Veure informació sobre els discs multimèdia inserits."
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_NETWORK_INFORMATION,
|
||
"Informació de la xarxa"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_SUBLABEL_NETWORK_INFORMATION,
|
||
"Mostra l'interfície(s) de xarxa i les IP associades."
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_SYSTEM_INFORMATION,
|
||
"Informació del sistema"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_SUBLABEL_SYSTEM_INFORMATION,
|
||
"Mostra la informació específica del dispositiu."
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_DATABASE_MANAGER,
|
||
"Gestor de base de dades"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_SUBLABEL_DATABASE_MANAGER,
|
||
"Veure bases de dades."
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_CURSOR_MANAGER,
|
||
"Gestor del cursor"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_SUBLABEL_CURSOR_MANAGER,
|
||
"Mostra les cerques anteriors."
|
||
)
|
||
|
||
/* Main Menu > Information > Core Information */
|
||
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_CORE_INFO_CORE_NAME,
|
||
"Nom del nucli"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_CORE_INFO_CORE_LABEL,
|
||
"Etiqueta del nucli"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_CORE_INFO_CORE_VERSION,
|
||
"Versió del nucli"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_CORE_INFO_SYSTEM_NAME,
|
||
"Nom del sistema"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_CORE_INFO_SYSTEM_MANUFACTURER,
|
||
"Fabricant del sistema"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_CORE_INFO_AUTHORS,
|
||
"Autor"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_CORE_INFO_PERMISSIONS,
|
||
"Permisos"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_CORE_INFO_LICENSES,
|
||
"Llicència"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_CORE_INFO_SUPPORTED_EXTENSIONS,
|
||
"Extensions compatibles"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_CORE_INFO_REQUIRED_HW_API,
|
||
"APIs de gràfics requerides"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_CORE_INFO_SAVESTATE_SUPPORT_LEVEL,
|
||
"Suport a estats desats"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_CORE_INFO_SAVESTATE_DISABLED,
|
||
"Cap"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_CORE_INFO_SAVESTATE_BASIC,
|
||
"Bàsic (Desar/Carregar)"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_CORE_INFO_SAVESTATE_SERIALIZED,
|
||
"Amb sèrie (Desar/Carregar, Rebobinar)"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_MISSING_REQUIRED,
|
||
"Falta, requerida:"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_MISSING_OPTIONAL,
|
||
"Falta, opcional:"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_PRESENT_REQUIRED,
|
||
"Present, requerit:"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_PRESENT_OPTIONAL,
|
||
"Present, opcional:"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_CORE_LOCK,
|
||
"Bloqueja el nucli instal·lat"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_SUBLABEL_CORE_LOCK,
|
||
"Evita la modificació del nucli instal·lat actualment. Es pot utilitzar per evitar actualitzacions no desitjades quan el contingut requereix una versió del nucli específica (per exemple, conjunts de ROM d'arcade)."
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_CORE_DELETE,
|
||
"Eliminar nucli"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_SUBLABEL_CORE_DELETE,
|
||
"Eliminar aquest nucli del disc."
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_CORE_CREATE_BACKUP,
|
||
"Còpia de seguretat del nucli"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_SUBLABEL_CORE_CREATE_BACKUP,
|
||
"Crea una còpia de seguretat arxivada del nucli instal·lat actualment."
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_CORE_RESTORE_BACKUP_LIST,
|
||
"Restaura la còpia de seguretat"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_SUBLABEL_CORE_RESTORE_BACKUP_LIST,
|
||
"Instal·la una versió anterior del nucli des d'una llista de còpies de seguretat arxivades."
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_CORE_DELETE_BACKUP_LIST,
|
||
"Suprimeix la còpia de seguretat"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_SUBLABEL_CORE_DELETE_BACKUP_LIST,
|
||
"Eliminar un fitxer de la llista de còpies de seguretat arxivades."
|
||
)
|
||
|
||
/* Main Menu > Information > System Information */
|
||
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_BUILD_DATE,
|
||
"Data de compilació"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_GIT_VERSION,
|
||
"Versió del Git"
|
||
)
|
||
MSG_HASH( /* FIXME Should be MENU_LABEL_VALUE */
|
||
MSG_COMPILER,
|
||
"Compilador"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_CPU_MODEL,
|
||
"Model de CPU"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_CPU_FEATURES,
|
||
"Característiques de la CPU"
|
||
)
|
||
MSG_HASH( /* FIXME Colon should be handled in menu_display.c like the rest */
|
||
MENU_ENUM_LABEL_VALUE_CPU_ARCHITECTURE,
|
||
"Arquitectura de la CPU:"
|
||
)
|
||
MSG_HASH( /* FIXME Colon should be handled in menu_display.c like the rest */
|
||
MENU_ENUM_LABEL_VALUE_CPU_CORES,
|
||
"Nuclis de la CPU:"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_SUBLABEL_CPU_CORES,
|
||
"Quantitat de nuclis de la CPU."
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_FRONTEND_IDENTIFIER,
|
||
"Identificador de la interfície"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_FRONTEND_OS,
|
||
"Sistema operatiu de la interfície"
|
||
)
|
||
MSG_HASH( /* FIXME Maybe add a description? */
|
||
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_RETRORATING_LEVEL,
|
||
"Nivell de RetroRating"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_POWER_SOURCE,
|
||
"Font d'alimentació"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_VIDEO_CONTEXT_DRIVER,
|
||
"Controlador de context de vídeo"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_DISPLAY_METRIC_MM_WIDTH,
|
||
"Amplada de la pantalla (mm)"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_DISPLAY_METRIC_MM_HEIGHT,
|
||
"Alçada de la pantalla (mm)"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_DISPLAY_METRIC_DPI,
|
||
"Punts per polzada de la pantalla"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_LIBRETRODB_SUPPORT,
|
||
"Suport de LibretroDB"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OVERLAY_SUPPORT,
|
||
"Suport de recobriment"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_COMMAND_IFACE_SUPPORT,
|
||
"Suport a la interfície de comandaments"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_NETWORK_COMMAND_IFACE_SUPPORT,
|
||
"Suport a la interfície de comandaments de xarxa"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_NETWORK_REMOTE_SUPPORT,
|
||
"Suport del controlador de xarxa"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_COCOA_SUPPORT,
|
||
"Suport de Cocoa"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_RPNG_SUPPORT,
|
||
"Suport de PNG (RPNG)"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_RJPEG_SUPPORT,
|
||
"Suport de JPEG (RJPEG)"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_RBMP_SUPPORT,
|
||
"Suport de BMP (RBMP)"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_RTGA_SUPPORT,
|
||
"Suport de TGA (RTGA)"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_SDL_SUPPORT,
|
||
"Suport de SDL 1.2"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_SDL2_SUPPORT,
|
||
"Suport de SDL 2"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_VULKAN_SUPPORT,
|
||
"Suport de Vulkan"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_METAL_SUPPORT,
|
||
"Suport de Metal"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OPENGL_SUPPORT,
|
||
"Suport d'OpenGL"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OPENGLES_SUPPORT,
|
||
"Suport d'OpenGL ES"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_THREADING_SUPPORT,
|
||
"Suport multifil"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_KMS_SUPPORT,
|
||
"Suport de KMS/EGL"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_UDEV_SUPPORT,
|
||
"Suport d'udev"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OPENVG_SUPPORT,
|
||
"Suport d'OpenVG"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_EGL_SUPPORT,
|
||
"Suport d'EGL"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_X11_SUPPORT,
|
||
"Suport d'X11"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_WAYLAND_SUPPORT,
|
||
"Suport de Wayland"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_XVIDEO_SUPPORT,
|
||
"Suport d'XVideo"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_ALSA_SUPPORT,
|
||
"Suport d'ALSA"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OSS_SUPPORT,
|
||
"Suport d'OSS"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OPENAL_SUPPORT,
|
||
"Suport d'OpenAL"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OPENSL_SUPPORT,
|
||
"Suport d'OpenSL"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_RSOUND_SUPPORT,
|
||
"Suport de RSound"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_ROARAUDIO_SUPPORT,
|
||
"Suport de RoarAudio"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_JACK_SUPPORT,
|
||
"Suport de JACK"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_PULSEAUDIO_SUPPORT,
|
||
"Suport de PulseAudio"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_COREAUDIO_SUPPORT,
|
||
"Suport de CoreAudio"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_COREAUDIO3_SUPPORT,
|
||
"CoreAudio V3 implementat"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_DSOUND_SUPPORT,
|
||
"DirectSound implementat"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_WASAPI_SUPPORT,
|
||
"WASAPI implementat"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_XAUDIO2_SUPPORT,
|
||
"XAudio2 implementat"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_ZLIB_SUPPORT,
|
||
"zlib implementat"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_7ZIP_SUPPORT,
|
||
"7zip implementat"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_DYLIB_SUPPORT,
|
||
"Biblioteques dinàmiques implementades"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_DYNAMIC_SUPPORT,
|
||
"Càrrega dinàmica en temps d'execució de biblioteques de libretro"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_CG_SUPPORT,
|
||
"Cg implementat"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_GLSL_SUPPORT,
|
||
"GLSL implementat"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_HLSL_SUPPORT,
|
||
"GLSL implementat"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_SDL_IMAGE_SUPPORT,
|
||
"Imatge SDL implementat"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_FFMPEG_SUPPORT,
|
||
"FFmpeg implementat"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_MPV_SUPPORT,
|
||
"mpv implementat"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_CORETEXT_SUPPORT,
|
||
"CoreText implementat"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_FREETYPE_SUPPORT,
|
||
"FreeType implementat"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_STB_TRUETYPE_SUPPORT,
|
||
"STB TrueType implementat"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_NETPLAY_SUPPORT,
|
||
"Joc en xarxa (Peer-to-Peer) implementat"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_V4L2_SUPPORT,
|
||
"Video4Linux2 implementat"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_LIBUSB_SUPPORT,
|
||
"libusb implementat"
|
||
)
|
||
|
||
/* Main Menu > Information > Database Manager */
|
||
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_DATABASE_SELECTION,
|
||
"Selecció de base de dades"
|
||
)
|
||
|
||
/* Main Menu > Information > Database Manager > Information */
|
||
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_NAME,
|
||
"Nom"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_DESCRIPTION,
|
||
"Descripció"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_GENRE,
|
||
"Gènere"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_ACHIEVEMENTS,
|
||
"Assoliments"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_PUBLISHER,
|
||
"Editora"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_DEVELOPER,
|
||
"Desenvolupadora"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_ORIGIN,
|
||
"Origen"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_TGDB_RATING,
|
||
"Valoració TGDB"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_FAMITSU_MAGAZINE_RATING,
|
||
"Valoració de la revista Famitsu"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_EDGE_MAGAZINE_REVIEW,
|
||
"Valoració de la revista Edge"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_EDGE_MAGAZINE_RATING,
|
||
"Puntuació de la revista Edge"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_EDGE_MAGAZINE_ISSUE,
|
||
"Número de la revista Edge"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_RELEASE_MONTH,
|
||
"Mes de la data de publicació"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_RELEASE_YEAR,
|
||
"Any de la publicació"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_BBFC_RATING,
|
||
"Clasificació BBFC"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_ESRB_RATING,
|
||
"Clasificació ESRB"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_ELSPA_RATING,
|
||
"Clasificació ELSPA"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_PEGI_RATING,
|
||
"Clasificació PEGI"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_ENHANCEMENT_HW,
|
||
"Hardware de millora"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_CERO_RATING,
|
||
"Clasificació CERO"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_SERIAL,
|
||
"Sèrie"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_ANALOG,
|
||
"Control analògic compatible"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_RUMBLE,
|
||
"Vibració suportada"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_COOP,
|
||
"Joc cooperatiu implementat"
|
||
)
|
||
|
||
/* Main Menu > Configuration File */
|
||
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_CONFIGURATIONS,
|
||
"Carregar configuració"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_RESET_TO_DEFAULT_CONFIG,
|
||
"Restaurar als valors per defecte"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_SUBLABEL_RESET_TO_DEFAULT_CONFIG,
|
||
"Canvia la configuració present als valors predeterminats."
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_SAVE_CURRENT_CONFIG,
|
||
"Desar la configuració present"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_SAVE_NEW_CONFIG,
|
||
"Desar nova configuració"
|
||
)
|
||
|
||
/* Main Menu > Help */
|
||
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_HELP_CONTROLS,
|
||
"Controls bàsics del menú"
|
||
)
|
||
|
||
/* Main Menu > Help > Basic Menu Controls */
|
||
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_BASIC_MENU_CONTROLS_SCROLL_UP,
|
||
"Moure cap amunt"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_BASIC_MENU_CONTROLS_SCROLL_DOWN,
|
||
"Moure cap a baix"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_BASIC_MENU_CONTROLS_CONFIRM,
|
||
"Confirmar"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_BASIC_MENU_CONTROLS_INFO,
|
||
"Informació"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_BASIC_MENU_CONTROLS_START,
|
||
"Iniciar"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_BASIC_MENU_CONTROLS_TOGGLE_MENU,
|
||
"Fer aparèixer el menú"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_BASIC_MENU_CONTROLS_QUIT,
|
||
"Surt"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_BASIC_MENU_CONTROLS_TOGGLE_KEYBOARD,
|
||
"Fer aparèixer el teclat"
|
||
)
|
||
|
||
/* Settings */
|
||
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_DRIVER_SETTINGS,
|
||
"Controladors"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_SUBLABEL_DRIVER_SETTINGS,
|
||
"Canviar els controladors usats pel sistema."
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_VIDEO_SETTINGS,
|
||
"Vídeo"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_SUBLABEL_VIDEO_SETTINGS,
|
||
"Canviar configuracions de sortida de vídeo."
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_AUDIO_SETTINGS,
|
||
"Àudio"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_SUBLABEL_AUDIO_SETTINGS,
|
||
"Canviar les configuracions de sortida de l'àudio."
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_INPUT_SETTINGS,
|
||
"Dispositius de joc"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_SUBLABEL_INPUT_SETTINGS,
|
||
"Canviar configuracions de comandaments, teclat i ratolí."
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_LATENCY_SETTINGS,
|
||
"Latència"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_SUBLABEL_LATENCY_SETTINGS,
|
||
"Canviar les configuracions relatives a la latència del vídeo, l'àudio i control."
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_CORE_SETTINGS,
|
||
"Nucli"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_SUBLABEL_CORE_SETTINGS,
|
||
"Canviar configuracions del nucli."
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_CONFIGURATION_SETTINGS,
|
||
"Configuració"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_SUBLABEL_CONFIGURATION_SETTINGS,
|
||
"Canviar els ajustos per defecte dels arxius de configuració."
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_SAVING_SETTINGS,
|
||
"Desament"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_SUBLABEL_SAVING_SETTINGS,
|
||
"Canvia les configuracions de desament."
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_LOGGING_SETTINGS,
|
||
"Registres"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_SUBLABEL_LOGGING_SETTINGS,
|
||
"Canvia les configuracions del registre."
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_MENU_FILE_BROWSER_SETTINGS,
|
||
"Navegador d'Arxius"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_SUBLABEL_MENU_FILE_BROWSER_SETTINGS,
|
||
"Canviar les configuracions del navegador d'arxius."
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_FRAME_THROTTLE_SETTINGS,
|
||
"Ajustos dels Fotogrames"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_SUBLABEL_FRAME_THROTTLE_SETTINGS,
|
||
"Canviar les configuracions de rebobinat, avançament ràpid i càmera lenta."
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_RECORDING_SETTINGS,
|
||
"Enregistrament"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_SUBLABEL_RECORDING_SETTINGS,
|
||
"Canvia les configuracions d'enregistrament."
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_ONSCREEN_DISPLAY_SETTINGS,
|
||
"Visualitzacions en Pantalla"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_SUBLABEL_ONSCREEN_DISPLAY_SETTINGS,
|
||
"Canvia les configuracions de les notificacions, les superposicions dels controladors i les de vídeo."
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_USER_INTERFACE_SETTINGS,
|
||
"Interfície d'Usuari"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_SUBLABEL_USER_INTERFACE_SETTINGS,
|
||
"Canvia la configuració de la interfície d'usuari."
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_AI_SERVICE_SETTINGS,
|
||
"Servei d'IA"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_SUBLABEL_AI_SERVICE_SETTINGS,
|
||
"Canviar configuracions del servei d'IA (traducció/text a veu/altres)."
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_ACCESSIBILITY_SETTINGS,
|
||
"Accessibilitat"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_SUBLABEL_ACCESSIBILITY_SETTINGS,
|
||
"Canviar configuracions del narrador d'accessibilitat."
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_POWER_MANAGEMENT_SETTINGS,
|
||
"Gestió d'energia"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_SUBLABEL_POWER_MANAGEMENT_SETTINGS,
|
||
"Canviar configuracions de la gestió d'energia."
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_RETRO_ACHIEVEMENTS_SETTINGS,
|
||
"Assoliments"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_SUBLABEL_RETRO_ACHIEVEMENTS_SETTINGS,
|
||
"Canviar configuracions dels assoliments."
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_NETWORK_SETTINGS,
|
||
"Xarxa"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_SUBLABEL_NETWORK_SETTINGS,
|
||
"Canvia la configuració del servidor i la xarxa."
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SETTINGS,
|
||
"Llistes de reproducció"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_SUBLABEL_PLAYLIST_SETTINGS,
|
||
"Canvia les configuracions de la llista de reproducció."
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_USER_SETTINGS,
|
||
"Usuari"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_SUBLABEL_USER_SETTINGS,
|
||
"Canvia les configuracions del compte, del nom d'usuari i de l'idioma."
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_DIRECTORY_SETTINGS,
|
||
"Directoris"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_SUBLABEL_DIRECTORY_SETTINGS,
|
||
"Canvia els directoris predeterminats per als arxius."
|
||
)
|
||
|
||
#ifdef HAVE_MIST
|
||
#endif
|
||
|
||
/* Settings > Drivers */
|
||
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_INPUT_DRIVER,
|
||
"Dispositius de joc"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_SUBLABEL_INPUT_DRIVER,
|
||
"Selecciona el controlador de vídeo que es farà servir. Alguns controladors poden forçar l'ús d'un altre distint."
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_JOYPAD_DRIVER,
|
||
"Comandament"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_SUBLABEL_JOYPAD_DRIVER,
|
||
"Tipus de comandament de joc que es farà servir."
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_VIDEO_DRIVER,
|
||
"Vídeo"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_SUBLABEL_VIDEO_DRIVER,
|
||
"Controlador de vídeo que es farà servir."
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_AUDIO_DRIVER,
|
||
"Àudio"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_SUBLABEL_AUDIO_DRIVER,
|
||
"Controlador d'àudio que es farà servir."
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_AUDIO_RESAMPLER_DRIVER,
|
||
"Remostreig d'àudio"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_SUBLABEL_AUDIO_RESAMPLER_DRIVER,
|
||
"Controlador de remostreig d'àudio a usar."
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_CAMERA_DRIVER,
|
||
"Càmera"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_SUBLABEL_CAMERA_DRIVER,
|
||
"Tria el controlador de càmera que es farà servir."
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_SUBLABEL_BLUETOOTH_DRIVER,
|
||
"Controlador Bluetooth que es farà servir."
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_WIFI_DRIVER,
|
||
"Connexió sense fils Wi-Fi"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_SUBLABEL_WIFI_DRIVER,
|
||
"Tria el controlador Wi-Fi que es farà servir."
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_LOCATION_DRIVER,
|
||
"Ubicació"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_SUBLABEL_LOCATION_DRIVER,
|
||
"Tria el controlador de localització que es farà servir."
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_MENU_DRIVER,
|
||
"Menú"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_SUBLABEL_MENU_DRIVER,
|
||
"Tria el tipus d'entorn gràfic del menú que es farà servir."
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_RECORD_DRIVER,
|
||
"Enregistrament"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_SUBLABEL_RECORD_DRIVER,
|
||
"Tria el controlador d'enregistrament que es farà servir."
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_SUBLABEL_MIDI_DRIVER,
|
||
"Tria el tipus de controlador MIDI que es farà servir."
|
||
)
|
||
|
||
/* Settings > Video */
|
||
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_CRT_SWITCHRES_SETTINGS,
|
||
"SwitchRes per a CRT's"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_SUBLABEL_CRT_SWITCHRES_SETTINGS,
|
||
"Crea senyals de vídeo de baixa resolució per a pantalles de tub de raigs catòdics (CRT)."
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_VIDEO_OUTPUT_SETTINGS,
|
||
"Sortida"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_SUBLABEL_VIDEO_OUTPUT_SETTINGS,
|
||
"Canviar configuracions de sortida de vídeo."
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_VIDEO_FULLSCREEN_MODE_SETTINGS,
|
||
"Mode Pantalla Sencera"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_SUBLABEL_VIDEO_FULLSCREEN_MODE_SETTINGS,
|
||
"Canvia les configuracions del mode de pantalla completa."
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_VIDEO_WINDOWED_MODE_SETTINGS,
|
||
"Mode finestra"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_SUBLABEL_VIDEO_WINDOWED_MODE_SETTINGS,
|
||
"Canvia les configuracions del mode finestra en pantalla."
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_VIDEO_SCALING_SETTINGS,
|
||
"Escalat d'imatge"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_SUBLABEL_VIDEO_SCALING_SETTINGS,
|
||
"Canvia les configuracions de mida de l'escalat d'imatge."
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_SUBLABEL_VIDEO_HDR_SETTINGS,
|
||
"Canvia la configuració de vídeo d'HDR."
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_VIDEO_SYNCHRONIZATION_SETTINGS,
|
||
"Sincronització"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_SUBLABEL_VIDEO_SYNCHRONIZATION_SETTINGS,
|
||
"Canvia les configuracions de sincronització de vídeo."
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_SUSPEND_SCREENSAVER_ENABLE,
|
||
"Suspendre el salvapantalles"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_SUBLABEL_SUSPEND_SCREENSAVER_ENABLE,
|
||
"Evita que el salvapantalles del vostre sistema s'activi."
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_VIDEO_BLACK_FRAME_INSERTION,
|
||
"Insereix fotogrames negres"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_SUBLABEL_VIDEO_BLACK_FRAME_INSERTION,
|
||
"Insereix un fotograma negre entre fotogrames. És útil en algunes pantalles amb una taxa de refresc alta per eliminar el ghosting."
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_VIDEO_GPU_SCREENSHOT,
|
||
"Captura de pantalla de la GPU"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_SUBLABEL_VIDEO_GPU_SCREENSHOT,
|
||
"Les captures de pantalla es faran sobre la imatge de la GPU amb els shaders aplicats, si és possible."
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_VIDEO_SMOOTH,
|
||
"Filtre bilineal"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_SUBLABEL_VIDEO_SMOOTH,
|
||
"Difumina lleugerament la imatge per suavitzar les vores dels píxels. Aquesta opció té molt poc impacte sobre el rendiment."
|
||
)
|
||
#if defined(DINGUX)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_VIDEO_DINGUX_IPU_FILTER_TYPE,
|
||
"Interpolació d'imatges"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_SUBLABEL_VIDEO_DINGUX_IPU_FILTER_TYPE,
|
||
"Especifiqueu el mètode d'interpolació d'imatges quan s'escali el contingut a la IPU interna. Es recomana «Bicúbica» o «Bilineal» quan es fan servir filtres de vídeo de CPU. Aquesta opció no té cap impacte sobre el rendiment."
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_VIDEO_DINGUX_IPU_FILTER_BICUBIC,
|
||
"Bicúbica"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_VIDEO_DINGUX_IPU_FILTER_BILINEAR,
|
||
"Bilineal"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_VIDEO_DINGUX_IPU_FILTER_NEAREST,
|
||
"Veí més proper"
|
||
)
|
||
#if defined(RS90) || defined(MIYOO)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_VIDEO_DINGUX_RS90_SOFTFILTER_TYPE,
|
||
"Interpolació d'imatges"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_SUBLABEL_VIDEO_DINGUX_RS90_SOFTFILTER_TYPE,
|
||
"Especifiqueu el mètode d'interpolació d'imatges quan es desactiva l'opció «Escalat enter». L'opció «Veí més proper» és la que té menys impacte sobre el rendiment."
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_VIDEO_DINGUX_RS90_SOFTFILTER_POINT,
|
||
"Veí més proper"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_VIDEO_DINGUX_RS90_SOFTFILTER_BRESENHAM_HORZ,
|
||
"Semilineal"
|
||
)
|
||
#endif
|
||
#endif
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_VIDEO_FILTER,
|
||
"Filtre de vídeo"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_SUBLABEL_VIDEO_FILTER,
|
||
"Aplica un filtre de vídeo per CPU. Pot tenir un gran impacte sobre el rendiment. Alguns filtres de vídeo poden funcionar només amb nuclis que usen color en 32 o 16 bits."
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_VIDEO_FILTER_REMOVE,
|
||
"Elimina el filtre de vídeo"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_SUBLABEL_VIDEO_FILTER_REMOVE,
|
||
"Elimina qualsevol filtre de vídeo per CPU actiu."
|
||
)
|
||
|
||
/* Settings > Video > CRT SwitchRes */
|
||
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_CRT_SWITCH_RESOLUTION,
|
||
"SwitchRes per a CRT's"
|
||
)
|
||
|
||
/* Settings > Video > Output */
|
||
|
||
#if defined (WIIU)
|
||
#endif
|
||
#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 */
|
||
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_AUDIO_OUTPUT_SETTINGS,
|
||
"Sortida"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_SUBLABEL_AUDIO_OUTPUT_SETTINGS,
|
||
"Canviar les configuracions de sortida de l'àudio."
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_AUDIO_SYNCHRONIZATION_SETTINGS,
|
||
"Sincronització"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_SUBLABEL_AUDIO_FASTFORWARD_MUTE,
|
||
"Silencia automàticament el so quan s’usa l’avançament ràpid."
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_AUDIO_VOLUME,
|
||
"Guany de volum (dB)"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_SUBLABEL_AUDIO_VOLUME,
|
||
"Volum del so (en dB). 0 dB és el volum normal, sense cap guany afegit."
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_AUDIO_MIXER_VOLUME,
|
||
"Guany de volum del mesclador (dB)"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_SUBLABEL_AUDIO_MIXER_VOLUME,
|
||
"Volum del mesclador global de so (en dB). 0 dB és el volum normal, sense cap guany afegit."
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_AUDIO_DSP_PLUGIN,
|
||
"Connector DSP"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_SUBLABEL_AUDIO_DSP_PLUGIN,
|
||
"Connector DSP d’àudio que processa el so abans d’enviar-lo al controlador."
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_AUDIO_DSP_PLUGIN_REMOVE,
|
||
"Treu el connector DSP"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_SUBLABEL_AUDIO_DSP_PLUGIN_REMOVE,
|
||
"Desactiva qualsevol connector DSP d’àudio activat."
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_AUDIO_WASAPI_EXCLUSIVE_MODE,
|
||
"Mode WASAPI exclusiu"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_SUBLABEL_AUDIO_WASAPI_EXCLUSIVE_MODE,
|
||
"Permet al controlador WASAPI prendre el control exclusiu del dispositiu d’àudio. Si es desactiva aquesta opció, serà usat en mode compartit."
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_AUDIO_WASAPI_FLOAT_FORMAT,
|
||
"Format WASAPI de coma flotant"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_SUBLABEL_AUDIO_WASAPI_FLOAT_FORMAT,
|
||
"Usa el format de coma flotant per al controlador WASAPI si és admès pel dispositiu d’àudio."
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_AUDIO_WASAPI_SH_BUFFER_LENGTH,
|
||
"Mida de la memòria intermèdia compartida de WASAPI"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_SUBLABEL_AUDIO_WASAPI_SH_BUFFER_LENGTH,
|
||
"Mida (en fotogrames) de la memòria intermèdia quan s’usa el controlador WASAPI en mode compartit."
|
||
)
|
||
|
||
/* Settings > Audio > Output */
|
||
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_AUDIO_ENABLE,
|
||
"Àudio"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_SUBLABEL_AUDIO_ENABLE,
|
||
"Habilita la sortida d’àudio."
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_AUDIO_DEVICE,
|
||
"Dispositiu"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_SUBLABEL_AUDIO_DEVICE,
|
||
"Força el dispositiu que fa servir el controlador d’àudio. Això depèn del controlador."
|
||
)
|
||
|
||
/* Settings > Audio > Resampler */
|
||
|
||
|
||
/* Settings > Audio > Synchronization */
|
||
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_AUDIO_SYNC,
|
||
"Sincronització"
|
||
)
|
||
|
||
/* Settings > Audio > MIDI */
|
||
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_MIDI_INPUT,
|
||
"Dispositius de joc"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_MIDI_OUTPUT,
|
||
"Sortida"
|
||
)
|
||
|
||
/* Settings > Audio > Mixer Settings > Mixer Stream */
|
||
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_MIXER_ACTION_REMOVE,
|
||
"Elimina"
|
||
)
|
||
|
||
/* 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 */
|
||
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_INPUT_META_QUIT_KEY,
|
||
"Tancar RetroArch"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_INPUT_META_AI_SERVICE,
|
||
"Servei d'IA"
|
||
)
|
||
|
||
/* Settings > Input > Port # Controls */
|
||
|
||
|
||
/* Settings > Latency */
|
||
|
||
|
||
/* Settings > Core */
|
||
|
||
#ifndef HAVE_DYNAMIC
|
||
#endif
|
||
#ifdef HAVE_MIST
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
#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 */
|
||
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_MENU_SCREENSAVER_ANIMATION_SNOW,
|
||
"Neu"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_SUBLABEL_MENU_SCROLL_DELAY,
|
||
"Retard inicial en mil·lisegons quan es manté una direcció per desplaçar."
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_DESKTOP_MENU_ENABLE,
|
||
"Menú d’escriptori (cal reiniciar)"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_UI_COMPANION_TOGGLE,
|
||
"Obre el menú d’escriptori a l’inici"
|
||
)
|
||
|
||
/* Settings > User Interface > Menu Item Visibility */
|
||
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_QUICK_MENU_VIEWS_SETTINGS,
|
||
"Menú Ràpid"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_SUBLABEL_QUICK_MENU_VIEWS_SETTINGS,
|
||
"Canvia la visibilitat dels elements al menú ràpid."
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_SETTINGS_VIEWS_SETTINGS,
|
||
"Opcions"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_SUBLABEL_SETTINGS_VIEWS_SETTINGS,
|
||
"Canvia la visibilitat dels elements al menú de preferències."
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_MENU_SHOW_LOAD_CORE,
|
||
"Mostra “Carrega el nucli”"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_SUBLABEL_MENU_SHOW_LOAD_CORE,
|
||
"Mostra l’opció “Carrega el nucli” al menú principal."
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_MENU_SHOW_LOAD_CONTENT,
|
||
"Mostra “Carrega el contingut”"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_SUBLABEL_MENU_SHOW_LOAD_CONTENT,
|
||
"Mostra l’opció “Carrega el contingut” al menú principal."
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_MENU_SHOW_LOAD_DISC,
|
||
"Mostra “Carrega el disc”"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_SUBLABEL_MENU_SHOW_LOAD_DISC,
|
||
"Mostra l’opció “Carrega el disc” al menú principal."
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_MENU_SHOW_DUMP_DISC,
|
||
"Mostra “Bolca el disc”"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_SUBLABEL_MENU_SHOW_DUMP_DISC,
|
||
"Mostra l’opció “Bolca el disc” al menú principal."
|
||
)
|
||
#ifdef HAVE_LAKKA
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_MENU_SHOW_EJECT_DISC,
|
||
"Mostra “Expulsa el disc”"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_SUBLABEL_MENU_SHOW_EJECT_DISC,
|
||
"Mostra l’opció “Expulsa el disc” al menú principal."
|
||
)
|
||
#endif
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_MENU_SHOW_ONLINE_UPDATER,
|
||
"Mostra “Actualitzador en línia”"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_SUBLABEL_MENU_SHOW_ONLINE_UPDATER,
|
||
"Mostra l’opció “Actualitzador en línia” al menú principal."
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_MENU_SHOW_CORE_UPDATER,
|
||
"Mostra “Baixador de nuclis”"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_SUBLABEL_MENU_SHOW_CORE_UPDATER,
|
||
"Mostra la capacitat d’actualitzar nuclis (i fitxers d’informació de nuclis) a l’opció “Baixador de nuclis”."
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_MENU_SHOW_LEGACY_THUMBNAIL_UPDATER,
|
||
"Mostra l’“Actualitzador de miniatures” antic"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_SUBLABEL_MENU_SHOW_LEGACY_THUMBNAIL_UPDATER,
|
||
"Mostra l’entrada per baixar paquets de miniatures antics a l’opció “Actualitzador en línia”."
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_MENU_ADD_CONTENT_ENTRY_DISPLAY_MAIN_TAB,
|
||
"Menú Principal"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_SHOW_CONTENTLESS_CORES_CUSTOM,
|
||
"Personalitzat"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_SUBLABEL_CORE_ENABLE,
|
||
"Mostra el nom del nucli actual al menú."
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_MENU_SHOW_SUBLABELS,
|
||
"Mostra subetiquetes al menú"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_SUBLABEL_MENU_SHOW_SUBLABELS,
|
||
"Mostra informació addicional pels elements del menú."
|
||
)
|
||
MSG_HASH( /* FIXME Not RGUI specific */
|
||
MENU_ENUM_LABEL_VALUE_RGUI_SHOW_START_SCREEN,
|
||
"Mostra la pantalla inicial"
|
||
)
|
||
MSG_HASH( /* FIXME Not RGUI specific */
|
||
MENU_ENUM_SUBLABEL_RGUI_SHOW_START_SCREEN,
|
||
"Mostra la pantalla inicial al menú. Aquesta opció es desactiva automàticament quan el programa s’inicia per primera vegada."
|
||
)
|
||
|
||
/* Settings > User Interface > Menu Item Visibility > Quick Menu */
|
||
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_QUICK_MENU_SHOW_RESUME_CONTENT,
|
||
"Mostra “Reprèn”"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_SUBLABEL_QUICK_MENU_SHOW_RESUME_CONTENT,
|
||
"Mostra l’opció de reprendre el contingut."
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_QUICK_MENU_SHOW_RESTART_CONTENT,
|
||
"Mostra “Reinicia”"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_SUBLABEL_QUICK_MENU_SHOW_RESTART_CONTENT,
|
||
"Mostra l’opció de reiniciar el contingut."
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_QUICK_MENU_SHOW_CLOSE_CONTENT,
|
||
"Mostra “Tanca el contingut”"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_SUBLABEL_QUICK_MENU_SHOW_CLOSE_CONTENT,
|
||
"Mostra l’opció “Tanca el contingut”."
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_QUICK_MENU_SHOW_TAKE_SCREENSHOT,
|
||
"Mostra “Fes una captura de pantalla”"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_SUBLABEL_QUICK_MENU_SHOW_TAKE_SCREENSHOT,
|
||
"Mostra l’opció “Fes una captura de pantalla”."
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_QUICK_MENU_SHOW_SAVE_LOAD_STATE,
|
||
"Mostra “Desa/Carrega l’estat”"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_SUBLABEL_QUICK_MENU_SHOW_SAVE_LOAD_STATE,
|
||
"Mostra les opcions per desar o carregar estats."
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_QUICK_MENU_SHOW_UNDO_SAVE_LOAD_STATE,
|
||
"Mostra “Desfés el desament/càrrega d’estat”"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_SUBLABEL_QUICK_MENU_SHOW_UNDO_SAVE_LOAD_STATE,
|
||
"Mostra les opcions per desfer el desament o càrrega d’estat."
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_QUICK_MENU_SHOW_ADD_TO_FAVORITES,
|
||
"Mostra “Afegeix als preferits”"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_SUBLABEL_QUICK_MENU_SHOW_ADD_TO_FAVORITES,
|
||
"Mostra l’opció “Afegeix als preferits”."
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_QUICK_MENU_SHOW_START_RECORDING,
|
||
"Mostra “Inicia l’enregistrament”"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_SUBLABEL_QUICK_MENU_SHOW_START_RECORDING,
|
||
"Mostra l’opció “Inicia l’enregistrament”."
|
||
)
|
||
|
||
/* Settings > User Interface > Views > Settings */
|
||
|
||
|
||
|
||
/* Settings > User Interface > Appearance */
|
||
|
||
|
||
/* Settings > AI Service */
|
||
|
||
|
||
/* Settings > Accessibility */
|
||
|
||
|
||
/* Settings > Power Management */
|
||
|
||
/* Settings > Achievements */
|
||
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_CHEEVOS_ENABLE,
|
||
"Assoliments"
|
||
)
|
||
|
||
/* Settings > Network */
|
||
|
||
|
||
/* Settings > Network > Updater */
|
||
|
||
|
||
/* Settings > Playlists */
|
||
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_HISTORY_LIST_ENABLE,
|
||
"Historial"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_CORE,
|
||
"Nucli:"
|
||
)
|
||
|
||
/* 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 */
|
||
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_CORE_ASSETS_DIRECTORY,
|
||
"Descàrregues"
|
||
)
|
||
MSG_HASH( /* FIXME Not RGUI specific */
|
||
MENU_ENUM_LABEL_VALUE_RGUI_BROWSER_DIRECTORY,
|
||
"Navegador d'Arxius"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_PLAYLIST_DIRECTORY,
|
||
"Llistes de reproducció"
|
||
)
|
||
|
||
#ifdef HAVE_MIST
|
||
/* Settings > Steam */
|
||
|
||
|
||
|
||
#endif
|
||
|
||
/* Music */
|
||
|
||
/* Music > Quick Menu */
|
||
|
||
|
||
/* Netplay */
|
||
|
||
|
||
/* Netplay > Host */
|
||
|
||
|
||
/* Import Content */
|
||
|
||
|
||
/* Import Content > Scan File */
|
||
|
||
|
||
/* Import Content > Manual Scan */
|
||
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_MANUAL_CONTENT_SCAN_SYSTEM_NAME,
|
||
"Nom del sistema"
|
||
)
|
||
|
||
/* Explore tab */
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_EXPLORE_BY_SETTING,
|
||
"Per ambientació"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_EXPLORE_BY_VISUAL,
|
||
"Per estil visual"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_EXPLORE_BY_VEHICULAR,
|
||
"Per vehicles"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_EXPLORE_BY_ORIGIN,
|
||
"Per origen"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_EXPLORE_BY_FRANCHISE,
|
||
"Per franquícia"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_EXPLORE_BY_TAG,
|
||
"Per etiqueta"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_EXPLORE_BY_SYSTEM_NAME,
|
||
"Per nom del sistema"
|
||
)
|
||
|
||
/* Playlist > Playlist Item */
|
||
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_RUN,
|
||
"Executa"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_SUBLABEL_RUN,
|
||
"Inicia el contingut."
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_RENAME_ENTRY,
|
||
"Canvia el nom"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_SUBLABEL_RENAME_ENTRY,
|
||
"Canvia el títol de l’entrada."
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_DELETE_ENTRY,
|
||
"Elimina"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_SUBLABEL_DELETE_ENTRY,
|
||
"Elimina l’entrada de la llista."
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_ADD_TO_FAVORITES_PLAYLIST,
|
||
"Afegeix als preferits"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_SUBLABEL_ADD_TO_FAVORITES_PLAYLIST,
|
||
"Afegeix el contingut als “Favorits”."
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_INFORMATION,
|
||
"Informació"
|
||
)
|
||
|
||
/* Playlist Item > Set Core Association */
|
||
|
||
|
||
/* Playlist Item > Information */
|
||
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_CONTENT_INFO_LABEL,
|
||
"Nom"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_CONTENT_INFO_CORE_NAME,
|
||
"Nucli"
|
||
)
|
||
|
||
/* Quick Menu */
|
||
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_ADD_TO_FAVORITES,
|
||
"Afegeix als preferits"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_SUBLABEL_ADD_TO_FAVORITES,
|
||
"Afegeix el contingut als “Favorits”."
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_ACHIEVEMENT_LIST,
|
||
"Assoliments"
|
||
)
|
||
|
||
/* Quick Menu > Options */
|
||
|
||
|
||
/* Quick Menu > Options > Manage Core Options */
|
||
|
||
|
||
/* - Legacy (unused) */
|
||
|
||
/* Quick Menu > Controls */
|
||
|
||
|
||
/* Quick Menu > Controls > Manage Remap Files */
|
||
|
||
|
||
/* Quick Menu > Controls > Manage Remap Files > 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 */
|
||
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_CHEAT_DESC,
|
||
"Descripció"
|
||
)
|
||
|
||
/* Quick Menu > Disc Control */
|
||
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_DISK_TRAY_EJECT,
|
||
"Expulsar disc"
|
||
)
|
||
|
||
/* Quick Menu > Shaders */
|
||
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_VIDEO_SHADER_PRESET_REMOVE,
|
||
"Elimina"
|
||
)
|
||
|
||
/* 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 */
|
||
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_BASIC_MENU_CONTROLS_OK,
|
||
"D'acord"
|
||
)
|
||
|
||
/* Settings Options */
|
||
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_NETPLAY_SHARE_NONE,
|
||
"Cap"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_RETROPAD_WITH_ANALOG,
|
||
"RetroPad amb analògic"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_NONE,
|
||
"Cap"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_UNKNOWN,
|
||
"Desconegut"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_DOWN_Y_L_R,
|
||
"Avall + Y + L1 + R1"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_HOLD_START,
|
||
"Mantén Start (2 segons)"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_HOLD_SELECT,
|
||
"Mantén Select (2 segons)"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_DOWN_SELECT,
|
||
"Avall + Select"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_RUMBLE_TYPE_DISABLED,
|
||
"<Desactivat>"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_RUMBLE_TYPE_CHANGES,
|
||
"Canviï"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_RUMBLE_TYPE_DOES_NOT_CHANGE,
|
||
"No canviï"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_RUMBLE_TYPE_INCREASE,
|
||
"Augmenti"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_RUMBLE_TYPE_DECREASE,
|
||
"Disminueixi"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_RUMBLE_TYPE_EQ_VALUE,
|
||
"= valor de vibració"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_RUMBLE_TYPE_NEQ_VALUE,
|
||
"≠ valor de vibració"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_RUMBLE_TYPE_LT_VALUE,
|
||
"< valor de vibració"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_RUMBLE_TYPE_GT_VALUE,
|
||
"> valor de vibració"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_RUMBLE_TYPE_INCREASE_BY_VALUE,
|
||
"Augmenti per valor de vibració"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_RUMBLE_TYPE_DECREASE_BY_VALUE,
|
||
"Disminueixi per valor de vibració"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_CHEAT_TYPE_DISABLED,
|
||
"<Desactivat>"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_PLAYLIST_MANAGER_SORT_MODE_OFF,
|
||
"Cap"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_YES,
|
||
"Sí"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_NOT_AVAILABLE,
|
||
"N/D"
|
||
)
|
||
|
||
/* RGUI: Settings > User Interface > Appearance */
|
||
|
||
|
||
/* RGUI: Settings Options */
|
||
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_RGUI_THUMB_SCALE_BILINEAR,
|
||
"Bilineal"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_RGUI_UPSCALE_NONE,
|
||
"Cap"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_RGUI_MENU_COLOR_THEME_CUSTOM,
|
||
"Personalitzat"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_RGUI_MENU_COLOR_THEME_LEGACY_RED,
|
||
"Vermell antic"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_RGUI_MENU_COLOR_THEME_DARK_PURPLE,
|
||
"Lila fosc"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_RGUI_MENU_COLOR_THEME_MIDNIGHT_BLUE,
|
||
"Blau de mitjanit"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_RGUI_MENU_COLOR_THEME_GOLDEN,
|
||
"Daurat"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_RGUI_MENU_COLOR_THEME_ELECTRIC_BLUE,
|
||
"Blau elèctric"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_RGUI_MENU_COLOR_THEME_APPLE_GREEN,
|
||
"Verd poma"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_RGUI_MENU_COLOR_THEME_VOLCANIC_RED,
|
||
"Vermell volcànic"
|
||
)
|
||
|
||
/* XMB: Settings > User Interface > Appearance */
|
||
|
||
MSG_HASH(
|
||
MENU_ENUM_SUBLABEL_XMB_MENU_COLOR_THEME,
|
||
"Seleccioneu un tema de degradat de color de fons diferent."
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_XMB_VERTICAL_THUMBNAILS,
|
||
"Disposició vertical de les miniatures"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_SUBLABEL_XMB_VERTICAL_THUMBNAILS,
|
||
"Mostra la minatura de l’esquerra a sota de la de la dreta, al costat dret de la pantalla."
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_MENU_XMB_THUMBNAIL_SCALE_FACTOR,
|
||
"Factor d’escala de les miniatures"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_SUBLABEL_MENU_XMB_THUMBNAIL_SCALE_FACTOR,
|
||
"Redueix la mida de visualització de les miniatures escalant l’amplada màxima permesa."
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_MENU_XMB_VERTICAL_FADE_FACTOR,
|
||
"Factor d’esvaïment vertical"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_MENU_XMB_TITLE_MARGIN,
|
||
"Marge del títol"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_XMB_MAIN_MENU_ENABLE_SETTINGS,
|
||
"Habilita la pestanya de configuració (cal reiniciar)"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_SUBLABEL_XMB_MAIN_MENU_ENABLE_SETTINGS,
|
||
"Mostra la pestanya de configuració que conté els paràmetres del programa."
|
||
)
|
||
|
||
/* XMB: Settings Options */
|
||
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_SHADER_PIPELINE_RIBBON,
|
||
"Cinta"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_SHADER_PIPELINE_RIBBON_SIMPLIFIED,
|
||
"Cinta (simplificada)"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_SHADER_PIPELINE_SIMPLE_SNOW,
|
||
"Neu simple"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_SHADER_PIPELINE_SNOW,
|
||
"Neu"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_SHADER_PIPELINE_SNOWFLAKE,
|
||
"Flocs de neu"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_XMB_ICON_THEME_CUSTOM,
|
||
"Personalitzat"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_XMB_ICON_THEME_MONOCHROME,
|
||
"Monocrom"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_XMB_ICON_THEME_MONOCHROME_INVERTED,
|
||
"Monocrom invertit"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_XMB_ICON_THEME_SYSTEMATIC,
|
||
"Sistemàtic"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_XMB_ICON_THEME_PIXEL,
|
||
"Píxel"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_XMB_ICON_THEME_AUTOMATIC,
|
||
"Automàtic"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_XMB_ICON_THEME_AUTOMATIC_INVERTED,
|
||
"Automàtic invertit"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_XMB_MENU_COLOR_THEME_APPLE_GREEN,
|
||
"Verd poma"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_XMB_MENU_COLOR_THEME_DARK,
|
||
"Fosc"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_XMB_MENU_COLOR_THEME_LIGHT,
|
||
"Clar"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_XMB_MENU_COLOR_THEME_MORNING_BLUE,
|
||
"Blau matinal"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_XMB_MENU_COLOR_THEME_SUNBEAM,
|
||
"Raig de sol"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_XMB_MENU_COLOR_THEME_DARK_PURPLE,
|
||
"Lila fosc"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_XMB_MENU_COLOR_THEME_ELECTRIC_BLUE,
|
||
"Blau elèctric"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_XMB_MENU_COLOR_THEME_GOLDEN,
|
||
"Daurat"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_XMB_MENU_COLOR_THEME_LEGACY_RED,
|
||
"Vermell antic"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_XMB_MENU_COLOR_THEME_MIDNIGHT_BLUE,
|
||
"Blau de mitjanit"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_XMB_MENU_COLOR_THEME_PLAIN,
|
||
"Pla"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_XMB_MENU_COLOR_THEME_UNDERSEA,
|
||
"Submarí"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_XMB_MENU_COLOR_THEME_VOLCANIC_RED,
|
||
"Vermell volcànic"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_XMB_MENU_COLOR_THEME_LIME,
|
||
"Verd llima"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_XMB_MENU_COLOR_THEME_PIKACHU_YELLOW,
|
||
"Groc Pikachu"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_XMB_MENU_COLOR_THEME_GAMECUBE_PURPLE,
|
||
"Lila Cub"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_XMB_MENU_COLOR_THEME_FAMICOM_RED,
|
||
"Vermell familiar"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_XMB_MENU_COLOR_THEME_FLAMING_HOT,
|
||
"Flamejant"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_XMB_MENU_COLOR_THEME_ICE_COLD,
|
||
"Glaçat"
|
||
)
|
||
|
||
/* Ozone: Settings > User Interface > Appearance */
|
||
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_OZONE_COLLAPSE_SIDEBAR,
|
||
"Replega la barra lateral"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_SUBLABEL_OZONE_COLLAPSE_SIDEBAR,
|
||
"Manté la barra lateral sempre replegada."
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_OZONE_TRUNCATE_PLAYLIST_NAME,
|
||
"Trunca els noms de les llistes de reproducció (cal reiniciar)"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_OZONE_THUMBNAIL_SCALE_FACTOR,
|
||
"Factor d’escala de les miniatures"
|
||
)
|
||
|
||
/* MaterialUI: Settings > User Interface > Appearance */
|
||
|
||
MSG_HASH(
|
||
MENU_ENUM_SUBLABEL_MATERIALUI_MENU_COLOR_THEME,
|
||
"Seleccioneu un tema de degradat de color de fons diferent."
|
||
)
|
||
|
||
/* MaterialUI: Settings Options */
|
||
|
||
|
||
/* Qt (Desktop Menu) */
|
||
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_QT_INFO,
|
||
"Informació"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_QT_MENU_VIEW_OPTIONS_THEME_DARK,
|
||
"Fosc"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_QT_MENU_VIEW_OPTIONS_TITLE,
|
||
"Opcions"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_QT_MENU_HELP,
|
||
"&Ajuda"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_QT_LOAD_CORE,
|
||
"Carregar Nucli"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_QT_NAME,
|
||
"Nom"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_QT_TAB_PLAYLISTS,
|
||
"Llistes de reproducció"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_QT_TAB_FILE_BROWSER,
|
||
"Navegador d'Arxius"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_QT_TAB_FILE_BROWSER_UP,
|
||
"Amunt"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_QT_CORE,
|
||
"Nucli"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_QT_INFORMATION,
|
||
"Informació"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_QT_PLAYLIST_ENTRY_NAME,
|
||
"Nom:"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_QT_PLAYLIST_ENTRY_CORE,
|
||
"Nucli:"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_QT_REMOVE,
|
||
"Elimina"
|
||
)
|
||
|
||
/* Unsorted */
|
||
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_LOAD_CONTENT_HISTORY,
|
||
"Historial"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_RUN_MUSIC,
|
||
"Executa"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_USER,
|
||
"Usuari"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_BROWSE_START,
|
||
"Iniciar"
|
||
)
|
||
|
||
/* Unused (Only Exist in Translation Files) */
|
||
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_NETPLAY_ENABLE,
|
||
"Joc en línia"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_HELP,
|
||
"Ajuda"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_CHEEVOS_DESCRIPTION,
|
||
"Descripció"
|
||
)
|
||
|
||
/* Unused (Needs Confirmation) */
|
||
|
||
MSG_HASH( /* FIXME Seems related to MENU_ENUM_LABEL_VALUE_CORE_ASSETS_DIRECTORY, possible duplicate */
|
||
MENU_ENUM_LABEL_VALUE_CORE_ASSETS_DIR,
|
||
"Descàrregues"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_BASIC_MENU_ENUM_CONTROLS_INFO,
|
||
"Informació"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_BASIC_MENU_ENUM_CONTROLS_QUIT,
|
||
"Surt"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_BASIC_MENU_ENUM_CONTROLS_SCROLL_UP,
|
||
"Moure cap amunt"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_BASIC_MENU_ENUM_CONTROLS_TOGGLE_KEYBOARD,
|
||
"Fer aparèixer el teclat"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_BASIC_MENU_ENUM_CONTROLS_TOGGLE_MENU,
|
||
"Fer aparèixer el menú"
|
||
)
|
||
|
||
/* Discord Status */
|
||
|
||
|
||
/* Notifications */
|
||
|
||
MSG_HASH( /* FIXME Should be MSG_ */
|
||
MENU_ENUM_LABEL_VALUE_VIDEO_DRIVER_FALLBACK,
|
||
"El vostre controlador de gràfics no és compatible amb el controlador de vídeo actual del RetroArch, s’usarà el controlador %s com a alternativa. Reinicieu el RetroArch per aplicar els canvis."
|
||
)
|
||
MSG_HASH( /* FIXME Should be MSG_ */
|
||
MENU_ENUM_LABEL_VALUE_SIDELOAD_CORE_SUCCESS,
|
||
"S’ha instal·lat el nucli correctament"
|
||
)
|
||
MSG_HASH( /* FIXME Should be MSG_ */
|
||
MENU_ENUM_LABEL_VALUE_SIDELOAD_CORE_ERROR,
|
||
"Ha fallat la instal·lació del nucli"
|
||
)
|
||
MSG_HASH(
|
||
MSG_CHEAT_DELETE_ALL_INSTRUCTIONS,
|
||
"Premeu dreta cinc vegades per esborrar tots els trucs."
|
||
)
|
||
MSG_HASH(
|
||
MSG_FAILED_TO_SAVE_DEBUG_INFO,
|
||
"No s’ha pogut desar la informació de depuració."
|
||
)
|
||
MSG_HASH(
|
||
MSG_FAILED_TO_SEND_DEBUG_INFO,
|
||
"No s’ha pogut enviar la informació de depuració al servidor."
|
||
)
|
||
MSG_HASH(
|
||
MSG_SENDING_DEBUG_INFO,
|
||
"S’està enviant la informació de depuració..."
|
||
)
|
||
MSG_HASH(
|
||
MSG_SENT_DEBUG_INFO,
|
||
"S’ha enviat la informació de depuració al servidor correctament. El vostre número d’ID és %u."
|
||
)
|
||
MSG_HASH(
|
||
MSG_PRESS_TWO_MORE_TIMES_TO_SEND_DEBUG_INFO,
|
||
"Premeu dues vegades més per enviar informació de diagnòstic a l’equip del RetroArch."
|
||
)
|
||
MSG_HASH(
|
||
MSG_PRESS_ONE_MORE_TIME_TO_SEND_DEBUG_INFO,
|
||
"Premeu una vegada més per enviar informació de diagnòstic a l’equip del RetroArch."
|
||
)
|
||
MSG_HASH(
|
||
MSG_FAILED_TO_SEND_NICKNAME_TO_HOST,
|
||
"No s'ha pogut enviar el sobrenom a l'amfitrió."
|
||
)
|
||
MSG_HASH(
|
||
MSG_FAILED_TO_SEND_SRAM_DATA_TO_CLIENT,
|
||
"No s'han pogut enviar les dades d'SRAM al client."
|
||
)
|
||
MSG_HASH(
|
||
MSG_FAILED_TO_START_AUDIO_DRIVER,
|
||
"No s'ha pogut iniciar el controlador d'àudio. Es continuarà sense so."
|
||
)
|
||
MSG_HASH(
|
||
MSG_FAILED_TO_START_MOVIE_RECORD,
|
||
"No s'ha pogut iniciar l'enregistrament de la pel·lícula."
|
||
)
|
||
MSG_HASH(
|
||
MSG_FAILED_TO_START_RECORDING,
|
||
"No s'ha pogut iniciar l'enregistrament."
|
||
)
|
||
MSG_HASH(
|
||
MSG_FAILED_TO_TAKE_SCREENSHOT,
|
||
"No s'ha pogut fer la captura de pantalla."
|
||
)
|
||
MSG_HASH(
|
||
MSG_FAILED_TO_UNDO_LOAD_STATE,
|
||
"No s'ha pogut desfer la càrrega d'estat."
|
||
)
|
||
MSG_HASH(
|
||
MSG_FAILED_TO_UNDO_SAVE_STATE,
|
||
"No s'ha pogut desfer el desament d'estat."
|
||
)
|
||
MSG_HASH(
|
||
MSG_FAILED_TO_UNMUTE_AUDIO,
|
||
"No s'ha pogut activar el so."
|
||
)
|
||
MSG_HASH(
|
||
MSG_FATAL_ERROR_RECEIVED_IN,
|
||
"S'ha produït un error fatal a"
|
||
)
|
||
MSG_HASH(
|
||
MSG_FILE_NOT_FOUND,
|
||
"No s'ha trobat el fitxer"
|
||
)
|
||
MSG_HASH(
|
||
MSG_FOUND_AUTO_SAVESTATE_IN,
|
||
"S'ha trobat un estat desat automàtic a"
|
||
)
|
||
MSG_HASH(
|
||
MSG_FOUND_DISK_LABEL,
|
||
"S'ha trobat l'etiqueta del disc"
|
||
)
|
||
MSG_HASH(
|
||
MSG_FOUND_FIRST_DATA_TRACK_ON_FILE,
|
||
"S'ha trobat la primera pista de dades al fitxer"
|
||
)
|
||
MSG_HASH(
|
||
MSG_FOUND_LAST_STATE_SLOT,
|
||
"S'ha trobat el darrer espai d'estat"
|
||
)
|
||
MSG_HASH(
|
||
MSG_FOUND_SHADER,
|
||
"S'ha trobat el shader"
|
||
)
|
||
MSG_HASH(
|
||
MSG_FRAMES,
|
||
"Fotogrames"
|
||
)
|
||
MSG_HASH(
|
||
MSG_GAME_SPECIFIC_CORE_OPTIONS_FOUND_AT,
|
||
"S'han trobat les opcions de nucli específiques del joc a"
|
||
)
|
||
MSG_HASH(
|
||
MSG_FOLDER_SPECIFIC_CORE_OPTIONS_FOUND_AT,
|
||
"S'han trobat les opcions de nucli específiques de la carpeta a"
|
||
)
|
||
MSG_HASH(
|
||
MSG_GOT_INVALID_DISK_INDEX,
|
||
"S'ha obtingut un índex de disc no vàlid."
|
||
)
|
||
MSG_HASH(
|
||
MSG_GRAB_MOUSE_STATE,
|
||
"Captura l'estat del ratolí"
|
||
)
|
||
MSG_HASH(
|
||
MSG_GAME_FOCUS_ON,
|
||
"Focus al joc activat"
|
||
)
|
||
MSG_HASH(
|
||
MSG_GAME_FOCUS_OFF,
|
||
"Focus al joc desactivat"
|
||
)
|
||
MSG_HASH(
|
||
MSG_INFLATED_CHECKSUM_DID_NOT_MATCH_CRC32,
|
||
"La suma de verificació inflada no coincideix amb el CRC32."
|
||
)
|
||
MSG_HASH(
|
||
MSG_UNKNOWN,
|
||
"Desconegut"
|
||
)
|
||
MSG_HASH(
|
||
MSG_CORE_INSTALLATION_FAILED,
|
||
"Ha fallat la instal·lació del nucli: "
|
||
)
|
||
|
||
/* Lakka */
|
||
|
||
|
||
/* Environment Specific Settings */
|
||
|
||
MSG_HASH(
|
||
MSG_SCREEN_RESOLUTION_FORMAT_NO_DESC,
|
||
"%u×%u"
|
||
)
|
||
MSG_HASH(
|
||
MSG_SCREEN_RESOLUTION_FORMAT_DESC,
|
||
"%u×%u - %s"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_WIFI_SETTINGS,
|
||
"Connexió sense fils Wi-Fi"
|
||
)
|
||
MSG_HASH(
|
||
MENU_ENUM_LABEL_VALUE_INPUT_META_RESTART_KEY,
|
||
"Reiniciar RetroArch"
|
||
)
|
||
|
||
#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
|