mirror of
https://github.com/libretro/RetroArch
synced 2025-01-31 15:32:59 +00:00
2111 lines
46 KiB
C
2111 lines
46 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,
|
|
"Hovedmeny"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SETTINGS_TAB,
|
|
"Innstillinger"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_FAVORITES_TAB,
|
|
"Favoritter"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_HISTORY_TAB,
|
|
"Historikk"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_IMAGES_TAB,
|
|
"Bilder"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_MUSIC_TAB,
|
|
"Musikk"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_VIDEO_TAB,
|
|
"Videoer"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_NETPLAY_TAB,
|
|
"Nettspill"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_EXPLORE_TAB,
|
|
"Utforsk"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_ADD_TAB,
|
|
"Importerer innhold"
|
|
)
|
|
|
|
/* Main Menu */
|
|
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_CONTENT_SETTINGS,
|
|
"Hurtigmeny"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_CONTENT_SETTINGS,
|
|
"Få rask adgang til alle relevante innstillinger i spillet."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_CORE_LIST,
|
|
"Last inn kjerne"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_CORE_LIST,
|
|
"Velg hvilken kjerne du skal bruke."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_LOAD_CONTENT_LIST,
|
|
"Last inn innhold"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_LOAD_CONTENT_LIST,
|
|
"Velg hvilket innhold som skal startes."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_LOAD_DISC,
|
|
"Last inn plate"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_LOAD_DISC,
|
|
"Last inn en fysisk medieplate. Først velg kjernen (Laste-Kjerne) som skal brukes med platen."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_DUMP_DISC,
|
|
"Dump plate"
|
|
)
|
|
MSG_HASH( /* FIXME Is a specific image format used? Is it determined automatically? User choice? */
|
|
MENU_ENUM_SUBLABEL_DUMP_DISC,
|
|
"Dump innholdet på medieplaten til internlagring. Den vil lagres som en avbildningsfil."
|
|
)
|
|
#ifdef HAVE_LAKKA
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_EJECT_DISC,
|
|
"Løs ut platen"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_EJECT_DISC,
|
|
"Løser ut disken fra den fysiske CD/DVD-leseren."
|
|
)
|
|
#endif
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_PLAYLISTS_TAB,
|
|
"Spillelister"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_PLAYLISTS_TAB,
|
|
"Skannet innhold som matcher databasen vises her."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_ADD_CONTENT_LIST,
|
|
"Importert innhold"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_ADD_CONTENT_LIST,
|
|
"Lag og oppdater spillelister ved å skanne innhold."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SHOW_WIMP,
|
|
"Vis skrivebordsmeny"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_SHOW_WIMP,
|
|
"Åpne den tradisjonelle skrivebordsmenyen."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_MENU_DISABLE_KIOSK_MODE,
|
|
"Deaktiver Kiosk-modus (Omstart kreves)"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_MENU_DISABLE_KIOSK_MODE,
|
|
"Vis alle konfigurasjonsrelaterte innstillinger."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_ONLINE_UPDATER,
|
|
"Oppdateringer fra nettet"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_ONLINE_UPDATER,
|
|
"Last ned tillegg, komponenter og innhold for RetroArch fra nettet."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_NETPLAY,
|
|
"Nettspill"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_NETPLAY,
|
|
"Bli med i eller start en nettspillsøkt."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SETTINGS,
|
|
"Innstillinger"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_SETTINGS,
|
|
"Konfigurer programmet."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_INFORMATION_LIST,
|
|
"Informasjon"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_INFORMATION_LIST_LIST,
|
|
"Vis systeminformasjon."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_CONFIGURATIONS_LIST,
|
|
"Konfigurasjonsfil"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_CONFIGURATIONS_LIST,
|
|
"Administrer og opprett konfigurasjonsfiler."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_HELP_LIST,
|
|
"Hjelp"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_HELP_LIST,
|
|
"Lær mer om hvordan programmet fungerer."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_RESTART_RETROARCH,
|
|
"Start RetroArch på nytt"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_RESTART_RETROARCH,
|
|
"Start programmet på nytt."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_QUIT_RETROARCH,
|
|
"Avslutt RetroArch"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_QUIT_RETROARCH,
|
|
"Avslutt programmet."
|
|
)
|
|
|
|
/* Main Menu > Load Core */
|
|
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_DOWNLOAD_CORE,
|
|
"Last ned en Kjerne"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_DOWNLOAD_CORE,
|
|
"Last ned og installer en kjerne fra nettet."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SIDELOAD_CORE_LIST,
|
|
"Installer eller gjenopprett en Kjerne"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_SIDELOAD_CORE_LIST,
|
|
"Installer eller gjenopprett en kjerne fra nedlastingsmappen."
|
|
)
|
|
MSG_HASH( /* FIXME Maybe add a description? */
|
|
MENU_ENUM_LABEL_VALUE_START_VIDEO_PROCESSOR,
|
|
"Start video prosessor"
|
|
)
|
|
MSG_HASH( /* FIXME Maybe add a description? */
|
|
MENU_ENUM_LABEL_VALUE_START_NET_RETROPAD,
|
|
"Start ekstern RetroPad"
|
|
)
|
|
|
|
/* Main Menu > Load Content */
|
|
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_FAVORITES,
|
|
"Startmappe"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_DOWNLOADED_FILE_DETECT_CORE_LIST,
|
|
"Nedlastinger"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_OPEN_ARCHIVE,
|
|
"Bla gjennom arkivet"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_LOAD_ARCHIVE,
|
|
"Last inn arkiv"
|
|
)
|
|
|
|
/* Main Menu > Load Content > Playlists */
|
|
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_GOTO_FAVORITES,
|
|
"Favoritter"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_GOTO_FAVORITES,
|
|
"Innhold som er lagt til i \"favoritter\" vil vises her."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_GOTO_MUSIC,
|
|
"Musikk"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_GOTO_MUSIC,
|
|
"Musikk som tidligere har blitt spilt vil vises her."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_GOTO_IMAGES,
|
|
"Bilder"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_GOTO_IMAGES,
|
|
"Bilder som tidligere har blitt vist vil dukke opp her."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_GOTO_VIDEO,
|
|
"Videoer"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_GOTO_VIDEO,
|
|
"Videoer som tidligere har blitt spilt vil dukke opp her."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_GOTO_EXPLORE,
|
|
"Utforsk"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_GOTO_EXPLORE,
|
|
"Bla gjennom alt innhold som matcher databasen via et kategorisert søkevindu."
|
|
)
|
|
|
|
/* Main Menu > Online Updater */
|
|
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_CORE_UPDATER_LIST,
|
|
"Kjernenedlaster"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_UPDATE_INSTALLED_CORES,
|
|
"Oppdater installerte Kjerner"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_UPDATE_INSTALLED_CORES,
|
|
"Oppdater alle installerte kjerne til den nyeste versjonen tilgjengelig."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SWITCH_INSTALLED_CORES_PFD,
|
|
"Bytt kjerner til Play Store versjoner"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_SWITCH_INSTALLED_CORES_PFD,
|
|
"Erstatt alle utdaterte og manuelt installerte kjerner med de siste versjonene fra Play Store, der de er tilgjengelig."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_THUMBNAILS_UPDATER_LIST,
|
|
"Forhåndsbildeoppdaterer"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_THUMBNAILS_UPDATER_LIST,
|
|
"Last ned komplette forhåndsbildepakker for valgte konsoller."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_PL_THUMBNAILS_UPDATER_LIST,
|
|
"Spilleliste forhåndsbildeoppdaterer"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_PL_THUMBNAILS_UPDATER_LIST,
|
|
"Last ned forhåndsbilder for oppføringer i den valgte spillelisten."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_DOWNLOAD_CORE_CONTENT,
|
|
"Innholdnedlaster"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_DOWNLOAD_CORE_SYSTEM_FILES,
|
|
"Kjerne systemfiler Nedlaster"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_DOWNLOAD_CORE_SYSTEM_FILES,
|
|
"Last ned tilleggssystemfiler som kreves for korrekt/optimal kjerne operasjon."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_UPDATE_CORE_INFO_FILES,
|
|
"Oppdater kjerneinfo filer"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_UPDATE_ASSETS,
|
|
"Oppdater ressurser"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_UPDATE_AUTOCONFIG_PROFILES,
|
|
"Oppdater kontrollerprofiler"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_UPDATE_CHEATS,
|
|
"Oppdater juksekoder"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_UPDATE_DATABASES,
|
|
"Oppdater databasen"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_UPDATE_OVERLAYS,
|
|
"Oppdater overlegg"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_UPDATE_GLSL_SHADERS,
|
|
"Oppdater GLSL shadere"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_UPDATE_CG_SHADERS,
|
|
"Oppdater Cg shadere"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_UPDATE_SLANG_SHADERS,
|
|
"Oppdater Cg shadere"
|
|
)
|
|
|
|
/* Main Menu > Information */
|
|
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_CORE_INFORMATION,
|
|
"Kjerneinformasjon"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_CORE_INFORMATION,
|
|
"Se informasjon om applikasjonen/kjernen."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_DISC_INFORMATION,
|
|
"Disk informasjon"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_DISC_INFORMATION,
|
|
"Se informasjon om mediadisken i konsollen."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_NETWORK_INFORMATION,
|
|
"Nettverksinformasjon"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_NETWORK_INFORMATION,
|
|
"Se nettverksgrensesnitt og tilknyttede IP-adresser."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SYSTEM_INFORMATION,
|
|
"Systeminformasjon"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_SYSTEM_INFORMATION,
|
|
"Se informasjon spesifikk til enheten."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_DATABASE_MANAGER,
|
|
"Database behandler"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_DATABASE_MANAGER,
|
|
"Vis databaser."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_CURSOR_MANAGER,
|
|
"Musepeker behandler"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_CURSOR_MANAGER,
|
|
"Vis tidligere søk."
|
|
)
|
|
|
|
/* Main Menu > Information > Core Information */
|
|
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_CORE_INFO_CORE_NAME,
|
|
"Kjernenavn"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_CORE_INFO_CORE_LABEL,
|
|
"Kjerne etikett"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_CORE_INFO_SYSTEM_NAME,
|
|
"Systemnavn"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_CORE_INFO_SYSTEM_MANUFACTURER,
|
|
"Systemprodusent"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_CORE_INFO_CATEGORIES,
|
|
"Kategorier"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_CORE_INFO_AUTHORS,
|
|
"Forfatter"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_CORE_INFO_PERMISSIONS,
|
|
"Tillatelser"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_CORE_INFO_LICENSES,
|
|
"Lisens"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_CORE_INFO_SUPPORTED_EXTENSIONS,
|
|
"Støttede Utvidelser"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_CORE_INFO_REQUIRED_HW_API,
|
|
"Nødvendig grafikk API"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_CORE_INFO_FIRMWARE,
|
|
"Fastvare"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_MISSING_REQUIRED,
|
|
"Mangler, Påkrevd:"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_MISSING_OPTIONAL,
|
|
"Mangler, Valgfritt:"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_PRESENT_REQUIRED,
|
|
"Tilstede, Påkrevd:"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_PRESENT_OPTIONAL,
|
|
"Tilstede, Valgfritt:"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_CORE_LOCK,
|
|
"Lås Installert Kjerne"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_CORE_LOCK,
|
|
"Forhindre modifisering av nåværende installerte kjerne. Kan brukes for å unngå uønskede oppdateringer når innholdet krever en spesifikk kjerneversjon (f.eks. Arkade ROM-sett)."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_CORE_DELETE,
|
|
"Slett kjerne"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_CORE_DELETE,
|
|
"Fjern denne kjernen fra harddisken."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_CORE_CREATE_BACKUP,
|
|
"Sikkerhetskopier Kjernen"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_CORE_CREATE_BACKUP,
|
|
"Opprett en arkivert sikkerhetskopi av den installerte kjernen."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_CORE_RESTORE_BACKUP_LIST,
|
|
"Gjenopprett sikkerhetskopien"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_CORE_RESTORE_BACKUP_LIST,
|
|
"Installer en tidligere versjon av kjernen fra en liste over arkiverte sikkerhetskopier."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_CORE_DELETE_BACKUP_LIST,
|
|
"Slett Sikkerhetskopi"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_CORE_DELETE_BACKUP_LIST,
|
|
"Fjerne en fil fra listen over arkiverte sikkerhetskopier."
|
|
)
|
|
|
|
/* Main Menu > Information > System Information */
|
|
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_BUILD_DATE,
|
|
"Dato for nåværende programvareversjon"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_GIT_VERSION,
|
|
"Git versjon"
|
|
)
|
|
MSG_HASH( /* FIXME Should be MENU_LABEL_VALUE */
|
|
MSG_COMPILER,
|
|
"Kompilator"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_CPU_MODEL,
|
|
"CPU modell"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_CPU_FEATURES,
|
|
"CPU funksjoner"
|
|
)
|
|
MSG_HASH( /* FIXME Colon should be handled in menu_display.c like the rest */
|
|
MENU_ENUM_LABEL_VALUE_CPU_ARCHITECTURE,
|
|
"CPU arkitektur:"
|
|
)
|
|
MSG_HASH( /* FIXME Colon should be handled in menu_display.c like the rest */
|
|
MENU_ENUM_LABEL_VALUE_CPU_CORES,
|
|
"CPU kjerner:"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_CPU_CORES,
|
|
"Antall kjerner som CPU-en har."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_FRONTEND_IDENTIFIER,
|
|
"Frontend indentifikator"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_FRONTEND_OS,
|
|
"Frontdel OS"
|
|
)
|
|
MSG_HASH( /* FIXME Maybe add a description? */
|
|
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_RETRORATING_LEVEL,
|
|
"RetroRating Nivå"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_POWER_SOURCE,
|
|
"Strømkilde"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_VIDEO_CONTEXT_DRIVER,
|
|
"Videokontekst driver"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_DISPLAY_METRIC_MM_WIDTH,
|
|
"Visningsbredde (mm)"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_DISPLAY_METRIC_MM_HEIGHT,
|
|
"Visningshøyde (mm)"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_DISPLAY_METRIC_DPI,
|
|
"Visnings-DPI"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_LIBRETRODB_SUPPORT,
|
|
"LibretroDB støtte"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OVERLAY_SUPPORT,
|
|
"Overleggstøtte"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_COMMAND_IFACE_SUPPORT,
|
|
"Kommandogrensesnitt støtte"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_NETWORK_COMMAND_IFACE_SUPPORT,
|
|
"Nettverks kommandogrensesnitt støtte"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_NETWORK_REMOTE_SUPPORT,
|
|
"Nettverkskontroll støtte"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_COCOA_SUPPORT,
|
|
"Cocoa støtte"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_RPNG_SUPPORT,
|
|
"PNG (RPNG) støtte"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_RJPEG_SUPPORT,
|
|
"JPEG (RJPEG) støtte"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_RBMP_SUPPORT,
|
|
"BMP (RBMP)-støtte"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_RTGA_SUPPORT,
|
|
"TGA (RTGA) støtte"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_SDL_SUPPORT,
|
|
"SDL 1.2 Støtte"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_SDL2_SUPPORT,
|
|
"SDL 2 Støtte"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_VULKAN_SUPPORT,
|
|
"Vulkan støtte"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_METAL_SUPPORT,
|
|
"Metal støtte"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OPENGL_SUPPORT,
|
|
"OpenGL støtte"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OPENGLES_SUPPORT,
|
|
"OpenGL ES støtte"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_THREADING_SUPPORT,
|
|
"Threading støtte"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_KMS_SUPPORT,
|
|
"KMS/EGL støtte"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_UDEV_SUPPORT,
|
|
"udev støtte"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OPENVG_SUPPORT,
|
|
"OpenVG støtte"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_EGL_SUPPORT,
|
|
"EGL støtte"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_X11_SUPPORT,
|
|
"X11 støtte"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_WAYLAND_SUPPORT,
|
|
"Wayland støtte"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_XVIDEO_SUPPORT,
|
|
"XVideo støtte"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_ALSA_SUPPORT,
|
|
"ALSA støtte"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OSS_SUPPORT,
|
|
"OSS støtte"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OPENAL_SUPPORT,
|
|
"OpenAL støtte"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OPENSL_SUPPORT,
|
|
"OpenSL støtte"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_RSOUND_SUPPORT,
|
|
"RSound støtte"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_ROARAUDIO_SUPPORT,
|
|
"RoarAudio støtte"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_JACK_SUPPORT,
|
|
"JACK støtte"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_PULSEAUDIO_SUPPORT,
|
|
"PulseAudio støtte"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_COREAUDIO_SUPPORT,
|
|
"CoreAudio støtte"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_COREAUDIO3_SUPPORT,
|
|
"CoreAudio V3-støtte"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_DSOUND_SUPPORT,
|
|
"DirectSound støtte"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_WASAPI_SUPPORT,
|
|
"WASAPI støtte"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_XAUDIO2_SUPPORT,
|
|
"XAudio2 støtte"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_ZLIB_SUPPORT,
|
|
"zlib støtte"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_7ZIP_SUPPORT,
|
|
"7zip støtte"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_DYLIB_SUPPORT,
|
|
"Dynamic Library støtte"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_DYNAMIC_SUPPORT,
|
|
"Dynamisk kjøretidlasting av Libretro Library"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_CG_SUPPORT,
|
|
"Cg støtte"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_GLSL_SUPPORT,
|
|
"GLSL støtte"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_HLSL_SUPPORT,
|
|
"HLSL støtte"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_SDL_IMAGE_SUPPORT,
|
|
"SDL-bilde støtte"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_FFMPEG_SUPPORT,
|
|
"FFmpeg støtte"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_MPV_SUPPORT,
|
|
"mpv støtte"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_CORETEXT_SUPPORT,
|
|
"CoreText støtte"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_FREETYPE_SUPPORT,
|
|
"FreeType støtte"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_STB_TRUETYPE_SUPPORT,
|
|
"STB TrueType støtte"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_NETPLAY_SUPPORT,
|
|
"Nettspill (Peer-til-Peer) støtte"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_PYTHON_SUPPORT,
|
|
"Python (Script Support in Shaders) støtte"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_V4L2_SUPPORT,
|
|
"Video4Linux2 Støtte"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_LIBUSB_SUPPORT,
|
|
"libusb Støtte"
|
|
)
|
|
|
|
/* Main Menu > Information > Database Manager */
|
|
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_DATABASE_SELECTION,
|
|
"Database utvalg"
|
|
)
|
|
|
|
/* Main Menu > Information > Database Manager > Information */
|
|
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_NAME,
|
|
"Navn"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_DESCRIPTION,
|
|
"Beskrivelse"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_GENRE,
|
|
"Sjanger"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_PUBLISHER,
|
|
"Utgiver"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_DEVELOPER,
|
|
"Utvikler"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_ORIGIN,
|
|
"Opprinnelse"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_FRANCHISE,
|
|
"Serie"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_TGDB_RATING,
|
|
"TGDB Vurdering"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_FAMITSU_MAGAZINE_RATING,
|
|
"Famitsu Magasin vurdering"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_EDGE_MAGAZINE_REVIEW,
|
|
"Edge magasin anmeldelse"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_EDGE_MAGAZINE_RATING,
|
|
"Edge magasin vurdering"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_EDGE_MAGAZINE_ISSUE,
|
|
"Edge magasin nummer"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_RELEASE_MONTH,
|
|
"Utgivelsesmåned"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_RELEASE_YEAR,
|
|
"Utgivelsesår"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_BBFC_RATING,
|
|
"BBFC Vurdering"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_ESRB_RATING,
|
|
"ESRB Vurdering"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_ELSPA_RATING,
|
|
"ELSPA vurdering"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_PEGI_RATING,
|
|
"PEGI Vurdering"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_ENHANCEMENT_HW,
|
|
"Oppgradert maskinvare"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_CERO_RATING,
|
|
"CERO vurdering"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_SERIAL,
|
|
"Serial kode"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_ANALOG,
|
|
"Støtter analoge spaker"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_RUMBLE,
|
|
"Støtter rumble"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_COOP,
|
|
"Støtter co-op"
|
|
)
|
|
|
|
/* Main Menu > Configuration File */
|
|
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_CONFIGURATIONS,
|
|
"Last inn konfigurasjon"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_RESET_TO_DEFAULT_CONFIG,
|
|
"Nullstill til standard"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_RESET_TO_DEFAULT_CONFIG,
|
|
"Nullstill den nåværende konfigurasjonen til standardverdier."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SAVE_CURRENT_CONFIG,
|
|
"Lagre nåværende konfigurasjon"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SAVE_NEW_CONFIG,
|
|
"Lagre ny konfigurasjon"
|
|
)
|
|
|
|
/* Main Menu > Help */
|
|
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_HELP_CONTROLS,
|
|
"Grunnleggende menykontroller"
|
|
)
|
|
|
|
/* Main Menu > Help > Basic Menu Controls */
|
|
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_BASIC_MENU_CONTROLS_SCROLL_UP,
|
|
"Rull opp"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_BASIC_MENU_CONTROLS_SCROLL_DOWN,
|
|
"Rull ned"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_BASIC_MENU_CONTROLS_CONFIRM,
|
|
"Bekreft"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_BASIC_MENU_CONTROLS_TOGGLE_MENU,
|
|
"Vis/skjul meny"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_BASIC_MENU_CONTROLS_QUIT,
|
|
"Avslutt"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_BASIC_MENU_CONTROLS_TOGGLE_KEYBOARD,
|
|
"Veksle til/fra tastatur"
|
|
)
|
|
|
|
/* Settings */
|
|
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_DRIVER_SETTINGS,
|
|
"Drivere"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_DRIVER_SETTINGS,
|
|
"Endre drivere som brukes av systemet."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_VIDEO_SETTINGS,
|
|
"Endre innstillinger for video utdata."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_AUDIO_SETTINGS,
|
|
"Lyd"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_AUDIO_SETTINGS,
|
|
"Endre innstillinger for lydutgang."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_INPUT_SETTINGS,
|
|
"Inndata"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_INPUT_SETTINGS,
|
|
"Endre instillinger for tastatur og mus, og kontroller."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_LATENCY_SETTINGS,
|
|
"Latens"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_LATENCY_SETTINGS,
|
|
"Endre innstillinger knyttet til video, lyd og inndata latens."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_CORE_SETTINGS,
|
|
"Kjerne"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_CORE_SETTINGS,
|
|
"Endre instillinger for kjerner."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_CONFIGURATION_SETTINGS,
|
|
"Konfigurasjon"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_CONFIGURATION_SETTINGS,
|
|
"Endre standardinnstillingene for konfigurasjonsfiler."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SAVING_SETTINGS,
|
|
"Lagrer"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_SAVING_SETTINGS,
|
|
"Endre instillinger for lagring."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_LOGGING_SETTINGS,
|
|
"Endre instillinger for logging."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_MENU_FILE_BROWSER_SETTINGS,
|
|
"Filutforsker"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_MENU_FILE_BROWSER_SETTINGS,
|
|
"Endre instillinger for filutforsker."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_FRAME_THROTTLE_SETTINGS,
|
|
"Rammekvelning"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_FRAME_THROTTLE_SETTINGS,
|
|
"Endre innstillinger for spol tilbake, spol fremover og saktefilm."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_RECORDING_SETTINGS,
|
|
"Tar opp"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_RECORDING_SETTINGS,
|
|
"Endre instillinger for opptak."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_ONSCREEN_DISPLAY_SETTINGS,
|
|
"Skjermvisning"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_ONSCREEN_DISPLAY_SETTINGS,
|
|
"Endre instillinger for visningsoverlegg og tastaturoverlegg, og notifikasjoner på skjermen."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_USER_INTERFACE_SETTINGS,
|
|
"Brukergrensesnitt"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_USER_INTERFACE_SETTINGS,
|
|
"Endre innstillinger for brukergrensesnitt."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_AI_SERVICE_SETTINGS,
|
|
"Endre innstillinger for AI Service (oversettelse/tekst til tale/div.)."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_ACCESSIBILITY_SETTINGS,
|
|
"Hjelpemiddel"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_ACCESSIBILITY_SETTINGS,
|
|
"Endre innstillinger for skjermleseren."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_POWER_MANAGEMENT_SETTINGS,
|
|
"Strømstyring"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_POWER_MANAGEMENT_SETTINGS,
|
|
"Endre instillinger for strømstyring."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_RETRO_ACHIEVEMENTS_SETTINGS,
|
|
"Prestasjoner"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_RETRO_ACHIEVEMENTS_SETTINGS,
|
|
"Endre innstillinger for prestasjoner."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_NETWORK_SETTINGS,
|
|
"Nettverk"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_NETWORK_SETTINGS,
|
|
"Endre innstillinger for servere og nettverk."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_PLAYLIST_SETTINGS,
|
|
"Spillelister"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_PLAYLIST_SETTINGS,
|
|
"Endre innstillinger for spillelister."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_USER_SETTINGS,
|
|
"Bruker"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_USER_SETTINGS,
|
|
"Endre innstillinger for brukerkonto, brukernavn og språk."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_DIRECTORY_SETTINGS,
|
|
"Katalog"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_DIRECTORY_SETTINGS,
|
|
"Endre standardmapper hvor filer er plassert."
|
|
)
|
|
|
|
/* Settings > Drivers */
|
|
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_INPUT_DRIVER,
|
|
"Inndata"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_INPUT_DRIVER,
|
|
"Inndatadriveren for å bruke. Noen videodrivere tvinger en annen inndatadriver."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_JOYPAD_DRIVER,
|
|
"Kontroller"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_JOYPAD_DRIVER,
|
|
"Kontrollerdriveren som brukes."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_VIDEO_DRIVER,
|
|
"Videodriveren som brukes."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_AUDIO_DRIVER,
|
|
"Lyd"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_AUDIO_DRIVER,
|
|
"Lyddriveren som brukes."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_AUDIO_RESAMPLER_DRIVER,
|
|
"Lyd samplingsfrekvens-konverterer"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_AUDIO_RESAMPLER_DRIVER,
|
|
"Lyd samplingsfrekvens-konverterer som brukes."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_CAMERA_DRIVER,
|
|
"Kamera"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_CAMERA_DRIVER,
|
|
"Kameradriveren som brukes."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_BLUETOOTH_DRIVER,
|
|
"Bluetoothdriveren som brukes."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_WIFI_DRIVER,
|
|
"Wi-Fi driveren som brukes."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_LOCATION_DRIVER,
|
|
"Posisjon"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_LOCATION_DRIVER,
|
|
"Posisjonsdriveren som brukes."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_MENU_DRIVER,
|
|
"Meny"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_MENU_DRIVER,
|
|
"Menydriveren som brukes."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_RECORD_DRIVER,
|
|
"Opptak"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_RECORD_DRIVER,
|
|
"Opptaksdriveren som brukes."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_MIDI_DRIVER,
|
|
"MIDIdriveren som brukes."
|
|
)
|
|
|
|
/* Settings > Video */
|
|
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_CRT_SWITCHRES_SETTINGS,
|
|
"Send ut innebygde, lavoppløselige signaler for CRT-skjermer."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_VIDEO_OUTPUT_SETTINGS,
|
|
"Utdata"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_VIDEO_OUTPUT_SETTINGS,
|
|
"Endre innstillinger for video utdata."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_VIDEO_FULLSCREEN_MODE_SETTINGS,
|
|
"Fullskjermmodus"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_VIDEO_FULLSCREEN_MODE_SETTINGS,
|
|
"Endre innstillinger for fullskjermmodus."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_VIDEO_WINDOWED_MODE_SETTINGS,
|
|
"Vindusmodus"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_VIDEO_WINDOWED_MODE_SETTINGS,
|
|
"Endre innstillinger for vindusmodus."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_VIDEO_SCALING_SETTINGS,
|
|
"Skalering"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_VIDEO_SCALING_SETTINGS,
|
|
"Endre innstillinger for videoskalering."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_VIDEO_HDR_SETTINGS,
|
|
"Endre instillinger for HD video."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_VIDEO_SYNCHRONIZATION_SETTINGS,
|
|
"Synkronisering"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_VIDEO_SYNCHRONIZATION_SETTINGS,
|
|
"Endre innstillinger for videosynkronisering."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SUSPEND_SCREENSAVER_ENABLE,
|
|
"Slå av skjermsparer"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_SUSPEND_SCREENSAVER_ENABLE,
|
|
"Forhindre at systemets skjermsparer aktiveres."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_VIDEO_THREADED,
|
|
"Trådet video"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_VIDEO_THREADED,
|
|
"Forbedrer ytelsen på bekostning av latens og mer hakk i videoen. Bruk bare hvis full hastighet ikke kan oppnås på noe annet vis."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_VIDEO_BLACK_FRAME_INSERTION,
|
|
"Svart rammeinnsetting"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_VIDEO_BLACK_FRAME_INSERTION,
|
|
"Sett inn en svart ramme mellom bilder. Nyttig på noen høy oppdateringsfrekvensskjermer for å eliminere \"ghosting\"."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_VIDEO_GPU_SCREENSHOT,
|
|
"GPU skjermbilde"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_VIDEO_GPU_SCREENSHOT,
|
|
"Tar skjermbilde av GPU-skyggelagt materiale hvis det er tilgjengelig."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_VIDEO_SMOOTH,
|
|
"Bilineær filtrering"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_VIDEO_SMOOTH,
|
|
"Legger til en liten uskarphet til bildet for å myke opp harde pikselkanter. Dette alternativet har en svært liten innvirkning på ytelse."
|
|
)
|
|
#if defined(DINGUX)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_VIDEO_DINGUX_IPU_FILTER_TYPE,
|
|
"Bilde Interpolering"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_VIDEO_DINGUX_IPU_FILTER_TYPE,
|
|
"Angi bilde interpoleringsmetode når du skalerer innhold via intern IPU. \"Bikubisk\" eller \"Bilineær\" anbefales når en bruker CPU-drevne videofiltre. Dette valget har ingen påvirkelse på ytelse."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_VIDEO_DINGUX_IPU_FILTER_BICUBIC,
|
|
"Bikubisk"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_VIDEO_DINGUX_IPU_FILTER_BILINEAR,
|
|
"Bilineær"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_VIDEO_DINGUX_IPU_FILTER_NEAREST,
|
|
"Nærmeste nabo"
|
|
)
|
|
#if defined(RS90) || defined(MIYOO)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_VIDEO_DINGUX_RS90_SOFTFILTER_TYPE,
|
|
"Bilde Interpolering"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_VIDEO_DINGUX_RS90_SOFTFILTER_TYPE,
|
|
"Spesifiser bildeinterpoleringsmetode når \"Integer Skala\" er deaktivert. \"Nærmeste nabo\" har minst påvirkelse på ytelse."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_VIDEO_DINGUX_RS90_SOFTFILTER_POINT,
|
|
"Nærmeste nabo"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_VIDEO_DINGUX_RS90_SOFTFILTER_BRESENHAM_HORZ,
|
|
"Semi-lineær"
|
|
)
|
|
#endif
|
|
#endif
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_VIDEO_SHADER_DELAY,
|
|
"Auto-Shader Forsinkelse"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_VIDEO_SHADER_DELAY,
|
|
"Forsink auto-lasting av shader (i ms). Kan jobbe rundt grafiske glitcher når du bruker programvare for \"skjermkopier\"."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_VIDEO_FILTER,
|
|
"Video filter"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_VIDEO_FILTER,
|
|
"Bruk et CPU-drevet videofilter. Kan ha høy ytelseskostnad. Noen videofiltre kan bare fungere for kjerner som bruker 32-biters eller 16-biters farge."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_VIDEO_FILTER_REMOVE,
|
|
"Fjern videofilter"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_VIDEO_FILTER_REMOVE,
|
|
"Last ut alle aktive CPU-drevne videofilter."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_VIDEO_NOTCH_WRITE_OVER,
|
|
"Aktiver fullskjerm over skjermrammer i Android-enheter"
|
|
)
|
|
|
|
/* Settings > Video > CRT SwitchRes */
|
|
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_CRT_SWITCH_RESOLUTION,
|
|
"Kun for CRT skjermer. Denne innstillingen prøver å bruke eksakt kjernen/spilloppløsning og oppfriskingsrate."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_CRT_SWITCH_RESOLUTION_SUPER,
|
|
"CRT Superoppløsning"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_CRT_SWITCH_RESOLUTION_SUPER,
|
|
"Bytt mellom innebygde og ultrabrede superoppløsninger."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_CRT_SWITCH_X_AXIS_CENTERING,
|
|
"X-Akse sentrering"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_CRT_SWITCH_X_AXIS_CENTERING,
|
|
"Bla gjennom disse alternativene hvis bildet ikke er sentrert riktig på skjermen."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_CRT_SWITCH_HIRES_MENU,
|
|
"Bruk høyoppløsings meny"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_CRT_SWITCH_HIRES_MENU,
|
|
"Bytt til modeline med høy oppløsning for bruk med høyoppløselige menyer når ikke noe innhold er lastet inn."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_CRT_SWITCH_RESOLUTION_USE_CUSTOM_REFRESH_RATE,
|
|
"Egendefinert oppdateringsrate"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_CRT_SWITCH_RESOLUTION_USE_CUSTOM_REFRESH_RATE,
|
|
"Bruk en egendefinert oppdateringsrate spesifisert i konfigurasjonsfilen hvis nødvendig."
|
|
)
|
|
|
|
/* Settings > Video > Output */
|
|
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_VIDEO_MONITOR_INDEX,
|
|
"Skjermindeks"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_VIDEO_MONITOR_INDEX,
|
|
"Velg hvilken skjerm som skal brukes."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_VIDEO_ROTATION,
|
|
"Videorotasjon"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_VIDEO_ROTATION,
|
|
"Tvinger en bestemt rotasjon av videosignalet. Rotasjonen legges til eventuell rotering som er satt av kjernen."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SCREEN_ORIENTATION,
|
|
"Skjermorientering"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_SCREEN_ORIENTATION,
|
|
"Tvinger en bestemt orientering av skjermen fra operativsystemet."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_VIDEO_GPU_INDEX,
|
|
"GPU indeks"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_VIDEO_GPU_INDEX,
|
|
"Velg hvilket grafikkort som skal brukes."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_VIDEO_WINDOW_OFFSET_X,
|
|
"Horisontal skjermforskyvning"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_VIDEO_WINDOW_OFFSET_X,
|
|
"Tvinger en bestemt horisontal forskyvning til videosignalet. Forskyvningen påføres globalt."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_VIDEO_WINDOW_OFFSET_Y,
|
|
"Vertikal skjermforskyvning"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_VIDEO_WINDOW_OFFSET_Y,
|
|
"Tvinger en bestemt vertikal forskyvning til videosignalet. forskyvningen påføres globalt."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_VIDEO_REFRESH_RATE,
|
|
"Vertikal oppdateringsrate"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_VIDEO_REFRESH_RATE,
|
|
"Vertikal oppdateringsrate på skjermen. Brukes til å kalkulere en passende lydinndata rate.\nDette vil bli ignorert hvis \"Trådet Video\" er aktivert."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_VIDEO_REFRESH_RATE_AUTO,
|
|
"Estimert oppdateringsrate for skjermen"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_VIDEO_REFRESH_RATE_AUTO,
|
|
"Nøyaktig estimert oppdateringsrate av skjermen i Hz."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_VIDEO_REFRESH_RATE_POLLED,
|
|
"Velg visningsrapportert oppdateringsfrekvens"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_VIDEO_REFRESH_RATE_POLLED,
|
|
"Oppdateringsraten som er rapportert av visningsdriveren."
|
|
)
|
|
#if defined(DINGUX) && defined(DINGUX_BETA)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_VIDEO_DINGUX_REFRESH_RATE,
|
|
"Vertikal oppdateringsrate"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_VIDEO_DINGUX_REFRESH_RATE,
|
|
"Sett vertikal oppdateringsrate for visningen. \"50 Hz\" vil aktivere glatt video når du kjører PAL innhold."
|
|
)
|
|
#endif
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_VIDEO_FORCE_SRGB_DISABLE,
|
|
"Tvangsdeaktiver sRGB FBO"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_VIDEO_FORCE_SRGB_DISABLE,
|
|
"Tvangsdeaktiverer sRGB FBO støtte. Noen Intel OpenGL drivere på windows har videoproblemer med sRGB FBO. Slå på denne innstillingen for å mulligens jobbe rundt det."
|
|
)
|
|
|
|
/* Settings > Video > Fullscreen Mode */
|
|
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_VIDEO_FULLSCREEN,
|
|
"Start i Fullskjermmodus"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_VIDEO_FULLSCREEN,
|
|
"Start i fullskjerm. Kan endres mens programmet kjøres. Kan overstyres med en kommandolinjebryter."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_VIDEO_WINDOWED_FULLSCREEN,
|
|
"Fullskjermsmodus i vindu"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_VIDEO_WINDOWED_FULLSCREEN,
|
|
"Hvis fullskjerm er på, foretrekk fullskjerm i vindumodus for å forhindre visningsmodus bytte."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_VIDEO_FULLSCREEN_X,
|
|
"Fullskjerm bredde"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_VIDEO_FULLSCREEN_X,
|
|
"Angi en egendefinert bredde for fullskjermmodus. Hvis denne er blank vil skrivebordsoppløsningen brukes."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_VIDEO_FULLSCREEN_Y,
|
|
"Fullskjerm høyde"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_VIDEO_FULLSCREEN_Y,
|
|
"Angi en egendefinert høyde for fullskjermmodus. Hvis denne er blank vil skrivebordsoppløsningen brukes."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_VIDEO_FORCE_RESOLUTION,
|
|
"Tving oppløsning på UWP"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_VIDEO_FORCE_RESOLUTION,
|
|
"Tving oppløsningen til fullskjerm størrelsen. Hvis satt til 0, brukes en fast verdi på 3840 x 2160."
|
|
)
|
|
|
|
/* Settings > Video > Windowed Mode */
|
|
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_VIDEO_SCALE,
|
|
"Vindu skala"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_VIDEO_WINDOW_OPACITY,
|
|
"Gjennomsiktighet for vindumodus"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_VIDEO_WINDOW_SHOW_DECORATIONS,
|
|
"Vis vindudekorasjoner"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_VIDEO_WINDOW_SAVE_POSITION,
|
|
"Husk vinduets posisjon og størrelse"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_VIDEO_WINDOW_SAVE_POSITION,
|
|
"Vis alt innhold i et fast vindu med dimensjoner angitt av \"Vinduets bredde\" og \"Vinduets høyde\", og lagre gjeldende vindusstørrelse og posisjon når RetroArch lukkes. Når deaktivert blir vindusstørrelsen satt dynamisk basert på \"Vindu skala\"."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_VIDEO_WINDOW_CUSTOM_SIZE_ENABLE,
|
|
"Bruk egendefinert vindusstørrelse"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_VIDEO_WINDOW_CUSTOM_SIZE_ENABLE,
|
|
"Vis alt innhold i et fast vindu av dimensjoner angitt med 'Vinduets bredde' og 'Vinduets høyde'. Når deaktivert, blir vindusstørrelsen satt dynamisk basert på 'Windowed Scale'."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_VIDEO_WINDOW_WIDTH,
|
|
"Vindu bredde"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_VIDEO_WINDOW_WIDTH,
|
|
"Angi en egendefinert bredde for visningsvinduet."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_VIDEO_WINDOW_HEIGHT,
|
|
"Vindu høyde"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_VIDEO_WINDOW_HEIGHT,
|
|
"Angi en egendefinert høyde for visningsvinduet."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_VIDEO_WINDOW_AUTO_WIDTH_MAX,
|
|
"Maksimal vindubredde"
|
|
)
|
|
|
|
/* Settings > Video > Scaling */
|
|
|
|
#if defined(DINGUX)
|
|
#endif
|
|
|
|
/* Settings > Video > HDR */
|
|
|
|
|
|
/* Settings > Video > Synchronization */
|
|
|
|
|
|
/* Settings > Audio */
|
|
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_AUDIO_OUTPUT_SETTINGS,
|
|
"Utdata"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_AUDIO_OUTPUT_SETTINGS,
|
|
"Endre innstillinger for lydutgang."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_AUDIO_SYNCHRONIZATION_SETTINGS,
|
|
"Synkronisering"
|
|
)
|
|
|
|
/* Settings > Audio > Output */
|
|
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_AUDIO_ENABLE,
|
|
"Lyd"
|
|
)
|
|
|
|
/* Settings > Audio > Resampler */
|
|
|
|
|
|
/* Settings > Audio > Synchronization */
|
|
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_AUDIO_SYNC,
|
|
"Synkronisering"
|
|
)
|
|
|
|
/* Settings > Audio > MIDI */
|
|
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_MIDI_INPUT,
|
|
"Inndata"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_MIDI_OUTPUT,
|
|
"Utdata"
|
|
)
|
|
|
|
/* Settings > Audio > Mixer Settings > Mixer Stream */
|
|
|
|
|
|
/* Settings > Audio > Menu Sounds */
|
|
|
|
|
|
/* Settings > Input */
|
|
|
|
#if defined(HAVE_DINPUT) || defined(HAVE_WINRAWINPUT)
|
|
#endif
|
|
|
|
/* Settings > Input > Haptic Feedback/Vibration */
|
|
|
|
|
|
/* Settings > Input > Menu Controls */
|
|
|
|
|
|
/* Settings > Input > Hotkeys */
|
|
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_INPUT_META_QUIT_KEY,
|
|
"Avslutt RetroArch"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_INPUT_META_OVERLAY_NEXT,
|
|
"Neste overlegg"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_INPUT_META_OVERLAY_NEXT,
|
|
"Bytter til neste tilgjengelige oppsett for det nåværende aktive overlegget på skjermen."
|
|
)
|
|
|
|
/* Settings > Input > Port # Controls */
|
|
|
|
|
|
/* Settings > Latency */
|
|
|
|
|
|
/* Settings > Core */
|
|
|
|
#ifndef HAVE_DYNAMIC
|
|
#endif
|
|
|
|
/* Settings > Configuration */
|
|
|
|
|
|
/* Settings > Saving */
|
|
|
|
|
|
/* Settings > Logging */
|
|
|
|
|
|
/* Settings > File Browser */
|
|
|
|
|
|
/* Settings > Frame Throttle */
|
|
|
|
|
|
/* Settings > Frame Throttle > Rewind */
|
|
|
|
|
|
/* Settings > Frame Throttle > Frame Time Counter */
|
|
|
|
|
|
/* Settings > Recording */
|
|
|
|
|
|
/* Settings > On-Screen Display */
|
|
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_ONSCREEN_OVERLAY_SETTINGS,
|
|
"Overlegg på skjermen"
|
|
)
|
|
|
|
/* Settings > On-Screen Display > On-Screen Overlay */
|
|
|
|
|
|
#if defined(ANDROID)
|
|
#endif
|
|
|
|
/* Settings > On-Screen Display > Video Layout */
|
|
|
|
|
|
/* Settings > On-Screen Display > On-Screen Notifications */
|
|
|
|
|
|
/* Settings > User Interface */
|
|
|
|
|
|
/* Settings > User Interface > Menu Item Visibility */
|
|
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_QUICK_MENU_VIEWS_SETTINGS,
|
|
"Hurtigmeny"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SETTINGS_VIEWS_SETTINGS,
|
|
"Innstillinger"
|
|
)
|
|
#ifdef HAVE_LAKKA
|
|
#endif
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_MENU_ADD_CONTENT_ENTRY_DISPLAY_MAIN_TAB,
|
|
"Hovedmeny"
|
|
)
|
|
|
|
/* Settings > User Interface > Menu Item Visibility > Quick Menu */
|
|
|
|
|
|
/* Settings > User Interface > Views > Settings */
|
|
|
|
|
|
/* Settings > User Interface > Appearance */
|
|
|
|
|
|
/* Settings > AI Service */
|
|
|
|
|
|
/* Settings > Accessibility */
|
|
|
|
|
|
/* Settings > Power Management */
|
|
|
|
/* Settings > Achievements */
|
|
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_CHEEVOS_ENABLE,
|
|
"Prestasjoner"
|
|
)
|
|
|
|
/* Settings > Network */
|
|
|
|
|
|
/* Settings > Network > Updater */
|
|
|
|
|
|
/* Settings > Playlists */
|
|
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_HISTORY_LIST_ENABLE,
|
|
"Historikk"
|
|
)
|
|
|
|
/* 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,
|
|
"Nedlastinger"
|
|
)
|
|
MSG_HASH( /* FIXME Not RGUI specific */
|
|
MENU_ENUM_LABEL_VALUE_RGUI_BROWSER_DIRECTORY,
|
|
"Filutforsker"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_PLAYLIST_DIRECTORY,
|
|
"Spillelister"
|
|
)
|
|
|
|
/* 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,
|
|
"Systemnavn"
|
|
)
|
|
|
|
/* Explore tab */
|
|
|
|
/* Playlist > Playlist Item */
|
|
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_INFORMATION,
|
|
"Informasjon"
|
|
)
|
|
|
|
/* Playlist Item > Set Core Association */
|
|
|
|
|
|
/* Playlist Item > Information */
|
|
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_CONTENT_INFO_LABEL,
|
|
"Navn"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_CONTENT_INFO_CORE_NAME,
|
|
"Kjerne"
|
|
)
|
|
|
|
/* Quick Menu */
|
|
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_ACHIEVEMENT_LIST,
|
|
"Prestasjoner"
|
|
)
|
|
|
|
/* Quick Menu > Options */
|
|
|
|
|
|
/* Quick Menu > Options > Manage Core Options */
|
|
|
|
|
|
/* - Legacy (unused) */
|
|
|
|
/* Quick Menu > Controls */
|
|
|
|
|
|
/* Quick Menu > Controls > Load Remap File */
|
|
|
|
|
|
/* Quick Menu > Cheats */
|
|
|
|
|
|
/* Quick Menu > Cheats > Start or Continue Cheat Search */
|
|
|
|
|
|
/* Quick Menu > Cheats > Load Cheat File (Replace) */
|
|
|
|
|
|
/* Quick Menu > Cheats > Load Cheat File (Append) */
|
|
|
|
|
|
/* Quick Menu > Cheats > Cheat Details */
|
|
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_CHEAT_DESC,
|
|
"Beskrivelse"
|
|
)
|
|
|
|
/* Quick Menu > Disc Control */
|
|
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_DISK_TRAY_EJECT,
|
|
"Løs ut platen"
|
|
)
|
|
|
|
/* 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) */
|
|
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_QT_MENU_VIEW_OPTIONS_TITLE,
|
|
"Innstillinger"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_QT_MENU_HELP,
|
|
"&Hjelp"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_QT_LOAD_CORE,
|
|
"Last inn kjerne"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_QT_NAME,
|
|
"Navn"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_QT_TAB_PLAYLISTS,
|
|
"Spillelister"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_QT_TAB_FILE_BROWSER,
|
|
"Filutforsker"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_QT_CORE,
|
|
"Kjerne"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_QT_INFORMATION,
|
|
"Informasjon"
|
|
)
|
|
|
|
/* Unsorted */
|
|
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_OVERLAY_SETTINGS,
|
|
"Overlegg på skjermen"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_LOAD_CONTENT_HISTORY,
|
|
"Historikk"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_USER,
|
|
"Bruker"
|
|
)
|
|
|
|
/* Unused (Only Exist in Translation Files) */
|
|
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_NETPLAY_ENABLE,
|
|
"Nettspill"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_HELP,
|
|
"Hjelp"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_CHEEVOS_DESCRIPTION,
|
|
"Beskrivelse"
|
|
)
|
|
|
|
/* 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,
|
|
"Nedlastinger"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_BASIC_MENU_ENUM_CONTROLS_QUIT,
|
|
"Avslutt"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_BASIC_MENU_ENUM_CONTROLS_SCROLL_UP,
|
|
"Rull opp"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_BASIC_MENU_ENUM_CONTROLS_TOGGLE_KEYBOARD,
|
|
"Veksle til/fra tastatur"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_BASIC_MENU_ENUM_CONTROLS_TOGGLE_MENU,
|
|
"Vis/skjul meny"
|
|
)
|
|
|
|
/* Discord Status */
|
|
|
|
|
|
/* Notifications */
|
|
|
|
|
|
/* Lakka */
|
|
|
|
|
|
/* Environment Specific Settings */
|
|
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_INPUT_META_RESTART_KEY,
|
|
"Start RetroArch på nytt"
|
|
)
|
|
|
|
#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
|