mirror of
https://github.com/libretro/RetroArch
synced 2025-01-31 06:32:48 +00:00
1269 lines
25 KiB
C
1269 lines
25 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,
|
|
"Huvudmeny"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SETTINGS_TAB,
|
|
"Inställningar"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_FAVORITES_TAB,
|
|
"Favoriter"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_HISTORY_TAB,
|
|
"Historik"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_IMAGES_TAB,
|
|
"Bilder"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_MUSIC_TAB,
|
|
"Musik"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_VIDEO_TAB,
|
|
"Videor"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_ADD_TAB,
|
|
"Importera innehåll"
|
|
)
|
|
|
|
/* Main Menu */
|
|
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_CONTENT_SETTINGS,
|
|
"Snabbmeny"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_CONTENT_SETTINGS,
|
|
"Kom åt alla relevanta spelinställningar snabbt."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_CORE_LIST,
|
|
"Ladda in kärna"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_CORE_LIST,
|
|
"Välj vilken kärna du vill använda."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_LOAD_CONTENT_LIST,
|
|
"Ladda in innehåll"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_LOAD_CONTENT_LIST,
|
|
"Välj vilket innehåll som ska startas."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_LOAD_DISC,
|
|
"Ladda skiva"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_LOAD_DISC,
|
|
"Ladda en fysisk media skiva. Välj först kärnan (Ladda kärna) för att använda skivan."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_DUMP_DISC,
|
|
"Dumpa skiva"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_DUMP_DISC,
|
|
"Dumpa den fysiska media skivan till intern lagring. Den kommer att sparas som en avbildningsfil."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_PLAYLISTS_TAB,
|
|
"Spellistor"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_PLAYLISTS_TAB,
|
|
"Skannat innehåll som matchar databasen kommer att visas här."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_ADD_CONTENT_LIST,
|
|
"Skanna innehåll"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_ADD_CONTENT_LIST,
|
|
"Skanna innehåll och lägg till i databasen."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SHOW_WIMP,
|
|
"Visa skrivbordsmeny"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_SHOW_WIMP,
|
|
"Öppnar den traditionella skrivbordsmenyn."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_MENU_DISABLE_KIOSK_MODE,
|
|
"Inaktivera Kiosk-läge"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_MENU_DISABLE_KIOSK_MODE,
|
|
"Inaktiverar kiosk-läge. (Omstart krävs)"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_ONLINE_UPDATER,
|
|
"Online-uppdaterare"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_ONLINE_UPDATER,
|
|
"Ladda ner tillägg, komponenter och innehåll för RetroArch."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_NETPLAY,
|
|
"Gå med i eller bli värd för en Netplay-session."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SETTINGS,
|
|
"Inställningar"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_SETTINGS,
|
|
"Konfigurera programmet."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_INFORMATION_LIST_LIST,
|
|
"Visa systeminformation."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_CONFIGURATIONS_LIST,
|
|
"Konfigurationsfil"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_CONFIGURATIONS_LIST,
|
|
"Hantera och skapa konfigurationsfiler."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_HELP_LIST,
|
|
"Hjälp"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_HELP_LIST,
|
|
"Läs mer om hur programmet fungerar."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_RESTART_RETROARCH,
|
|
"Starta om RetroArch"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_RESTART_RETROARCH,
|
|
"Starta om programmet."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_QUIT_RETROARCH,
|
|
"Avsluta RetroArch"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_QUIT_RETROARCH,
|
|
"Avsluta programmet."
|
|
)
|
|
|
|
/* Main Menu > Load Core */
|
|
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_DOWNLOAD_CORE,
|
|
"Ladda ner en kärna"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_DOWNLOAD_CORE,
|
|
"Ladda ner och installera en kärna från online-uppdateraren."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SIDELOAD_CORE_LIST,
|
|
"Installera eller återställ en kärna"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_SIDELOAD_CORE_LIST,
|
|
"Installera eller återställ en kärna från mappen 'Downloads' (nedladdningar)."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_START_VIDEO_PROCESSOR,
|
|
"Starta videoprocessor"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_START_NET_RETROPAD,
|
|
"Starta fjärrstyrd RetroPad"
|
|
)
|
|
|
|
/* Main Menu > Load Content */
|
|
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_FAVORITES,
|
|
"Startmapp"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_DOWNLOADED_FILE_DETECT_CORE_LIST,
|
|
"Nedladdningar"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_OPEN_ARCHIVE,
|
|
"Titta igenom arkiv"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_LOAD_ARCHIVE,
|
|
"Ladda in arkiv"
|
|
)
|
|
|
|
/* Main Menu > Load Content > Playlists */
|
|
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_GOTO_FAVORITES,
|
|
"Favoriter"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_GOTO_FAVORITES,
|
|
"Innehåll som lagts till i 'Favoriter' visas här."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_GOTO_MUSIC,
|
|
"Musik"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_GOTO_MUSIC,
|
|
"Här visas en historik över den musik som spelats."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_GOTO_IMAGES,
|
|
"Bilder"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_GOTO_IMAGES,
|
|
"Här visas en historik över de bilder som visats."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_GOTO_VIDEO,
|
|
"Videor"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_GOTO_VIDEO,
|
|
"Här finns en historik över de videor som visats."
|
|
)
|
|
|
|
/* Main Menu > Online Updater */
|
|
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_CORE_UPDATER_LIST,
|
|
"Ladda ner kärnor"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_UPDATE_INSTALLED_CORES,
|
|
"Uppdatera installerade kärnor"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_UPDATE_INSTALLED_CORES,
|
|
"Uppdatera alla installerade kärnor till den senaste tillgängliga versionen."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_THUMBNAILS_UPDATER_LIST,
|
|
"Uppdatera miniatyrbilder"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_THUMBNAILS_UPDATER_LIST,
|
|
"Ladda ner en komplett uppsättning miniatyrbilder för valt system."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_PL_THUMBNAILS_UPDATER_LIST,
|
|
"Uppdatera miniatyrer för spellista"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_PL_THUMBNAILS_UPDATER_LIST,
|
|
"Ladda ner miniatyrbilder för poster i den valda spellistan."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_DOWNLOAD_CORE_CONTENT,
|
|
"Ladda ner innehåll"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_UPDATE_CORE_INFO_FILES,
|
|
"Uppdatera kärninformationsfiler"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_UPDATE_ASSETS,
|
|
"Uppdatera tillgångar"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_UPDATE_AUTOCONFIG_PROFILES,
|
|
"Uppdatera profiler för handkontroller"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_UPDATE_CHEATS,
|
|
"Uppdatera fusk"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_UPDATE_DATABASES,
|
|
"Uppdatera databaser"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_UPDATE_OVERLAYS,
|
|
"Uppdatera overlays"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_UPDATE_GLSL_SHADERS,
|
|
"Uppdatera GLSL-shaders"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_UPDATE_CG_SHADERS,
|
|
"Uppdatera Cg-shaders"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_UPDATE_SLANG_SHADERS,
|
|
"Uppdatera Slang-shaders"
|
|
)
|
|
|
|
/* Main Menu > Information */
|
|
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_CORE_INFORMATION,
|
|
"Kärninformation"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_CORE_INFORMATION,
|
|
"Visa information om applikationen/kärnan."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_DISC_INFORMATION,
|
|
"Information om skivan"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_DISC_INFORMATION,
|
|
"Visa information om inmatade skivor."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_NETWORK_INFORMATION,
|
|
"Nätverksinformation"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_NETWORK_INFORMATION,
|
|
"Visa nätverksgränssnitt och tillhörande IP-adresser."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SYSTEM_INFORMATION,
|
|
"Systeminformation"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_SYSTEM_INFORMATION,
|
|
"Visa information som är specifik för enheten."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_DATABASE_MANAGER,
|
|
"Databashanterare"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_DATABASE_MANAGER,
|
|
"Visa databaser."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_CURSOR_MANAGER,
|
|
"Markörhanterare"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_CURSOR_MANAGER,
|
|
"Visa tidigare sökningar."
|
|
)
|
|
|
|
/* Main Menu > Information > Core Information */
|
|
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_CORE_INFO_CORE_NAME,
|
|
"Kärnnamn"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_CORE_INFO_CORE_LABEL,
|
|
"Kärnetikett"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_CORE_INFO_SYSTEM_NAME,
|
|
"Systemets namn"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_CORE_INFO_SYSTEM_MANUFACTURER,
|
|
"Systemets tillverkare"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_CORE_INFO_CATEGORIES,
|
|
"Kategorier"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_CORE_INFO_AUTHORS,
|
|
"Skapare"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_CORE_INFO_PERMISSIONS,
|
|
"Behörigheter"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_CORE_INFO_LICENSES,
|
|
"Licens"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_CORE_INFO_SUPPORTED_EXTENSIONS,
|
|
"Filtillägg som stöds"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_CORE_INFO_REQUIRED_HW_API,
|
|
"Grafik-API som krävs"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_MISSING,
|
|
"Saknas"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_PRESENT,
|
|
"Tillgänglig"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_OPTIONAL,
|
|
"Frivillig"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_REQUIRED,
|
|
"Obligatorisk"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_CORE_LOCK,
|
|
"Lås installerad kärna"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_CORE_LOCK,
|
|
"Förhindra modifiering av den installerade kärnan. Kan användas för att undvika oönskade uppdateringar när innehåll kräver en specifik kärnversion (t.ex. Arcade ROM-uppsättningar)."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_CORE_DELETE,
|
|
"Ta bort kärna"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_CORE_DELETE,
|
|
"Ta bort denna kärna från disken."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_CORE_CREATE_BACKUP,
|
|
"Säkerhetskopiera kärna"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_CORE_CREATE_BACKUP,
|
|
"Spara en säkerhetskopia av den aktuella installerade kärnan."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_CORE_RESTORE_BACKUP_LIST,
|
|
"Återställ säkerhetskopia"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_CORE_RESTORE_BACKUP_LIST,
|
|
"Installera en tidigare version av kärnan från en lista över sparade säkerhetskopior."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_CORE_DELETE_BACKUP_LIST,
|
|
"Ta bort säkerhetskopian"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_CORE_DELETE_BACKUP_LIST,
|
|
"Ta bort en fil från listan över sparade säkerhetskopior."
|
|
)
|
|
|
|
/* Main Menu > Information > System Information */
|
|
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_BUILD_DATE,
|
|
"Kompileringsdatum"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_GIT_VERSION,
|
|
"Gitversion"
|
|
)
|
|
MSG_HASH( /* FIXME Should be MENU_LABEL_VALUE */
|
|
MSG_COMPILER,
|
|
"Kompilator"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_CPU_MODEL,
|
|
"Processormodell"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_CPU_FEATURES,
|
|
"Processorfunktioner"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_CPU_ARCHITECTURE,
|
|
"Arkitektur:"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_CPU_CORES,
|
|
"Processorkärnor:"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_CPU_CORES,
|
|
"Antalet kärnor som processorn har."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_FRONTEND_IDENTIFIER,
|
|
"Frontend-identifikation"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_FRONTEND_OS,
|
|
"Frontend-OS"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_RETRORATING_LEVEL,
|
|
"RetroRating-nivå"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_POWER_SOURCE,
|
|
"Strömkälla"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_VIDEO_CONTEXT_DRIVER,
|
|
"Drivrutin för videokontext"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_DISPLAY_METRIC_MM_WIDTH,
|
|
"Skärmens bredd (mm)"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_DISPLAY_METRIC_MM_HEIGHT,
|
|
"Skärmens höjd (mm)"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_DISPLAY_METRIC_DPI,
|
|
"Skärmens DPI"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_LIBRETRODB_SUPPORT,
|
|
"Stöd för LibretroDB"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OVERLAY_SUPPORT,
|
|
"Stöd för overlays"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_COMMAND_IFACE_SUPPORT,
|
|
"Stöd för Command Interface"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_NETWORK_COMMAND_IFACE_SUPPORT,
|
|
"Stöd för Network Command Interface"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_NETWORK_REMOTE_SUPPORT,
|
|
"Stöd för Network Controller"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_COCOA_SUPPORT,
|
|
"Stöd för Cocoa"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_RPNG_SUPPORT,
|
|
"Stöd för PNG (RPNG)"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_RJPEG_SUPPORT,
|
|
"Stöd för JPEG (RJPEG)"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_RBMP_SUPPORT,
|
|
"Stöd för BMP (RBMP)"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_RTGA_SUPPORT,
|
|
"Stöd för TGA (RTGA)"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_SDL_SUPPORT,
|
|
"Stöd för SDL 1.2"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_SDL2_SUPPORT,
|
|
"Stöd för SDL 2"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_VULKAN_SUPPORT,
|
|
"Stöd för Vulkan"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_METAL_SUPPORT,
|
|
"Stöd för Metal"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OPENGL_SUPPORT,
|
|
"Stöd för OpenGL"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OPENGLES_SUPPORT,
|
|
"Stöd för OpenGL ES"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_THREADING_SUPPORT,
|
|
"Stöd för Threading"
|
|
)
|
|
|
|
/* Main Menu > Information > Database Manager */
|
|
|
|
|
|
/* Main Menu > Information > Database Manager > Information */
|
|
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_RELEASE_MONTH,
|
|
"Releasedatum månad"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_RELEASE_YEAR,
|
|
"Releasedatum år"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_BBFC_RATING,
|
|
"BBFC-klassificering"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_ESRB_RATING,
|
|
"ESRB-klassificering"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_ELSPA_RATING,
|
|
"ELSPA-klassificering"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_PEGI_RATING,
|
|
"PEGI-klassificering"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_ENHANCEMENT_HW,
|
|
"Hårdvaruförbättring"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_CERO_RATING,
|
|
"CERO-klassificering"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_SERIAL,
|
|
"Serienummer"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_ANALOG,
|
|
"Stöd för analog kontroll"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_RUMBLE,
|
|
"Stöd för rumble"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_COOP,
|
|
"Stöd för co-op"
|
|
)
|
|
|
|
/* Main Menu > Configuration File */
|
|
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_CONFIGURATIONS,
|
|
"Ladda in konfiguration"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_RESET_TO_DEFAULT_CONFIG,
|
|
"Återställ grundinställningarna"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_RESET_TO_DEFAULT_CONFIG,
|
|
"Återställ alla inställningar till sina standardvärden."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SAVE_CURRENT_CONFIG,
|
|
"Spara inställningar"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SAVE_NEW_CONFIG,
|
|
"Spara inställningar som ny fil"
|
|
)
|
|
|
|
/* Main Menu > Help */
|
|
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_HELP_CONTROLS,
|
|
"Grundläggande menykontroller"
|
|
)
|
|
|
|
/* Main Menu > Help > Basic Menu Controls */
|
|
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_BASIC_MENU_CONTROLS_SCROLL_UP,
|
|
"Scrolla uppåt"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_BASIC_MENU_CONTROLS_SCROLL_DOWN,
|
|
"Scrolla nedåt"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_BASIC_MENU_CONTROLS_CONFIRM,
|
|
"Bekräfta"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_BASIC_MENU_CONTROLS_INFO,
|
|
"Information"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_BASIC_MENU_CONTROLS_TOGGLE_MENU,
|
|
"Visa/dölj meny"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_BASIC_MENU_CONTROLS_QUIT,
|
|
"Avsluta"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_BASIC_MENU_CONTROLS_TOGGLE_KEYBOARD,
|
|
"Visa/dölj tangentbord"
|
|
)
|
|
|
|
/* Settings */
|
|
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_DRIVER_SETTINGS,
|
|
"Drivrutiner"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_DRIVER_SETTINGS,
|
|
"Välj vilka drivrutiner som ska användas."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_VIDEO_SETTINGS,
|
|
"Bild"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_VIDEO_SETTINGS,
|
|
"Ändra bildinställningar."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_AUDIO_SETTINGS,
|
|
"Ljud"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_AUDIO_SETTINGS,
|
|
"Ändra ljudinställningar."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_INPUT_SETTINGS,
|
|
"Inmatning"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_INPUT_SETTINGS,
|
|
"Ändra inställningar för handkontroller, tangentbord och mus."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_LATENCY_SETTINGS,
|
|
"Latens"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_LATENCY_SETTINGS,
|
|
"Ändra inställningar relaterade till video, ljud och inmatningsfördröjning."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_CORE_SETTINGS,
|
|
"Kärna"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_CORE_SETTINGS,
|
|
"Ändra inställningar för kärnan."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_CONFIGURATION_SETTINGS,
|
|
"Inställningar"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_CONFIGURATION_SETTINGS,
|
|
"Ändra standardinställningar för konfigurationsfiler."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SAVING_SETTINGS,
|
|
"Lagring"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_SAVING_SETTINGS,
|
|
"Ändra inställningar för lagring av filer."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_LOGGING_SETTINGS,
|
|
"Loggar"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_LOGGING_SETTINGS,
|
|
"Ändra loggningsinställningar."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_MENU_FILE_BROWSER_SETTINGS,
|
|
"Filhanterare"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_MENU_FILE_BROWSER_SETTINGS,
|
|
"Ändra inställningar för filhanteraren."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_FRAME_THROTTLE_SETTINGS,
|
|
"Bildrute-begränsningar"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_FRAME_THROTTLE_SETTINGS,
|
|
"Ändra inställningarna för bakåt- och framåtspolning samt slow-motion."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_RECORDING_SETTINGS,
|
|
"Inspelning"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_RECORDING_SETTINGS,
|
|
"Ändra inspelningsinställningar."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_ONSCREEN_DISPLAY_SETTINGS,
|
|
"On Screen Display"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_ONSCREEN_DISPLAY_SETTINGS,
|
|
"Ändra inställningar för bild- och tangentbodsoverlays samt aviseringar."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_USER_INTERFACE_SETTINGS,
|
|
"Användargränssnitt"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_USER_INTERFACE_SETTINGS,
|
|
"Ändra inställningar för användargränssnittet."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_AI_SERVICE_SETTINGS,
|
|
"AI-tjänst"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_AI_SERVICE_SETTINGS,
|
|
"Ändra inställningar för AI-tjänsten (Translation/TTS/Misc)."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_ACCESSIBILITY_SETTINGS,
|
|
"Tillgänglighet"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_ACCESSIBILITY_SETTINGS,
|
|
"Ändra inställningar för Tillgänglighetsberättaren."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_POWER_MANAGEMENT_SETTINGS,
|
|
"Energialternativ"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_POWER_MANAGEMENT_SETTINGS,
|
|
"Ändra inställningar relaterade till strömförsörjning."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_RETRO_ACHIEVEMENTS_SETTINGS,
|
|
"Prestationer"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_RETRO_ACHIEVEMENTS_SETTINGS,
|
|
"Ändra inställningar för Prestationer."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_NETWORK_SETTINGS,
|
|
"Nätverk"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_NETWORK_SETTINGS,
|
|
"Konfigurera server- och nätverksinställningar."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_PLAYLIST_SETTINGS,
|
|
"Spellistor"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_PLAYLIST_SETTINGS,
|
|
"Ändra inställningar för spellistor."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_USER_SETTINGS,
|
|
"Användare"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_USER_SETTINGS,
|
|
"Ändra konto, användarnamn och språkinställningar."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_DIRECTORY_SETTINGS,
|
|
"Mappar"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_DIRECTORY_SETTINGS,
|
|
"Ändra standardmappar."
|
|
)
|
|
|
|
/* Settings > Drivers */
|
|
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_INPUT_DRIVER,
|
|
"Inmatning"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_INPUT_DRIVER,
|
|
"Vilken drivrutin som ska användas för inmatning. Vissa videodrivrutiner tvingar systemet att använda en viss inmatningsdrivrutin."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_JOYPAD_DRIVER,
|
|
"Handkontroll"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_JOYPAD_DRIVER,
|
|
"Handkontrolldrivrutin att använda."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_VIDEO_DRIVER,
|
|
"Bild"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_VIDEO_DRIVER,
|
|
"Bild-drivrutin att använda."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_AUDIO_DRIVER,
|
|
"Ljud"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_AUDIO_DRIVER,
|
|
"Ljuddrivrutin att använda."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_AUDIO_RESAMPLER_DRIVER,
|
|
"Ljud-resampler"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_AUDIO_RESAMPLER_DRIVER,
|
|
"Drivrutin att använda för ljud-resampling."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_CAMERA_DRIVER,
|
|
"Kamera"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_CAMERA_DRIVER,
|
|
"Kameradrivrutin att använda."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_BLUETOOTH_DRIVER,
|
|
"Bluetooth-drivrutin att använda."
|
|
)
|
|
|
|
/* Settings > Video */
|
|
|
|
|
|
/* Settings > Video > CRT SwitchRes */
|
|
|
|
|
|
/* Settings > Video > Output */
|
|
|
|
|
|
/* Settings > Video > Fullscreen Mode */
|
|
|
|
|
|
/* Settings > Video > Windowed Mode */
|
|
|
|
|
|
/* Settings > Video > Scaling */
|
|
|
|
|
|
/* 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 */
|
|
|
|
|
|
/* Settings > Input > Haptic Feedback/Vibration */
|
|
|
|
|
|
/* Settings > Input > Menu Controls */
|
|
|
|
|
|
/* Settings > Input > Hotkey Binds */
|
|
|
|
|
|
/* Settings > Input > Port # Binds */
|
|
|
|
|
|
/* 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 */
|
|
|
|
|
|
|
|
|
|
/* Settings > On-Screen Display > Video Layout */
|
|
|
|
|
|
/* Settings > On-Screen Display > On-Screen Notifications */
|
|
|
|
|
|
/* Settings > User Interface */
|
|
|
|
|
|
/* Settings > User Interface > Views */
|
|
|
|
|
|
/* Settings > User Interface > Views > 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 > Directory */
|
|
|
|
|
|
/* Music */
|
|
|
|
/* Music > Quick Menu */
|
|
|
|
|
|
/* Netplay */
|
|
|
|
|
|
/* Netplay > Host */
|
|
|
|
|
|
/* Import content */
|
|
|
|
|
|
/* Import content > Scan File */
|
|
|
|
|
|
/* Import content > Manual Scan */
|
|
|
|
|
|
/* Playlist > Playlist Item */
|
|
|
|
|
|
/* Playlist Item > Set Core Association */
|
|
|
|
|
|
/* Playlist Item > Information */
|
|
|
|
|
|
/* Quick Menu */
|
|
|
|
|
|
/* Quick Menu > Options */
|
|
|
|
|
|
/* 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
|