diff --git a/.ci/macos-universal.sh b/.ci/macos-universal.sh index 57a0a60af..b6be26965 100755 --- a/.ci/macos-universal.sh +++ b/.ci/macos-universal.sh @@ -11,7 +11,7 @@ BASE_ARTIFACT_ARCH="${BASE_ARTIFACT##*-}" mv $BASE_ARTIFACT $BUNDLE_DIR # Executable binary paths that need to be combined. -BIN_PATHS=(citra citra-room citra-qt.app/Contents/MacOS/citra-qt) +BIN_PATHS=(lime lime-room lime-qt.app/Contents/MacOS/lime-qt) # Dylib paths that need to be combined. IFS=$'\n' @@ -37,7 +37,7 @@ for OTHER_ARTIFACT in "${ARTIFACTS_LIST[@]:1}"; do done # Re-sign executables and bundles after combining. -APP_PATHS=(citra citra-room citra-qt.app) +APP_PATHS=(lime lime-room lime-qt.app) for APP_PATH in "${APP_PATHS[@]}"; do codesign --deep -fs - $BUNDLE_DIR/$APP_PATH done diff --git a/CMakeLists.txt b/CMakeLists.txt index 87a485e5d..603426e19 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -15,7 +15,7 @@ list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/externals/cmake-modul include(DownloadExternals) include(CMakeDependentOption) -project(citra LANGUAGES C CXX ASM) +project(lime LANGUAGES C CXX ASM) # Some submodules like to pick their own default build type if not specified. # Make sure we default to Release build type always, unless the generator has custom types. @@ -156,9 +156,9 @@ configure_file(${PROJECT_SOURCE_DIR}/dist/compatibility_list/compatibility_list. ${PROJECT_BINARY_DIR}/dist/compatibility_list/compatibility_list.qrc COPYONLY) if (ENABLE_COMPATIBILITY_LIST_DOWNLOAD AND NOT EXISTS ${PROJECT_BINARY_DIR}/dist/compatibility_list/compatibility_list.json) - message(STATUS "Downloading compatibility list for citra...") + message(STATUS "Downloading compatibility list for lime...") file(DOWNLOAD - https://api.citra-emu.org/gamedb/ + https://api.lime-emu.org/gamedb/ "${PROJECT_BINARY_DIR}/dist/compatibility_list/compatibility_list.json" SHOW_PROGRESS) endif() if (EXISTS ${PROJECT_SOURCE_DIR}/dist/compatibility_list/compatibility_list.json) @@ -317,7 +317,7 @@ if (NOT CLANG_FORMAT) message(STATUS "Clang format not found! Downloading...") set(CLANG_FORMAT "${PROJECT_BINARY_DIR}/externals/clang-format${CLANG_FORMAT_POSTFIX}.exe") file(DOWNLOAD - https://github.com/citra-emu/ext-windows-bin/raw/master/clang-format${CLANG_FORMAT_POSTFIX}.exe + https://github.com/lime-emu/ext-windows-bin/raw/master/clang-format${CLANG_FORMAT_POSTFIX}.exe "${CLANG_FORMAT}" SHOW_PROGRESS STATUS DOWNLOAD_SUCCESS) if (NOT DOWNLOAD_SUCCESS EQUAL 0) @@ -434,11 +434,11 @@ add_subdirectory(src) add_subdirectory(dist/installer) -# Set citra-qt project or citra project as default StartUp Project in Visual Studio depending on whether QT is enabled or not +# Set lime-qt project or lime project as default StartUp Project in Visual Studio depending on whether QT is enabled or not if(ENABLE_QT) - set_property(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} PROPERTY VS_STARTUP_PROJECT citra-qt) + set_property(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} PROPERTY VS_STARTUP_PROJECT lime-qt) else() - set_property(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} PROPERTY VS_STARTUP_PROJECT citra) + set_property(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} PROPERTY VS_STARTUP_PROJECT lime) endif() # Create target for outputting distributable bundles. @@ -446,13 +446,13 @@ endif() if (NOT ANDROID AND NOT IOS) include(BundleTarget) if (ENABLE_SDL2_FRONTEND) - bundle_target(citra) + bundle_target(lime) endif() if (ENABLE_QT) - bundle_target(citra-qt) + bundle_target(lime-qt) endif() if (ENABLE_DEDICATED_ROOM) - bundle_target(citra-room) + bundle_target(lime-room) endif() endif() @@ -464,22 +464,22 @@ endif() # http://standards.freedesktop.org/icon-theme-spec/icon-theme-spec-latest.html # http://standards.freedesktop.org/shared-mime-info-spec/shared-mime-info-spec-latest.html if(ENABLE_QT AND UNIX AND NOT APPLE) - install(FILES "${PROJECT_SOURCE_DIR}/dist/citra-qt.desktop" + install(FILES "${PROJECT_SOURCE_DIR}/dist/lime-qt.desktop" DESTINATION "${CMAKE_INSTALL_PREFIX}/share/applications") - install(FILES "${PROJECT_SOURCE_DIR}/dist/citra.svg" + install(FILES "${PROJECT_SOURCE_DIR}/dist/lime.svg" DESTINATION "${CMAKE_INSTALL_PREFIX}/share/icons/hicolor/scalable/apps") - install(FILES "${PROJECT_SOURCE_DIR}/dist/citra.xml" + install(FILES "${PROJECT_SOURCE_DIR}/dist/lime.xml" DESTINATION "${CMAKE_INSTALL_PREFIX}/share/mime/packages") endif() if(UNIX) if(ENABLE_SDL2) - install(FILES "${PROJECT_SOURCE_DIR}/dist/citra.6" + install(FILES "${PROJECT_SOURCE_DIR}/dist/lime.6" DESTINATION "${CMAKE_INSTALL_PREFIX}/share/man/man6") endif() if (ENABLE_QT) - install(FILES "${PROJECT_SOURCE_DIR}/dist/citra-qt.6" + install(FILES "${PROJECT_SOURCE_DIR}/dist/lime-qt.6" DESTINATION "${CMAKE_INSTALL_PREFIX}/share/man/man6") endif() endif() diff --git a/CMakeModules/BundleTarget.cmake b/CMakeModules/BundleTarget.cmake index bac86093d..11809e77a 100644 --- a/CMakeModules/BundleTarget.cmake +++ b/CMakeModules/BundleTarget.cmake @@ -124,7 +124,7 @@ if (BUNDLE_TARGET_EXECUTE) ${extra_linuxdeploy_args} --plugin checkrt --executable "${executable_path}" - --icon-file "${source_path}/dist/citra.svg" + --icon-file "${source_path}/dist/lime.svg" --desktop-file "${source_path}/dist/${executable_name}.desktop" --appdir "${appdir_path}" RESULT_VARIABLE linuxdeploy_appdir_result) @@ -282,7 +282,7 @@ else() COMMAND ${CMAKE_COMMAND} -E make_directory "${CMAKE_BINARY_DIR}/bundle/dist/") add_custom_command( TARGET bundle - COMMAND ${CMAKE_COMMAND} -E copy "${CMAKE_SOURCE_DIR}/dist/icon.png" "${CMAKE_BINARY_DIR}/bundle/dist/citra.png") + COMMAND ${CMAKE_COMMAND} -E copy "${CMAKE_SOURCE_DIR}/dist/icon.png" "${CMAKE_BINARY_DIR}/bundle/dist/lime.png") add_custom_command( TARGET bundle COMMAND ${CMAKE_COMMAND} -E copy "${CMAKE_SOURCE_DIR}/license.txt" "${CMAKE_BINARY_DIR}/bundle/") diff --git a/dist/apple/citra.icns b/dist/apple/lime.icns similarity index 100% rename from dist/apple/citra.icns rename to dist/apple/lime.icns diff --git a/dist/languages/da_DK.ts b/dist/languages/da_DK.ts index bcc7edec3..5b8591fb2 100644 --- a/dist/languages/da_DK.ts +++ b/dist/languages/da_DK.ts @@ -2,17 +2,17 @@ ARMRegisters - + ARM Registers ARM-registre - + Register Registre - + Value Værdi @@ -20,27 +20,27 @@ AboutDialog - + About Citra Om Citra - - <html><head/><body><p><img src=":/icons/citra.png"/></p></body></html> - <html><head/><body><p><img src=":/icons/citra.png"/></p></body></html> + + <html><head/><body><p><img src=":/icons/lime.png"/></p></body></html> + <html><head/><body><p><img src=":/icons/lime.png"/></p></body></html> - + <html><head/><body><p><span style=" font-size:28pt;">Citra</span></p></body></html> <html><head/><body><p><span style=" font-size:28pt;">Citra</span></p></body></html> - + <html><head/><body><p>%1 | %2-%3 (%4)</p></body></html> <html><head/><body><p>%1 | %2-%3 (%4)</p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -57,12 +57,12 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">Denne software bør ikke bruges til at spille spil, du ikke har lovligt opnået</span></p></body></html> - + <html><head/><body><p><a href="https://citra-emu.org/"><span style=" text-decoration: underline; color:#039be5;">Website</span></a> | <a href="https://community.citra-emu.org/"><span style=" text-decoration: underline; color:#039be5;">Forum</span></a> | <a href="https://github.com/citra-emu"><span style=" text-decoration: underline; color:#039be5;">Source Code</span></a> | <a href="https://github.com/citra-emu/citra/graphs/contributors"><span style=" text-decoration: underline; color:#039be5;">Contributors</span></a> | <a href="https://github.com/citra-emu/citra/blob/master/license.txt"><span style=" text-decoration: underline; color:#039be5;">License</span></a></p></body></html> <html><head/><body><p><a href="https://citra-emu.org/"><span style=" text-decoration: underline; color:#039be5;">Webside</span></a> | <a href="https://community.citra-emu.org/"><span style=" text-decoration: underline; color:#039be5;">Forum</span></a> | <a href="https://github.com/citra-emu"><span style=" text-decoration: underline; color:#039be5;">Kildekode</span></a> | <a href="https://github.com/citra-emu/citra/graphs/contributors"><span style=" text-decoration: underline; color:#039be5;">Bidgragsydere</span></a> | <a href="https://github.com/citra-emu/citra/blob/master/license.txt"><span style=" text-decoration: underline; color:#039be5;">Licens</span></a></p></body></html> - + <html><head/><body><p><span style=" font-size:7pt;">&quot;3DS&quot; is a trademark of Nintendo. Citra is not affiliated with Nintendo in any way.</span></p></body></html> <html><head/><body><p><span style=" font-size:7pt;">&quot;3DS&quot; er er varemærke tilhørende Nintendo. Citra er ikke associeret med Nintendo på nogen måde.</span></p></body></html> @@ -70,47 +70,47 @@ p, li { white-space: pre-wrap; } BreakPointModel - + Pica command loaded Pica-kommando indlæst - + Pica command processed Pica-kommando behandlet - + Incoming primitive batch Kommende primitivt parti - + Finished primitive batch Færdiggjort primitivt parti - + Vertex shader invocation Aktivering af vertex-shader - + Incoming display transfer Kommende displayoverførsel - + GSP command processed GSP-kommando behandlet - + Buffers swapped Buffers byttet - + Unknown debug context event Ukendt handling for fejlfindingskontekst @@ -118,32 +118,32 @@ p, li { white-space: pre-wrap; } CalibrationConfigurationDialog - + Communicating with the server... Kommunikerer med serveren... - + Cancel Annuller - + Touch the top left corner <br>of your touchpad. Tryk på det øverste venstre hjørne<br>af din touchpad. - + Now touch the bottom right corner <br>of your touchpad. Og tryk nu på det nederste højre hjørne<br>af din touchpad. - + Configuration completed! Konfiguration fuldført! - + OK OK @@ -151,93 +151,93 @@ p, li { white-space: pre-wrap; } ChatRoom - + Room Window Rumvindue - + Send Chat Message Send chatbesked - + Send Message Send besked - + Members Medlemmer - + %1 has joined %1 er kommet ind - + %1 has left %1 har forladt rummet - + %1 has been kicked %1 er blevet smidt ud - + %1 has been banned %1 er blevet udelukket - + %1 has been unbanned %1 er ikke længere udelukket - + View Profile Vis profil - - + + Block Player Bloker spiller - + When you block a player, you will no longer receive chat messages from them.<br><br>Are you sure you would like to block %1? Når du blokerer en spiller, vil du ikke længere modtage chatbeskeder fra dem.<br><br>Er du sikker på, at du vil blokere %1? - + Kick Udsmid - + Ban Udeluk - + Kick Player Udsmid spiller - + Are you sure you would like to <b>kick</b> %1? Er du sikker på, at du vil<b>udsmide</b>%1? - + Ban Player Udeluk spiller - + Are you sure you would like to <b>kick and ban</b> %1? This would ban both their forum username and their IP address. @@ -249,22 +249,22 @@ Dette vil udelukke både deres forum-brugernavn og IP-adresse. ClientRoom - + Room Window Rumvindue - + Room Description Rumbeskrivelse - + Moderation... Moderation... - + Leave Room Forlad rum @@ -272,17 +272,17 @@ Dette vil udelukke både deres forum-brugernavn og IP-adresse. ClientRoomWindow - + Connected Forbundet - + Disconnected Afbrudt - + %1 (%2/%3 members) - connected %1 (%2/%3 medlemmer) - forbundet @@ -290,108 +290,108 @@ Dette vil udelukke både deres forum-brugernavn og IP-adresse. CompatDB - + Report Compatibility Rapporter kompatibilitet - - + + Report Game Compatibility Rapporter spilkompatibilitet - + <html><head/><body><p><span style=" font-size:10pt;">Should you choose to submit a test case to the </span><a href="https://citra-emu.org/game/"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">Citra Compatibility List</span></a><span style=" font-size:10pt;">, The following information will be collected and displayed on the site:</span></p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Hardware Information (CPU / GPU / Operating System)</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Which version of Citra you are running</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The connected Citra account</li></ul></body></html> <html><head/><body><p><span style=" font-size:10pt;">Hvis du vælger at sende en test til </span><a href="https://citra-emu.org/game/"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">Citras kompatibilitetsliste</span></a><span style=" font-size:10pt;">, bliver følgende information indsamlet om vist på siden:</span></p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Hardwareinformation (CPU / GPU / operativsystem)</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Hvilken version af Citra du bruger</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Den forbundene Citra-konto </li></ul></body></html> - + Perfect Perfekt - + <html><head/><body><p>Game functions flawlessly with no audio or graphical glitches.</p></body></html> <html><head/><body><p>Spillet fungerer korrekt uden nogen grafiske problemer.</p></body></html> - + Great - + <html><head/><body><p>Game functions with minor graphical or audio glitches and is playable from start to finish. May require some workarounds.</p></body></html> <html><head/><body><p>Spillet virker, men med små grafik- eller lydrelaterede problemer og kan spilles fra start til slut. Det kan kræves at arbejde omkring nogle fejl.</p></body></html> - + Okay Okay - + <html><head/><body><p>Game functions with major graphical or audio glitches, but game is playable from start to finish with workarounds.</p></body></html> <html><head/><body><p>Spillet virker, men med store grafik- eller lydrelaterede problemer, men spillet kan spilles fra start til slut hvis nogle fejl undgås.</p></body></html> - + Bad Dårlig - + <html><head/><body><p>Game functions, but with major graphical or audio glitches. Unable to progress in specific areas due to glitches even with workarounds.</p></body></html> <html><head/><body><p>Spillet virker men med store grafik- eller lydrelaterede problemer. Kan ikke komme videre i bestemte områder på grund af fejl, selv hvis det forsøges at arbejde omkring dem.</p></body></html> - + Intro/Menu Intro/menu - + <html><head/><body><p>Game is completely unplayable due to major graphical or audio glitches. Unable to progress past the Start Screen.</p></body></html> <html><head/><body><p>Spillet er fuldstændigt uspilleligt på grund af store grafik- eller lydrelaterede problemer. Kan ikke komme længere end startskærmen.</p></body></html> - + Won't Boot Starter ikke - + <html><head/><body><p>The game crashes when attempting to startup.</p></body></html> <html><head/><body><p>Spillet crasher ved forsøg på at starte det.</p></body></html> - + <html><head/><body><p>Independent of speed or performance, how well does this game play from start to finish on this version of Citra?</p></body></html> <html><head/><body><p>Hvis hastighed og ydeevne ikke tages i betragtning, hvor godt kører spillet far start til slut i denne version af Citra?</p></body></html> - + Thank you for your submission! Tak for din indsendelse! - + Submitting Indsender - + Communication error Kommunikationsfejl - + An error occurred while sending the Testcase - + Next Næste @@ -399,93 +399,93 @@ Dette vil udelukke både deres forum-brugernavn og IP-adresse. ConfigureAudio - + Output - + Emulation: Emulering: - + HLE (fast) HLE (hurtig) - + LLE (accurate) LLE (akkurat) - + LLE multi-core LLE multi-kerne - + Output Type - + Output Device - + This post-processing effect adjusts audio speed to match emulation speed and helps prevent audio stutter. This however increases audio latency. Denne efterbehandling justerer lydens hastighed så den passer emuleringens og hjælper med at undgå hak i lyden. Denne effekt skaber større forsinkelse af lyden. - + Enable audio stretching Aktiver lydstrækning - + Use global volume - + Set volume: - + Volume: Lydstyrke: - + 0 % 0 % - + Microphone Mikrofon - + Input Type Inputtype - + Input Device Inputenhed - - + + Auto - + %1% Volume percentage (e.g. 50%) %1% @@ -494,203 +494,203 @@ Dette vil udelukke både deres forum-brugernavn og IP-adresse. ConfigureCamera - + Form - + Camera Kamera - - + + Select the camera to configure Vælg kameraet, der skal konfigureres - + Camera to configure: Konfigurer kamera: - + Front Forside - + Rear Bagside - - + + Select the camera mode (single or double) Vælg kameratilstand (enkelt eller dobbelt) - + Camera mode: Kameratilstand: - + Single (2D) Enkelt (2D) - + Double (3D) Dobbelt (3D) - - + + Select the position of camera to configure Vælg positionen af kameraet, der skal konfigureres - + Camera position: Kameraposition: - + Left Venstre - + Right Højre - + Configuration Konfiguration - - + + Select where the image of the emulated camera comes from. It may be an image or a real camera. Vælg hvor billedet til det emulerede kamera kommer fra. Det kan være et billede eller et rigtigt kamera. - + Camera Image Source: Kilde til kameraets billede - + Blank (blank) Blank (blank) - + Still Image (image) Stilbillede (image) - + System Camera (qt) Systemets kamera (qt) - + File: Fil: - + ... - - + + Select the system camera to use Vælg kamera fra systemet, der skal bruges - + Camera: Kamera: - + <Default> <Default> - - + + Select the image flip to apply Vælg hvordan billedet skal vendes - + Flip: Vending: - + None Ingen - + Horizontal Vandret - + Vertical Lodret - + Reverse Omvendt - + Select an image file every time before the camera is loaded Vælg en billedfil hver gang kameraet indlæses - + Prompt before load Spørg før brug - + Preview Forhåndsvisning - + Resolution: 512*384 Opløsning: 512*384 - + Click to preview Klik for forhåndsvisning - + Resolution: %1*%2 - + Supported image files (%1) Understøttede billedfiler (%f) - + Open File Åbn fil @@ -698,87 +698,87 @@ Dette vil udelukke både deres forum-brugernavn og IP-adresse. ConfigureCheats - - + + Cheats - + Add Cheat - + Available Cheats: - + Name - + Type - + Save - + Delete - + Name: - + Notes: - + Code: - + Would you like to save the current cheat? - - - + + + Save Cheat - + Please enter a cheat name. - + Please enter the cheat code. - + Cheat code line %1 is not valid. Would you like to ignore the error and continue? - - + + [new cheat] @@ -786,127 +786,127 @@ Would you like to ignore the error and continue? ConfigureDebug - + Form Form - + GDB GDB - + Enable GDB Stub Aktiver GDB-stub - + Port: Port: - + Logging Logning - + Global Log Filter Globalt logfilter - + Show Log Console (Windows Only) Vis logningskonsol (kun på Windows) - + Open Log Location Åbn log-mappen - + CPU - + Use global clock speed - + Set clock speed: - + CPU Clock Speed - + <html><body>Changes the emulated CPU clock frequency.<br>Underclocking can increase performance but may cause the game to freeze.<br>Overclocking may reduce in game lag but also might cause freezes</body></html> - + <html><head/><body><p>Enables the use of the ARM JIT compiler for emulating the 3DS CPUs. Don't disable unless for debugging purposes</p></body></html> - + Enable CPU JIT Aktiver CPU-JIT - + Enable debug renderer - + Dump command buffers - + Miscellaneus - + <html><head/><body><p>Introduces a delay to the first ever launched app thread if LLE modules are enabled, to allow them to initialize.</p></body></html> - + Delay app start for LLE module initialization - + <html><head/><body><p>CPU Clock Speed Information<br/>Underclocking can increase performance but may cause the game to freeze.<br/>Overclocking may reduce in game lag but also might cause freezes</p></body></html> - + Validation layer not available - + Unable to enable debug renderer because the layer <strong>VK_LAYER_KHRONOS_validation</strong> is missing. Please install the Vulkan SDK or the appropriate package of your distribution - + Command buffer dumping not available - + Unable to enable command buffer dumping because the layer <strong>VK_LAYER_LUNARG_api_dump</strong> is missing. Please install the Vulkan SDK or the appropriate package of your distribution @@ -914,92 +914,92 @@ Would you like to ignore the error and continue? ConfigureDialog - + Citra Configuration Konfiguration af Citra - - - + + + General Generelt - - - + + + System System - - + + Input Input - - + + Hotkeys Genvejstaster - - + + Graphics Grafik - - + + Enhancements - - - + + + Audio Lyd - - + + Camera Kamera - - + + Debug Fejlfinding - - + + Storage - - + + Web Web - - + + UI Grænseflade - + Controls Input - + Advanced @@ -1007,278 +1007,278 @@ Would you like to ignore the error and continue? ConfigureEnhancements - + Form - + Renderer - + Internal Resolution - + Auto (Window Size) - + Native (400x240) - + 2x Native (800x480) - + 3x Native (1200x720) - + 4x Native (1600x960) - + 5x Native (2000x1200) - + 6x Native (2400x1440) - + 7x Native (2800x1680) - + 8x Native (3200x1920) - + 9x Native (3600x2160) - + 10x Native (4000x2400) - + Enable Linear Filtering - + Post-Processing Shader - + Texture Filter - + None - + Anime4K - + Bicubic - + ScaleForce - + xBRZ - + MMPX - + Stereoscopy - + Stereoscopic 3D Mode - + Off - - + + Side by Side - + Anaglyph - + Interlaced - + Reverse Interlaced - + Depth - + % - + Eye to Render in Monoscopic Mode - + Left Eye (default) - + Right Eye - + Layout - + Screen Layout: - + Default - + Single Screen - + Large Screen - + Separate Windows - + Hybrid Screen - + Swap Screens - + Rotate Screens Upright - + Large Screen Proportion: - + Background Color: - + Utility - + <html><head/><body><p>Replace textures with PNG files.</p><p>Textures are loaded from load/textures/[Title ID]/.</p></body></html> - + Use Custom Textures - + <html><head/><body><p>Dump textures to PNG files.</p><p>Textures are dumped to dump/textures/[Title ID]/.</p></body></html> - + Dump Textures - + <html><head/><body><p>Load all custom textures into memory on boot, instead of loading them when the game requires them.</p></body></html> - + Preload Custom Textures - + <html><head/><body><p>Load custom textures asynchronously with background threads to reduce loading stutter</p></body></html> - + Async Custom Texture Loading @@ -1286,136 +1286,136 @@ Would you like to ignore the error and continue? ConfigureGeneral - + Form Form - + General Generelt - + Confirm exit while emulation is running Bekræft afslutning når emulatoren kører - + Pause emulation when in background - + Mute audio when in background - + Hide mouse on inactivity - + Enable Gamemode - + Updates Opdateringer - + Check for updates on start Tjek efter opdateringer ved opstart - + Silently auto update after closing Opdater automatisk i baggrunden efter lukning - + Emulation Emulering - + Region: Region: - + Auto-select Vælg automatisk - + Use global emulation speed - + Set emulation speed: - + Emulation Speed: - + Screenshots - + Use global screenshot path - + Set screenshot path: - + Save Screenshots To - + ... - + Reset All Settings Nulstil alle indstillinger - - - - - + + + + + unthrottled - + Select Screenshot Directory - + Citra Citra - + Are you sure you want to <b>reset your settings</b> and close Citra? Er du sikker på, at du vil<b>nulstille dine indstillinger</b>og lukke Citra? @@ -1423,157 +1423,157 @@ Would you like to ignore the error and continue? ConfigureGraphics - + Form Form - + Graphics - + API Settings - + Graphics API - + Software - + OpenGL - + Vulkan - + Physical Device - + OpenGL Renderer - + SPIR-V Shader Generation - + Renderer Optegning - + <html><head/><body><p>Use the selected graphics API to accelerate shader emulation.</p><p>Requires a relatively powerful GPU for better performance.</p></body></html> - + Enable Hardware Shader Aktiver hardware-shader - + <html><head/><body><p>Correctly handle all edge cases in multiplication operation in shaders. </p><p>Some games requires this to be enabled for the hardware shader to render properly.</p><p>However this would reduce performance in most games.</p></body></html> <html><head/><body><p> Håndter aller situationer ved multiplikationsoperationer med shaders.</p><p>Nogle spil kræver dette for at blive optegnet korrekt med hardware-shaders.</p><p>Dette nedsætter ydeevnen i de fleste spil.</p></body></html> - + Accurate Multiplication Akkurat multiplikation - + <html><head/><body><p>Use the JIT engine instead of the interpreter for software shader emulation. </p><p>Enable this for better performance.</p></body></html> <html><head/><body><p>Brug JIT-motoren i stedet for fortolkeren til emulering af shaders i software.</p><p>Aktiver dette for bedre ydeevne.</p></body></html> - + Enable Shader JIT Aktiver shader-JIT - + <html><head/><body><p>Compile shaders using background threads to avoid shader compilation stutter. Expect temporary graphical glitches</p></body></html> - + Enable Async Shader Compilation - + <html><head/><body><p>Perform presentation on separate threads. Improves performance when using Vulkan in most games.</p></body></html> - + Enable Async Presentation - + Advanced - + <html><head/><body><p>Overrides the sampling filter used by games. This can be useful in certain cases with poorly behaved games when upscaling. If unsure set this to Game Controlled</p></body></html> - + Texture Sampling - + Game Controlled - + Nearest Neighbor - + Linear - + <html><head/><body><p>Reduce stuttering by storing and loading generated shaders to disk.</p></body></html> - + Use Disk Shader Cache - + VSync prevents the screen from tearing, but some graphics cards have lower performance with VSync enabled. Keep it enabled if you don't notice a performance difference. - + Enable VSync @@ -1581,63 +1581,63 @@ Would you like to ignore the error and continue? ConfigureHotkeys - + Hotkey Settings Indstillinger for genvejstaster - + Double-click on a binding to change it. Dobbeltklik på en genvej for at ændre den. - + Clear All - + Restore Defaults - + Action Handling - + Hotkey Genvej - - + + Conflicting Key Sequence - + The entered key sequence is already assigned to: %1 - + A 3ds button - + Restore Default - + Clear - + The default key sequence is already assigned to: %1 @@ -1645,307 +1645,307 @@ Would you like to ignore the error and continue? ConfigureInput - + ConfigureInput KonfigurerInput - + Profile Profil - + New Ny - + Delete Slet - + Rename Omdøb - + Face Buttons Hovedknapper - + Y: Y: - + X: X: - + B: B: - + A: A: - + Directional Pad D-pad: - - - + + + Up: Op: - - - + + + Down: Ned: - - - + + + Left: Venstre: - - - + + + Right: Højre: - + Misc. Diverse - + Start: Start: - + Select: Select: - + Home: Home: - + Power: - + Circle Mod: Cirkel-ændring: - + GPIO14: GPIO14: - + Debug: Fejlfinding: - + Circle Pad Circle Pad - - - + + + Set Analog Stick Indstil analogstik - - + + Deadzone: 0 - + C-Stick C-stik - + Shoulder Buttons Skulderknapper - + ZR: ZR: - + ZL: ZL: - + L: L: - + R: R: - + Motion / Touch... Bevægelse/touch - + Auto Map - + Clear All Ryd alt - + Restore Defaults Gendan standarder - - - + + + Clear Ryd - - - + + + [not set] [ikke sat] - - - + + + Restore Default Gendan standarder - - + + Information Information - + After pressing OK, first move your joystick horizontally, and then vertically. Efter du trykker OK, skal du først flytte stikket vandret, og derefter lodret. - - + + Deadzone: %1% - - + + Modifier Scale: %1% - + Warning - + Auto mapping failed. Your controller may not have a corresponding mapping - + After pressing OK, press any button on your joystick - + [press key] [tryk på tast] - + Error! Fejl! - + You're using a key that's already bound. Du har valgt en tast, der allerede er i brug. - + New Profile Ny profil - + Enter the name for the new profile. Indtast et navn til den nye profil. - + Delete Profile Slet profil - + Delete profile %1? Slet profilen %1? - + Rename Profile Omdøb profil - + New name: Nyt navn: - + Duplicate profile name - + Profile name already exists. Please choose a different name. @@ -1953,198 +1953,198 @@ Would you like to ignore the error and continue? ConfigureMotionTouch - + Configure Motion / Touch Konfigurer bevægelse/touch - + Motion Bevægelse - + Motion Provider: Bevægelsesudbyder: - + Sensitivity: Sensitivitet: - + Controller: - - - - - + + + + + Configure Konfigurer - + Touch Touch - + Touch Provider: Touchudbyder: - + Calibration: Kalibrering - + (100, 50) - (1800, 850) (100, 50) - (1800, 850) - + Use button mapping: - + CemuhookUDP Config Konfiguration af CemuhookUDP - + You may use any Cemuhook compatible UDP input source to provide motion and touch input. Du kan bruge enhver Cemuhook-kompatibel UDP-inputkilde til at levere bevægelses- og touchinput. - + Server: Server: - + Port: Port: - + Pad: Controller: - + Pad 1 Controller 1 - + Pad 2 Controller 2 - + Pad 3 Controller 3 - + Pad 4 Controller 4 - + Learn More Lær mere - - + + Test Test - + Mouse (Right Click) Mus (højreklik) - - + + CemuhookUDP CemuhookUDP - + SDL - + Emulator Window Emuleringsvindue - + <a href='https://citra-emu.org/wiki/using-a-controller-or-android-phone-for-motion-or-touch-input'><span style="text-decoration: underline; color:#039be5;">Learn More</span></a> <a href='https://citra-emu.org/wiki/using-a-controller-or-android-phone-for-motion-or-touch-input'><span style="text-decoration: underline; color:#039be5;">Lær mere</span></a> - + Information - + After pressing OK, press a button on the controller whose motion you want to track. - + [press button] - + Testing Tester - + Configuring Konfigurerer - + Test Successful Testen var succesfuld - + Successfully received data from the server. Data blev succesfuldt modtaget fra serveren. - + Test Failed Testen fejlede - + Could not receive valid data from the server.<br>Please verify that the server is set up correctly and the address and port are correct. Kunne ikke modtage gyldig data fra serveren.<br>Kontroller venligst om server er sat op korrekt og at adressen og porten er rigtig. - + Citra Citra - + UDP Test or calibration configuration is in progress.<br>Please wait for them to finish. UDP-test eller konfiguration af kalibrering er i gang.<br>Vent venligst til de er fuldført. @@ -2152,97 +2152,97 @@ Would you like to ignore the error and continue? ConfigurePerGame - + Dialog - + Info - + Size - + Format - + Name - + Filepath - + Title ID - + Reset Game Settings - + Use global configuration (%1) - + General - + System - + Enhancements - + Graphics - + Audio - + Debug - + Cheats - + Properties - + Citra - + Are you sure you want to <b>reset your settings for this game</b>? @@ -2250,65 +2250,65 @@ Would you like to ignore the error and continue? ConfigureStorage - + Form - + Storage - + Use Virtual SD - + Custom Storage - + Use Custom Storage - + NAND Directory - - + + Open - - + + NOTE: This does not move the contents of the previous directory to the new one. - - + + Change - + SDMC Directory - + Select NAND Directory - + Select SDMC Directory @@ -2316,1064 +2316,1064 @@ Would you like to ignore the error and continue? ConfigureSystem - + Form Form - + System Settings Systemindstillinger - + Enable New 3DS mode - + Use LLE applets (if installed) - + Username Brugernavn - + Birthday Fødselsdag - + January Januar - + February Februar - + March Marts - + April April - + May Maj - + June Juni - + July Juli - + August August - + September September - + October Oktober - + November November - + December December - + Language Sprog - + Note: this can be overridden when region setting is auto-select Bemærk: Dette kan bliver overstyret når regionsindstillingen er sat til automatisk at vælge - + Japanese (日本語) Japansk (日本語) - + English Engelsk - + French (français) Fransk (français) - + German (Deutsch) Tysk (Deutsch) - + Italian (italiano) Italiensk (italiano) - + Spanish (español) Spansk (español) - + Simplified Chinese (简体中文) Forenklet kinesisk (简体中文) - + Korean (한국어) Koreansk (한국어) - + Dutch (Nederlands) Hollandsk (Nederlands) - + Portuguese (português) Portugisisk (português) - + Russian (Русский) Russisk (Русский) - + Traditional Chinese (正體中文) Traditionel kinesisk (正體中文) - + Sound output mode Tilstand til lydoutput - + Mono Mono - + Stereo Stereo - + Surround Surround - + Country Land - + Clock Tid - + System Clock Systemtid - + Fixed Time Fast tid - + Startup time Opstartstid - + yyyy-MM-ddTHH:mm:ss yyyy-MM-ddTHH:mm:ss - + Offset time - + days - + HH:mm:ss - + Initial System Ticks - + Random - + Fixed - + Initial System Ticks Override - + Play Coins: Play Coins: - + Run System Setup when Home Menu is launched - + Console ID: Konsol-id: - + Regenerate Generer nyt - + 3GX Plugin Loader: - + Enable 3GX plugin loader - + Allow games to change plugin loader state - + Download System Files from Nitendo servers - + Minimal - + Old 3DS - + New 3DS - + JPN - + USA - + EUR - + AUS - + CHN - + KOR - + TWN - + Download - + System settings are available only when game is not running. Systemindstillinger kan kun ændres når et spil ikke kører. - + Japan Japan - + Anguilla - + Antigua and Barbuda - + Argentina - + Aruba - + Bahamas - + Barbados - + Belize - + Bolivia - + Brazil - + British Virgin Islands - + Canada - + Cayman Islands - + Chile - + Colombia - + Costa Rica - + Dominica - + Dominican Republic - + Ecuador - + El Salvador - + French Guiana - + Grenada - + Guadeloupe - + Guatemala - + Guyana - + Haiti - + Honduras - + Jamaica - + Martinique - + Mexico - + Montserrat - + Netherlands Antilles - + Nicaragua - + Panama - + Paraguay - + Peru - + Saint Kitts and Nevis - + Saint Lucia - + Saint Vincent and the Grenadines - + Suriname - + Trinidad and Tobago - + Turks and Caicos Islands - + United States - + Uruguay - + US Virgin Islands - + Venezuela - + Albania - + Australia - + Austria - + Belgium - + Bosnia and Herzegovina - + Botswana - + Bulgaria - + Croatia - + Cyprus - + Czech Republic - + Denmark - + Estonia - + Finland - + France - + Germany - + Greece - + Hungary - + Iceland - + Ireland - + Italy - + Latvia - + Lesotho - + Liechtenstein - + Lithuania - + Luxembourg - + Macedonia - + Malta - + Montenegro - + Mozambique - + Namibia - + Netherlands - + New Zealand - + Norway - + Poland - + Portugal - + Romania - + Russia - + Serbia - + Slovakia - + Slovenia - + South Africa - + Spain - + Swaziland - + Sweden - + Switzerland - + Turkey - + United Kingdom - + Zambia - + Zimbabwe - + Azerbaijan - + Mauritania - + Mali - + Niger - + Chad - + Sudan - + Eritrea - + Djibouti - + Somalia - + Andorra - + Gibraltar - + Guernsey - + Isle of Man - + Jersey - + Monaco - + Taiwan - + South Korea - + Hong Kong - + Macau - + Indonesia - + Singapore - + Thailand - + Philippines - + Malaysia - + China - + United Arab Emirates - + India - + Egypt - + Oman - + Qatar - + Kuwait - + Saudi Arabia - + Syria - + Bahrain - + Jordan - + San Marino - + Vatican City - + Bermuda - + Download System Files from Nintendo servers - + Citra is missing keys to download system files. <br><a href='https://citra-emu.org/wiki/aes-keys/'><span style="text-decoration: underline; color:#039be5;">How to get keys?</span></a> - - + + Console ID: 0x%1 Konsol-id: 0x%1 - + This will replace your current virtual 3DS with a new one. Your current virtual 3DS will not be recoverable. This might have unexpected effects in games. This might fail, if you use an outdated config savegame. Continue? Dette erstatter din nuværende virtuelle 3DS med en ny. Din nuværende virtuelle 3DS vil ikke kunne genskabes. Dette kan have uventede effekter i spil. Dette fejler måske hvis du bruger et forældet config-lager. Fortsæt? - + Warning Advarsel - + Downloading files... - + Cancel - - + + Citra - + Downloading system files failed. - + Successfully downloaded system files. @@ -3381,90 +3381,90 @@ Would you like to ignore the error and continue? ConfigureTouchFromButton - + Configure Touchscreen Mappings - + Mapping: - + New - + Delete - + Rename - + Click the bottom area to add a point, then press a button to bind. Drag points to change position, or double-click table cells to edit values. - + Delete Point - + Button - + X X axis - + Y Y axis - + New Profile - + Enter the name for the new profile. - + Delete Profile - + Delete profile %1? - + Rename Profile - + New name: - + [press key] @@ -3472,113 +3472,113 @@ Drag points to change position, or double-click table cells to edit values. ConfigureUi - + Form - + General Generelt - + Note: Changing language will apply your configuration. Bemærk: Ændring af sprog vil anvende din konfiguration. - + Interface language: Grænsefladesprog: - + Theme: Tema: - + Game List Spilliste - + Icon Size: Ikonstørrelse - - + + None Ingen - + Small (24x24) Små (24x24) - + Large (48x48) Store (48x48) - + Row 1 Text: Tekst på række 1: - - + + File Name Filnavn - - + + Full Path Fuld sti - - + + Title Name (short) - - + + Title ID Titel-id - - + + Title Name (long) - + Row 2 Text: Tekst på række 2: - + Hide Titles without Icon Skjul titler uden ikon - + Single Line Mode - + <System> <System> - + English Engelsk @@ -3586,135 +3586,135 @@ Drag points to change position, or double-click table cells to edit values. ConfigureWeb - + Form Form - + Citra Web Service Citras webservice - + By providing your username and token, you agree to allow Citra to collect additional usage data, which may include user identifying information. Ved at give dit brugernavn og token, accepterer du at Citra indsamler yderligere brugsdata, som måske kan indeholde brugeridentificerende information. - - + + Verify Bekræft - + Sign up Opret konto - + Token: Token: - + Username: Brugernavn: - + What is my token? Hvad er min token? - + Web Service configuration can only be changed when a public room isn't being hosted. Konfiguration af webservicen kan kun ændres mens du ikke er vært af et offentligt rum. - + Telemetry Telemetri - + Share anonymous usage data with the Citra team Del anonym brugsdata med udviklerne af Citra - + Learn more Lær mere - + Telemetry ID: Telemetri-id: - + Regenerate Generer nyt - + Discord Presence Discord-presence - + Show Current Game in your Discord Status Vis kørende spil som din Discord-status - + <a href='https://citra-emu.org/entry/telemetry-and-why-thats-a-good-thing/'><span style="text-decoration: underline; color:#039be5;">Learn more</span></a> <a href='https://citra-emu.org/entry/telemetry-and-why-thats-a-good-thing/'><span style="text-decoration: underline; color:#039be5;">Lær mere</span></a> - + <a href='https://profile.citra-emu.org/'><span style="text-decoration: underline; color:#039be5;">Sign up</span></a> <a href='https://profile.citra-emu.org/'><span style="text-decoration: underline; color:#039be5;">Opret bruger</span></a> - + <a href='https://citra-emu.org/wiki/citra-web-service/'><span style="text-decoration: underline; color:#039be5;">What is my token?</span></a> <a href='https://citra-emu.org/wiki/citra-web-service/'><span style="text-decoration: underline; color:#039be5;">Hvad er min token?</span></a> - - + + Unspecified - - + + Telemetry ID: 0x%1 Telemetri-id: 0x%1 - + Token not verified - + Token was not verified. The change to your token has not been saved. - + Verifying... Godkender... - + Verification failed Bekræftelse mislykkedes - + Verification failed. Check that you have entered your token correctly, and that your internet connection is working. @@ -3722,47 +3722,47 @@ Drag points to change position, or double-click table cells to edit values. DirectConnect - + Direct Connect Forbind direkte - + Server Address - + <html><head/><body><p>Server address of the host</p></body></html> - + Port Port - + <html><head/><body><p>Port number the host is listening on</p></body></html> <html><head/><body><p>Portnummer værten lytter på</p></body></html> - + 24872 24872 - + Nickname Kaldenavn - + Password Adgangskode - + Connect Forbind @@ -3770,12 +3770,12 @@ Drag points to change position, or double-click table cells to edit values. DirectConnectWindow - + Connecting Forbinder - + Connect Forbind @@ -3783,110 +3783,110 @@ Drag points to change position, or double-click table cells to edit values. DumpingDialog - + Dump Video - + Output - + Format: - - - + + + Options: - - - - + + + + ... - + Path: - + Video - - + + Encoder: - - + + Bitrate: - - + + bps - + Audio - - + + Citra - + Please specify the output path. - + output formats - + video encoders - + audio encoders - + Could not find any available %1. Please check your FFmpeg installation used for compilation. - - - - + + + + %1 (%2) - + Select Video Output Path @@ -3894,417 +3894,417 @@ Please check your FFmpeg installation used for compilation. GMainWindow - + <a href='https://citra-emu.org/entry/telemetry-and-why-thats-a-good-thing/'>Anonymous data is collected</a> to help improve Citra. <br/><br/>Would you like to share your usage data with us? <a href='https://citra-emu.org/entry/telemetry-and-why-thats-a-good-thing/'>Anonym data bliver indsamlet</a>for at hjælpe med at forbedre Citra.<br/><br/>Har du lyst til at dele din brugsdata med os? - + Telemetry Telemetri - + No Suitable Vulkan Devices Detected - + Vulkan initialization failed during boot.<br/>Your GPU may not support Vulkan 1.1, or you do not have the latest graphics driver. - - + + Current emulation speed. Values higher or lower than 100% indicate emulation is running faster or slower than a 3DS. Nuværende emuleringshastighed. Værdier højere eller lavere end 100% indikerer at emuleringen kører hurtigere eller langsommere end en 3DS. - - + + How many frames per second the game is currently displaying. This will vary from game to game and scene to scene. Hvor mange billeder pr sekund spillet vises med. Dette vil variere fra spil til spil og scene til scene. - - + + Time taken to emulate a 3DS frame, not counting framelimiting or v-sync. For full-speed emulation this should be at most 16.67 ms. Tid det tog at emulere en 3DS-skærmbillede, hastighedsbegrænsning og v-sync er tille talt med. For emulering med fuld hastighed skal dette højest være 16,67ms. - + Clear Recent Files Ryd seneste filer - + &Continue - + &Pause - + Update Available Opdatering tilgængelig - + An update is available. Would you like to install it now? En opdatering er tilgængelig. Vil du installere den nu? - + No Update Found Ingen opdatering fundet - + No update is found. Ingen opdatering blev fundet. - + Citra is running a game TRANSLATORS: This string is shown to the user to explain why Citra needs to prevent the computer from sleeping - - + + Invalid ROM Format Ugyldigt ROM-format - - + + Your ROM format is not supported.<br/>Please follow the guides to redump your <a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>game cartridges</a> or <a href='https://citra-emu.org/wiki/dumping-installed-titles/'>installed titles</a>. Dette ROM-format understøttes ikke.<br/>Følg venligst guiden for at dumpe dine<a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>spilkasetter</a>eller<a href='https://citra-emu.org/wiki/dumping-installed-titles/'>installerede titler</a>igen. - + ROM Corrupted ROM beskadiget - + Your ROM is corrupted. <br/>Please follow the guides to redump your <a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>game cartridges</a> or <a href='https://citra-emu.org/wiki/dumping-installed-titles/'>installed titles</a>. Dette ROM er beskadiget.<br/>Følg venligst guiden for at dumpe dine<a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>spilkasetter </a>eller<a href='https://citra-emu.org/wiki/dumping-installed-titles/'>installerede titler</a>igen. - + ROM Encrypted ROM krypteret - + Your ROM is encrypted. <br/>Please follow the guides to redump your <a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>game cartridges</a> or <a href='https://citra-emu.org/wiki/dumping-installed-titles/'>installed titles</a>. Dette ROM er krypteret.<br/>Følg venligst guden for at dumpe dine<a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>spilkasetter</a>eller<a href='https://citra-emu.org/wiki/dumping-installed-titles/'>installerede titler</a>igen. - + Unsupported ROM - + GBA Virtual Console ROMs are not supported by Citra. - + Error while loading ROM! Kunne ikke indlæse ROM! - + An unknown error occurred. Please see the log for more details. - + CIA must be installed before usage CIA skal installeres før brug - + Before using this CIA, you must install it. Do you want to install it now? Før du kan bruge denne CIA, skal den være installeret. Vil du installere den nu? - - + + Slot %1 - + Slot %1 - %2 %3 - + Error Opening %1 Folder Fejl ved åbning af %1-mappen - - + + Folder does not exist! Mappen findes ikke! - + Dumping... - - + + Cancel - - - - - - - - - + + + + + + + + + Citra Citra - + Could not dump base RomFS. Refer to the log for details. - + Error Opening %1 Fejl ved åbning af %1 - + Select Directory Vælg mappe - + Properties - + The game properties could not be loaded. - + 3DS Executable (%1);;All Files (*.*) %1 is an identifier for the 3DS executable file extensions. 3DS-program (%1);;Alle filer (*.*) - + Load File Indlæs fil - + Load Files Indlæs filer - + 3DS Installation File (*.CIA*) 3DS-installationsfil (*.CIA) - + All Files (*.*) Alle filer (*.*) - + %1 has been installed successfully. %1 blev succesfuldt installeret. - + Unable to open File Kunne ikke åbne filen - + Could not open %1 Kunne ikke åbne %1 - + Installation aborted Installation afbrudt - + The installation of %1 was aborted. Please see the log for more details Installationen af %1 blev afbrudt. Se logfilen for flere detaljer. - + Invalid File Ugyldig fil - + %1 is not a valid CIA %1 er ikke en gyldig CIA - + Encrypted File Krypteret fil - + %1 must be decrypted before being used with Citra. A real 3DS is required. %1 skal dekrypteres før brug i Citra. En rigtig 3DS skal bruges. - + Unable to find File - + Could not find %1 - + Uninstalling '%1'... - + Failed to uninstall '%1'. - + Successfully uninstalled '%1'. - + File not found Filen blev ikke fundet - + File "%1" not found Filen "%1" blev ikke fundet - + Missing Citra Account Manglende Citra-konto - + You must link your Citra account to submit test cases.<br/>Go to Emulation &gt; Configure... &gt; Web to do so. Du skal tilknytte din Citra-bruger for at indsende testcases.<br/>Gå til Emulering &gt; Konfigurer... &gt; Web for at gøre dette. - + Savestates - + Warning: Savestates are NOT a replacement for in-game saves, and are not meant to be reliable. Use at your own risk! - - - + + + Error opening amiibo data file - + A tag is already in use. - + Game is not looking for amiibos. - + Amiibo File (%1);; All Files (*.*) Amiibo-fil (%1);;Alle filer (*.*) - + Load Amiibo Indlæs Amiibo - + Unable to open amiibo file "%1" for reading. - + Record Movie Optag film - + Movie recording cancelled. Filmoptagelse afbrudt - - + + Movie Saved Film gemt - - + + The movie is successfully saved. Filmen er succesfuldt blevet gemt. - + Invalid Screenshot Directory - + Cannot create specified screenshot directory. Screenshot path is set back to its default value. - + Could not load video dumper - + FFmpeg could not be loaded. Make sure you have a compatible version installed. To install FFmpeg to Citra, press Open and select your FFmpeg directory. @@ -4313,158 +4313,158 @@ To view a guide on how to install FFmpeg, press Help. - + Select FFmpeg Directory - + The provided FFmpeg directory is missing %1. Please make sure the correct directory was selected. - + FFmpeg has been sucessfully installed. - + Installation of FFmpeg failed. Check the log file for details. - + Could not start video dumping.<br>Refer to the log for details. - + Recording %1 - + Playing %1 / %2 - + Movie Finished - + Speed: %1% Hastighed: %1% - + Speed: %1% / %2% Hastighed: %1%/%2% - + Game: %1 FPS Spil: %1FPS - + Frame: %1 ms Billede: %1ms - + VOLUME: MUTE - + VOLUME: %1% Volume percentage (e.g. 50%) - + %1 is missing. Please <a href='https://citra-emu.org/wiki/dumping-system-archives-and-the-shared-fonts-from-a-3ds-console/'>dump your system archives</a>.<br/>Continuing emulation may result in crashes and bugs. %1 mangler. <a href='https://citra-emu.org/wiki/dumping-system-archives-and-the-shared-fonts-from-a-3ds-console/'>Dump venligst dine systemarkiver</a>.<br/>Fortsættelse af emuleringen kan føre til crashes og fejl. - + A system archive - + System Archive Not Found Systemarkiver blev ikke fundet - + System Archive Missing - + Save/load Error - + Fatal Error Alvorlig fejl - + A fatal error occurred. <a href='https://community.citra-emu.org/t/how-to-upload-the-log-file/296'>Check the log</a> for details.<br/>Continuing emulation may result in crashes and bugs. - + Fatal Error encountered - + Continue Fortsæt - + Quit Game - + OK - + Would you like to exit now? Vil du afslutte nu? - + The game is still running. Would you like to stop emulation? Spillet kører stadig. Vil du stoppe emuleringen? - + Playback Completed Afspilning færdig - + Movie playback completed. Afspilning af filmen er færdig. - + Primary Window - + Secondary Window @@ -4472,22 +4472,22 @@ To view a guide on how to install FFmpeg, press Help. GPUCommandListModel - + Command Name Kommandonavn - + Register Register - + Mask Maske - + New Value Ny værdi @@ -4495,23 +4495,23 @@ To view a guide on how to install FFmpeg, press Help. GPUCommandListWidget - + Pica Command List Pica-kommandoliste - - + + Start Tracing Start tracing - + Copy All Kopier alle - + Finish Tracing Afslut tracing @@ -4519,7 +4519,7 @@ To view a guide on how to install FFmpeg, press Help. GPUCommandStreamWidget - + Graphics Debugger Grafikfejlfinder @@ -4527,42 +4527,42 @@ To view a guide on how to install FFmpeg, press Help. GRenderWindow - + OpenGL not available! - + OpenGL shared contexts are not supported. - + Error while initializing OpenGL! - + Your GPU may not support OpenGL, or you do not have the latest graphics driver. - + Error while initializing OpenGL 4.3! - + Your GPU may not support OpenGL 4.3, or you do not have the latest graphics driver.<br><br>GL Renderer:<br>%1 - + Error while initializing OpenGL ES 3.2! - + Your GPU may not support OpenGL ES 3.2, or you do not have the latest graphics driver.<br><br>GL Renderer:<br>%1 @@ -4570,193 +4570,193 @@ To view a guide on how to install FFmpeg, press Help. GameList - - + + Compatibility Kompatibilitet - - + + Region Region - - + + File type Filtype - - + + Size Størrelse - + Open Save Data Location Åbn mappe til spildata - + Open Extra Data Location Åbn placering af ekstradata - + Open Application Location Åbn programmappe - + Open Update Data Location Åbn mappe til opdateringsdata - + Open DLC Data Location - + Open Texture Dump Location - + Open Custom Texture Location - + Open Mods Location - + Dump RomFS - + Disk Shader Cache - + Open Shader Cache Location - + Delete OpenGL Shader Cache - + Uninstall - + Everything - + Game - + Update - + DLC - + Navigate to GameDB entry Naviger til GameDB-side - + Properties - - - - + + + + Citra - + Are you sure you want to completely uninstall '%1'? This will delete the game if installed, as well as any installed updates or DLC. - - + + %1 (Update) - - + + %1 (DLC) - + Are you sure you want to uninstall '%1'? - + Are you sure you want to uninstall the update for '%1'? - + Are you sure you want to uninstall all DLC for '%1'? - + Scan Subfolders Skan undermapper - + Remove Game Directory Fjern spilmappe - + Move Up - + Move Down - + Open Directory Location Åbn mappens placering - + Name Navn @@ -4764,81 +4764,81 @@ This will delete the game if installed, as well as any installed updates or DLC. GameListItemCompat - + Perfect Perfekt - + Game functions flawless with no audio or graphical glitches, all tested functionality works as intended without any workarounds needed. Spillet fungerer fejlfrit uden nogle problemer med lyd eller grafik, alt testet funktionalitet virker som forventet uden midlertidige løsninger. - + Great God - + Game functions with minor graphical or audio glitches and is playable from start to finish. May require some workarounds. Spillet fungerer med kun små fejl i grafik eller lyd og kan spilles fra start til slut. Kan måske kræve at nogle fejl omgås. - + Okay Okay - + Game functions with major graphical or audio glitches, but game is playable from start to finish with workarounds. Spillet virker, men med store fejl i grafik og lyd, men kan spilles fra start til slut ved at omgå fejlene. - + Bad Dårlig - + Game functions, but with major graphical or audio glitches. Unable to progress in specific areas due to glitches even with workarounds. Spillet virker, men med store fejl i grafik og lyd. Kan ikke komme forbi bestemte områder på grund af fejl, selv ved forsøg på at omgå dem. - + Intro/Menu Intro/menu - + Game is completely unplayable due to major graphical or audio glitches. Unable to progress past the Start Screen. Spillet kan ikke spilles på grund af store fejl i grafik eller lyd. Kan ikke fortsætte efter startskærmen. - + Won't Boot Kører ikke - + The game crashes when attempting to startup. Spillet crasher ved forsøg på at starte. - + Not Tested Ikke testet - + The game has not yet been tested. Spillet er ikke endnu blevet testet. @@ -4846,7 +4846,7 @@ Kan ikke fortsætte efter startskærmen. GameListPlaceholder - + Double-click to add a new folder to the game list @@ -4854,27 +4854,27 @@ Kan ikke fortsætte efter startskærmen. GameListSearchField - + of af - + result resultat - + results resultater - + Filter: Filter: - + Enter pattern to filter Indtast mønster til filtrering @@ -4882,47 +4882,47 @@ Kan ikke fortsætte efter startskærmen. GameRegion - + Japan - + North America - + Europe - + Australia - + China - + Korea - + Taiwan - + Invalid region - + Region free @@ -4930,23 +4930,23 @@ Kan ikke fortsætte efter startskærmen. GraphicsBreakPointsWidget - + Pica Breakpoints Pica-breakpoints - - + + Emulation running Emulering kører - + Resume Fortsæt - + Emulation halted at breakpoint Emuleringen stoppet ved breakpoint @@ -4954,146 +4954,146 @@ Kan ikke fortsætte efter startskærmen. GraphicsSurfaceWidget - + Pica Surface Viewer Pica-overfladeviser - + Color Buffer Farvebuffer - + Depth Buffer Dybtebuffer - + Stencil Buffer Stencilbuffer - + Texture 0 Tekstur 0 - + Texture 1 Tekstur 1 - + Texture 2 Tekstur 2 - + Custom Tilpasset - + Unknown Ukendt - + Save Gem - + Source: Kilde: - + Physical Address: Fysisk adresse: - + Width: Bredde: - + Height: Højde: - + Format: Format: - + X: X: - + Y: Y: - + Pixel out of bounds Pixel udenfor grænserne - + (unable to access pixel data) (kan ikke tilgå pixeldata) - + (invalid surface address) (ugyldig overfladeadresse) - + (unknown surface format) (ukendt overfladeformat) - + Portable Network Graphic (*.png) Portable Network Graphic (*.png) - + Binary data (*.bin) Binært data (*.bin) - + Save Surface Gem overflade - - - - + + + + Error Fejl - - + + Failed to open file '%1' Kunne ikke åbne filen "%1" - + Failed to save surface data to file '%1' Kunne ikke gemme overfladedate til filen '%1' - + Failed to completely write surface data to file. The saved data will likely be corrupt. Kunne ikke skrive hele overfladedataen til filen. Den gemte data vil sandsynligt være beskadiget. @@ -5101,42 +5101,42 @@ Kan ikke fortsætte efter startskærmen. GraphicsTracingWidget - + CiTrace Recorder CiTrace-optager - + Start Recording Start optagelse - + Stop and Save Stop og gem - + Abort Recording Annuller optagelse - + Save CiTrace Gem CTrace - + CiTrace File (*.ctf) CTrace-fil (*.ctf) - + CiTracing still active CTracing kører stadig - + A CiTrace is still being recorded. Do you want to save it? If not, all recorded data will be discarded. En CTrace er ved at blive optaget. Vil du gemme den? Hvis ikke, bliver alt optaget data kasseret. @@ -5144,17 +5144,17 @@ Kan ikke fortsætte efter startskærmen. GraphicsVertexShaderModel - + Offset Offset - + Raw - + Disassembly Disassembly @@ -5162,127 +5162,127 @@ Kan ikke fortsætte efter startskærmen. GraphicsVertexShaderWidget - + Save Shader Dump Gem shader-dump - + Shader Binary (*.shbin) Binær shaderfil (*.shbin) - + Pica Vertex Shader - + (data only available at vertex shader invocation breakpoints) (data kun tilgængelig ved breakpoints ved aktivering af vertex-shaders) - + Dump Dump - + Input Data Inputdata - + Attribute %1 Attribut: %1 - + Cycle Index: Cycle-indeks: - + SRC1: %1, %2, %3, %4 SRC1: %1, %2, %3, %4 - + SRC2: %1, %2, %3, %4 SRC2: %1, %2, %3, %4 - + SRC3: %1, %2, %3, %4 SRC3: %1, %2, %3, %4 - + DEST_IN: %1, %2, %3, %4 DEST_IN: %1, %2, %3, %4 - + DEST_OUT: %1, %2, %3, %4 DEST_OUT: %1, %2, %3, %4 - + Address Registers: %1, %2 Adresseregistre: %1, %2 - + Compare Result: %1, %2 Sammenlign resultat: %1, %2 - + Static Condition: %1 Statisk betingelse: %1 - + Dynamic Conditions: %1, %2 Dynamisk betingelse: %1, %2 - + Loop Parameters: %1 (repeats), %2 (initializer), %3 (increment), %4 Loopparametre: %1 (gentager), %2 (initialisering), %3 (interval), %4 - + Instruction offset: 0x%1 Instruktionsoffset: 0x%1 - + -> 0x%2 -> 0x%2 - + (last instruction) (sidste instruktion) @@ -5290,67 +5290,67 @@ Kan ikke fortsætte efter startskærmen. HostRoom - + Create Room Opret rum - + Room Name Rummets navn - + Preferred Game Foretrukket spil - + Max Players Maks antal spillere - + Username Brugernavn - + (Leave blank for open game) (Lad være tomt for et åbent spil) - + Password Adgangskode - + Port Port - + Room Description Rumbeskrivelse - + Load Previous Ban List Indlæs tidligere liste af udelukkelser - + Public Offentlig - + Unlisted Ikke listet - + Host Room Start rum @@ -5358,12 +5358,12 @@ Kan ikke fortsætte efter startskærmen. HostRoomWindow - + Error Fejl - + Failed to announce the room to the public lobby. In order to host a room publicly, you must have a valid Citra account configured in Emulation -> Configure -> Web. If you do not want to publish a room in the public lobby, then select Unlisted instead. Debug Message: Kunne ikke annoncere rummet til den offentlige lobby. For at være vært for et offentligt rum, skal du have en gyldig Citra-bruger konfigureret i Emulering -> Konfigurer -> Web. Hvis du ikke vil offentliggøre et rum i den offentlige lobby, så vælg i stedet ulistet. @@ -5373,47 +5373,47 @@ Fejlfindingsbesked: IPCRecorder - + IPC Recorder - + Enable Recording - + Filter: - + Leave empty to disable filtering - + # - + Status - + Service - + Function - + Clear @@ -5421,47 +5421,47 @@ Fejlfindingsbesked: IPCRecorderWidget - + Invalid - + Sent - + Handling - + Success - + Error - + HLE Unimplemented - + HLE - + LLE - + Unknown @@ -5469,7 +5469,7 @@ Fejlfindingsbesked: LLEServiceModulesWidget - + Toggle LLE Service Modules Slå LLE-servicemoduler til/fra @@ -5477,53 +5477,53 @@ Fejlfindingsbesked: LoadingScreen - + Loading Shaders 387 / 1628 - + Loading Shaders %v out of %m - + Estimated Time 5m 4s - + Loading... - + Preloading Textures %1 / %2 - + Preparing Shaders %1 / %2 - + Loading Shaders %1 / %2 - + Launching... - + Now Loading %1 - + Estimated Time %1 @@ -5531,83 +5531,83 @@ Fejlfindingsbesked: Lobby - + Public Room Browser Gennemse offentlige rum - - + + Nickname Kaldenavn - + Filters Filtre - + Search Søg - + Games I Own Spil jeg ejer - + Hide Empty Rooms - + Hide Full Rooms Skjul fulde rum - + Refresh Lobby Genopfrisk lobby - + Password Required to Join Adgangskode krævet for deltagelse - + Password: Adgangskode: - + Room Name Rumnavn - + Preferred Game Foretrukket spil - + Host Vært - + Players Spillere - + Refreshing Genopfrisker - + Refresh List Genopfrisk liste @@ -5615,362 +5615,362 @@ Fejlfindingsbesked: MainWindow - + Citra Citra - + &File &Fil - + Boot Home Menu - + Recent Files Seneste filer - + Amiibo Amiibo - + &Emulation &Emulering - + Save State - + Load State - + &View &Vis - + Debugging Fejlfinding - + Screen Layout Skærmlayout - + Multiplayer Multiplayer - + Tools Værktøjer - + Movie Film - + Frame Advance Frame-fremgang - + &Help &Hjælp - + Load File... Indlæs fil… - + Install CIA... Installer CIA… - + JPN - + USA - + EUR - + AUS - + CHN - + KOR - + TWN - + E&xit A&fslut - + &Pause &Pause - + &Stop &Stop - + Save - + Load - + FAQ FAQ - + About Citra Om Citra - + Single Window Mode Tilstand med enkelt vindue - + Save to Oldest Slot - + Load from Newest Slot - + Configure... Konfigurer… - + Display Dock Widget Headers Vis titler på dokbare widgets - + Show Filter Bar Vis filterlinje - + Show Status Bar Vis statuslinje - + Create Pica Surface Viewer Opret Pica-overfladeviser - + Record... - + Play... - + Close - + Save without Closing - + Read-Only Mode - + Enable Frame Advancing Aktiver frame-fremgang - + Advance Frame Næste frame - + Capture Screenshot Tag skærmbillede - + Dump Video - + Browse Public Game Lobby Gennemse offentlig spillobby - + Create Room Opret rum - + Leave Room Forlad rum - + Direct Connect to Room Forbind direkte til rum - + Show Current Room Vis nuværende rum - + Fullscreen Fuld skærm - + Modify Citra Install Modificer Citra-installation - + Opens the maintenance tool to modify your Citra installation Åben vedligeholdelsesværktøjet for at modificere din installation af Citra - + Default Standard - + Single Screen Enkelt skærm - + Large Screen Stor skærm - + Hybrid Screen - + Side by Side Side om side - + Separate Windows - + Swap Screens Byt om på skærme - + Rotate Upright - + Check for Updates Tjek efter opdateringer - + Report Compatibility Rapporter kompatibilitet - + Restart Genstart - + Load... Indlæs... - + Remove Fjern - + Open Citra Folder Åbn Citra-mappe - + Configure Current Game... @@ -5978,7 +5978,7 @@ Fejlfindingsbesked: MicroProfileDialog - + MicroProfile MicroProfile @@ -5986,48 +5986,48 @@ Fejlfindingsbesked: ModerationDialog - + Moderation Moderation - + Ban List Udelukkelsesliste - - + + Refreshing Genindlæser - + Unban Fjern udelukning - + Subject Emne - + Type Type - + Forum Username Forum-brugernavn - + IP Address IP-adresse - + Refresh Genindlæs @@ -6035,91 +6035,91 @@ Fejlfindingsbesked: MoviePlayDialog - - + + Play Movie - + File: - + ... - + Info - + Game: - + Author: - + Rerecord Count: - + Length: - + Current running game will be stopped. - + <br>Current recording will be discarded. - + Citra TAS Movie (*.ctm) - + Invalid movie file. - + Revision dismatch, playback may desync. - + Indicated length is incorrect, file may be corrupted. - - - - + + + + (unknown) - + Game used in this movie is not in game list. - + (>1 day) @@ -6127,43 +6127,43 @@ Fejlfindingsbesked: MovieRecordDialog - - + + Record Movie - + File: - + ... - + Author: - + Current running game will be restarted. - + <br>Current recording will be discarded. - + Recording will start once you boot a game. - + Citra TAS Movie (*.ctm) @@ -6171,44 +6171,44 @@ Fejlfindingsbesked: MultiplayerState - - + + Current connection status Nuværende forbindelsesstatus - - + + Not Connected. Click here to find a room! Ikke forbundet. Klik her for at finde et rum! - - - + + + Connected Forbundet - - + + Not Connected Ikke forbundet - + Error Fejl - + Failed to update the room information. Please check your Internet connection and try hosting the room again. Debug Message: Kunne ikke opdatere rummets information. Tjek din internetforbindelse og prøv at starte rummet igen. Fejlfindingsmeddelelse: - + New Messages Received Nye beskeder modtaget @@ -6216,22 +6216,22 @@ Fejlfindingsmeddelelse: NetworkMessage - + Leave Room Forlad rum - + You are about to close the room. Any network connections will be closed. Du er ved at lukke rummet. Alle netværksforbindelser vil blive afbrudt. - + Disconnect Afbryd - + You are about to leave the room. Any network connections will be closed. Du er ved at forlade rummet. Alle netværksforbindelser vil blive afbrudt. @@ -6239,110 +6239,110 @@ Fejlfindingsmeddelelse: NetworkMessage::ErrorManager - + Username is not valid. Must be 4 to 20 alphanumeric characters. - + Room name is not valid. Must be 4 to 20 alphanumeric characters. - + Username is already in use or not valid. Please choose another. - + IP is not a valid IPv4 address. - + Port must be a number between 0 to 65535. - + You must choose a Preferred Game to host a room. If you do not have any games in your game list yet, add a game folder by clicking on the plus icon in the game list. - + Unable to find an internet connection. Check your internet settings. - + Unable to connect to the host. Verify that the connection settings are correct. If you still cannot connect, contact the room host and verify that the host is properly configured with the external port forwarded. - + Unable to connect to the room because it is already full. - + Creating a room failed. Please retry. Restarting Citra might be necessary. - + The host of the room has banned you. Speak with the host to unban you or try a different room. - + Version mismatch! Please update to the latest version of Citra. If the problem persists, contact the room host and ask them to update the server. - + Incorrect password. - + An unknown error occurred. If this error continues to occur, please open an issue - + Connection to room lost. Try to reconnect. - + You have been kicked by the room host. - + MAC address is already in use. Please choose another. - + Your Console ID conflicted with someone else's in the room. Please go to Emulation > Configure > System to regenerate your Console ID. - + You do not have enough permission to perform this action. - + The user you are trying to kick/ban could not be found. They may have left the room. - + Error @@ -6350,37 +6350,37 @@ They may have left the room. OptionSetDialog - + Options - + Unset - + unknown - + %1 &lt;%2> %3 - + Range: %1 - %2 - + custom - + %1 (0x%2) %3 @@ -6388,32 +6388,32 @@ They may have left the room. OptionsDialog - + Options - + Double click to see the description and change the values of the options. - + Specific - + Generic - + Name - + Value @@ -6421,157 +6421,157 @@ They may have left the room. QObject - + Supported image files (%1) Understøttede billedformater (%1) - + Open File Åbn fil - + Error Fejl - + Couldn't load the camera Kunne ikke sætte kameraet op - + Couldn't load %1 Kunne ikke indlæse %1 - - + + Shift Shift - - + + Ctrl Ctrl - - + + Alt Alt - - - + + + [not set] [ikke sat] - - + + Hat %1 %2 Hat %1 %2 - - - - - - + + + + + + Axis %1%2 Akse %1%2 - - + + Button %1 Knap %1 - + GC Axis %1%2 - + GC Button %1 - - - + + + [unknown] [ukendt] - + [unused] [ubrugt] - + auto - + true - + false - - + + none - + %1 (0x%2) - + Invalid region Ugyldig region - + Installed Titles - + System Titles - + Add New Game Directory - + Not playing a game Spiller ikke et spil - + %1 is not playing a game %1 spiller ikke et spil - + %1 is playing %2 %1 spiller %2 @@ -6579,7 +6579,7 @@ They may have left the room. QtKeyboard - + Software Keyboard Softwaretastatur @@ -6587,27 +6587,27 @@ They may have left the room. QtKeyboardDialog - + Text length is not correct (should be %1 characters) Længden på teksten er ikke korrekt (bør være %1 tegn) - + Text is too long (should be no more than %1 characters) Teksten er for lang (bør ikke være mere end %1 tegn) - + Blank input is not allowed Blankt input er ikke tilladt - + Empty input is not allowed Tomt input er ikke tilladt - + Validation error Valideringsfejl @@ -6615,12 +6615,12 @@ They may have left the room. QtMiiSelectorDialog - + Mii Selector Mii-vælger - + Standard Mii Standard-Mii @@ -6628,95 +6628,95 @@ They may have left the room. RecordDialog - + View Record - + Client - - + + Process: - - + + Thread: - - + + Session: - + Server - + General - + Client Port: - + Service: - + Function: - + Command Buffer - + Select: - + Request Untranslated - + Request Translated - + Reply Untranslated - + Reply Translated - + OK - + null @@ -6724,37 +6724,37 @@ They may have left the room. RegistersWidget - + Registers Registre - + VFP Registers VFP-registre - + VFP System Registers VFP-systemregistre - + Vector Length Vektorlængde - + Vector Stride Vektor-stride - + Rounding Mode Afrundingstilstand - + Vector Iteration Count Vektorens antal iterationer @@ -6762,7 +6762,7 @@ They may have left the room. SequenceDialog - + Enter a hotkey Vælg en genvejstast @@ -6770,7 +6770,7 @@ They may have left the room. WaitTreeEvent - + reset type = %1 genstarttype = %1 @@ -6778,12 +6778,12 @@ They may have left the room. WaitTreeMutex - + locked %1 times by thread: låst %1 gang(e) af tråd: - + free fri @@ -6791,7 +6791,7 @@ They may have left the room. WaitTreeMutexList - + holding mutexes holder mutexes @@ -6799,12 +6799,12 @@ They may have left the room. WaitTreeObjectList - + waiting for all objects venter på alle objekter - + waiting for one of the following objects venter på et af følgende objekter @@ -6812,12 +6812,12 @@ They may have left the room. WaitTreeSemaphore - + available count = %1 tilgængeligt antal = %1 - + max count = %1 maksimalt antal = %1 @@ -6825,112 +6825,112 @@ They may have left the room. WaitTreeThread - + running kører - + ready klar - + waiting for address 0x%1 venter på adresse 0x%1 - + sleeping sover - + waiting for IPC response venter på IPC-svar - + waiting for objects venter på objekter - + waiting for HLE return venter på HLE-retur - + dormant hvilende - + dead død - + PC = 0x%1 LR = 0x%2 PC = 0x%1 LR = %0x%2 - + default standard - + all alle - + AppCore AppCore - + SysCore SysCore - + Unknown processor %1 Ukendt processor %1 - + object id = %1 - + processor = %1 processor = %1 - + thread id = %1 tråd-id = %1 - + process = %1 (%2) - + priority = %1(current) / %2(normal) prioritet = %1(nuværende) / %2(normal) - + last running ticks = %1 sidste kørende ticks = %1 - + not holding mutex holder ikke mutex @@ -6938,7 +6938,7 @@ They may have left the room. WaitTreeThreadList - + waited by thread afventet af tråd @@ -6946,17 +6946,17 @@ They may have left the room. WaitTreeTimer - + reset type = %1 genstartstype = %1 - + initial delay = %1 indledende forsinkelse = %1 - + interval delay = %1 intervalforsinkelse = %1 @@ -6964,27 +6964,27 @@ They may have left the room. WaitTreeWaitObject - + [%1]%2 %3 [%1][%2 %3 - + waited by no thread ikke afventet af nogen tråd - + one shot en gang - + sticky fast - + pulse pulserende @@ -6992,7 +6992,7 @@ They may have left the room. WaitTreeWidget - + Wait Tree Afventningstræ diff --git a/dist/languages/de.ts b/dist/languages/de.ts index 77bb88e3a..18513aad7 100644 --- a/dist/languages/de.ts +++ b/dist/languages/de.ts @@ -2,17 +2,17 @@ ARMRegisters - + ARM Registers ARM Register - + Register Register - + Value Wert @@ -20,27 +20,27 @@ AboutDialog - + About Citra Über Citra - - <html><head/><body><p><img src=":/icons/citra.png"/></p></body></html> - <html><head/><body><p><img src=":/icons/citra.png"/></p></body></html> + + <html><head/><body><p><img src=":/icons/lime.png"/></p></body></html> + <html><head/><body><p><img src=":/icons/lime.png"/></p></body></html> - + <html><head/><body><p><span style=" font-size:28pt;">Citra</span></p></body></html> <html><head/><body><p><span style=" font-size:28pt;">Citra</span></p></body></html> - + <html><head/><body><p>%1 | %2-%3 (%4)</p></body></html> <html><head/><body><p>%1 | %2-%3 (%4)</p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -57,12 +57,12 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">Diese Software sollte ausschließlich zum Spielen legal erworbener Spiele genutzt werden.</span></p></body></html> - + <html><head/><body><p><a href="https://citra-emu.org/"><span style=" text-decoration: underline; color:#039be5;">Website</span></a> | <a href="https://community.citra-emu.org/"><span style=" text-decoration: underline; color:#039be5;">Forum</span></a> | <a href="https://github.com/citra-emu"><span style=" text-decoration: underline; color:#039be5;">Source Code</span></a> | <a href="https://github.com/citra-emu/citra/graphs/contributors"><span style=" text-decoration: underline; color:#039be5;">Contributors</span></a> | <a href="https://github.com/citra-emu/citra/blob/master/license.txt"><span style=" text-decoration: underline; color:#039be5;">License</span></a></p></body></html> <html><head/><body><p><a href="https://citra-emu.org/"><span style=" text-decoration: underline; color:#039be5;">Website</span></a>|<a href="https://community.citra-emu.org/"><span style=" text-decoration: underline; color:#039be5;">Forum</span></a>|<a href="https://github.com/citra-emu"><span style=" text-decoration: underline; color:#039be5;">Quellcode</span></a>|<a href="https://github.com/citra-emu/citra/graphs/contributors"><span style=" text-decoration: underline; color:#039be5;">Mitwirkende</span></a>|<a href="https://github.com/citra-emu/citra/blob/master/license.txt"><span style=" text-decoration: underline; color:#039be5;">Lizenz</span></a></p></body></html> - + <html><head/><body><p><span style=" font-size:7pt;">&quot;3DS&quot; is a trademark of Nintendo. Citra is not affiliated with Nintendo in any way.</span></p></body></html> <html><head/><body><p><span style=" font-size:7pt;">&quot;3DS&quot; ist eine Handelsmarke von Nintendo. Citra ist unabhängig von Nintendo und in keiner Weise an Nintendo angegliedert.</span></p></body></html> @@ -70,47 +70,47 @@ p, li { white-space: pre-wrap; } BreakPointModel - + Pica command loaded Pica-Befehl geladen - + Pica command processed Pica-Befehl verarbeitet - + Incoming primitive batch Eingehender primitiver Stapel - + Finished primitive batch Fertiger primitiver Stapel - + Vertex shader invocation Vertex Shader Aufruf - + Incoming display transfer Eingehende Anzeigeübertragung - + GSP command processed GSP-Befehl verarbeitet - + Buffers swapped Puffer getauscht - + Unknown debug context event Unbekanntes Debug-Kontextereignis @@ -118,32 +118,32 @@ p, li { white-space: pre-wrap; } CalibrationConfigurationDialog - + Communicating with the server... Kommuniziere mit dem Server... - + Cancel Abbrechen - + Touch the top left corner <br>of your touchpad. Berühren Sie die obere linke Ecke <br>des Touchpads. - + Now touch the bottom right corner <br>of your touchpad. Berühren Sie jetzt die untere rechte Ecke <br>des Touchpads. - + Configuration completed! Konfiguration abgeschlossen! - + OK OK @@ -151,93 +151,93 @@ p, li { white-space: pre-wrap; } ChatRoom - + Room Window Raum Fenster - + Send Chat Message Nachricht senden - + Send Message Nachricht senden - + Members Mitglieder - + %1 has joined %1 ist dem Chat beigetreten - + %1 has left %1 hat den Chat verlassen - + %1 has been kicked %1 wurde gekickt - + %1 has been banned %1 wurde gebannt - + %1 has been unbanned %1 wurde entbannt - + View Profile Profil ansehen - - + + Block Player Spieler blockieren - + When you block a player, you will no longer receive chat messages from them.<br><br>Are you sure you would like to block %1? Wenn Sie einen Spieler blockieren, können Sie keine Nachrichten mehr von diesem Empfangen.<br><br> Sind sie sich sicher, dass Sie %1 blockieren möchten? - + Kick Kick - + Ban Bann - + Kick Player Spieler kicken - + Are you sure you would like to <b>kick</b> %1? Sind Sie sich sicher, dass Sie %1 <b>kicken</b> möchten? - + Ban Player Spieler bannen - + Are you sure you would like to <b>kick and ban</b> %1? This would ban both their forum username and their IP address. @@ -249,22 +249,22 @@ Dies bannt sowohl den Forum-Nutzernamen, als auch die IP-Adresse. ClientRoom - + Room Window Raum-Fenster - + Room Description Raumbeschreibung - + Moderation... Moderation... - + Leave Room Raum verlassen @@ -272,17 +272,17 @@ Dies bannt sowohl den Forum-Nutzernamen, als auch die IP-Adresse. ClientRoomWindow - + Connected Verbunden - + Disconnected Nicht verbunden - + %1 (%2/%3 members) - connected %1 (%2/%3 Nutzer) - verbunden @@ -290,108 +290,108 @@ Dies bannt sowohl den Forum-Nutzernamen, als auch die IP-Adresse. CompatDB - + Report Compatibility Kompatibilität übermitteln - - + + Report Game Compatibility Kompatibilität des Spiels übermitteln - + <html><head/><body><p><span style=" font-size:10pt;">Should you choose to submit a test case to the </span><a href="https://citra-emu.org/game/"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">Citra Compatibility List</span></a><span style=" font-size:10pt;">, The following information will be collected and displayed on the site:</span></p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Hardware Information (CPU / GPU / Operating System)</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Which version of Citra you are running</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The connected Citra account</li></ul></body></html> <html><head/><body><p><span style=" font-size:10pt;">Sollten Sie sich dazu entscheiden, einen Kompatibilitätsbericht zur</span><a href="https://citra-emu.org/game/"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;"> Citra Kompatibilitätsliste </span></a><span style=" font-size:10pt;">hinzuzufügen, werden die folgenden Informationen gesammelt und auf der Seite angezeigt:</span></p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Hardware Informationen (CPU / GPU / Betriebssystem)</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Die Citra Version, die Sie benutzen</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Der verbundene Citra account</li></ul></body></html> - + Perfect Perfekt - + <html><head/><body><p>Game functions flawlessly with no audio or graphical glitches.</p></body></html> <html><head/><body><p>Spiel funktioniert einwandfrei, keine Audio- oder Grafikfehler.</p></body></html> - + Great Großartig - + <html><head/><body><p>Game functions with minor graphical or audio glitches and is playable from start to finish. May require some workarounds.</p></body></html> <html><head/><body><p>Spiel funktioniert mit kleineren Grafik- und Audiofehlern und ist von Anfang bis Ende spielbar. Eventuell sind Workarounds nötig.</p></body></html> - + Okay Okay - + <html><head/><body><p>Game functions with major graphical or audio glitches, but game is playable from start to finish with workarounds.</p></body></html> <html><head/><body><p>Spiel funktioniert mit größeren Grafik- und Audiofehlern, ist mit Workarounds aber bis zum Ende spielbar. - + Bad Schlecht - + <html><head/><body><p>Game functions, but with major graphical or audio glitches. Unable to progress in specific areas due to glitches even with workarounds.</p></body></html> <html><head/><body><p>Spiel funktioniert mit größeren Grafik- und Audiofehlern. Spielfortschritt ist aufgrund von Glitches aber an manchen Stellen unmöglich.</p></body></html> - + Intro/Menu Intro/Menü - + <html><head/><body><p>Game is completely unplayable due to major graphical or audio glitches. Unable to progress past the Start Screen.</p></body></html> <html><head/><body><p>Spiel ist wegen schwerwiegenden Grafik- und Audiofehlern unspielbar. Lediglich der Startbildschirm des Spiels funktioniert.</p></body></html> - + Won't Boot Startet nicht - + <html><head/><body><p>The game crashes when attempting to startup.</p></body></html> <html><head/><body><p>Das Spiel stürzt beim Versuch, es zu starten ab.</p></body></html> - + <html><head/><body><p>Independent of speed or performance, how well does this game play from start to finish on this version of Citra?</p></body></html> <html><head/><body><p>Unabhängig von Geschwindigkeit oder Performance - wie gut lässt sich das Spiel mit dieser Citra Version von Anfang bis Ende spielen?</p></body></html> - + Thank you for your submission! Vielen Dank für Ihren Beitrag! - + Submitting Übertragen - + Communication error Kommunikationsfehler - + An error occurred while sending the Testcase Beim Senden des Testfalles ist ein Fehler aufgetreten - + Next Weiter @@ -399,93 +399,93 @@ Dies bannt sowohl den Forum-Nutzernamen, als auch die IP-Adresse. ConfigureAudio - + Output Ausgabe - + Emulation: Emulation: - + HLE (fast) HLE (schnell) - + LLE (accurate) LLE (genau) - + LLE multi-core LLE multi-core - + Output Type Ausgabe-Typ - + Output Device Ausgabe-Gerät - + This post-processing effect adjusts audio speed to match emulation speed and helps prevent audio stutter. This however increases audio latency. Dieser Nachbearbeitungseffekt passt die Audiogeschwindigkeit an die Emulationsgeschwindigkeit an und hilft, Audiostottern zu vermeiden. Dabei wird allerding die Audiolatenz erhöht. - + Enable audio stretching Audiodehnung aktivieren - + Use global volume Nutze globale Lautstärke - + Set volume: Lautstärke festlegen: - + Volume: Lautstärke: - + 0 % 0 % - + Microphone Mikrofon - + Input Type Eingabe-Typ - + Input Device Eingabe-Gerät - - + + Auto Automatisch - + %1% Volume percentage (e.g. 50%) %1% @@ -494,203 +494,203 @@ Dies bannt sowohl den Forum-Nutzernamen, als auch die IP-Adresse. ConfigureCamera - + Form Form - + Camera Kamera - - + + Select the camera to configure Kamera zur Konfiguration auswählen - + Camera to configure: Zu konfigurierende Kamera: - + Front Vorderseite - + Rear Rückseite - - + + Select the camera mode (single or double) Wählen Sie den Kameramodus (2D oder 3D) - + Camera mode: Kameramodus - + Single (2D) 2D - + Double (3D) 3D - - + + Select the position of camera to configure Wählen Sie die Position der zu konfigurierenden Kamera - + Camera position: Kameraposition: - + Left Links - + Right Rechts - + Configuration Konfiguration - - + + Select where the image of the emulated camera comes from. It may be an image or a real camera. Wählen Sie eine Quelle für das Bild der emulierten Kamera. Dies kann ein Bild oder eine echte Kamera sein. - + Camera Image Source: Kamera-Bildquelle: - + Blank (blank) Nichts - + Still Image (image) Bild - + System Camera (qt) Systemkamera (qt) - + File: Datei: - + ... ... - - + + Select the system camera to use Wählen Sie eine Kamera aus - + Camera: Kamera: - + <Default> <Default> - - + + Select the image flip to apply Wählen Sie die Rotation des Kamerabildes - + Flip: Rotation: - + None Keine - + Horizontal Horizontal - + Vertical Vertikal - + Reverse Rückwärts - + Select an image file every time before the camera is loaded Beim Laden der Kamera jedes Mal ein Bild wählen - + Prompt before load Vor dem Laden nachfragen - + Preview Vorschau - + Resolution: 512*384 Auflösung: 512*384 - + Click to preview Für Vorschau klicken - + Resolution: %1*%2 Auflösung: %1*%2 - + Supported image files (%1) Unterstützte Bilddateien (%1) - + Open File Datei öffnen @@ -698,88 +698,88 @@ Dies bannt sowohl den Forum-Nutzernamen, als auch die IP-Adresse. ConfigureCheats - - + + Cheats Cheats - + Add Cheat Cheat hinzufügen - + Available Cheats: Verfügbare Cheats: - + Name Name - + Type Typ - + Save Speichern - + Delete Löschen - + Name: Name: - + Notes: Notizen: - + Code: Code: - + Would you like to save the current cheat? Möchtest du den aktuellen Cheat speichern? - - - + + + Save Cheat Cheat speichern - + Please enter a cheat name. Bitte geben sie einen Cheat-Namen ein. - + Please enter the cheat code. Bitte geben sie den Cheat-Code ein. - + Cheat code line %1 is not valid. Would you like to ignore the error and continue? Cheat-Code Zeile %1 ist ungültig. Möchten Sie den Fehler ignorieren und fortfahren? - - + + [new cheat] [neuer Cheat] @@ -787,127 +787,127 @@ Möchten Sie den Fehler ignorieren und fortfahren? ConfigureDebug - + Form Form - + GDB GDB - + Enable GDB Stub GDB-Stub aktivieren - + Port: Port: - + Logging Protokollieren - + Global Log Filter Globaler Protokoll Filter - + Show Log Console (Windows Only) Log-Konsole anzeigen (nur Windows) - + Open Log Location Log-Verzeichnis öffnen - + CPU CPU - + Use global clock speed Nutze globale Takt-Rate - + Set clock speed: Takt-Rate festlegen: - + CPU Clock Speed CPU-Takt-Rate - + <html><body>Changes the emulated CPU clock frequency.<br>Underclocking can increase performance but may cause the game to freeze.<br>Overclocking may reduce in game lag but also might cause freezes</body></html> <html><body>Verändert die emulierte CPU-Takt-Frequenz.<br>Reduktion ("Underclocking") kann die Leistung erhöhen, aber kann dazu führen, dass Spiele einfrieren.<br>Erhöhung ("Overclocking") kann die Reaktionszeit in Spielen reduzieren, aber ebenfalls zum Einfrieren eines Spieles führen</body></html> - + <html><head/><body><p>Enables the use of the ARM JIT compiler for emulating the 3DS CPUs. Don't disable unless for debugging purposes</p></body></html> <html><head/><body><p>Aktiviert die Nutzung vom ARM-JIT-Compiler für die Emulation der 3DS-CPUs. Deaktivieren sie dies nicht, außer für Debugging-Zwecke</p></body></html> - + Enable CPU JIT CPU JIT aktivieren - + Enable debug renderer Debug-Renderer aktivieren - + Dump command buffers Dumpe Befehls-Puffer (Command-Buffer) - + Miscellaneus Verschiedenes - + <html><head/><body><p>Introduces a delay to the first ever launched app thread if LLE modules are enabled, to allow them to initialize.</p></body></html> - + Delay app start for LLE module initialization App-Start für LLE-Modul-Initialisierung verzögern - + <html><head/><body><p>CPU Clock Speed Information<br/>Underclocking can increase performance but may cause the game to freeze.<br/>Overclocking may reduce in game lag but also might cause freezes</p></body></html> <html><head/><body><p>CPU-Takt-Raten-Information<br/>Reduktion ("Underclocking") kann die Leistung erhöhen, aber kann dazu führen, dass Spiele einfrieren.<br/>Erhöhung ("Overclocking") kann die Reaktionszeit in Spielen reduzieren, aber ebenfalls zum Einfrieren eines Spieles führen</p></body></html> - + Validation layer not available Validierungsschicht (Validation-Layer) nicht verfügbar - + Unable to enable debug renderer because the layer <strong>VK_LAYER_KHRONOS_validation</strong> is missing. Please install the Vulkan SDK or the appropriate package of your distribution Debug Renderer kann nicht aktiviert werden, weil <strong>VK_LAYER_KHRONOS_validation</strong> fehlt. Bitte installieren Sie das Vulkan SDK oder das passende Paket für Ihre Distribution. - + Command buffer dumping not available - + Unable to enable command buffer dumping because the layer <strong>VK_LAYER_LUNARG_api_dump</strong> is missing. Please install the Vulkan SDK or the appropriate package of your distribution @@ -915,92 +915,92 @@ Möchten Sie den Fehler ignorieren und fortfahren? ConfigureDialog - + Citra Configuration Citra-Konfiguration - - - + + + General Allgemein - - - + + + System System - - + + Input Eingabe - - + + Hotkeys Tastenkürzel - - + + Graphics Grafik - - + + Enhancements Verbesserungen - - - + + + Audio Audio - - + + Camera Kamera - - + + Debug Debug - - + + Storage Speicher - - + + Web Web - - + + UI Benutzeroberfläche - + Controls Steuerung - + Advanced Fortgeschritten @@ -1008,278 +1008,278 @@ Möchten Sie den Fehler ignorieren und fortfahren? ConfigureEnhancements - + Form - + Renderer Renderer - + Internal Resolution Interne Auflösung - + Auto (Window Size) Auto (Fenstergröße) - + Native (400x240) Nativ (400x240) - + 2x Native (800x480) 2x Nativ (800x480) - + 3x Native (1200x720) 3x Nativ (1200x720) - + 4x Native (1600x960) 4x Nativ (1600x960) - + 5x Native (2000x1200) 5x Nativ (2000x1200) - + 6x Native (2400x1440) 6x Nativ (2400x1440) - + 7x Native (2800x1680) 7x Nativ (2800x1680) - + 8x Native (3200x1920) 8x Nativ (3200x1920) - + 9x Native (3600x2160) 9x Nativ (3600x2160) - + 10x Native (4000x2400) 10x Nativ (4000x2400) - + Enable Linear Filtering Aktiviere lineare Filterung - + Post-Processing Shader Nachbearbeitungsshader - + Texture Filter Texturenfilter - + None Keiner - + Anime4K Anime4K - + Bicubic Bikubisch - + ScaleForce ScaleForce - + xBRZ xBRZ - + MMPX MMPX - + Stereoscopy Stereoskopie - + Stereoscopic 3D Mode - + Off Aus - - + + Side by Side Nebeneinander - + Anaglyph - + Interlaced - + Reverse Interlaced Umgekehrt interlaced - + Depth Tiefe - + % % - + Eye to Render in Monoscopic Mode Auge zum Rendern im Monoskopischen Modus - + Left Eye (default) Linkes Auge (Voreinstellung) - + Right Eye Rechtes Auge - + Layout Anordnung - + Screen Layout: Bildschirm-Anordnung: - + Default Standard - + Single Screen Einzelner Bildschirm - + Large Screen Großer Bildschirm - + Separate Windows Getrennte Fenster - + Hybrid Screen Hybrid-Bildschirm - + Swap Screens Bildschirme tauschen - + Rotate Screens Upright Rotiere Bildschirme aufrecht - + Large Screen Proportion: Proportionen des großen Bildschirms: - + Background Color: Hintergrundfarbe: - + Utility - + <html><head/><body><p>Replace textures with PNG files.</p><p>Textures are loaded from load/textures/[Title ID]/.</p></body></html> - + Use Custom Textures Nutze benutzerdefinierte Texturen - + <html><head/><body><p>Dump textures to PNG files.</p><p>Textures are dumped to dump/textures/[Title ID]/.</p></body></html> - + Dump Textures - + <html><head/><body><p>Load all custom textures into memory on boot, instead of loading them when the game requires them.</p></body></html> - + Preload Custom Textures Benutzerdefinierte Texturen im Voraus laden - + <html><head/><body><p>Load custom textures asynchronously with background threads to reduce loading stutter</p></body></html> - + Async Custom Texture Loading Benutzerdefinierte Texturen asynchron laden @@ -1287,136 +1287,136 @@ Möchten Sie den Fehler ignorieren und fortfahren? ConfigureGeneral - + Form Form - + General Allgemein - + Confirm exit while emulation is running Verlassen bestätigen, während Emulation läuft - + Pause emulation when in background Emulation im Hintergrund pausieren - + Mute audio when in background Ton stummschalten, wenn im Hintergrund - + Hide mouse on inactivity Maus bei Inaktivität ausblenden - + Enable Gamemode Aktiviere GameMode - + Updates Updates - + Check for updates on start Beim Start nach Updates suchen - + Silently auto update after closing Nach dem Beenden im Hintergrund Updates automatisch installieren - + Emulation Emulation - + Region: Region: - + Auto-select Automatisch auswählen - + Use global emulation speed Nutze globale Emulationsgeschwindigkeit - + Set emulation speed: Emulationsgeschwindigkeit festlegen: - + Emulation Speed: Geschwindigkeit der Emulation: - + Screenshots Bildschirmfotos - + Use global screenshot path Nutze globalen Bildschirmfoto-Pfad - + Set screenshot path: Bildschirmfoto-Pfad festlegen: - + Save Screenshots To Bildschirmfotos speichern in - + ... ... - + Reset All Settings Alle Einstellungen zurücksetzen - - - - - + + + + + unthrottled ungedrosselt - + Select Screenshot Directory Wähle Bildschirmfoto-Verzeichnis - + Citra Citra - + Are you sure you want to <b>reset your settings</b> and close Citra? Sind Sie sich sicher, dass Sie <b>die Einstellungen zurücksetzen</b> und Citra beenden möchten? @@ -1424,157 +1424,157 @@ Möchten Sie den Fehler ignorieren und fortfahren? ConfigureGraphics - + Form Form - + Graphics Grafik - + API Settings API-Einstellungen - + Graphics API Grafik-API - + Software Software - + OpenGL OpenGL - + Vulkan Vulkan - + Physical Device Physisches Gerät - + OpenGL Renderer - + SPIR-V Shader Generation SPIR-V-Shader-Erzeugung - + Renderer Renderer - + <html><head/><body><p>Use the selected graphics API to accelerate shader emulation.</p><p>Requires a relatively powerful GPU for better performance.</p></body></html> - + Enable Hardware Shader Aktiviere Hardware Shader - + <html><head/><body><p>Correctly handle all edge cases in multiplication operation in shaders. </p><p>Some games requires this to be enabled for the hardware shader to render properly.</p><p>However this would reduce performance in most games.</p></body></html> <html><head/><body><p>Korrekte Handhabung aller Grenzfälle bei Multiplikationsoperationen in Shadern.</p><p>Manche Spiele benötigen dies damit der Hardware Shader korrekt rendert.</p><p>Dies reduziert die Performance in den meisten Spielen.</p></body></html> - + Accurate Multiplication Genaue Multiplikation - + <html><head/><body><p>Use the JIT engine instead of the interpreter for software shader emulation. </p><p>Enable this for better performance.</p></body></html> <html><head/><body><p>Verwende die JIT Engine anstatt des Interpreters für Software Shader Emulation.</p><p>Aktivieren für bessere Performance.</p></body></html> - + Enable Shader JIT JIT Shader aktivieren - + <html><head/><body><p>Compile shaders using background threads to avoid shader compilation stutter. Expect temporary graphical glitches</p></body></html> - + Enable Async Shader Compilation Aktiviere asynchrone Shader-Kompilierung - + <html><head/><body><p>Perform presentation on separate threads. Improves performance when using Vulkan in most games.</p></body></html> - + Enable Async Presentation Aktiviere asynchrone Präsentation - + Advanced Fortgeschritten - + <html><head/><body><p>Overrides the sampling filter used by games. This can be useful in certain cases with poorly behaved games when upscaling. If unsure set this to Game Controlled</p></body></html> - + Texture Sampling Textur-Sampling - + Game Controlled Spielgesteuert - + Nearest Neighbor Nearest-Neighbor - + Linear Linear - + <html><head/><body><p>Reduce stuttering by storing and loading generated shaders to disk.</p></body></html> <html><head/><body><p> Reduziere Stottern durch Speichern und Laden der Shader auf/von einem Speicher.</p></body></html> - + Use Disk Shader Cache Shader-Cache nutzen - + VSync prevents the screen from tearing, but some graphics cards have lower performance with VSync enabled. Keep it enabled if you don't notice a performance difference. VSync verhindert Screen-Tearing, allerdings performieren manche Grafikkarten schlechter, wenn VSync aktiv ist. Lassen Sie es aktiv, wenn Sie keinen Performance-Unterschied bemerken. - + Enable VSync V-Sync aktivieren @@ -1582,63 +1582,63 @@ Möchten Sie den Fehler ignorieren und fortfahren? ConfigureHotkeys - + Hotkey Settings Tastenkürzel-Einstellungen - + Double-click on a binding to change it. Doppelklicken Sie auf eine Zuweisung, um sie zu bearbeiten - + Clear All Alles leeren - + Restore Defaults Voreinstellungen wiederherstellen - + Action Aktion - + Hotkey Tastenkürzel - - + + Conflicting Key Sequence Widersprüchliche Tastenfolge - + The entered key sequence is already assigned to: %1 - + A 3ds button Eine 3DS-Taste - + Restore Default Voreinstellung wiederherstellen - + Clear Leeren - + The default key sequence is already assigned to: %1 @@ -1646,307 +1646,307 @@ Möchten Sie den Fehler ignorieren und fortfahren? ConfigureInput - + ConfigureInput ConfigureInput - + Profile Profil - + New Neu - + Delete Löschen - + Rename Umbenennen - + Face Buttons Tasten - + Y: Y: - + X: X: - + B: B: - + A: A: - + Directional Pad Steuerkreuz - - - + + + Up: Hoch: - - - + + + Down: Runter: - - - + + + Left: Links: - - - + + + Right: Rechts: - + Misc. Sonstiges - + Start: Start: - + Select: Select: - + Home: Home: - + Power: - + Circle Mod: Schiebepad Modus: - + GPIO14: GPIO14: - + Debug: Debug: - + Circle Pad Schiebepad - - - + + + Set Analog Stick Analog-Stick festlegen - - + + Deadzone: 0 Deadzone: 0 - + C-Stick C-Stick - + Shoulder Buttons Schulterknöpfe - + ZR: ZR: - + ZL: ZL: - + L: L: - + R: R: - + Motion / Touch... Bewegungssteuerung / Toucheingaben... - + Auto Map Automatisch belegen - + Clear All Alle zurücksetzen - + Restore Defaults Standardwerte wiederherstellen - - - + + + Clear Zurücksetzen - - - + + + [not set] [Nicht konfiguriert] - - - + + + Restore Default Standard wiederherstellen - - + + Information Informationen - + After pressing OK, first move your joystick horizontally, and then vertically. Drücken Sie OK und bewegen Sie den Joystick zuerst horizontal, dann vertikal. - - + + Deadzone: %1% Deadzone: %1% - - + + Modifier Scale: %1% Modifikator-Maßstab: %1% - + Warning Warnung - + Auto mapping failed. Your controller may not have a corresponding mapping Automatische Belegung fehlgeschlagen. Dein Controller könnte keine übereinstimmende Belegung haben - + After pressing OK, press any button on your joystick Nachdem sie OK gedrückt haben, drücken sie eine beliebige Taste auf ihrem Joystick - + [press key] [Taste drücken] - + Error! Fehler! - + You're using a key that's already bound. Sie benutzen eine Taste, die schon zugewiesen wurde. - + New Profile Neues Profil - + Enter the name for the new profile. Geben Sie den Namen für das neue Profil ein. - + Delete Profile Profil löschen - + Delete profile %1? Profil %1 löschen? - + Rename Profile Profil umbenennen - + New name: Neuer Name: - + Duplicate profile name Profilname duplizieren - + Profile name already exists. Please choose a different name. Der Profilname existiert bereits. Bitte nutzen sie einen anderen Namen. @@ -1954,198 +1954,198 @@ Möchten Sie den Fehler ignorieren und fortfahren? ConfigureMotionTouch - + Configure Motion / Touch Bewegungssteuerung / Toucheingaben konfigurieren - + Motion Bewegungssteuerung - + Motion Provider: Quelle Bewegungsdaten: - + Sensitivity: Empfindlichkeit: - + Controller: - - - - - + + + + + Configure Konfigurieren - + Touch Touch - + Touch Provider: Quelle Toucheingaben: - + Calibration: Kalibrierung: - + (100, 50) - (1800, 850) (100, 50) - (1800, 850) - + Use button mapping: Nutze Tastenzuweisung: - + CemuhookUDP Config CemuhookUDP Konfiguration - + You may use any Cemuhook compatible UDP input source to provide motion and touch input. Sie können jede mit Cemuhook kompatible UDP Quelle verwenden, um Touch- und Bewegungseingaben bereitzustellen. - + Server: Server: - + Port: Port: - + Pad: Pad: - + Pad 1 Pad 1 - + Pad 2 Pad 2 - + Pad 3 Pad 3 - + Pad 4 Pad 4 - + Learn More Mehr erfahren - - + + Test Test - + Mouse (Right Click) Maus (Rechtsklick) - - + + CemuhookUDP CemuhookUDP - + SDL SDL - + Emulator Window Emulator Fenster - + <a href='https://citra-emu.org/wiki/using-a-controller-or-android-phone-for-motion-or-touch-input'><span style="text-decoration: underline; color:#039be5;">Learn More</span></a> <a href='https://citra-emu.org/wiki/using-a-controller-or-android-phone-for-motion-or-touch-input'><span style="text-decoration: underline; color:#039be5;">Mehr erfahren</span></a> - + Information Information - + After pressing OK, press a button on the controller whose motion you want to track. Nachdem sie OK gedrückt haben, drücken sie eine Taste auf dem Controller, dessen Bewegungen sie nutzen möchten. - + [press button] [drücke Taste] - + Testing Test läuft - + Configuring Wird konfiguriert - + Test Successful Test erfolgreich - + Successfully received data from the server. Daten wurden erfolgreich vom Server empfangen. - + Test Failed Test gescheitert - + Could not receive valid data from the server.<br>Please verify that the server is set up correctly and the address and port are correct. Keine gültigen Daten vom Server empfangen. Bitte stelle sicher, dass der Server korrekt eingerichtet ist und sowohl die Serveradresse, als auch der Port richtig sind. - + Citra Citra - + UDP Test or calibration configuration is in progress.<br>Please wait for them to finish. UDP Test oder Kalibrierung werden gerade ausgeführt.<br>Bitte warten Sie, bis sie abgeschlossen sind. @@ -2153,97 +2153,97 @@ Möchten Sie den Fehler ignorieren und fortfahren? ConfigurePerGame - + Dialog - + Info - + Size Größe - + Format Format - + Name Name - + Filepath Dateipfad - + Title ID Titel-ID - + Reset Game Settings Spiel-Einstellungen zurücksetzen - + Use global configuration (%1) Nutze globale Konfiguration (%1) - + General Allgemein - + System System - + Enhancements Verbesserungen - + Graphics Grafik - + Audio Ton - + Debug - + Cheats Cheats - + Properties Eigenschaften - + Citra Citra - + Are you sure you want to <b>reset your settings for this game</b>? Sind sie sicher, dass sie ihre <b>Einstellungen für dieses Spiel zurücksetzen</b> möchten? @@ -2251,65 +2251,65 @@ Möchten Sie den Fehler ignorieren und fortfahren? ConfigureStorage - + Form Form - + Storage Speicher - + Use Virtual SD Virtuelle SD benutzen - + Custom Storage Benutzerdefinierter Speicher - + Use Custom Storage Nutze benutzerdefinierten Speicher - + NAND Directory NAND-Verzeichnis - - + + Open Öffnen - - + + NOTE: This does not move the contents of the previous directory to the new one. - - + + Change Ändern - + SDMC Directory SDMC-Verzeichnis - + Select NAND Directory Wähle NAND-Verzeichnis - + Select SDMC Directory SDMC-Verzeichnis auswählen @@ -2317,1064 +2317,1064 @@ Möchten Sie den Fehler ignorieren und fortfahren? ConfigureSystem - + Form Form - + System Settings Systemeinstellungen - + Enable New 3DS mode "New 3DS"-Modus aktivieren - + Use LLE applets (if installed) Nutze LLE-Applets (sofern installiert) - + Username Nutzername - + Birthday Geburtstag - + January Januar - + February Februar - + March März - + April April - + May Mai - + June Juni - + July Juli - + August August - + September September - + October Oktober - + November November - + December Dezember - + Language Sprache - + Note: this can be overridden when region setting is auto-select Anmerkung: Dies kann überschrieben werden, wenn als Region "Automatisch auswählen" eingestellt wurde. - + Japanese (日本語) Japanisch (日本語) - + English Englisch - + French (français) Französisch (français) - + German (Deutsch) Deutsch (German) - + Italian (italiano) Italienisch (italiano) - + Spanish (español) Spanisch (español) - + Simplified Chinese (简体中文) Vereinfachtes Chinesisch (简体中文) - + Korean (한국어) Koreanisch (한국어) - + Dutch (Nederlands) Niederländisch (Nederlands) - + Portuguese (português) Portugiesisch (português) - + Russian (Русский) Russisch (Русский) - + Traditional Chinese (正體中文) Traditionelles Chinesisch (正體中文) - + Sound output mode Tonausgabemodus - + Mono Mono - + Stereo Stereo - + Surround Surround - + Country Land - + Clock Uhr - + System Clock System-Uhr - + Fixed Time Feste Zeit - + Startup time Zum Start benötigte Zeit - + yyyy-MM-ddTHH:mm:ss yyyy-MM-ddTHH:mm:ss - + Offset time Zeit-Versatz - + days Tage - + HH:mm:ss - + Initial System Ticks Anfängliche System-Ticks - + Random Zufall - + Fixed Festgelegt - + Initial System Ticks Override Anfängliche System-Ticks überschreiben - + Play Coins: Spielemünzen - + Run System Setup when Home Menu is launched System-Einrichtung ausführen, wenn Home-Menu gestartet wird - + Console ID: Konsolen-ID: - + Regenerate Wiederherstellen - + 3GX Plugin Loader: 3GX-Plugin-Lader: - + Enable 3GX plugin loader Aktiviere 3GX-Plugin-Lader - + Allow games to change plugin loader state Erlaube Spielen, den Plugin-Lader-Zustand zu ändern - + Download System Files from Nitendo servers Lade System-Dateien von Nintendo-Servern herunter - + Minimal Minimal - + Old 3DS Alter 3DS - + New 3DS New 3DS - + JPN - + USA - + EUR - + AUS - + CHN - + KOR - + TWN - + Download Herunterladen - + System settings are available only when game is not running. Systemeinstellungen sind nur verfügbar, wenn kein Spiel läuft. - + Japan Japan - + Anguilla Anguilla - + Antigua and Barbuda Antigua und Barbuda - + Argentina Argentinien - + Aruba Aruba - + Bahamas Bahamas - + Barbados Barbados - + Belize Belize - + Bolivia Bolivien - + Brazil Brasilien - + British Virgin Islands Britische Jungferninseln - + Canada Kanada - + Cayman Islands Cayman Inseln - + Chile Chile - + Colombia Kolumbien - + Costa Rica Costa Rica - + Dominica Dominica - + Dominican Republic Dominikanische Republik - + Ecuador Ecuador - + El Salvador El Salvador - + French Guiana Französisch-Guayana - + Grenada Grenada - + Guadeloupe Guadeloupe - + Guatemala Guatemala - + Guyana Guyana - + Haiti Haiti - + Honduras Honduras - + Jamaica Jamaika - + Martinique Martinique - + Mexico Mexiko - + Montserrat Montserrat - + Netherlands Antilles Niederländische Antillen - + Nicaragua Nicaragua - + Panama Panama - + Paraguay Paraguay - + Peru Peru - + Saint Kitts and Nevis St. Kitts und Nevis - + Saint Lucia St. Lucia - + Saint Vincent and the Grenadines St. Vincent und die Grenadinen - + Suriname Suriname - + Trinidad and Tobago Trinidad und Tobago - + Turks and Caicos Islands Turks- und Caicosinseln - + United States Vereinigte Staaten von Amerika - + Uruguay Uruguay - + US Virgin Islands Amerikanische Jungferninseln - + Venezuela Venezuela - + Albania Albanien - + Australia Australien - + Austria Österreich - + Belgium Belgien - + Bosnia and Herzegovina Bosnien und Herzegowina - + Botswana Botswana - + Bulgaria Bulgarien - + Croatia Kroatien - + Cyprus Zypern - + Czech Republic Tschechische Republik - + Denmark Dänemark - + Estonia Estland - + Finland Finnland - + France Frankreich - + Germany Deutschland - + Greece Griechenland - + Hungary Ungarn - + Iceland Island - + Ireland Irland - + Italy Italien - + Latvia Lettland - + Lesotho Lesotho - + Liechtenstein Liechtenstein - + Lithuania Litauen - + Luxembourg Luxemburg - + Macedonia Mazedonien - + Malta Malta - + Montenegro Montenegro - + Mozambique Mosambik - + Namibia Namibia - + Netherlands Niederlande - + New Zealand Neuseeland - + Norway Norwegen - + Poland Polen - + Portugal Portugal - + Romania Rumänien - + Russia Russland - + Serbia Serbien - + Slovakia Slowakei - + Slovenia Slowenien - + South Africa Südafrika - + Spain Spanien - + Swaziland Swasiland - + Sweden Schweden - + Switzerland Schweiz - + Turkey Türkei - + United Kingdom Vereinigtes Königreich - + Zambia Sambia - + Zimbabwe Simbabwe - + Azerbaijan Aserbaidschan - + Mauritania Mauretanien - + Mali Mali - + Niger Niger - + Chad Tschad - + Sudan Sudan - + Eritrea Eritrea - + Djibouti Dschibuti - + Somalia Somalia - + Andorra Andorra - + Gibraltar Gibraltar - + Guernsey Guernsey - + Isle of Man Isle of Man - + Jersey Jersey - + Monaco Monaco - + Taiwan Taiwan - + South Korea Südkorea - + Hong Kong Hongkong - + Macau Macau - + Indonesia Indonesien - + Singapore Singapur - + Thailand Thailand - + Philippines Philippinen - + Malaysia Malaysia - + China China - + United Arab Emirates Vereinigte Arabische Emirate - + India Indien - + Egypt Ägypten - + Oman Oman - + Qatar Katar - + Kuwait Kuwait - + Saudi Arabia Saudi-Arabien - + Syria Syrien - + Bahrain Bahrain - + Jordan Jordanien - + San Marino San Marino - + Vatican City Vatikanstadt - + Bermuda Bermudas - + Download System Files from Nintendo servers Lade System-Dateien von Nintendo-Servern herunter - + Citra is missing keys to download system files. <br><a href='https://citra-emu.org/wiki/aes-keys/'><span style="text-decoration: underline; color:#039be5;">How to get keys?</span></a> Citra hat keine Schlüssel zum Herunterladen der System-Dateien. <br><a href='https://citra-emu.org/wiki/aes-keys/'><span style="text-decoration: underline; color:#039be5;">Wie kann man solche Schlüssel erhalten?</span></a> - - + + Console ID: 0x%1 Konsolen-ID: 0x%1 - + This will replace your current virtual 3DS with a new one. Your current virtual 3DS will not be recoverable. This might have unexpected effects in games. This might fail, if you use an outdated config savegame. Continue? Dies ersetzt Ihren aktuellen virtuellen 3DS mit einem neuen. Der aktuelle virtuelle 3DS kann nicht wiederhergestellt werden. Es könnten unerwartete Effekte in Spielen auftreten. Sollten Sie veraltete Konfigurationen verwenden, könnte dies scheitern. Fortfahren? - + Warning Warnung - + Downloading files... Dateien werden heruntergeladen… - + Cancel Abbrechen - - + + Citra Citra - + Downloading system files failed. Herunterladen der System-Dateien fehlgeschlagen. - + Successfully downloaded system files. System-Dateien erfolgreich heruntergeladen. @@ -3382,91 +3382,91 @@ Möchten Sie den Fehler ignorieren und fortfahren? ConfigureTouchFromButton - + Configure Touchscreen Mappings Touchscreen-Belegung Konfigurieren - + Mapping: Belegung - + New Neu - + Delete Löschen - + Rename Umbenennen - + Click the bottom area to add a point, then press a button to bind. Drag points to change position, or double-click table cells to edit values. Klicke auf den unteren Bereich, um einen Punkt hinzuzufügen, drücke danach eine Taste zum Zuweisen. Ziehe Punkte, um ihre Position zu verändern, oder doppelklicke auf Zellen in der Tabelle, um die Werte zu verändern. - + Delete Point Punkt löschen - + Button Taste - + X X axis X - + Y Y axis Y - + New Profile Neues Profil - + Enter the name for the new profile. Geben Sie den Namen für das neue Profil ein. - + Delete Profile Profil löschen - + Delete profile %1? Profil %1 löschen? - + Rename Profile Profil umbenennen - + New name: Neuer Name: - + [press key] [Taste drücken] @@ -3474,113 +3474,113 @@ Ziehe Punkte, um ihre Position zu verändern, oder doppelklicke auf Zellen in de ConfigureUi - + Form Form - + General Allgemein - + Note: Changing language will apply your configuration. Anmerkung: Das Ändern der Sprache speichert die Konfiguration automatisch. - + Interface language: Oberflächensprache - + Theme: Design: - + Game List Spieleliste - + Icon Size: Icongröße: - - + + None Keine - + Small (24x24) Klein (24x24) - + Large (48x48) Groß (48x48) - + Row 1 Text: Text Zeile 1: - - + + File Name Dateiname - - + + Full Path Vollständiger Pfad - - + + Title Name (short) Titelname (kurz) - - + + Title ID Titel ID - - + + Title Name (long) Titelname (lang) - + Row 2 Text: Text Zeile 2: - + Hide Titles without Icon Titel ohne Icon verbergen - + Single Line Mode Einzeiliger Modus - + <System> <System> - + English Englisch @@ -3588,135 +3588,135 @@ Ziehe Punkte, um ihre Position zu verändern, oder doppelklicke auf Zellen in de ConfigureWeb - + Form Form - + Citra Web Service Citra Web Service - + By providing your username and token, you agree to allow Citra to collect additional usage data, which may include user identifying information. Mit dem Bereitstellen Ihres Nutzernamens und Tokens, erlauben Sie Citra, zusätzliche Nutzungsdaten zu sammeln. Die Nutzungsdaten können auch Daten zur Nutzeridentifikation beinhalten. - - + + Verify Verifizieren - + Sign up Registrieren - + Token: Token: - + Username: Nutzername: - + What is my token? Was ist mein Token? - + Web Service configuration can only be changed when a public room isn't being hosted. Die Web-Service-Konfiguration kann nur geändert werden, wenn kein öffentlicher Raum gehostet wird. - + Telemetry Telemetrie - + Share anonymous usage data with the Citra team Anonyme Nutzungsdaten an das Citra-Team senden - + Learn more Mehr erfahren - + Telemetry ID: Telemetrie-ID: - + Regenerate Regenerieren - + Discord Presence Discord Presence - + Show Current Game in your Discord Status Aktuelles Spiel in Ihrem Discordstatus anzeigen - + <a href='https://citra-emu.org/entry/telemetry-and-why-thats-a-good-thing/'><span style="text-decoration: underline; color:#039be5;">Learn more</span></a> <a href='https://citra-emu.org/entry/telemetry-and-why-thats-a-good-thing/'><span style="text-decoration: underline; color:#039be5;">Mehr erfahren</span></a> - + <a href='https://profile.citra-emu.org/'><span style="text-decoration: underline; color:#039be5;">Sign up</span></a> <a href='https://profile.citra-emu.org/'><span style="text-decoration: underline; color:#039be5;">Anmelden</span></a> - + <a href='https://citra-emu.org/wiki/citra-web-service/'><span style="text-decoration: underline; color:#039be5;">What is my token?</span></a> <a href='https://citra-emu.org/wiki/citra-web-service/'><span style="text-decoration: underline; color:#039be5;">Was ist mein Token?</span></a> - - + + Unspecified Nicht spezifiziert - - + + Telemetry ID: 0x%1 Telemetrie-ID: 0x%1 - + Token not verified Token nicht verifiziert - + Token was not verified. The change to your token has not been saved. Der Token wurde nicht verifiziert. Die Änderung zu dem Token wurde nicht gespeichert. - + Verifying... Verifizieren... - + Verification failed Verifizierung fehlgeschlagen - + Verification failed. Check that you have entered your token correctly, and that your internet connection is working. Verifizierung fehlgeschlagen. Stellen Sie sicher, dass Sie sowohl Ihren Token korrekt eingegeben haben und dass Sie mit dem Internet verbunden sind. @@ -3724,47 +3724,47 @@ Ziehe Punkte, um ihre Position zu verändern, oder doppelklicke auf Zellen in de DirectConnect - + Direct Connect Direkt verbinden - + Server Address Server-Addresse - + <html><head/><body><p>Server address of the host</p></body></html> <html><head/><body><p>Server-Addresse des Gastgebers</p></body></html> - + Port Port - + <html><head/><body><p>Port number the host is listening on</p></body></html> <html><head/><body><p>Port, auf dem der Host auf eingehende Verbindungen wartet</p></body></html> - + 24872 24872 - + Nickname Nickname - + Password Passwort - + Connect Verbinden @@ -3772,12 +3772,12 @@ Ziehe Punkte, um ihre Position zu verändern, oder doppelklicke auf Zellen in de DirectConnectWindow - + Connecting Verbinden - + Connect Verbinden @@ -3785,110 +3785,110 @@ Ziehe Punkte, um ihre Position zu verändern, oder doppelklicke auf Zellen in de DumpingDialog - + Dump Video Dumpe Video - + Output Ausgabe - + Format: Format: - - - + + + Options: Optionen: - - - - + + + + ... - + Path: Pfad: - + Video - - + + Encoder: Kodierer: - - + + Bitrate: Bit-Rate: - - + + bps - + Audio - - + + Citra Citra - + Please specify the output path. - + output formats Ausgabe-Formate - + video encoders Video-Encoder - + audio encoders Audio-Encoder - + Could not find any available %1. Please check your FFmpeg installation used for compilation. - - - - + + + + %1 (%2) %1 (%2) - + Select Video Output Path Wähle Video-Ausgabe-Pfad @@ -3896,342 +3896,342 @@ Please check your FFmpeg installation used for compilation. GMainWindow - + <a href='https://citra-emu.org/entry/telemetry-and-why-thats-a-good-thing/'>Anonymous data is collected</a> to help improve Citra. <br/><br/>Would you like to share your usage data with us? Möchten Sie <a href='https://citra-emu.org/entry/telemetry-and-why-thats-a-good-thing/'>anonyme Nutzungsdaten</a> an das Citra Team senden und so helfen, Citra weiter zu verbessern? - + Telemetry Telemetrie - + No Suitable Vulkan Devices Detected Keine geeigneten Vulkan-Geräte gefunden - + Vulkan initialization failed during boot.<br/>Your GPU may not support Vulkan 1.1, or you do not have the latest graphics driver. Vulkan-Initialisierung beim Starten fehlgeschlagen.<br/>Ihre Grafikkarte unterstützt möglicherweise "Vulkan 1.1" nicht, oder sie haben nicht den neuesten Grafik-Treiber. - - + + Current emulation speed. Values higher or lower than 100% indicate emulation is running faster or slower than a 3DS. Derzeitige Emulationsgeschwindigkeit. Werte höher oder niedriger als 100% zeigen, dass die Emulation schneller oder langsamer läuft als auf einem 3DS. - - + + How many frames per second the game is currently displaying. This will vary from game to game and scene to scene. Die Anzahl der Bilder pro Sekunde die das Spiel gerade darstellt. Dies wird von Spiel zu Spiel und von Szene zu Szene variieren. - - + + Time taken to emulate a 3DS frame, not counting framelimiting or v-sync. For full-speed emulation this should be at most 16.67 ms. Die benötigte Zeit um ein 3DS-Einzelbild zu emulieren (V-Sync oder Bildratenbegrenzung nicht mitgezählt). Bei Echtzeitemulation sollte dieser Wert 16,67ms betragen. - + Clear Recent Files Zuletzt verwendete Dateien zurücksetzen - + &Continue &Fortsetzen - + &Pause &Pause - + Update Available Update verfügbar - + An update is available. Would you like to install it now? Ein Update ist verfügbar. Möchten Sie es jetzt installieren? - + No Update Found Kein Update gefunden - + No update is found. Kein Update gefunden. - + Citra is running a game TRANSLATORS: This string is shown to the user to explain why Citra needs to prevent the computer from sleeping Citra führt ein Spiel aus - - + + Invalid ROM Format Ungültiges ROM-Format - - + + Your ROM format is not supported.<br/>Please follow the guides to redump your <a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>game cartridges</a> or <a href='https://citra-emu.org/wiki/dumping-installed-titles/'>installed titles</a>. Dieses ROM-Format wird nicht unterstützt.<br/>Bitte befolgen Sie die Guides, um Ihre Spiele (<a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>Karten</a> oder <a href='https://citra-emu.org/wiki/dumping-installed-titles/'>Downloadtitel</a>) erneut zu dumpen. - + ROM Corrupted ROM beschädigt - + Your ROM is corrupted. <br/>Please follow the guides to redump your <a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>game cartridges</a> or <a href='https://citra-emu.org/wiki/dumping-installed-titles/'>installed titles</a>. Diese ROM ist beschädigt. <br/>Bitte befolgen Sie die Anweisungen, um Ihre Spiele (<a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>Karten</a> oder <a href='https://citra-emu.org/wiki/dumping-installed-titles/'>Downloadtitel</a>) erneut zu dumpen. - + ROM Encrypted ROM verschlüsselt - + Your ROM is encrypted. <br/>Please follow the guides to redump your <a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>game cartridges</a> or <a href='https://citra-emu.org/wiki/dumping-installed-titles/'>installed titles</a>. Dieses ROM ist verschlüsselt. <br/>Bitte befolgen Sie die Guides, um Ihre Spiele (<a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>Karten</a> oder <a href='https://citra-emu.org/wiki/dumping-installed-titles/'>Downloadtitel</a>) erneut zu dumpen. - + Unsupported ROM Nicht-unterstützes ROM - + GBA Virtual Console ROMs are not supported by Citra. GBA-Virtual-Console-ROMs werden nicht von Citra unterstützt. - + Error while loading ROM! Fehler beim Laden des ROMs! - + An unknown error occurred. Please see the log for more details. Ein unbekannter Fehler ist aufgetreten. Mehr Details im log - + CIA must be installed before usage CIA muss vor der Benutzung installiert sein - + Before using this CIA, you must install it. Do you want to install it now? Vor dem Nutzen dieser CIA, muss sie installiert werden. Möchten sie diese jetzt installieren? - - + + Slot %1 Speicherplatz %1 - + Slot %1 - %2 %3 Speicherplatz %1 - %2 %3 - + Error Opening %1 Folder Fehler beim Öffnen des Ordners %1 - - + + Folder does not exist! Ordner existiert nicht! - + Dumping... Dumpt... - - + + Cancel Abbrechen - - - - - - - - - + + + + + + + + + Citra Citra - + Could not dump base RomFS. Refer to the log for details. Konnte Base-RomFS nicht dumpen. Sehen sie sich das Log für Details an. - + Error Opening %1 Fehler beim Öffnen von %1 - + Select Directory Ordner auswählen - + Properties Eigenschaften - + The game properties could not be loaded. Die Spiel-Eigenschaften konnten nicht geladen werden. - + 3DS Executable (%1);;All Files (*.*) %1 is an identifier for the 3DS executable file extensions. 3DS Programmdatei (%1);;Alle Dateien (*.*) - + Load File Datei laden - + Load Files Dateien laden - + 3DS Installation File (*.CIA*) 3DS Installationsdatei (*.CIA*) - + All Files (*.*) Alle Dateien (*.*) - + %1 has been installed successfully. %1 wurde erfolgreich installiert. - + Unable to open File Datei konnte nicht geöffnet werden - + Could not open %1 Konnte %1 nicht öffnen - + Installation aborted Installation abgebrochen - + The installation of %1 was aborted. Please see the log for more details Die Installation von %1 wurde abgebrochen. Details finden Sie in der Logdatei. - + Invalid File Ungültige Datei - + %1 is not a valid CIA %1 ist kein gültiges CIA - + Encrypted File Verschlüsselte Datei - + %1 must be decrypted before being used with Citra. A real 3DS is required. %1 muss entschlüsselt werden, bevor es mit Citra verwendet werden kann. Hierzu ist ein 3DS ist notwendig. - + Unable to find File Unfähig die Datei zu finden - + Could not find %1 Konnte %1 nicht finden - + Uninstalling '%1'... Deinstalliere '%1'… - + Failed to uninstall '%1'. Deinstallieren von '%1' fehlgeschlagen. - + Successfully uninstalled '%1'. '%1' erfolgreich deinstalliert. - + File not found Datei nicht gefunden - + File "%1" not found Datei "%1" nicht gefunden - + Missing Citra Account Fehlender Citra-Account - + You must link your Citra account to submit test cases.<br/>Go to Emulation &gt; Configure... &gt; Web to do so. Sie müssen Ihren Citra-Account verknüpfen, um Tests hochzuladen.<br/>Gehen Sie hierzu zu Emulation &gt; Configure... &gt; Web. - + Savestates Speicherstände - + Warning: Savestates are NOT a replacement for in-game saves, and are not meant to be reliable. Use at your own risk! @@ -4240,76 +4240,76 @@ Use at your own risk! Nutzung dieser Speicherstände ist dein eigenes Risiko! - - - + + + Error opening amiibo data file Fehler beim Öffnen der Amiibo-Daten-Datei - + A tag is already in use. - + Game is not looking for amiibos. Spiel schaut nicht nach Amiibos. - + Amiibo File (%1);; All Files (*.*) Amiibo Datei (%1);; Alle Dateien (*.*) - + Load Amiibo Amiibo laden - + Unable to open amiibo file "%1" for reading. Unfähig die Amiibo-Datei "%1" zum Lesen zu öffnen. - + Record Movie Aufnahme starten - + Movie recording cancelled. Aufnahme abgebrochen. - - + + Movie Saved Aufnahme gespeichert - - + + The movie is successfully saved. Die Aufnahme wurde erfolgreich gespeichert. - + Invalid Screenshot Directory Ungültiges Bildschirmfoto-Verzeichnis - + Cannot create specified screenshot directory. Screenshot path is set back to its default value. Kann das angegebene Bildschirmfoto-Verzeichnis nicht erstellen. Der Bildschirmfoto-Pfad wurde auf die Voreinstellung zurückgesetzt. - + Could not load video dumper - + FFmpeg could not be loaded. Make sure you have a compatible version installed. To install FFmpeg to Citra, press Open and select your FFmpeg directory. @@ -4318,158 +4318,158 @@ To view a guide on how to install FFmpeg, press Help. - + Select FFmpeg Directory Wähle FFmpeg-Verzeichnis - + The provided FFmpeg directory is missing %1. Please make sure the correct directory was selected. - + FFmpeg has been sucessfully installed. FFmpeg wurde erfolgreich installiert. - + Installation of FFmpeg failed. Check the log file for details. Installation von FFmpeg fehlgeschlagen. Prüfe die Log-Datei für Details. - + Could not start video dumping.<br>Refer to the log for details. Konnte Video-Dumping nicht starten. <br>Sehen sie sich das Log für Details an. - + Recording %1 Nehme %1 auf - + Playing %1 / %2 Spiele %1 / %2 ab - + Movie Finished Film beendet - + Speed: %1% Geschwindigkeit: %1% - + Speed: %1% / %2% Geschwindigkeit: %1% / %2% - + Game: %1 FPS Spiel: %1 FPS - + Frame: %1 ms Einzelbild: %1 ms - + VOLUME: MUTE LAUTSTÄRKE: STUMM - + VOLUME: %1% Volume percentage (e.g. 50%) LAUTSTÄRKE: %1% - + %1 is missing. Please <a href='https://citra-emu.org/wiki/dumping-system-archives-and-the-shared-fonts-from-a-3ds-console/'>dump your system archives</a>.<br/>Continuing emulation may result in crashes and bugs. %1 Fehlt. <a href='https://citra-emu.org/wiki/dumping-system-archives-and-the-shared-fonts-from-a-3ds-console/'>Bitte dumpen Sie Ihre Systemarchive</a>. <br/>Das Fortsetzen der Emulation könnte zu einem Absturz oder Bugs führen. - + A system archive Ein Systemarchiv - + System Archive Not Found Systemarchiv nicht gefunden - + System Archive Missing Systemarchiv fehlt - + Save/load Error Speichern/Laden Fehler - + Fatal Error Fataler Fehler - + A fatal error occurred. <a href='https://community.citra-emu.org/t/how-to-upload-the-log-file/296'>Check the log</a> for details.<br/>Continuing emulation may result in crashes and bugs. Ein fataler Fehler ist aufgetreten. <a href='https://community.citra-emu.org/t/how-to-upload-the-log-file/296'> Überprüfe das log</a>für Details. <br/> Das Fortfahren der Emulation könnte zu Abstürzen und Bugs führen. - + Fatal Error encountered Auf fatalen Fehler gestoßen - + Continue Fortsetzen - + Quit Game Verlasse Spiel - + OK Okay - + Would you like to exit now? Möchten Sie die Anwendung jetzt verlassen? - + The game is still running. Would you like to stop emulation? Das Spiel läuft noch. Möchten Sie die Emulation stoppen? - + Playback Completed Wiedergabe abgeschlossen - + Movie playback completed. Wiedergabe der Aufnahme abgeschlossen. - + Primary Window Primäres Fenster - + Secondary Window Sekundäres Fenster @@ -4477,22 +4477,22 @@ To view a guide on how to install FFmpeg, press Help. GPUCommandListModel - + Command Name Befehlsname - + Register Register - + Mask Maske - + New Value Neuer Wert @@ -4500,23 +4500,23 @@ To view a guide on how to install FFmpeg, press Help. GPUCommandListWidget - + Pica Command List Pica-Kommandoliste - - + + Start Tracing Tracing starten - + Copy All Alle kopieren - + Finish Tracing Tracing beenden @@ -4524,7 +4524,7 @@ To view a guide on how to install FFmpeg, press Help. GPUCommandStreamWidget - + Graphics Debugger Grafik-Debugger @@ -4532,42 +4532,42 @@ To view a guide on how to install FFmpeg, press Help. GRenderWindow - + OpenGL not available! OpenGL nicht verfügbar! - + OpenGL shared contexts are not supported. OpenGL-Shared-Contexts sind nicht unterstützt. - + Error while initializing OpenGL! Fehler beim Initialisieren von OpenGL! - + Your GPU may not support OpenGL, or you do not have the latest graphics driver. Ihre Grafikkarte unterstützt möglicherweise OpenGL nicht, oder sie haben nicht den neuesten Grafik-Treiber. - + Error while initializing OpenGL 4.3! Fehler beim Initialisieren von "OpenGL 4.3"! - + Your GPU may not support OpenGL 4.3, or you do not have the latest graphics driver.<br><br>GL Renderer:<br>%1 Ihre Grafikkarte unterstützt möglicherweise "OpenGL 4.3" nicht, oder sie haben nicht den neuesten Grafik-Treiber.<br><br>GL-Renderer:<br>%1 - + Error while initializing OpenGL ES 3.2! Fehler beim Initialisieren von "OpenGL ES 3.2"! - + Your GPU may not support OpenGL ES 3.2, or you do not have the latest graphics driver.<br><br>GL Renderer:<br>%1 Ihre Grafikkarte unterstützt "OpenGL ES 3.2" möglicherweise nicht, oder sie haben nicht den neuesten Grafik-Treiber.<br><br>GL-Renderer:<br>%1 @@ -4575,134 +4575,134 @@ To view a guide on how to install FFmpeg, press Help. GameList - - + + Compatibility Kompatibilität - - + + Region Region - - + + File type Dateityp - - + + Size Größe - + Open Save Data Location Verzeichnis der Speicherdaten öffnen - + Open Extra Data Location Verzeichnis für zusätzliche Daten öffnen - + Open Application Location Verzeichnis der Programmdaten öffnen - + Open Update Data Location Verzeichnis der Updatedaten öffnen - + Open DLC Data Location Öffne DLC-Daten-Standort - + Open Texture Dump Location Öffne Textur-Dump-Standort - + Open Custom Texture Location Öffne Benutzerdefinierte-Texturen-Standort - + Open Mods Location Öffne Mods-Standort - + Dump RomFS Dumpe RomFS - + Disk Shader Cache Shader-Cache - + Open Shader Cache Location Öffne Shader-Cache-Standort - + Delete OpenGL Shader Cache Lösche OpenGL-Shader-Cache - + Uninstall Deinstalliere - + Everything Alles - + Game Spiel - + Update Aktualisierung - + DLC Zusatzinhalte - + Navigate to GameDB entry Navigiere zum GameDB Eintrag - + Properties Eigenschaften - - - - + + + + Citra Citra - + Are you sure you want to completely uninstall '%1'? This will delete the game if installed, as well as any installed updates or DLC. @@ -4711,59 +4711,59 @@ This will delete the game if installed, as well as any installed updates or DLC. Dies wird das Spiel löschen, sofern installiert, sowie jegliche installierten Aktualisierungen und Zusatzinhalte. - - + + %1 (Update) %1 (Aktualisierung) - - + + %1 (DLC) %1 (Zusatzinhalt) - + Are you sure you want to uninstall '%1'? Sind sie sicher, dass sie '%1' deinstallieren möchten? - + Are you sure you want to uninstall the update for '%1'? Sind sie sicher, dass sie die Aktualisierung für '%1' deinstallieren möchten? - + Are you sure you want to uninstall all DLC for '%1'? Sind sie sicher, dass sie die Zusatzinhalte für '%1' deinstallieren möchten? - + Scan Subfolders Unterordner scannen - + Remove Game Directory Spieleverzeichnis entfernen - + Move Up Bewege hoch - + Move Down Bewege runter - + Open Directory Location Verzeichnispfad öffnen - + Name Name @@ -4771,79 +4771,79 @@ Dies wird das Spiel löschen, sofern installiert, sowie jegliche installierten A GameListItemCompat - + Perfect Perfekt - + Game functions flawless with no audio or graphical glitches, all tested functionality works as intended without any workarounds needed. Das Spiel funktioniert fehlerfrei, ohne Grafik- oder Audiofehler. Sämtliche Features funktionieren wie vorgesehen. Workarounds sind nicht nötig. - + Great Gut - + Game functions with minor graphical or audio glitches and is playable from start to finish. May require some workarounds. - Das Spiel funktioniert mit kleineren Grafik- und Audiofehlern und lässt sich bis zum Ende durchspielen. + Das Spiel funktioniert mit kleineren Grafik- und Audiofehlern und lässt sich bis zum Ende durchspielen. Eventuell sind einige Workarounds notwendig. - + Okay Okay - + Game functions with major graphical or audio glitches, but game is playable from start to finish with workarounds. Das Spiel funktioniert mit größern Grafik- und Audiofehlern, lässt sich mit Workarounds aber bis zum Ende durchspielen. - + Bad Schlecht - + Game functions, but with major graphical or audio glitches. Unable to progress in specific areas due to glitches even with workarounds. Das Spiel funktioniert, aber mit größeren Grafik- und Audiofehlern. Spielfortschritt ist aufgrund von Glitches zum Teil unmöglich, auch nicht mit Workarounds. - + Intro/Menu Intro/Menü - + Game is completely unplayable due to major graphical or audio glitches. Unable to progress past the Start Screen. Das Spiel ist wegen schwerwiegenden Grafik- und Audiofehlern unspielbar. Das Spiel lässt sich lediglich starten. - + Won't Boot Startet nicht - + The game crashes when attempting to startup. Das Spiel stürzt beim Versuch es zu starten ab. - + Not Tested Nicht getestet - + The game has not yet been tested. Das Spiel wurde noch nicht getestet. @@ -4851,7 +4851,7 @@ Screen. GameListPlaceholder - + Double-click to add a new folder to the game list Doppel-Klick um neue Ordner zur Spieleliste hinzuzufügen @@ -4859,27 +4859,27 @@ Screen. GameListSearchField - + of von - + result Ergebnis - + results Ergebnisse - + Filter: Filter: - + Enter pattern to filter Geben Sie Wörter zum Filtern ein @@ -4887,47 +4887,47 @@ Screen. GameRegion - + Japan Japan - + North America Nordamerika - + Europe Europa - + Australia Australien - + China China - + Korea Korea - + Taiwan Taiwan - + Invalid region Ungültige Region - + Region free Regionsfrei @@ -4935,23 +4935,23 @@ Screen. GraphicsBreakPointsWidget - + Pica Breakpoints Pica-Haltepunkt - - + + Emulation running Emulation läuft - + Resume Fortsetzen - + Emulation halted at breakpoint Emulation angehalten am Haltepunkt @@ -4959,146 +4959,146 @@ Screen. GraphicsSurfaceWidget - + Pica Surface Viewer Pica-Oberflächenansicht - + Color Buffer Farbpuffer - + Depth Buffer Tiefenpuffer - + Stencil Buffer Schablonenpuffer - + Texture 0 Textur 0 - + Texture 1 Textur 1 - + Texture 2 Textur 2 - + Custom Benutzerdefiniert - + Unknown Unbekannt - + Save Speichern - + Source: Quelle: - + Physical Address: Physische Addresse: - + Width: Breite: - + Height: Höhe: - + Format: Format: - + X: X: - + Y: Y: - + Pixel out of bounds Pixel außerhalb des Bereichs - + (unable to access pixel data) (auf Pixeldaten konnte nicht zugegriffen werden) - + (invalid surface address) (ungültige Oberflächenadresse) - + (unknown surface format) (unbekanntes Oberflächenformat) - + Portable Network Graphic (*.png) Portable Network Graphic (*.png) - + Binary data (*.bin) Binärdaten (*.bin) - + Save Surface Oberfläche speichern - - - - + + + + Error Fehler - - + + Failed to open file '%1' Konnte Datei '%1' nicht öffnen - + Failed to save surface data to file '%1' Konnte Oberflächendaten nicht in Datei '%1' speichern - + Failed to completely write surface data to file. The saved data will likely be corrupt. Konnte Oberflächendaten nicht komplett in eine Datei schreiben. Die gespeicherten Daten sind wahrscheinlich korrupt. @@ -5106,42 +5106,42 @@ Screen. GraphicsTracingWidget - + CiTrace Recorder CiTrace-Aufnahme - + Start Recording Aufnahme starten - + Stop and Save Stoppen und speichern - + Abort Recording Aufnahme abbrechen - + Save CiTrace CiTrace speichern - + CiTrace File (*.ctf) CiTrace Datei (*.ctf) - + CiTracing still active CiTrace ist noch aktiv - + A CiTrace is still being recorded. Do you want to save it? If not, all recorded data will be discarded. Ein CiTrace wird aktuell aufgenommen. Möchten Sie dieses speichern? Falls nein, werden die aufgenommmen Daten verworfen. @@ -5150,17 +5150,17 @@ Falls nein, werden die aufgenommmen Daten verworfen. GraphicsVertexShaderModel - + Offset Verschiebung - + Raw Roh - + Disassembly Disassembierung @@ -5168,127 +5168,127 @@ Falls nein, werden die aufgenommmen Daten verworfen. GraphicsVertexShaderWidget - + Save Shader Dump Shader-Dump speichern - + Shader Binary (*.shbin) Shader-Binary (*.shbin) - + Pica Vertex Shader Pica-Vertex-Shader - + (data only available at vertex shader invocation breakpoints) (Daten sind nur in den Haltepunkten des Vertex-Shader-Aufrufs verfügbar) - + Dump Dump - + Input Data Eingabedaten - + Attribute %1 Attribut %1 - + Cycle Index: Cycle-Index: - + SRC1: %1, %2, %3, %4 SRC1: %1, %2, %3, %4 - + SRC2: %1, %2, %3, %4 SRC2: %1, %2, %3, %4 - + SRC3: %1, %2, %3, %4 SRC3: %1, %2, %3, %4 - + DEST_IN: %1, %2, %3, %4 DEST_IN: %1, %2, %3, %4 - + DEST_OUT: %1, %2, %3, %4 DEST_OUT: %1, %2, %3, %4 - + Address Registers: %1, %2 Adressenregister: %1, %2 - + Compare Result: %1, %2 Ergebnis vergleichen: %1, %2 - + Static Condition: %1 Statische Bedingung: %1 - + Dynamic Conditions: %1, %2 Dynamische Konditionen: %1, %2 - + Loop Parameters: %1 (repeats), %2 (initializer), %3 (increment), %4 Schleifenparameter: %1 (repeats), %2 (initializer), %3 (increment), %4 - + Instruction offset: 0x%1 Instruktionsverschiebung: 0x%1 - + -> 0x%2 -> 0x%2 - + (last instruction) (letzte Instruktion) @@ -5296,67 +5296,67 @@ Falls nein, werden die aufgenommmen Daten verworfen. HostRoom - + Create Room Raum erstellen - + Room Name Raumname - + Preferred Game Bevorzugtes Spiel - + Max Players Maximale Spielerzahl - + Username Anzeigename - + (Leave blank for open game) (für offenes Spiel nicht ausfüllen) - + Password Passwort - + Port Port - + Room Description Raumbeschreibung - + Load Previous Ban List Vorherige Bann-Liste laden - + Public Öffentlich - + Unlisted Nicht-gelistet - + Host Room Raum hosten @@ -5364,12 +5364,12 @@ Falls nein, werden die aufgenommmen Daten verworfen. HostRoomWindow - + Error Fehler - + Failed to announce the room to the public lobby. In order to host a room publicly, you must have a valid Citra account configured in Emulation -> Configure -> Web. If you do not want to publish a room in the public lobby, then select Unlisted instead. Debug Message: Der Raum konnte nicht der öffentlichen Lobby hinzugefügt werden. Um einen öffentlichen Raum zu betreiben, muss ein gültiger Citra-Account unter Emulation -> Konfiguration -> Web angegeben sein. Wenn der Raum nicht veröffentlicht werden soll, bitte "nicht-gelistet" auswählen. @@ -5379,47 +5379,47 @@ Debug-Meldung: IPCRecorder - + IPC Recorder IPC-Aufnahme - + Enable Recording Aufnahme aktivieren - + Filter: Filter: - + Leave empty to disable filtering Leer lassen um keine Filter zu benutzen - + # # - + Status Status - + Service Service - + Function Funktion - + Clear Leeren @@ -5427,47 +5427,47 @@ Debug-Meldung: IPCRecorderWidget - + Invalid Ungültig - + Sent Gesendet - + Handling Verarbeitung - + Success Erfolgreich - + Error Fehler - + HLE Unimplemented HLE ist nicht implementiert - + HLE HLE - + LLE LLE - + Unknown Unbekannt @@ -5475,7 +5475,7 @@ Debug-Meldung: LLEServiceModulesWidget - + Toggle LLE Service Modules LLE Servicemodule aktivieren / deaktivieren @@ -5483,54 +5483,54 @@ Debug-Meldung: LoadingScreen - + Loading Shaders 387 / 1628 Lade Shader 387 von 1628 - + Loading Shaders %v out of %m Lade Shader %v von %m - + Estimated Time 5m 4s Geschätzte verbleibende Zeit 5m 4s - + Loading... Laden... - + Preloading Textures %1 / %2 Lade Texturen %1 / %2 im Voraus - + Preparing Shaders %1 / %2 Bereite Shader %1 / %2 vor - + Loading Shaders %1 / %2 Lade Shader %1 / %2 - + Launching... Starte... - + Now Loading %1 Lädt %1 - + Estimated Time %1 Geschätzte verbleibende Zeit %1 @@ -5538,83 +5538,83 @@ Debug-Meldung: Lobby - + Public Room Browser Browser für öffentliche Räume - - + + Nickname Anzeigename - + Filters Filter - + Search Suche - + Games I Own Spiele, die ich besitze - + Hide Empty Rooms Verstecke leere Räume - + Hide Full Rooms Verstecke volle Räume - + Refresh Lobby Lobby aktualisieren - + Password Required to Join Passwort zum Beitreten benötigt - + Password: Passwort: - + Room Name Raumname - + Preferred Game Bevorzugtes Spiel - + Host Host - + Players Spieler - + Refreshing Neu Laden - + Refresh List Liste aktualisieren @@ -5622,362 +5622,362 @@ Debug-Meldung: MainWindow - + Citra Citra - + &File &Datei - + Boot Home Menu Starte Home-Menü - + Recent Files Kürzliche Dateien - + Amiibo Amiibo - + &Emulation &Emulation - + Save State Spielstand speichern - + Load State Spielstand laden - + &View &Anzeige - + Debugging Debugging - + Screen Layout Bildschirmanordnung - + Multiplayer Mehrspieler - + Tools Werkzeuge - + Movie Aufnahme - + Frame Advance Frame Advance - + &Help &Hilfe - + Load File... Datei laden... - + Install CIA... CIA installieren... - + JPN - + USA - + EUR - + AUS - + CHN - + KOR - + TWN - + E&xit &Verlassen - + &Pause &Pause - + &Stop &Stop - + Save Speichern - + Load Laden - + FAQ FAQ - + About Citra Über Citra - + Single Window Mode Einzelfenstermodus - + Save to Oldest Slot Im ältesten Slot speichern - + Load from Newest Slot Vom neuesten Slot laden - + Configure... Konfigurieren... - + Display Dock Widget Headers Dock Widget Header anzeigen - + Show Filter Bar Filterleiste anzeigen - + Show Status Bar Statusleiste anzeigen - + Create Pica Surface Viewer Pica-Oberflächenansicht - + Record... Aufnehmen... - + Play... Abspielen... - + Close Schließen - + Save without Closing Speichern ohne zu schließen - + Read-Only Mode Nur-Lesen-Modus - + Enable Frame Advancing Frame Advance aktivieren - + Advance Frame Advance Frame - + Capture Screenshot Screenshot aufnehmen - + Dump Video Video dumpen - + Browse Public Game Lobby Öffentliche Lobby durchsuchen - + Create Room Raum erstellen - + Leave Room Raum verlassen - + Direct Connect to Room Direkt verbinden - + Show Current Room Zeige aktuellen Raum an - + Fullscreen Vollbild - + Modify Citra Install Citra-Installation ändern - + Opens the maintenance tool to modify your Citra installation Öffnet das Wartungstool, um die Citra Installation zu verändern - + Default Standard - + Single Screen Einzelner Bildschirm - + Large Screen Großer Bildschirm - + Hybrid Screen Hybrid-Bildschirm - + Side by Side Seite an Seite - + Separate Windows Getrennte Fenster - + Swap Screens Bildschirme tauschen - + Rotate Upright Aufrecht drehen - + Check for Updates Auf Updates prüfen - + Report Compatibility Kompatibilität melden - + Restart Neustart - + Load... Laden... - + Remove Entfernen - + Open Citra Folder Citra Verzeichnis öffnen - + Configure Current Game... Konfiguriere aktuelles Spiel… @@ -5985,7 +5985,7 @@ Debug-Meldung: MicroProfileDialog - + MicroProfile MicroProfile @@ -5993,48 +5993,48 @@ Debug-Meldung: ModerationDialog - + Moderation Moderation - + Ban List Bann-Liste - - + + Refreshing Aktualisieren - + Unban Bann aufheben - + Subject Titel - + Type Typ - + Forum Username Forum Benutzername - + IP Address IP Adresse - + Refresh Aktualisieren @@ -6042,91 +6042,91 @@ Debug-Meldung: MoviePlayDialog - - + + Play Movie Film abspielen - + File: Datei: - + ... ... - + Info Info - + Game: Spiel: - + Author: Autor: - + Rerecord Count: Rerecord-Anzahl: - + Length: Länge: - + Current running game will be stopped. Das aktuell laufende Spiel wird gestoppt. - + <br>Current recording will be discarded. <br>Die aktuelle Aufzeichnung wird verworfen. - + Citra TAS Movie (*.ctm) - + Invalid movie file. Ungültige Film-Datei. - + Revision dismatch, playback may desync. - + Indicated length is incorrect, file may be corrupted. - - - - + + + + (unknown) (unbekannt) - + Game used in this movie is not in game list. Das Spiel, das in diesem Film benutzt wurde, ist nicht in der Spieleliste. - + (>1 day) (>1 Tag) @@ -6134,43 +6134,43 @@ Debug-Meldung: MovieRecordDialog - - + + Record Movie Film aufnehmen - + File: Datei: - + ... ... - + Author: Autor: - + Current running game will be restarted. Das aktuell laufende Spiel wird neu gestartet. - + <br>Current recording will be discarded. <br>Die aktuelle Aufzeichnung wird verworfen. - + Recording will start once you boot a game. Die Aufzeichnung beginnt, sobald du ein Spiel startest. - + Citra TAS Movie (*.ctm) @@ -6178,44 +6178,44 @@ Debug-Meldung: MultiplayerState - - + + Current connection status Derzeitiger Verbindungsstatus - - + + Not Connected. Click here to find a room! Nicht verbunden. Klicken Sie hier, um einen Raum zu finden! - - - + + + Connected Verbunden - - + + Not Connected Nicht verbunden - + Error Fehler - + Failed to update the room information. Please check your Internet connection and try hosting the room again. Debug Message: Aktualisieren der Raum-Informationen fehlgeschlagen. Überprüfen sie ihre Internetverbindung und versuchen sie den Raum erneut zu hosten. Debug-Meldung: - + New Messages Received Neue Nachricht erhalten @@ -6223,22 +6223,22 @@ Debug-Meldung: NetworkMessage - + Leave Room Raum verlassen - + You are about to close the room. Any network connections will be closed. Sie sind dabei, den Raum zu schließen. Jegliche Netzwerkverbindungen werden geschlossen. - + Disconnect Verbindung trennen - + You are about to leave the room. Any network connections will be closed. Sie sind dabei, den Raum zu schließen. Jegliche Netzwerkverbindungen werden geschlossen @@ -6246,110 +6246,110 @@ Debug-Meldung: NetworkMessage::ErrorManager - + Username is not valid. Must be 4 to 20 alphanumeric characters. Nutzername ist ungültig. Muss aus 4 bis 20 alphanumerischen Zeichen bestehen. - + Room name is not valid. Must be 4 to 20 alphanumeric characters. Raum-Name ist ungültig. Muss aus 4 bis 20 alphanumerischen Zeichen bestehen. - + Username is already in use or not valid. Please choose another. Nutzername ist bereits in Verwendung oder nicht gültig. Bitte wählen sie einen anderen. - + IP is not a valid IPv4 address. IP ist keine gültige IPv4-Adresse. - + Port must be a number between 0 to 65535. Port muss eine Nummer zwischen 0 und 65535 sein. - + You must choose a Preferred Game to host a room. If you do not have any games in your game list yet, add a game folder by clicking on the plus icon in the game list. Sie müssen ein bevozugtes Spiel auswählen, um einen Raum zu erstellen. Falls sie noch keine Spiele in der Spieleliste haben, fügen sie ein Spiele-Verzeichnis hinzu, indem sie auf das Plus-Symbol in der Spieleliste klicken. - + Unable to find an internet connection. Check your internet settings. Unfähig eine Internet-Verbindung zu finden. Prüfen sie ihre Internet-Einstellungen. - + Unable to connect to the host. Verify that the connection settings are correct. If you still cannot connect, contact the room host and verify that the host is properly configured with the external port forwarded. - + Unable to connect to the room because it is already full. - + Creating a room failed. Please retry. Restarting Citra might be necessary. - + The host of the room has banned you. Speak with the host to unban you or try a different room. - + Version mismatch! Please update to the latest version of Citra. If the problem persists, contact the room host and ask them to update the server. - + Incorrect password. Falsches Passwort. - + An unknown error occurred. If this error continues to occur, please open an issue - + Connection to room lost. Try to reconnect. Verbindung zum Raum verloren. Versuche erneut zu verbinden. - + You have been kicked by the room host. Sie wurden vom Raum-Gastgeber rausgeworfen. - + MAC address is already in use. Please choose another. Die MAC Adresse wird schon genutzt. Bitte wählen Sie eine andere. - + Your Console ID conflicted with someone else's in the room. Please go to Emulation > Configure > System to regenerate your Console ID. - + You do not have enough permission to perform this action. Sie haben nicht die erforderlichen Rechte, um diese Aktion auszufühen. - + The user you are trying to kick/ban could not be found. They may have left the room. - + Error Fehler @@ -6357,37 +6357,37 @@ They may have left the room. OptionSetDialog - + Options Optionen - + Unset Nicht festgelegt - + unknown unbekannt - + %1 &lt;%2> %3 %1 &lt;%2> %3 - + Range: %1 - %2 Bereich: %1 - %2 - + custom benutzerdefiniert - + %1 (0x%2) %3 %1 (0x%2) %3 @@ -6395,32 +6395,32 @@ They may have left the room. OptionsDialog - + Options Optionen - + Double click to see the description and change the values of the options. Doppelklicken sie, um die Beschreibung der Optionen zu sehen, und deren Werte zu verändern. - + Specific Spezifisch - + Generic Allgemein - + Name Name - + Value Wert @@ -6428,157 +6428,157 @@ They may have left the room. QObject - + Supported image files (%1) Unterstützte Abbild Dateien (%1) - + Open File Datei öffnen - + Error Fehler - + Couldn't load the camera Kamera konnte nicht geladen werden - + Couldn't load %1 %1 konnte nicht geladen werden - - + + Shift Umschalttaste - - + + Ctrl Strg - - + + Alt Alt - - - + + + [not set] [nicht gesetzt] - - + + Hat %1 %2 Hat %1 %2 - - - - - - + + + + + + Axis %1%2 Achse %1%2 - - + + Button %1 Taste %1 - + GC Axis %1%2 GC-Achse %1%2 - + GC Button %1 GC-Taste %1 - - - + + + [unknown] [unbekannt] - + [unused] [ungenutzt] - + auto Auto - + true wahr - + false falsch - - + + none nichts - + %1 (0x%2) %1 (0x%2) - + Invalid region Ungültiges Gebiet - + Installed Titles Installierte Titel - + System Titles System-Titel - + Add New Game Directory Neues Spieleverzeichnis hinzufügen - + Not playing a game Spielt kein Spiel - + %1 is not playing a game %1 spielt kein Spiel - + %1 is playing %2 %1 spielt %2 @@ -6586,7 +6586,7 @@ They may have left the room. QtKeyboard - + Software Keyboard Software-Tastatur @@ -6594,27 +6594,27 @@ They may have left the room. QtKeyboardDialog - + Text length is not correct (should be %1 characters) Textlänge ist nicht korrekt (Sollte %1 Buchstabe(n) sein) - + Text is too long (should be no more than %1 characters) Text ist zu lange (Sollte nicht mehr als %1 Buchstaben sein) - + Blank input is not allowed Leere Eingabe ist nicht erlaubt. - + Empty input is not allowed Leere Eingabe ist nicht erlaubt. - + Validation error Validierungsfehler @@ -6622,12 +6622,12 @@ They may have left the room. QtMiiSelectorDialog - + Mii Selector Mii-Auswahl - + Standard Mii Standard-Mii @@ -6635,95 +6635,95 @@ They may have left the room. RecordDialog - + View Record Rekord ansehen - + Client Client - - + + Process: Prozess: - - + + Thread: Thread: - - + + Session: Sitzung: - + Server Server - + General Allgemein - + Client Port: Client-Port - + Service: Dienst: - + Function: Funktion: - + Command Buffer Befehlspuffer - + Select: Auswählen: - + Request Untranslated Ohne Übersetzung anfragen - + Request Translated Übersetzt anfragen - + Reply Untranslated Ohne Übersetzung antworten - + Reply Translated Übersetzt antworten - + OK OK - + null null @@ -6731,37 +6731,37 @@ They may have left the room. RegistersWidget - + Registers Register - + VFP Registers VFP Register - + VFP System Registers VFP System Register - + Vector Length Vektorlänge - + Vector Stride Vektor Stride - + Rounding Mode Rundungsmodus - + Vector Iteration Count Vektor-Iterationszähler @@ -6769,7 +6769,7 @@ They may have left the room. SequenceDialog - + Enter a hotkey Tastenkürzel eingeben @@ -6777,7 +6777,7 @@ They may have left the room. WaitTreeEvent - + reset type = %1 Resetart = %1 @@ -6785,12 +6785,12 @@ They may have left the room. WaitTreeMutex - + locked %1 times by thread: %1 mal durch Thread blockiert: - + free frei @@ -6798,7 +6798,7 @@ They may have left the room. WaitTreeMutexList - + holding mutexes hält Mutexe @@ -6806,12 +6806,12 @@ They may have left the room. WaitTreeObjectList - + waiting for all objects wartet auf alle Objekte - + waiting for one of the following objects Warte auf eins der folgenden Objekte @@ -6819,12 +6819,12 @@ They may have left the room. WaitTreeSemaphore - + available count = %1 Verfügbare Anzahl = %1 - + max count = %1 Maximale Anzahl = %1 @@ -6832,112 +6832,112 @@ They may have left the room. WaitTreeThread - + running läuft - + ready bereit - + waiting for address 0x%1 Warte auf Adresse 0x%1 - + sleeping schläft - + waiting for IPC response warten auf IPC Antwort - + waiting for objects wartet auf Objekte - + waiting for HLE return warten auf HLE Rückgabe - + dormant schlafend - + dead tot - + PC = 0x%1 LR = 0x%2 PC = 0x%1 LR = 0x%2 - + default Standard - + all alle - + AppCore AppCore - + SysCore SysCore - + Unknown processor %1 Unbekannter Prozessor %1 - + object id = %1 objekt id = %1 - + processor = %1 Prozessor = %1 - + thread id = %1 Thread-ID = %1 - + process = %1 (%2) Prozess = %1 (%2) - + priority = %1(current) / %2(normal) Priorität = %1(jetzig) / %2(normal) - + last running ticks = %1 letzte laufende Ticks = %1 - + not holding mutex hält keinen Mutex @@ -6945,7 +6945,7 @@ They may have left the room. WaitTreeThreadList - + waited by thread pausiert von Thread @@ -6953,17 +6953,17 @@ They may have left the room. WaitTreeTimer - + reset type = %1 Resetart = %1 - + initial delay = %1 anfängliche Verzögerung = %1 - + interval delay = %1 Intervallverzögerung = %1 @@ -6971,27 +6971,27 @@ They may have left the room. WaitTreeWaitObject - + [%1]%2 %3 [%1]%2 %3 - + waited by no thread von keinem Thread pausiert - + one shot one shot - + sticky sticky - + pulse pulse @@ -6999,7 +6999,7 @@ They may have left the room. WaitTreeWidget - + Wait Tree Wait Tree diff --git a/dist/languages/el.ts b/dist/languages/el.ts index 524ab83e8..8b43e905e 100644 --- a/dist/languages/el.ts +++ b/dist/languages/el.ts @@ -2,17 +2,17 @@ ARMRegisters - + ARM Registers Καταχωρητές ARM - + Register Καταχωρητής - + Value Τιμή @@ -20,27 +20,27 @@ AboutDialog - + About Citra Σχετικά με το Citra - - <html><head/><body><p><img src=":/icons/citra.png"/></p></body></html> - <html><head/><body><p><img src=":/icons/citra.png"/></p></body></html> + + <html><head/><body><p><img src=":/icons/lime.png"/></p></body></html> + <html><head/><body><p><img src=":/icons/lime.png"/></p></body></html> - + <html><head/><body><p><span style=" font-size:28pt;">Citra</span></p></body></html> <html><head/><body><p><span style=" font-size:28pt;">Citra</span></p></body></html> - + <html><head/><body><p>%1 | %2-%3 (%4)</p></body></html> <html><head/><body><p>%1 | %2-%3 (%4)</p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -57,12 +57,12 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">Αυτό το λογισμικό δεν θα πρέπει να χρησιμοποιείται για παιχνίδια που δεν έχετε αποκτήσει νόμιμα.</span></p></body></html> - + <html><head/><body><p><a href="https://citra-emu.org/"><span style=" text-decoration: underline; color:#039be5;">Website</span></a> | <a href="https://community.citra-emu.org/"><span style=" text-decoration: underline; color:#039be5;">Forum</span></a> | <a href="https://github.com/citra-emu"><span style=" text-decoration: underline; color:#039be5;">Source Code</span></a> | <a href="https://github.com/citra-emu/citra/graphs/contributors"><span style=" text-decoration: underline; color:#039be5;">Contributors</span></a> | <a href="https://github.com/citra-emu/citra/blob/master/license.txt"><span style=" text-decoration: underline; color:#039be5;">License</span></a></p></body></html> <html><head/><body><p><a href="https://citra-emu.org/"><span style=" text-decoration: underline; color:#039be5;">Ιστότοπος</span></a> | <a href="https://community.citra-emu.org/"><span style=" text-decoration: underline; color:#039be5;">Φόρουμ</span></a> | <a href="https://github.com/citra-emu"><span style=" text-decoration: underline; color:#039be5;">Πηγαίος κώδικας</span></a> | <a href="https://github.com/citra-emu/citra/graphs/contributors"><span style=" text-decoration: underline; color:#039be5;">Εθελοντές</span></a> | <a href="https://github.com/citra-emu/citra/blob/master/license.txt"><span style=" text-decoration: underline; color:#039be5;">Άδεια</span></a></p></body></html> - + <html><head/><body><p><span style=" font-size:7pt;">&quot;3DS&quot; is a trademark of Nintendo. Citra is not affiliated with Nintendo in any way.</span></p></body></html> <html><head/><body><p><span style=" font-size:7pt;">Το «3DS» είναι εμπορικό σήμα της Nintendo. Το Citra δεν σχετίζεται με τη Nintendo με κανένα τρόπο.</span></p></body></html> @@ -70,47 +70,47 @@ p, li { white-space: pre-wrap; } BreakPointModel - + Pica command loaded Φορτώθηκε εντολή Pica - + Pica command processed Έγινε επεξεργασία εντολής Pica - + Incoming primitive batch Εισερχόμενο πρώιμο σύνολο δεδομένων - + Finished primitive batch Ολοκληρώθηκε το πρώιμο σύνολο δεδομένων - + Vertex shader invocation Επίκληση Vertex shader - + Incoming display transfer Εισερχόμενη μεταφορά οθόνης - + GSP command processed Έγινε επεξεργασία εντολής GSP - + Buffers swapped Έγινε εναλλαγή προσωρινών μνημών - + Unknown debug context event Άγνωστο συμβάν περιβάλλοντος ελέγχου σφαλμάτων @@ -118,32 +118,32 @@ p, li { white-space: pre-wrap; } CalibrationConfigurationDialog - + Communicating with the server... Επικοινωνία με τον διακομιστή... - + Cancel Ακύρωση - + Touch the top left corner <br>of your touchpad. Αγγίξτε την επάνω αριστερή γωνία <br>της επιφάνειας αφής σας. - + Now touch the bottom right corner <br>of your touchpad. Τώρα αγγίξτε την κάτω δεξιά γωνία <br> της επιφάνειας αφής σας. - + Configuration completed! Η διαμόρφωση ολοκληρώθηκε! - + OK OK @@ -151,93 +151,93 @@ p, li { white-space: pre-wrap; } ChatRoom - + Room Window Παράθυρο δωματίου - + Send Chat Message Αποστολή μηνύματος - + Send Message Αποστολή μηνύματος - + Members Μέλη - + %1 has joined Ο/Η %1 συνδέθηκε - + %1 has left Ο/Η %1 αποχώρησε - + %1 has been kicked Ο/Η %1 αποβλήθηκε - + %1 has been banned Ο/Η %1 έχει αποκλειστεί - + %1 has been unbanned Ο αποκλεισμός του/της %1 αναιρέθηκε - + View Profile Προβολή προφίλ - - + + Block Player Αποκλεισμός παίκτη - + When you block a player, you will no longer receive chat messages from them.<br><br>Are you sure you would like to block %1? Όταν αποκλείσετε έναν παίκτη, δεν θα λαμβάνετε πλέον μηνύματα από αυτόν.<br><br>Θέλετε σίγουρα να αποκλείσετε τον/την %1; - + Kick Αποβολή - + Ban Αποκλεισμός - + Kick Player Αποβολή παίκτη - + Are you sure you would like to <b>kick</b> %1? Θέλετε σίγουρα να <b>αποβάλετε</b> τον/την %1; - + Ban Player Aποκλεισμός παίκτη - + Are you sure you would like to <b>kick and ban</b> %1? This would ban both their forum username and their IP address. @@ -249,22 +249,22 @@ This would ban both their forum username and their IP address. ClientRoom - + Room Window Παράθυρο δωματίου - + Room Description Περιγραφή δωματίου - + Moderation... Συντονισμός... - + Leave Room Αποχώρηση από δωμάτιο @@ -272,17 +272,17 @@ This would ban both their forum username and their IP address. ClientRoomWindow - + Connected Συνδέθηκε - + Disconnected Αποσυνδέθηκε - + %1 (%2/%3 members) - connected %1 (%2/%3 μέλη) - συνδέθηκαν @@ -290,108 +290,108 @@ This would ban both their forum username and their IP address. CompatDB - + Report Compatibility Αναφορά συμβατότητας - - + + Report Game Compatibility Αναφορά συμβατότητας παιχνιδιού - + <html><head/><body><p><span style=" font-size:10pt;">Should you choose to submit a test case to the </span><a href="https://citra-emu.org/game/"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">Citra Compatibility List</span></a><span style=" font-size:10pt;">, The following information will be collected and displayed on the site:</span></p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Hardware Information (CPU / GPU / Operating System)</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Which version of Citra you are running</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The connected Citra account</li></ul></body></html> <html><head/><body><p><span style=" font-size:10pt;">Αν επιλέξετε να υποβάλετε μια δοκιμαστική περίπτωση στη </span><a href="https://citra-emu.org/game/"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">λίστα συμβατότητας του Citra</span></a><span style=" font-size:10pt;">, θα συλλεχθούν οι εξής πληροφορίες και θα προβληθούν στον ιστότοπο:</span></p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Πληροφορίες υλικού (CPU/GPU/Λειτουργικό σύστημα)</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Η έκδοση του Citra που χρησιμοποιείτε</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Ο συνδεδεμένος λογαριασμός Citra</li></ul></body></html> - + Perfect Τέλεια - + <html><head/><body><p>Game functions flawlessly with no audio or graphical glitches.</p></body></html> <html><head/><body><p>Το παιχνίδι λειτουργεί άψογα, χωρίς προβλήματα ήχου ή γραφικών.</p></body></html> - + Great - + <html><head/><body><p>Game functions with minor graphical or audio glitches and is playable from start to finish. May require some workarounds.</p></body></html> <html><head/><body><p>Το παιχνίδι εμφανίζει μικρά προβλήματα γραφικών ή ήχου και είναι λειτουργικό από την αρχή έως το τέλος. Ενδέχεται να χρειαστούν μερικές προσωρινές λύσεις.</p></body></html> - + Okay Καλή - + <html><head/><body><p>Game functions with major graphical or audio glitches, but game is playable from start to finish with workarounds.</p></body></html> <html><head/><body><p>Το παιχνίδι εμφανίζει μεγάλα προβλήματα γραφικών ή ήχου, αλλά είναι λειτουργικό από την αρχή έως το τέλος με προσωρινές λύσεις.</p></body></html> - + Bad Κακή - + <html><head/><body><p>Game functions, but with major graphical or audio glitches. Unable to progress in specific areas due to glitches even with workarounds.</p></body></html> <html><head/><body><p>Το παιχνίδι λειτουργεί, αλλά με μεγάλα προβλήματα γραφικών ή ήχου. Δεν είναι δυνατή η συνέχεια σε συγκεκριμένες περιοχές λόγω των προβλημάτων, ακόμα και με προσωρινές λύσεις.</p></body></html> - + Intro/Menu Εκκίνηση/Μενού - + <html><head/><body><p>Game is completely unplayable due to major graphical or audio glitches. Unable to progress past the Start Screen.</p></body></html> <html><head/><body><p>Το παιχνίδι δεν λειτουργεί καθόλου λόγω των μεγάλων προβλημάτων γραφικών ή ήχου. Δεν είναι δυνατή η συνέχεια πέρα από την οθόνη εκκίνησης.</p></body></html> - + Won't Boot Δεν εκκινείται - + <html><head/><body><p>The game crashes when attempting to startup.</p></body></html> <html><head/><body><p>Το παιχνίδι καταρρέει κατά την απόπειρα εκκίνησης.</p></body></html> - + <html><head/><body><p>Independent of speed or performance, how well does this game play from start to finish on this version of Citra?</p></body></html> <html><head/><body><p>Ανεξαρτήτως ταχύτητας ή επιδόσεων, πόσο καλά παίζει αυτό το παιχνίδι από την αρχή μέχρι το τέλος, σε αυτήν την έκδοση του Citra;</p></body></html> - + Thank you for your submission! Σας ευχαριστούμε για την υποβολή σας! - + Submitting Υποβολή - + Communication error Σφάλμα επικοινωνίας - + An error occurred while sending the Testcase Προέκυψε σφάλμα κατά την αποστολή της δοκιμαστικής περίπτωσης - + Next Επόμενο @@ -399,93 +399,93 @@ This would ban both their forum username and their IP address. ConfigureAudio - + Output - + Emulation: Εξομοίωση: - + HLE (fast) HLE (γρήγορο) - + LLE (accurate) LLE (ακριβές) - + LLE multi-core LLE πολυπύρηνο - + Output Type - + Output Device - + This post-processing effect adjusts audio speed to match emulation speed and helps prevent audio stutter. This however increases audio latency. Αυτό το μετεπεξεργαστικό εφέ προσαρμόζει την ταχύτητα του ήχου για να ταιριάξει με την ταχύτητα εξομοίωσης και βοηθά στην αποτροπή το «κόμπιασμα» του ήχου. Αυτό ωστόσο αυξάνει την καθυστέρηση του ήχου. - + Enable audio stretching Ενεργοποίηση «τεντώματος» ήχου - + Use global volume - + Set volume: - + Volume: Ένταση: - + 0 % 0 % - + Microphone Μικρόφωνο - + Input Type Τύπος εισόδου - + Input Device Συσκευή εισόδου - - + + Auto - + %1% Volume percentage (e.g. 50%) %1% @@ -494,203 +494,203 @@ This would ban both their forum username and their IP address. ConfigureCamera - + Form Φόρμα - + Camera Κάμερα - - + + Select the camera to configure Επέλεξε την κάμερα για διαμόρφωση - + Camera to configure: Κάμερα για διαμόρφωση: - + Front Μπροστινή - + Rear Όπισθεν - - + + Select the camera mode (single or double) Επελέξτε τον τύπο κάμερασ (απλό ή διπλό) - + Camera mode: Τύπος κάμερας: - + Single (2D) Απλή (2D) - + Double (3D) Διπλή (3D) - - + + Select the position of camera to configure Επιλέξτε τη θέση της κάμερας προς ρύθμιση - + Camera position: Θέση κάμερας: - + Left Αριστερά - + Right Δεξιά - + Configuration Διαμόρφωση - - + + Select where the image of the emulated camera comes from. It may be an image or a real camera. Επιλέξτε την προέλευση της εικόνας της εξομοιωμένης κάμερας. Μπορεί να είναι μια εικόνα ή μια πραγματική κάμερα. - + Camera Image Source: Πηγή εικόνας κάμερας: - + Blank (blank) Κενό (κενό) - + Still Image (image) Στατική εικόνα (εικόνα) - + System Camera (qt) Κάμερα συστήματος (qt) - + File: Αρχείο: - + ... ... - - + + Select the system camera to use Επιλέξτε την κάμερα συστήματος προς χρήση - + Camera: Κάμερα: - + <Default> <Default> - - + + Select the image flip to apply Επιλέξτε την αναστροφή εικόνας προς εφαρμογή - + Flip: Αναστροφή: - + None Καμία - + Horizontal Οριζόντια - + Vertical Κάθετα - + Reverse Αντίστροφα - + Select an image file every time before the camera is loaded Επιλέξτε ένα αρχείο εικόνας κάθε φορά προτού φορτωθεί η κάμερα - + Prompt before load Ειδοποίηση πριν από τη φόρτωση - + Preview Προεπισκόπηση - + Resolution: 512*384 Ανάλυση: 512*384 - + Click to preview Κάντε κλικ για προεπισκόπηση - + Resolution: %1*%2 Ανάλυση: %1*%2 - + Supported image files (%1) Υποστηριζόμενα αρχεία εικόνων (%1) - + Open File Άνοιγμα αρχείου @@ -698,87 +698,87 @@ This would ban both their forum username and their IP address. ConfigureCheats - - + + Cheats - + Add Cheat - + Available Cheats: - + Name - + Type - + Save - + Delete - + Name: - + Notes: - + Code: - + Would you like to save the current cheat? - - - + + + Save Cheat - + Please enter a cheat name. - + Please enter the cheat code. - + Cheat code line %1 is not valid. Would you like to ignore the error and continue? - - + + [new cheat] @@ -786,127 +786,127 @@ Would you like to ignore the error and continue? ConfigureDebug - + Form Φόρμα - + GDB GDB - + Enable GDB Stub Ενεργοποίηση GDB Stub - + Port: Θύρα: - + Logging Kαταγραφή - + Global Log Filter Καθολικό φίλτρο αρχείου καταγραφής - + Show Log Console (Windows Only) Εμφάνιση κονσόλας καταγραφής (μόνο για Windows) - + Open Log Location Άνοιγμα τοποθεσίας αρχείου καταγραφής - + CPU - + Use global clock speed Χρήση παγκόσμιας ταχύτητας χρονισμού - + Set clock speed: Ταχύτητα χρονισμού CPU - + CPU Clock Speed Ταχύτητα χρονισμού CPU - + <html><body>Changes the emulated CPU clock frequency.<br>Underclocking can increase performance but may cause the game to freeze.<br>Overclocking may reduce in game lag but also might cause freezes</body></html> - + <html><head/><body><p>Enables the use of the ARM JIT compiler for emulating the 3DS CPUs. Don't disable unless for debugging purposes</p></body></html> - + Enable CPU JIT Ενεργοποίηση CPU JIT - + Enable debug renderer - + Dump command buffers - + Miscellaneus - + <html><head/><body><p>Introduces a delay to the first ever launched app thread if LLE modules are enabled, to allow them to initialize.</p></body></html> - + Delay app start for LLE module initialization - + <html><head/><body><p>CPU Clock Speed Information<br/>Underclocking can increase performance but may cause the game to freeze.<br/>Overclocking may reduce in game lag but also might cause freezes</p></body></html> - + Validation layer not available - + Unable to enable debug renderer because the layer <strong>VK_LAYER_KHRONOS_validation</strong> is missing. Please install the Vulkan SDK or the appropriate package of your distribution - + Command buffer dumping not available - + Unable to enable command buffer dumping because the layer <strong>VK_LAYER_LUNARG_api_dump</strong> is missing. Please install the Vulkan SDK or the appropriate package of your distribution @@ -914,92 +914,92 @@ Would you like to ignore the error and continue? ConfigureDialog - + Citra Configuration Διαμόρφωση του Citra - - - + + + General Γενικά - - - + + + System Σύστημα - - + + Input Είσοδος - - + + Hotkeys Συντομεύσεις - - + + Graphics Γραφικά - - + + Enhancements Βελτιώσεις - - - + + + Audio Ήχος - - + + Camera Κάμερα - - + + Debug Έλεγχος σφαλμάτων - - + + Storage Αποθήκευση - - + + Web Διαδίκτυο - - + + UI UI - + Controls Στοιχεία ελέγχου - + Advanced Σύνθετα @@ -1007,278 +1007,278 @@ Would you like to ignore the error and continue? ConfigureEnhancements - + Form - + Renderer - + Internal Resolution - + Auto (Window Size) - + Native (400x240) - + 2x Native (800x480) - + 3x Native (1200x720) - + 4x Native (1600x960) - + 5x Native (2000x1200) - + 6x Native (2400x1440) - + 7x Native (2800x1680) - + 8x Native (3200x1920) - + 9x Native (3600x2160) - + 10x Native (4000x2400) - + Enable Linear Filtering - + Post-Processing Shader - + Texture Filter - + None - + Anime4K - + Bicubic - + ScaleForce - + xBRZ - + MMPX - + Stereoscopy - + Stereoscopic 3D Mode - + Off - - + + Side by Side - + Anaglyph - + Interlaced - + Reverse Interlaced - + Depth - + % % - + Eye to Render in Monoscopic Mode - + Left Eye (default) Αριστερό Μάτι (προκαθορισμένη) - + Right Eye Δεξί Μάτι - + Layout Διάταξη - + Screen Layout: Διάταξη Οθόνης: - + Default Προκαθορισμένη - + Single Screen - + Large Screen - + Separate Windows - + Hybrid Screen - + Swap Screens Ανταλαγή Οθονών - + Rotate Screens Upright - + Large Screen Proportion: - + Background Color: - + Utility - + <html><head/><body><p>Replace textures with PNG files.</p><p>Textures are loaded from load/textures/[Title ID]/.</p></body></html> - + Use Custom Textures - + <html><head/><body><p>Dump textures to PNG files.</p><p>Textures are dumped to dump/textures/[Title ID]/.</p></body></html> - + Dump Textures - + <html><head/><body><p>Load all custom textures into memory on boot, instead of loading them when the game requires them.</p></body></html> - + Preload Custom Textures - + <html><head/><body><p>Load custom textures asynchronously with background threads to reduce loading stutter</p></body></html> - + Async Custom Texture Loading @@ -1286,136 +1286,136 @@ Would you like to ignore the error and continue? ConfigureGeneral - + Form Φόρμα - + General Γενικά - + Confirm exit while emulation is running Επιβεβαίωση εξόδου όταν γίνεται εξομοίωση - + Pause emulation when in background Παύση εξομοίωσης όταν η εφαρμογή είναι στο παρασκήνιο - + Mute audio when in background - + Hide mouse on inactivity Απόκρυψη ποντικιού κατά την αδράνεια - + Enable Gamemode - + Updates Ενημερώσεις - + Check for updates on start Έλεγχος για ενημερώσεις κατά την εκκίνηση - + Silently auto update after closing Σιωπηλή αυτόματη ενημέρωση μετά το κλείσιμο - + Emulation Εξομοίωση - + Region: Περιοχή: - + Auto-select Αυτόματη επιλογή - + Use global emulation speed - + Set emulation speed: - + Emulation Speed: Ταχύτητα εξομοίωσης: - + Screenshots Στιγμιότυπα - + Use global screenshot path - + Set screenshot path: - + Save Screenshots To - + ... - + Reset All Settings Επαναφορά όλων των ρυθμίσεων - - - - - + + + + + unthrottled χωρίς επιτάχυνση - + Select Screenshot Directory - + Citra Citra - + Are you sure you want to <b>reset your settings</b> and close Citra? Θέλετε σίγουρα να <b>επαναφέρετε τις ρυθμίσεις σας</b> και να κλείσετε το Citra; @@ -1423,157 +1423,157 @@ Would you like to ignore the error and continue? ConfigureGraphics - + Form Φόρμα - + Graphics - + API Settings - + Graphics API - + Software - + OpenGL - + Vulkan - + Physical Device - + OpenGL Renderer - + SPIR-V Shader Generation - + Renderer Απεικόνιση - + <html><head/><body><p>Use the selected graphics API to accelerate shader emulation.</p><p>Requires a relatively powerful GPU for better performance.</p></body></html> - + Enable Hardware Shader Ενεργοποίηση shader υλικού - + <html><head/><body><p>Correctly handle all edge cases in multiplication operation in shaders. </p><p>Some games requires this to be enabled for the hardware shader to render properly.</p><p>However this would reduce performance in most games.</p></body></html> <html><head/><body><p>Σωστή διαχείριση όλων των ακραίων περιπτώσεων στη λειτουργία πολλαπλασιασμού των shaders. </p><p>Ορισμένα παιχνίδια απαιτούν αυτήν τη ρύθμιση για τη σωστή απεικόνιση του shader υλικού.</p><p>Ωστόσο, αυτό θα μειώσει τις επιδόσεις των περισσότερων παιχνιδιών.</p></body></html> - + Accurate Multiplication Ακριβής πολλαπλασιασμός - + <html><head/><body><p>Use the JIT engine instead of the interpreter for software shader emulation. </p><p>Enable this for better performance.</p></body></html> <html><head/><body><p>Χρήση της μηχανής JIT αντί του διερμηνέα για την εξομοίωση shader λογισμικού. </p><p>Ενεργοποιήστε αυτήν τη ρύθμιση για καλύτερες επιδόσεις.</p></body></html> - + Enable Shader JIT Ενεργοποίηση Shader JIT - + <html><head/><body><p>Compile shaders using background threads to avoid shader compilation stutter. Expect temporary graphical glitches</p></body></html> - + Enable Async Shader Compilation - + <html><head/><body><p>Perform presentation on separate threads. Improves performance when using Vulkan in most games.</p></body></html> - + Enable Async Presentation - + Advanced Σύνθετα - + <html><head/><body><p>Overrides the sampling filter used by games. This can be useful in certain cases with poorly behaved games when upscaling. If unsure set this to Game Controlled</p></body></html> - + Texture Sampling - + Game Controlled - + Nearest Neighbor - + Linear - + <html><head/><body><p>Reduce stuttering by storing and loading generated shaders to disk.</p></body></html> <html><head/><body><p>Μείωση «κομπιάσματος» αποθηκεύοντας και φορτώνοντας shaders στον δίσκο.</p></body></html> - + Use Disk Shader Cache Χρήση προσωρινής μνήμης shader δίσκου - + VSync prevents the screen from tearing, but some graphics cards have lower performance with VSync enabled. Keep it enabled if you don't notice a performance difference. Το VSync αποτρέπει τα γραφικά από το να χαλάνε, αλλά κάποιες κάρτες γραφικών μπορεί να δίνουν χειρότερη απόδοση αν η ρύθμιση είναι ανοιχτή. Κρατήστε το VSync ανοιχτό μόνο εάν δεν δείτε κάποια αλλαγή στην απόδοση. - + Enable VSync Ενεργοποίηση VSync @@ -1581,63 +1581,63 @@ Would you like to ignore the error and continue? ConfigureHotkeys - + Hotkey Settings Ρυθμίσεις πλήκτρων ελέγχου - + Double-click on a binding to change it. Κάντε διπλό κλικ σε μια καταχώρηση για να την αλλάξετε. - + Clear All - + Restore Defaults - + Action Ενέργεια - + Hotkey Συντόμευση πληκτρολογίου - - + + Conflicting Key Sequence Διένεξη ακολουθίας πλήκτρων - + The entered key sequence is already assigned to: %1 - + A 3ds button - + Restore Default Επαναφορά Προεπιλεγμένων - + Clear - + The default key sequence is already assigned to: %1 @@ -1645,307 +1645,307 @@ Would you like to ignore the error and continue? ConfigureInput - + ConfigureInput Ρύθμιση εισόδου - + Profile Προφίλ - + New Νέο - + Delete Διαγραφή - + Rename Μετονομασία - + Face Buttons Κύρια κουμπιά - + Y: Y: - + X: X: - + B: B: - + A: A: - + Directional Pad Πλήκτρα κατεύθυνσης - - - + + + Up: Επάνω: - - - + + + Down: Κάτω: - - - + + + Left: Αριστερά: - - - + + + Right: Δεξιά: - + Misc. Διάφορα - + Start: Start: - + Select: Select: - + Home: Home: - + Power: - + Circle Mod: Τροποποίηση κύκλου: - + GPIO14: GPIO14: - + Debug: Έλεγχος σφαλμάτων: - + Circle Pad Μοχλός κατεύθυνσης - - - + + + Set Analog Stick Ορισμός αναλογικού μοχλού - - + + Deadzone: 0 Νεκρή ζώνη: 0 - + C-Stick C-Stick - + Shoulder Buttons Κουμπιά ωμικής ζώνης - + ZR: ZR: - + ZL: ZL: - + L: L: - + R: R: - + Motion / Touch... Κίνηση/Αφή... - + Auto Map Αυτόματη αντιστοίχιση - + Clear All Απαλοιφή όλων - + Restore Defaults Επαναφορά προεπιλογών - - - + + + Clear Απαλοιφή - - - + + + [not set] [δεν έχει οριστεί] - - - + + + Restore Default Επαναφορά προεπιλογής - - + + Information Πληροφορίες - + After pressing OK, first move your joystick horizontally, and then vertically. Αφού επιλέξετε «OK», μετακινήστε πρώτα το χειριστήριό σας οριζόντια και μετά, κάθετα. - - + + Deadzone: %1% Νεκρή ζώνη: %1% - - + + Modifier Scale: %1% Κλίμακα τροποποίησης: %1% - + Warning Προειδοποίηση - + Auto mapping failed. Your controller may not have a corresponding mapping Αποτυχία αυτόματης αντιστοίχισης. Τα κουμπιά του χειριστηρίου σας ενδέχεται να μην έχουν αντιστοιχηθεί σωστά - + After pressing OK, press any button on your joystick Αφού επιλέξετε «OK», πατήστε οποιοδήποτε κουμπί στο χειριστήριό σας - + [press key] [πατήστε το πλήκτρο] - + Error! Σφάλμα! - + You're using a key that's already bound. Χρησιμοποιήστε ένα πλήκτρο που έχει ήδη ανατεθεί. - + New Profile Νέο προφίλ - + Enter the name for the new profile. Εισαγάγετε το όνομα του νέου προφίλ, - + Delete Profile Διαγραφή προφίλ - + Delete profile %1? Διαγραφή του προφίλ «%1»; - + Rename Profile Μετονομασία προφίλ - + New name: Νέο όνομα: - + Duplicate profile name Διπλότυπο όνομα προφίλ - + Profile name already exists. Please choose a different name. Το όνομα του προφίλ υπάρχει ήδη. Παρακαλώ επιλέξτε ένα άλλο όνομα. @@ -1953,198 +1953,198 @@ Would you like to ignore the error and continue? ConfigureMotionTouch - + Configure Motion / Touch Ρύθμιση κίνησης/αφής - + Motion Κίνηση - + Motion Provider: Πάροχος κίνησης: - + Sensitivity: Ευαισθησία: - + Controller: Χειριστήριο: - - - - - + + + + + Configure Διαμόρφωση - + Touch Αφή - + Touch Provider: Πάροχος αφής: - + Calibration: Βαθμονόμηση: - + (100, 50) - (1800, 850) (100, 50) - (1800, 850) - + Use button mapping: Χρήση αντιστοίχισης κουμπιών: - + CemuhookUDP Config Ρύθμιση CemuhookUDP - + You may use any Cemuhook compatible UDP input source to provide motion and touch input. Μπορείτε να χρησιμοποιήσετε οποιαδήποτε πηγή εισόδου UDP, συμβατή με το Cemuhook, ώστε να υπάρχει είσοδος κίνησης και αφής. - + Server: Διακομιστής: - + Port: Θύρα: - + Pad: Χειριστήριο: - + Pad 1 Χειριστήριο 1 - + Pad 2 Χειριστήριο 2 - + Pad 3 Χειριστήριο 3 - + Pad 4 Χειριστήριο 4 - + Learn More Μάθετε περισσότερα - - + + Test Δοκιμή - + Mouse (Right Click) Ποντίκι (Δεξί κλικ) - - + + CemuhookUDP CemuhookUDP - + SDL SDL - + Emulator Window Παράθυρο εξομοίωσης - + <a href='https://citra-emu.org/wiki/using-a-controller-or-android-phone-for-motion-or-touch-input'><span style="text-decoration: underline; color:#039be5;">Learn More</span></a> <a href='https://citra-emu.org/wiki/using-a-controller-or-android-phone-for-motion-or-touch-input'><span style="text-decoration: underline; color:#039be5;">Μάθετε περισσότερα</span></a> - + Information Πληροφορίες - + After pressing OK, press a button on the controller whose motion you want to track. Αφού επιλέξετε «OK», πατήστε ένα κουμπί στο χειριστήριο για το οποίο θέλετε να παρακολουθήσετε την κίνηση. - + [press button] [πατήστε το κουμπί] - + Testing Δοκιμή - + Configuring Διαμόρφωση - + Test Successful Επιτυχής δοκιμή - + Successfully received data from the server. Επιτυχής λήψη δεδομένων από τον διακομιστή. - + Test Failed Αποτυχία δοκιμής - + Could not receive valid data from the server.<br>Please verify that the server is set up correctly and the address and port are correct. Δεν ήταν δυνατή η λήψη έγκυρων δεδομένων από τον διακομιστή.<br>Παρακαλώ βεβαιωθείτε ότι ο διακομιστής έχει διαμορφωθεί σωστά και ότι η διεύθυνση και η θύρα είναι σωστές. - + Citra Citra - + UDP Test or calibration configuration is in progress.<br>Please wait for them to finish. Η δοκιμή UDP ή η διαμόρφωση βαθμονόμησης βρίσκεται σε εξέλιξη.<br>Παρακαλώ περιμένετε να ολοκληρωθούν. @@ -2152,97 +2152,97 @@ Would you like to ignore the error and continue? ConfigurePerGame - + Dialog - + Info Πληροφορίες - + Size Μέγεθος - + Format - + Name Όνομα - + Filepath Θέση αρχείου - + Title ID ID Τίτλου - + Reset Game Settings Επαναφορά Ρυθμίσεων Παιχνιδιού - + Use global configuration (%1) - + General Γενικά - + System Σύστημα - + Enhancements Βελτιώσεις - + Graphics Γραφικά - + Audio Ήχος - + Debug Εντοπισμός σφαλμάτων - + Cheats - + Properties Ιδιότητες - + Citra Citra - + Are you sure you want to <b>reset your settings for this game</b>? @@ -2250,65 +2250,65 @@ Would you like to ignore the error and continue? ConfigureStorage - + Form Φόρμα - + Storage Αποθήκευση - + Use Virtual SD Χρήση εικονικής SD - + Custom Storage - + Use Custom Storage - + NAND Directory Κατάλογος NAND - - + + Open Άνοιγμα - - + + NOTE: This does not move the contents of the previous directory to the new one. - - + + Change Αλλαγή - + SDMC Directory Κατάλογος SDMC - + Select NAND Directory Επιλογή καταλόγου NAND - + Select SDMC Directory Επιλογή καταλόγου SDMC @@ -2316,1064 +2316,1064 @@ Would you like to ignore the error and continue? ConfigureSystem - + Form Φόρμα - + System Settings Ρυθμίσεις συστήματος - + Enable New 3DS mode Ενεργοποίηση λειτουργίας New 3DS - + Use LLE applets (if installed) - + Username Όνομα χρήστη - + Birthday Γενέθλια - + January Ιανουάριος - + February Φεβρουάριος - + March Μάρτιος - + April Απρίλιος - + May Μάιος - + June Ιούνιος - + July Ιούλιος - + August Αύγουστος - + September Σεπτέμβριος - + October Οκτώβριος - + November Νοέμβριος - + December Δεκέμβριος - + Language Γλώσσα - + Note: this can be overridden when region setting is auto-select Σημείωση: αυτό μπορεί να παρακαμφθεί όταν επιλέγεται αυτόματα η περιοχή - + Japanese (日本語) Ιαπωνικά (日本語) - + English Αγγλικά (English) - + French (français) Γαλλικά (français) - + German (Deutsch) Γερμανικά (Deutsch) - + Italian (italiano) Ιταλικά (italiano) - + Spanish (español) Ισπανικά (español) - + Simplified Chinese (简体中文) Απλοποιημένα Κινεζικά (简体中文) - + Korean (한국어) Κορεατικά (한국어) - + Dutch (Nederlands) Ολλανδικά (Nederlands) - + Portuguese (português) Πορτογαλικά (português) - + Russian (Русский) Ρωσικά (Русский) - + Traditional Chinese (正體中文) Παραδοσιακά Κινεζικά (正體中文) - + Sound output mode Λειτουργία εξόδου ήχου - + Mono Μονοφωνικό - + Stereo Στερεοφωνικό - + Surround Πολυκάναλο - + Country Χώρα - + Clock Ρολόι - + System Clock Ρολόι συστήματος - + Fixed Time Καθορισμένη ώρα - + Startup time Χρόνος εκκίνησης - + yyyy-MM-ddTHH:mm:ss yyyy-MM-ddTHH:mm:ss - + Offset time - + days μέρες - + HH:mm:ss - + Initial System Ticks - + Random - + Fixed - + Initial System Ticks Override - + Play Coins: Play Coins: - + Run System Setup when Home Menu is launched - + Console ID: ID κονσόλας: - + Regenerate Επαναδημιουργία - + 3GX Plugin Loader: - + Enable 3GX plugin loader - + Allow games to change plugin loader state - + Download System Files from Nitendo servers - + Minimal - + Old 3DS Old 3DS - + New 3DS New 3DS - + JPN JPN - + USA USA - + EUR EUR - + AUS AUS - + CHN CHN - + KOR KOR - + TWN TWN - + Download Λήψη - + System settings are available only when game is not running. Οι ρυθμίσεις συστήματος διατίθενται μόνο όταν δεν εκτελείται παιχνίδι. - + Japan Ιαπωνία - + Anguilla Ανγκουίλα - + Antigua and Barbuda Αντίγκουα και Μπαρμπούντα - + Argentina Αργεντινή - + Aruba Αρούμπα - + Bahamas Μπαχάμες - + Barbados Μπαρμπάντος - + Belize Μπελίζ - + Bolivia Βολιβία - + Brazil Βραζιλία - + British Virgin Islands Βρετανικές Παρθένοι Νήσοι - + Canada Καναδάς - + Cayman Islands Νήσοι Κέιμαν - + Chile Χιλή - + Colombia Κολομβία - + Costa Rica Κόστα Ρίκα - + Dominica Ντομίνικα - + Dominican Republic Δομινικανή Δημοκρατία - + Ecuador Ισημερινός - + El Salvador Ελ Σαλβαδόρ - + French Guiana Γαλλική Γουιάνα - + Grenada Γρενάδα - + Guadeloupe Γουαδελούπη - + Guatemala Γουατεμάλα - + Guyana Γουιάνα - + Haiti Αϊτή - + Honduras Ονδούρα - + Jamaica Τζαμάικα - + Martinique Μαρτινίκα - + Mexico Μεξικό - + Montserrat Μοντσεράτ - + Netherlands Antilles Ολλανδικές Αντίλλες - + Nicaragua Νικαράγουα - + Panama Παναμάς - + Paraguay Παραγουάη - + Peru Περού - + Saint Kitts and Nevis Άγιος Χριστόφορος και Νέβις - + Saint Lucia Αγία Λουκία - + Saint Vincent and the Grenadines Άγιος Βικέντιος και Γρεναδίνες - + Suriname Σουρινάμ - + Trinidad and Tobago Τρινιντάντ και Τομπάγκο - + Turks and Caicos Islands Νήσοι Τουρκ και Κάικος - + United States Ηνωμένες Πολιτείες - + Uruguay Ουρουγουάη - + US Virgin Islands Αμερικανικές Παρθένοι Νήσοι - + Venezuela Βενεζουέλα - + Albania Αλβανία - + Australia Αυστραλία - + Austria Αυστρία - + Belgium Βέλγιο - + Bosnia and Herzegovina Βοσνία και Ερζεγοβίνη - + Botswana Μποτσουάνα - + Bulgaria Βουλγαρία - + Croatia Κροατία - + Cyprus Κύπρος - + Czech Republic Τσεχία - + Denmark Δανία - + Estonia Εσθονία - + Finland Φινλανδία - + France Γαλλία - + Germany Γερμανία - + Greece Ελλάδα - + Hungary Ουγγαρία - + Iceland Ισλανδία - + Ireland Ιρλανδία - + Italy Ιταλία - + Latvia Λετονία - + Lesotho Λεσότο - + Liechtenstein Λίχτενσταϊν - + Lithuania Λιθουανία - + Luxembourg Λουξεμβούργο - + Macedonia Βόρεια Μακεδονία - + Malta Μάλτα - + Montenegro Μαυροβούνιο - + Mozambique Μοζαμβίκη - + Namibia Ναμίμπια - + Netherlands Ολλανδία - + New Zealand Νέα Ζηλανδία - + Norway Νορβηγία - + Poland Πολωνία - + Portugal Πορτογαλία - + Romania Ρουμανία - + Russia Ρωσία - + Serbia Σερβία - + Slovakia Σλοβακία - + Slovenia Σλοβενία - + South Africa Νότια Αφρική - + Spain Ισπανία - + Swaziland Εσουατίνι - + Sweden Σουηδία - + Switzerland Ελβετία - + Turkey Τουρκία - + United Kingdom Ηνωμένο Βασίλειο - + Zambia Ζάμπια - + Zimbabwe Ζιμπάμπουε - + Azerbaijan Αζερμπαϊτζάν - + Mauritania Μαυριτανία - + Mali Μάλι - + Niger Νίγηρας - + Chad Τσαντ - + Sudan Σουδάν - + Eritrea Ερυθραία - + Djibouti Τζιμπουτί - + Somalia Σομαλία - + Andorra Ανδόρρα - + Gibraltar Γιβραλτάρ - + Guernsey Γκέρνσεϊ - + Isle of Man Νήσος Μαν - + Jersey Τζέρσεϊ - + Monaco Μονακό - + Taiwan Ταϊβάν - + South Korea Νότια Κορέα - + Hong Kong Χονγκ Κονγκ - + Macau Μακάου - + Indonesia Ινδονησία - + Singapore Σιγκαπούρη - + Thailand Ταϊλάνδη - + Philippines Φιλιππίνες - + Malaysia Μαλαισία - + China Κίνα - + United Arab Emirates Ηνωμένα Αραβικά Εμιράτα - + India Ινδία - + Egypt Αίγυπτος - + Oman Ομάν - + Qatar Κατάρ - + Kuwait Κουβέιτ - + Saudi Arabia Σαουδική Αραβία - + Syria Συρία - + Bahrain Μπαχρέιν - + Jordan Ιορδανία - + San Marino Άγιος Μαρίνος - + Vatican City Βατικανό - + Bermuda Βερμούδες - + Download System Files from Nintendo servers Λήψη Αρχείων Συστήματος από τους διακομιστές της Nintendo - + Citra is missing keys to download system files. <br><a href='https://citra-emu.org/wiki/aes-keys/'><span style="text-decoration: underline; color:#039be5;">How to get keys?</span></a> - - + + Console ID: 0x%1 ID κονσόλας: 0x%1 - + This will replace your current virtual 3DS with a new one. Your current virtual 3DS will not be recoverable. This might have unexpected effects in games. This might fail, if you use an outdated config savegame. Continue? Αυτό θα αντικαταστήσει το τρέχον εικονικό 3DS με ένα νέο. Δεν θα είναι δυνατή η ανάκτηση του τρέχοντος εικονικού 3DS σας. Αυτό μπορεί να επιφέρει απρόσμενα αποτελέσματα στα παιχνίδια. Υπάρχει ενδεχόμενο αποτυχίας εάν χρησιμοποιείτε παρωχημένη διαμόρφωση αρχείων αποθήκευσης παιχνιδιών. Συνέχεια; - + Warning Προειδοποίηση - + Downloading files... - + Cancel - - + + Citra - + Downloading system files failed. - + Successfully downloaded system files. @@ -3381,91 +3381,91 @@ Would you like to ignore the error and continue? ConfigureTouchFromButton - + Configure Touchscreen Mappings Ρύθμιση αντιστοιχίσεων οθόνης αφής - + Mapping: Αντιστοίχιση: - + New Νέο - + Delete Διαγραφή - + Rename Μετονομασία - + Click the bottom area to add a point, then press a button to bind. Drag points to change position, or double-click table cells to edit values. Κάντε κλικ στην κάτω περιοχή για να προσθέσετε ένα σημείο και πατήστε ένα κουμπί για ανάθεση. Σύρετε σημεία για να αλλάξετε τη θέση ή κάντε διπλό κλικ στα κελιά πίνακα για να επεξεργαστείτε τις τιμές. - + Delete Point Διαγραφή σημείου - + Button Κουμπί - + X X axis - + Y Y axis - + New Profile Νέο προφίλ - + Enter the name for the new profile. Εισαγάγετε το όνομα του νέου προφίλ. - + Delete Profile Διαγραφή προφίλ - + Delete profile %1? Διαγραφή του προφίλ «%1»; - + Rename Profile Μετονομασία προφίλ - + New name: Νέο όνομα: - + [press key] [πατήστε το πλήκτρο] @@ -3473,113 +3473,113 @@ Drag points to change position, or double-click table cells to edit values. ConfigureUi - + Form Φόρμα - + General Γενικά - + Note: Changing language will apply your configuration. Σημείωση: Η αλλαγή της γλώσσας θα αλλάξει τις ρυθμίσεις παραμέτρων σας. - + Interface language: Γλώσσα περιβάλλοντος: - + Theme: Θέμα: - + Game List Λίστα παιχνιδιών - + Icon Size: Μέγεθος εικονιδίων: - - + + None Χωρίς - + Small (24x24) Μικρό (24x24) - + Large (48x48) Μεγάλο (48x48) - + Row 1 Text: Κείμενο σειράς 1: - - + + File Name Όνομα αρχείου - - + + Full Path Πλήρης διαδρομή - - + + Title Name (short) Όνομα τίτλου (σύντομο) - - + + Title ID ID τίτλου - - + + Title Name (long) Όνομα τίτλου (μεγάλο) - + Row 2 Text: Κείμενο σειράς 2: - + Hide Titles without Icon Απόκρυψη τίτλων χωρίς εικονίδιο - + Single Line Mode Λειτουργία ενιαίας γραμμής - + <System> <System> - + English Αγγλικά @@ -3587,135 +3587,135 @@ Drag points to change position, or double-click table cells to edit values. ConfigureWeb - + Form Φόρμα - + Citra Web Service Citra Web Service - + By providing your username and token, you agree to allow Citra to collect additional usage data, which may include user identifying information. Παρέχοντας το όνομα χρήστη και το αναγνωριστικό σας, επιτρέπετε στο Citra να συλλέξει περισσότερα δεδομένα χρήσης, που ενδέχεται να περιέχουν αναγνωριστικές πληροφορίες χρήστη. - - + + Verify Επαλήθευση - + Sign up Εγγραφή - + Token: Αναγνωριστικό: - + Username: Όνομα χρήστη: - + What is my token? Ποιο είναι το αναγνωριστικό μου; - + Web Service configuration can only be changed when a public room isn't being hosted. Η ρύθμιση της διαδικτυακής υπηρεσίας μπορεί να αλλάξει μόνο όταν δεν είναι σε λειτουργία κάποιο δημόσιο δωμάτιο. - + Telemetry Τηλεμετρία - + Share anonymous usage data with the Citra team Κοινοποίηση ανώνυμων δεδομένων χρήσης στην ομάδα του Citra - + Learn more Μάθετε περισσότερα - + Telemetry ID: ID τηλεμετρίας: - + Regenerate Επαναδημιουργία - + Discord Presence Παρουσία Discord - + Show Current Game in your Discord Status Εμφάνιση τρέχοντος παιχνιδιού στην κατάσταση Discord σας - + <a href='https://citra-emu.org/entry/telemetry-and-why-thats-a-good-thing/'><span style="text-decoration: underline; color:#039be5;">Learn more</span></a> <a href='https://citra-emu.org/entry/telemetry-and-why-thats-a-good-thing/'><span style="text-decoration: underline; color:#039be5;">Μάθετε περισσότερα</span></a> - + <a href='https://profile.citra-emu.org/'><span style="text-decoration: underline; color:#039be5;">Sign up</span></a> <a href='https://profile.citra-emu.org/'><span style="text-decoration: underline; color:#039be5;">Εγγραφή</span></a> - + <a href='https://citra-emu.org/wiki/citra-web-service/'><span style="text-decoration: underline; color:#039be5;">What is my token?</span></a> <a href='https://citra-emu.org/wiki/citra-web-service/'><span style="text-decoration: underline; color:#039be5;">Ποιο είναι το αναγνωριστικό μου;</span></a> - - + + Unspecified Δεν έχει καθοριστεί - - + + Telemetry ID: 0x%1 ID τηλεμετρίας: 0x%1 - + Token not verified Μη επαληθευμένο αναγνωριστικό - + Token was not verified. The change to your token has not been saved. Το αναγνωριστικό δεν επαληθεύτηκε. Η αλλαγή στο αναγνωριστικό σας δεν έχει αποθηκευτεί. - + Verifying... Επαλήθευση... - + Verification failed Αποτυχία επαλήθευσης - + Verification failed. Check that you have entered your token correctly, and that your internet connection is working. Αποτυχία επαλήθευσης. Βεβαιωθείτε ότι έχετε εισαγάγει σωστά το αναγνωστικό σας και ότι λειτουργεί η σύνδεσή σας στο διαδίκτυο. @@ -3723,47 +3723,47 @@ Drag points to change position, or double-click table cells to edit values. DirectConnect - + Direct Connect Άμεση σύνδεση - + Server Address - + <html><head/><body><p>Server address of the host</p></body></html> - + Port Θύρα - + <html><head/><body><p>Port number the host is listening on</p></body></html> <html><head/><body><p>Ο αριθμός θύρας με την οποία επικοινωνεί ο υπολογιστής</p></body></html> - + 24872 24872 - + Nickname Ψευδώνυμο - + Password Κωδικός πρόσβασης - + Connect Σύνδεση @@ -3771,12 +3771,12 @@ Drag points to change position, or double-click table cells to edit values. DirectConnectWindow - + Connecting Σύνδεση - + Connect Σύνδεση @@ -3784,110 +3784,110 @@ Drag points to change position, or double-click table cells to edit values. DumpingDialog - + Dump Video - + Output - + Format: - - - + + + Options: - - - - + + + + ... - + Path: - + Video - - + + Encoder: - - + + Bitrate: - - + + bps - + Audio - - + + Citra - + Please specify the output path. - + output formats - + video encoders - + audio encoders - + Could not find any available %1. Please check your FFmpeg installation used for compilation. - - - - + + + + %1 (%2) - + Select Video Output Path @@ -3895,418 +3895,418 @@ Please check your FFmpeg installation used for compilation. GMainWindow - + <a href='https://citra-emu.org/entry/telemetry-and-why-thats-a-good-thing/'>Anonymous data is collected</a> to help improve Citra. <br/><br/>Would you like to share your usage data with us? <a href='https://citra-emu.org/entry/telemetry-and-why-thats-a-good-thing/'>Συλλέγονται ανώνυμα δεδομένα</a> για τη βελτίωση του Citra. <br/><br/>Θέλετε να μοιραστείτε τα δεδομένα χρήσης σας με εμάς; - + Telemetry Τηλεμετρία - + No Suitable Vulkan Devices Detected - + Vulkan initialization failed during boot.<br/>Your GPU may not support Vulkan 1.1, or you do not have the latest graphics driver. - - + + Current emulation speed. Values higher or lower than 100% indicate emulation is running faster or slower than a 3DS. Η ταχύτητα της προσομοίωσης. Ταχύτητες μεγαλύτερες ή μικρότερες από 100% δείχνουν ότι η προσομοίωση λειτουργεί γρηγορότερα ή πιο αργά από ένα 3DS αντίστοιχα. - - + + How many frames per second the game is currently displaying. This will vary from game to game and scene to scene. Πόσες εικόνες το δευτερόλεπτο το παιχνίδι δείχνει αυτήν τη στιγμή. Ο αριθμός αυτός διαφέρει σε διαφορετικά παιχνίδια και διαφορετικά σκηνικά. - - + + Time taken to emulate a 3DS frame, not counting framelimiting or v-sync. For full-speed emulation this should be at most 16.67 ms. Ο χρόνος που χρειάζεται για την εξομοίωση ενός καρέ 3DS, χωρίς να υπολογίζεται ο περιορισμός καρέ ή το v-sync. Για εξομοίωση σε πλήρη ταχύτητα, αυτό θα πρέπει να είναι το πολύ 16.67 ms. - + Clear Recent Files Απαλοιφή πρόσφατων αρχείων - + &Continue - + &Pause - + Update Available Διαθέσιμη ενημέρωση - + An update is available. Would you like to install it now? Υπάρχει μια διαθέσιμη ενημέρωση. Θέλετε να την εγκαταστήσετε τώρα; - + No Update Found Δεν βρέθηκε ενημέρωση - + No update is found. Δεν βρέθηκε ενημέρωση. - + Citra is running a game TRANSLATORS: This string is shown to the user to explain why Citra needs to prevent the computer from sleeping - - + + Invalid ROM Format Μη έγκυρη μορφή ROM - - + + Your ROM format is not supported.<br/>Please follow the guides to redump your <a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>game cartridges</a> or <a href='https://citra-emu.org/wiki/dumping-installed-titles/'>installed titles</a>. Η μορφή της ROM σας δεν υποστηρίζεται.<br/>Παρακαλώ ακολουθήστε τους οδηγούς για να κάνετε εκ νέου αποτύπωση των <a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>κασετών</a> ή των <a href='https://citra-emu.org/wiki/dumping-installed-titles/'>εγκατεστημένων τίτλων</a> σας. - + ROM Corrupted Κατεστραμμένη ROM - + Your ROM is corrupted. <br/>Please follow the guides to redump your <a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>game cartridges</a> or <a href='https://citra-emu.org/wiki/dumping-installed-titles/'>installed titles</a>. Η ROM σας είναι κατεστραμμένη. <br/>Παρακαλώ ακολουθήστε τους οδηγούς για να κάνετε εκ νέου αποτύπωση των <a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>κασετών</a> ή των <a href='https://citra-emu.org/wiki/dumping-installed-titles/'>εγκατεστημένων τίτλων</a> σας. - + ROM Encrypted Κρυπτογραφημένη ROM - + Your ROM is encrypted. <br/>Please follow the guides to redump your <a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>game cartridges</a> or <a href='https://citra-emu.org/wiki/dumping-installed-titles/'>installed titles</a>. Η ROM σας είναι κρυπτογραφημένη. <br/>Παρακαλώ ακολουθήστε τους οδηγούς για να κάνετε εκ νέου αποτύπωση των <a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>κασετών</a> ή των <a href='https://citra-emu.org/wiki/dumping-installed-titles/'>εγκατεστημένων τίτλων</a> σας. - + Unsupported ROM - + GBA Virtual Console ROMs are not supported by Citra. - + Error while loading ROM! Σφάλμα κατά τη φόρτωση της ROM! - + An unknown error occurred. Please see the log for more details. Προέκυψε άγνωστο σφάλμα. Παρακαλώ δείτε το αρχείο καταγραφής για περισσότερες λεπτομέρειες. - + CIA must be installed before usage Το CIA πρέπει να εγκατασταθεί πριν από τη χρήση - + Before using this CIA, you must install it. Do you want to install it now? Πριν από τη χρήση αυτού του CIA, πρέπει να το εγκαταστήσετε. Θέλετε να το εγκαταστήσετε τώρα; - - + + Slot %1 Θέση %1 - + Slot %1 - %2 %3 - + Error Opening %1 Folder Σφάλμα ανοίγματος %1 φακέλου - - + + Folder does not exist! Ο φάκελος δεν υπάρχει! - + Dumping... Αποτύπωση... - - + + Cancel Ακύρωση - - - - - - - - - + + + + + + + + + Citra Citra - + Could not dump base RomFS. Refer to the log for details. Δεν ήταν δυνατή η αποτύπωση του βασικού RomFS. Ανατρέξτε στο αρχείο καταγραφής για λεπτομέρειες. - + Error Opening %1 Σφάλμα ανοίγματος του «%1» - + Select Directory Επιλογή καταλόγου - + Properties - + The game properties could not be loaded. - + 3DS Executable (%1);;All Files (*.*) %1 is an identifier for the 3DS executable file extensions. Εκτελέσιμο 3DS (%1);;Όλα τα αρχεία (*.*) - + Load File Φόρτωση αρχείου - + Load Files Φόρτωση αρχείων - + 3DS Installation File (*.CIA*) Αρχείο εγκατάστασης 3DS (*.CIA*) - + All Files (*.*) Όλα τα αρχεία (*.*) - + %1 has been installed successfully. Το «%1» εγκαταστάθηκε επιτυχώς. - + Unable to open File Δεν είναι δυνατό το άνοιγμα του αρχείου - + Could not open %1 Δεν ήταν δυνατό το άνοιγμα του «%1» - + Installation aborted Η εγκατάσταση ακυρώθηκε - + The installation of %1 was aborted. Please see the log for more details Η εγκατάσταση του «%1» ακυρώθηκε. Παρακαλώ δείτε το αρχείο καταγραφής για περισσότερες λεπτομέρειες - + Invalid File Μη έγκυρο αρχείο - + %1 is not a valid CIA Το «%1» δεν είναι έγκυρο CIA - + Encrypted File Κρυπτογραφημένο αρχείο - + %1 must be decrypted before being used with Citra. A real 3DS is required. Το «%1» πρέπει να αποκρυπτογραφηθεί πριν από τη χρήση του με το Citra. Απαιτείται μια συσκευή 3DS. - + Unable to find File - + Could not find %1 - + Uninstalling '%1'... - + Failed to uninstall '%1'. - + Successfully uninstalled '%1'. - + File not found Το αρχείο δεν βρέθηκε - + File "%1" not found Το αρχείο «%1» δεν βρέθηκε - + Missing Citra Account Απουσία λογαριασμού Citra - + You must link your Citra account to submit test cases.<br/>Go to Emulation &gt; Configure... &gt; Web to do so. Πρέπει να συνδέσετε τον λογαριασμό Citra σας για να υποβάλετε δοκιμαστικές περιπτώσεις.<br/>Μεταβείτε στην Εξομοίωση &gt; Διαμόρφωση... &gt; Διαδίκτυο. - + Savestates - + Warning: Savestates are NOT a replacement for in-game saves, and are not meant to be reliable. Use at your own risk! - - - + + + Error opening amiibo data file - + A tag is already in use. - + Game is not looking for amiibos. - + Amiibo File (%1);; All Files (*.*) Αρχείο Amiibo (%1);; Όλα τα αρχεία (*.*) - + Load Amiibo Φόρτωση Amiibo - + Unable to open amiibo file "%1" for reading. - + Record Movie Εγγραφή βίντεο - + Movie recording cancelled. Η εγγραφή βίντεο ακυρώθηκε. - - + + Movie Saved Το βίντεο αποθηκεύτηκε - - + + The movie is successfully saved. Το βίντεο αποθηκεύτηκε επιτυχώς. - + Invalid Screenshot Directory - + Cannot create specified screenshot directory. Screenshot path is set back to its default value. - + Could not load video dumper - + FFmpeg could not be loaded. Make sure you have a compatible version installed. To install FFmpeg to Citra, press Open and select your FFmpeg directory. @@ -4315,158 +4315,158 @@ To view a guide on how to install FFmpeg, press Help. - + Select FFmpeg Directory - + The provided FFmpeg directory is missing %1. Please make sure the correct directory was selected. - + FFmpeg has been sucessfully installed. - + Installation of FFmpeg failed. Check the log file for details. - + Could not start video dumping.<br>Refer to the log for details. Δεν ήταν δυνατή η εκκίνηση της αποτύπωσης βίντεο. <br>Ανατρέξτε στο αρχείο καταγραφής για λεπτομέρειες. - + Recording %1 Εγγραφή %1 - + Playing %1 / %2 Αναπαραγωγή %1 / %2 - + Movie Finished Το βίντεο τελείωσε - + Speed: %1% Ταχύτητα: %1% - + Speed: %1% / %2% Ταχύτητα: %1% / %2% - + Game: %1 FPS Παιχνίδι: %1 FPS - + Frame: %1 ms Καρέ: %1 ms - + VOLUME: MUTE - + VOLUME: %1% Volume percentage (e.g. 50%) - + %1 is missing. Please <a href='https://citra-emu.org/wiki/dumping-system-archives-and-the-shared-fonts-from-a-3ds-console/'>dump your system archives</a>.<br/>Continuing emulation may result in crashes and bugs. %1 απουσιάζει. Παρακαλώ <a href='https://citra-emu.org/wiki/dumping-system-archives-and-the-shared-fonts-from-a-3ds-console/'>αποτυπώστε τα αρχεία συστήματός σας</a>.<br/>Η συνέχιση της εξομοίωσης ενδέχεται να οδηγήσει σε καταρρεύσεις και σφάλματα. - + A system archive Ένα αρχείο συστήματος - + System Archive Not Found Δεν βρέθηκε αρχείο συστήματος - + System Archive Missing Απουσία αρχείου συστήματος - + Save/load Error Σφάλμα αποθήκευσης/φόρτωσης - + Fatal Error Κρίσιμο σφάλμα - + A fatal error occurred. <a href='https://community.citra-emu.org/t/how-to-upload-the-log-file/296'>Check the log</a> for details.<br/>Continuing emulation may result in crashes and bugs. Προέκυψε κρίσιμο σφάλμα. <a href='https://community.citra-emu.org/t/how-to-upload-the-log-file/296'>Ελέγξτε το αρχείο καταγραφής</a> για λεπτομέρειες.<br/>Η συνέχιση της εξομοίωσης ενδέχεται να οδηγήσει σε καταρρεύσεις και σφάλματα. - + Fatal Error encountered Προέκυψε κρίσιμο σφάλμα - + Continue Συνέχεια - + Quit Game - + OK - + Would you like to exit now? Θέλετε να κλείσετε το πρόγραμμα τώρα; - + The game is still running. Would you like to stop emulation? Το παιχνίδι βρίσκεται ακόμα σε λειτουργία. Θέλετε να διακόψετε την εξομοίωση; - + Playback Completed Η αναπαραγωγή ολοκληρώθηκε - + Movie playback completed. Η αναπαραγωγή βίντεο ολοκληρώθηκε. - + Primary Window - + Secondary Window @@ -4474,22 +4474,22 @@ To view a guide on how to install FFmpeg, press Help. GPUCommandListModel - + Command Name Όνομα εντολής - + Register Καταχωρητής - + Mask Μάσκα - + New Value Νέα τιμή @@ -4497,23 +4497,23 @@ To view a guide on how to install FFmpeg, press Help. GPUCommandListWidget - + Pica Command List Λίστα εντολών Pica - - + + Start Tracing Έναρξη ιχνηλάτησης - + Copy All Αντιγραφή όλων - + Finish Tracing Τέλος ιχνηλάτησης @@ -4521,7 +4521,7 @@ To view a guide on how to install FFmpeg, press Help. GPUCommandStreamWidget - + Graphics Debugger Έλεγχος σφαλμάτων γραφικών @@ -4529,42 +4529,42 @@ To view a guide on how to install FFmpeg, press Help. GRenderWindow - + OpenGL not available! - + OpenGL shared contexts are not supported. - + Error while initializing OpenGL! - + Your GPU may not support OpenGL, or you do not have the latest graphics driver. - + Error while initializing OpenGL 4.3! - + Your GPU may not support OpenGL 4.3, or you do not have the latest graphics driver.<br><br>GL Renderer:<br>%1 - + Error while initializing OpenGL ES 3.2! - + Your GPU may not support OpenGL ES 3.2, or you do not have the latest graphics driver.<br><br>GL Renderer:<br>%1 @@ -4572,193 +4572,193 @@ To view a guide on how to install FFmpeg, press Help. GameList - - + + Compatibility Συμβατότητα - - + + Region Περιοχή - - + + File type Τύπος αρχείου - - + + Size Μέγεθος - + Open Save Data Location Άνοιγμα τοποθεσίας αποθήκευσης δεδομένων - + Open Extra Data Location Άνοιγμα τοποθεσίας επιπλέον δεδομένων - + Open Application Location Άνοιγμα τοποθεσίας εφαρμογής - + Open Update Data Location Άνοιγμα τοποθεσίας δεδομένων ενημερώσεων - + Open DLC Data Location - + Open Texture Dump Location Άνοιγμα τοποθεσίας αποτύπωσης υφής - + Open Custom Texture Location Άνοιγμα προσαρμοσμένης τοποθεσίας υφής - + Open Mods Location Άνοιγμα τοποθεσίας τροποποιήσεων - + Dump RomFS Αποτύπωση RomFS - + Disk Shader Cache - + Open Shader Cache Location - + Delete OpenGL Shader Cache - + Uninstall - + Everything - + Game - + Update - + DLC - + Navigate to GameDB entry Πλοήγηση στην καταχώρηση GameDB - + Properties - - - - + + + + Citra - + Are you sure you want to completely uninstall '%1'? This will delete the game if installed, as well as any installed updates or DLC. - - + + %1 (Update) - - + + %1 (DLC) - + Are you sure you want to uninstall '%1'? - + Are you sure you want to uninstall the update for '%1'? - + Are you sure you want to uninstall all DLC for '%1'? - + Scan Subfolders Σάρωση υποφακέλων - + Remove Game Directory Αφαίρεση καταλόγου παιχνιδιού - + Move Up - + Move Down - + Open Directory Location Άνοιγμα τοποθεσίας καταλόγου - + Name Όνομα @@ -4766,82 +4766,82 @@ This will delete the game if installed, as well as any installed updates or DLC. GameListItemCompat - + Perfect Τέλειο - + Game functions flawless with no audio or graphical glitches, all tested functionality works as intended without any workarounds needed. Το παιχνίδι λειτουργεί άψογα χωρίς προβλήματα στον ήχο ή τα γραφικά. Όλα λειτουργούν σωστά χωρίς να απαιτούνται μέθοδοι παράκαμψης προβλημάτων. - + Great Πολύ καλή - + Game functions with minor graphical or audio glitches and is playable from start to finish. May require some workarounds. Το παιχνίδι εμφανίζει μικρά προβλήματα γραφικών ή ήχου και είναι λειτουργικό από την αρχή έως το τέλος. Ενδέχεται να χρειαστούν μερικές προσωρινές λύσεις. - + Okay Εντάξει - + Game functions with major graphical or audio glitches, but game is playable from start to finish with workarounds. Το παιχνίδι εμφανίζει μεγάλα προβλήματα γραφικών ή ήχου, αλλά είναι λειτουργικό από την αρχή έως το τέλος με προσωρινές λύσεις. - + Bad Κακή - + Game functions, but with major graphical or audio glitches. Unable to progress in specific areas due to glitches even with workarounds. Το παιχνίδι λειτουργεί, αλλά με μεγάλα προβλήματα γραφικών ή ήχου. Δεν είναι δυνατή η συνέχεια σε συγκεκριμένες περιοχές λόγω των προβλημάτων, ακόμα και με προσωρινές λύσεις. - + Intro/Menu Εκκίνηση/Μενού - + Game is completely unplayable due to major graphical or audio glitches. Unable to progress past the Start Screen. Το παιχνίδι δεν λειτουργεί καθόλου λόγω των μεγάλων προβλημάτων γραφικών ή ήχου. Δεν είναι δυνατή η συνέχεια πέρα από την οθόνη εκκίνησης. - + Won't Boot Δεν εκκινείται - + The game crashes when attempting to startup. Το παιχνίδι καταρρέει κατά την απόπειρα εκκίνησης. - + Not Tested Δεν έχει δοκιμαστεί - + The game has not yet been tested. Το παιχνίδι δεν έχει δοκιμαστεί ακόμα. @@ -4849,7 +4849,7 @@ Screen. GameListPlaceholder - + Double-click to add a new folder to the game list Κάντε διπλό κλικ για να προσθέσετε έναν νέο φάκελο στη λίστα παιχνιδιών @@ -4857,27 +4857,27 @@ Screen. GameListSearchField - + of από - + result αποτέλεσμα - + results αποτελέσματα - + Filter: Φίλτρο: - + Enter pattern to filter Εισαγάγετε μοτίβο για φιλτράρισμα @@ -4885,47 +4885,47 @@ Screen. GameRegion - + Japan Ιαπωνία - + North America Βόρεια Αμερική - + Europe Ευρώπη - + Australia Αυστραλία - + China Κίνα - + Korea Κορέα - + Taiwan Ταϊβάν - + Invalid region Μη έγκυρη περιοχή - + Region free Χωρίς περιορισμό περιοχής @@ -4933,23 +4933,23 @@ Screen. GraphicsBreakPointsWidget - + Pica Breakpoints Σημεία διακοπής Pica - - + + Emulation running Εξομοίωση σε εξέλιξη - + Resume Συνέχιση - + Emulation halted at breakpoint Η εξομοίωση διακόπηκε στο σημείο διακοπής @@ -4957,146 +4957,146 @@ Screen. GraphicsSurfaceWidget - + Pica Surface Viewer Pica Surface Viewer - + Color Buffer Ενδιάμεση μνήμη χρωμάτων - + Depth Buffer Ενδιάμεση μνήμη βάθους - + Stencil Buffer Ενδιάμεση μνήμη αποτύπωσης - + Texture 0 Υφή 0 - + Texture 1 Υφή 1 - + Texture 2 Υφή 2 - + Custom Προσαρμογή - + Unknown Άγνωστο - + Save Αποθήκευση - + Source: Πηγή: - + Physical Address: Φυσική διεύθυνση: - + Width: Πλάτος: - + Height: Ύψος: - + Format: Μορφή: - + X: X: - + Y: Y: - + Pixel out of bounds Εικονοστοιχείο εκτός ορίων - + (unable to access pixel data) (αδυναμία πρόσβασης στα δεδομένα pixel) - + (invalid surface address) (μη έγκυρη διεύθυνση επιφάνειας) - + (unknown surface format) (άγνωστη μορφή επιφάνειας) - + Portable Network Graphic (*.png) Portable Network Graphic (*.png) - + Binary data (*.bin) Δυαδικά δεδομένα (*.bin) - + Save Surface Αποθήκευση επιφάνειας - - - - + + + + Error Σφάλμα - - + + Failed to open file '%1' Αποτυχία ανοίγματος αρχείου «%1» - + Failed to save surface data to file '%1' Αποτυχία αποθήκευσης δεδομένων επιφάνειας στο αρχείο «%1» - + Failed to completely write surface data to file. The saved data will likely be corrupt. Αποτυχία πλήρους εγγραφής δεδομένων επιφάνειας στο αρχείο. Τα αποθηκευμένα δεδομένα θα είναι κατά πάσα πιθανότητα κατεστραμμένα. @@ -5104,42 +5104,42 @@ Screen. GraphicsTracingWidget - + CiTrace Recorder Εγγραφή CiTrace - + Start Recording Έναρξη εγγραφής - + Stop and Save Διακοπή και αποθήκευση - + Abort Recording Ακύρωση εγγραφής - + Save CiTrace Αποθήκευση CiTrace - + CiTrace File (*.ctf) Αρχείο CiTrace (*.ctf) - + CiTracing still active Το CiTracing είναι ακόμα ενεργό - + A CiTrace is still being recorded. Do you want to save it? If not, all recorded data will be discarded. Γίνεται ακόμα εγγραφή ενός CiTrace. Θέλετε να το αποθηκεύσετε; Αν όχι, όλα τα εγγεγραμμένα δεδομένα θα απορριφθούν. @@ -5147,17 +5147,17 @@ Screen. GraphicsVertexShaderModel - + Offset Μετατόπιση - + Raw Ακατέργαστο - + Disassembly Αποσυναρμολόγηση @@ -5165,127 +5165,127 @@ Screen. GraphicsVertexShaderWidget - + Save Shader Dump Αποθήκευση αποτύπωσης shader - + Shader Binary (*.shbin) Δυαδικό shader (*.shbin) - + Pica Vertex Shader Pica Vertex Shader - + (data only available at vertex shader invocation breakpoints) (τα δεδομένα είναι διαθέσιμα μόνο σε σημεία διακοπής επίκλησης vertex shader) - + Dump Αποτύπωση - + Input Data Δεδομένα εισόδου - + Attribute %1 Ιδιότητα «%1» - + Cycle Index: Ευρετήριο κύκλου: - + SRC1: %1, %2, %3, %4 SRC1: %1, %2, %3, %4 - + SRC2: %1, %2, %3, %4 SRC2: %1, %2, %3, %4 - + SRC3: %1, %2, %3, %4 SRC3: %1, %2, %3, %4 - + DEST_IN: %1, %2, %3, %4 DEST_IN: %1, %2, %3, %4 - + DEST_OUT: %1, %2, %3, %4 DEST_OUT: %1, %2, %3, %4 - + Address Registers: %1, %2 Καταχωρητές διευθύνσεων: %1, %2 - + Compare Result: %1, %2 Σύγκριση αποτελέσματος: %1, %2 - + Static Condition: %1 Στατική συνθήκη: %1 - + Dynamic Conditions: %1, %2 Δυναμικές συνθήκες: %1, %2 - + Loop Parameters: %1 (repeats), %2 (initializer), %3 (increment), %4 Παράμετροι βρόχου: %1 (επαναλήψεις), %2 (αρχικοποίηση), %3 (αύξηση), %4 - + Instruction offset: 0x%1 Μετατόπιση οδηγιών: 0x%1 - + -> 0x%2 -> 0x%2 - + (last instruction) (τελευταία οδηγία) @@ -5293,67 +5293,67 @@ Screen. HostRoom - + Create Room Δημιουργία δωματίου - + Room Name Όνομα δωματίου - + Preferred Game Προτιμώμενο παιχνίδι - + Max Players Μέγιστος αριθμός παικτών - + Username Όνομα χρήστη - + (Leave blank for open game) (Αφήστε το κενό για ανοικτό παιχνίδι) - + Password Κωδικός πρόσβασης - + Port Θύρα: - + Room Description Περιγραφή δωματίου - + Load Previous Ban List Φόρτωση προηγούμενης λίστας αποκλεισμού - + Public Δημόσιο - + Unlisted Μη καταχωρημένο - + Host Room Καταχώρηση δωματίου @@ -5361,12 +5361,12 @@ Screen. HostRoomWindow - + Error Σφάλμα - + Failed to announce the room to the public lobby. In order to host a room publicly, you must have a valid Citra account configured in Emulation -> Configure -> Web. If you do not want to publish a room in the public lobby, then select Unlisted instead. Debug Message: Αποτυχία αναγγελίας του δωματίου στο δημόσιο λόμπι. Για να φιλοξενηθεί ένα δωμάτιο δημόσια, πρέπει να έχετε ρυθμίσει έναν έγκυρο λογαριασμό Citra στην Εξομοίωση -> Διαμόρφωση -> Διαδίκτυο. Αν δεν θέλετε να δημοσιεύσετε ένα δωμάτιο στο δημόσιο λόμπι, επιλέξτε «Μη καταχωρημένο». @@ -5376,47 +5376,47 @@ Debug Message: IPCRecorder - + IPC Recorder Εγγραφή IPC - + Enable Recording Ενεργοποίηση εγγραφής - + Filter: Φίλτρο: - + Leave empty to disable filtering Αφήστε το κενό για να απενεργοποιήσετε το φιλτράρισμα - + # # - + Status Κατάσταση - + Service Υπηρεσία - + Function Λειτουργία - + Clear Απαλοιφή @@ -5424,47 +5424,47 @@ Debug Message: IPCRecorderWidget - + Invalid Μη έγκυρο - + Sent Απεστάλη - + Handling Χειρισμός - + Success Επιτυχία - + Error Σφάλμα - + HLE Unimplemented Μη υλοποιημένο HLE - + HLE HLE - + LLE LLE - + Unknown Άγνωστο @@ -5472,7 +5472,7 @@ Debug Message: LLEServiceModulesWidget - + Toggle LLE Service Modules (Απ)ενεργοποίηση μονάδων υπηρεσίας LLE @@ -5480,54 +5480,54 @@ Debug Message: LoadingScreen - + Loading Shaders 387 / 1628 Φόρτωση shader 387 / 1628 - + Loading Shaders %v out of %m Φόρτωση shader %v από %m - + Estimated Time 5m 4s Εκτιμώμενος χρόνος: 5λ 4δ - + Loading... Φόρτωση... - + Preloading Textures %1 / %2 - + Preparing Shaders %1 / %2 Προετοιμασία shader %1 / %2 - + Loading Shaders %1 / %2 Φόρτωση shader %1 / %2 - + Launching... Εκκίνηση... - + Now Loading %1 Γίνεται φόρτωση %1 - + Estimated Time %1 Εκτιμώμενος χρόνος: %1 @@ -5535,83 +5535,83 @@ Debug Message: Lobby - + Public Room Browser Περιήγηση δημόσιων δωματίων - - + + Nickname Ψευδώνυμο - + Filters Φίλτρα - + Search Αναζήτηση - + Games I Own Δικά μου παιχνίδια - + Hide Empty Rooms - + Hide Full Rooms Απόκρυψη πλήρων δωματίων - + Refresh Lobby Ανανέωση λόμπι - + Password Required to Join Χρειάζεται κωδικός για να συνδεθείτε. - + Password: Κωδικός πρόσβασης: - + Room Name Όνομα δωματίου - + Preferred Game Προτιμώμενο παιχνίδι - + Host Διαχειριστής - + Players Παίκτες - + Refreshing Ανανέωση - + Refresh List Ανανέωση λίστας @@ -5619,362 +5619,362 @@ Debug Message: MainWindow - + Citra Citra - + &File &Αρχείο - + Boot Home Menu - + Recent Files Πρόσφατα αρχεία - + Amiibo Amiibo - + &Emulation Εξομοί&ωση - + Save State Αποθήκευση κατάστασης - + Load State Φόρτωση κατάστασης - + &View Προ&βολή - + Debugging Έλεγχος σφαλμάτων - + Screen Layout Διάταξη οθόνης - + Multiplayer Multiplayer - + Tools Εργαλεία - + Movie Βίντεο - + Frame Advance Επίσπευση καρέ - + &Help Βοή&θεια - + Load File... Φόρτωση αρχείου... - + Install CIA... Εγκατάσταση CIA... - + JPN - + USA - + EUR - + AUS - + CHN - + KOR - + TWN - + E&xit Έ&ξοδος - + &Pause &Παύση - + &Stop &Διακοπή - + Save Αποθήκευση - + Load Φόρτωση - + FAQ Συχνές ερωτήσεις - + About Citra Σχετικά με το Citra - + Single Window Mode Λειτουργία μονού παραθύρου - + Save to Oldest Slot Αποθήκευση στην παλαιότερη θέση - + Load from Newest Slot Φόρτωση από την νεότερη θέση - + Configure... Διαμόρφωση... - + Display Dock Widget Headers Προβολή κεφαλίδων widget - + Show Filter Bar Εμφάνιση γραμμής φίλτρων - + Show Status Bar Εμφάνιση γραμμής κατάστασης - + Create Pica Surface Viewer Δημιουργία Pica Surface Viewer - + Record... Εγγραφή... - + Play... Αναπαραγωγή... - + Close Κλείσιμο - + Save without Closing Αποθήκευση χωρίς κλείσιμο - + Read-Only Mode Λειτουργία «Μόνο για ανάγνωση» - + Enable Frame Advancing Ενεργοποίηση επίσπευσης καρέ - + Advance Frame Επίσπευση καρέ - + Capture Screenshot Λήψη στιγμιότυπου - + Dump Video Αποτύπωση βίντεο - + Browse Public Game Lobby Περιήγηση στο λόμπι δημόσιων παιχνιδιών - + Create Room Δημιουργία δωματίου - + Leave Room Αποχώρηση από δωμάτιο - + Direct Connect to Room Άμεση σύνδεση σε δωμάτιο - + Show Current Room Εμφάνιση τρέχοντος δωματίου - + Fullscreen Πλήρης οθόνη - + Modify Citra Install Τροποποίηση εγκατάστασης Citra - + Opens the maintenance tool to modify your Citra installation Ανοίγει το εργαλείο συντήρησης για την τροποποίηση της εγκατάστασής σας για το Citra - + Default Προεπιλογή - + Single Screen Μονή οθόνη - + Large Screen Μεγάλη οθόνη - + Hybrid Screen - + Side by Side Παραπλεύρως - + Separate Windows - + Swap Screens Εναλλαγή οθονών - + Rotate Upright Κατακόρυφη περιστροφή - + Check for Updates Έλεγχος για ενημερώσεις - + Report Compatibility Αναφορά συμβατότητας - + Restart Επανεκκίνηση - + Load... Φόρτωση... - + Remove Αφαίρεση - + Open Citra Folder Άνοιγμα φακέλου Citra - + Configure Current Game... @@ -5982,7 +5982,7 @@ Debug Message: MicroProfileDialog - + MicroProfile MicroProfile @@ -5990,48 +5990,48 @@ Debug Message: ModerationDialog - + Moderation Συντονισμός - + Ban List Λίστα αποκλεισμού - - + + Refreshing Ανανέωση - + Unban Άρση αποκλεισμού - + Subject Θέμα - + Type Τύπος - + Forum Username Όνομα χρήστη φόρουμ - + IP Address Διεύθυνση IP - + Refresh Ανανέωση @@ -6039,91 +6039,91 @@ Debug Message: MoviePlayDialog - - + + Play Movie Αναπαραγωγή βίντεο - + File: Αρχείο: - + ... ... - + Info Πληροφορίες - + Game: Παιχνίδι: - + Author: Δημιουργός: - + Rerecord Count: Πλήθος επανεγγραφών: - + Length: Διάρκεια: - + Current running game will be stopped. Το τρέχον παιχνίδι θα διακοπεί. - + <br>Current recording will be discarded. <br>Η τρέχουσα εγγραφή θα απορριφθεί. - + Citra TAS Movie (*.ctm) Βίντεο Citra TAS (*.ctm) - + Invalid movie file. Μη έγκυρο αρχείο βίντεο. - + Revision dismatch, playback may desync. Αναντιστοιχία αναθεώρησης, η αναπαραγωγή ενδέχεται να αποσυγχρονιστεί. - + Indicated length is incorrect, file may be corrupted. Το υποδειγμένο μήκος δεν είναι σωστό, το αρχείο ενδέχεται να έχει καταστραφεί. - - - - + + + + (unknown) (άγνωστο) - + Game used in this movie is not in game list. Το παιχνίδι που χρησιμοποιείται στο βίντεο δεν βρίσκεται στη λίστα παιχνιδιών. - + (>1 day) (>1 ημέρα) @@ -6131,43 +6131,43 @@ Debug Message: MovieRecordDialog - - + + Record Movie Εγγραφή βίντεο - + File: Αρχείο: - + ... ... - + Author: Δημιουργός: - + Current running game will be restarted. Το τρέχον παιχνίδι θα επανεκκινηθεί. - + <br>Current recording will be discarded. <br>Η τρέχουσα εγγραφή θα απορριφθεί. - + Recording will start once you boot a game. Η εγγραφή θα ξεκινήσει μόλις εκκινήσετε ένα παιχνίδι. - + Citra TAS Movie (*.ctm) Βίντεο Citra TAS (*.ctm) @@ -6175,44 +6175,44 @@ Debug Message: MultiplayerState - - + + Current connection status Τρέχουσα κατάσταση σύνδεσης - - + + Not Connected. Click here to find a room! Εκτός σύνδεσης. Κάντε κλικ εδώ για να βρείτε ένα δωμάτιο! - - - + + + Connected Σε σύνδεση - - + + Not Connected Εκτός σύνδεσης - + Error Σφάλμα - + Failed to update the room information. Please check your Internet connection and try hosting the room again. Debug Message: Αποτυχία ενημέρωσης πληροφοριών δωματίου. Παρακαλώ ελέγξτε τη σύνδεση διαδικτύου σας και δοκιμάστε να δημιουργήσετε ξανά το δωμάτιο. Μήνυμα ελέγχου σφαλμάτων: - + New Messages Received Ελήφθησαν νέα μηνύματα @@ -6220,22 +6220,22 @@ Debug Message: NetworkMessage - + Leave Room Αποχώρηση από δωμάτιο - + You are about to close the room. Any network connections will be closed. Πρόκειται να κλείσετε το δωμάτιο. Θα κλείσουν όλες οι συνδέσεις δικτύου. - + Disconnect Αποσύνδεση - + You are about to leave the room. Any network connections will be closed. Πρόκειται να αποχωρήσετε από το δωμάτιο. Θα κλείσουν όλες οι συνδέσεις δικτύου. @@ -6243,110 +6243,110 @@ Debug Message: NetworkMessage::ErrorManager - + Username is not valid. Must be 4 to 20 alphanumeric characters. - + Room name is not valid. Must be 4 to 20 alphanumeric characters. - + Username is already in use or not valid. Please choose another. - + IP is not a valid IPv4 address. - + Port must be a number between 0 to 65535. - + You must choose a Preferred Game to host a room. If you do not have any games in your game list yet, add a game folder by clicking on the plus icon in the game list. - + Unable to find an internet connection. Check your internet settings. - + Unable to connect to the host. Verify that the connection settings are correct. If you still cannot connect, contact the room host and verify that the host is properly configured with the external port forwarded. - + Unable to connect to the room because it is already full. - + Creating a room failed. Please retry. Restarting Citra might be necessary. - + The host of the room has banned you. Speak with the host to unban you or try a different room. - + Version mismatch! Please update to the latest version of Citra. If the problem persists, contact the room host and ask them to update the server. - + Incorrect password. - + An unknown error occurred. If this error continues to occur, please open an issue - + Connection to room lost. Try to reconnect. - + You have been kicked by the room host. - + MAC address is already in use. Please choose another. - + Your Console ID conflicted with someone else's in the room. Please go to Emulation > Configure > System to regenerate your Console ID. - + You do not have enough permission to perform this action. - + The user you are trying to kick/ban could not be found. They may have left the room. - + Error Σφάλμα @@ -6354,37 +6354,37 @@ They may have left the room. OptionSetDialog - + Options - + Unset - + unknown - + %1 &lt;%2> %3 - + Range: %1 - %2 - + custom - + %1 (0x%2) %3 @@ -6392,32 +6392,32 @@ They may have left the room. OptionsDialog - + Options - + Double click to see the description and change the values of the options. - + Specific - + Generic - + Name - + Value @@ -6425,157 +6425,157 @@ They may have left the room. QObject - + Supported image files (%1) Υποστηριζόμενα αρχεία εικόνων (%1) - + Open File Άνοιγμα αρχείου - + Error Σφάλμα - + Couldn't load the camera Δεν ήταν δυνατή η φόρτωση της κάμερας - + Couldn't load %1 Δεν ήταν δυνατή η φόρτωση του «%1» - - + + Shift Shift - - + + Ctrl Ctrl - - + + Alt Alt - - - + + + [not set] [δεν έχει οριστεί] - - + + Hat %1 %2 Περιστροφή %1 %2 - - - - - - + + + + + + Axis %1%2 Άξονας %1%2 - - + + Button %1 Κουμπί %1 - + GC Axis %1%2 Άξονας GC %1%2 - + GC Button %1 Κουμπί GC %1 - - - + + + [unknown] [άγνωστο] - + [unused] [δεν χρησιμοποιείται] - + auto - + true - + false - - + + none - + %1 (0x%2) - + Invalid region Μη έγκυρη περιοχή - + Installed Titles Εγκατεστημένοι τίτλοι - + System Titles Τίτλοι συστήματος - + Add New Game Directory Προσθήκη νέου καταλόγου παιχνιδιού - + Not playing a game Δεν παίζει παιχνίδι - + %1 is not playing a game Ο/Η %1 δεν παίζει παιχνίδι - + %1 is playing %2 Ο/Η %1 παίζει %2 @@ -6583,7 +6583,7 @@ They may have left the room. QtKeyboard - + Software Keyboard Εικονικό πληκτρολόγιο @@ -6591,27 +6591,27 @@ They may have left the room. QtKeyboardDialog - + Text length is not correct (should be %1 characters) Το μήκος κειμένου δεν είναι σωστό (πρέπει να αποτελείται από %1 χαρακτήρες) - + Text is too long (should be no more than %1 characters) Το κείμενο είναι πολύ μεγάλο (πρέπει να περιέχει μέχρι %1 χαρακτήρες) - + Blank input is not allowed Δεν επιτρέπεται κενή είσοδος - + Empty input is not allowed Δεν επιτρέπεται κενή είσοδος - + Validation error Σφάλμα επαλήθευσης @@ -6619,12 +6619,12 @@ They may have left the room. QtMiiSelectorDialog - + Mii Selector Επιλογή Mii - + Standard Mii Τυπικό Mii @@ -6632,95 +6632,95 @@ They may have left the room. RecordDialog - + View Record Προβολή εγγραφής - + Client Πελάτης - - + + Process: Διεργασία: - - + + Thread: Νήμα: - - + + Session: Συνεδρία: - + Server Διακομιστής - + General Γενικά - + Client Port: Θύρα πελάτη: - + Service: Υπηρεσία: - + Function: Λειτουργία: - + Command Buffer Ενδιάμεση μνήμη εντολής - + Select: Επιλογή: - + Request Untranslated Μη μεταφρασμένο αίτημα - + Request Translated Μεταφρασμένο αίτημα - + Reply Untranslated Μη μεταφρασμένη απάντηση - + Reply Translated Μεταφρασμένη απάντηση - + OK OK - + null κενό @@ -6728,37 +6728,37 @@ They may have left the room. RegistersWidget - + Registers Καταχωρητές - + VFP Registers Καταχωρητές VFP - + VFP System Registers Καταχωρητές συστήματος VFP - + Vector Length Μήκος διανύσματος - + Vector Stride Βήμα διανύσματος - + Rounding Mode Λειτουργία προσέγγισης - + Vector Iteration Count Πλήθος επαναλήψεων διανύσματος @@ -6766,7 +6766,7 @@ They may have left the room. SequenceDialog - + Enter a hotkey Εισαγάγετε συντόμευση πληκτρολογίου @@ -6774,7 +6774,7 @@ They may have left the room. WaitTreeEvent - + reset type = %1 επαναφορά τύπου = %1 @@ -6782,12 +6782,12 @@ They may have left the room. WaitTreeMutex - + locked %1 times by thread: κλειδώθηκε %1 φορές από νήμα: - + free ελεύθερο @@ -6795,7 +6795,7 @@ They may have left the room. WaitTreeMutexList - + holding mutexes διατήρηση αμοιβαίων αποκλεισμών @@ -6803,12 +6803,12 @@ They may have left the room. WaitTreeObjectList - + waiting for all objects αναμονή για όλα τα αντικείμενα - + waiting for one of the following objects αναμονή για ένα από τα εξής αντικείμενα @@ -6816,12 +6816,12 @@ They may have left the room. WaitTreeSemaphore - + available count = %1 διαθέσιμο πλήθος = %1 - + max count = %1 μέγιστο πλήθος = %1 @@ -6829,112 +6829,112 @@ They may have left the room. WaitTreeThread - + running εκτελείται - + ready έτοιμο - + waiting for address 0x%1 αναμονή για διεύθυνση 0x%1 - + sleeping σε αδράνεια - + waiting for IPC response αναμονή για απόκριση IPC - + waiting for objects αναμονή για αντικείμενα - + waiting for HLE return αναμονή για επιστροφή HLE - + dormant αδρανές - + dead νεκρό - + PC = 0x%1 LR = 0x%2 PC = 0x%1 LR = 0x%2 - + default προεπιλογή - + all όλα - + AppCore AppCore - + SysCore SysCore - + Unknown processor %1 Άγνωστος επεξεργαστής %1 - + object id = %1 id αντικειμένου = %1 - + processor = %1 επεξεργαστής = %1 - + thread id = %1 id νήματος = %1 - + process = %1 (%2) διεργασία = %1 (%2) - + priority = %1(current) / %2(normal) προτεραιότητα = %1(τρέχουσα) / %2(κανονική) - + last running ticks = %1 τελευταίοι έλεγχοι εκτέλεσης = %1 - + not holding mutex χωρίς διατήρηση αμοιβαίων αποκλεισμών @@ -6942,7 +6942,7 @@ They may have left the room. WaitTreeThreadList - + waited by thread αναμονή από νήμα @@ -6950,17 +6950,17 @@ They may have left the room. WaitTreeTimer - + reset type = %1 επαναφορά τύπου = %1 - + initial delay = %1 αρχική καθυστέρηση = %1 - + interval delay = %1 ενδιάμεση καθυστέρηση = %1 @@ -6968,27 +6968,27 @@ They may have left the room. WaitTreeWaitObject - + [%1]%2 %3 [%1]%2 %3 - + waited by no thread χωρίς αναμονή από νήμα - + one shot μία απόπειρα - + sticky καρφιτσωμένο - + pulse παλμός @@ -6996,7 +6996,7 @@ They may have left the room. WaitTreeWidget - + Wait Tree Δένδρο αναμονής diff --git a/dist/languages/es_ES.ts b/dist/languages/es_ES.ts index e544ba4ed..815d48013 100644 --- a/dist/languages/es_ES.ts +++ b/dist/languages/es_ES.ts @@ -2,17 +2,17 @@ ARMRegisters - + ARM Registers Registros de ARM - + Register Registro - + Value Valor @@ -20,27 +20,27 @@ AboutDialog - + About Citra Acerca de Citra - - <html><head/><body><p><img src=":/icons/citra.png"/></p></body></html> - <html><head/><body><p><img src=":/icons/citra.png"/></p></body></html> + + <html><head/><body><p><img src=":/icons/lime.png"/></p></body></html> + <html><head/><body><p><img src=":/icons/lime.png"/></p></body></html> - + <html><head/><body><p><span style=" font-size:28pt;">Citra</span></p></body></html> <html><head/><body><p><span style=" font-size:28pt;">Citra</span></p></body></html> - + <html><head/><body><p>%1 | %2-%3 (%4)</p></body></html> <html><head/><body><p>%1 | %2-%3 (%4)</p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -57,12 +57,12 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">Este software no debe ser usado para jugar juegos que no tengas de manera legal.</span></p></body></html> - + <html><head/><body><p><a href="https://citra-emu.org/"><span style=" text-decoration: underline; color:#039be5;">Website</span></a> | <a href="https://community.citra-emu.org/"><span style=" text-decoration: underline; color:#039be5;">Forum</span></a> | <a href="https://github.com/citra-emu"><span style=" text-decoration: underline; color:#039be5;">Source Code</span></a> | <a href="https://github.com/citra-emu/citra/graphs/contributors"><span style=" text-decoration: underline; color:#039be5;">Contributors</span></a> | <a href="https://github.com/citra-emu/citra/blob/master/license.txt"><span style=" text-decoration: underline; color:#039be5;">License</span></a></p></body></html> <html><head/><body><p><a href="https://citra-emu.org/"><span style=" text-decoration: underline; color:#039be5;">Página web</span></a> | <a href="https://community.citra-emu.org/"><span style=" text-decoration: underline; color:#039be5;">Foro</span></a> | <a href="https://github.com/citra-emu"><span style=" text-decoration: underline; color:#039be5;">Código Fuente</span></a> | <a href="https://github.com/citra-emu/citra/graphs/contributors"><span style=" text-decoration: underline; color:#039be5;">Colaboradores</span></a> | <a href="https://github.com/citra-emu/citra/blob/master/license.txt"><span style=" text-decoration: underline; color:#039be5;">Licencia</span></a></p></body></html> - + <html><head/><body><p><span style=" font-size:7pt;">&quot;3DS&quot; is a trademark of Nintendo. Citra is not affiliated with Nintendo in any way.</span></p></body></html> <html><head/><body><p><span style=" font-size:7pt;">&quot;3DS&quot; es una marca registrada de Nintendo. Citra no está afiliada con Nintendo.</span></p></body></html> @@ -70,47 +70,47 @@ p, li { white-space: pre-wrap; } BreakPointModel - + Pica command loaded Comando de Pica cargado - + Pica command processed Comando de Pica procesado - + Incoming primitive batch Iniciando lote primitivo - + Finished primitive batch Lote primitivo terminado - + Vertex shader invocation Invocación del Sombreado de vértices - + Incoming display transfer Iniciando transferencia de pantalla - + GSP command processed Comando de GSP procesado - + Buffers swapped Buffers intercambiados - + Unknown debug context event Evento de depuración desconocido @@ -118,32 +118,32 @@ p, li { white-space: pre-wrap; } CalibrationConfigurationDialog - + Communicating with the server... Conectando con el servidor... - + Cancel Cancelar - + Touch the top left corner <br>of your touchpad. Toca la esquina de arriba a la izquierda <br>del panel táctil. - + Now touch the bottom right corner <br>of your touchpad. Ahora toca la esquina de abajo a la derecha <br>del panel táctil. - + Configuration completed! ¡Configuración completada! - + OK Aceptar @@ -151,93 +151,93 @@ p, li { white-space: pre-wrap; } ChatRoom - + Room Window Ventana de Sala - + Send Chat Message Enviar Mensaje de Chat - + Send Message Enviar Mensaje - + Members Miembros - + %1 has joined %1 se ha unido - + %1 has left %1 se ha ido - + %1 has been kicked %1 ha sido expulsado - + %1 has been banned %1 ha sido baneado - + %1 has been unbanned %1 ha sido desbaneado - + View Profile Ver Perfil - - + + Block Player Bloquear jugador - + When you block a player, you will no longer receive chat messages from them.<br><br>Are you sure you would like to block %1? Cuando bloquees a un jugador, ya no recibirás más mensajes de chat de éste.<br><br>¿Estás seguro de que quieres bloquear a %1? - + Kick Expulsar - + Ban Banear - + Kick Player Expulsar jugador - + Are you sure you would like to <b>kick</b> %1? ¿Estás seguro de querer <b>expulsar</b>a %1? - + Ban Player Banear jugador - + Are you sure you would like to <b>kick and ban</b> %1? This would ban both their forum username and their IP address. @@ -249,22 +249,22 @@ This would ban both their forum username and their IP address. ClientRoom - + Room Window Ventana de Sala - + Room Description Descripción de Sala - + Moderation... Moderación... - + Leave Room Abandonar la Sala @@ -272,17 +272,17 @@ This would ban both their forum username and their IP address. ClientRoomWindow - + Connected Conectado - + Disconnected Desconectado - + %1 (%2/%3 members) - connected %1 (%2/%3 miembros) - conectado @@ -290,108 +290,108 @@ This would ban both their forum username and their IP address. CompatDB - + Report Compatibility Informar de compatibilidad - - + + Report Game Compatibility Informar de compatibilidad de juegos - + <html><head/><body><p><span style=" font-size:10pt;">Should you choose to submit a test case to the </span><a href="https://citra-emu.org/game/"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">Citra Compatibility List</span></a><span style=" font-size:10pt;">, The following information will be collected and displayed on the site:</span></p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Hardware Information (CPU / GPU / Operating System)</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Which version of Citra you are running</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The connected Citra account</li></ul></body></html> <html><head/><body><p><span style=" font-size:10pt;">En caso de que decida enviar una prueba a </span><a href="https://citra-emu.org/game/"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">Lista de compatibilidad de Citra</span></a><span style=" font-size:10pt;">, La siguiente información será recopilada y mostrada en el sitio web:</span></p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Información del Hardware (CPU / GPU / Sistema Operativo)</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Que versión de Citra está utilizando</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">La cuenta de Citra vinculada</li></ul></body></html> - + Perfect Perfecto - + <html><head/><body><p>Game functions flawlessly with no audio or graphical glitches.</p></body></html> <html><head/><body><p>El juego funciona a la perfección sin problemas de audio o gráficos.</p></body></html> - + Great Genial - + <html><head/><body><p>Game functions with minor graphical or audio glitches and is playable from start to finish. May require some workarounds.</p></body></html> <html><head/><body><p>El juego funciona con pequeños problemas gráficos o de audio y es jugable de principio a fin. Podría requerir de soluciones temporales.</p></body></html> - + Okay Bien - + <html><head/><body><p>Game functions with major graphical or audio glitches, but game is playable from start to finish with workarounds.</p></body></html> <html><head/><body><p>El juego funciona con importantes problemas gráficos o de audio, pero el juego es jugable de principio a fin con soluciones temporales.</p></body></html> - + Bad Mal - + <html><head/><body><p>Game functions, but with major graphical or audio glitches. Unable to progress in specific areas due to glitches even with workarounds.</p></body></html> <html><head/><body><p>El juego funciona, pero con notables problemas gráficos o de audio. Es imposible avanzar en zonas específicas debido a fallos incluso con soluciones temporales.</p></body></html> - + Intro/Menu Intro/Menú - + <html><head/><body><p>Game is completely unplayable due to major graphical or audio glitches. Unable to progress past the Start Screen.</p></body></html> <html><head/><body><p>No es posible jugar al juego debido a importantes problemas gráficos o de audio. Es imposible avanzar más allá de la pantalla de inicio.</p></body></html> - + Won't Boot No inicia - + <html><head/><body><p>The game crashes when attempting to startup.</p></body></html> <html><head/><body><p>El juego se bloquea al intentar iniciarse.</p></body></html> - + <html><head/><body><p>Independent of speed or performance, how well does this game play from start to finish on this version of Citra?</p></body></html> <html><head/><body><p>Independientemente de la velocidad o el rendimiento, ¿cómo definiría su experiencia con el juego de principio a fin en esta versión de Citra?</p></body></html> - + Thank you for your submission! ¡Gracias por su colaboración! - + Submitting Enviando - + Communication error Error de comunicación - + An error occurred while sending the Testcase Ha ocurrido un error mientras se enviaba la prueba. - + Next Siguiente @@ -399,93 +399,93 @@ This would ban both their forum username and their IP address. ConfigureAudio - + Output Salida - + Emulation: Emulación: - + HLE (fast) HLE (rápido) - + LLE (accurate) LLE (preciso) - + LLE multi-core LLE multinúcleo - + Output Type Tipo de salida - + Output Device Dispositivo de salida - + This post-processing effect adjusts audio speed to match emulation speed and helps prevent audio stutter. This however increases audio latency. Este efecto de post-procesado ajusta la velocidad del audio para igualarla a la del emulador y ayuda a prevenir parones de audio, pero aumenta la latencia de éste. - + Enable audio stretching Activar extensión de audio - + Use global volume Usar volumen global - + Set volume: Establecer volumen: - + Volume: Volumen: - + 0 % 0 % - + Microphone Micrófono - + Input Type Tipo de Entrada - + Input Device Dispositivo de Entrada - - + + Auto Auto - + %1% Volume percentage (e.g. 50%) %1% @@ -494,203 +494,203 @@ This would ban both their forum username and their IP address. ConfigureCamera - + Form Formulario - + Camera Cámara - - + + Select the camera to configure Seleccione la cámara que desea configurar - + Camera to configure: Configurar la cámara: - + Front Frontal - + Rear Trasera - - + + Select the camera mode (single or double) Seleccione el modo de cámara (única o doble) - + Camera mode: Modo de cámara: - + Single (2D) Única (2D) - + Double (3D) Doble (3D) - - + + Select the position of camera to configure Seleccione la posición de la cámara que desea configurar - + Camera position: Posición de cámara: - + Left Izquierda - + Right Derecha - + Configuration Configuración - - + + Select where the image of the emulated camera comes from. It may be an image or a real camera. Selecciona el lugar de donde proviene la imagen de la cámara emulada. Puede ser una imagen o una cámara real. - + Camera Image Source: Fuente de la Imagen de la Cámara: - + Blank (blank) Vacío (nada) - + Still Image (image) Imagen Fija (imagen) - + System Camera (qt) Cámara del Sistema (qt) - + File: Archivo: - + ... ... - - + + Select the system camera to use Seleccione la cámara del sistema que será usada - + Camera: Cámara: - + <Default> <Default> - - + + Select the image flip to apply Seleccione la rotación de imagen - + Flip: Rotación: - + None Ninguna - + Horizontal Horizontal - + Vertical Vertical - + Reverse Invertida - + Select an image file every time before the camera is loaded Seleccione una imagen antes de que la cámara se ejecute - + Prompt before load Preguntar antes de cargar - + Preview Vista previa - + Resolution: 512*384 Resolución: 512*384 - + Click to preview Haga click para ver la vista previa - + Resolution: %1*%2 Resolución: %1*%2 - + Supported image files (%1) Archivos de imagen soportados (%1) - + Open File Abrir Archivo @@ -698,88 +698,88 @@ This would ban both their forum username and their IP address. ConfigureCheats - - + + Cheats Trucos - + Add Cheat Añadir Truco - + Available Cheats: Trucos Disponibles: - + Name Nombre - + Type Tipo - + Save Guardar - + Delete Eliminar - + Name: Nombre: - + Notes: Notas: - + Code: Código: - + Would you like to save the current cheat? ¿Desea guardar el truco actual? - - - + + + Save Cheat Guardar Truco - + Please enter a cheat name. Por favor, ponle un nombre al truco. - + Please enter the cheat code. Por favor, introduzca el código del truco. - + Cheat code line %1 is not valid. Would you like to ignore the error and continue? La línea del código del truco %1 no es válida. ¿Desea ignorar el error y continuar? - - + + [new cheat] [nuevo truco] @@ -787,127 +787,127 @@ Would you like to ignore the error and continue? ConfigureDebug - + Form Formulario - + GDB GDB - + Enable GDB Stub Activar Stub de GDB - + Port: Puerto: - + Logging Registro - + Global Log Filter Filtro de Registro Global - + Show Log Console (Windows Only) Mostrar Consola del Registro (Sólo Windows) - + Open Log Location Abrir Localización del Registro - + CPU CPU - + Use global clock speed Usar la velocidad del reloj global - + Set clock speed: Establecer la velocidad del reloj: - + CPU Clock Speed Velocidad de reloj de la CPU - + <html><body>Changes the emulated CPU clock frequency.<br>Underclocking can increase performance but may cause the game to freeze.<br>Overclocking may reduce in game lag but also might cause freezes</body></html> <html><body>Cambia la frecuencia de reloj de la CPU emulada.<br>Al hacer underclock, puede mejorar el rendimiento, pero también que el juego se cuelgue.<br>El overclocking podría reducir el lag del juego, pero también puede provocar cuelgues.</body></html> - + <html><head/><body><p>Enables the use of the ARM JIT compiler for emulating the 3DS CPUs. Don't disable unless for debugging purposes</p></body></html> <html><head/><body><p>Habilita el uso del compilador ARM JIT para emular las CPU 3DS. No deshabilitar a menos que sea para fines de depuración.</p></body></html> - + Enable CPU JIT Activar CPU JIT - + Enable debug renderer Activar renderizador de depuración - + Dump command buffers Volcar buffers de comandos - + Miscellaneus Miscelánea - + <html><head/><body><p>Introduces a delay to the first ever launched app thread if LLE modules are enabled, to allow them to initialize.</p></body></html> <html><head/><body><p>Introduce un atraso al hilo de la primera aplicación iniciada si los módulos LLE están activados, para permitirles su inicio.</p></body></html> - + Delay app start for LLE module initialization Atrasar el inicio de la app para la inicialización del módulo LLE - + <html><head/><body><p>CPU Clock Speed Information<br/>Underclocking can increase performance but may cause the game to freeze.<br/>Overclocking may reduce in game lag but also might cause freezes</p></body></html> <html><head/><body><p>Información de la Velocidad de reloj de la CPU<br/>Hacer un underclock puede aumentar el rendimiento, pero también provocar que se cuelgue el juego.<br/>Hacer un overclock, en cambio, puede reducir el lag en el juego, pero también puede producir cuelgues.</p></body></html> - + Validation layer not available Capa de validación no disponible - + Unable to enable debug renderer because the layer <strong>VK_LAYER_KHRONOS_validation</strong> is missing. Please install the Vulkan SDK or the appropriate package of your distribution No ha sido posible activar el renderizador de depuración porque la capa<strong>VK_LAYER_KHRONOS_validation</strong> no está. Por favor, instale el SDK de Vulkan o el paquete adecuado para tu distribución. - + Command buffer dumping not available Volcado del buffer de comandos no disponible. - + Unable to enable command buffer dumping because the layer <strong>VK_LAYER_LUNARG_api_dump</strong> is missing. Please install the Vulkan SDK or the appropriate package of your distribution No ha sido posible activar el volcado del buffer de comandos porque la capa<strong>VK_LAYER_LUNARG_api_dump</strong> no está. Por favor, instale el SDK de Vulkan o el paquete adecuado para tu distribución. @@ -915,92 +915,92 @@ Would you like to ignore the error and continue? ConfigureDialog - + Citra Configuration Configuración de Citra - - - + + + General General - - - + + + System Sistema - - + + Input Controles - - + + Hotkeys Teclas de Atajo - - + + Graphics Gráficos - - + + Enhancements Mejoras - - - + + + Audio Audio - - + + Camera Cámara - - + + Debug Depuración - - + + Storage Almacenamiento - - + + Web Web - - + + UI UI - + Controls Controles - + Advanced Avanzadas @@ -1008,278 +1008,278 @@ Would you like to ignore the error and continue? ConfigureEnhancements - + Form Formulario - + Renderer Renderizador - + Internal Resolution Resolución interna - + Auto (Window Size) Auto (Tamaño Ventana) - + Native (400x240) Nativa (400x240) - + 2x Native (800x480) 2x Nativa (800x480) - + 3x Native (1200x720) 3x Nativa (1200x720) - + 4x Native (1600x960) 4x Nativa (1600x960) - + 5x Native (2000x1200) 5x Nativa (2000x1200) - + 6x Native (2400x1440) 6x Nativa (2400x1440) - + 7x Native (2800x1680) 7x Nativa (2800x1680) - + 8x Native (3200x1920) 8x Nativa (3200x1920) - + 9x Native (3600x2160) 9x Nativa (3600x2160) - + 10x Native (4000x2400) 10x Nativa (4000x2400) - + Enable Linear Filtering Activar Filtro Linear - + Post-Processing Shader Sombreado de post-procesado - + Texture Filter Filtro de texturas - + None Ninguno - + Anime4K Anime4K - + Bicubic Bicúbico - + ScaleForce ScaleForce - + xBRZ xBRZ - + MMPX MMPX - + Stereoscopy Estereoscopia - + Stereoscopic 3D Mode Modo 3D Estereoscópico - + Off Apagado - - + + Side by Side De lado a lado - + Anaglyph Anáglifo - + Interlaced Entrelazado - + Reverse Interlaced Entrelazado inverso - + Depth Profundidad - + % % - + Eye to Render in Monoscopic Mode Ojo para renderizar en modo monoscópico - + Left Eye (default) Ojo izquierdo (predeterminado) - + Right Eye Ojo derecho - + Layout Estilo - + Screen Layout: Estilo de pantalla: - + Default Por defecto - + Single Screen Pantalla única - + Large Screen Pantalla amplia - + Separate Windows Ventanas separadas - + Hybrid Screen Pantalla Híbrida - + Swap Screens Intercambiar pantallas - + Rotate Screens Upright Rotar pantallas en vertical - + Large Screen Proportion: Proporción de pantalla grande: - + Background Color: Color de fondo: - + Utility Utilidad - + <html><head/><body><p>Replace textures with PNG files.</p><p>Textures are loaded from load/textures/[Title ID]/.</p></body></html> <html><head/><body><p>Cambia las texturas por archivos PNG.</p><p>Las texturas son cargadas desde load/textures/[Title ID]/.</p></body></html> - + Use Custom Textures Usar texturas personalizadas - + <html><head/><body><p>Dump textures to PNG files.</p><p>Textures are dumped to dump/textures/[Title ID]/.</p></body></html> <html><head/><body><p>Vuelca las texturas a archivos PNG.</p><p>Las texturas son volcadas a dump/textures/[Title ID]/.</p></body></html> - + Dump Textures Volcar texturas - + <html><head/><body><p>Load all custom textures into memory on boot, instead of loading them when the game requires them.</p></body></html> <html><head/><body><p>Carga todas las texturas personalizadas en memoria al iniciar, en vez de cargarlas cuando el juego las necesite.</p></body></html> - + Preload Custom Textures Precargar texturas personalizadas - + <html><head/><body><p>Load custom textures asynchronously with background threads to reduce loading stutter</p></body></html> <html><head/><body><p>Carga las texturas personalizadas de manera asíncrona con los hilos de fondo para reducir los parones de carga</p></body></html> - + Async Custom Texture Loading Carga de Texturas Personalizadas Asíncrona @@ -1287,136 +1287,136 @@ Would you like to ignore the error and continue? ConfigureGeneral - + Form Formulario - + General General - + Confirm exit while emulation is running Confirmar salida durante la emulación - + Pause emulation when in background Pausar emulación al estar en segundo plano - + Mute audio when in background Silenciar audio al estar en segundo plano - + Hide mouse on inactivity Ocultar ratón mientras esté inactivo - + Enable Gamemode Activar Gamemode - + Updates Actualizaciones - + Check for updates on start Buscar actualizaciones al iniciar - + Silently auto update after closing Actualizar automáticamente de forma silenciosa después de cerrar - + Emulation Emulación - + Region: Región: - + Auto-select Auto-elegir - + Use global emulation speed Usar la velocidad de emulación global - + Set emulation speed: Establecer la velocidad de emulación: - + Emulation Speed: Velocidad de Emulación: - + Screenshots Capturas de pantalla - + Use global screenshot path Usar ruta de captura de pantalla global - + Set screenshot path: Establecer ruta de captura de pantalla: - + Save Screenshots To Guardar capturas a - + ... ... - + Reset All Settings Reiniciar Toda la Configuración - - - - - + + + + + unthrottled Ilimitada - + Select Screenshot Directory Seleccione el directorio de capturas de pantalla - + Citra Citra - + Are you sure you want to <b>reset your settings</b> and close Citra? ¿Estás seguro de que quieres <b>restablecer tu configuración</b> y cerrar Citra? @@ -1424,157 +1424,157 @@ Would you like to ignore the error and continue? ConfigureGraphics - + Form Formulario - + Graphics Gráficos - + API Settings Configuración de la API - + Graphics API API gráfica - + Software Software - + OpenGL OpenGL - + Vulkan Vulkan - + Physical Device Dispositivo Físico - + OpenGL Renderer - + SPIR-V Shader Generation Generación de Sombreados SPIR-V - + Renderer Renderizador - + <html><head/><body><p>Use the selected graphics API to accelerate shader emulation.</p><p>Requires a relatively powerful GPU for better performance.</p></body></html> <html><head/><body><p>Usa la API gráfica seleccionada para acelerar la emulación de sombreadores.</p><p>Requiere de una GPU potente para mejorar el rendimiento.</p></body></html> - + Enable Hardware Shader Activar Sombreador de Hardware - + <html><head/><body><p>Correctly handle all edge cases in multiplication operation in shaders. </p><p>Some games requires this to be enabled for the hardware shader to render properly.</p><p>However this would reduce performance in most games.</p></body></html> <html><head/><body><p>Éste maneja correctamente todos los casos extremos en la multiplicación dentro de las sombras.</p><p>Algunos juegos necesitan ésto activado en el renderizador de hardware para que se interpreten correctamente.</p><p>Sin embargo, ésto podría reducir el rendimiento en varios juegos.</p></body></html> - + Accurate Multiplication Multiplicación Precisa - + <html><head/><body><p>Use the JIT engine instead of the interpreter for software shader emulation. </p><p>Enable this for better performance.</p></body></html> <html><head/><body><p>Usa el motor de JIT en vez del interpretador para la emulación del sombreador de software.</p><p>Actívalo para obtener un mejor rendimiento.</p></body></html> - + Enable Shader JIT Activar Sombreado JIT - + <html><head/><body><p>Compile shaders using background threads to avoid shader compilation stutter. Expect temporary graphical glitches</p></body></html> <html><head/><body><p>Compila los sombreados usando los hilos del fondo para evitar el tartamudeo de la compilación de sombreados. Puede haber errores gráficos temporales.</p></body></html> - + Enable Async Shader Compilation Activar Compilación de Sombreados Asíncrona - + <html><head/><body><p>Perform presentation on separate threads. Improves performance when using Vulkan in most games.</p></body></html> <html><head/><body><p>Actúa la presentación en hilos diferentes. Mejora el rendimiento cuando se usa Vulkan en muchos juegos.</p></body></html> - + Enable Async Presentation Activar Presentación Asíncrona - + Advanced Avanzado - + <html><head/><body><p>Overrides the sampling filter used by games. This can be useful in certain cases with poorly behaved games when upscaling. If unsure set this to Game Controlled</p></body></html> <html><head/><body><p>Sobreescribe el filtro de muestreo usado en juegos. Puede ser útil en ciertos casos con juegos con bajo rendimiento al subir la resolución. Si no estás seguro, pónlo en Controlado por Juego</p></body></html> - + Texture Sampling Muestreo de Texturas - + Game Controlled Controlado por Juego - + Nearest Neighbor Nearest Neighbor - + Linear Linear - + <html><head/><body><p>Reduce stuttering by storing and loading generated shaders to disk.</p></body></html> <html><head/><body><p>Reduce los parones al almacenar y cargar los sombreados generados que se almacenan.</p></body></html> - + Use Disk Shader Cache Usar Caché Almacenada de Sombreadores - + VSync prevents the screen from tearing, but some graphics cards have lower performance with VSync enabled. Keep it enabled if you don't notice a performance difference. La Sincronización Vertical impide el tearing de la imagen, pero algunas tarjetas gráficas tienen peor rendimiento cuando éste está activado. Manténlo activado si no notas ninguna diferencia en el rendimiento. - + Enable VSync Activar Sincronización Vertical @@ -1582,63 +1582,63 @@ Would you like to ignore the error and continue? ConfigureHotkeys - + Hotkey Settings Configuración de teclas de atajo - + Double-click on a binding to change it. Haz doble click en una tecla de atajo para cambiarla. - + Clear All Reiniciar todo - + Restore Defaults Restablecer - + Action Acción - + Hotkey Tecla de Atajo - - + + Conflicting Key Sequence Secuencia de teclas ya usada - + The entered key sequence is already assigned to: %1 La secuencia de teclas ya está asignada a: %1 - + A 3ds button Botón de 3ds - + Restore Default Restablecer - + Clear Reiniciar - + The default key sequence is already assigned to: %1 La secuencia de teclas por defecto ya está asignada a: %1 @@ -1646,307 +1646,307 @@ Would you like to ignore the error and continue? ConfigureInput - + ConfigureInput ConfigureInput - + Profile Perfil - + New Nuevo - + Delete Eliminar - + Rename Renombrar - + Face Buttons Botones Frontales - + Y: Y: - + X: X: - + B: B: - + A: A: - + Directional Pad Pad de Control - - - + + + Up: Arriba: - - - + + + Down: Abajo - - - + + + Left: Izquierda: - - - + + + Right: Derecha: - + Misc. Varios - + Start: Start: - + Select: Select: - + Home: Home: - + Power: Power: - + Circle Mod: Circle Mod: - + GPIO14: GPIO14: - + Debug: Depuración: - + Circle Pad Pad Circular - - - + + + Set Analog Stick Configurar Palanca Analógica - - + + Deadzone: 0 Zona muerta: 0 - + C-Stick Palanca C - + Shoulder Buttons Botones Traseros - + ZR: ZR: - + ZL: ZL: - + L: L: - + R: R: - + Motion / Touch... Movimiento / Táctil... - + Auto Map Auto Asignar - + Clear All Reiniciar todo - + Restore Defaults Restablecer - - - + + + Clear Reiniciar - - - + + + [not set] [no establecido] - - - + + + Restore Default Restablecer - - + + Information Información - + After pressing OK, first move your joystick horizontally, and then vertically. Después de pulsar Aceptar, mueve tu joystick horizontalmente, y luego verticalmente. - - + + Deadzone: %1% Zona muerta:: %1% - - + + Modifier Scale: %1% Modificador de Escala: %1% - + Warning Advertencia - + Auto mapping failed. Your controller may not have a corresponding mapping Falló el auto asignado. Puede que tu controlador no tenga un asignado de botones correspondiente. - + After pressing OK, press any button on your joystick Después de pulsar Aceptar, pulsa cualquier botón en tu joystick - + [press key] [pulsa un botón] - + Error! ¡Error! - + You're using a key that's already bound. Estás usando una tecla que ya está en uso. - + New Profile Nuevo Perfil - + Enter the name for the new profile. Introduzca el nombre del nuevo perfil. - + Delete Profile Eliminar Perfil - + Delete profile %1? ¿Eliminar perfil %1? - + Rename Profile Renombrar Perfil - + New name: Nuevo nombre: - + Duplicate profile name Nombre de perfil duplicado - + Profile name already exists. Please choose a different name. Ya existe este nombre de perfil. Por favor, seleccione otro nombre. @@ -1954,198 +1954,198 @@ Would you like to ignore the error and continue? ConfigureMotionTouch - + Configure Motion / Touch Configurar Movimiento / Táctil - + Motion Movimiento - + Motion Provider: Fuente del Movimiento: - + Sensitivity: Sensibilidad: - + Controller: Controlador: - - - - - + + + + + Configure Configuración - + Touch Táctil - + Touch Provider: Fuente Táctil: - + Calibration: Calibración: - + (100, 50) - (1800, 850) (100, 50) - (1800, 850) - + Use button mapping: Usar asignación de botones: - + CemuhookUDP Config Configuración de CemuhookUDP - + You may use any Cemuhook compatible UDP input source to provide motion and touch input. Puedes usar cualquier controlador UDP compatible con Cemuhook para controlar el movimiento y las funciones táctiles. - + Server: Servidor: - + Port: Puerto: - + Pad: Controlador: - + Pad 1 Controlador 1 - + Pad 2 Controlador 2 - + Pad 3 Controlador 3 - + Pad 4 Controlador 4 - + Learn More Más información - - + + Test Probar - + Mouse (Right Click) Ratón (Click Derecho) - - + + CemuhookUDP CemuhookUDP - + SDL SDL - + Emulator Window Ventana del Emulador - + <a href='https://citra-emu.org/wiki/using-a-controller-or-android-phone-for-motion-or-touch-input'><span style="text-decoration: underline; color:#039be5;">Learn More</span></a> <a href='https://citra-emu.org/wiki/using-a-controller-or-android-phone-for-motion-or-touch-input'><span style="text-decoration: underline; color:#039be5;"> Más información</span></a> - + Information Información - + After pressing OK, press a button on the controller whose motion you want to track. Después de pulsar "Aceptar", pulsa un botón en el controlador cuyo movimiento quieres que siga. - + [press button] [pulsa un botón] - + Testing Probando - + Configuring Configurando - + Test Successful Prueba Exitosa - + Successfully received data from the server. Datos recibidos del servidor con éxito. - + Test Failed Prueba Fallida - + Could not receive valid data from the server.<br>Please verify that the server is set up correctly and the address and port are correct. No se han podido recibir datos válidos del servidor.<br>Asegúrese de qué el servidor esté configurado correctamente y que la dirección y el puerto son correctos. - + Citra Citra - + UDP Test or calibration configuration is in progress.<br>Please wait for them to finish. La prueba de UDP o la configuración de calibración está en marcha.<br>Por favor, espera a que éstas terminen. @@ -2153,97 +2153,97 @@ Would you like to ignore the error and continue? ConfigurePerGame - + Dialog Diálogo - + Info Información - + Size Tamaño - + Format Formato - + Name Nombre - + Filepath Ruta de archivo - + Title ID Identificación del título - + Reset Game Settings Restablecer configuración del juego - + Use global configuration (%1) Usar configuración global (%1) - + General General - + System Sistema - + Enhancements Mejoras - + Graphics Gráficos - + Audio Audio - + Debug Depuración - + Cheats Trucos - + Properties Propiedades - + Citra Citra - + Are you sure you want to <b>reset your settings for this game</b>? ¿Estás seguro de que quieres <b>restablecer tu configuración para este juego</b>? @@ -2251,65 +2251,65 @@ Would you like to ignore the error and continue? ConfigureStorage - + Form Formulario - + Storage Almacenamiento - + Use Virtual SD Usar SD Virtual - + Custom Storage Almacenamiento personalizado - + Use Custom Storage Usar almacenamiento personalizado - + NAND Directory Directorio de la NAND - - + + Open Abrir - - + + NOTE: This does not move the contents of the previous directory to the new one. NOTA: Ésto no mueve los contenidos del anterior directorio al nuevo. - - + + Change Cambiar - + SDMC Directory Directorio SDMC - + Select NAND Directory Seleccionar Directorio de la NAND - + Select SDMC Directory Seleccionar Directorio SDMC @@ -2317,1064 +2317,1064 @@ Would you like to ignore the error and continue? ConfigureSystem - + Form Formulario - + System Settings Configuración de la Consola - + Enable New 3DS mode Activar Modo New 3DS - + Use LLE applets (if installed) Usar applets LLE (si están instaladas) - + Username Nombre - + Birthday Cumpleaños - + January Enero - + February Febrero - + March Marzo - + April Abril - + May Mayo - + June Junio - + July Julio - + August Agosto - + September Septiembre - + October Octubre - + November Noviembre - + December Diciembre - + Language Idioma - + Note: this can be overridden when region setting is auto-select Nota: puede ser sobreescrito cuando la región es auto-seleccionada - + Japanese (日本語) Japonés (日本語) - + English Inglés (English) - + French (français) Francés (français) - + German (Deutsch) Alemán (Deutsch) - + Italian (italiano) Italiano (italiano) - + Spanish (español) Español - + Simplified Chinese (简体中文) Chino Simplificado (简体中文) - + Korean (한국어) Coreano (한국어) - + Dutch (Nederlands) Neerlandés (Nederlands) - + Portuguese (português) Portugués (português) - + Russian (Русский) Ruso (Русский) - + Traditional Chinese (正體中文) Chino Tradicional (正體中文) - + Sound output mode Modo de salida del audio - + Mono Mono - + Stereo Estéreo - + Surround Envolvente - + Country País - + Clock Reloj - + System Clock Reloj del Sistema - + Fixed Time Tiempo Fijado - + Startup time Tiempo del Inicio - + yyyy-MM-ddTHH:mm:ss aaaa-mm-ddTHH:mm:ss - + Offset time Tiempo de compensación - + days dias - + HH:mm:ss HH:mm:ss - + Initial System Ticks Ticks de Sistema Iniciales - + Random Aleatorias - + Fixed Fijadas - + Initial System Ticks Override Sobreescribir Ticks de Sistema Iniciales - + Play Coins: Monedas de Juego: - + Run System Setup when Home Menu is launched Ejecutar la Configuración de la consola cuando se ejecute el Menú Home - + Console ID: ID de Consola: - + Regenerate Regenerar - + 3GX Plugin Loader: Cargador de complementos 3GX: - + Enable 3GX plugin loader Habilitar el cargador de complementos 3GX - + Allow games to change plugin loader state Permitir que los juegos cambien el estado del cargador de complementos - + Download System Files from Nitendo servers Descargar Archivos de Sistema de los servidores de Nintendo - + Minimal Mínimo - + Old 3DS Old 3DS - + New 3DS New 3DS - + JPN JPN - + USA USA - + EUR EUR - + AUS AUS - + CHN CHN - + KOR KOR - + TWN TWN - + Download Descargas - + System settings are available only when game is not running. La Configuración de la Consola sólo está disponible cuando no se está emulando ningún juego. - + Japan Japón - + Anguilla Anguila - + Antigua and Barbuda Antigua y Barbuda - + Argentina Argentina - + Aruba Aruba - + Bahamas Bahamas - + Barbados Barbados - + Belize Belice - + Bolivia Bolivia - + Brazil Brasil - + British Virgin Islands Islas Vírgenes Británicas - + Canada Canadá - + Cayman Islands Islas Caimán - + Chile Chile - + Colombia Colombia - + Costa Rica Costa Rica - + Dominica Dominica - + Dominican Republic República Dominicana - + Ecuador Ecuador - + El Salvador El Salvador - + French Guiana Guayana Francesa - + Grenada Granada (América) - + Guadeloupe Guadalupe - + Guatemala Guatemala - + Guyana Guyana - + Haiti Haití - + Honduras Honduras - + Jamaica Jamaica - + Martinique Martinica - + Mexico México - + Montserrat Montserrat - + Netherlands Antilles Antillas Neerlandesas - + Nicaragua Nicaragua - + Panama Panamá - + Paraguay Paraguay - + Peru Perú - + Saint Kitts and Nevis San Cristóbal y Nieves - + Saint Lucia Santa Lucía - + Saint Vincent and the Grenadines San Vicente y las Granadinas - + Suriname Surinam - + Trinidad and Tobago Trinidad y Tobago - + Turks and Caicos Islands Islas Turcas y Caicos - + United States Estados Unidos - + Uruguay Uruguay - + US Virgin Islands Islas Vírgenes de los EEUU - + Venezuela Venezuela - + Albania Albania - + Australia Australia - + Austria Austria - + Belgium Bélgica - + Bosnia and Herzegovina Bosnia y Herzegovina - + Botswana Botsuana - + Bulgaria Bulgaria - + Croatia Croacia - + Cyprus Chipre - + Czech Republic República Checa - + Denmark Dinamarca - + Estonia Estonia - + Finland Finlandia - + France Francia - + Germany Alemania - + Greece Grecia - + Hungary Hungría - + Iceland Islandia - + Ireland Irlanda - + Italy Italia - + Latvia Letonia - + Lesotho Lesotho - + Liechtenstein Liechtenstein - + Lithuania Lituania - + Luxembourg Luxemburgo - + Macedonia Macedonia - + Malta Malta - + Montenegro Montenegro - + Mozambique Mozambique - + Namibia Namibia - + Netherlands Países Bajos - + New Zealand Nueva Zelanda - + Norway Noruega - + Poland Polonia - + Portugal Portugal - + Romania Rumanía - + Russia Rusia - + Serbia Serbia - + Slovakia Eslovaquia - + Slovenia Eslovenia - + South Africa Sudáfrica - + Spain España - + Swaziland Suazilandia - + Sweden Suecia - + Switzerland Suiza - + Turkey Turquía - + United Kingdom Reino Unido - + Zambia Zambia - + Zimbabwe Zimbabue - + Azerbaijan Azerbaiyán - + Mauritania Mauritania - + Mali Malí - + Niger Níger - + Chad Chad - + Sudan Sudán - + Eritrea Eritrea - + Djibouti Yibuti - + Somalia Somalia - + Andorra Andorra - + Gibraltar Gibraltar - + Guernsey Guernsey - + Isle of Man Isla de Man - + Jersey Jersey - + Monaco Mónaco - + Taiwan Taiwán - + South Korea Corea del Sur - + Hong Kong Hong Kong - + Macau Macao - + Indonesia Indonesia - + Singapore Singapur - + Thailand Tailandia - + Philippines Filipinas - + Malaysia Malasia - + China China - + United Arab Emirates Emiratos Árabes Unidos - + India India - + Egypt Egipto - + Oman Omán - + Qatar Catar - + Kuwait Kuwait - + Saudi Arabia Arabia Saudí - + Syria Siria - + Bahrain Baréin - + Jordan Jordán - + San Marino San Marino - + Vatican City Ciudad del Vaticano - + Bermuda Bermudas - + Download System Files from Nintendo servers Descargar Archivos de Sistema de los servidores de Nintendo - + Citra is missing keys to download system files. <br><a href='https://citra-emu.org/wiki/aes-keys/'><span style="text-decoration: underline; color:#039be5;">How to get keys?</span></a> Citra no tiene las claves para descargar los archivos de sistema. <br><a href='https://citra-emu.org/wiki/aes-keys/'><span style="text-decoration: underline; color:#039be5;">¿Cómo obtengo las claves?</span></a> - - + + Console ID: 0x%1 ID de Consola: 0x%1 - + This will replace your current virtual 3DS with a new one. Your current virtual 3DS will not be recoverable. This might have unexpected effects in games. This might fail, if you use an outdated config savegame. Continue? Esto reemplazará tu 3DS virtual por una nueva. Tu 3DS virtual actual será irrecuperable. Esto puede tener efectos inesperados en determinados juegos. Si usas un archivo de configuración obsoleto, esto podría fallar. ¿Desea continuar? - + Warning Advertencia - + Downloading files... Descargando archivos... - + Cancel Cancelar - - + + Citra Citra - + Downloading system files failed. La descarga de archivos de sistema falló. - + Successfully downloaded system files. La descarga de archivos de sistema fue un éxito. @@ -3382,91 +3382,91 @@ Would you like to ignore the error and continue? ConfigureTouchFromButton - + Configure Touchscreen Mappings Configurar Asignaciones de Pantalla Táctil - + Mapping: Asignación: - + New Nuevo - + Delete Eliminar - + Rename Renombrar - + Click the bottom area to add a point, then press a button to bind. Drag points to change position, or double-click table cells to edit values. Haz click en el área de debajo para añadir un punto, y pulsa un botón para asignarlo. Mueve los puntos para cambiar la posición, o haz doble click en las celdas de la tabla para editar los valores. - + Delete Point Eliminar Punto - + Button Botón - + X X axis X - + Y Y axis Y - + New Profile Nuevo Perfil - + Enter the name for the new profile. Introduzca el nombre del nuevo perfil. - + Delete Profile Eliminar Perfil - + Delete profile %1? ¿Eliminar perfil %1? - + Rename Profile Renombrar Perfil - + New name: Nuevo nombre: - + [press key] [pulsa un botón] @@ -3474,113 +3474,113 @@ Mueve los puntos para cambiar la posición, o haz doble click en las celdas de l ConfigureUi - + Form Formulario - + General General - + Note: Changing language will apply your configuration. Nota: Se guardará la configuración al cambiar el idioma. - + Interface language: Idioma de la Interfaz - + Theme: Tema: - + Game List Lista de Juegos - + Icon Size: Tamaño de Icono: - - + + None Ninguno - + Small (24x24) Pequeño (24x24) - + Large (48x48) Grande (48x48) - + Row 1 Text: Texto de Fila 1: - - + + File Name Nombre de Archivo - - + + Full Path Ruta Completa - - + + Title Name (short) Nombre del Título (corto) - - + + Title ID ID del Título - - + + Title Name (long) Nombre del Título (largo) - + Row 2 Text: Texto de Fila 2: - + Hide Titles without Icon Ocultar Títulos sin Icono - + Single Line Mode Modo Una Línea - + <System> <System> - + English Inglés (English) @@ -3588,135 +3588,135 @@ Mueve los puntos para cambiar la posición, o haz doble click en las celdas de l ConfigureWeb - + Form Formulario - + Citra Web Service Servicio Web de Citra - + By providing your username and token, you agree to allow Citra to collect additional usage data, which may include user identifying information. Al dar tu nombre de usuario y tu token, das tu consentimiento a que Citra recopile datos de uso adicionales, que pueden incluir información que identifique al usuario. - - + + Verify Verificar - + Sign up Registrarse - + Token: Token: - + Username: Nombre de usuario: - + What is my token? ¿Cuál es mi token? - + Web Service configuration can only be changed when a public room isn't being hosted. La configuración del Servicio Web sólo puede ser cambiada cuando una sala pública no está siendo alojada. - + Telemetry Telemetría - + Share anonymous usage data with the Citra team Compartir datos de uso anónimos con el equipo de Citra - + Learn more Más Información - + Telemetry ID: ID de Telemetría: - + Regenerate Regenerar - + Discord Presence Presencia en Discord - + Show Current Game in your Discord Status Mostrar Juego Actual en el Estado de Discord - + <a href='https://citra-emu.org/entry/telemetry-and-why-thats-a-good-thing/'><span style="text-decoration: underline; color:#039be5;">Learn more</span></a> <a href='https://citra-emu.org/entry/telemetry-and-why-thats-a-good-thing/'><span style="text-decoration: underline; color:#039be5;">Más información</span></a> - + <a href='https://profile.citra-emu.org/'><span style="text-decoration: underline; color:#039be5;">Sign up</span></a> <a href='https://profile.citra-emu.org/'><span style="text-decoration: underline; color:#039be5;">Regístrate</span></a> - + <a href='https://citra-emu.org/wiki/citra-web-service/'><span style="text-decoration: underline; color:#039be5;">What is my token?</span></a> <a href='https://citra-emu.org/wiki/citra-web-service/'><span style="text-decoration: underline; color:#039be5;">¿Cuál es mi token?</span></a> - - + + Unspecified Sin especificar - - + + Telemetry ID: 0x%1 ID de Telemetría: 0x%1 - + Token not verified Token no verificado - + Token was not verified. The change to your token has not been saved. El token no ha sido verificado. El cambio a tu token no se ha guardado. - + Verifying... Verificando... - + Verification failed La verificación falló - + Verification failed. Check that you have entered your token correctly, and that your internet connection is working. La verificación ha fallado. Comprueba que has introducido tu token correctamente y que tu conexión a Internet funcione correctamente. @@ -3724,47 +3724,47 @@ Mueve los puntos para cambiar la posición, o haz doble click en las celdas de l DirectConnect - + Direct Connect Conexión Directa - + Server Address Dirección del servidor - + <html><head/><body><p>Server address of the host</p></body></html> <html><head/><body><p>Dirección del servidor del host</p></body></html> - + Port Puerto - + <html><head/><body><p>Port number the host is listening on</p></body></html> <html><head/><body><p>Número de puerto que está escuchando el host</p></body></html> - + 24872 24872 - + Nickname Apodo - + Password Contraseña - + Connect Conectar @@ -3772,12 +3772,12 @@ Mueve los puntos para cambiar la posición, o haz doble click en las celdas de l DirectConnectWindow - + Connecting Conectando - + Connect Conectar @@ -3785,111 +3785,111 @@ Mueve los puntos para cambiar la posición, o haz doble click en las celdas de l DumpingDialog - + Dump Video Volcar Vídeo - + Output Salida - + Format: Formato: - - - + + + Options: Opciones: - - - - + + + + ... ... - + Path: Ruta: - + Video Vídeo - - + + Encoder: Encodeador: - - + + Bitrate: Bitrate: - - + + bps bps - + Audio Audio - - + + Citra Citra - + Please specify the output path. Por favor, especifique la ruta de salida. - + output formats formatos de salida - + video encoders encodeadores de vídeo - + audio encoders encodeadores de audio - + Could not find any available %1. Please check your FFmpeg installation used for compilation. No se pudo encontrar ningún %1. Por favor, compruebe la instalación de FFmpeg usada para la compilación. - - - - + + + + %1 (%2) %1 (%2) - + Select Video Output Path Seleccionar Ruta de Salida de Vídeo @@ -3897,342 +3897,342 @@ Por favor, compruebe la instalación de FFmpeg usada para la compilación. GMainWindow - + <a href='https://citra-emu.org/entry/telemetry-and-why-thats-a-good-thing/'>Anonymous data is collected</a> to help improve Citra. <br/><br/>Would you like to share your usage data with us? <a href='https://citra-emu.org/entry/telemetry-and-why-thats-a-good-thing/'>Se recogen datos anónimos</a> para ayudar a mejorar Citra. <br/><br/>¿Quieres compartir tus datos de uso con nosotros? - + Telemetry Telemetría - + No Suitable Vulkan Devices Detected Dispositivos compatibles con Vulkan no encontrados. - + Vulkan initialization failed during boot.<br/>Your GPU may not support Vulkan 1.1, or you do not have the latest graphics driver. El inicio de Vulkan falló durante el inicio.<br/>Tu GPU, o no soporta Vulkan 1.1, o no tiene los últimos drivers gráficos. - - + + Current emulation speed. Values higher or lower than 100% indicate emulation is running faster or slower than a 3DS. La velocidad de emulación actual. Valores mayores o menores de 100% indican que la velocidad de emulación funciona más rápida o lentamente que en una 3DS. - - + + How many frames per second the game is currently displaying. This will vary from game to game and scene to scene. Los fotogramas por segundo que está mostrando el juego. Variarán de juego en juego y de escena a escena. - - + + Time taken to emulate a 3DS frame, not counting framelimiting or v-sync. For full-speed emulation this should be at most 16.67 ms. El tiempo que lleva emular un fotograma de 3DS, sin tener en cuenta el limitador de fotogramas, ni la sincronización vertical. Para una emulación óptima, este valor no debe superar los 16.67 ms. - + Clear Recent Files Limpiar Archivos Recientes - + &Continue &Continuar - + &Pause &Pausar - + Update Available Actualización Disponible - + An update is available. Would you like to install it now? Hay una actualización disponible. ¿Quieres instalarla ahora? - + No Update Found Actualización No Encontrada - + No update is found. No se han encontrado actualizaciones. - + Citra is running a game TRANSLATORS: This string is shown to the user to explain why Citra needs to prevent the computer from sleeping Citra está ejecutando un juego - - + + Invalid ROM Format Formato de ROM no válido - - + + Your ROM format is not supported.<br/>Please follow the guides to redump your <a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>game cartridges</a> or <a href='https://citra-emu.org/wiki/dumping-installed-titles/'>installed titles</a>. Tu formato de ROM no es válido.<br/>Por favor, sigue las instrucciones para volver a volcar tus <a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>cartuchos de juego</a> y/o <a href='https://citra-emu.org/wiki/dumping-installed-titles/'>títulos instalados</a>. - + ROM Corrupted ROM Corrupto - + Your ROM is corrupted. <br/>Please follow the guides to redump your <a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>game cartridges</a> or <a href='https://citra-emu.org/wiki/dumping-installed-titles/'>installed titles</a>. Tu ROM está corrupto. <br/>Por favor, sigue las instrucciones para volver a volcar tus<a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>cartuchos de juego</a> y/o <a href='https://citra-emu.org/wiki/dumping-installed-titles/'>títulos instalados</a>. - + ROM Encrypted ROM Encriptado - + Your ROM is encrypted. <br/>Please follow the guides to redump your <a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>game cartridges</a> or <a href='https://citra-emu.org/wiki/dumping-installed-titles/'>installed titles</a>. Tu ROM está encriptado. <br/>Por favor, sigue las instrucciones para volver a volcar tus<a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>cartuchos de juego</a> y/o <a href='https://citra-emu.org/wiki/dumping-installed-titles/'>títulos instalados</a>. - + Unsupported ROM ROM no soportada - + GBA Virtual Console ROMs are not supported by Citra. Las ROMs de la consola virtual de GBA no están soportadas por Citra. - + Error while loading ROM! ¡Error al cargar la ROM! - + An unknown error occurred. Please see the log for more details. Un error desconocido ha ocurrido. Por favor, mira el log para más detalles. - + CIA must be installed before usage El CIA debe estar instalado antes de usarse - + Before using this CIA, you must install it. Do you want to install it now? Antes de usar este CIA, debes instalarlo. ¿Quieres instalarlo ahora? - - + + Slot %1 Ranura %1 - + Slot %1 - %2 %3 Ranura %1 - %2 %3 - + Error Opening %1 Folder Error al abrir la carpeta %1 - - + + Folder does not exist! ¡La carpeta no existe! - + Dumping... Volcando... - - + + Cancel Cancelar - - - - - - - - - + + + + + + + + + Citra Citra - + Could not dump base RomFS. Refer to the log for details. No se pudo volcar el RomFS base. Compruebe el registro para más detalles. - + Error Opening %1 Error al abrir %1 - + Select Directory Seleccionar directorio - + Properties Propiedades - + The game properties could not be loaded. No se pudieron cargar las propiedades del juego. - + 3DS Executable (%1);;All Files (*.*) %1 is an identifier for the 3DS executable file extensions. Ejecutable 3DS(%1);;Todos los archivos(*.*) - + Load File Cargar Archivo - + Load Files Cargar archivos - + 3DS Installation File (*.CIA*) Archivo de Instalación de 3DS (*.CIA*) - + All Files (*.*) Todos los archivos (*.*) - + %1 has been installed successfully. %1 ha sido instalado con éxito. - + Unable to open File No se pudo abrir el Archivo - + Could not open %1 No se pudo abrir %1 - + Installation aborted Instalación interrumpida - + The installation of %1 was aborted. Please see the log for more details La instalación de %1 ha sido cancelada. Por favor, consulte los registros para más información. - + Invalid File Archivo no válido - + %1 is not a valid CIA %1 no es un archivo CIA válido - + Encrypted File Archivo Encriptado - + %1 must be decrypted before being used with Citra. A real 3DS is required. %1 debe ser desencriptado antes de ser usado en Citra. Se requiere de una 3DS real. - + Unable to find File No puede encontrar el archivo - + Could not find %1 No se pudo encontrar %1 - + Uninstalling '%1'... Desinstalando '%1'... - + Failed to uninstall '%1'. Falló la desinstalación de '%1'. - + Successfully uninstalled '%1'. '%1' desinstalado con éxito. - + File not found Archivo no encontrado - + File "%1" not found Archivo "%1" no encontrado - + Missing Citra Account Falta la cuenta de Citra - + You must link your Citra account to submit test cases.<br/>Go to Emulation &gt; Configure... &gt; Web to do so. Debes vincular tu cuenta de Citra para enviar casos de pruebas.<br/>Ve a Emulación &gt; Configurar... &gt; Web para hacerlo. - + Savestates Estados - + Warning: Savestates are NOT a replacement for in-game saves, and are not meant to be reliable. Use at your own risk! @@ -4241,76 +4241,76 @@ Use at your own risk! ¡Úsalos bajo tu propio riesgo! - - - + + + Error opening amiibo data file Error al abrir los archivos de datos del Amiibo - + A tag is already in use. Ya está en uso una etiqueta. - + Game is not looking for amiibos. El juego no está buscando amiibos. - + Amiibo File (%1);; All Files (*.*) Archivo de Amiibo(%1);; Todos los archivos (*.*) - + Load Amiibo Cargar Amiibo - + Unable to open amiibo file "%1" for reading. No se pudo abrir el archivo del amiibo "%1" para su lectura. - + Record Movie Grabar Película - + Movie recording cancelled. Grabación de película cancelada. - - + + Movie Saved Película Guardada - - + + The movie is successfully saved. Película guardada con éxito. - + Invalid Screenshot Directory Directorio de capturas de pantalla no válido - + Cannot create specified screenshot directory. Screenshot path is set back to its default value. No se puede crear el directorio de capturas de pantalla. La ruta de capturas de pantalla vuelve a su valor por defecto. - + Could not load video dumper No se pudo cargar el volcador de vídeo - + FFmpeg could not be loaded. Make sure you have a compatible version installed. To install FFmpeg to Citra, press Open and select your FFmpeg directory. @@ -4323,158 +4323,158 @@ Para instalar FFmpeg en Citra, pulsa Abrir y elige el directorio donde esté FFm Para ver una guía sobre cómo instalar FFmpeg, pulsa Ayuda. - + Select FFmpeg Directory Seleccionar Directorio FFmpeg - + The provided FFmpeg directory is missing %1. Please make sure the correct directory was selected. Al directorio de FFmpeg indicado le falta %1. Por favor, asegúrese de haber seleccionado el directorio correcto. - + FFmpeg has been sucessfully installed. FFmpeg ha sido instalado con éxito. - + Installation of FFmpeg failed. Check the log file for details. La instalación de FFmpeg ha fallado. Compruebe el archivo del registro para más detalles. - + Could not start video dumping.<br>Refer to the log for details. No se pudo empezar el volcado del vídeo.<br>Compruebe el registro para más detalles.. - + Recording %1 Grabando %1 - + Playing %1 / %2 Reproduciendo %1 / %2 - + Movie Finished Película terminada - + Speed: %1% Velocidad: %1% - + Speed: %1% / %2% Velocidad: %1% / %2% - + Game: %1 FPS Juego: %1 FPS - + Frame: %1 ms Frame: %1 ms - + VOLUME: MUTE VOLUMEN: SILENCIO - + VOLUME: %1% Volume percentage (e.g. 50%) VOLUMEN: %1% - + %1 is missing. Please <a href='https://citra-emu.org/wiki/dumping-system-archives-and-the-shared-fonts-from-a-3ds-console/'>dump your system archives</a>.<br/>Continuing emulation may result in crashes and bugs. Falta %1. Por favor, <a href='https://citra-emu.org/wiki/dumping-system-archives-and-the-shared-fonts-from-a-3ds-console/'>vuelca tus archivos de sistema</a>.<br/>Continuar la emulación puede resultar en cuelgues y errores. - + A system archive Un archivo de sistema - + System Archive Not Found Archivo de Sistema no encontrado - + System Archive Missing Falta un Archivo de Sistema - + Save/load Error Error de guardado/carga - + Fatal Error Error Fatal - + A fatal error occurred. <a href='https://community.citra-emu.org/t/how-to-upload-the-log-file/296'>Check the log</a> for details.<br/>Continuing emulation may result in crashes and bugs. Ha ocurrido un error fatal. <a href='https://community.citra-emu.org/t/how-to-upload-the-log-file/296'>Mira el log</a> para más detalles.<br/>Continuar la emulación puede resultar en cuelgues y errores. - + Fatal Error encountered Error Fatal encontrado - + Continue Continuar - + Quit Game Salir del juego - + OK Aceptar - + Would you like to exit now? ¿Quiere salir ahora? - + The game is still running. Would you like to stop emulation? El juego sigue ejecutándose. ¿Quiere parar la emulación? - + Playback Completed Reproducción Completada - + Movie playback completed. Reproducción de película completada. - + Primary Window Ventana Primaria - + Secondary Window Ventana Secundaria @@ -4482,22 +4482,22 @@ Para ver una guía sobre cómo instalar FFmpeg, pulsa Ayuda. GPUCommandListModel - + Command Name Nombre del Comando - + Register Registro - + Mask Máscara - + New Value Nuevo Valor @@ -4505,23 +4505,23 @@ Para ver una guía sobre cómo instalar FFmpeg, pulsa Ayuda. GPUCommandListWidget - + Pica Command List Lista de Comandos de Pica - - + + Start Tracing Empezar Rastreo - + Copy All Copiar Todo - + Finish Tracing Terminar el Rastreo @@ -4529,7 +4529,7 @@ Para ver una guía sobre cómo instalar FFmpeg, pulsa Ayuda. GPUCommandStreamWidget - + Graphics Debugger Depurador de Gráficos @@ -4537,42 +4537,42 @@ Para ver una guía sobre cómo instalar FFmpeg, pulsa Ayuda. GRenderWindow - + OpenGL not available! ¡OpenGL no disponible! - + OpenGL shared contexts are not supported. Los contextos compartidos de OpenGL no están soportados. - + Error while initializing OpenGL! ¡Error al iniciar OpenGL! - + Your GPU may not support OpenGL, or you do not have the latest graphics driver. Tu GPU, o no soporta OpenGL, o no tienes los últimos drivers de la tarjeta gráfica. - + Error while initializing OpenGL 4.3! ¡Error al iniciar OpenGL 4.3! - + Your GPU may not support OpenGL 4.3, or you do not have the latest graphics driver.<br><br>GL Renderer:<br>%1 Tu GPU, o no soporta OpenGL 4.3, o no tienes los últimos drivers de la tarjeta gráfica.<br><br>Renderizador GL:<br>%1 - + Error while initializing OpenGL ES 3.2! ¡Error al iniciar OpenGL ES 3.2! - + Your GPU may not support OpenGL ES 3.2, or you do not have the latest graphics driver.<br><br>GL Renderer:<br>%1 Tu GPU, o no soporta OpenGL ES 3.2, o no tienes los últimos drivers de la tarjeta gráfica.<br><br>Renderizador GL:<br>%1 @@ -4580,134 +4580,134 @@ Para ver una guía sobre cómo instalar FFmpeg, pulsa Ayuda. GameList - - + + Compatibility Compatibilidad - - + + Region Región - - + + File type Tipo de Archivo - - + + Size Tamaño - + Open Save Data Location Abrir ubicación de los archivos de guardado - + Open Extra Data Location Abrir ubicación de los Datos Adicionales - + Open Application Location Abrir ubicación de la aplicación - + Open Update Data Location Abrir ubicación de los archivos de actualización - + Open DLC Data Location Abrir ubicación de datos DLC - + Open Texture Dump Location Abrir Carpeta de Volcado de Texturas - + Open Custom Texture Location Abrir Carpeta de Texturas Personalizadas - + Open Mods Location Abrir ubicación de los mods - + Dump RomFS Volcar RomFS - + Disk Shader Cache Caché de sombreador de disco - + Open Shader Cache Location Abrir ubicación de caché de sombreador - + Delete OpenGL Shader Cache Eliminar caché de sombreado de OpenGL - + Uninstall Desinstalar - + Everything Todo - + Game Juego - + Update Actualización - + DLC DLC - + Navigate to GameDB entry Ir a la base de datos de los juegos - + Properties Propiedades - - - - + + + + Citra Citra - + Are you sure you want to completely uninstall '%1'? This will delete the game if installed, as well as any installed updates or DLC. @@ -4716,59 +4716,59 @@ This will delete the game if installed, as well as any installed updates or DLC. Ésto eliminará el juego si está instalado, así como también las actualizaciones y DLC instaladas. - - + + %1 (Update) %1 (Actualización) - - + + %1 (DLC) %1 (DLC) - + Are you sure you want to uninstall '%1'? ¿Estás seguro de querer desinstalar '%1'? - + Are you sure you want to uninstall the update for '%1'? ¿Estás seguro de querer desinstalar la actualización de '%1'? - + Are you sure you want to uninstall all DLC for '%1'? ¿Estás seguro de querer desinstalar todo el DLC de '%1'? - + Scan Subfolders Escanear subdirectorios - + Remove Game Directory Eliminar directorio de juegos - + Move Up Mover arriba - + Move Down Mover abajo - + Open Directory Location Abrir ubicación del directorio - + Name Nombre @@ -4776,82 +4776,82 @@ This will delete the game if installed, as well as any installed updates or DLC. GameListItemCompat - + Perfect Perfecto - + Game functions flawless with no audio or graphical glitches, all tested functionality works as intended without any workarounds needed. El juego funciona a la perfección, sin problemas de sonido o gráficos, todas las funcionalidades probadas funcionan según lo previsto sin la necesidad de soluciones temporales. - + Great Excelente - + Game functions with minor graphical or audio glitches and is playable from start to finish. May require some workarounds. El juego funciona con pequeños problemas gráficos o de sonido y es jugable de principio a fin. Podría requerir de soluciones temporales. - + Okay Bien - + Game functions with major graphical or audio glitches, but game is playable from start to finish with workarounds. - El juego funciona con importantes problemas gráficos o de sonido, pero el juego es jugable de principio a fin con + El juego funciona con importantes problemas gráficos o de sonido, pero el juego es jugable de principio a fin con soluciones temporales. - + Bad Mal - + Game functions, but with major graphical or audio glitches. Unable to progress in specific areas due to glitches even with workarounds. El juego funciona, pero con notables problemas gráficos o de sonido. Es imposible avanzar en zonas específicas debido a fallos incluso con soluciones temporales. - + Intro/Menu Intro/Menú - + Game is completely unplayable due to major graphical or audio glitches. Unable to progress past the Start Screen. No es posible jugar al juego debido a importantes problemas gráficos o de sonido. Es imposible avanzar más allá de la pantalla de inicio. - + Won't Boot No inicia - + The game crashes when attempting to startup. El juego se bloquea al intentar iniciarse. - + Not Tested Sin probar - + The game has not yet been tested. El juego todavía no ha sido testeado. @@ -4859,7 +4859,7 @@ más allá de la pantalla de inicio. GameListPlaceholder - + Double-click to add a new folder to the game list Haz doble click para añadir una nueva carpeta a la lista de juegos @@ -4867,27 +4867,27 @@ más allá de la pantalla de inicio. GameListSearchField - + of de - + result resultado - + results resultados - + Filter: Filtro: - + Enter pattern to filter Introduzca un patrón para filtrar @@ -4895,47 +4895,47 @@ más allá de la pantalla de inicio. GameRegion - + Japan Japón - + North America América del Norte - + Europe Europa - + Australia Australia - + China China - + Korea Korea - + Taiwan Taiwán - + Invalid region Región no válida - + Region free Region free @@ -4943,23 +4943,23 @@ más allá de la pantalla de inicio. GraphicsBreakPointsWidget - + Pica Breakpoints Pica Breakpoints - - + + Emulation running Ejecutando emulación - + Resume Reanudar - + Emulation halted at breakpoint Emulación parada en un breakpoint @@ -4967,146 +4967,146 @@ más allá de la pantalla de inicio. GraphicsSurfaceWidget - + Pica Surface Viewer Observador de Superficie de Pica - + Color Buffer Buffer de Color - + Depth Buffer Buffer de Profundidad - + Stencil Buffer Buffer de Esténcil - + Texture 0 Textura 0 - + Texture 1 Textura 1 - + Texture 2 Textura 2 - + Custom Personalizada - + Unknown Desconocido - + Save Guardar - + Source: Fuente: - + Physical Address: Dirección Física: - + Width: Anchura: - + Height: Altura: - + Format: Formato: - + X: X: - + Y: Y: - + Pixel out of bounds Píxel fuera de los límites - + (unable to access pixel data) (no se puede acceder a los datos del píxel) - + (invalid surface address) (dirección de superficie no válida) - + (unknown surface format) (formato de superficie desconocido) - + Portable Network Graphic (*.png) Portable Network Graphic (*.png) - + Binary data (*.bin) Archivo binario (*.bin) - + Save Surface Guardar Superficie - - - - + + + + Error Error - - + + Failed to open file '%1' No se pudo abrir el archivo '%1' - + Failed to save surface data to file '%1' Error al guardar los datos en el archivo '%1' - + Failed to completely write surface data to file. The saved data will likely be corrupt. Error al guardar los datos en el archivo. Es posible que los datos de guardado estén corruptos. @@ -5114,42 +5114,42 @@ más allá de la pantalla de inicio. GraphicsTracingWidget - + CiTrace Recorder Grabador CiTrace - + Start Recording Empezar grabación - + Stop and Save Parar y Guardar - + Abort Recording Abortar Grabación - + Save CiTrace Guardar CiTrace - + CiTrace File (*.ctf) Archivo CiTrace (*.ctf) - + CiTracing still active CiTracing sigue activo - + A CiTrace is still being recorded. Do you want to save it? If not, all recorded data will be discarded. Un CiTrace sigue grabándose. ¿Deseas guardarlo? Si no, todos los datos grabados serán descartados. @@ -5157,17 +5157,17 @@ más allá de la pantalla de inicio. GraphicsVertexShaderModel - + Offset Offset - + Raw Raw - + Disassembly Desmontado @@ -5175,127 +5175,127 @@ más allá de la pantalla de inicio. GraphicsVertexShaderWidget - + Save Shader Dump Guardar Volcado de Sombra - + Shader Binary (*.shbin) Binario de Sombra (*.shbin) - + Pica Vertex Shader Sombreado de Vértice de Pica - + (data only available at vertex shader invocation breakpoints) (datos sólo disponibles en los puntos de la invocación del sombreado de vértices) - + Dump Volcar - + Input Data Datos de Entrada - + Attribute %1 Atributo %1 - + Cycle Index: Índice de Ciclo: - + SRC1: %1, %2, %3, %4 SRC1: %1, %2, %3, %4 - + SRC2: %1, %2, %3, %4 SRC2: %1, %2, %3, %4 - + SRC3: %1, %2, %3, %4 SRC3: %1, %2, %3, %4 - + DEST_IN: %1, %2, %3, %4 DEST_IN: %1, %2, %3, %4 - + DEST_OUT: %1, %2, %3, %4 DEST_OUT: %1, %2, %3, %4 - + Address Registers: %1, %2 Registros de Dirección: %1, %2 - + Compare Result: %1, %2 Comparar Resultados: %1, %2 - + Static Condition: %1 Condición Estática: %1 - + Dynamic Conditions: %1, %2 Condiciones Dinámicas: %1, %2 - + Loop Parameters: %1 (repeats), %2 (initializer), %3 (increment), %4 Parámetros de Bucle: %1 (repeticiones), %2 (inicializador), %3 (incremental), %4 - + Instruction offset: 0x%1 Instrucción offset: 0x%1 - + -> 0x%2 -> 0x%2 - + (last instruction) (última instrucción) @@ -5303,67 +5303,67 @@ más allá de la pantalla de inicio. HostRoom - + Create Room Crear Sala - + Room Name Nombre de la Sala - + Preferred Game Juego Preferente - + Max Players Máxima Capacidad - + Username Usuario - + (Leave blank for open game) (Dejar en blanco si la sala es pública) - + Password Contraseña - + Port Puerto - + Room Description Descripción de Sala - + Load Previous Ban List Cargar Lista de Baneos Anterior - + Public Pública - + Unlisted Privada - + Host Room Crear Sala @@ -5371,12 +5371,12 @@ más allá de la pantalla de inicio. HostRoomWindow - + Error Error - + Failed to announce the room to the public lobby. In order to host a room publicly, you must have a valid Citra account configured in Emulation -> Configure -> Web. If you do not want to publish a room in the public lobby, then select Unlisted instead. Debug Message: No se ha podido publicar la sala al lobby público. Para alojar una sala públicamente, debes tener una cuenta válida de Citra configurada en Emulación -> Configurar... -> Web. Si no quieres publicar una sala en el lobby público, entonces escoja "Privada" en su lugar. @@ -5386,47 +5386,47 @@ Mensaje de depuración: IPCRecorder - + IPC Recorder Grabador IPC - + Enable Recording Activar Grabación - + Filter: Buscar: - + Leave empty to disable filtering Déjalo vacío para desactivar la búsqueda - + # # - + Status Estado - + Service Servicio - + Function Función - + Clear Reiniciar @@ -5434,47 +5434,47 @@ Mensaje de depuración: IPCRecorderWidget - + Invalid Nulo - + Sent Enviado - + Handling Handling - + Success Éxito - + Error Error - + HLE Unimplemented HLE sin implementar - + HLE HLE - + LLE LLE - + Unknown Desconocido @@ -5482,7 +5482,7 @@ Mensaje de depuración: LLEServiceModulesWidget - + Toggle LLE Service Modules Alternar Módulos del Servicio LLE @@ -5490,54 +5490,54 @@ Mensaje de depuración: LoadingScreen - + Loading Shaders 387 / 1628 Cargando Sombreadores 387 / 1628 - + Loading Shaders %v out of %m Cargando Sombreadores %v de %m - + Estimated Time 5m 4s Tiempo Estimado 5m 4s - + Loading... Cargando... - + Preloading Textures %1 / %2 Precargando Texturas %1 / %2 - + Preparing Shaders %1 / %2 Preparando Sombreadores %1 / %2 - + Loading Shaders %1 / %2 Cargando Sombreadores %1 / %2 - + Launching... Iniciando... - + Now Loading %1 Cargando %1 - + Estimated Time %1 Tiempo Estimado %1 @@ -5545,83 +5545,83 @@ Mensaje de depuración: Lobby - + Public Room Browser Navegador de Salas Públicas - - + + Nickname Apodo - + Filters Filtros - + Search Buscar - + Games I Own Juegos Que Tengo - + Hide Empty Rooms Ocultar Salas Vacías - + Hide Full Rooms Ocultar Salas Llenas - + Refresh Lobby Actualizar Lobby - + Password Required to Join Contraseña Necesaria para Unirse - + Password: Contraseña: - + Room Name Nombre de Sala - + Preferred Game Juego Preferente - + Host Host - + Players Jugadores - + Refreshing Actualizando - + Refresh List Actualizar Lista @@ -5629,362 +5629,362 @@ Mensaje de depuración: MainWindow - + Citra Citra - + &File &Archivo - + Boot Home Menu Iniciar Menú Home - + Recent Files Archivos Recientes - + Amiibo Amiibo - + &Emulation &Emulación - + Save State Guardar Estado - + Load State Cargar Estado - + &View &Ver - + Debugging Depuración - + Screen Layout Estilo de pantalla - + Multiplayer Multijugador - + Tools Herramientas - + Movie Película - + Frame Advance Avanzar Fotograma - + &Help &Ayuda - + Load File... Cargar Archivo... - + Install CIA... Instalar CIA... - + JPN JPN - + USA USA - + EUR EUR - + AUS AUS - + CHN CHN - + KOR KOR - + TWN TWN - + E&xit S&alir - + &Pause &Pausar - + &Stop &Parar - + Save Guardar - + Load Cargar - + FAQ FAQ - + About Citra Acerca de Citra - + Single Window Mode Modo Ventana Única - + Save to Oldest Slot Guardar en la ranura más antigua - + Load from Newest Slot Cargar desde la ranura más reciente - + Configure... Configurar... - + Display Dock Widget Headers Mostrar Títulos de Widgets del Dock - + Show Filter Bar Mostrar Barra de Filtro - + Show Status Bar Mostrar Barra de Estado - + Create Pica Surface Viewer Crear Observador de Superficie de Pica - + Record... Grabar... - + Play... Reproducir... - + Close Cerrar - + Save without Closing Guardar sin cerrar - + Read-Only Mode Modo sólo lectura - + Enable Frame Advancing Activar Avance de Fotogramas - + Advance Frame Avanzar Fotograma - + Capture Screenshot Hacer Captura de Pantalla - + Dump Video Volcar Vídeo - + Browse Public Game Lobby Buscar Salas Públicas - + Create Room Crear Sala - + Leave Room Abandonar Sala - + Direct Connect to Room Conectar Directamente a Sala - + Show Current Room Mostrar Sala Actual - + Fullscreen Pantalla Completa - + Modify Citra Install Modificar Instalación de Citra - + Opens the maintenance tool to modify your Citra installation Abre la herramienta de mantenimiento para modificar tu traducción de Citra - + Default Por defecto - + Single Screen Pantalla única - + Large Screen Pantalla amplia - + Hybrid Screen Pantalla Híbrida - + Side by Side Conjunta - + Separate Windows Ventanas separadas - + Swap Screens Intercambiar pantallas - + Rotate Upright Rotar en Vertical - + Check for Updates Buscar Actualizaciones - + Report Compatibility Informar de compatibilidad - + Restart Reiniciar - + Load... Cargar... - + Remove Quitar - + Open Citra Folder Abrir Carpeta de Citra - + Configure Current Game... Configurar juego actual... @@ -5992,7 +5992,7 @@ Mensaje de depuración: MicroProfileDialog - + MicroProfile MicroProfile @@ -6000,48 +6000,48 @@ Mensaje de depuración: ModerationDialog - + Moderation Moderación - + Ban List Lista de Baneos - - + + Refreshing Actualizando - + Unban Desbanear - + Subject Asunto - + Type Tipo - + Forum Username Nombre de Usuario de Foro - + IP Address Dirección IP - + Refresh Actualizar @@ -6049,91 +6049,91 @@ Mensaje de depuración: MoviePlayDialog - - + + Play Movie Reproducir Película - + File: Archivo: - + ... ... - + Info Información - + Game: Juego: - + Author: Autor: - + Rerecord Count: Número de regrabaciones: - + Length: Longitud: - + Current running game will be stopped. El juego actual se detendrá. - + <br>Current recording will be discarded. <br>La grabación actual se descartará. - + Citra TAS Movie (*.ctm) Citra TAS Movie (*.ctm) - + Invalid movie file. Archivo de película no válido. - + Revision dismatch, playback may desync. Desajuste de revisión, la reproducción podría desincronizarse. - + Indicated length is incorrect, file may be corrupted. La longitud indicada es incorrecta, el archivo podría estar corrupto. - - - - + + + + (unknown) (desconocido) - + Game used in this movie is not in game list. El juego usado en la película no está en la lista de juegos. - + (>1 day) (>1 día) @@ -6141,43 +6141,43 @@ Mensaje de depuración: MovieRecordDialog - - + + Record Movie Grabar película - + File: Archivo: - + ... ... - + Author: Autor: - + Current running game will be restarted. El juego actual se reiniciará. - + <br>Current recording will be discarded. <br>La grabación actual se descartará. - + Recording will start once you boot a game. La grabación empezará cuando inicies un juego. - + Citra TAS Movie (*.ctm) Citra TAS Movie (*.ctm) @@ -6185,44 +6185,44 @@ Mensaje de depuración: MultiplayerState - - + + Current connection status Estado actual de conexión - - + + Not Connected. Click here to find a room! No estás conectado. ¡Haz click aquí para encontrar una sala! - - - + + + Connected Conectado - - + + Not Connected No conectado - + Error Error - + Failed to update the room information. Please check your Internet connection and try hosting the room again. Debug Message: No se pudo publicar la información de la sala. Por favor, revisa tu conexión a Internet e intenta alojar la sala de nuevo. Mensaje de depuración: - + New Messages Received Nuevos Mensajes Recibidos @@ -6230,22 +6230,22 @@ Mensaje de depuración: NetworkMessage - + Leave Room Abandonar Sala - + You are about to close the room. Any network connections will be closed. Estás a punto de cerrar la sala. Cualquier conexión de red será interrumpida. - + Disconnect Desconectar - + You are about to leave the room. Any network connections will be closed. Estás a punto de abandonar la sala. Cualquier conexión de red será interrumpida. @@ -6253,92 +6253,92 @@ Mensaje de depuración: NetworkMessage::ErrorManager - + Username is not valid. Must be 4 to 20 alphanumeric characters. El nombre de usuario no es válido. Debe tener entre 4 y 20 caracteres alfanuméricos. - + Room name is not valid. Must be 4 to 20 alphanumeric characters. El nombre de la sala no es válido. Debe tener entre 4 y 20 caracteres alfanuméricos. - + Username is already in use or not valid. Please choose another. El nombre de usuario ya está en uso o no es válido. Por favor, escoge otro. - + IP is not a valid IPv4 address. La IP no es una dirección IPv4 válida. - + Port must be a number between 0 to 65535. El puerto debe ser un número entre 0 y 65535. - + You must choose a Preferred Game to host a room. If you do not have any games in your game list yet, add a game folder by clicking on the plus icon in the game list. Debes seleccionar un Juego Preferente para alojar una sala. Si todavía no tienes ningún juego en tu lista de juegos, añade una carpeta de juegos dando click al icono del más (+) en la lista de juegos. - + Unable to find an internet connection. Check your internet settings. No se ha podido encontrar una conexión a Internet. Revisa tu configuración de Internet. - + Unable to connect to the host. Verify that the connection settings are correct. If you still cannot connect, contact the room host and verify that the host is properly configured with the external port forwarded. No se pudo conectar con el anfitrión. Asegúrate de que la configuración de Internet es correcta. Si aún no puedes conectarte, contacta con el anfitrión de la sala y asegúrate de que éste está configurado correctamente con el puerto externo de reenvío. - + Unable to connect to the room because it is already full. No se ha podido conectar a la sala porque está llena. - + Creating a room failed. Please retry. Restarting Citra might be necessary. No se pudo crear una sala. Por favor, reinténtalo. Puede que se necesite reiniciar Citra. - + The host of the room has banned you. Speak with the host to unban you or try a different room. El anfitrión de la sala te ha baneado. Póngase en contacto con el anfitrión para que te desbanee o prueba en otra sala. - + Version mismatch! Please update to the latest version of Citra. If the problem persists, contact the room host and ask them to update the server. ¡Versión incompatible! Por favor, actualice a la última versión de Citra. Si el problema persiste, póngase en contacto con el anfitrión de la sala y pide que actualicen el servidor. - + Incorrect password. Contraseña incorrecta. - + An unknown error occurred. If this error continues to occur, please open an issue Error desconocido. Si este error sigue ocurriendo, por favor, háznoslo saber. - + Connection to room lost. Try to reconnect. Se ha perdido la conexión a la sala. Intenta reconectarte a ella. - + You have been kicked by the room host. Has sido expulsado por el administrador de la sala. - + MAC address is already in use. Please choose another. Esta dirección MAC ya está en uso. Por favor, escoge otra. - + Your Console ID conflicted with someone else's in the room. Please go to Emulation > Configure > System to regenerate your Console ID. @@ -6347,19 +6347,19 @@ Please go to Emulation > Configure > System to regenerate your Console ID. Por favor, ve a Emulación > Configurar... > Sistema para regenerar tu ID de Consola. - + You do not have enough permission to perform this action. No tienes permisos para hacer esta acción. - + The user you are trying to kick/ban could not be found. They may have left the room. El usuario al que estás intentando expulsar/banear no pudo ser encontrado. Puede que haya dejado la sala. - + Error Error @@ -6367,37 +6367,37 @@ Puede que haya dejado la sala. OptionSetDialog - + Options Opciones - + Unset Desconfigurar - + unknown desconocido - + %1 &lt;%2> %3 %1 &lt;%2> %3 - + Range: %1 - %2 Rango: %1 - %2 - + custom personalizado - + %1 (0x%2) %3 %1 (0x%2) %3 @@ -6405,32 +6405,32 @@ Puede que haya dejado la sala. OptionsDialog - + Options Opciones - + Double click to see the description and change the values of the options. Haz doble click para ver la descripción y cambiar los valores de las opciones. - + Specific Específico - + Generic Genérico - + Name Nombre - + Value Valor @@ -6438,157 +6438,157 @@ Puede que haya dejado la sala. QObject - + Supported image files (%1) Archivos de imagen soportados (%1) - + Open File Abrir Archivo - + Error Error - + Couldn't load the camera La cámara no se pudo cargar - + Couldn't load %1 No se pudo cargar %1 - - + + Shift Shift - - + + Ctrl Ctrl - - + + Alt Alt - - - + + + [not set] [no establecido] - - + + Hat %1 %2 Rotación %1 %2 - - - - - - + + + + + + Axis %1%2 Axis %1%2 - - + + Button %1 Botón %1 - + GC Axis %1%2 GC Axis %1%2 - + GC Button %1 GC Botón %1 - - - + + + [unknown] [desconocido] - + [unused] [sin usar] - + auto auto - + true true - + false false - - + + none none - + %1 (0x%2) %1 (0x%2) - + Invalid region Región no válida - + Installed Titles Títulos Instalados - + System Titles Títulos de Sistema - + Add New Game Directory Añadir Nuevo Directorio de Juegos - + Not playing a game No está jugando - + %1 is not playing a game %1 no está jugando a ningún juego - + %1 is playing %2 %1 está jugando a %2 @@ -6596,7 +6596,7 @@ Puede que haya dejado la sala. QtKeyboard - + Software Keyboard Teclado de Software @@ -6604,27 +6604,27 @@ Puede que haya dejado la sala. QtKeyboardDialog - + Text length is not correct (should be %1 characters) La longitud del texto no es correcta (debe ser de %1 caracteres) - + Text is too long (should be no more than %1 characters) Texto demasiado largo (límite de %1 caracteres) - + Blank input is not allowed ¡No puedes dejarlo en blanco! - + Empty input is not allowed ¡No puedes dejarlo vacío! - + Validation error Error de validación @@ -6632,12 +6632,12 @@ Puede que haya dejado la sala. QtMiiSelectorDialog - + Mii Selector Selector de Miis - + Standard Mii Mii estándar @@ -6645,95 +6645,95 @@ Puede que haya dejado la sala. RecordDialog - + View Record Ver grabación - + Client Cliente - - + + Process: Proceso: - - + + Thread: Hilo: - - + + Session: Sesión: - + Server Servidor - + General General - + Client Port: Puerto del Cliente: - + Service: Servicio: - + Function: Función: - + Command Buffer Buffer de Comandos - + Select: Select: - + Request Untranslated Petición sin traducir - + Request Translated Petición traducida - + Reply Untranslated Respuesta sin traducir - + Reply Translated Respuesta traducida - + OK OK - + null null @@ -6741,37 +6741,37 @@ Puede que haya dejado la sala. RegistersWidget - + Registers Registros - + VFP Registers Registros VFP - + VFP System Registers Registro de Sistema VFP - + Vector Length Longitud del Vector - + Vector Stride Paso de Vector - + Rounding Mode Modo Aproximado - + Vector Iteration Count Cuenta de Iteraciones del Vector @@ -6779,7 +6779,7 @@ Puede que haya dejado la sala. SequenceDialog - + Enter a hotkey Introduzca una tecla de atajo @@ -6787,7 +6787,7 @@ Puede que haya dejado la sala. WaitTreeEvent - + reset type = %1 reset type = %1 @@ -6795,12 +6795,12 @@ Puede que haya dejado la sala. WaitTreeMutex - + locked %1 times by thread: locked %1 times by thread: - + free free @@ -6808,7 +6808,7 @@ Puede que haya dejado la sala. WaitTreeMutexList - + holding mutexes holding mutexes @@ -6816,12 +6816,12 @@ Puede que haya dejado la sala. WaitTreeObjectList - + waiting for all objects waiting for all objects - + waiting for one of the following objects waiting for one of the following objects @@ -6829,12 +6829,12 @@ Puede que haya dejado la sala. WaitTreeSemaphore - + available count = %1 available count = %1 - + max count = %1 max count = %1 @@ -6842,112 +6842,112 @@ Puede que haya dejado la sala. WaitTreeThread - + running running - + ready ready - + waiting for address 0x%1 waiting for address 0x%1 - + sleeping sleeping - + waiting for IPC response waiting for IPC response - + waiting for objects waiting for objects - + waiting for HLE return waiting for HLE return - + dormant dormant - + dead dead - + PC = 0x%1 LR = 0x%2 PC = 0x%1 LR = 0x%2 - + default default - + all all - + AppCore AppCore - + SysCore SysCore - + Unknown processor %1 Unknown processor %1 - + object id = %1 object id = %1 - + processor = %1 processor = %1 - + thread id = %1 thread id = %1 - + process = %1 (%2) process = %1 (%2) - + priority = %1(current) / %2(normal) priority = %1(current) / %2(normal) - + last running ticks = %1 last running ticks = %1 - + not holding mutex not holding mutex @@ -6955,7 +6955,7 @@ Puede que haya dejado la sala. WaitTreeThreadList - + waited by thread waited by thread @@ -6963,17 +6963,17 @@ Puede que haya dejado la sala. WaitTreeTimer - + reset type = %1 reset type = %1 - + initial delay = %1 initial delay = %1 - + interval delay = %1 interval delay = %1 @@ -6981,27 +6981,27 @@ Puede que haya dejado la sala. WaitTreeWaitObject - + [%1]%2 %3 [%1]%2 %3 - + waited by no thread waited by no thread - + one shot one shot - + sticky sticky - + pulse pulse @@ -7009,7 +7009,7 @@ Puede que haya dejado la sala. WaitTreeWidget - + Wait Tree Árbol de Espera diff --git a/dist/languages/fi.ts b/dist/languages/fi.ts index 492b539ab..9b51542da 100644 --- a/dist/languages/fi.ts +++ b/dist/languages/fi.ts @@ -2,17 +2,17 @@ ARMRegisters - + ARM Registers ARM-rekisterit - + Register Rekisteri - + Value Arvo @@ -20,27 +20,27 @@ AboutDialog - + About Citra Tietoa Citrasta - - <html><head/><body><p><img src=":/icons/citra.png"/></p></body></html> - <html><head/><body><p><img src=":/icons/citra.png"/></p></body></html> + + <html><head/><body><p><img src=":/icons/lime.png"/></p></body></html> + <html><head/><body><p><img src=":/icons/lime.png"/></p></body></html> - + <html><head/><body><p><span style=" font-size:28pt;">Citra</span></p></body></html> <html><head/><body><p><span style=" font-size:28pt;">Citra</span></p></body></html> - + <html><head/><body><p>%1 | %2-%3 (%4)</p></body></html> <html><head/><body><p>%1 | %2-%3 (%4)</p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -57,12 +57,12 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">Tätä ohjelmistoa ei saa käyttää laittomasti hankittujen pelien pelaamiseen.</span></p></body></html> - + <html><head/><body><p><a href="https://citra-emu.org/"><span style=" text-decoration: underline; color:#039be5;">Website</span></a> | <a href="https://community.citra-emu.org/"><span style=" text-decoration: underline; color:#039be5;">Forum</span></a> | <a href="https://github.com/citra-emu"><span style=" text-decoration: underline; color:#039be5;">Source Code</span></a> | <a href="https://github.com/citra-emu/citra/graphs/contributors"><span style=" text-decoration: underline; color:#039be5;">Contributors</span></a> | <a href="https://github.com/citra-emu/citra/blob/master/license.txt"><span style=" text-decoration: underline; color:#039be5;">License</span></a></p></body></html> <html><head/><body><p><a href="https://citra-emu.org/"><span style=" text-decoration: underline; color:#039be5;">Nettisivu</span></a> | <a href="https://community.citra-emu.org/"><span style=" text-decoration: underline; color:#039be5;">Foorumit</span></a> | <a href="https://github.com/citra-emu"><span style=" text-decoration: underline; color:#039be5;">Lähdekoodi</span></a> | <a href="https://github.com/citra-emu/citra/graphs/contributors"><span style=" text-decoration: underline; color:#039be5;">Tukijat</span></a> | <a href="https://github.com/citra-emu/citra/blob/master/license.txt"><span style=" text-decoration: underline; color:#039be5;">Lisenssi</span></a></p></body></html> - + <html><head/><body><p><span style=" font-size:7pt;">&quot;3DS&quot; is a trademark of Nintendo. Citra is not affiliated with Nintendo in any way.</span></p></body></html> <html><head/><body><p><span style=" font-size:7pt;">&quot;3DS&quot; on Nintendon tuotemerkki. Citra ei ole millään lailla Nintendon yhteistyökumppani.</span></p></body></html> @@ -70,47 +70,47 @@ p, li { white-space: pre-wrap; } BreakPointModel - + Pica command loaded Pica-komento ladattu - + Pica command processed Pica-komento käsitelty - + Incoming primitive batch Tuleva alkuullinen erä - + Finished primitive batch Alkuullinen erä viimeistelty - + Vertex shader invocation Vertex-varjostimen hyödyntäminen - + Incoming display transfer Tuleva näytönvaihto - + GSP command processed GSP-komento käsitelty - + Buffers swapped Puskurit vaihdettu - + Unknown debug context event Tuntematon debug-kontekstitapahtuma @@ -118,32 +118,32 @@ p, li { white-space: pre-wrap; } CalibrationConfigurationDialog - + Communicating with the server... Kommunikoidaan palvelimen kanssa... - + Cancel Peruuta - + Touch the top left corner <br>of your touchpad. Kosketa kosketuslevyn <br>vasenta yläreunaa. - + Now touch the bottom right corner <br>of your touchpad. Kosketa kosketuslevyn <br>oikeaa alareunaa. - + Configuration completed! Kokoonpano suoritettu! - + OK OK @@ -151,93 +151,93 @@ p, li { white-space: pre-wrap; } ChatRoom - + Room Window Huoneen ikkuna - + Send Chat Message Lähetä viesti keskusteluun - + Send Message Lähetä viesti - + Members Jäsenet - + %1 has joined %1 liittyi keskusteluun - + %1 has left %1 on lähtenyt - + %1 has been kicked %1 on potkaistu - + %1 has been banned %1 on saanut porttikiellon - + %1 has been unbanned %1 :n porttikielto on poistettu - + View Profile Katso profiili - - + + Block Player Estä pelaaja - + When you block a player, you will no longer receive chat messages from them.<br><br>Are you sure you would like to block %1? Kun estät pelaajan, et voi vastaanottaa viestejä heiltä.<br><br>Oletko varma että haluat estää pelaajan %1? - + Kick Potkaise - + Ban Anna porttikielto - + Kick Player Potkaise pelaaja - + Are you sure you would like to <b>kick</b> %1? Oletko varma, että haluat <b>potkaista</b> pelaajan %1? - + Ban Player Anna porttikielto pelaajalle - + Are you sure you would like to <b>kick and ban</b> %1? This would ban both their forum username and their IP address. @@ -249,22 +249,22 @@ Tämä antaa porttikiellon heidän käyttäjänimelleen ja IP-osoitteelleen. ClientRoom - + Room Window Huoneen ikkuna - + Room Description Huoneen kuvaus - + Moderation... Ylläpito... - + Leave Room Lähde huoneesta @@ -272,17 +272,17 @@ Tämä antaa porttikiellon heidän käyttäjänimelleen ja IP-osoitteelleen. ClientRoomWindow - + Connected Yhdistetty - + Disconnected Yhteys katkaistu - + %1 (%2/%3 members) - connected %1 (%2/%3 jäsentä) - yhdistetty @@ -290,108 +290,108 @@ Tämä antaa porttikiellon heidän käyttäjänimelleen ja IP-osoitteelleen. CompatDB - + Report Compatibility Ilmoita yhteensopivuudesta - - + + Report Game Compatibility Ilmoita pelin yhteensopivuudesta - + <html><head/><body><p><span style=" font-size:10pt;">Should you choose to submit a test case to the </span><a href="https://citra-emu.org/game/"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">Citra Compatibility List</span></a><span style=" font-size:10pt;">, The following information will be collected and displayed on the site:</span></p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Hardware Information (CPU / GPU / Operating System)</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Which version of Citra you are running</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The connected Citra account</li></ul></body></html> <html><head/><body><p><span style=" font-size:10pt;">Jos lähetät testitapauksen </span><a href="https://citra-emu.org/game/"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">Citran Yhteensopivuuslistaan</span></a><span style=" font-size:10pt;">, seuraavat tiedot kerätään ja näytetään sivustossa:</span></p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Laitteiston tiedot (prosessori / näytönohjain / käyttöjärjestelmä)</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Mitä Citra:n versiota käytät</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Yhdistetty Citra-tunnus</li></ul></body></html> - + Perfect Täydellinen - + <html><head/><body><p>Game functions flawlessly with no audio or graphical glitches.</p></body></html> <html><head/><body><p>Peli toimii virheettömästi ilman ääni- tai grafiikkaongelmia.</p></body></html> - + Great - + <html><head/><body><p>Game functions with minor graphical or audio glitches and is playable from start to finish. May require some workarounds.</p></body></html> <html><head/><body><p>Peli toimii vähäisillä ääni- tai grafiikkaongelmilla ja on pelattavissa alusta loppuun. Saattaa tarvita joitakin väliaikaisia korjauksia.</p></body></html> - + Okay Hyvä - + <html><head/><body><p>Game functions with major graphical or audio glitches, but game is playable from start to finish with workarounds.</p></body></html> <html><head/><body><p>Peli toimii merkittävillä ääni- tai grafiikkaongelmilla, mutta on pelattavissa alusta loppuun käyttäen väliaikaisia korjauksia.</p></body></html> - + Bad Huono - + <html><head/><body><p>Game functions, but with major graphical or audio glitches. Unable to progress in specific areas due to glitches even with workarounds.</p></body></html> <html><head/><body><p>Peli toimii, mutta merkittävillä ääni- tai grafiikkaongelmilla. Pelissä ei voi edetä tietyissä alueissa virheiden takia, ei edes väliaikaisilla korjauksilla.</p></body></html> - + Intro/Menu Valikko/intro - + <html><head/><body><p>Game is completely unplayable due to major graphical or audio glitches. Unable to progress past the Start Screen.</p></body></html> <html><head/><body><p>Peli on pelaamiskelvoton ääni- tai grafiikkaongelmien takia. Aloitusruudusta ei voi edetä.</p></body></html> - + Won't Boot Ei käynnisty - + <html><head/><body><p>The game crashes when attempting to startup.</p></body></html> <html><head/><body><p>Peli kaatuu, kun sitä yrittää käynnistää.</p></body></html> - + <html><head/><body><p>Independent of speed or performance, how well does this game play from start to finish on this version of Citra?</p></body></html> <html><head/><body><p>Suorituskyvystä tai nopeudesta riippumatta, kuinka hyvin peli toimii alusta loppuun tällä Citran versiolla?</p></body></html> - + Thank you for your submission! Kiitos ilmoituksestasi! - + Submitting Lähetetään - + Communication error Kommunikaatiovirhe - + An error occurred while sending the Testcase - + Next Seuraava @@ -399,93 +399,93 @@ Tämä antaa porttikiellon heidän käyttäjänimelleen ja IP-osoitteelleen. ConfigureAudio - + Output - + Emulation: Emulaatio: - + HLE (fast) HLE (nopea) - + LLE (accurate) LLE (tarkka) - + LLE multi-core LLE moniytiminen - + Output Type - + Output Device - + This post-processing effect adjusts audio speed to match emulation speed and helps prevent audio stutter. This however increases audio latency. Tämä prosessointiefekti säätää äänen nopeuden samaan nopeuteen emulaation kanssa, joka auttaa ääniongelmissa. Tämä kuitenkin lisää äänen viivettä. - + Enable audio stretching Aktivoi äänen venytys - + Use global volume - + Set volume: - + Volume: Äänenvoimakkuus: - + 0 % 0 % - + Microphone Mikrofoni - + Input Type Sisääntulotyyppi - + Input Device Sisääntulolaite - - + + Auto - + %1% Volume percentage (e.g. 50%) %1% @@ -494,203 +494,203 @@ Tämä antaa porttikiellon heidän käyttäjänimelleen ja IP-osoitteelleen. ConfigureCamera - + Form Muoto - + Camera Kamera - - + + Select the camera to configure Valitse määriteltävä kamera - + Camera to configure: Kamera jota määritellään: - + Front Etukamera - + Rear Takakamera - - + + Select the camera mode (single or double) Valitse kameratila (yksittäinen tai kaksi) - + Camera mode: Kameratila: - + Single (2D) Yksittäinen (2D) - + Double (3D) Kaksi (3D) - - + + Select the position of camera to configure Valitse määriteltävän kameran sijainti - + Camera position: Kameran sijainti: - + Left Vasen - + Right Oikea - + Configuration Kokoonpano - - + + Select where the image of the emulated camera comes from. It may be an image or a real camera. Valitse, mistä emuloitu kamera tulee. Se voi olla kuva tai oikea kamera. - + Camera Image Source: Kameran kuvalähde: - + Blank (blank) Tyhjä (tyhjä) - + Still Image (image) Pysyvä Kuva (kuva) - + System Camera (qt) Järjestelmän kamera (qt) - + File: Tiedosto: - + ... ... - - + + Select the system camera to use Valitse laitteen kamera, jota käytetään - + Camera: Kamera: - + <Default> <Default> - - + + Select the image flip to apply Valitse kuvan kääntö, jota käytetään - + Flip: Kääntö: - + None Ei mitään - + Horizontal Vaakasuora - + Vertical Pystysuora - + Reverse Käänteinen - + Select an image file every time before the camera is loaded Valitse kuvatiedosto, jota ladata jokainen kerta kun kamera ladataan - + Prompt before load Kysy ennen latausta - + Preview Esikatselu - + Resolution: 512*384 Resoluutio: 512*384 - + Click to preview Katso esikatselu - + Resolution: %1*%2 Resoluutio: %1*%2 - + Supported image files (%1) Tuetut kuvatiedostot (%1) - + Open File Avaa Tiedosto @@ -698,87 +698,87 @@ Tämä antaa porttikiellon heidän käyttäjänimelleen ja IP-osoitteelleen. ConfigureCheats - - + + Cheats - + Add Cheat - + Available Cheats: - + Name - + Type - + Save - + Delete - + Name: - + Notes: - + Code: - + Would you like to save the current cheat? - - - + + + Save Cheat - + Please enter a cheat name. - + Please enter the cheat code. - + Cheat code line %1 is not valid. Would you like to ignore the error and continue? - - + + [new cheat] @@ -786,127 +786,127 @@ Would you like to ignore the error and continue? ConfigureDebug - + Form Muoto - + GDB GDB - + Enable GDB Stub - + Port: Portti: - + Logging Kirjaus - + Global Log Filter Globaalinen Kirjaussiivilö - + Show Log Console (Windows Only) Näytä Kirjauskonsoli (Vain Windows) - + Open Log Location Avaa Kirjan Sijainti - + CPU - + Use global clock speed - + Set clock speed: - + CPU Clock Speed - + <html><body>Changes the emulated CPU clock frequency.<br>Underclocking can increase performance but may cause the game to freeze.<br>Overclocking may reduce in game lag but also might cause freezes</body></html> - + <html><head/><body><p>Enables the use of the ARM JIT compiler for emulating the 3DS CPUs. Don't disable unless for debugging purposes</p></body></html> - + Enable CPU JIT Aktivoi Prosessorin JIT - + Enable debug renderer - + Dump command buffers - + Miscellaneus - + <html><head/><body><p>Introduces a delay to the first ever launched app thread if LLE modules are enabled, to allow them to initialize.</p></body></html> - + Delay app start for LLE module initialization - + <html><head/><body><p>CPU Clock Speed Information<br/>Underclocking can increase performance but may cause the game to freeze.<br/>Overclocking may reduce in game lag but also might cause freezes</p></body></html> - + Validation layer not available - + Unable to enable debug renderer because the layer <strong>VK_LAYER_KHRONOS_validation</strong> is missing. Please install the Vulkan SDK or the appropriate package of your distribution - + Command buffer dumping not available - + Unable to enable command buffer dumping because the layer <strong>VK_LAYER_LUNARG_api_dump</strong> is missing. Please install the Vulkan SDK or the appropriate package of your distribution @@ -914,92 +914,92 @@ Would you like to ignore the error and continue? ConfigureDialog - + Citra Configuration Citran asetukset - - - + + + General Yleinen - - - + + + System Järjestelmä - - + + Input Sisäänpano - - + + Hotkeys Pikanäppäimet - - + + Graphics Grafiikat - - + + Enhancements Parannukset - - - + + + Audio Ääni - - + + Camera Kamera - - + + Debug Debugaus - - + + Storage - - + + Web Netti - - + + UI Käyttöliittymä - + Controls Ohjaus - + Advanced @@ -1007,278 +1007,278 @@ Would you like to ignore the error and continue? ConfigureEnhancements - + Form - + Renderer - + Internal Resolution - + Auto (Window Size) - + Native (400x240) - + 2x Native (800x480) - + 3x Native (1200x720) - + 4x Native (1600x960) - + 5x Native (2000x1200) - + 6x Native (2400x1440) - + 7x Native (2800x1680) - + 8x Native (3200x1920) - + 9x Native (3600x2160) - + 10x Native (4000x2400) - + Enable Linear Filtering - + Post-Processing Shader - + Texture Filter - + None - + Anime4K - + Bicubic - + ScaleForce - + xBRZ - + MMPX - + Stereoscopy - + Stereoscopic 3D Mode - + Off - - + + Side by Side - + Anaglyph - + Interlaced - + Reverse Interlaced - + Depth - + % - + Eye to Render in Monoscopic Mode - + Left Eye (default) - + Right Eye - + Layout - + Screen Layout: - + Default - + Single Screen - + Large Screen - + Separate Windows - + Hybrid Screen - + Swap Screens - + Rotate Screens Upright - + Large Screen Proportion: - + Background Color: - + Utility - + <html><head/><body><p>Replace textures with PNG files.</p><p>Textures are loaded from load/textures/[Title ID]/.</p></body></html> - + Use Custom Textures - + <html><head/><body><p>Dump textures to PNG files.</p><p>Textures are dumped to dump/textures/[Title ID]/.</p></body></html> - + Dump Textures - + <html><head/><body><p>Load all custom textures into memory on boot, instead of loading them when the game requires them.</p></body></html> - + Preload Custom Textures - + <html><head/><body><p>Load custom textures asynchronously with background threads to reduce loading stutter</p></body></html> - + Async Custom Texture Loading @@ -1286,136 +1286,136 @@ Would you like to ignore the error and continue? ConfigureGeneral - + Form Muoto - + General Yleinen - + Confirm exit while emulation is running Hyväksy poistuminen emulaation käynnissäolossa - + Pause emulation when in background Pysäytä emulointi kun taustalla - + Mute audio when in background - + Hide mouse on inactivity - + Enable Gamemode - + Updates Päivitykset - + Check for updates on start Tarkista päivitykset käynnistyessä - + Silently auto update after closing Hiljaisesti päivitä automaattisesti sulkemisen jälkeen - + Emulation Emulaatio - + Region: Alue: - + Auto-select Automaattinen valinta - + Use global emulation speed - + Set emulation speed: - + Emulation Speed: - + Screenshots - + Use global screenshot path - + Set screenshot path: - + Save Screenshots To - + ... - + Reset All Settings Tyhjennä Kaikki Asetukset - - - - - + + + + + unthrottled - + Select Screenshot Directory - + Citra Citra - + Are you sure you want to <b>reset your settings</b> and close Citra? Oletko varma, että haluat <b>tyhjentää asetukset</b> ja sulkea Citran? @@ -1423,157 +1423,157 @@ Would you like to ignore the error and continue? ConfigureGraphics - + Form Muoto - + Graphics - + API Settings - + Graphics API - + Software - + OpenGL - + Vulkan - + Physical Device - + OpenGL Renderer - + SPIR-V Shader Generation - + Renderer Renderöijä - + <html><head/><body><p>Use the selected graphics API to accelerate shader emulation.</p><p>Requires a relatively powerful GPU for better performance.</p></body></html> - + Enable Hardware Shader Aktivoi Laitteistovarjostin - + <html><head/><body><p>Correctly handle all edge cases in multiplication operation in shaders. </p><p>Some games requires this to be enabled for the hardware shader to render properly.</p><p>However this would reduce performance in most games.</p></body></html> - + Accurate Multiplication Tarkka Kertominen - + <html><head/><body><p>Use the JIT engine instead of the interpreter for software shader emulation. </p><p>Enable this for better performance.</p></body></html> - + Enable Shader JIT Aktivoi JIT-Varjostin - + <html><head/><body><p>Compile shaders using background threads to avoid shader compilation stutter. Expect temporary graphical glitches</p></body></html> - + Enable Async Shader Compilation - + <html><head/><body><p>Perform presentation on separate threads. Improves performance when using Vulkan in most games.</p></body></html> - + Enable Async Presentation - + Advanced - + <html><head/><body><p>Overrides the sampling filter used by games. This can be useful in certain cases with poorly behaved games when upscaling. If unsure set this to Game Controlled</p></body></html> - + Texture Sampling - + Game Controlled - + Nearest Neighbor - + Linear - + <html><head/><body><p>Reduce stuttering by storing and loading generated shaders to disk.</p></body></html> - + Use Disk Shader Cache - + VSync prevents the screen from tearing, but some graphics cards have lower performance with VSync enabled. Keep it enabled if you don't notice a performance difference. - + Enable VSync Aktivoi V-Sync @@ -1581,63 +1581,63 @@ Would you like to ignore the error and continue? ConfigureHotkeys - + Hotkey Settings Pikanäppäinasetukset - + Double-click on a binding to change it. Kaksoisklikkaa vaihtaaksesi pikanäppäintä. - + Clear All - + Restore Defaults - + Action Toiminta - + Hotkey Pikanäppäin - - + + Conflicting Key Sequence Ristiriitainen näppäinsarja - + The entered key sequence is already assigned to: %1 - + A 3ds button - + Restore Default - + Clear - + The default key sequence is already assigned to: %1 @@ -1645,307 +1645,307 @@ Would you like to ignore the error and continue? ConfigureInput - + ConfigureInput Konfiguroi Syöttö - + Profile Profiili - + New Uusi - + Delete Poista - + Rename Nimeä Uudelleen - + Face Buttons Perusnäppäimet - + Y: Y: - + X: X: - + B: B: - + A: A: - + Directional Pad Nuolinäppäimet - - - + + + Up: Ylös: - - - + + + Down: Alas: - - - + + + Left: Vasen: - - - + + + Right: Oikea: - + Misc. Sekalainen. - + Start: Start: - + Select: Select: - + Home: Koti: - + Power: - + Circle Mod: - + GPIO14: GPIO14: - + Debug: Debugaus: - + Circle Pad - - - + + + Set Analog Stick Aseta Analogitikku - - + + Deadzone: 0 - + C-Stick C-Tikku - + Shoulder Buttons Olkapainikkeet - + ZR: ZR: - + ZL: ZL: - + L: L: - + R: R: - + Motion / Touch... Liike / Kosketus... - + Auto Map - + Clear All Tyhjennä Kaikki - + Restore Defaults Palauta oletusarvot - - - + + + Clear Tyhjennä - - - + + + [not set] [ei asetettu] - - - + + + Restore Default Palauta oletusarvo - - + + Information Informaatio - + After pressing OK, first move your joystick horizontally, and then vertically. Sen jälkeen, kun painat OK, liikuta tikkusi aluksi vaakasuorasti, sitten pystysuorasti. - - + + Deadzone: %1% - - + + Modifier Scale: %1% - + Warning - + Auto mapping failed. Your controller may not have a corresponding mapping - + After pressing OK, press any button on your joystick - + [press key] [paina näppäintä] - + Error! Virhe! - + You're using a key that's already bound. Käytät näppäintä joka on jo sidottu. - + New Profile Uusi Profiili - + Enter the name for the new profile. Laita nimi uudelle profiilille. - + Delete Profile Poista Profiili - + Delete profile %1? Poista profiili %1? - + Rename Profile Nimeä Profiili Uudelleen - + New name: Uusi nimi: - + Duplicate profile name - + Profile name already exists. Please choose a different name. Profiilin nimi on jo olemassa. Valitse toinen nimi. @@ -1953,198 +1953,198 @@ Would you like to ignore the error and continue? ConfigureMotionTouch - + Configure Motion / Touch Konfiguroi Liike / Kosketus - + Motion Liike - + Motion Provider: Liiketunnistin: - + Sensitivity: Herkkyys: - + Controller: - - - - - + + + + + Configure Konfiguroi - + Touch Kosketus - + Touch Provider: Kosketustunnistin: - + Calibration: Kalibraatio: - + (100, 50) - (1800, 850) (100, 50) - (1800, 850) - + Use button mapping: - + CemuhookUDP Config CemuhookUDP:n Konfiguraatio - + You may use any Cemuhook compatible UDP input source to provide motion and touch input. Voit käyttää mitä vain Cemuhook-yhteensopivaa UDP-sisääntuloa antaaksesi kosketus- ja liikesisääntulon. - + Server: Palvelin: - + Port: Portti: - + Pad: - + Pad 1 - + Pad 2 - + Pad 3 - + Pad 4 - + Learn More Lisätietoa - - + + Test Testi - + Mouse (Right Click) Hiiri (Oikea Klikkaus) - - + + CemuhookUDP CemuhookUDP - + SDL - + Emulator Window Emulaattori-ikkuna - + <a href='https://citra-emu.org/wiki/using-a-controller-or-android-phone-for-motion-or-touch-input'><span style="text-decoration: underline; color:#039be5;">Learn More</span></a> <a href='https://citra-emu.org/wiki/using-a-controller-or-android-phone-for-motion-or-touch-input'><span style="text-decoration: underline; color:#039be5;">Opi Lisää</span></a> - + Information - + After pressing OK, press a button on the controller whose motion you want to track. - + [press button] - + Testing Testaus - + Configuring Konfigurointi - + Test Successful Testi Onnistui - + Successfully received data from the server. Tieto saatu palvelimelta onnistuneesti. - + Test Failed Testi Epäonnistui - + Could not receive valid data from the server.<br>Please verify that the server is set up correctly and the address and port are correct. Sopivaa tietoa ei voitu vastaanottaa palvelimelta.<br>Varmista, että palvelin on asetettu oikein, ja että osoite ja portti ovat oikeat. - + Citra Citra - + UDP Test or calibration configuration is in progress.<br>Please wait for them to finish. @@ -2152,97 +2152,97 @@ Would you like to ignore the error and continue? ConfigurePerGame - + Dialog - + Info - + Size - + Format - + Name - + Filepath - + Title ID - + Reset Game Settings - + Use global configuration (%1) - + General - + System - + Enhancements - + Graphics - + Audio - + Debug - + Cheats - + Properties - + Citra - + Are you sure you want to <b>reset your settings for this game</b>? @@ -2250,65 +2250,65 @@ Would you like to ignore the error and continue? ConfigureStorage - + Form - + Storage - + Use Virtual SD - + Custom Storage - + Use Custom Storage - + NAND Directory - - + + Open - - + + NOTE: This does not move the contents of the previous directory to the new one. - - + + Change - + SDMC Directory - + Select NAND Directory - + Select SDMC Directory @@ -2316,1064 +2316,1064 @@ Would you like to ignore the error and continue? ConfigureSystem - + Form Muoto - + System Settings Järjestelmäasetukset - + Enable New 3DS mode - + Use LLE applets (if installed) - + Username Käyttäjänimi - + Birthday Syntymäpäivä - + January Tammikuu - + February Helmikuu - + March Maaliskuu - + April Huhtikuu - + May Toukokuu - + June Kesäkuu - + July Heinäkuu - + August Elokuu - + September Syyskuu - + October Lokakuu - + November Marraskuu - + December Joulukuu - + Language Kieli - + Note: this can be overridden when region setting is auto-select Huom: tämä voidaan korvata jos alueasetukset ovat automaattiset - + Japanese (日本語) Japani (日本語) - + English Englanti - + French (français) Ranska (français) - + German (Deutsch) Saksa (Deutsch) - + Italian (italiano) Italia (italiano) - + Spanish (español) Espanja (español) - + Simplified Chinese (简体中文) Yksinkertaistettu Kiina (简体中文) - + Korean (한국어) Korea (한국어) - + Dutch (Nederlands) Hollanti (Nederlands) - + Portuguese (português) Portugali (português) - + Russian (Русский) Venäjä (Русский) - + Traditional Chinese (正體中文) Tavallinen Kiina (正體中文) - + Sound output mode Äänen ulostulotila - + Mono Mono - + Stereo Stereo - + Surround Surround - + Country Maa - + Clock Kello - + System Clock Järjestelmän Kello - + Fixed Time Yksittäinen Aika - + Startup time Aloitusaika - + yyyy-MM-ddTHH:mm:ss vvvv-KK-ppATT:mm:ss - + Offset time - + days - + HH:mm:ss - + Initial System Ticks - + Random - + Fixed - + Initial System Ticks Override - + Play Coins: Play-Kolikot: - + Run System Setup when Home Menu is launched - + Console ID: Konsolin Tunnus: - + Regenerate Uudista - + 3GX Plugin Loader: - + Enable 3GX plugin loader - + Allow games to change plugin loader state - + Download System Files from Nitendo servers - + Minimal - + Old 3DS - + New 3DS - + JPN - + USA - + EUR - + AUS - + CHN - + KOR - + TWN - + Download - + System settings are available only when game is not running. Järjestelmäasetukset ovat vain saatavilla kun peli ei ole päällä. - + Japan Japani - + Anguilla Anguilla - + Antigua and Barbuda Antigua ja Barbuda - + Argentina Argentiina - + Aruba Aruba - + Bahamas Bahama - + Barbados Barbados - + Belize Belize - + Bolivia Bolivia - + Brazil Brasilia - + British Virgin Islands Brittiläiset Neitsytsaaret - + Canada Kanada - + Cayman Islands Caymansaaret - + Chile Chile - + Colombia Kolumbia - + Costa Rica Costa Rica - + Dominica Dominica - + Dominican Republic Dominikaaninen tasavalta - + Ecuador Ecuador - + El Salvador El Salvador - + French Guiana Ranskan Guayana - + Grenada Grenada - + Guadeloupe Guadeloupe - + Guatemala Guatemala - + Guyana Guyana - + Haiti Haiti - + Honduras Honduras - + Jamaica Jamaika - + Martinique Martinique - + Mexico Meksiko - + Montserrat Montserrat - + Netherlands Antilles Alankomaiden Antillit - + Nicaragua Nicaragua - + Panama Panama - + Paraguay Paraguay - + Peru Peru - + Saint Kitts and Nevis Saint Kitts ja Nevis - + Saint Lucia Saint Lucia - + Saint Vincent and the Grenadines Saint Vincent ja Grenadiinit - + Suriname Suriname - + Trinidad and Tobago Trinidad ja Tobago - + Turks and Caicos Islands Turks- ja Caicossaaret - + United States Yhdysvallat - + Uruguay Uruguay - + US Virgin Islands Yhdysvaltojen Neitsytsaaret - + Venezuela Venezuela - + Albania Albania - + Australia Australia - + Austria Itävalta - + Belgium Belgia - + Bosnia and Herzegovina Bosnia ja Hertsegovina - + Botswana Botswana - + Bulgaria Bulgaria - + Croatia Kroatia - + Cyprus Kypros - + Czech Republic Tšekin tasavalta - + Denmark Tanska - + Estonia Viro - + Finland Suomi - + France Ranska - + Germany Saksa - + Greece Kreikka - + Hungary Unkari - + Iceland Islanti - + Ireland Irlanti - + Italy Italia - + Latvia Latvia - + Lesotho Lesotho - + Liechtenstein Liechtenstein - + Lithuania Liettua - + Luxembourg Luxembourg - + Macedonia Makedonia - + Malta Malta - + Montenegro Montenegro - + Mozambique Mozambik - + Namibia Namibia - + Netherlands Alankomaat - + New Zealand Uusi Seelanti - + Norway Norja - + Poland Puola - + Portugal Portugali - + Romania Romania - + Russia Venäjä - + Serbia Serbia - + Slovakia Slovakia - + Slovenia Slovenia - + South Africa Etelä-Afrikka - + Spain Espanja - + Swaziland Swazimaa - + Sweden Ruotsi - + Switzerland Sveitsi - + Turkey Turkki - + United Kingdom Yhdistyneet Kuningaskunnat - + Zambia Zambia - + Zimbabwe Zimbabwe - + Azerbaijan Azerbaidžan - + Mauritania Mauritania - + Mali Mali - + Niger Niger - + Chad Chad - + Sudan Sudan - + Eritrea Eritrea - + Djibouti Djibouti - + Somalia Somalia - + Andorra Andorra - + Gibraltar Gibraltar - + Guernsey Guernsey - + Isle of Man Mansaari - + Jersey Jersey - + Monaco Monaco - + Taiwan Taiwan - + South Korea Etelä-Korea - + Hong Kong Hong Kong - + Macau Macao - + Indonesia Indonesia - + Singapore Singapore - + Thailand Thaimaa - + Philippines Filippiinit - + Malaysia Malaysia - + China Kiina - + United Arab Emirates Arabiemiirikunnat - + India Intia - + Egypt Egypti - + Oman Oman - + Qatar Qatar - + Kuwait Kuwait - + Saudi Arabia Saudiarabia - + Syria Syyria - + Bahrain Bahrain - + Jordan Jordan - + San Marino San Marino - + Vatican City Vatikaani - + Bermuda Bermuda - + Download System Files from Nintendo servers - + Citra is missing keys to download system files. <br><a href='https://citra-emu.org/wiki/aes-keys/'><span style="text-decoration: underline; color:#039be5;">How to get keys?</span></a> - - + + Console ID: 0x%1 Konsolin Tunnus: 0x%1 - + This will replace your current virtual 3DS with a new one. Your current virtual 3DS will not be recoverable. This might have unexpected effects in games. This might fail, if you use an outdated config savegame. Continue? Tämä vaihtaa nykyisen virtuaalisen 3DS:än uudella. Nykyistä vituaalista 3DS:ää ei mahdollisesti voi palauttaa. Tämä voi aiheuttaa odottamattomia efektejä peleissä. Tamä voi epäonnistua jos käytät vanhentunutta konfiguraatiotallenusta. Jatka? - + Warning Varoitus - + Downloading files... - + Cancel - - + + Citra - + Downloading system files failed. - + Successfully downloaded system files. @@ -3381,90 +3381,90 @@ Would you like to ignore the error and continue? ConfigureTouchFromButton - + Configure Touchscreen Mappings - + Mapping: - + New - + Delete - + Rename - + Click the bottom area to add a point, then press a button to bind. Drag points to change position, or double-click table cells to edit values. - + Delete Point - + Button - + X X axis - + Y Y axis - + New Profile - + Enter the name for the new profile. - + Delete Profile - + Delete profile %1? - + Rename Profile - + New name: - + [press key] @@ -3472,113 +3472,113 @@ Drag points to change position, or double-click table cells to edit values. ConfigureUi - + Form Muoto - + General Yleinen - + Note: Changing language will apply your configuration. Huom: Kielen vaihto aktivoi konfiguraation. - + Interface language: Käyttöliittymän kieli: - + Theme: Teema: - + Game List Pelilista - + Icon Size: Kuvakkeen koko: - - + + None Ei mitään - + Small (24x24) Pieni (24x24) - + Large (48x48) Suuri (48x48) - + Row 1 Text: Rivin 1 Teksti: - - + + File Name Tiedoston Nimi - - + + Full Path Kokonainen Polku - - + + Title Name (short) Pelin nimi (lyhyt) - - + + Title ID Pelin Tunnus: - - + + Title Name (long) Pelin nimi (pitkä) - + Row 2 Text: Rivin 2 Teksti: - + Hide Titles without Icon Piilota pelit ilman kuvakkeita - + Single Line Mode - + <System> <System> - + English Englanti @@ -3586,135 +3586,135 @@ Drag points to change position, or double-click table cells to edit values. ConfigureWeb - + Form Muot - + Citra Web Service Citran Nettipalvelu - + By providing your username and token, you agree to allow Citra to collect additional usage data, which may include user identifying information. - - + + Verify Todenna - + Sign up Rekisteröidy - + Token: Avain: - + Username: Käyttäjänimi - + What is my token? Mikä on avaimeni? - + Web Service configuration can only be changed when a public room isn't being hosted. - + Telemetry Telemetria - + Share anonymous usage data with the Citra team Jaa anonyymejä käyttötietoja Citran tekiöiden kanssa - + Learn more Opi lisää - + Telemetry ID: Telemetria tunnus: - + Regenerate Uudista - + Discord Presence Discord läsnäolo - + Show Current Game in your Discord Status Näytä nykyinen peli Discord tilassa - + <a href='https://citra-emu.org/entry/telemetry-and-why-thats-a-good-thing/'><span style="text-decoration: underline; color:#039be5;">Learn more</span></a> <a href='https://citra-emu.org/entry/telemetry-and-why-thats-a-good-thing/'><span style="text-decoration: underline; color:#039be5;">Lue lisää</span></a> - + <a href='https://profile.citra-emu.org/'><span style="text-decoration: underline; color:#039be5;">Sign up</span></a> <a href='https://profile.citra-emu.org/'><span style="text-decoration: underline; color:#039be5;">Kirjaudu</span></a> - + <a href='https://citra-emu.org/wiki/citra-web-service/'><span style="text-decoration: underline; color:#039be5;">What is my token?</span></a> <a href='https://citra-emu.org/wiki/citra-web-service/'><span style="text-decoration: underline; color:#039be5;">Mikä on avaimeni?</span></a> - - + + Unspecified - - + + Telemetry ID: 0x%1 Telemetria tunnus: 0x%1 - + Token not verified - + Token was not verified. The change to your token has not been saved. - + Verifying... Varmennetaan... - + Verification failed Varmennus epäonnistui - + Verification failed. Check that you have entered your token correctly, and that your internet connection is working. @@ -3722,47 +3722,47 @@ Drag points to change position, or double-click table cells to edit values. DirectConnect - + Direct Connect Suora yhteys - + Server Address - + <html><head/><body><p>Server address of the host</p></body></html> - + Port Portti - + <html><head/><body><p>Port number the host is listening on</p></body></html> <html><head/><body><p>Portin numero, jota isäntä kuuntelee</p></body></html> - + 24872 24872 - + Nickname Nimimerkki - + Password Salasana - + Connect Yhdistä @@ -3770,12 +3770,12 @@ Drag points to change position, or double-click table cells to edit values. DirectConnectWindow - + Connecting Yhdistetään - + Connect Yhdistä @@ -3783,110 +3783,110 @@ Drag points to change position, or double-click table cells to edit values. DumpingDialog - + Dump Video - + Output - + Format: - - - + + + Options: - - - - + + + + ... - + Path: - + Video - - + + Encoder: - - + + Bitrate: - - + + bps - + Audio - - + + Citra - + Please specify the output path. - + output formats - + video encoders - + audio encoders - + Could not find any available %1. Please check your FFmpeg installation used for compilation. - - - - + + + + %1 (%2) - + Select Video Output Path @@ -3894,417 +3894,417 @@ Please check your FFmpeg installation used for compilation. GMainWindow - + <a href='https://citra-emu.org/entry/telemetry-and-why-thats-a-good-thing/'>Anonymous data is collected</a> to help improve Citra. <br/><br/>Would you like to share your usage data with us? <a href='https://citra-emu.org/entry/telemetry-and-why-thats-a-good-thing/'>Anonyymiä tietoa kerätään</a>parantaaksemme Citraa. <br/><br/>Haluaisitko jakaa käyttötetoa meidän kanssa? - + Telemetry Telemetria - + No Suitable Vulkan Devices Detected - + Vulkan initialization failed during boot.<br/>Your GPU may not support Vulkan 1.1, or you do not have the latest graphics driver. - - + + Current emulation speed. Values higher or lower than 100% indicate emulation is running faster or slower than a 3DS. Nykyinen emulaationopeus. Arvot yli tai ali 100% osoittavat, että emulaatio on nopeampi tai hitaampi kuin 3DS:än nopeus. - - + + How many frames per second the game is currently displaying. This will vary from game to game and scene to scene. Kuinka monta kuvaruutua peli näyttää tällä hetkellä. Tämä vaihtuu pelistä peliin ja kohtauksesta kohtaukseen. - - + + Time taken to emulate a 3DS frame, not counting framelimiting or v-sync. For full-speed emulation this should be at most 16.67 ms. - + Clear Recent Files - + &Continue - + &Pause - + Update Available Päivitys Saatavilla. - + An update is available. Would you like to install it now? Päivitys on saatavilla. Haluaisitko asentaa sen nyt? - + No Update Found Päivityksiä ei löytynyt. - + No update is found. Päivitystä ei löytynyt. - + Citra is running a game TRANSLATORS: This string is shown to the user to explain why Citra needs to prevent the computer from sleeping - - + + Invalid ROM Format Epäsopiva pelitiedoston formaatti - - + + Your ROM format is not supported.<br/>Please follow the guides to redump your <a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>game cartridges</a> or <a href='https://citra-emu.org/wiki/dumping-installed-titles/'>installed titles</a>. - + ROM Corrupted ROM Korruptoitunut - + Your ROM is corrupted. <br/>Please follow the guides to redump your <a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>game cartridges</a> or <a href='https://citra-emu.org/wiki/dumping-installed-titles/'>installed titles</a>. - + ROM Encrypted ROM Salattu - + Your ROM is encrypted. <br/>Please follow the guides to redump your <a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>game cartridges</a> or <a href='https://citra-emu.org/wiki/dumping-installed-titles/'>installed titles</a>. - + Unsupported ROM - + GBA Virtual Console ROMs are not supported by Citra. - + Error while loading ROM! Virhe ladatessa ROM:ia! - + An unknown error occurred. Please see the log for more details. - + CIA must be installed before usage CIA pitää asenaa ennen käyttöä - + Before using this CIA, you must install it. Do you want to install it now? Ennen, kun voit käyttää tätä CIA:aa, sinun täytyy asentaa se. Haluatko asentaa sen nyt? - - + + Slot %1 - + Slot %1 - %2 %3 - + Error Opening %1 Folder Virhe Avatessa %1 Kansio - - + + Folder does not exist! Kansio ei ole olemassa! - + Dumping... - - + + Cancel Peruuta - - - - - - - - - + + + + + + + + + Citra Citra - + Could not dump base RomFS. Refer to the log for details. - + Error Opening %1 Virhe avatessa %1 - + Select Directory Valitse hakemisto - + Properties - + The game properties could not be loaded. - + 3DS Executable (%1);;All Files (*.*) %1 is an identifier for the 3DS executable file extensions. - + Load File Lataa tiedosto - + Load Files Lataa tiedostoja - + 3DS Installation File (*.CIA*) 3DS Asennustiedosto (*.CIA*) - + All Files (*.*) Kaikki tiedostot (*.*) - + %1 has been installed successfully. %1 asennettiin onnistuneesti. - + Unable to open File Tiedostoa ei voitu avata - + Could not open %1 Ei voitu avata %1 - + Installation aborted Asennus keskeytetty - + The installation of %1 was aborted. Please see the log for more details - + Invalid File Sopimaton Tiedosto - + %1 is not a valid CIA %1 ei ole sopiva CIA-tiedosto - + Encrypted File Salattu Tiedosto - + %1 must be decrypted before being used with Citra. A real 3DS is required. %1 :n salaus tulee purkaa, ennen kuin sitä voi käyttää Citrassa. Tähän tarvitsee oikean 3DS:n. - + Unable to find File - + Could not find %1 - + Uninstalling '%1'... - + Failed to uninstall '%1'. - + Successfully uninstalled '%1'. - + File not found Tiedostoa ei löytynyt - + File "%1" not found Tiedosto "%1" ei löytynyt. - + Missing Citra Account Puuttuva Citra-Tunnus - + You must link your Citra account to submit test cases.<br/>Go to Emulation &gt; Configure... &gt; Web to do so. - + Savestates - + Warning: Savestates are NOT a replacement for in-game saves, and are not meant to be reliable. Use at your own risk! - - - + + + Error opening amiibo data file - + A tag is already in use. - + Game is not looking for amiibos. - + Amiibo File (%1);; All Files (*.*) Amiibo tiedosto (%1);; Kaikki tiedostot (*.*) - + Load Amiibo Lataa Amiibo - + Unable to open amiibo file "%1" for reading. - + Record Movie Tallenna Video - + Movie recording cancelled. - - + + Movie Saved - - + + The movie is successfully saved. - + Invalid Screenshot Directory - + Cannot create specified screenshot directory. Screenshot path is set back to its default value. - + Could not load video dumper - + FFmpeg could not be loaded. Make sure you have a compatible version installed. To install FFmpeg to Citra, press Open and select your FFmpeg directory. @@ -4313,158 +4313,158 @@ To view a guide on how to install FFmpeg, press Help. - + Select FFmpeg Directory - + The provided FFmpeg directory is missing %1. Please make sure the correct directory was selected. - + FFmpeg has been sucessfully installed. - + Installation of FFmpeg failed. Check the log file for details. - + Could not start video dumping.<br>Refer to the log for details. - + Recording %1 - + Playing %1 / %2 - + Movie Finished - + Speed: %1% Nopeus: %1% - + Speed: %1% / %2% Nopeus %1% / %2% - + Game: %1 FPS Peli: %1 FPS - + Frame: %1 ms Kuvaruutu: %1 ms - + VOLUME: MUTE - + VOLUME: %1% Volume percentage (e.g. 50%) - + %1 is missing. Please <a href='https://citra-emu.org/wiki/dumping-system-archives-and-the-shared-fonts-from-a-3ds-console/'>dump your system archives</a>.<br/>Continuing emulation may result in crashes and bugs. - + A system archive - + System Archive Not Found - + System Archive Missing - + Save/load Error - + Fatal Error - + A fatal error occurred. <a href='https://community.citra-emu.org/t/how-to-upload-the-log-file/296'>Check the log</a> for details.<br/>Continuing emulation may result in crashes and bugs. - + Fatal Error encountered - + Continue Jatka - + Quit Game - + OK - + Would you like to exit now? Haluatko poistua nyt? - + The game is still running. Would you like to stop emulation? Peli on viellä käynnissä. Haluatko pysäyttää emulaation? - + Playback Completed - + Movie playback completed. - + Primary Window - + Secondary Window @@ -4472,22 +4472,22 @@ To view a guide on how to install FFmpeg, press Help. GPUCommandListModel - + Command Name Komennon Nimi - + Register Rekisteri - + Mask - + New Value Uusi Arvo @@ -4495,23 +4495,23 @@ To view a guide on how to install FFmpeg, press Help. GPUCommandListWidget - + Pica Command List Pica-Komentolista - - + + Start Tracing - + Copy All Kopioi Kaikki - + Finish Tracing @@ -4519,7 +4519,7 @@ To view a guide on how to install FFmpeg, press Help. GPUCommandStreamWidget - + Graphics Debugger Grafiikkojen debuggaus @@ -4527,42 +4527,42 @@ To view a guide on how to install FFmpeg, press Help. GRenderWindow - + OpenGL not available! - + OpenGL shared contexts are not supported. - + Error while initializing OpenGL! - + Your GPU may not support OpenGL, or you do not have the latest graphics driver. - + Error while initializing OpenGL 4.3! - + Your GPU may not support OpenGL 4.3, or you do not have the latest graphics driver.<br><br>GL Renderer:<br>%1 - + Error while initializing OpenGL ES 3.2! - + Your GPU may not support OpenGL ES 3.2, or you do not have the latest graphics driver.<br><br>GL Renderer:<br>%1 @@ -4570,193 +4570,193 @@ To view a guide on how to install FFmpeg, press Help. GameList - - + + Compatibility Yhteensopivuus - - + + Region Alue - - + + File type Tiedoston tyyppi - - + + Size Koko - + Open Save Data Location Avaa Tallennustiedon Sijainti - + Open Extra Data Location Avaa Lisätiedon Sijainti - + Open Application Location - + Open Update Data Location - + Open DLC Data Location - + Open Texture Dump Location - + Open Custom Texture Location - + Open Mods Location - + Dump RomFS - + Disk Shader Cache - + Open Shader Cache Location - + Delete OpenGL Shader Cache - + Uninstall - + Everything - + Game - + Update - + DLC - + Navigate to GameDB entry - + Properties - - - - + + + + Citra - + Are you sure you want to completely uninstall '%1'? This will delete the game if installed, as well as any installed updates or DLC. - - + + %1 (Update) - - + + %1 (DLC) - + Are you sure you want to uninstall '%1'? - + Are you sure you want to uninstall the update for '%1'? - + Are you sure you want to uninstall all DLC for '%1'? - + Scan Subfolders - + Remove Game Directory Poista pelihakemisto - + Move Up - + Move Down - + Open Directory Location Avaa hakemiston sijainti - + Name Nimi @@ -4764,77 +4764,77 @@ This will delete the game if installed, as well as any installed updates or DLC. GameListItemCompat - + Perfect Täydellinen - + Game functions flawless with no audio or graphical glitches, all tested functionality works as intended without any workarounds needed. - + Great Mahtava - + Game functions with minor graphical or audio glitches and is playable from start to finish. May require some workarounds. Peli toimii vähäisillä ääni- tai grafiikkaongelmia ja on pelattava alusta loppuun. Voi tarvia korjauksia. - + Okay Hyvä - + Game functions with major graphical or audio glitches, but game is playable from start to finish with workarounds. Peli toimii suurilla ääni- tai grafiikkaongelmia, mutta on pelattava alusta loppuun korjauksilla. - + Bad Huono - + Game functions, but with major graphical or audio glitches. Unable to progress in specific areas due to glitches even with workarounds. <html>Peli toimii, mutta suurilla ääni- tai grafiikkaongelmilla. Ei voi edetä tietyissä auleissa virheiden takia edes korjauksilla. - + Intro/Menu Intro/Menu - + Game is completely unplayable due to major graphical or audio glitches. Unable to progress past the Start Screen. Peli on pelaamaton ääni- tai grafiikkaongelmien takia. Alkunäytöstä ei voi edetä. - + Won't Boot Ei Käynnisty - + The game crashes when attempting to startup. Peli kaatuu, kun yrittää käynnistyä. - + Not Tested Ei Testattu - + The game has not yet been tested. Peliä ei ole testattu. @@ -4842,7 +4842,7 @@ Screen. GameListPlaceholder - + Double-click to add a new folder to the game list Lisää uusi kansio pelilistaan kaksoiklikkaamalla @@ -4850,27 +4850,27 @@ Screen. GameListSearchField - + of - + result - + results - + Filter: Suodatin: - + Enter pattern to filter @@ -4878,47 +4878,47 @@ Screen. GameRegion - + Japan - + North America Pohjois-Amerikka - + Europe Eurooppa - + Australia Australia - + China Kiina - + Korea Korea - + Taiwan - + Invalid region Virheellinen alue - + Region free Aluevapaa @@ -4926,23 +4926,23 @@ Screen. GraphicsBreakPointsWidget - + Pica Breakpoints - - + + Emulation running Emulaatio käynnissä - + Resume Jatka - + Emulation halted at breakpoint @@ -4950,146 +4950,146 @@ Screen. GraphicsSurfaceWidget - + Pica Surface Viewer - + Color Buffer - + Depth Buffer - + Stencil Buffer - + Texture 0 - + Texture 1 - + Texture 2 - + Custom - + Unknown Tuntematon - + Save Tallenna - + Source: Lähde: - + Physical Address: - + Width: Leveys: - + Height: Korkeus: - + Format: - + X: X: - + Y: Y: - + Pixel out of bounds Pikseli rajojen ulkopuolella - + (unable to access pixel data) - + (invalid surface address) - + (unknown surface format) - + Portable Network Graphic (*.png) - + Binary data (*.bin) - + Save Surface - - - - + + + + Error Virhe - - + + Failed to open file '%1' - + Failed to save surface data to file '%1' - + Failed to completely write surface data to file. The saved data will likely be corrupt. @@ -5097,42 +5097,42 @@ Screen. GraphicsTracingWidget - + CiTrace Recorder - + Start Recording Aloita Kuvaus - + Stop and Save Pysäytä ja Tallenna - + Abort Recording - + Save CiTrace - + CiTrace File (*.ctf) CiTrace tiedosto (*.ctf) - + CiTracing still active - + A CiTrace is still being recorded. Do you want to save it? If not, all recorded data will be discarded. @@ -5140,17 +5140,17 @@ Screen. GraphicsVertexShaderModel - + Offset - + Raw Raaka - + Disassembly @@ -5158,117 +5158,117 @@ Screen. GraphicsVertexShaderWidget - + Save Shader Dump - + Shader Binary (*.shbin) - + Pica Vertex Shader - + (data only available at vertex shader invocation breakpoints) - + Dump - + Input Data - + Attribute %1 - + Cycle Index: - + SRC1: %1, %2, %3, %4 - + SRC2: %1, %2, %3, %4 - + SRC3: %1, %2, %3, %4 - + DEST_IN: %1, %2, %3, %4 - + DEST_OUT: %1, %2, %3, %4 - + Address Registers: %1, %2 - + Compare Result: %1, %2 - + Static Condition: %1 - + Dynamic Conditions: %1, %2 - + Loop Parameters: %1 (repeats), %2 (initializer), %3 (increment), %4 - + Instruction offset: 0x%1 - + -> 0x%2 - + (last instruction) @@ -5276,67 +5276,67 @@ Screen. HostRoom - + Create Room Luo huone - + Room Name Huoneen nimi - + Preferred Game Suosittu peli - + Max Players Maksimi pelaajia - + Username Käyttäjänimi - + (Leave blank for open game) - + Password Salasana - + Port Portti - + Room Description Huoenn kuvaus - + Load Previous Ban List Lataa entinen porttikieltolista - + Public - + Unlisted - + Host Room Isännöi huone @@ -5344,12 +5344,12 @@ Screen. HostRoomWindow - + Error Virhe - + Failed to announce the room to the public lobby. In order to host a room publicly, you must have a valid Citra account configured in Emulation -> Configure -> Web. If you do not want to publish a room in the public lobby, then select Unlisted instead. Debug Message: @@ -5358,47 +5358,47 @@ Debug Message: IPCRecorder - + IPC Recorder - + Enable Recording - + Filter: - + Leave empty to disable filtering - + # - + Status - + Service - + Function - + Clear @@ -5406,47 +5406,47 @@ Debug Message: IPCRecorderWidget - + Invalid - + Sent - + Handling - + Success - + Error - + HLE Unimplemented - + HLE - + LLE - + Unknown @@ -5454,7 +5454,7 @@ Debug Message: LLEServiceModulesWidget - + Toggle LLE Service Modules @@ -5462,53 +5462,53 @@ Debug Message: LoadingScreen - + Loading Shaders 387 / 1628 - + Loading Shaders %v out of %m - + Estimated Time 5m 4s - + Loading... - + Preloading Textures %1 / %2 - + Preparing Shaders %1 / %2 - + Loading Shaders %1 / %2 - + Launching... - + Now Loading %1 - + Estimated Time %1 @@ -5516,83 +5516,83 @@ Debug Message: Lobby - + Public Room Browser Julkisen huoneen selain - - + + Nickname Nimimerkki - + Filters Suodattimet - + Search Hae - + Games I Own Pelit mitä omistan - + Hide Empty Rooms - + Hide Full Rooms Piilota täydet huoneet - + Refresh Lobby Päivitä aula - + Password Required to Join - + Password: Salasana: - + Room Name Huoneen nimi - + Preferred Game Suosittu peli - + Host Isäntä - + Players Pelaajia - + Refreshing Päivitetään - + Refresh List Päivitä lista @@ -5600,362 +5600,362 @@ Debug Message: MainWindow - + Citra Citra - + &File &Tiedosto - + Boot Home Menu - + Recent Files Viimeaikaiset tiedostot - + Amiibo Amiibo - + &Emulation &Emulaatio - + Save State - + Load State - + &View &Näytä - + Debugging Debuggaus - + Screen Layout Näytön sijoitus - + Multiplayer Moninpeli - + Tools Työkalut - + Movie Video - + Frame Advance - + &Help &Apua - + Load File... Lataa tiedosto... - + Install CIA... Asenna CIA... - + JPN - + USA - + EUR - + AUS - + CHN - + KOR - + TWN - + E&xit &Poistu - + &Pause &Keskeytä - + &Stop &Pysäytä - + Save - + Load - + FAQ UKK - + About Citra Tietoa Citrasta - + Single Window Mode Yhden ikkunan tila - + Save to Oldest Slot - + Load from Newest Slot - + Configure... Asetukset... - + Display Dock Widget Headers - + Show Filter Bar Näytä suodatinpalkki - + Show Status Bar Näytä tilapalkki - + Create Pica Surface Viewer - + Record... - + Play... - + Close - + Save without Closing - + Read-Only Mode - + Enable Frame Advancing - + Advance Frame - + Capture Screenshot Kaappaa näyttökuva - + Dump Video - + Browse Public Game Lobby Selaa julkisia peliauloja - + Create Room Luo huone - + Leave Room Lähde huoneesta - + Direct Connect to Room Suora yhteys huoneeseen - + Show Current Room Näytä Nykyinen Huone - + Fullscreen Koko näyttö - + Modify Citra Install Muokkaa Citran asennusta - + Opens the maintenance tool to modify your Citra installation - + Default Oletus - + Single Screen Yksittäinen näyttö - + Large Screen Suuri näyttö - + Hybrid Screen - + Side by Side Vierekkäin - + Separate Windows - + Swap Screens Vaihda näytöt - + Rotate Upright - + Check for Updates Tarkista Päivitykset - + Report Compatibility Ilmoita yhteensopivuus - + Restart Käynnistä uudelleen - + Load... Lataa... - + Remove Poista - + Open Citra Folder Avaa Citran Kansio - + Configure Current Game... @@ -5963,7 +5963,7 @@ Debug Message: MicroProfileDialog - + MicroProfile @@ -5971,48 +5971,48 @@ Debug Message: ModerationDialog - + Moderation Moderaatio - + Ban List Porttikieltolista - - + + Refreshing Päivitetään - + Unban Poista Porttikielto - + Subject - + Type Tyyppi - + Forum Username Foorumikäyttäjänimi - + IP Address IP-osoite - + Refresh Päivitä @@ -6020,91 +6020,91 @@ Debug Message: MoviePlayDialog - - + + Play Movie - + File: - + ... - + Info - + Game: - + Author: - + Rerecord Count: - + Length: - + Current running game will be stopped. - + <br>Current recording will be discarded. - + Citra TAS Movie (*.ctm) - + Invalid movie file. - + Revision dismatch, playback may desync. - + Indicated length is incorrect, file may be corrupted. - - - - + + + + (unknown) - + Game used in this movie is not in game list. - + (>1 day) @@ -6112,43 +6112,43 @@ Debug Message: MovieRecordDialog - - + + Record Movie - + File: - + ... - + Author: - + Current running game will be restarted. - + <br>Current recording will be discarded. - + Recording will start once you boot a game. - + Citra TAS Movie (*.ctm) @@ -6156,43 +6156,43 @@ Debug Message: MultiplayerState - - + + Current connection status Nykinen yhteyden tila - - + + Not Connected. Click here to find a room! Ei yhdistetty. Napsauta tätä löytääksesi huoneen! - - - + + + Connected Yhdistetty - - + + Not Connected Ei Yhdistetty - + Error Virhe - + Failed to update the room information. Please check your Internet connection and try hosting the room again. Debug Message: - + New Messages Received Uusia Viestejä Vastaanotettu @@ -6200,22 +6200,22 @@ Debug Message: NetworkMessage - + Leave Room Lähde huoneesta - + You are about to close the room. Any network connections will be closed. Olet sulkemassa huoneen. Kaikki verkkoyhteydet suljetaan. - + Disconnect Katkaise Yhteys - + You are about to leave the room. Any network connections will be closed. Olet poistumassa huoneesta. Kaikki verkkoyhteydet suljetaan. @@ -6223,110 +6223,110 @@ Debug Message: NetworkMessage::ErrorManager - + Username is not valid. Must be 4 to 20 alphanumeric characters. - + Room name is not valid. Must be 4 to 20 alphanumeric characters. - + Username is already in use or not valid. Please choose another. - + IP is not a valid IPv4 address. - + Port must be a number between 0 to 65535. - + You must choose a Preferred Game to host a room. If you do not have any games in your game list yet, add a game folder by clicking on the plus icon in the game list. - + Unable to find an internet connection. Check your internet settings. - + Unable to connect to the host. Verify that the connection settings are correct. If you still cannot connect, contact the room host and verify that the host is properly configured with the external port forwarded. - + Unable to connect to the room because it is already full. - + Creating a room failed. Please retry. Restarting Citra might be necessary. - + The host of the room has banned you. Speak with the host to unban you or try a different room. - + Version mismatch! Please update to the latest version of Citra. If the problem persists, contact the room host and ask them to update the server. - + Incorrect password. - + An unknown error occurred. If this error continues to occur, please open an issue - + Connection to room lost. Try to reconnect. - + You have been kicked by the room host. - + MAC address is already in use. Please choose another. - + Your Console ID conflicted with someone else's in the room. Please go to Emulation > Configure > System to regenerate your Console ID. - + You do not have enough permission to perform this action. - + The user you are trying to kick/ban could not be found. They may have left the room. - + Error @@ -6334,37 +6334,37 @@ They may have left the room. OptionSetDialog - + Options - + Unset - + unknown - + %1 &lt;%2> %3 - + Range: %1 - %2 - + custom - + %1 (0x%2) %3 @@ -6372,32 +6372,32 @@ They may have left the room. OptionsDialog - + Options - + Double click to see the description and change the values of the options. - + Specific - + Generic - + Name - + Value @@ -6405,157 +6405,157 @@ They may have left the room. QObject - + Supported image files (%1) - + Open File Avaa Tiedosto - + Error Virhe - + Couldn't load the camera Kameraa ei voitu ladata - + Couldn't load %1 %1 ei voitu ladata - - + + Shift Shift - - + + Ctrl Ctrl - - + + Alt Alt - - - + + + [not set] [ei asetettu] - - + + Hat %1 %2 - - - - - - + + + + + + Axis %1%2 - - + + Button %1 - + GC Axis %1%2 - + GC Button %1 - - - + + + [unknown] [tuntematon] - + [unused] [käyttämätön] - + auto - + true - + false - - + + none - + %1 (0x%2) - + Invalid region Virheellinen alue - + Installed Titles Asennetut pelit - + System Titles - + Add New Game Directory Lisää uusi pelihakemisto - + Not playing a game Ei pelaa peliä - + %1 is not playing a game %1 ei pelaa peliä - + %1 is playing %2 %1 on pelissä %2 @@ -6563,7 +6563,7 @@ They may have left the room. QtKeyboard - + Software Keyboard @@ -6571,27 +6571,27 @@ They may have left the room. QtKeyboardDialog - + Text length is not correct (should be %1 characters) - + Text is too long (should be no more than %1 characters) - + Blank input is not allowed - + Empty input is not allowed - + Validation error @@ -6599,12 +6599,12 @@ They may have left the room. QtMiiSelectorDialog - + Mii Selector - + Standard Mii @@ -6612,95 +6612,95 @@ They may have left the room. RecordDialog - + View Record - + Client - - + + Process: - - + + Thread: - - + + Session: - + Server - + General - + Client Port: - + Service: - + Function: - + Command Buffer - + Select: - + Request Untranslated - + Request Translated - + Reply Untranslated - + Reply Translated - + OK - + null @@ -6708,37 +6708,37 @@ They may have left the room. RegistersWidget - + Registers Rekisterit - + VFP Registers - + VFP System Registers - + Vector Length - + Vector Stride - + Rounding Mode - + Vector Iteration Count @@ -6746,7 +6746,7 @@ They may have left the room. SequenceDialog - + Enter a hotkey @@ -6754,7 +6754,7 @@ They may have left the room. WaitTreeEvent - + reset type = %1 @@ -6762,12 +6762,12 @@ They may have left the room. WaitTreeMutex - + locked %1 times by thread: - + free @@ -6775,7 +6775,7 @@ They may have left the room. WaitTreeMutexList - + holding mutexes @@ -6783,12 +6783,12 @@ They may have left the room. WaitTreeObjectList - + waiting for all objects - + waiting for one of the following objects @@ -6796,12 +6796,12 @@ They may have left the room. WaitTreeSemaphore - + available count = %1 - + max count = %1 @@ -6809,112 +6809,112 @@ They may have left the room. WaitTreeThread - + running - + ready valmis - + waiting for address 0x%1 - + sleeping nukkuva - + waiting for IPC response - + waiting for objects - + waiting for HLE return - + dormant - + dead kuollut - + PC = 0x%1 LR = 0x%2 - + default oletus - + all kaikki - + AppCore - + SysCore - + Unknown processor %1 Tuntematon prosessori %1 - + object id = %1 - + processor = %1 prosessori = %1 - + thread id = %1 - + process = %1 (%2) - + priority = %1(current) / %2(normal) - + last running ticks = %1 - + not holding mutex @@ -6922,7 +6922,7 @@ They may have left the room. WaitTreeThreadList - + waited by thread @@ -6930,17 +6930,17 @@ They may have left the room. WaitTreeTimer - + reset type = %1 - + initial delay = %1 - + interval delay = %1 @@ -6948,27 +6948,27 @@ They may have left the room. WaitTreeWaitObject - + [%1]%2 %3 [%1]%2 %3 - + waited by no thread - + one shot - + sticky tahmaine - + pulse @@ -6976,7 +6976,7 @@ They may have left the room. WaitTreeWidget - + Wait Tree diff --git a/dist/languages/fr.ts b/dist/languages/fr.ts index 71c944f56..50d259246 100644 --- a/dist/languages/fr.ts +++ b/dist/languages/fr.ts @@ -2,17 +2,17 @@ ARMRegisters - + ARM Registers Registres ARM - + Register Registre - + Value Valeur @@ -20,27 +20,27 @@ AboutDialog - + About Citra À propos de Citra - - <html><head/><body><p><img src=":/icons/citra.png"/></p></body></html> - <html><head/><body><p><img src=":/icons/citra.png"/></p></body></html> + + <html><head/><body><p><img src=":/icons/lime.png"/></p></body></html> + <html><head/><body><p><img src=":/icons/lime.png"/></p></body></html> - + <html><head/><body><p><span style=" font-size:28pt;">Citra</span></p></body></html> <html><head/><body><p><span style=" font-size:28pt;">Citra</span></p></body></html> - + <html><head/><body><p>%1 | %2-%3 (%4)</p></body></html> <html><head/><body><p>%1 | %2-%3 (%4)</p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -57,12 +57,12 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">Ce logiciel ne doit pas être utilisé pour jouer à des jeux que vous n'avez pas obtenus légalement.</span></p></body></html> - + <html><head/><body><p><a href="https://citra-emu.org/"><span style=" text-decoration: underline; color:#039be5;">Website</span></a> | <a href="https://community.citra-emu.org/"><span style=" text-decoration: underline; color:#039be5;">Forum</span></a> | <a href="https://github.com/citra-emu"><span style=" text-decoration: underline; color:#039be5;">Source Code</span></a> | <a href="https://github.com/citra-emu/citra/graphs/contributors"><span style=" text-decoration: underline; color:#039be5;">Contributors</span></a> | <a href="https://github.com/citra-emu/citra/blob/master/license.txt"><span style=" text-decoration: underline; color:#039be5;">License</span></a></p></body></html> <html><head/><body><p><a href="https://citra-emu.org/"><span style=" text-decoration: underline; color:#039be5;">Site web</span></a> | <a href="https://community.citra-emu.org/"><span style=" text-decoration: underline; color:#039be5;">Forum</span></a> | <a href="https://github.com/citra-emu"><span style=" text-decoration: underline; color:#039be5;">Code source</span></a> | <a href="https://github.com/citra-emu/citra/graphs/contributors"><span style=" text-decoration: underline; color:#039be5;">Contributeurs</span></a> | <a href="https://github.com/citra-emu/citra/blob/master/license.txt"><span style=" text-decoration: underline; color:#039be5;">Licence</span></a></p></body></html> - + <html><head/><body><p><span style=" font-size:7pt;">&quot;3DS&quot; is a trademark of Nintendo. Citra is not affiliated with Nintendo in any way.</span></p></body></html> <html><head/><body><p><span style=" font-size:7pt;">&quot;3DS&quot; est une marque de commerce de Nintendo. Citra n'est aucunement affilié à Nintendo.</span></p></body></html> @@ -70,47 +70,47 @@ p, li { white-space: pre-wrap; } BreakPointModel - + Pica command loaded Commande PICA chargée - + Pica command processed Commande Pica traitée - + Incoming primitive batch Incoming primitive batch - + Finished primitive batch Finished primitive batch - + Vertex shader invocation Vertex shader invocation - + Incoming display transfer Incoming display transfer - + GSP command processed GSP command processed - + Buffers swapped Buffers swapped - + Unknown debug context event Événement contextuel de débogage inconnu @@ -118,32 +118,32 @@ p, li { white-space: pre-wrap; } CalibrationConfigurationDialog - + Communicating with the server... Communication avec le serveur en cours... - + Cancel Annuler - + Touch the top left corner <br>of your touchpad. Touchez le coin supérieur gauche <br>de votre pavé tactile. - + Now touch the bottom right corner <br>of your touchpad. Maintenant touchez le coin inférieur droit <br> de votre pavé tactile. - + Configuration completed! Configuration terminée ! - + OK OK @@ -151,93 +151,93 @@ p, li { white-space: pre-wrap; } ChatRoom - + Room Window Fenêtre du salon - + Send Chat Message Envoyer un message via le Chat - + Send Message Envoyer un message - + Members Membres - + %1 has joined %1 a rejoint - + %1 has left %1 est parti - + %1 has been kicked %1 a été éjecté - + %1 has been banned %1 a été banni - + %1 has been unbanned %1 a été débanni - + View Profile Voir le profil - - + + Block Player Bloquer un joueur - + When you block a player, you will no longer receive chat messages from them.<br><br>Are you sure you would like to block %1? Lorsque vous bloquez un joueur, vous ne recevrez plus de message de sa part.<br><br>Êtes-vous sûr de vouloir bloquer %1 ? - + Kick Éjecter - + Ban Bannir - + Kick Player Éjecter un joueur - + Are you sure you would like to <b>kick</b> %1? Êtes-vous sûr de vouloir <b>éjecter</b>%1 ? - + Ban Player Bannir un joueur - + Are you sure you would like to <b>kick and ban</b> %1? This would ban both their forum username and their IP address. @@ -249,22 +249,22 @@ Cela bannira à la fois son nom du forum et son adresse IP. ClientRoom - + Room Window Fenêtre du salon - + Room Description Description du salon - + Moderation... Modération... - + Leave Room Quitter le salon @@ -272,17 +272,17 @@ Cela bannira à la fois son nom du forum et son adresse IP. ClientRoomWindow - + Connected Connecté - + Disconnected Déconnecté - + %1 (%2/%3 members) - connected %1 (%2/%3 membres) - connecté @@ -290,108 +290,108 @@ Cela bannira à la fois son nom du forum et son adresse IP. CompatDB - + Report Compatibility Signaler la compatibilité - - + + Report Game Compatibility Signaler la compatibilité du jeu - + <html><head/><body><p><span style=" font-size:10pt;">Should you choose to submit a test case to the </span><a href="https://citra-emu.org/game/"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">Citra Compatibility List</span></a><span style=" font-size:10pt;">, The following information will be collected and displayed on the site:</span></p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Hardware Information (CPU / GPU / Operating System)</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Which version of Citra you are running</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The connected Citra account</li></ul></body></html> <html><head/><body><p><span style=" font-size:10pt;">Si vous soumettez un rapport à la </span><a href="https://citra-emu.org/game/"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">Liste de compatibilité de Citra</span></a><span style=" font-size:10pt;">, Les informations suivantes seront collectées et affichées sur le site:</span></p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Informations sur le matériel (CPU / GPU / Système d'exploitation)</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">La version de Citra que vous utilisez</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Le compte Citra utilisé pour la connexion</li></ul></body></html> - + Perfect Parfait - + <html><head/><body><p>Game functions flawlessly with no audio or graphical glitches.</p></body></html> <html><head/><body><p>Le jeu fonctionne parfaitement sans problème audio ou graphique.</p></body></html> - + Great Bien - + <html><head/><body><p>Game functions with minor graphical or audio glitches and is playable from start to finish. May require some workarounds.</p></body></html> <html><head/><body><p>Le jeu fonctionne avec des bugs audio ou graphiques mineurs et est jouable du début à la fin. Peut nécessiter quelques ajustements.</p></body></html> - + Okay Okay - + <html><head/><body><p>Game functions with major graphical or audio glitches, but game is playable from start to finish with workarounds.</p></body></html> <html><head/><body><p>Le jeu fonctionne avec des bugs audio ou graphiques majeurs, mais il est jouable du début à la fin avec des ajustements.</p></body></html> - + Bad Mauvais - + <html><head/><body><p>Game functions, but with major graphical or audio glitches. Unable to progress in specific areas due to glitches even with workarounds.</p></body></html> <html><head/><body><p>Le jeu fonctionne, mais avec des bugs audio ou graphiques majeurs. Impossible de se rendre dans certaines zones à cause des bugs même avec des ajustements.</p></body></html> - + Intro/Menu Intro/Menu - + <html><head/><body><p>Game is completely unplayable due to major graphical or audio glitches. Unable to progress past the Start Screen.</p></body></html> <html><head/><body><p>Le jeu est totalement injouable à cause de bugs graphiques ou audio majeurs. Impossible de dépasser l'écran titre.</p></body></html> - + Won't Boot Ne se lance pas - + <html><head/><body><p>The game crashes when attempting to startup.</p></body></html> <html><head/><body><p>Le jeu plante au démarrage.</p></body></html> - + <html><head/><body><p>Independent of speed or performance, how well does this game play from start to finish on this version of Citra?</p></body></html> <html><head/><body><p>Indépendamment de la vitesse et de la performance, comment ce jeu fonctionne du début à la fin sur cette version de Citra ?</p></body></html> - + Thank you for your submission! Merci pour votre contribution ! - + Submitting Transmission - + Communication error Erreur de communication - + An error occurred while sending the Testcase Une erreur s'est produite pendant l'envoi du cas de test. - + Next Suivant @@ -399,93 +399,93 @@ Cela bannira à la fois son nom du forum et son adresse IP. ConfigureAudio - + Output Sortie - + Emulation: Émulation : - + HLE (fast) HLE (rapide) - + LLE (accurate) LLE (précis) - + LLE multi-core LLE multi-coeur - + Output Type Type de sortie - + Output Device Périphérique de sortie - + This post-processing effect adjusts audio speed to match emulation speed and helps prevent audio stutter. This however increases audio latency. Cet effet de post-traitement ajuste la vitesse audio pour correspondre à la vitesse d'émulation et aide à prévenir les distorsions. Cela augmente cependant la latence du son. - + Enable audio stretching Activer l'étirement audio - + Use global volume Utiliser le volume global - + Set volume: Régler le volume : - + Volume: Volume : - + 0 % 0 % - + Microphone Microphone - + Input Type Type d'entrée - + Input Device Périphérique d'entrée - - + + Auto Auto - + %1% Volume percentage (e.g. 50%) %1% @@ -494,203 +494,203 @@ Cela bannira à la fois son nom du forum et son adresse IP. ConfigureCamera - + Form Formulaire - + Camera Caméra - - + + Select the camera to configure Choisissez la caméra qui sera configurée - + Camera to configure: Caméra à configurer : - + Front Avant - + Rear Arrière - - + + Select the camera mode (single or double) Choisissez le mode de la caméra (simple ou double) - + Camera mode: Mode de la caméra : - + Single (2D) Simple (2D) - + Double (3D) Double (3D) - - + + Select the position of camera to configure Choisissez la position de la caméra à configurer - + Camera position: Position de la caméra : - + Left Gauche - + Right Droite - + Configuration Configuration - - + + Select where the image of the emulated camera comes from. It may be an image or a real camera. Choisissez la provenance de l'image de la caméra émulée. Ce peut être une image ou une vraie caméra. - + Camera Image Source: Source de l'image de la caméra : - + Blank (blank) Vide (vide) - + Still Image (image) Image fixe (image) - + System Camera (qt) Caméra système (qt) - + File: Fichier : - + ... ... - - + + Select the system camera to use Choisissez la caméra système à utiliser - + Camera: Caméra : - + <Default> <Default> - - + + Select the image flip to apply Choisissez le traitement à appliquer à l'image - + Flip: Basculement : - + None Aucun - + Horizontal Horizontal - + Vertical Vertical - + Reverse Inverser - + Select an image file every time before the camera is loaded A chaque fois, l'image devra être sélectionnée avant le chargement de la caméra - + Prompt before load Demander avant de charger - + Preview Prévisualisation - + Resolution: 512*384 Résolution : 512*384 - + Click to preview Cliquez pour prévisualiser - + Resolution: %1*%2 Résolution : %1*%2 - + Supported image files (%1) Fichiers image supportés (%1) - + Open File Ouvrir le fichier @@ -698,88 +698,88 @@ Cela bannira à la fois son nom du forum et son adresse IP. ConfigureCheats - - + + Cheats Codes de triche - + Add Cheat Ajouter un code de triche - + Available Cheats: Codes de triche disponibles : - + Name Nom - + Type Type - + Save Enregistrer - + Delete Supprimer - + Name: Nom : - + Notes: Notes : - + Code: Code : - + Would you like to save the current cheat? Voulez-vous enregistrer le code de triche actuel ? - - - + + + Save Cheat Enregistrer le code de triche - + Please enter a cheat name. Veuillez entrer le nom du code de triche. - + Please enter the cheat code. Veuillez entrer le code de triche. - + Cheat code line %1 is not valid. Would you like to ignore the error and continue? La ligne %1 du code de triche n'est pas valide. Souhaitez vous ignorer l'erreur et poursuivre ? - - + + [new cheat] [nouveau code de triche] @@ -787,127 +787,127 @@ Souhaitez vous ignorer l'erreur et poursuivre ? ConfigureDebug - + Form Forme - + GDB GDB - + Enable GDB Stub Activer le GDB Stub - + Port: Port : - + Logging Rapports - + Global Log Filter Filtre global des rapports - + Show Log Console (Windows Only) Afficher la console des rapports (Windows uniquement) - + Open Log Location Ouvrir l'emplacement des rapports - + CPU CPU - + Use global clock speed Utiliser la fréquence d'horloge globale - + Set clock speed: Définir la fréquence d'horloge du CPU : - + CPU Clock Speed Fréquence d'horloge du CPU - + <html><body>Changes the emulated CPU clock frequency.<br>Underclocking can increase performance but may cause the game to freeze.<br>Overclocking may reduce in game lag but also might cause freezes</body></html> <html><body>Change la fréquence d'horloge du CPU émulé.<br>Sous-cadencer peut améliorer les performances mais aussi entraîner des saccades dans le jeu.<br>Surcadencer peut réduire les ralentissements mais également entraîner des saccades dans le jeu</body></html> - + <html><head/><body><p>Enables the use of the ARM JIT compiler for emulating the 3DS CPUs. Don't disable unless for debugging purposes</p></body></html> <html><head/><body><p>Permet l'utilisation du compilateur ARM JIT pour émuler les processeurs 3DS. Ne pas désactiver sauf à des fins de débogage</p></body></html> - + Enable CPU JIT Activer le CPU JIT - + Enable debug renderer Activer le rendu de débogage - + Dump command buffers Dump des tampons de commandes - + Miscellaneus Divers - + <html><head/><body><p>Introduces a delay to the first ever launched app thread if LLE modules are enabled, to allow them to initialize.</p></body></html> <html><head/><body><p>Introduit un délai pour le premier fil d'exécution de l'application lancée si les modules LLE sont activés, afin de leur permettre de s'initialiser.</p></body></html> - + Delay app start for LLE module initialization Retarder le démarrage de l'application pour l'initialisation du module LLE. - + <html><head/><body><p>CPU Clock Speed Information<br/>Underclocking can increase performance but may cause the game to freeze.<br/>Overclocking may reduce in game lag but also might cause freezes</p></body></html> <html><head/><body><p>Information sur la fréquence d'horloge du CPU<br/>Sous-cadencer peut améliorer les performances mais aussi entraîner des saccades dans le jeu.<br/>Surcadencer peut réduire les ralentissements mais également entraîner des saccades dans le jeu</p></body></html> - + Validation layer not available La couche de validation n'est pas disponible - + Unable to enable debug renderer because the layer <strong>VK_LAYER_KHRONOS_validation</strong> is missing. Please install the Vulkan SDK or the appropriate package of your distribution Impossible d'activer le rendu de débogage car la couche <strong>VK_LAYER_KHRONOS_validation</strong> est manquante. Veuillez installer le SDK Vulkan ou le paquet approprié de votre distribution. - + Command buffer dumping not available Le dumping des tampons de commandes n'est pas disponible - + Unable to enable command buffer dumping because the layer <strong>VK_LAYER_LUNARG_api_dump</strong> is missing. Please install the Vulkan SDK or the appropriate package of your distribution Impossible d'activer le dumping des tampons de commandes car la couche <strong>VK_LAYER_LUNARG_api_dump</strong> est manquante. Veuillez installer le SDK Vulkan ou le paquet approprié de votre distribution. @@ -915,92 +915,92 @@ Souhaitez vous ignorer l'erreur et poursuivre ? ConfigureDialog - + Citra Configuration Configuration de Citra - - - + + + General Général - - - + + + System Système - - + + Input Contrôles - - + + Hotkeys Raccourcis - - + + Graphics Vidéo - - + + Enhancements Améliorations - - - + + + Audio Son - - + + Camera Caméra - - + + Debug Débogage - - + + Storage Stockage - - + + Web Web - - + + UI Interface - + Controls Contrôles - + Advanced Avancé @@ -1008,278 +1008,278 @@ Souhaitez vous ignorer l'erreur et poursuivre ? ConfigureEnhancements - + Form Formulaire - + Renderer Moteur de rendu - + Internal Resolution Définition interne - + Auto (Window Size) Auto (Taille de la fenêtre) - + Native (400x240) Native (400x240) - + 2x Native (800x480) 2x Native (800x480) - + 3x Native (1200x720) 3x Native (1200x720) - + 4x Native (1600x960) 4x Native (1600x960) - + 5x Native (2000x1200) 5x Native (2000x1200) - + 6x Native (2400x1440) 6x Native (2400x1440) - + 7x Native (2800x1680) 7x Native (2800x1680) - + 8x Native (3200x1920) 8x Native (3200x1920) - + 9x Native (3600x2160) 9x Native (3600x2160) - + 10x Native (4000x2400) 10x Native (4000x2400) - + Enable Linear Filtering Activer le filtrage linéaire - + Post-Processing Shader Nuanceur de post traitement - + Texture Filter Filtrage des textures - + None Aucun - + Anime4K Anime4K - + Bicubic Bicubique - + ScaleForce ScaleForce - + xBRZ xBRZ - + MMPX MMPX - + Stereoscopy Stéréoscopie - + Stereoscopic 3D Mode Mode stéréoscopique 3D  - + Off Désactivé - - + + Side by Side Côte à côte - + Anaglyph Anaglyphe - + Interlaced Entrelacé - + Reverse Interlaced Entrelacement inversé - + Depth Profondeur - + % % - + Eye to Render in Monoscopic Mode Œil pour le rendu en mode monoscopique - + Left Eye (default) Œil gauche (par défaut) - + Right Eye Œil droit - + Layout Disposition - + Screen Layout: Disposition de l'écran - + Default Par défaut - + Single Screen Un seul écran - + Large Screen Écran large - + Separate Windows Fenêtres séparées - + Hybrid Screen Écran hybride - + Swap Screens Permuter les écrans - + Rotate Screens Upright Tournez votre écran vers la droite - + Large Screen Proportion: Proportion grand écran : - + Background Color: Couleur d'arrière-plan : - + Utility Utilitaires - + <html><head/><body><p>Replace textures with PNG files.</p><p>Textures are loaded from load/textures/[Title ID]/.</p></body></html> <html><head/><body><p>Remplace les textures par des fichiers PNG.</p><p>Les textures sont chargées depuis load/textures/[Title ID]/.</p></body></html> - + Use Custom Textures Utiliser des textures personnalisées - + <html><head/><body><p>Dump textures to PNG files.</p><p>Textures are dumped to dump/textures/[Title ID]/.</p></body></html> <html><head/><body><p>Décharge des textures vers des fichiers PNG.</p><p>Les textures sont déchargées vers dump/textures/[Title ID]/.</p></body></html> - + Dump Textures Exporter les textures - + <html><head/><body><p>Load all custom textures into memory on boot, instead of loading them when the game requires them.</p></body></html> <html><head/><body><p>Charge toutes les textures personnalisées dans la mémoire au démarrage, plutôt que de les charger quand le jeu en fait la demande.</p></body></html> - + Preload Custom Textures Précharger des textures personnalisées - + <html><head/><body><p>Load custom textures asynchronously with background threads to reduce loading stutter</p></body></html> <html><head><body><p>Chargez les textures personnalisées de manière asynchrone avec des threads d’arrière-plan pour réduire le retard de chargement </p></body></head></html> - + Async Custom Texture Loading Chargement asynchrone des textures personnalisées @@ -1287,136 +1287,136 @@ Souhaitez vous ignorer l'erreur et poursuivre ? ConfigureGeneral - + Form Forme - + General Général - + Confirm exit while emulation is running Confirmer la fermeture du programme pendant l'exécution de l'émulation - + Pause emulation when in background Mettre en pause l'émulation si en arrière-plan - + Mute audio when in background Couper le son si en arrière-plan - + Hide mouse on inactivity Cacher la souris si inactif - + Enable Gamemode Activer le mode jeu - + Updates Mises à jour - + Check for updates on start Vérifier les mises à jour au démarrage - + Silently auto update after closing Mise à jour automatique après la fermeture - + Emulation Émulation - + Region: Région : - + Auto-select Sélection Automatique - + Use global emulation speed Utiliser la vitesse d'émulation globale - + Set emulation speed: Définir la vitesse d'émulation : - + Emulation Speed: Vitesse d'émulation : - + Screenshots Captures d'écran - + Use global screenshot path Utiliser le chemin global de capture d'écran - + Set screenshot path: Définir le chemin de capture d'écran : - + Save Screenshots To Enregistrer les captures d'écran dans - + ... ... - + Reset All Settings Réinitialiser tous les paramètres - - - - - + + + + + unthrottled illimité - + Select Screenshot Directory Choix du répertoire des captures d'écran - + Citra Citra - + Are you sure you want to <b>reset your settings</b> and close Citra? Êtes-vous sûr de vouloir <b> réinitialiser vos paramètres </b> et fermer Citra ? @@ -1424,157 +1424,157 @@ Souhaitez vous ignorer l'erreur et poursuivre ? ConfigureGraphics - + Form Forme - + Graphics Vidéo - + API Settings Paramètres de l'API - + Graphics API API graphique - + Software Logiciel - + OpenGL OpenGL - + Vulkan Vulkan - + Physical Device Appareil physique - + OpenGL Renderer Rendu OpenGL - + SPIR-V Shader Generation Génération de shaders SPIR-V - + Renderer Moteur de rendu - + <html><head/><body><p>Use the selected graphics API to accelerate shader emulation.</p><p>Requires a relatively powerful GPU for better performance.</p></body></html> <html><head/><body><p>Utiliser l'API graphique sélectionnée pour accélérer l'émulation des shaders.</p><p>Nécessite une carte graphique relativement puissante pour de meilleures performances.</p></body></html> - + Enable Hardware Shader Activer le nuanceur matériel - + <html><head/><body><p>Correctly handle all edge cases in multiplication operation in shaders. </p><p>Some games requires this to be enabled for the hardware shader to render properly.</p><p>However this would reduce performance in most games.</p></body></html> <html><head/><body><p>Gère Correctement tous les cas extrêmes dans l'opération de multiplication dans le nuanceur <p>Certains jeux requièrent son activation afin d'avoir un rendu du nuanceur matériel convenable.</p><p>Néanmoins la performance sera réduite dans la plupart des jeux.</p></body></html> - + Accurate Multiplication Multiplication précise - + <html><head/><body><p>Use the JIT engine instead of the interpreter for software shader emulation. </p><p>Enable this for better performance.</p></body></html> <html><head/><body><p>Utilise le moteur JIT à la place de l'interpréteur lors de l'émulation de shader logiciel. </p><p>Activez cette option pour de meilleures performances.</p></body></html> - + Enable Shader JIT Activer le nuanceur JIT - + <html><head/><body><p>Compile shaders using background threads to avoid shader compilation stutter. Expect temporary graphical glitches</p></body></html> <html><head/><body><p>Compiler les shaders en utilisant des threads en arrière-plan pour éviter les interruptions dues à la compilation des shaders. Attendez-vous à des problèmes graphiques temporaires.</p></body></html> - + Enable Async Shader Compilation Activer la compilation asynchrone des shaders - + <html><head/><body><p>Perform presentation on separate threads. Improves performance when using Vulkan in most games.</p></body></html> <html><head/><body><p>Effectuer la présentation sur des threads séparés. Cela améliore les performances lors de l'utilisation de Vulkan dans la plupart des jeux.</p></body></html> - + Enable Async Presentation Activer la présentation asynchrone - + Advanced Avancé - + <html><head/><body><p>Overrides the sampling filter used by games. This can be useful in certain cases with poorly behaved games when upscaling. If unsure set this to Game Controlled</p></body></html> <html><head/><body><p>Remplace le filtre d'échantillonnage utilisé par les jeux. Cela peut être utile dans certains cas avec des jeux mal conçus lors de la mise à l'échelle. Si vous n'êtes pas sûr, réglez-le sur Contrôlé par le jeu</p></body></html> - + Texture Sampling Échantillonnage de texture - + Game Controlled Contrôlé par le jeu - + Nearest Neighbor Le voisin le plus proche - + Linear Linéaire - + <html><head/><body><p>Reduce stuttering by storing and loading generated shaders to disk.</p></body></html> Réduisez le décrochage en stockant et en chargeant les shaders générés sur le disque. - + Use Disk Shader Cache Utiliser le cache de nuanceur sur disque - + VSync prevents the screen from tearing, but some graphics cards have lower performance with VSync enabled. Keep it enabled if you don't notice a performance difference. VSync empêche les effets de déchirement de l'image, mais elle réduira la performance de certaines cartes graphiques. Laissez-la activée si vous ne constatez pas de différence. - + Enable VSync Activer VSync @@ -1582,63 +1582,63 @@ Souhaitez vous ignorer l'erreur et poursuivre ? ConfigureHotkeys - + Hotkey Settings Réglages des Raccourcis - + Double-click on a binding to change it. Double-cliquez sur une combinaison pour la modifier. - + Clear All Tout effacer - + Restore Defaults Restaurer les paramètres par défaut - + Action Action - + Hotkey Raccourci - - + + Conflicting Key Sequence Séquence de touche conflictuelle - + The entered key sequence is already assigned to: %1 La séquence de touches saisie est déjà affectée à : %1 - + A 3ds button Un bouton 3ds - + Restore Default Réinitialiser - + Clear Effacer - + The default key sequence is already assigned to: %1 La séquence de touches par défaut est déjà affectée à : %1 @@ -1646,307 +1646,307 @@ Souhaitez vous ignorer l'erreur et poursuivre ? ConfigureInput - + ConfigureInput Configuration des contrôleurs - + Profile Profil - + New Nouveau - + Delete Supprimer - + Rename Renommer - + Face Buttons Boutons de contrôle - + Y: Y : - + X: X : - + B: B : - + A: A : - + Directional Pad Pad directionnel - - - + + + Up: Haut : - - - + + + Down: Bas : - - - + + + Left: Gauche : - - - + + + Right: Droite : - + Misc. Divers - + Start: Start - + Select: Select - + Home: Bouton Home - + Power: Power : - + Circle Mod: Pad Circulaire : - + GPIO14: GPIO14 : - + Debug: Débogage : - + Circle Pad Pad circulaire - - - + + + Set Analog Stick Configurer le stick analogique - - + + Deadzone: 0 Zone morte : 0 - + C-Stick Stick C - + Shoulder Buttons Boutons latéraux - + ZR: ZR : - + ZL: ZL : - + L: L : - + R: R : - + Motion / Touch... Mouvement / Tactile... - + Auto Map Configuration automatique - + Clear All Tout effacer - + Restore Defaults Restaurer les paramètres par défaut - - - + + + Clear Effacer - - - + + + [not set] [non défini] - - - + + + Restore Default Réinitialiser - - + + Information Information - + After pressing OK, first move your joystick horizontally, and then vertically. Après avoir appuyé sur OK, déplacez votre joystick horizontalement, puis verticalement. - - + + Deadzone: %1% Zone morte : %1% - - + + Modifier Scale: %1% Mise à l'échelle du modificateur : %1% - + Warning Attention ! - + Auto mapping failed. Your controller may not have a corresponding mapping La configuration automatique des touches a échoué. Votre manette ne doit pas avoir de configuration adaptée. - + After pressing OK, press any button on your joystick Après avoir appuyé sur OK, appuyez sur un bouton de votre joystick - + [press key] [appuyer sur une touche] - + Error! Erreur ! - + You're using a key that's already bound. Vous utilisez une touche déjà configurée. - + New Profile Nouveau profil - + Enter the name for the new profile. Entrer le nom du nouveau profil - + Delete Profile Supprimer le profil - + Delete profile %1? Supprimer le profil %1 ? - + Rename Profile Renommer le profil - + New name: Nouveau nom : - + Duplicate profile name Nom de profil en double - + Profile name already exists. Please choose a different name. Ce nom de profil existe déjà. Veuillez choisir un nom différent. @@ -1954,198 +1954,198 @@ Souhaitez vous ignorer l'erreur et poursuivre ? ConfigureMotionTouch - + Configure Motion / Touch Configuration Mouvement / Tactile - + Motion Mouvement - + Motion Provider: Gestion du mouvement : - + Sensitivity: Sensibilité : - + Controller: Manette de jeu : - - - - - + + + + + Configure Configurer - + Touch Tactile - + Touch Provider: Gestion du tactile : - + Calibration: Calibration : - + (100, 50) - (1800, 850) (100, 50) - (1800, 850) - + Use button mapping: Utiliser l'affectation des boutons : - + CemuhookUDP Config Configuration de CemuhookUDP - + You may use any Cemuhook compatible UDP input source to provide motion and touch input. Vous pouvez utiliser n'importe quelle source d'entrée UDP compatible avec Cemuhook pour gérer le signal du mouvement et du tactile. - + Server: Serveur : - + Port: Port : - + Pad: Manette : - + Pad 1 Manette 1 - + Pad 2 Manette 2 - + Pad 3 Manette 3 - + Pad 4 Manette 4 - + Learn More En savoir plus - - + + Test Test - + Mouse (Right Click) Souris (clic droit) - - + + CemuhookUDP CemuhookUDP - + SDL SDL - + Emulator Window Fenêtre de l'émulateur - + <a href='https://citra-emu.org/wiki/using-a-controller-or-android-phone-for-motion-or-touch-input'><span style="text-decoration: underline; color:#039be5;">Learn More</span></a> <a href='https://citra-emu.org/wiki/using-a-controller-or-android-phone-for-motion-or-touch-input'><span style="text-decoration: underline; color:#039be5;">En savoir plus</span></a> - + Information Information - + After pressing OK, press a button on the controller whose motion you want to track. Après avoir appuyé sur OK, appuyez sur un bouton de la manette que vous voulez contrôler. - + [press button] [appuyez sur le bouton] - + Testing Test en cours - + Configuring Configuration - + Test Successful Test réussi - + Successfully received data from the server. Données reçues depuis le serveur avec succès. - + Test Failed Échec du test - + Could not receive valid data from the server.<br>Please verify that the server is set up correctly and the address and port are correct. Impossible de recevoir des données valides depuis le serveur.<br>Vérifier que le serveur est correctement configuré et que l'adresse et le port sont corrects. - + Citra Citra - + UDP Test or calibration configuration is in progress.<br>Please wait for them to finish. Test UDP ou configuration de la calibration en cours.<br>Veuillez attendre qu'ils se terminent. @@ -2153,97 +2153,97 @@ Souhaitez vous ignorer l'erreur et poursuivre ? ConfigurePerGame - + Dialog Dialogue - + Info Information - + Size Taille - + Format Format - + Name Nom - + Filepath Chemin du fichier - + Title ID ID du titre - + Reset Game Settings Réinitialiser les paramètres du jeu - + Use global configuration (%1) Utiliser la configuration globale (%1) - + General Général - + System Système - + Enhancements Améliorations - + Graphics Vidéo - + Audio Son - + Debug Débogage - + Cheats Codes de triche - + Properties Propriétés - + Citra Citra - + Are you sure you want to <b>reset your settings for this game</b>? Êtes-vous sûr de vouloir <b>réinitialiser vos paramètres pour ce jeu</b> ? @@ -2251,65 +2251,65 @@ Souhaitez vous ignorer l'erreur et poursuivre ? ConfigureStorage - + Form Formulaire - + Storage Stockage - + Use Virtual SD Utiliser une carte SD virtuelle - + Custom Storage Stockage personnalisé - + Use Custom Storage Utiliser le stockage personnalisé - + NAND Directory Répertoire de la NAND - - + + Open Ouvrir - - + + NOTE: This does not move the contents of the previous directory to the new one. NOTE : Cette action ne déplacera pas le contenu du répertoire précédent vers le nouveau. - - + + Change Changer - + SDMC Directory Répertoire SDMC - + Select NAND Directory Sélectionner le répertoire de la NAND - + Select SDMC Directory Sélectionner le Répertoire SDMC @@ -2317,1064 +2317,1064 @@ Souhaitez vous ignorer l'erreur et poursuivre ? ConfigureSystem - + Form Formulaire - + System Settings Paramètres système - + Enable New 3DS mode Activer le mode New 3DS - + Use LLE applets (if installed) Utilisez les applets LLE (si installées) - + Username Nom d'utilisateur - + Birthday Date de naissance - + January Janvier - + February Février - + March Mars - + April Avril - + May Mai - + June Juin - + July Juillet - + August Août - + September Septembre - + October Octobre - + November Novembre - + December Décembre - + Language Langue - + Note: this can be overridden when region setting is auto-select Note : ceci peut être remplacé quand le paramètre de région est défini sur Automatique - + Japanese (日本語) Japonais (日本語) - + English Anglais - + French (français) Français (français) - + German (Deutsch) Allemand (Deutsch) - + Italian (italiano) Italien (italiano) - + Spanish (español) Espagnol (español) - + Simplified Chinese (简体中文) Chinois simplifié (简体中文) - + Korean (한국어) Coréen (한국어) - + Dutch (Nederlands) Néerlandais (Nederlands) - + Portuguese (português) Portugais (português) - + Russian (Русский) Russe (Русский) - + Traditional Chinese (正體中文) Chinois traditionnel (正體中文) - + Sound output mode Mode de sortie audio - + Mono Mono - + Stereo Stéreo - + Surround Surround - + Country Pays - + Clock Horloge - + System Clock Horloge système - + Fixed Time Temps fixe - + Startup time Heure au démarrage - + yyyy-MM-ddTHH:mm:ss yyyy-MM-ddTHH:mm:ss - + Offset time Décalage horaire - + days jours - + HH:mm:ss HH:MM:SS - + Initial System Ticks Ticks système initiaux - + Random Aléatoire - + Fixed Fixe - + Initial System Ticks Override Remplacement des ticks système initiaux - + Play Coins: Pièces de jeu : - + Run System Setup when Home Menu is launched Exécuter la configuration du système lorsque le menu home est lancé - + Console ID: Console ID : - + Regenerate Regénérer - + 3GX Plugin Loader: Chargeur de plugin 3GX : - + Enable 3GX plugin loader Activer le chargeur de plugin 3GX - + Allow games to change plugin loader state Autoriser les jeux à changer l'état du chargeur de plugin - + Download System Files from Nitendo servers Télécharger les fichiers système à partir des serveurs de Nintendo - + Minimal Minimal - + Old 3DS Old 3DS - + New 3DS New 3DS - + JPN JPN - + USA USA - + EUR EUR - + AUS AUS - + CHN CHN - + KOR KOR - + TWN TWN - + Download Télécharger - + System settings are available only when game is not running. Les paramètres systèmes ne sont disponibles que lorsque l'émulation n'est pas en cours. - + Japan Japon - + Anguilla Anguilla - + Antigua and Barbuda Antigua et Barbuda - + Argentina Argentine - + Aruba Aruba - + Bahamas Bahamas - + Barbados Barbade - + Belize Belize - + Bolivia Bolivie - + Brazil Brésil - + British Virgin Islands Îles Vierges britanniques - + Canada Canada - + Cayman Islands Îles Caïmans - + Chile Chili - + Colombia Colombie - + Costa Rica Costa Rica - + Dominica Dominique - + Dominican Republic République dominicaine - + Ecuador Équateur - + El Salvador Salvador - + French Guiana Guyane - + Grenada Grenade - + Guadeloupe Guadeloupe - + Guatemala Guatemala - + Guyana Guyana - + Haiti Haïti - + Honduras Honduras - + Jamaica Jamaïque - + Martinique Martinique - + Mexico Mexique - + Montserrat Montserrat - + Netherlands Antilles Antilles néerlandaises - + Nicaragua Nicaragua - + Panama Panama - + Paraguay Paraguay - + Peru Pérou - + Saint Kitts and Nevis Saint Christophe et Niévès - + Saint Lucia Sainte Lucie - + Saint Vincent and the Grenadines Saint Vincent et les Grenadines - + Suriname Suriname - + Trinidad and Tobago Trinité et Tobago - + Turks and Caicos Islands Îles Turques et Caïques - + United States États Unis - + Uruguay Uruguay - + US Virgin Islands Îles Vierges des États Unis - + Venezuela Venezuela - + Albania Albanie - + Australia Australie - + Austria Autriche - + Belgium Belgique - + Bosnia and Herzegovina Bosnie Herzégovine - + Botswana Botswana - + Bulgaria Bulgarie - + Croatia Croatie - + Cyprus Chypre - + Czech Republic République tchèque - + Denmark Danemark - + Estonia Estonie - + Finland Finlande - + France France - + Germany Allemagne - + Greece Grèce - + Hungary Hongrie - + Iceland Islande - + Ireland Irlande - + Italy Italie - + Latvia Lettonie - + Lesotho Lesotho - + Liechtenstein Liechtenstein - + Lithuania Lituanie - + Luxembourg Luxembourg - + Macedonia Macédoine - + Malta Malte - + Montenegro Monténégro - + Mozambique Mozambique - + Namibia Namibie - + Netherlands Pays-Bas - + New Zealand Nouvelle-Zélande - + Norway Norvège - + Poland Pologne - + Portugal Portugal - + Romania Roumanie - + Russia Russie - + Serbia Serbie - + Slovakia Slovaquie - + Slovenia Slovénie - + South Africa Afrique du Sud - + Spain Espagne - + Swaziland Eswatini - + Sweden Suède - + Switzerland Suisse - + Turkey Turquie - + United Kingdom Royaume Uni - + Zambia Zambie - + Zimbabwe Zimbabwe - + Azerbaijan Azerbaïdjan - + Mauritania Mauritanie - + Mali Mali - + Niger Niger - + Chad Tchad - + Sudan Soudan - + Eritrea Érythrée - + Djibouti Djibouti - + Somalia Somalie - + Andorra Andorre - + Gibraltar Gibraltar - + Guernsey Guernesey - + Isle of Man Île de Man - + Jersey Jersey - + Monaco Monaco - + Taiwan Taïwan - + South Korea Corée du Sud - + Hong Kong Hong Kong - + Macau Macao - + Indonesia Indonésie - + Singapore Singapour - + Thailand Thaïlande - + Philippines Philippines - + Malaysia Malaisie - + China Chine - + United Arab Emirates Émirats arabes unis - + India Inde - + Egypt Égypte - + Oman Oman - + Qatar Qatar - + Kuwait Koweït - + Saudi Arabia Arabie saoudite - + Syria Syrie - + Bahrain Bahreïn - + Jordan Jordanie - + San Marino Saint-Marin - + Vatican City Vatican - + Bermuda Bermudes - + Download System Files from Nintendo servers Télécharger des fichiers système à partir des serveurs Nintendo - + Citra is missing keys to download system files. <br><a href='https://citra-emu.org/wiki/aes-keys/'><span style="text-decoration: underline; color:#039be5;">How to get keys?</span></a> Citra manque de clés pour télécharger les fichiers système. <br><a href='https://citra-emu.org/wiki/aes-keys/'><span style="text-decoration: underline; color:#039be5;">Comment obtenir des clés ?</span></a> - - + + Console ID: 0x%1 Console ID : 0x%1 - + This will replace your current virtual 3DS with a new one. Your current virtual 3DS will not be recoverable. This might have unexpected effects in games. This might fail, if you use an outdated config savegame. Continue? Ceci va remplacer votre 3DS virtuelle actuelle avec une nouvelle. Votre 3DS virtuelle actuelle ne sera plus récupérable. Cela pourrait avoir des effets inattendus pour certains jeux. Cela pourrait échouer, si vous utilisez une ancienne sauvegarde de jeu. Continuer? - + Warning Avertissement - + Downloading files... Téléchargement des fichiers... - + Cancel Annuler - - + + Citra Citra - + Downloading system files failed. Le téléchargement des fichiers système a échoué. - + Successfully downloaded system files. Fichiers système téléchargés avec succès. @@ -3382,91 +3382,91 @@ Souhaitez vous ignorer l'erreur et poursuivre ? ConfigureTouchFromButton - + Configure Touchscreen Mappings Configurer les affectations de l'écran tactile - + Mapping: Affectation : - + New Nouveau - + Delete Supprimer - + Rename Renommer - + Click the bottom area to add a point, then press a button to bind. Drag points to change position, or double-click table cells to edit values. Cliquez sur la zone inférieure pour ajouter un point, puis appuyez sur un bouton pour combiner. Glissez les points pour modifier la position, ou double-cliquez les cellules pour éditer les valeurs. - + Delete Point Supprimer un point - + Button Bouton - + X X axis X - + Y Y axis Y - + New Profile Nouveau profil - + Enter the name for the new profile. Entrer le nom du nouveau profil - + Delete Profile Supprimer le profil - + Delete profile %1? Supprimer le profil %1 ? - + Rename Profile Renommer le profil - + New name: Nouveau nom : - + [press key] [appuyez sur une touche] @@ -3474,113 +3474,113 @@ Glissez les points pour modifier la position, ou double-cliquez les cellules pou ConfigureUi - + Form Formulaire - + General Générale - + Note: Changing language will apply your configuration. Note : Changer la langue appliquera votre configuration. - + Interface language: Langue de l'interface : - + Theme: Thème : - + Game List Liste de jeux - + Icon Size: Talle de l'icône : - - + + None Aucun - + Small (24x24) Petite (24x24) - + Large (48x48) Grande (48x48) - + Row 1 Text: Texte de la ligne 1 : - - + + File Name Nom du fichier - - + + Full Path Chemin complet - - + + Title Name (short) Nom du titre (court) - - + + Title ID ID du titre - - + + Title Name (long) Nom du Titre (long) - + Row 2 Text: Texte de la ligne 2 : - + Hide Titles without Icon Masquer les titres sans icône - + Single Line Mode Mode simple ligne - + <System> <System> - + English Anglais @@ -3588,135 +3588,135 @@ Glissez les points pour modifier la position, ou double-cliquez les cellules pou ConfigureWeb - + Form Forme - + Citra Web Service Service web de Citra - + By providing your username and token, you agree to allow Citra to collect additional usage data, which may include user identifying information. En fournissant votre nom d'utilisateur et votre jeton, vous acceptez d'autoriser Citra à collecter des données d'utilisation supplémentaires, qui peuvent inclure des informations d'identification de l'utilisateur. - - + + Verify Vérifier - + Sign up S'inscrire - + Token: Jeton : - + Username: Nom d'utilisateur - + What is my token? Quel est mon jeton ? - + Web Service configuration can only be changed when a public room isn't being hosted. La configuration du service Web ne peut être modifiée que si un salon publique n'est pas en cours d'hébergement. - + Telemetry Télémétrie - + Share anonymous usage data with the Citra team Partage des données d'utilisation anonymes avec l'équipe Citra - + Learn more En savoir plus - + Telemetry ID: ID de télémétrie : - + Regenerate Régénérer - + Discord Presence Présence sur Discord - + Show Current Game in your Discord Status Afficher votre jeu en cours dans votre statut Discord - + <a href='https://citra-emu.org/entry/telemetry-and-why-thats-a-good-thing/'><span style="text-decoration: underline; color:#039be5;">Learn more</span></a> <a href='https://citra-emu.org/entry/telemetry-and-why-thats-a-good-thing/'><span style="text-decoration: underline; color:#039be5;">En savoir plus</span></a> - + <a href='https://profile.citra-emu.org/'><span style="text-decoration: underline; color:#039be5;">Sign up</span></a> <a href='https://profile.citra-emu.org/'><span style="text-decoration: underline; color:#039be5;">S'inscrire</span></a> - + <a href='https://citra-emu.org/wiki/citra-web-service/'><span style="text-decoration: underline; color:#039be5;">What is my token?</span></a> <a href='https://citra-emu.org/wiki/citra-web-service/'><span style="text-decoration: underline; color:#039be5;">Quel est mon jeton ?</span></a> - - + + Unspecified Non spécifié - - + + Telemetry ID: 0x%1 ID de télémétrie: 0x%1 - + Token not verified Jeton non vérifié - + Token was not verified. The change to your token has not been saved. Jeton non vérifié. La modification de votre jeton n'a pas été sauvegardée. - + Verifying... Vérification en cours... - + Verification failed Échec de la vérification - + Verification failed. Check that you have entered your token correctly, and that your internet connection is working. Échec de la vérification. Vérifiez que le jeton a été écris correctement et que votre connexion internet fonctionne. @@ -3724,47 +3724,47 @@ Glissez les points pour modifier la position, ou double-cliquez les cellules pou DirectConnect - + Direct Connect Connexion Directe - + Server Address Adresse du serveur - + <html><head/><body><p>Server address of the host</p></body></html> <html><head/><body><p>Adresse du serveur de l'hôte</p></body></html> - + Port Port - + <html><head/><body><p>Port number the host is listening on</p></body></html> <html><head/><body><p>Numéro du port choisi par l'hôte</p></body></html> - + 24872 24872 - + Nickname Pseudo - + Password Mot de passe - + Connect Connecter @@ -3772,12 +3772,12 @@ Glissez les points pour modifier la position, ou double-cliquez les cellules pou DirectConnectWindow - + Connecting Connexion en cours - + Connect Connecter @@ -3785,111 +3785,111 @@ Glissez les points pour modifier la position, ou double-cliquez les cellules pou DumpingDialog - + Dump Video Capturer la vidéo - + Output Sortie - + Format: Format : - - - + + + Options: Options : - - - - + + + + ... ... - + Path: Chemin : - + Video Vidéo - - + + Encoder: Encodeur : - - + + Bitrate: Débit : - - + + bps bps - + Audio Audio - - + + Citra Citra - + Please specify the output path. Veuillez spécifier le chemin de sortie. - + output formats formats de sortie - + video encoders encodeurs vidéo - + audio encoders encodeurs vidéo - + Could not find any available %1. Please check your FFmpeg installation used for compilation. Impossible de trouver un %1 disponible. Veuillez vérifier votre installation FFmpeg utilisée pour la compilation. - - - - + + + + %1 (%2) %1 (%2) - + Select Video Output Path Sélectionner le chemin de sortie de la vidéo. @@ -3897,342 +3897,342 @@ Veuillez vérifier votre installation FFmpeg utilisée pour la compilation. GMainWindow - + <a href='https://citra-emu.org/entry/telemetry-and-why-thats-a-good-thing/'>Anonymous data is collected</a> to help improve Citra. <br/><br/>Would you like to share your usage data with us? <a href='https://citra-emu.org/entry/telemetry-and-why-thats-a-good-thing/'>Des données anonymes sont collectées</a> afin d'aider à l'amélioration de Citra. <br/><br/>Souhaitez vous communiquer vos données avec nous ? - + Telemetry Télémétrie - + No Suitable Vulkan Devices Detected Aucun périphérique Vulkan adapté détecté - + Vulkan initialization failed during boot.<br/>Your GPU may not support Vulkan 1.1, or you do not have the latest graphics driver. L'initialisation de Vulkan a échoué au démarrage.<br/>Votre GPU pourrait ne pas prendre en charge Vulkan 1.1, ou vous pourriez ne pas avoir le pilote graphique le plus récent. - - + + Current emulation speed. Values higher or lower than 100% indicate emulation is running faster or slower than a 3DS. Vitesse actuelle d'émulation. Les valeurs supérieures ou inférieures à 100% indiquent que l'émulation est plus rapide ou plus lente qu'une 3DS. - - + + How many frames per second the game is currently displaying. This will vary from game to game and scene to scene. Nombre d'images par seconde le jeu affiche actuellement. Cela varie d'un jeu à l'autre et d'une scène à l'autre. - - + + Time taken to emulate a 3DS frame, not counting framelimiting or v-sync. For full-speed emulation this should be at most 16.67 ms. Temps nécessaire pour émuler une trame 3DS, sans compter la limitation de trame ou la synchronisation verticale V-Sync. Pour une émulation à pleine vitesse, cela ne devrait pas dépasser 16,67 ms. - + Clear Recent Files Effacer les fichiers récents - + &Continue &Continuer - + &Pause &Pause - + Update Available Mise à jour disponible - + An update is available. Would you like to install it now? Une mise à jour est disponible. Voulez-vous l'installer maintenant ? - + No Update Found Aucune mise à jour trouvée - + No update is found. Aucune mise à jour n'a été trouvée. - + Citra is running a game TRANSLATORS: This string is shown to the user to explain why Citra needs to prevent the computer from sleeping Citra est en train de faire fonctionner un jeu - - + + Invalid ROM Format Format de ROM non valide - - + + Your ROM format is not supported.<br/>Please follow the guides to redump your <a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>game cartridges</a> or <a href='https://citra-emu.org/wiki/dumping-installed-titles/'>installed titles</a>. Le format de votre ROM n'est pas supporté.<br/>Veuillez suivre les guides afin de dumper (copier) vos <a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>cartouches de jeu</a> ou <a href='https://citra-emu.org/wiki/dumping-installed-titles/'>les titres installés</a> - + ROM Corrupted ROM corrompue - + Your ROM is corrupted. <br/>Please follow the guides to redump your <a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>game cartridges</a> or <a href='https://citra-emu.org/wiki/dumping-installed-titles/'>installed titles</a>. Votre ROM est corrompue. <br/>Veuilez suivre les guides afin de dumper (copier) vos<a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>cartouches de jeu</a> ou <a href='https://citra-emu.org/wiki/dumping-installed-titles/'>les titres installés</a>. - + ROM Encrypted ROM chiffrée - + Your ROM is encrypted. <br/>Please follow the guides to redump your <a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>game cartridges</a> or <a href='https://citra-emu.org/wiki/dumping-installed-titles/'>installed titles</a>. Votre ROM est chiffrée. <br/>Veuillez suivre les guides afin de redumper vos <a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>cartouches de jeu</a> ou <a href='https://citra-emu.org/wiki/dumping-installed-titles/'>titres installés</a>. - + Unsupported ROM ROM non prise en charge - + GBA Virtual Console ROMs are not supported by Citra. Les ROM de la console virtuelle GBA ne sont pas prises en charge par Citra. - + Error while loading ROM! Erreur lors du chargement de la ROM ! - + An unknown error occurred. Please see the log for more details. Une erreur inconnue s'est produite. Veuillez consulter le journal pour plus de détails. - + CIA must be installed before usage CIA doit être installé avant utilisation - + Before using this CIA, you must install it. Do you want to install it now? Avant d'utiliser ce CIA, vous devez l'installer. Voulez-vous l'installer maintenant ? - - + + Slot %1 Emplacement %1 - + Slot %1 - %2 %3 Emplacement %1 - %2 %3 - + Error Opening %1 Folder Erreur lors de l'ouverture du dossier %1 - - + + Folder does not exist! Le répertoire n'existe pas ! - + Dumping... Extraction... - - + + Cancel Annuler - - - - - - - - - + + + + + + + + + Citra Citra - + Could not dump base RomFS. Refer to the log for details. Impossible d'extraire RomFS de base. Référez vous au fichier journal pour les détails. - + Error Opening %1 Erreur lors de l'ouverture de %1 - + Select Directory Sélectionner un répertoire - + Properties Propriétés - + The game properties could not be loaded. Les propriétés du jeu n'ont pas pu être chargées. - + 3DS Executable (%1);;All Files (*.*) %1 is an identifier for the 3DS executable file extensions. Exécutable 3DS (%1);;Tous les fichiers (*.*) - + Load File Charger un fichier - + Load Files Charger les fichiers - + 3DS Installation File (*.CIA*) Fichier d'installation 3DS (*.CIA*) - + All Files (*.*) Tous les fichiers (*.*) - + %1 has been installed successfully. %1 a été installé avec succès. - + Unable to open File Impossible d'ouvrir le fichier - + Could not open %1 Impossible d'ouvrir %1 - + Installation aborted Installation annulée - + The installation of %1 was aborted. Please see the log for more details L'installation de %1 a été interrompue. Veuillez consulter le fichier log pour plus de détails. - + Invalid File Fichier invalide - + %1 is not a valid CIA %1 n'est pas un CIA valide - + Encrypted File Fichier encrypté - + %1 must be decrypted before being used with Citra. A real 3DS is required. %1 doit être décrypté avant de fonctionner avec Citra. Une véritable 3DS est requise. - + Unable to find File Impossible de trouver le fichier - + Could not find %1 Impossible de trouver %1 - + Uninstalling '%1'... Désinstallation de '%1'... - + Failed to uninstall '%1'. Échec de la désinstallation de '%1'. - + Successfully uninstalled '%1'. Désinstallation de '%1' réussie. - + File not found Fichier non trouvé - + File "%1" not found Le fichier "%1" n'a pas été trouvé - + Missing Citra Account Compte Citra absent - + You must link your Citra account to submit test cases.<br/>Go to Emulation &gt; Configure... &gt; Web to do so. Vous devez rattacher votre compte Citra pour soumettre des cas test.<br/>Allez sur Emulation &gt; Configurer... &gt; Web pour procéder. - + Savestates Savestates - + Warning: Savestates are NOT a replacement for in-game saves, and are not meant to be reliable. Use at your own risk! @@ -4241,76 +4241,76 @@ Use at your own risk! Utilisez-les à vos propres risques ! - - - + + + Error opening amiibo data file Erreur d'ouverture du fichier de données amiibo - + A tag is already in use. Un tag est déjà en cours d'utilisation. - + Game is not looking for amiibos. Le jeu ne recherche pas d'amiibos. - + Amiibo File (%1);; All Files (*.*) Fichier Amiibo (%1);; Tous les fichiers (*.*) - + Load Amiibo Charger un Amiibo - + Unable to open amiibo file "%1" for reading. Impossible d'ouvrir le fichier amiibo "%1" pour le lire. - + Record Movie Enregistrer une vidéo - + Movie recording cancelled. Enregistrement de la vidéo annulé. - - + + Movie Saved Vidéo enregistrée - - + + The movie is successfully saved. La vidéo a été enregistrée avec succès. - + Invalid Screenshot Directory Répertoire des captures d'écran invalide - + Cannot create specified screenshot directory. Screenshot path is set back to its default value. Création du répertoire des captures d'écran spécifié impossible. Le chemin d'accès vers les captures d'écran est réinitialisé à sa valeur par défaut. - + Could not load video dumper Impossible de charger le module de capture vidéo. - + FFmpeg could not be loaded. Make sure you have a compatible version installed. To install FFmpeg to Citra, press Open and select your FFmpeg directory. @@ -4323,158 +4323,158 @@ Pour installer FFmpeg sur Citra, appuyez sur "Ouvrir" et sélectionnez Pour consulter un guide sur l'installation de FFmpeg, appuyez sur "Aide". - + Select FFmpeg Directory Sélectionnez le répertoire FFmpeg. - + The provided FFmpeg directory is missing %1. Please make sure the correct directory was selected. Le répertoire FFmpeg fourni manque %1. Assurez-vous d'avoir sélectionné le répertoire correct. - + FFmpeg has been sucessfully installed. FFmpeg a été installé avec succès. - + Installation of FFmpeg failed. Check the log file for details. L'installation de FFmpeg a échoué. Consultez le fichier journal pour plus de détails. - + Could not start video dumping.<br>Refer to the log for details. Impossible de lancer l'extraction de la vidéo.<br>Référez vous au fichier journal pour les détails. - + Recording %1 Enregistrement %1 - + Playing %1 / %2 Lecture de %1 / %2 - + Movie Finished Vidéo terminée - + Speed: %1% Vitesse : %1% - + Speed: %1% / %2% Vitesse : %1% / %2% - + Game: %1 FPS Jeux : %1 FPS - + Frame: %1 ms Trame : %1 ms - + VOLUME: MUTE VOLUME : MUET - + VOLUME: %1% Volume percentage (e.g. 50%) VOLUME : %1% - + %1 is missing. Please <a href='https://citra-emu.org/wiki/dumping-system-archives-and-the-shared-fonts-from-a-3ds-console/'>dump your system archives</a>.<br/>Continuing emulation may result in crashes and bugs. %1 est manquant. Merci de <a href='https://citra-emu.org/wiki/dumping-system-archives-and-the-shared-fonts-from-a-3ds-console/'>dumper vos archives système</a>.<br/>Continuer l'émulation peut entrainer des plantages et des bugs. - + A system archive Une archive système - + System Archive Not Found Archive système non trouvé - + System Archive Missing Archive système introuvable - + Save/load Error Erreur lors de la sauvegarde/chargement - + Fatal Error Erreur fatale - + A fatal error occurred. <a href='https://community.citra-emu.org/t/how-to-upload-the-log-file/296'>Check the log</a> for details.<br/>Continuing emulation may result in crashes and bugs. Une erreur fatale s'est produite. <a href='https://community.citra-emu.org/t/how-to-upload-the-log-file/296'>Consultez le rapport</a>pour plus de détails.<br/>Continuer l'émulation peut entrainer des plantages et des bugs. - + Fatal Error encountered Une erreur fatale s'est produite - + Continue Continuer - + Quit Game Quitter le jeu - + OK OK - + Would you like to exit now? Voulez-vous quitter maintenant ? - + The game is still running. Would you like to stop emulation? Le jeu est en cours de fonctionnement. Voulez-vous arrêter l'émulation ? - + Playback Completed Lecture terminée - + Movie playback completed. Lecture de la vidéo terminée. - + Primary Window Fenêtre principale - + Secondary Window Fenêtre secondaire @@ -4482,22 +4482,22 @@ Pour consulter un guide sur l'installation de FFmpeg, appuyez sur "Aid GPUCommandListModel - + Command Name Nom de la commande - + Register Registre - + Mask Masque - + New Value Nouvelle valeur @@ -4505,23 +4505,23 @@ Pour consulter un guide sur l'installation de FFmpeg, appuyez sur "Aid GPUCommandListWidget - + Pica Command List Liste de commande PICA - - + + Start Tracing Commencer le traçage - + Copy All Copier tout - + Finish Tracing Arrêter le traçage @@ -4529,7 +4529,7 @@ Pour consulter un guide sur l'installation de FFmpeg, appuyez sur "Aid GPUCommandStreamWidget - + Graphics Debugger Débogueur graphique @@ -4537,42 +4537,42 @@ Pour consulter un guide sur l'installation de FFmpeg, appuyez sur "Aid GRenderWindow - + OpenGL not available! OpenGL non disponible ! - + OpenGL shared contexts are not supported. Les contextes partagés OpenGL ne sont pas pris en charge. - + Error while initializing OpenGL! Erreur lors de l'initialisation d'OpenGL ! - + Your GPU may not support OpenGL, or you do not have the latest graphics driver. Votre GPU peut ne pas prendre en charge OpenGL ou vous ne disposez pas du dernier pilote graphique. - + Error while initializing OpenGL 4.3! Erreur lors de l'initialisation d'OpenGL 4.3 ! - + Your GPU may not support OpenGL 4.3, or you do not have the latest graphics driver.<br><br>GL Renderer:<br>%1 Votre GPU peut ne pas prendre en charge OpenGL 4.3 ou vous ne disposez pas du dernier pilote graphique.<br><br>Moteur de rendu GL :<br>%1 - + Error while initializing OpenGL ES 3.2! Erreur lors de l'initialisation d'OpenGL ES 3.2 ! - + Your GPU may not support OpenGL ES 3.2, or you do not have the latest graphics driver.<br><br>GL Renderer:<br>%1 Votre GPU pourrait ne pas prendre en charge OpenGL ES 3.2, ou vous pourriez ne pas avoir le pilote graphique le plus récent.<br><br>Moteur de rendu GL :<br>%1 @@ -4580,134 +4580,134 @@ Pour consulter un guide sur l'installation de FFmpeg, appuyez sur "Aid GameList - - + + Compatibility Compatibilité - - + + Region Région - - + + File type Type de fichier - - + + Size Taille - + Open Save Data Location Ouvrir l'emplacement des données de sauvegarde - + Open Extra Data Location Ouvrir un emplacement de données supplémentaire - + Open Application Location Ouvrir l'emplacement de l'application - + Open Update Data Location Ouvrir l'emplacement des données de mise à jour - + Open DLC Data Location Ouvrir l'emplacement des DLC - + Open Texture Dump Location Ouvrir l'emplacement du vidage des textures - + Open Custom Texture Location Ouvrir l'emplacement personnalisé des textures - + Open Mods Location Ouvrir l'emplacement des mods - + Dump RomFS Extraire RomFS - + Disk Shader Cache Cache de shader de disque - + Open Shader Cache Location Ouvrir l'emplacement du cache de shader - + Delete OpenGL Shader Cache Supprimer le cache de shader OpenGL - + Uninstall Désinstaller - + Everything Tout - + Game Jeu - + Update Mise à jour - + DLC DLC - + Navigate to GameDB entry Naviguer jusqu'à l'entrée de la GameDB - + Properties Propriétés - - - - + + + + Citra Citra - + Are you sure you want to completely uninstall '%1'? This will delete the game if installed, as well as any installed updates or DLC. @@ -4716,59 +4716,59 @@ This will delete the game if installed, as well as any installed updates or DLC. Cela supprimera le jeu s'il est installé, ainsi que toutes les mises à jour ou DLC installés. - - + + %1 (Update) %1 (Mise à jour) - - + + %1 (DLC) %1 (DLC) - + Are you sure you want to uninstall '%1'? Êtes-vous sûr de vouloir désinstaller '%1' ? - + Are you sure you want to uninstall the update for '%1'? Êtes-vous sûr de vouloir désinstaller la mise à jour de '%1' ? - + Are you sure you want to uninstall all DLC for '%1'? Êtes-vous sûr de vouloir désinstaller le DLC de '%1' ? - + Scan Subfolders Scanner les sous-dossiers - + Remove Game Directory Supprimer ce répertoire de jeu - + Move Up Déplacer en haut - + Move Down Déplacer en bas - + Open Directory Location Ouvrir l'emplacement de ce répertoire - + Name Nom @@ -4776,77 +4776,77 @@ Cela supprimera le jeu s'il est installé, ainsi que toutes les mises à jo GameListItemCompat - + Perfect Parfait - + Game functions flawless with no audio or graphical glitches, all tested functionality works as intended without any workarounds needed. Le jeu fonctionne parfaitement sans bug audio ni graphique, toutes les fonctionnalités testées marchent comme prévu sans besoin de correctif. - + Great Bien - + Game functions with minor graphical or audio glitches and is playable from start to finish. May require some workarounds. Le jeu fonctionne avec des bugs audio ou graphiques mineurs et est jouable du début à la fin. Peut nécessiter certains ajustements. - + Okay Ok - + Game functions with major graphical or audio glitches, but game is playable from start to finish with workarounds. Le jeu fonctionne avec des bugs audio ou graphiques majeurs, mais il est jouable du début à la fin avec des ajustements. - + Bad Mauvais - + Game functions, but with major graphical or audio glitches. Unable to progress in specific areas due to glitches even with workarounds. Le jeu fonctionne, mais avec des bugs audio ou graphiques majeurs. Impossible de se rendre dans certaines zones à cause des bugs même avec des ajustements. - + Intro/Menu Intro/Menu - + Game is completely unplayable due to major graphical or audio glitches. Unable to progress past the Start Screen. Le jeu est totalement injouable à cause de bugs graphiques ou audio majeurs. Impossible de dépasser l'écran titre. - + Won't Boot Ne se lance pas - + The game crashes when attempting to startup. Le jeu plante au démarrage. - + Not Tested Non testé - + The game has not yet been tested. Le jeu n'a pas encore été testé. @@ -4854,7 +4854,7 @@ Screen. GameListPlaceholder - + Double-click to add a new folder to the game list Faites un double-clic pour ajouter un nouveau dossier à la liste de jeux @@ -4862,27 +4862,27 @@ Screen. GameListSearchField - + of sur - + result résultat - + results résultats - + Filter: Filtre : - + Enter pattern to filter Entrer le motif de filtrage @@ -4890,47 +4890,47 @@ Screen. GameRegion - + Japan Japon - + North America Amérique du nord - + Europe Europe - + Australia Australie - + China Chine - + Korea Corée - + Taiwan Taïwan - + Invalid region Région non valide - + Region free Multi-zones @@ -4938,23 +4938,23 @@ Screen. GraphicsBreakPointsWidget - + Pica Breakpoints Points d'arrêt PICA - - + + Emulation running Émulation en cours - + Resume Reprendre - + Emulation halted at breakpoint L'émulation s'est arrêtée au point d'arrêt @@ -4962,146 +4962,146 @@ Screen. GraphicsSurfaceWidget - + Pica Surface Viewer Visionneuse de surface PICA - + Color Buffer Tampon de couleur - + Depth Buffer Tampon de profondeur - + Stencil Buffer Template Buffer - + Texture 0 Texture 0 - + Texture 1 Texture 1 - + Texture 2 Texture 2 - + Custom Custom - + Unknown Inconnu - + Save Enregistrer - + Source: Source : - + Physical Address: Adresse physique : - + Width: Largeur : - + Height: Hauteur : - + Format: Format : - + X: X : - + Y: Y : - + Pixel out of bounds Pixel hors champs - + (unable to access pixel data) (impossible d'accéder aux données pixels) - + (invalid surface address) (adresse de surface invalide) - + (unknown surface format) (format de surface inconnu) - + Portable Network Graphic (*.png) Portable Network Graphic (*.png) - + Binary data (*.bin) Données binaires (*.bin) - + Save Surface Sauvegarder la surface - - - - + + + + Error Erreur - - + + Failed to open file '%1' Impossible d'ouvrir le fichier '%1' - + Failed to save surface data to file '%1' Impossible de sauvegarder les données de surface dans le fichier '%1' - + Failed to completely write surface data to file. The saved data will likely be corrupt. Impossible d'écrire en totalité les données du surface dans le fichier. Les données sauvegardées seront probablement corrompues. @@ -5109,42 +5109,42 @@ Screen. GraphicsTracingWidget - + CiTrace Recorder Enregistreur CiTrace - + Start Recording Démarrer l'enregistrement - + Stop and Save Arrêter et enregistrer - + Abort Recording Stopper l'enregistrement - + Save CiTrace Sauvegarder CiTrace - + CiTrace File (*.ctf) Fichier CiTrace (*.ctf) - + CiTracing still active CiTrace est actif - + A CiTrace is still being recorded. Do you want to save it? If not, all recorded data will be discarded. Une instance CiTrace est en cours d'enregistrement. Voulez vous sauvegarder ? Toutes les données non sauvegardées seront perdues. @@ -5152,17 +5152,17 @@ Screen. GraphicsVertexShaderModel - + Offset Offset - + Raw Raw - + Disassembly Désassembleur @@ -5170,127 +5170,127 @@ Screen. GraphicsVertexShaderWidget - + Save Shader Dump Sauvegarder les Shaders - + Shader Binary (*.shbin) Fichier Shader Binaire (*.shbin) - + Pica Vertex Shader Pica Vertex Shader - + (data only available at vertex shader invocation breakpoints) (données uniquement disponibles aux points d'arrêts de l'invocation des vertex shaders) - + Dump Dump - + Input Data Données d'entrées - + Attribute %1 Attribut %1 - + Cycle Index: Index du cycle : - + SRC1: %1, %2, %3, %4 SRC1 : %1, %2, %3, %4 - + SRC2: %1, %2, %3, %4 SRC2 : %1, %2, %3, %4 - + SRC3: %1, %2, %3, %4 SRC3 : %1, %2, %3, %4 - + DEST_IN: %1, %2, %3, %4 DEST_IN : %1, %2, %3, %4 - + DEST_OUT: %1, %2, %3, %4 DEST_OUT : %1, %2, %3, %4 - + Address Registers: %1, %2 Adresse des Registres : %1, %2 - + Compare Result: %1, %2 Comparer le résultat : %1, %2 - + Static Condition: %1 Condition Statique : %1 - + Dynamic Conditions: %1, %2 Conditions Dynamiques : %1, %2 - + Loop Parameters: %1 (repeats), %2 (initializer), %3 (increment), %4 Loop Parameters : %1 (repeats), %2 (initializer), %3 (increment), %4 - + Instruction offset: 0x%1 Instruction offset : 0x%1 - + -> 0x%2 -> 0x%2 - + (last instruction) (instruction précédente) @@ -5298,67 +5298,67 @@ Screen. HostRoom - + Create Room Créer un salon - + Room Name Nom du salon - + Preferred Game Jeu préféré - + Max Players Nb Joueurs Max - + Username Nom d'utilisateur - + (Leave blank for open game) (Laisser vide pour un jeu ouvert) - + Password Mot de passe - + Port Port - + Room Description Description du salon - + Load Previous Ban List Charger la liste de bannissement précédente - + Public Public - + Unlisted Non listée - + Host Room Héberger le salon @@ -5366,12 +5366,12 @@ Screen. HostRoomWindow - + Error Erreur - + Failed to announce the room to the public lobby. In order to host a room publicly, you must have a valid Citra account configured in Emulation -> Configure -> Web. If you do not want to publish a room in the public lobby, then select Unlisted instead. Debug Message: L'affichage du salon dans le hall public a échoué. Pour héberger un salon public, vous devez configurer un compte Citra valide dans Emulation -> Configurer... -> Web. Si vous ne souhaitez pas publier un salon dans le hall public, choisissez Non Listé à la place. @@ -5381,47 +5381,47 @@ Message de débogage : IPCRecorder - + IPC Recorder Enregistreur IPC - + Enable Recording Commencer l'enregistrement - + Filter: Filtre : - + Leave empty to disable filtering Laisser vide pour désactiver le filtrage - + # # - + Status État - + Service Service - + Function Fonction - + Clear Effacer @@ -5429,47 +5429,47 @@ Message de débogage : IPCRecorderWidget - + Invalid Invalide - + Sent Envoyé - + Handling Gestion - + Success Réussite - + Error Erreur - + HLE Unimplemented HLE Non implémenté - + HLE HLE - + LLE LLE - + Unknown Inconnu @@ -5477,7 +5477,7 @@ Message de débogage : LLEServiceModulesWidget - + Toggle LLE Service Modules Changer les modules LLE @@ -5485,54 +5485,54 @@ Message de débogage : LoadingScreen - + Loading Shaders 387 / 1628 Chargement des nuanceurs 387 / 1628 - + Loading Shaders %v out of %m Chargement des shaders %v sur %m - + Estimated Time 5m 4s Temps estimé 5min 4s - + Loading... Chargement en cours... - + Preloading Textures %1 / %2 Préchargement des textures %1 / %2 - + Preparing Shaders %1 / %2 Préparation des shaders %1 / %2 - + Loading Shaders %1 / %2 Chargement des shaders %1 / %2 - + Launching... Démarrage... - + Now Loading %1 Chargement en cours %1 - + Estimated Time %1 Durée estimée %1 @@ -5540,83 +5540,83 @@ Message de débogage : Lobby - + Public Room Browser Explorateur de salon public - - + + Nickname Pseudo - + Filters Filtres - + Search Rechercher - + Games I Own Jeux que je possède - + Hide Empty Rooms Masquer les salons vides - + Hide Full Rooms Masquer les salons complets - + Refresh Lobby Rafraîchir le hall - + Password Required to Join Mot de passe nécessaire pour devenir membre - + Password: Mot de passe : - + Room Name Nom du salon - + Preferred Game Jeu préféré - + Host Hôte - + Players Joueurs - + Refreshing Rafraîchissement - + Refresh List Rafraîchir la liste @@ -5624,362 +5624,362 @@ Message de débogage : MainWindow - + Citra Citra - + &File &Fichier - + Boot Home Menu Démarrer le menu HOME - + Recent Files Fichiers récents - + Amiibo Amiibo - + &Emulation &Émulation - + Save State Sauvegarde d'état - + Load State Chargement d'état - + &View &Voir - + Debugging Débogguer - + Screen Layout Disposition de l'écran - + Multiplayer Multijoueurs - + Tools Outils - + Movie Vidéo - + Frame Advance Avance de trame - + &Help &Aide - + Load File... Charger un fichier... - + Install CIA... Installer un fichier CIA... - + JPN JPN - + USA USA - + EUR EUR - + AUS AUS - + CHN CHN - + KOR KOR - + TWN TWN - + E&xit A&rrêter - + &Pause &Pause - + &Stop &Stop - + Save Sauvegarder - + Load Charger - + FAQ FAQ - + About Citra À propos - + Single Window Mode Mode fenêtre unique - + Save to Oldest Slot Sauvegarder dans l'emplacement le plus ancien - + Load from Newest Slot Charger depuis le dernier emplacement - + Configure... Configurer... - + Display Dock Widget Headers Display Dock Widget Headers - + Show Filter Bar Montrer la barre des filtres - + Show Status Bar Montrer la barre de statut - + Create Pica Surface Viewer Créer une surface Pica - + Record... Enregistrement... - + Play... Lecture... - + Close Fermer - + Save without Closing Enregistrer sans fermer - + Read-Only Mode Mode lecture seule - + Enable Frame Advancing Activer l'avancement de trame - + Advance Frame Avancer la trame - + Capture Screenshot Capture d'écran - + Dump Video Capturer la vidéo - + Browse Public Game Lobby Naviguer dans le hall de jeux publics - + Create Room Créer un salon - + Leave Room Quitter le salon - + Direct Connect to Room Connexion directe à un salon - + Show Current Room Afficher le salon actuel - + Fullscreen Plein écran - + Modify Citra Install Modifier l'installation de Citra - + Opens the maintenance tool to modify your Citra installation Lancez l'outil de maintenance pour modifier l'installation de Citra - + Default Par défaut - + Single Screen Un seul écran - + Large Screen Écran large - + Hybrid Screen Écran hybride - + Side by Side Côte à côte - + Separate Windows Fenêtres séparées - + Swap Screens Permuter les écrans - + Rotate Upright Rotation vers le haut - + Check for Updates Rechercher les mises à jour - + Report Compatibility Faire un rapport de compatibilité - + Restart Redémarrer - + Load... Charger... - + Remove Supprimer - + Open Citra Folder Ouvrir le dossier Citra - + Configure Current Game... Configurer le jeu actuel... @@ -5987,7 +5987,7 @@ Message de débogage : MicroProfileDialog - + MicroProfile Microprofile @@ -5995,48 +5995,48 @@ Message de débogage : ModerationDialog - + Moderation Modération - + Ban List Liste de bannissement - - + + Refreshing Rafraîchissement - + Unban Débannir - + Subject Sujet - + Type Type - + Forum Username Nom d'utilisateur du forum - + IP Address Adresse IP - + Refresh Rafraîchir @@ -6044,91 +6044,91 @@ Message de débogage : MoviePlayDialog - - + + Play Movie Lancer la vidéo - + File: Fichier : - + ... ... - + Info Information - + Game: Jeu : - + Author: Auteur : - + Rerecord Count: Nombre de réenregistrements : - + Length: Durée : - + Current running game will be stopped. Le jeu en cours va être stoppé. - + <br>Current recording will be discarded. <br>L'enregistrement en cours va être supprimé. - + Citra TAS Movie (*.ctm) Citra TAS Movie (*.ctm) - + Invalid movie file. Fichier vidéo invalide. - + Revision dismatch, playback may desync. Révision incohérence, désynchronisation de la lecture possible. - + Indicated length is incorrect, file may be corrupted. La durée indiquée est incorrecte, le fichier est peut-être corrompu. - - - - + + + + (unknown) (inconnu) - + Game used in this movie is not in game list. Le jeu utilisé dans cette vidéo ne se trouve pas dans la liste de jeux. - + (>1 day) (> 1 jour) @@ -6136,43 +6136,43 @@ Message de débogage : MovieRecordDialog - - + + Record Movie Enregistrer une vidéo - + File: Fichier : - + ... ... - + Author: Auteur : - + Current running game will be restarted. Le jeu en cours va redémarrer. - + <br>Current recording will be discarded. <br>L'enregistrement en cours va être supprimé. - + Recording will start once you boot a game. L'enregistrement démarrera au lancement d'un jeu. - + Citra TAS Movie (*.ctm) Citra TAS Movie (*.ctm) @@ -6180,44 +6180,44 @@ Message de débogage : MultiplayerState - - + + Current connection status État de la connexion - - + + Not Connected. Click here to find a room! Vous n'êtes pas connecté. Cliquez ici pour trouver un salon ! - - - + + + Connected Connecté - - + + Not Connected Non connecté - + Error Erreur - + Failed to update the room information. Please check your Internet connection and try hosting the room again. Debug Message: Impossible de mettre à jour les informations du salon. Veuillez vérifier votre connexion Internet et retentez d'héberger le salon. Message de débogage : - + New Messages Received Nouveaux messages reçus @@ -6225,22 +6225,22 @@ Message de débogage : NetworkMessage - + Leave Room Quitter le salon - + You are about to close the room. Any network connections will be closed. Vous êtes sur le point de fermer le salon. Toutes les connexions réseau vont être fermées. - + Disconnect Déconnecter - + You are about to leave the room. Any network connections will be closed. Vous êtes sur le point de quitter le salon. Toutes les connexions réseau seront fermées. @@ -6248,92 +6248,92 @@ Message de débogage : NetworkMessage::ErrorManager - + Username is not valid. Must be 4 to 20 alphanumeric characters. Le nom d'utilisateur n'est pas valide. Il doit être de 4 à 20 caractères alphanumériques. - + Room name is not valid. Must be 4 to 20 alphanumeric characters. Le nom du salon n'est pas valide. Il doit être de 4 à 20 caractères alphanumériques. - + Username is already in use or not valid. Please choose another. Le nom d'utilisateur est déjà utilisé ou n'est pas valide. Veuillez en sélectionner un autre. - + IP is not a valid IPv4 address. L'IP n'est pas une adresse IPv4 valide. - + Port must be a number between 0 to 65535. Le port doit être un nombre compris entre 0 et 65535. - + You must choose a Preferred Game to host a room. If you do not have any games in your game list yet, add a game folder by clicking on the plus icon in the game list. Vous devez choisir un jeu préféré pour héberger un salon. Si vous n'avez pas encore de jeux dans votre liste de jeux, ajoutez un dossier de jeu en cliquant sur l'icône plus dans la liste de jeux. - + Unable to find an internet connection. Check your internet settings. Impossible de trouver une connexion Internet. Vérifiez vos paramètres Internet. - + Unable to connect to the host. Verify that the connection settings are correct. If you still cannot connect, contact the room host and verify that the host is properly configured with the external port forwarded. Impossible de se connecter à l'hôte. Vérifiez que les paramètres de connexion sont corrects. Si vous ne parvenez toujours pas à vous connecter, contactez l'hôte du salon et vérifiez que l'hôte a correctement configuré le port externe redirigé. - + Unable to connect to the room because it is already full. Impossible de se connecter au salon car il est déjà plein. - + Creating a room failed. Please retry. Restarting Citra might be necessary. La création d'un salon a échoué. Veuillez réessayer. Peut être que vous devriez redémarrer Citra. - + The host of the room has banned you. Speak with the host to unban you or try a different room. L'hôte du salon vous a banni. Parlez à l'hôte pour vous débannir ou essayez un autre salon. - + Version mismatch! Please update to the latest version of Citra. If the problem persists, contact the room host and ask them to update the server. Décalage de version ! Veuillez faire la mettre à jour vers la dernière version de yuzu. Si le problème persiste, contactez l'hôte du salon et demandez lui de mettre à jour le serveur. - + Incorrect password. Mot de passe incorrect. - + An unknown error occurred. If this error continues to occur, please open an issue Une erreur inconnue s'est produite. Si cette erreur continue d'arriver, veuillez faire un rapport - + Connection to room lost. Try to reconnect. Connexion au salon perdue. Essayez de vous reconnecter. - + You have been kicked by the room host. Vous avez été expulsé par l'hôte du salon. - + MAC address is already in use. Please choose another. L'adresse MAC est déjà utilisée. Veuillez en choisir une autre. - + Your Console ID conflicted with someone else's in the room. Please go to Emulation > Configure > System to regenerate your Console ID. @@ -6342,19 +6342,19 @@ Please go to Emulation > Configure > System to regenerate your Console ID. Veuillez vous rendre dans Émulation > Configurer... > Système pour régénérer votre ID de console. - + You do not have enough permission to perform this action. Vous ne disposez pas des autorisations suffisantes pour effectuer cette action. - + The user you are trying to kick/ban could not be found. They may have left the room. L'utilisateur que vous essayez d'exclure/bannir est introuvable. Il a peut-être quitté la salon. - + Error Erreur @@ -6362,37 +6362,37 @@ Il a peut-être quitté la salon. OptionSetDialog - + Options Options - + Unset Non défini - + unknown inconnu - + %1 &lt;%2> %3 %1 &lt;%2> %3 - + Range: %1 - %2 Plage : %1 - %2 - + custom personnalisé - + %1 (0x%2) %3 %1 (0x%2) %3 @@ -6400,32 +6400,32 @@ Il a peut-être quitté la salon. OptionsDialog - + Options Options - + Double click to see the description and change the values of the options. Double-cliquez pour voir la description et modifier les valeurs des options. - + Specific Spécifique - + Generic Générique - + Name Nom - + Value Valeur @@ -6433,157 +6433,157 @@ Il a peut-être quitté la salon. QObject - + Supported image files (%1) Fichiers images supportés (%1) - + Open File Ouvrir le fichier - + Error Erreur - + Couldn't load the camera Impossible de charger la caméra - + Couldn't load %1 Impossible de charger %1 - - + + Shift Maj - - + + Ctrl Ctrl - - + + Alt Alt - - - + + + [not set] [non défini] - - + + Hat %1 %2 Hat %1 %2 - - - - - - + + + + + + Axis %1%2 Axe %1%2 - - + + Button %1 Bouton %1 - + GC Axis %1%2 Axe GC %1%2 - + GC Button %1 Bouton GC %1 - - - + + + [unknown] [inconnu] - + [unused] [inutilisé] - + auto auto - + true oui - + false non - - + + none aucun - + %1 (0x%2) %1 (0x%2) - + Invalid region Région Invalide - + Installed Titles Titres installés - + System Titles Titres système - + Add New Game Directory Ajouter un nouveau répertoire de jeu - + Not playing a game Ne joue pas - + %1 is not playing a game %1 ne joue à aucun jeu - + %1 is playing %2 %1 joue à %2 @@ -6591,7 +6591,7 @@ Il a peut-être quitté la salon. QtKeyboard - + Software Keyboard Clavier logiciel @@ -6599,27 +6599,27 @@ Il a peut-être quitté la salon. QtKeyboardDialog - + Text length is not correct (should be %1 characters) La longueur du texte est incorrecte (elle devrait être de %1 caractères) - + Text is too long (should be no more than %1 characters) Le texte est trop long (il ne devrait pas faire plus de %1 caractères) - + Blank input is not allowed Une entrée vide n'est pas permise - + Empty input is not allowed Une entrée vide n'est pas permise - + Validation error Erreur de validation @@ -6627,12 +6627,12 @@ Il a peut-être quitté la salon. QtMiiSelectorDialog - + Mii Selector Sélectionneur de Mii - + Standard Mii Mii standard @@ -6640,95 +6640,95 @@ Il a peut-être quitté la salon. RecordDialog - + View Record Voir l'enregistrement - + Client Client - - + + Process: Processus : - - + + Thread: Thread : - - + + Session: Session : - + Server Serveur - + General Généralités - + Client Port: Port Client : - + Service: Service : - + Function: Fonction : - + Command Buffer Tampon de commande : - + Select: Sélection : - + Request Untranslated Requête non traduite - + Request Translated Requête traduite - + Reply Untranslated Réponse non traduite - + Reply Translated Réponse traduite - + OK OK - + null vide @@ -6736,37 +6736,37 @@ Il a peut-être quitté la salon. RegistersWidget - + Registers Registres - + VFP Registers VFP Registers - + VFP System Registers VFP System Registers - + Vector Length Vector Length - + Vector Stride Vector Stride - + Rounding Mode Rounding mode - + Vector Iteration Count Vector Iteration Count @@ -6774,7 +6774,7 @@ Il a peut-être quitté la salon. SequenceDialog - + Enter a hotkey Entrer un raccourci @@ -6782,7 +6782,7 @@ Il a peut-être quitté la salon. WaitTreeEvent - + reset type = %1 reset type = %1 @@ -6790,12 +6790,12 @@ Il a peut-être quitté la salon. WaitTreeMutex - + locked %1 times by thread: verrouillé %1 fois par le thread : - + free gratuit @@ -6803,7 +6803,7 @@ Il a peut-être quitté la salon. WaitTreeMutexList - + holding mutexes holding mutexes @@ -6811,12 +6811,12 @@ Il a peut-être quitté la salon. WaitTreeObjectList - + waiting for all objects waiting for all objects - + waiting for one of the following objects waiting for one of the following objects @@ -6824,12 +6824,12 @@ Il a peut-être quitté la salon. WaitTreeSemaphore - + available count = %1 available count = 1% - + max count = %1 max count = %1 @@ -6837,112 +6837,112 @@ Il a peut-être quitté la salon. WaitTreeThread - + running running - + ready prêt - + waiting for address 0x%1 waiting for address 0x%1 - + sleeping sleeping - + waiting for IPC response waiting for IPC response - + waiting for objects waiting for objects - + waiting for HLE return waiting for HLE return - + dormant en sommeil - + dead mort - + PC = 0x%1 LR = 0x%2 PC = 0x%1 LR = 0x%2 - + default défaut - + all tout - + AppCore AppCore - + SysCore SysCore - + Unknown processor %1 Processeur inconnu %1 - + object id = %1 objet id = %1 - + processor = %1 processor = %1 - + thread id = %1 thread id = %1 - + process = %1 (%2) processus = %1 (%2) - + priority = %1(current) / %2(normal) priority = %1(current) / %2(normal) - + last running ticks = %1 last running ticks = %1 - + not holding mutex not holding mutex @@ -6950,7 +6950,7 @@ Il a peut-être quitté la salon. WaitTreeThreadList - + waited by thread waited by thread @@ -6958,17 +6958,17 @@ Il a peut-être quitté la salon. WaitTreeTimer - + reset type = %1 reset type = %1 - + initial delay = %1 initial delay = %1 - + interval delay = %1 interval delay = %1 @@ -6976,27 +6976,27 @@ Il a peut-être quitté la salon. WaitTreeWaitObject - + [%1]%2 %3 [%1]%2 %3 - + waited by no thread waited by no thread - + one shot one shot - + sticky sticky - + pulse pulse @@ -7004,7 +7004,7 @@ Il a peut-être quitté la salon. WaitTreeWidget - + Wait Tree Arbre d'instructions diff --git a/dist/languages/hu_HU.ts b/dist/languages/hu_HU.ts index 8d2a641eb..3c4f353fe 100644 --- a/dist/languages/hu_HU.ts +++ b/dist/languages/hu_HU.ts @@ -2,17 +2,17 @@ ARMRegisters - + ARM Registers ARM Regisztrálók - + Register Regisztráció - + Value Érték @@ -20,27 +20,27 @@ AboutDialog - + About Citra A Citráról - - <html><head/><body><p><img src=":/icons/citra.png"/></p></body></html> - <html><head/><body><p><img src=":/icons/citra.png"/></p></body></html> + + <html><head/><body><p><img src=":/icons/lime.png"/></p></body></html> + <html><head/><body><p><img src=":/icons/lime.png"/></p></body></html> - + <html><head/><body><p><span style=" font-size:28pt;">Citra</span></p></body></html> <html><head/><body><p><span style=" font-size:28pt;">Citra</span></p></body></html> - + <html><head/><body><p>%1 | %2-%3 (%4)</p></body></html> <html><head/><body><p>%1 | %2-%3 (%4)</p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -57,12 +57,12 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">Ez a szoftver nem olyan játékok használatára szolgál, amire nem legálisan jutottál hozzá.</span></p></body></html> - + <html><head/><body><p><a href="https://citra-emu.org/"><span style=" text-decoration: underline; color:#039be5;">Website</span></a> | <a href="https://community.citra-emu.org/"><span style=" text-decoration: underline; color:#039be5;">Forum</span></a> | <a href="https://github.com/citra-emu"><span style=" text-decoration: underline; color:#039be5;">Source Code</span></a> | <a href="https://github.com/citra-emu/citra/graphs/contributors"><span style=" text-decoration: underline; color:#039be5;">Contributors</span></a> | <a href="https://github.com/citra-emu/citra/blob/master/license.txt"><span style=" text-decoration: underline; color:#039be5;">License</span></a></p></body></html> <html><head/><body><p><a href="https://citra-emu.org/"><span style=" text-decoration: underline; color:#039be5;">Weboldal</span></a>|<a href="https://community.citra-emu.org/"><span style=" text-decoration: underline; color:#039be5;">Fórum</span></a>|<a href="https://github.com/citra-emu"><span style=" text-decoration: underline; color:#039be5;">Forráskód</span></a>|<a href="https://github.com/citra-emu/citra/graphs/contributors"><span style=" text-decoration: underline; color:#039be5;">Közreműködők</span></a>|<a href="https://github.com/citra-emu/citra/blob/master/license.txt"><span style=" text-decoration: underline; color:#039be5;">Licensz</span></a></p></body></html> - + <html><head/><body><p><span style=" font-size:7pt;">&quot;3DS&quot; is a trademark of Nintendo. Citra is not affiliated with Nintendo in any way.</span></p></body></html> <html><head/><body><p><span style=" font-size:7pt;">&quot;3DS&quot; a Nintendo egyik védjegye. Citra semmiféle úton nincs kapcsolva a Nintendóhoz.</span></p></body></html> @@ -70,47 +70,47 @@ p, li { white-space: pre-wrap; } BreakPointModel - + Pica command loaded Pica parancs betöltve - + Pica command processed Pica parancs feldolgozva - + Incoming primitive batch Bejövő primitív tétel - + Finished primitive batch Befejezett primitív tétel - + Vertex shader invocation Vertex Shader invokáció - + Incoming display transfer Bejövő megjelenítés átvitel - + GSP command processed GSP parancs feldolgozva - + Buffers swapped Pufferek cserélve - + Unknown debug context event @@ -118,32 +118,32 @@ p, li { white-space: pre-wrap; } CalibrationConfigurationDialog - + Communicating with the server... Kommunikálás a szerverrel... - + Cancel Mégse - + Touch the top left corner <br>of your touchpad. Érintsd meg a bal felső sarkot <br>az érintőképernyőn. - + Now touch the bottom right corner <br>of your touchpad. Most pedig érintsd meg a jobb alsó sarkot <br>az érintőképernyőn. - + Configuration completed! A konfiguráció befejeződött! - + OK Oké @@ -151,93 +151,93 @@ p, li { white-space: pre-wrap; } ChatRoom - + Room Window Szoba Ablak - + Send Chat Message Chat Üzenet Küldése - + Send Message Üzenet Küldése - + Members Tagok - + %1 has joined %1 csatlakozott - + %1 has left %1 kilépett - + %1 has been kicked %1 ki lett rúgva - + %1 has been banned %1 ki lett tiltva - + %1 has been unbanned %1 fel lett oldva - + View Profile Profil megtekintése - - + + Block Player Játékos tiltása - + When you block a player, you will no longer receive chat messages from them.<br><br>Are you sure you would like to block %1? Ha blokkolsz egy játékost, akkor nem kaphatsz tőle üzeneteket.<br><br>Biztos, hogy blokkolni szeretnéd őt: %1? - + Kick Kirúgás - + Ban Kitiltás - + Kick Player Játékos kirúgása - + Are you sure you would like to <b>kick</b> %1? Biztosan ki szeretnéd <b>rúgni</b>őt: %1? - + Ban Player Játékos tiltása - + Are you sure you would like to <b>kick and ban</b> %1? This would ban both their forum username and their IP address. @@ -247,22 +247,22 @@ This would ban both their forum username and their IP address. ClientRoom - + Room Window Szoba Ablak - + Room Description Szoba leírása - + Moderation... Moderáció... - + Leave Room Szoba Elhagyása @@ -270,17 +270,17 @@ This would ban both their forum username and their IP address. ClientRoomWindow - + Connected Kapcsolódva - + Disconnected Lecsatlakozva - + %1 (%2/%3 members) - connected %1 (%2/%3 members) - kapcsolva @@ -288,108 +288,108 @@ This would ban both their forum username and their IP address. CompatDB - + Report Compatibility Kompatibilitás Jelentése - - + + Report Game Compatibility Játék-kompatibilitás Jelentése - + <html><head/><body><p><span style=" font-size:10pt;">Should you choose to submit a test case to the </span><a href="https://citra-emu.org/game/"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">Citra Compatibility List</span></a><span style=" font-size:10pt;">, The following information will be collected and displayed on the site:</span></p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Hardware Information (CPU / GPU / Operating System)</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Which version of Citra you are running</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The connected Citra account</li></ul></body></html> <html><head/><p><span style=" font-size:10pt;">Ha egy teszt eseet teszel közzé a </span><a href="https://citra-emu.org/game/"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;"> Citra Kompatibilitási Listán</span></a><span style=" font-size:10pt;">, a következő információ lesz összegyűjtve és kijelezve az oldalon:</span></p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Hardver-információ (CPU / GPU / Operációs Rendszer)</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Milyen Citra verziót használsz</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">A kapcsolt Citra fiók</li></ul><body></html> - + Perfect Tökéletes - + <html><head/><body><p>Game functions flawlessly with no audio or graphical glitches.</p></body></html> <html><head/><body><p>A játék hibátlanul működik hang- vagy grafikai hibák nélkül.</p></body></html> - + Great - + <html><head/><body><p>Game functions with minor graphical or audio glitches and is playable from start to finish. May require some workarounds.</p></body></html> <html><head/><body><p>A játék kisebb grafikai vagy audió hibákkal működik, és játszható az indulástól a befejezésig. Némi állítgatásra lehet szükség lesz.</p></body></html> - + Okay Rendben - + <html><head/><body><p>Game functions with major graphical or audio glitches, but game is playable from start to finish with workarounds.</p></body></html> <html><head/><body><p>A játék nagy grafikai vagy audió hibákkal működik, de játszható a kezdéstől a befejezésig állítgatásokkal.</p></body></html> - + Bad Rossz - + <html><head/><body><p>Game functions, but with major graphical or audio glitches. Unable to progress in specific areas due to glitches even with workarounds.</p></body></html> <html><head/><body><p>A játék működik, de nagy grafikai vagy audió hibákkal. Nem lehet néhány részben továbbhaladni, a hibák miatt, még állítgatásokkal sem.</p></body></html> - + Intro/Menu Bevezető/Menü - + <html><head/><body><p>Game is completely unplayable due to major graphical or audio glitches. Unable to progress past the Start Screen.</p></body></html> <html><head/></body><p>A játék teljesen játszhatatlan a hatalmas grafikai vagy audió hibák miatt. A start menün sem lehet továbbhaladni.</p></body></html> - + Won't Boot Nem Indul - + <html><head/><body><p>The game crashes when attempting to startup.</p></body></html> <html><head/><body><p>A játék egyből összeomlik induláskor.</p></body></html> - + <html><head/><body><p>Independent of speed or performance, how well does this game play from start to finish on this version of Citra?</p></body></html> <html><head/><body><p>Sebességtől és teljesítménytől függetlenül, milyen jól működik a játék a kezdéstől a befejezésig a Citra ezen verzióján?</p></body></html> - + Thank you for your submission! Köszönjük a beküldést! - + Submitting Küldés - + Communication error Kommunikációs hiba - + An error occurred while sending the Testcase Hiba történt a teszt beküldése során - + Next Következő @@ -397,93 +397,93 @@ This would ban both their forum username and their IP address. ConfigureAudio - + Output Kimenet - + Emulation: Emuláció: - + HLE (fast) HLE (Gyors) - + LLE (accurate) LLE (Pontos) - + LLE multi-core LLE többmagos - + Output Type Kimenet típusa - + Output Device Kimeneti eszköz - + This post-processing effect adjusts audio speed to match emulation speed and helps prevent audio stutter. This however increases audio latency. Ez az utófeldolgozási hatás beállítja a hang sebességét, hogy az emuláció sebességével megegyezzen, és segít a hang-akadozás megakadályozásában. Azonban ez megnöveli a hang késleltetését. - + Enable audio stretching Hangnyújtás bekapcsolása - + Use global volume Globális hangerő használata - + Set volume: Hangerő beállítása: - + Volume: Hangerő: - + 0 % 0 % - + Microphone Mikrofon - + Input Type Bemenet típusa - + Input Device Bemeneti eszköz - - + + Auto Auto - + %1% Volume percentage (e.g. 50%) %1% @@ -492,203 +492,203 @@ This would ban both their forum username and their IP address. ConfigureCamera - + Form Forma - + Camera Kamera - - + + Select the camera to configure Válaszd ki a konfigurálandó kamerát - + Camera to configure: Konfigurálandó kamera: - + Front Elülső - + Rear Hátsó - - + + Select the camera mode (single or double) Válaszd ki a kamera módját (egy vagy dupla) - + Camera mode: Kamera mód: - + Single (2D) Egy (2D) - + Double (3D) Dupla (3D) - - + + Select the position of camera to configure Válaszd ki a konfigurálandó kamera pozícióját - + Camera position: Kamera pozíció: - + Left Bal - + Right Jobb - + Configuration Konfiguráció - - + + Select where the image of the emulated camera comes from. It may be an image or a real camera. Válaszd ki hogy honnan jön az emulált kamera képe. Lehet egy kép, vagy egy igazi kamera is. - + Camera Image Source: Kamera Kép Forrása: - + Blank (blank) Üres (blank) - + Still Image (image) Állókép (image) - + System Camera (qt) Rendszer Kamera (qt) - + File: Fájl: - + ... ... - - + + Select the system camera to use Válaszd ki a használandó rendszerkamerát - + Camera: Kamera: - + <Default> <Default> - - + + Select the image flip to apply Válaszd ki a kép forgatásást - + Flip: Forgatás: - + None Semmilyen - + Horizontal Vízszintes - + Vertical Függőleges - + Reverse Megcserélés - + Select an image file every time before the camera is loaded Mindig válassz ki egy képfájlt mielőtt a kamera betöltődik - + Prompt before load Betöltés előtt kérdezze meg - + Preview Előnézet - + Resolution: 512*384 Felbontás: 512*384 - + Click to preview Kattints az előnézethez - + Resolution: %1*%2 Felbontás: %1*%2 - + Supported image files (%1) Támogatott képfájlok (%1) - + Open File Fájl Megnyitása @@ -696,88 +696,88 @@ This would ban both their forum username and their IP address. ConfigureCheats - - + + Cheats Csalások - + Add Cheat Csalás hozzáadása - + Available Cheats: Elérhető csalások: - + Name Név - + Type Típus - + Save Mentés - + Delete Törlés - + Name: Név: - + Notes: Megjegyzések: - + Code: Kód: - + Would you like to save the current cheat? Szeretnéd elmenteni a jelenlegi csalást? - - - + + + Save Cheat Csalás mentése - + Please enter a cheat name. Kérlek, írd be a csalás nevét. - + Please enter the cheat code. Kérlek, írd be a csaláskódot. - + Cheat code line %1 is not valid. Would you like to ignore the error and continue? A csaláskód %1 sora érvénytelen. Szeretnéd figyelmen kívül hagyni a hibát, és folytatod? - - + + [new cheat] [új csalás] @@ -785,127 +785,127 @@ Szeretnéd figyelmen kívül hagyni a hibát, és folytatod? ConfigureDebug - + Form Forma - + GDB GDB - + Enable GDB Stub GDB Tuskó bekapcsolása - + Port: Port: - + Logging Logolás - + Global Log Filter Globális Log Filter - + Show Log Console (Windows Only) Log Konzol Mutatása (Csak Windowson) - + Open Log Location Log Helyének Megnyitása - + CPU CPU - + Use global clock speed Globális órajelek használata - + Set clock speed: Órajel beállítása: - + CPU Clock Speed CPU órajel - + <html><body>Changes the emulated CPU clock frequency.<br>Underclocking can increase performance but may cause the game to freeze.<br>Overclocking may reduce in game lag but also might cause freezes</body></html> - + <html><head/><body><p>Enables the use of the ARM JIT compiler for emulating the 3DS CPUs. Don't disable unless for debugging purposes</p></body></html> - + Enable CPU JIT CPU JIT engedélyezése - + Enable debug renderer - + Dump command buffers - + Miscellaneus Egyéb - + <html><head/><body><p>Introduces a delay to the first ever launched app thread if LLE modules are enabled, to allow them to initialize.</p></body></html> - + Delay app start for LLE module initialization - + <html><head/><body><p>CPU Clock Speed Information<br/>Underclocking can increase performance but may cause the game to freeze.<br/>Overclocking may reduce in game lag but also might cause freezes</p></body></html> - + Validation layer not available - + Unable to enable debug renderer because the layer <strong>VK_LAYER_KHRONOS_validation</strong> is missing. Please install the Vulkan SDK or the appropriate package of your distribution - + Command buffer dumping not available - + Unable to enable command buffer dumping because the layer <strong>VK_LAYER_LUNARG_api_dump</strong> is missing. Please install the Vulkan SDK or the appropriate package of your distribution @@ -913,92 +913,92 @@ Szeretnéd figyelmen kívül hagyni a hibát, és folytatod? ConfigureDialog - + Citra Configuration Citra Konfiguráció - - - + + + General Általános - - - + + + System Rendszer - - + + Input Bevitel - - + + Hotkeys Gyorsgombok - - + + Graphics Grafika - - + + Enhancements Javítások - - - + + + Audio Hang - - + + Camera Kamera - - + + Debug Debug - - + + Storage Tárhely - - + + Web Web - - + + UI - + Controls Irányítás - + Advanced Haladó @@ -1006,278 +1006,278 @@ Szeretnéd figyelmen kívül hagyni a hibát, és folytatod? ConfigureEnhancements - + Form - + Renderer Renderer - + Internal Resolution Belső felbontás - + Auto (Window Size) Auto (ablakméret) - + Native (400x240) Natív (400x240) - + 2x Native (800x480) 2x natív (800x480) - + 3x Native (1200x720) 3x natív (1200x720) - + 4x Native (1600x960) 4x natív (1600x960) - + 5x Native (2000x1200) 5x natív (2000x1200) - + 6x Native (2400x1440) 6x natív (2400x1440) - + 7x Native (2800x1680) 7x natív (2800x1680) - + 8x Native (3200x1920) 8x natív (3200x1920) - + 9x Native (3600x2160) 9x natív (3600x2160) - + 10x Native (4000x2400) 10x natív (4000x2400) - + Enable Linear Filtering - + Post-Processing Shader - + Texture Filter Textúraszűrés - + None Nincs - + Anime4K Anime4K - + Bicubic Bikubikus - + ScaleForce ScaleForce - + xBRZ xBRZ - + MMPX MMPX - + Stereoscopy Sztereoszkópia - + Stereoscopic 3D Mode Sztereoszkópikus 3D mód - + Off Ki - - + + Side by Side Egymás mellett - + Anaglyph Anaglif - + Interlaced - + Reverse Interlaced - + Depth Mélység - + % % - + Eye to Render in Monoscopic Mode - + Left Eye (default) Bal szem (alapértelmezett) - + Right Eye Jobb szem - + Layout - + Screen Layout: - + Default Alapértelmezett - + Single Screen - + Large Screen - + Separate Windows - + Hybrid Screen Hibrid képernyő - + Swap Screens - + Rotate Screens Upright - + Large Screen Proportion: - + Background Color: Háttérszín: - + Utility Segédprogramok - + <html><head/><body><p>Replace textures with PNG files.</p><p>Textures are loaded from load/textures/[Title ID]/.</p></body></html> - + Use Custom Textures Egyéni textúrák használata - + <html><head/><body><p>Dump textures to PNG files.</p><p>Textures are dumped to dump/textures/[Title ID]/.</p></body></html> - + Dump Textures Textúrák kimentése - + <html><head/><body><p>Load all custom textures into memory on boot, instead of loading them when the game requires them.</p></body></html> - + Preload Custom Textures Egyéni textúrák előtöltése - + <html><head/><body><p>Load custom textures asynchronously with background threads to reduce loading stutter</p></body></html> - + Async Custom Texture Loading @@ -1285,136 +1285,136 @@ Szeretnéd figyelmen kívül hagyni a hibát, és folytatod? ConfigureGeneral - + Form Forma - + General Általános - + Confirm exit while emulation is running Kilépés megerősítése amikor az emuláció fut - + Pause emulation when in background Emuláció szüneteltetése a háttérben - + Mute audio when in background Hang némítása, amikor háttérben van - + Hide mouse on inactivity Egér elrejtése inaktivitáskor - + Enable Gamemode Játékmód engedélyezése - + Updates Frissítések - + Check for updates on start Frissítések keresése induláskor - + Silently auto update after closing Auto frissítés a háttérben bezárás után - + Emulation Emuláció - + Region: Régió: - + Auto-select Autó-kiválasztás - + Use global emulation speed Globális emulációsebesség használata - + Set emulation speed: Emuláció sebességének beállítása: - + Emulation Speed: Emuláció sebessége: - + Screenshots Képernyőmentések - + Use global screenshot path Globális útvonal használata képernyőmentésekhez - + Set screenshot path: Képernyőmentések útvonala: - + Save Screenshots To Képernyőfotók mentése ide - + ... ... - + Reset All Settings Összes beállítás visszaállítása - - - - - + + + + + unthrottled - + Select Screenshot Directory Képernyőmentések könyvtár kiválasztása - + Citra Citra - + Are you sure you want to <b>reset your settings</b> and close Citra? @@ -1422,157 +1422,157 @@ Szeretnéd figyelmen kívül hagyni a hibát, és folytatod? ConfigureGraphics - + Form Forma - + Graphics Grafika - + API Settings API beállítások - + Graphics API Grafikus API - + Software Szoftver - + OpenGL OpenGL - + Vulkan Vulkan - + Physical Device Fizikai eszköz - + OpenGL Renderer - + SPIR-V Shader Generation - + Renderer Renderer - + <html><head/><body><p>Use the selected graphics API to accelerate shader emulation.</p><p>Requires a relatively powerful GPU for better performance.</p></body></html> - + Enable Hardware Shader Hardver Shader Bekapcsolása - + <html><head/><body><p>Correctly handle all edge cases in multiplication operation in shaders. </p><p>Some games requires this to be enabled for the hardware shader to render properly.</p><p>However this would reduce performance in most games.</p></body></html> <html><head/><body><p>Az összes határeset helyes kezelése a szorzásos műveletekben a shadereknél.</p><p>Néhány játéknak szüksége van erre, hogy a hardveres shader normálisan rendereljen.</p><p>Azonban ez lecsökkentené a legtöbb játékban a teljesítményt.</p></body></html> - + Accurate Multiplication Pontos Szorzás - + <html><head/><body><p>Use the JIT engine instead of the interpreter for software shader emulation. </p><p>Enable this for better performance.</p></body></html> <html><head/><body><p>A JIT motor használata az értelmező helyett a szoftveres shader emulációban.</p><p>Kapcsold be a jobb teljesítmény érdekében.</p></body></html> - + Enable Shader JIT Shader JIT Bekapcsolása - + <html><head/><body><p>Compile shaders using background threads to avoid shader compilation stutter. Expect temporary graphical glitches</p></body></html> - + Enable Async Shader Compilation - + <html><head/><body><p>Perform presentation on separate threads. Improves performance when using Vulkan in most games.</p></body></html> - + Enable Async Presentation Aszinkron prezentálás engedélyezése - + Advanced Haladó - + <html><head/><body><p>Overrides the sampling filter used by games. This can be useful in certain cases with poorly behaved games when upscaling. If unsure set this to Game Controlled</p></body></html> - + Texture Sampling Textúra mintavételezés - + Game Controlled - + Nearest Neighbor Legközelebbi szomszéd - + Linear Lineáris - + <html><head/><body><p>Reduce stuttering by storing and loading generated shaders to disk.</p></body></html> - + Use Disk Shader Cache - + VSync prevents the screen from tearing, but some graphics cards have lower performance with VSync enabled. Keep it enabled if you don't notice a performance difference. - + Enable VSync VSync engedélyezése @@ -1580,63 +1580,63 @@ Szeretnéd figyelmen kívül hagyni a hibát, és folytatod? ConfigureHotkeys - + Hotkey Settings Gyorsgomb beállítások - + Double-click on a binding to change it. A módosításhoz kattints duplán egy hozzárendelésre. - + Clear All Összes törlése - + Restore Defaults Visszaállítás - + Action - + Hotkey Gyorsgomb - - + + Conflicting Key Sequence - + The entered key sequence is already assigned to: %1 - + A 3ds button - + Restore Default Alapértelmezés - + Clear Törlés - + The default key sequence is already assigned to: %1 Az alapértelmezett kulcssorozat már hozzá van rendelve ehhez: %1 @@ -1644,307 +1644,307 @@ Szeretnéd figyelmen kívül hagyni a hibát, és folytatod? ConfigureInput - + ConfigureInput Bevitel Konfigurálása - + Profile Profil - + New Új - + Delete Törlés - + Rename Átnevezés - + Face Buttons Előlapi Gombok - + Y: Y: - + X: X: - + B: B: - + A: A: - + Directional Pad Irányi pad - - - + + + Up: Fel: - - - + + + Down: Le: - - - + + + Left: Balra: - - - + + + Right: Jobbra: - + Misc. Egyéb - + Start: Start: - + Select: Select: - + Home: Home: - + Power: - + Circle Mod: Kör Mod: - + GPIO14: - + Debug: Hibakeresés: - + Circle Pad Körpad - - - + + + Set Analog Stick Analóg Pad beállítása - - + + Deadzone: 0 Holttér: 0 - + C-Stick C-pad - + Shoulder Buttons Hátsó Gombok - + ZR: ZR: - + ZL: ZL: - + L: L: - + R: R: - + Motion / Touch... - + Auto Map Auto hozzárendelés - + Clear All Mind törlése - + Restore Defaults Visszaállítás Alapértelmezettre - - - + + + Clear Törlés - - - + + + [not set] [nincs beáll.] - - - + + + Restore Default Alapértelmezés - - + + Information Információ - + After pressing OK, first move your joystick horizontally, and then vertically. Az OK megnyomása után először mozgasd a kart vízszintesen, majd függőlegesen. - - + + Deadzone: %1% Holttér: %1% - - + + Modifier Scale: %1% - + Warning Figyelmeztetés - + Auto mapping failed. Your controller may not have a corresponding mapping - + After pressing OK, press any button on your joystick - + [press key] [nyomj meg egy gombot] - + Error! Hiba! - + You're using a key that's already bound. - + New Profile Új profil - + Enter the name for the new profile. Add meg az új profil nevét. - + Delete Profile Profil törlése - + Delete profile %1? Törlöd a %1 profilt? - + Rename Profile Profil átnevezése - + New name: Új név: - + Duplicate profile name Duplikált profilnév - + Profile name already exists. Please choose a different name. @@ -1952,198 +1952,198 @@ Szeretnéd figyelmen kívül hagyni a hibát, és folytatod? ConfigureMotionTouch - + Configure Motion / Touch - + Motion - + Motion Provider: - + Sensitivity: Érzékenység: - + Controller: - - - - - + + + + + Configure Konfigurálás - + Touch - + Touch Provider: - + Calibration: Kalibráció: - + (100, 50) - (1800, 850) (100, 50) - (1800, 850) - + Use button mapping: - + CemuhookUDP Config - + You may use any Cemuhook compatible UDP input source to provide motion and touch input. - + Server: - + Port: Port: - + Pad: - + Pad 1 - + Pad 2 - + Pad 3 - + Pad 4 - + Learn More Tudj meg többet - - + + Test Teszt - + Mouse (Right Click) Egér (jobb klikk) - - + + CemuhookUDP - + SDL - + Emulator Window Emulátor ablak - + <a href='https://citra-emu.org/wiki/using-a-controller-or-android-phone-for-motion-or-touch-input'><span style="text-decoration: underline; color:#039be5;">Learn More</span></a> <a href='https://citra-emu.org/wiki/using-a-controller-or-android-phone-for-motion-or-touch-input'><span style="text-decoration: underline; color:#039be5;">Tudj meg többet</span></a> - + Information Információ - + After pressing OK, press a button on the controller whose motion you want to track. - + [press button] [nyomj egy gombot] - + Testing Tesztelés - + Configuring Konfigurálás - + Test Successful Teszt sikeres - + Successfully received data from the server. Az adatok sikeresen beérkeztek a kiszolgálótól. - + Test Failed Teszt sikertelen - + Could not receive valid data from the server.<br>Please verify that the server is set up correctly and the address and port are correct. Nem lehetett érvényes adatot fogadni a szervertől. <br>Ellenőrizd, hogy a szerver megfelelően van-e beállítva, valamint a cím és a port helyes. - + Citra Citra - + UDP Test or calibration configuration is in progress.<br>Please wait for them to finish. @@ -2151,97 +2151,97 @@ Szeretnéd figyelmen kívül hagyni a hibát, és folytatod? ConfigurePerGame - + Dialog Párbeszéd - + Info Infó - + Size Méret - + Format Formátum - + Name Név - + Filepath Fájl útvonal - + Title ID Játék azonosító - + Reset Game Settings Játékbeállítások visszaállítása - + Use global configuration (%1) Globális konfiguráció használata (%1) - + General Általános - + System Rendszer - + Enhancements Javítások - + Graphics Grafika - + Audio Hang - + Debug Hibakeresés - + Cheats Csalások - + Properties Tulajdonságok - + Citra Citra - + Are you sure you want to <b>reset your settings for this game</b>? @@ -2249,65 +2249,65 @@ Szeretnéd figyelmen kívül hagyni a hibát, és folytatod? ConfigureStorage - + Form Forma - + Storage Tárhely - + Use Virtual SD Virtuális SD használata - + Custom Storage Egyéni tárhely - + Use Custom Storage Egyéni tárhely használata - + NAND Directory NAND könyvtár - - + + Open Megnyitás - - + + NOTE: This does not move the contents of the previous directory to the new one. - - + + Change Módosítás - + SDMC Directory SDMC könyvtár - + Select NAND Directory NAND könyvtár kiválasztása - + Select SDMC Directory SDMC könyvtár kiválasztása @@ -2315,1064 +2315,1064 @@ Szeretnéd figyelmen kívül hagyni a hibát, és folytatod? ConfigureSystem - + Form Forma - + System Settings Rendszer Beállítások - + Enable New 3DS mode Új 3DS mód engedélyezése - + Use LLE applets (if installed) LLE appletek használata (ha telepítve van) - + Username Felhasználónév - + Birthday Születésnap - + January Január - + February Február - + March Március - + April Április - + May Május - + June Június - + July Július - + August Augusztus - + September Szeptember - + October Október - + November November - + December December - + Language Nyelv - + Note: this can be overridden when region setting is auto-select Megjegyzés: Ez felülírható ha a régió auto-kiválasztásra van beállítva - + Japanese (日本語) Japán (日本語) - + English English - + French (français) Francia (français) - + German (Deutsch) Német (Deutsch) - + Italian (italiano) Italian (Italiano) - + Spanish (español) Spanyol (español) - + Simplified Chinese (简体中文) Egyszerűsített Kínai (简体中文) - + Korean (한국어) Koreai (한국어) - + Dutch (Nederlands) Holland (Nederlands) - + Portuguese (português) Portugál (português) - + Russian (Русский) Russian (Русский) - + Traditional Chinese (正體中文) Hagyományos Kínai (正體中文) - + Sound output mode Hang kimeneteli mód - + Mono Monó - + Stereo Sztereó - + Surround Surround - + Country Ország - + Clock Óra - + System Clock Rendszeróra - + Fixed Time Fix idő - + Startup time - + yyyy-MM-ddTHH:mm:ss - + Offset time - + days nap - + HH:mm:ss - + Initial System Ticks - + Random Véletlenszerű - + Fixed Fix - + Initial System Ticks Override - + Play Coins: - + Run System Setup when Home Menu is launched - + Console ID: Konzol ID: - + Regenerate Regenerálás - + 3GX Plugin Loader: - + Enable 3GX plugin loader - + Allow games to change plugin loader state - + Download System Files from Nitendo servers Rendszerfájlok letöltése a Nintendo szervereiről - + Minimal Minimális - + Old 3DS Régi 3DS - + New 3DS Új 3DS - + JPN - + USA - + EUR - + AUS - + CHN - + KOR - + TWN - + Download Letöltés - + System settings are available only when game is not running. A rendszer-beállítások csak akkor érhetőek el, amikor a játék nem fut. - + Japan - + Anguilla - + Antigua and Barbuda - + Argentina - + Aruba - + Bahamas - + Barbados - + Belize - + Bolivia - + Brazil - + British Virgin Islands - + Canada - + Cayman Islands - + Chile - + Colombia - + Costa Rica - + Dominica - + Dominican Republic - + Ecuador - + El Salvador - + French Guiana - + Grenada - + Guadeloupe - + Guatemala - + Guyana - + Haiti - + Honduras - + Jamaica - + Martinique - + Mexico - + Montserrat - + Netherlands Antilles - + Nicaragua - + Panama - + Paraguay - + Peru - + Saint Kitts and Nevis - + Saint Lucia - + Saint Vincent and the Grenadines - + Suriname - + Trinidad and Tobago - + Turks and Caicos Islands - + United States - + Uruguay - + US Virgin Islands - + Venezuela - + Albania - + Australia - + Austria - + Belgium - + Bosnia and Herzegovina - + Botswana - + Bulgaria - + Croatia - + Cyprus - + Czech Republic - + Denmark - + Estonia - + Finland - + France - + Germany - + Greece - + Hungary - + Iceland - + Ireland - + Italy - + Latvia - + Lesotho - + Liechtenstein - + Lithuania - + Luxembourg - + Macedonia - + Malta - + Montenegro - + Mozambique - + Namibia - + Netherlands - + New Zealand - + Norway - + Poland - + Portugal - + Romania - + Russia - + Serbia - + Slovakia - + Slovenia - + South Africa - + Spain - + Swaziland - + Sweden - + Switzerland - + Turkey - + United Kingdom - + Zambia - + Zimbabwe - + Azerbaijan - + Mauritania - + Mali - + Niger - + Chad - + Sudan - + Eritrea - + Djibouti - + Somalia - + Andorra - + Gibraltar - + Guernsey - + Isle of Man - + Jersey - + Monaco - + Taiwan - + South Korea - + Hong Kong - + Macau - + Indonesia - + Singapore - + Thailand - + Philippines - + Malaysia - + China - + United Arab Emirates - + India - + Egypt - + Oman - + Qatar - + Kuwait - + Saudi Arabia - + Syria - + Bahrain - + Jordan - + San Marino - + Vatican City - + Bermuda - + Download System Files from Nintendo servers Rendszerfájlok letöltése a Nintendo szervereiről - + Citra is missing keys to download system files. <br><a href='https://citra-emu.org/wiki/aes-keys/'><span style="text-decoration: underline; color:#039be5;">How to get keys?</span></a> - - + + Console ID: 0x%1 Konzol ID: 0x%1 - + This will replace your current virtual 3DS with a new one. Your current virtual 3DS will not be recoverable. This might have unexpected effects in games. This might fail, if you use an outdated config savegame. Continue? Ez ki fogja cserélni a jelenlegi virtuális 3DS-edet egy újra. A jelenlegi virtuális 3DS-edetet ne lehet majd később visszaállítani. Ez lehet, hogy váratlan hatást okoz a játékokban. Ez lehet hogy nem fog sikerülni, ha egy elavult konfigurációs mentésfájlt használsz. Folytatod? - + Warning Figyelem - + Downloading files... Fájlok letöltése... - + Cancel Mégse - - + + Citra Citra - + Downloading system files failed. Rendszerfájlok letöltése sikertelen. - + Successfully downloaded system files. Rendszerfájlok sikeresen letöltve. @@ -3380,90 +3380,90 @@ Szeretnéd figyelmen kívül hagyni a hibát, és folytatod? ConfigureTouchFromButton - + Configure Touchscreen Mappings - + Mapping: Hozzárendelés: - + New Új - + Delete Törlés - + Rename Átnevezés - + Click the bottom area to add a point, then press a button to bind. Drag points to change position, or double-click table cells to edit values. - + Delete Point Pont törlése - + Button Gomb - + X X axis X - + Y Y axis Y - + New Profile Új profil - + Enter the name for the new profile. - + Delete Profile Profil törlése - + Delete profile %1? Törlöd a(z) %1 profilt? - + Rename Profile Profil átnevezése - + New name: Új név: - + [press key] [nyomj meg egy gombot] @@ -3471,113 +3471,113 @@ Drag points to change position, or double-click table cells to edit values. ConfigureUi - + Form Forma - + General Általános - + Note: Changing language will apply your configuration. Megjegyzés: A nyelvváltoztatás azonnal érvénybe lép. - + Interface language: Kezelőfelület nyelve: - + Theme: Téma: - + Game List Játéklista - + Icon Size: Ikonméret: - - + + None Nincs - + Small (24x24) Kicsi (24x24) - + Large (48x48) Nagy (48x48) - + Row 1 Text: 1. sor szövege: - - + + File Name Fájlnév - - + + Full Path Teljes útvonal - - + + Title Name (short) Játék neve (rövid) - - + + Title ID Játék azonosító - - + + Title Name (long) Játék neve (hosszú) - + Row 2 Text: 2. sor szövege: - + Hide Titles without Icon Ikon nélküli játékok elrejtése - + Single Line Mode - + <System> <System> - + English Angol @@ -3585,135 +3585,135 @@ Drag points to change position, or double-click table cells to edit values. ConfigureWeb - + Form Forma - + Citra Web Service Citra Web-szolgáltatás - + By providing your username and token, you agree to allow Citra to collect additional usage data, which may include user identifying information. A felhasználóneved és tokened megadásával, belegyezel abba, hogy a Citra használati adatokat gyűjtsön, ami felhasználó azonosító információt tartalmazhat. - - + + Verify Ellenőrzés - + Sign up Regisztráció - + Token: Token: - + Username: Felhasználónév: - + What is my token? Mi a tokenem? - + Web Service configuration can only be changed when a public room isn't being hosted. - + Telemetry Telemetria - + Share anonymous usage data with the Citra team Névtelen használati adat megosztása a Citra csapatával - + Learn more Tudj meg többet - + Telemetry ID: Telemetria ID: - + Regenerate Regeneráció - + Discord Presence Discord jelenlét - + Show Current Game in your Discord Status Jelenlegi játék megjelenítése a Discord állapotodban - + <a href='https://citra-emu.org/entry/telemetry-and-why-thats-a-good-thing/'><span style="text-decoration: underline; color:#039be5;">Learn more</span></a> <a href='https://citra-emu.org/entry/telemetry-and-why-thats-a-good-thing/'><span style="text-decoration: underline; color:#039be5;">Tudj meg többet</span></a> - + <a href='https://profile.citra-emu.org/'><span style="text-decoration: underline; color:#039be5;">Sign up</span></a> <a href='https://profile.citra-emu.org/'><span style="text-decoration: underline; color:#039be5;">Regisztráció</span></a> - + <a href='https://citra-emu.org/wiki/citra-web-service/'><span style="text-decoration: underline; color:#039be5;">What is my token?</span></a> <a href='https://citra-emu.org/wiki/citra-web-service/'><span style="text-decoration: underline; color:#039be5;">Mi a tokenem?</span></a> - - + + Unspecified Nem meghatározott - - + + Telemetry ID: 0x%1 Telemetria ID: 0x%1 - + Token not verified Token nincs megerősítve - + Token was not verified. The change to your token has not been saved. Token nincs megerősítve. A változtatások nem lettek elmentve. - + Verifying... Megerősítés... - + Verification failed Ellenőrzés sikertelen - + Verification failed. Check that you have entered your token correctly, and that your internet connection is working. Sikertelen megerősítés. Győződj meg róla, hogy helyesen írtad be a tokened, és van internetkapcsolatod. @@ -3721,47 +3721,47 @@ Drag points to change position, or double-click table cells to edit values. DirectConnect - + Direct Connect Közvetlen Kapcsolódás - + Server Address - + <html><head/><body><p>Server address of the host</p></body></html> - + Port Port - + <html><head/><body><p>Port number the host is listening on</p></body></html> <html><head/><body><p>Annak a portnak a száma, amire a gazda figyel</p></body></html> - + 24872 24872 - + Nickname Becenév - + Password Jelszó - + Connect Kapcsolás @@ -3769,12 +3769,12 @@ Drag points to change position, or double-click table cells to edit values. DirectConnectWindow - + Connecting Kapcsolódás - + Connect Kapcsolás @@ -3782,110 +3782,110 @@ Drag points to change position, or double-click table cells to edit values. DumpingDialog - + Dump Video Videó kimentése - + Output Kimenet - + Format: Formátum: - - - + + + Options: Opciók: - - - - + + + + ... ... - + Path: Útvonal: - + Video Videó - - + + Encoder: - - + + Bitrate: Bitráta: - - + + bps - + Audio Hang - - + + Citra Citra - + Please specify the output path. - + output formats kimeneti formátumok - + video encoders - + audio encoders - + Could not find any available %1. Please check your FFmpeg installation used for compilation. - - - - + + + + %1 (%2) %1 (%2) - + Select Video Output Path @@ -3893,417 +3893,417 @@ Please check your FFmpeg installation used for compilation. GMainWindow - + <a href='https://citra-emu.org/entry/telemetry-and-why-thats-a-good-thing/'>Anonymous data is collected</a> to help improve Citra. <br/><br/>Would you like to share your usage data with us? - + Telemetry Telemetria - + No Suitable Vulkan Devices Detected - + Vulkan initialization failed during boot.<br/>Your GPU may not support Vulkan 1.1, or you do not have the latest graphics driver. - - + + Current emulation speed. Values higher or lower than 100% indicate emulation is running faster or slower than a 3DS. Jelenlegi emulációs sebesség. A 100%-nál nagyobb vagy kisebb értékek azt mutatják, hogy az emuláció egy 3DS-nél gyorsabban vagy lassabban fut. - - + + How many frames per second the game is currently displaying. This will vary from game to game and scene to scene. Mennyi képkocka/másodpercet jelez a játék jelenleg. Ez játékról játékra és helyszínről helyszínre változik. - - + + Time taken to emulate a 3DS frame, not counting framelimiting or v-sync. For full-speed emulation this should be at most 16.67 ms. Mennyi idő szükséges egy 3DS képkocka emulálásához, képkocka-limit vagy V-Syncet leszámítva. Teljes sebességű emulációnál ez maximum 16.67 ms-nek kéne lennie. - + Clear Recent Files Legutóbbi fájlok törlése - + &Continue &Folytatás - + &Pause &Szünet - + Update Available Frissítés elérhető - + An update is available. Would you like to install it now? Frissítés érhető el. Szeretnéd most telepíteni? - + No Update Found Nem található frissítés - + No update is found. Nem található frissítés. - + Citra is running a game TRANSLATORS: This string is shown to the user to explain why Citra needs to prevent the computer from sleeping - - + + Invalid ROM Format Érvénytelen ROM formátum - - + + Your ROM format is not supported.<br/>Please follow the guides to redump your <a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>game cartridges</a> or <a href='https://citra-emu.org/wiki/dumping-installed-titles/'>installed titles</a>. - + ROM Corrupted Sérült ROM - + Your ROM is corrupted. <br/>Please follow the guides to redump your <a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>game cartridges</a> or <a href='https://citra-emu.org/wiki/dumping-installed-titles/'>installed titles</a>. - + ROM Encrypted - + Your ROM is encrypted. <br/>Please follow the guides to redump your <a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>game cartridges</a> or <a href='https://citra-emu.org/wiki/dumping-installed-titles/'>installed titles</a>. - + Unsupported ROM Nem támogatott ROM - + GBA Virtual Console ROMs are not supported by Citra. - + Error while loading ROM! Hiba a ROM betöltése közben! - + An unknown error occurred. Please see the log for more details. - + CIA must be installed before usage - + Before using this CIA, you must install it. Do you want to install it now? - - + + Slot %1 Foglalat %1 - + Slot %1 - %2 %3 Foglalat %1 - %2 %3 - + Error Opening %1 Folder Hiba %1 Mappa Megnyitásában - - + + Folder does not exist! A mappa nem létezik! - + Dumping... Kimentés... - - + + Cancel Mégse - - - - - - - - - + + + + + + + + + Citra Citra - + Could not dump base RomFS. Refer to the log for details. - + Error Opening %1 Hiba Indulás %1 - + Select Directory Könyvtár Kiválasztása - + Properties Tulajdonságok - + The game properties could not be loaded. A játék tulajdonságait nem sikerült betölteni. - + 3DS Executable (%1);;All Files (*.*) %1 is an identifier for the 3DS executable file extensions. 3DS állományok (%1);;Minden fájl (*.*) - + Load File Fájl Betöltése - + Load Files Fájlok Betöltése - + 3DS Installation File (*.CIA*) 3DS Telepítési Fájl (*.CIA*) - + All Files (*.*) Minden fájl (*.*) - + %1 has been installed successfully. %1 sikeresen fel lett telepítve. - + Unable to open File A fájl megnyitása sikertelen - + Could not open %1 Nem lehet megnyitni: %1 - + Installation aborted Telepítés megszakítva - + The installation of %1 was aborted. Please see the log for more details %1 telepítése meg lett szakítva. Kérjük olvasd el a naplót több részletért. - + Invalid File Ismeretlen Fájl - + %1 is not a valid CIA %1 nem érvényes CIA - + Encrypted File Titkosított Fájl - + %1 must be decrypted before being used with Citra. A real 3DS is required. %1 vissza kell legyen fejtve mielőtt a Citrával lehetne használni. Egy igazi 3DS-re is szükség van. - + Unable to find File A fájl nem található - + Could not find %1 %1 nem található - + Uninstalling '%1'... '%1' eltávolítása... - + Failed to uninstall '%1'. '%1' eltávolítása sikertelen. - + Successfully uninstalled '%1'. '%1' sikeresen eltávolítva. - + File not found A fájl nem található - + File "%1" not found Fájl "%1" nem található - + Missing Citra Account Hiányzó Citra Fiók - + You must link your Citra account to submit test cases.<br/>Go to Emulation &gt; Configure... &gt; Web to do so. - + Savestates - + Warning: Savestates are NOT a replacement for in-game saves, and are not meant to be reliable. Use at your own risk! - - - + + + Error opening amiibo data file - + A tag is already in use. - + Game is not looking for amiibos. - + Amiibo File (%1);; All Files (*.*) Amiibo fájl (%1);; Minden fájl (*.*) - + Load Amiibo Amiibo betöltése - + Unable to open amiibo file "%1" for reading. - + Record Movie Film felvétele - + Movie recording cancelled. Filmfelvétel megszakítva. - - + + Movie Saved Film mentve - - + + The movie is successfully saved. A film sikeresen mentve. - + Invalid Screenshot Directory - + Cannot create specified screenshot directory. Screenshot path is set back to its default value. - + Could not load video dumper - + FFmpeg could not be loaded. Make sure you have a compatible version installed. To install FFmpeg to Citra, press Open and select your FFmpeg directory. @@ -4312,158 +4312,158 @@ To view a guide on how to install FFmpeg, press Help. - + Select FFmpeg Directory FFmpeg könyvtár kiválasztása - + The provided FFmpeg directory is missing %1. Please make sure the correct directory was selected. - + FFmpeg has been sucessfully installed. FFmpeg sikeresen telepítve. - + Installation of FFmpeg failed. Check the log file for details. - + Could not start video dumping.<br>Refer to the log for details. - + Recording %1 Felvétel %1 - + Playing %1 / %2 Lejátszás %1 / %2 - + Movie Finished Film befejezve - + Speed: %1% Sebesség: %1% - + Speed: %1% / %2% Sebesség: %1% / %2% - + Game: %1 FPS Játék: %1 FPS - + Frame: %1 ms Képkocka: %1 ms - + VOLUME: MUTE HANGERŐ: NÉMÍTVA - + VOLUME: %1% Volume percentage (e.g. 50%) HANGERŐ: %1% - + %1 is missing. Please <a href='https://citra-emu.org/wiki/dumping-system-archives-and-the-shared-fonts-from-a-3ds-console/'>dump your system archives</a>.<br/>Continuing emulation may result in crashes and bugs. - + A system archive Egy rendszerarchívum - + System Archive Not Found Rendszerarchívum Nem Található - + System Archive Missing - + Save/load Error Mentési/betöltési hiba - + Fatal Error Kritikus Hiba - + A fatal error occurred. <a href='https://community.citra-emu.org/t/how-to-upload-the-log-file/296'>Check the log</a> for details.<br/>Continuing emulation may result in crashes and bugs. - + Fatal Error encountered Végzetes hiba lépett fel - + Continue Folytatás - + Quit Game Játék bezárása - + OK OK - + Would you like to exit now? Szeretnél most kilépni? - + The game is still running. Would you like to stop emulation? A játék még fut. Szeretnéd leállítani az emulációt? - + Playback Completed - + Movie playback completed. - + Primary Window Elsődleges ablak - + Secondary Window Másodlagos ablak @@ -4471,22 +4471,22 @@ To view a guide on how to install FFmpeg, press Help. GPUCommandListModel - + Command Name Parancs Név - + Register Regisztráció - + Mask Maszk - + New Value Új Érték @@ -4494,23 +4494,23 @@ To view a guide on how to install FFmpeg, press Help. GPUCommandListWidget - + Pica Command List Pica Parancslista - - + + Start Tracing Nyomkövetés indítása - + Copy All Mind Másolása - + Finish Tracing Nyomkövetés befejezése @@ -4518,7 +4518,7 @@ To view a guide on how to install FFmpeg, press Help. GPUCommandStreamWidget - + Graphics Debugger Grafikai Debugger @@ -4526,42 +4526,42 @@ To view a guide on how to install FFmpeg, press Help. GRenderWindow - + OpenGL not available! OpenGL nem elérhető! - + OpenGL shared contexts are not supported. - + Error while initializing OpenGL! Hiba történt az OpenGL inicializálásakor! - + Your GPU may not support OpenGL, or you do not have the latest graphics driver. - + Error while initializing OpenGL 4.3! Hiba történt az OpenGL 4.3 inicializálásakor! - + Your GPU may not support OpenGL 4.3, or you do not have the latest graphics driver.<br><br>GL Renderer:<br>%1 - + Error while initializing OpenGL ES 3.2! Hiba történt az OpenGL ES 3.2 inicializálásakor! - + Your GPU may not support OpenGL ES 3.2, or you do not have the latest graphics driver.<br><br>GL Renderer:<br>%1 @@ -4569,193 +4569,193 @@ To view a guide on how to install FFmpeg, press Help. GameList - - + + Compatibility Kompatibilitás - - + + Region Régió - - + + File type Fájltípus - - + + Size Méret - + Open Save Data Location Mentésadat Helyének Megnyitása - + Open Extra Data Location - + Open Application Location Alkalmazás Helyének Megnyitása - + Open Update Data Location Frissítésadat Helyének Megnyitása - + Open DLC Data Location - + Open Texture Dump Location - + Open Custom Texture Location - + Open Mods Location - + Dump RomFS RomFS kimentése - + Disk Shader Cache Lemez árnyékoló-gyorsítótár - + Open Shader Cache Location - + Delete OpenGL Shader Cache OpenGL árnyékoló gyorsítótár törlése - + Uninstall Eltávolítás - + Everything Minden - + Game Játék - + Update Frissítés - + DLC DLC - + Navigate to GameDB entry GameDB bejegyzéshez navigálás - + Properties Tulajdonságok - - - - + + + + Citra Citra - + Are you sure you want to completely uninstall '%1'? This will delete the game if installed, as well as any installed updates or DLC. - - + + %1 (Update) %1 (frissítés) - - + + %1 (DLC) %1 (DLC) - + Are you sure you want to uninstall '%1'? Biztosan törölni szeretnéd: '%1'? - + Are you sure you want to uninstall the update for '%1'? Biztosan törölni szeretnéd a(z) '%1' frissítését? - + Are you sure you want to uninstall all DLC for '%1'? Biztosan törölni szeretnéd a(z) '%1' összes DLC-jét? - + Scan Subfolders Almappák szkennelése - + Remove Game Directory Játékkönyvtár eltávolítása - + Move Up Feljebb mozgatás - + Move Down Lejjebb mozgatás - + Open Directory Location - + Name Név @@ -4763,77 +4763,77 @@ This will delete the game if installed, as well as any installed updates or DLC. GameListItemCompat - + Perfect Tökéletes - + Game functions flawless with no audio or graphical glitches, all tested functionality works as intended without any workarounds needed. - + Great - + Game functions with minor graphical or audio glitches and is playable from start to finish. May require some workarounds. - + Okay Rendben - + Game functions with major graphical or audio glitches, but game is playable from start to finish with workarounds. - + Bad Rossz - + Game functions, but with major graphical or audio glitches. Unable to progress in specific areas due to glitches even with workarounds. - + Intro/Menu Intro/Menü - + Game is completely unplayable due to major graphical or audio glitches. Unable to progress past the Start Screen. - + Won't Boot Nem indul - + The game crashes when attempting to startup. A játék összeomlik indításkor. - + Not Tested Nem tesztelt - + The game has not yet been tested. A játék még nincs tesztelve. @@ -4841,7 +4841,7 @@ Screen. GameListPlaceholder - + Double-click to add a new folder to the game list Dupla kattintással új mappát adhatsz hozzá a játéklistához. @@ -4849,27 +4849,27 @@ Screen. GameListSearchField - + of - + result eredmény - + results eredmény - + Filter: Szürő: - + Enter pattern to filter Adj meg egy mintát a szűréshez @@ -4877,47 +4877,47 @@ Screen. GameRegion - + Japan - + North America - + Europe - + Australia - + China - + Korea - + Taiwan - + Invalid region Érvénytelen régió - + Region free Régiómentes @@ -4925,23 +4925,23 @@ Screen. GraphicsBreakPointsWidget - + Pica Breakpoints Pica Töréspontok - - + + Emulation running Emuláció fut - + Resume Folytatás - + Emulation halted at breakpoint Emuláció a törésponton leállt @@ -4949,146 +4949,146 @@ Screen. GraphicsSurfaceWidget - + Pica Surface Viewer Pica Felülnézegető - + Color Buffer Színpuffer - + Depth Buffer Mélységpuffer - + Stencil Buffer Patronpuffer - + Texture 0 Textúra 0 - + Texture 1 Textúra 1 - + Texture 2 Textúra 2 - + Custom Egyéni - + Unknown Ismeretlen - + Save Mentés - + Source: Forrás: - + Physical Address: Fizikai Cím: - + Width: Szélesség: - + Height: Magasság: - + Format: Formátum: - + X: X: - + Y: Y: - + Pixel out of bounds Pixel a határokon kívül van - + (unable to access pixel data) (pixeladat elérése sikertelen) - + (invalid surface address) (érvénytelen felszínadat) - + (unknown surface format) (ismeretlen felszínformátum) - + Portable Network Graphic (*.png) Hordozható Hálózati Grafika (*.png) - + Binary data (*.bin) Bináris adat (*.bin) - + Save Surface Felszín Elmentése - - - - + + + + Error Hiba - - + + Failed to open file '%1' Fájl megnyitása sikertelen volt: '%1' - + Failed to save surface data to file '%1' - + Failed to completely write surface data to file. The saved data will likely be corrupt. @@ -5096,42 +5096,42 @@ Screen. GraphicsTracingWidget - + CiTrace Recorder CiTrace Felvevő - + Start Recording Felvétel Indítása - + Stop and Save Megállítás és Mentés - + Abort Recording Felvétel Megszakítása - + Save CiTrace CiTrace Mentése - + CiTrace File (*.ctf) CiTrace Fájl (*.ctf) - + CiTracing still active CiTrace még mindig aktív - + A CiTrace is still being recorded. Do you want to save it? If not, all recorded data will be discarded. Egy CiTrace még mindíg rögzül. Szeretnéd elmenteni? Ha nem, minden felvett adat el fog veszni. @@ -5139,17 +5139,17 @@ Screen. GraphicsVertexShaderModel - + Offset Eltolás - + Raw Dörzsölés - + Disassembly Szétszerelés @@ -5157,127 +5157,127 @@ Screen. GraphicsVertexShaderWidget - + Save Shader Dump Shader Dump Elmentése - + Shader Binary (*.shbin) Shader Bináris (*.shbin) - + Pica Vertex Shader - + (data only available at vertex shader invocation breakpoints) (adat csak a vertex shader invokáció töréspontjain elérhető) - + Dump Dump - + Input Data Beviteli Adat - + Attribute %1 Attribútum %1 - + Cycle Index: Ciklus Index: - + SRC1: %1, %2, %3, %4 SRC1: %1, %2, %3, %4 - + SRC2: %1, %2, %3, %4 SRC2: %1, %2, %3, %4 - + SRC3: %1, %2, %3, %4 SRC3: %1, %2, %3, %4 - + DEST_IN: %1, %2, %3, %4 DEST_IN: %1, %2, %3, %4 - + DEST_OUT: %1, %2, %3, %4 DEST_OUT: %1, %2, %3, %4 - + Address Registers: %1, %2 Címregisztrációk: %1, %2 - + Compare Result: %1, %2 Eredmény Összehasonlítása: %1, %2 - + Static Condition: %1 Statikus Állapot: %1 - + Dynamic Conditions: %1, %2 Dinamikus Állapotok: %1, %2 - + Loop Parameters: %1 (repeats), %2 (initializer), %3 (increment), %4 Loop Paraméterek: %1 (ismétlések), %2 (inicializáló), %3 (lépés), %4 - + Instruction offset: 0x%1 Instrukció eltolás: 0x%1 - + -> 0x%2 -> 0x%2 - + (last instruction) (utolsó instrukció) @@ -5285,67 +5285,67 @@ Screen. HostRoom - + Create Room Szoba Létrehozása - + Room Name Szoba Neve - + Preferred Game Preferált Játék - + Max Players Max Játékosok - + Username Felhasználónév - + (Leave blank for open game) (Hagyd üresen nyílt játékhoz) - + Password Jelszó - + Port Port - + Room Description Szoba leírása - + Load Previous Ban List Előző tiltólista betöltése - + Public Nyilvános - + Unlisted Nem listázott - + Host Room Gazda Szoba @@ -5353,12 +5353,12 @@ Screen. HostRoomWindow - + Error Hiba - + Failed to announce the room to the public lobby. In order to host a room publicly, you must have a valid Citra account configured in Emulation -> Configure -> Web. If you do not want to publish a room in the public lobby, then select Unlisted instead. Debug Message: @@ -5367,47 +5367,47 @@ Debug Message: IPCRecorder - + IPC Recorder - + Enable Recording Felvétel engedélyezése - + Filter: Szűrő: - + Leave empty to disable filtering Hagyd üresen a szűrés megszüntetéséhez - + # # - + Status Állapot - + Service Szolgáltatás - + Function Funkció - + Clear Törlés @@ -5415,47 +5415,47 @@ Debug Message: IPCRecorderWidget - + Invalid Érvénytelen - + Sent Elküldve - + Handling Kezelés - + Success Siker - + Error Hiba - + HLE Unimplemented - + HLE HLE - + LLE LLE - + Unknown Ismeretlen @@ -5463,7 +5463,7 @@ Debug Message: LLEServiceModulesWidget - + Toggle LLE Service Modules @@ -5471,54 +5471,54 @@ Debug Message: LoadingScreen - + Loading Shaders 387 / 1628 Árnyékolók betöltése 387 / 1628 - + Loading Shaders %v out of %m Árnyékolók betöltése %v / %m - + Estimated Time 5m 4s Hátralévő idő 5p 4mp - + Loading... Betöltés... - + Preloading Textures %1 / %2 Textúrák előtöltése %1 / %2 - + Preparing Shaders %1 / %2 Árnyékolók előkészítése %1 / %2 - + Loading Shaders %1 / %2 Árnyékolók betöltése %1 / %2 - + Launching... Indítás... - + Now Loading %1 Betöltés %1 - + Estimated Time %1 Hátralévő idő %1 @@ -5526,83 +5526,83 @@ Debug Message: Lobby - + Public Room Browser Nyilvános Szoba Böngésző - - + + Nickname Becenév - + Filters Szűrők - + Search Keresés - + Games I Own Birtokolt Játékok - + Hide Empty Rooms Üres szobák elrejtése - + Hide Full Rooms Telített Szobák Elrejtése - + Refresh Lobby Lobby Frissítése - + Password Required to Join A Csatlakozáshoz Szükséges Jelszó - + Password: Jelszó: - + Room Name Szoba Neve - + Preferred Game Preferált Játék - + Host Gazda - + Players Játékosok - + Refreshing Frissítés - + Refresh List Lista Frissítése @@ -5610,362 +5610,362 @@ Debug Message: MainWindow - + Citra Citra - + &File &Fájl - + Boot Home Menu - + Recent Files Legutóbbi Fájlok - + Amiibo Amiibo - + &Emulation &Emuláció - + Save State - + Load State - + &View &Nézet - + Debugging Hibakeresés - + Screen Layout Képernyő Elrendezése - + Multiplayer Többjátékos - + Tools Eszközök - + Movie Film - + Frame Advance - + &Help &Segítség - + Load File... Fájl Betöltése... - + Install CIA... CIA Telepítése... - + JPN - + USA - + EUR - + AUS - + CHN - + KOR - + TWN - + E&xit &Kilépés - + &Pause &Szünet - + &Stop &Megállítás - + Save Mentés - + Load Betöltés - + FAQ Gyakori Kérdések - + About Citra A Citráról - + Single Window Mode Egyablakos Mód - + Save to Oldest Slot Legrégebbi foglalatba mentés - + Load from Newest Slot Legfrissebb foglalatból betöltés - + Configure... Konfiguráció... - + Display Dock Widget Headers Dokk Modul Fejlécek Megjelenítése - + Show Filter Bar Filtersáv Megjelenítése - + Show Status Bar Állapotsáv Megjelenítése - + Create Pica Surface Viewer Pica Felülnézegető Létrehozása - + Record... Felvétel... - + Play... Lejátszás... - + Close Bezárás - + Save without Closing Mentés bezárás nélkül - + Read-Only Mode Csak olvasható mód - + Enable Frame Advancing - + Advance Frame - + Capture Screenshot Képernyőkép készítése - + Dump Video Videó kimentése - + Browse Public Game Lobby Nyilvános Játék Lobby Böngészése - + Create Room Szoba Létrehozása - + Leave Room Szoba Elhagyása - + Direct Connect to Room Közvetlen Kapcsolódás Szobához - + Show Current Room Jelenlegi Szoba Mutatása - + Fullscreen Teljes Képernyő - + Modify Citra Install Citra Telepítés Módosítása - + Opens the maintenance tool to modify your Citra installation Megnyitja a karbantartási eszközt, amivel a Citra telepítést módosíthatod - + Default Alapértelmezett - + Single Screen Egy Képernyő - + Large Screen Nagy Képernyő - + Hybrid Screen Hibrid képernyő - + Side by Side Egymás Mellett - + Separate Windows Külön ablakok - + Swap Screens Képernyők Cseréje - + Rotate Upright Felfelé forgatás - + Check for Updates Frissítések Keresése - + Report Compatibility Kompatibilitás Jelentése - + Restart Újraindítás - + Load... Betöltés... - + Remove Eltávolítás - + Open Citra Folder Citra mappa megnyitása - + Configure Current Game... Jelenlegi játék konfigurálása... @@ -5973,7 +5973,7 @@ Debug Message: MicroProfileDialog - + MicroProfile MicroProfil @@ -5981,48 +5981,48 @@ Debug Message: ModerationDialog - + Moderation Moderáció - + Ban List Tiltólista - - + + Refreshing Frissítés - + Unban Tiltás feloldása - + Subject Tárgy - + Type Típus - + Forum Username Fórum felhasználónév - + IP Address IP-cím - + Refresh Frissítés @@ -6030,91 +6030,91 @@ Debug Message: MoviePlayDialog - - + + Play Movie Film lejátszása - + File: Fájl: - + ... ... - + Info Infó - + Game: Játék: - + Author: Szerző: - + Rerecord Count: - + Length: Hossz: - + Current running game will be stopped. A jelenleg futó játék leállításra kerül. - + <br>Current recording will be discarded. - + Citra TAS Movie (*.ctm) - + Invalid movie file. Érvénytelen filmfájl. - + Revision dismatch, playback may desync. - + Indicated length is incorrect, file may be corrupted. - - - - + + + + (unknown) (ismeretlen) - + Game used in this movie is not in game list. - + (>1 day) (>1 nap) @@ -6122,43 +6122,43 @@ Debug Message: MovieRecordDialog - - + + Record Movie Film felvétele - + File: Fájl: - + ... ... - + Author: Szerző: - + Current running game will be restarted. - + <br>Current recording will be discarded. - + Recording will start once you boot a game. A felvétel a játék indításakor elkezdődik. - + Citra TAS Movie (*.ctm) @@ -6166,43 +6166,43 @@ Debug Message: MultiplayerState - - + + Current connection status Jelenlegi kapcsolódási állapot - - + + Not Connected. Click here to find a room! Nem Kapcsolódott. Kattints ide egy szoba kereséséhez! - - - + + + Connected Kapcsolódva - - + + Not Connected Nincs Kapcsolódva - + Error Hiba - + Failed to update the room information. Please check your Internet connection and try hosting the room again. Debug Message: - + New Messages Received Új üzenet érkezett @@ -6210,22 +6210,22 @@ Debug Message: NetworkMessage - + Leave Room Szoba Elhagyása - + You are about to close the room. Any network connections will be closed. Be fogod zárni a szobát. Minden hálózati kapcsolat le lesz kapcsolva. - + Disconnect Lecsatlakozás - + You are about to leave the room. Any network connections will be closed. El fogod hagyni a szobát. Minden hálózati kapcsolat le lesz csatlakoztatva. @@ -6233,110 +6233,110 @@ Debug Message: NetworkMessage::ErrorManager - + Username is not valid. Must be 4 to 20 alphanumeric characters. Érvénytelen felhasználónév. 4-20 alfanumerikus karakterből kell állnia. - + Room name is not valid. Must be 4 to 20 alphanumeric characters. Érvénytelen szobanév. 4-20 alfanumerikus karakterből kell állnia. - + Username is already in use or not valid. Please choose another. A felhasználónév már használatban van, vagy érvénytelen. Próbálj megadni egy másikat. - + IP is not a valid IPv4 address. Az IP nem érvényes IPv4 cím. - + Port must be a number between 0 to 65535. A port csak 0 és 65535 közötti szám lehet. - + You must choose a Preferred Game to host a room. If you do not have any games in your game list yet, add a game folder by clicking on the plus icon in the game list. - + Unable to find an internet connection. Check your internet settings. - + Unable to connect to the host. Verify that the connection settings are correct. If you still cannot connect, contact the room host and verify that the host is properly configured with the external port forwarded. - + Unable to connect to the room because it is already full. - + Creating a room failed. Please retry. Restarting Citra might be necessary. - + The host of the room has banned you. Speak with the host to unban you or try a different room. - + Version mismatch! Please update to the latest version of Citra. If the problem persists, contact the room host and ask them to update the server. - + Incorrect password. Helytelen jelszó. - + An unknown error occurred. If this error continues to occur, please open an issue - + Connection to room lost. Try to reconnect. Megszakadt a kapcsolat a szobával. Próbálj újracsatlakozni. - + You have been kicked by the room host. A szoba házigazdája kirúgott téged. - + MAC address is already in use. Please choose another. A MAC cím már használatban van. Válassz másikat. - + Your Console ID conflicted with someone else's in the room. Please go to Emulation > Configure > System to regenerate your Console ID. - + You do not have enough permission to perform this action. Nincs megfelelő jogosultságod a művelet végrehajtásához. - + The user you are trying to kick/ban could not be found. They may have left the room. - + Error Hiba @@ -6344,37 +6344,37 @@ They may have left the room. OptionSetDialog - + Options Opciók - + Unset - + unknown ismeretlen - + %1 &lt;%2> %3 %1 &lt;%2> %3 - + Range: %1 - %2 Tartomány: %1 - %2 - + custom egyéni - + %1 (0x%2) %3 %1 (0x%2) %3 @@ -6382,32 +6382,32 @@ They may have left the room. OptionsDialog - + Options Opciók - + Double click to see the description and change the values of the options. - + Specific Specifikus - + Generic Általános - + Name Név - + Value Érték @@ -6415,157 +6415,157 @@ They may have left the room. QObject - + Supported image files (%1) Támogatott képfájlok (%1) - + Open File Fájl Megnyitása - + Error Hiba - + Couldn't load the camera Nem lehet a kamerát betölteni - + Couldn't load %1 Nem lehet betölteni: %1 - - + + Shift Shift - - + + Ctrl Ctrl - - + + Alt Alt - - - + + + [not set] [nincs megadva] - - + + Hat %1 %2 - - - - - - + + + + + + Axis %1%2 Tengely %1%2 - - + + Button %1 Gomb %1 - + GC Axis %1%2 - + GC Button %1 - - - + + + [unknown] [ismeretlen] - + [unused] [nem használt] - + auto auto - + true igaz - + false hamis - - + + none - + %1 (0x%2) %1 (0x%2) - + Invalid region Érvénytelen régió - + Installed Titles Telepített játékok - + System Titles Rendszercímek - + Add New Game Directory Új játékkönyvtár hozzáadása - + Not playing a game Nincs játékban - + %1 is not playing a game %1 nem játszik semmilyen játékkal - + %1 is playing %2 %1 játszik ezzel: %2 @@ -6573,7 +6573,7 @@ They may have left the room. QtKeyboard - + Software Keyboard @@ -6581,27 +6581,27 @@ They may have left the room. QtKeyboardDialog - + Text length is not correct (should be %1 characters) - + Text is too long (should be no more than %1 characters) - + Blank input is not allowed - + Empty input is not allowed - + Validation error Hitelesítési hiba @@ -6609,12 +6609,12 @@ They may have left the room. QtMiiSelectorDialog - + Mii Selector Mii választó - + Standard Mii @@ -6622,95 +6622,95 @@ They may have left the room. RecordDialog - + View Record - + Client Kliens - - + + Process: Folyamat: - - + + Thread: Szál: - - + + Session: Munkamenet: - + Server Szerver - + General Általános - + Client Port: Kliens port: - + Service: Szolgáltatás: - + Function: Funkció: - + Command Buffer - + Select: Kiválasztás: - + Request Untranslated Lefordítatlan kérése - + Request Translated Lefordított kérése - + Reply Untranslated - + Reply Translated - + OK OK - + null null @@ -6718,37 +6718,37 @@ They may have left the room. RegistersWidget - + Registers Regisztrációk - + VFP Registers VFP Regsztrációk - + VFP System Registers VFP Rendszer-regisztrációk - + Vector Length Vektorhossz - + Vector Stride Vector Lépés - + Rounding Mode Kerekítési Mód - + Vector Iteration Count Vektor Ismétlés Száma @@ -6756,7 +6756,7 @@ They may have left the room. SequenceDialog - + Enter a hotkey Gyorsbillentyű megadása @@ -6764,7 +6764,7 @@ They may have left the room. WaitTreeEvent - + reset type = %1 típus visszaállítása = %1 @@ -6772,12 +6772,12 @@ They may have left the room. WaitTreeMutex - + locked %1 times by thread: szálak által lezárva %1 alkalommal: - + free szabad @@ -6785,7 +6785,7 @@ They may have left the room. WaitTreeMutexList - + holding mutexes mutexek tartása @@ -6793,12 +6793,12 @@ They may have left the room. WaitTreeObjectList - + waiting for all objects várakozás minden objektumra - + waiting for one of the following objects várakozás valamelyik objektumra @@ -6806,12 +6806,12 @@ They may have left the room. WaitTreeSemaphore - + available count = %1 elérhető szám = %1 - + max count = %1 maximális szám = %1 @@ -6819,112 +6819,112 @@ They may have left the room. WaitTreeThread - + running futás - + ready kész - + waiting for address 0x%1 várakozás a 0x%1 címre - + sleeping alvás - + waiting for IPC response várakozás IPC válaszra - + waiting for objects várakozás objektumokra - + waiting for HLE return várakozás HLE visszatérésre - + dormant alvó - + dead halott - + PC = 0x%1 LR = 0x%2 PC = 0x%1 LR = 0x%2 - + default alapértelmezett - + all mind - + AppCore AlkalmazásMag - + SysCore RendszerMag - + Unknown processor %1 Ismeretlen processzor %1 - + object id = %1 - + processor = %1 processzor = %1 - + thread id = %1 szál id = %1 - + process = %1 (%2) folyamat = %1 (%2) - + priority = %1(current) / %2(normal) prioritás = %1(jelenlegi) / %2(normál) - + last running ticks = %1 utolsó futó tickek = %1 - + not holding mutex mutexek nincsenek tartva @@ -6932,7 +6932,7 @@ They may have left the room. WaitTreeThreadList - + waited by thread várakozás a száltól @@ -6940,17 +6940,17 @@ They may have left the room. WaitTreeTimer - + reset type = %1 típus visszaállítása = %1 - + initial delay = %1 kezdeti késleltetés = %1 - + interval delay = %1 intervallum késleltetés = %1 @@ -6958,27 +6958,27 @@ They may have left the room. WaitTreeWaitObject - + [%1]%2 %3 [%1]%2 %3 - + waited by no thread semmilyen száltól várakozás - + one shot egy lövés - + sticky ragacsos - + pulse pulzus @@ -6986,7 +6986,7 @@ They may have left the room. WaitTreeWidget - + Wait Tree Várakozási Fa diff --git a/dist/languages/id.ts b/dist/languages/id.ts index d0ff400a9..87f5852f9 100644 --- a/dist/languages/id.ts +++ b/dist/languages/id.ts @@ -2,17 +2,17 @@ ARMRegisters - + ARM Registers Register ARM - + Register Register - + Value Nilai @@ -20,27 +20,27 @@ AboutDialog - + About Citra Tentang Citra - - <html><head/><body><p><img src=":/icons/citra.png"/></p></body></html> - <html><head/><body><p><img src=":/icons/citra.png"/></p></body></html> + + <html><head/><body><p><img src=":/icons/lime.png"/></p></body></html> + <html><head/><body><p><img src=":/icons/lime.png"/></p></body></html> - + <html><head/><body><p><span style=" font-size:28pt;">Citra</span></p></body></html> <html><head/><body><p><span style=" font-size:28pt;">Citra</span></p></body></html> - + <html><head/><body><p>%1 | %2-%3 (%4)</p></body></html> <html><head/><body><p>%1 | %2-%3 (%4)</p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -57,12 +57,12 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">Software ini seharusnya tidak digunakan untuk memainkan permainan games yang didapatkan secara illegal.</span></p></body></html> - + <html><head/><body><p><a href="https://citra-emu.org/"><span style=" text-decoration: underline; color:#039be5;">Website</span></a> | <a href="https://community.citra-emu.org/"><span style=" text-decoration: underline; color:#039be5;">Forum</span></a> | <a href="https://github.com/citra-emu"><span style=" text-decoration: underline; color:#039be5;">Source Code</span></a> | <a href="https://github.com/citra-emu/citra/graphs/contributors"><span style=" text-decoration: underline; color:#039be5;">Contributors</span></a> | <a href="https://github.com/citra-emu/citra/blob/master/license.txt"><span style=" text-decoration: underline; color:#039be5;">License</span></a></p></body></html> <html><head/><body><p><a href="https://citra-emu.org/"><span style=" text-decoration: underline; color:#039be5;">Situs Web</span></a>|<a href="https://community.citra-emu.org/"><span style=" text-decoration: underline; color:#039be5;">Forum</span></a> | <a href="https://github.com/citra-emu"><span style=" text-decoration: underline; color:#039be5;">Sumber Kode</span></a>|<a href="https://github.com/citra-emu/citra/graphs/contributors"><span style=" text-decoration: underline; color:#039be5;">Kontributor</span></a>|<a href="https://github.com/citra-emu/citra/blob/master/license.txt"><span style=" text-decoration: underline; color:#039be5;">Lisensi</span></a></p></body></html> - + <html><head/><body><p><span style=" font-size:7pt;">&quot;3DS&quot; is a trademark of Nintendo. Citra is not affiliated with Nintendo in any way.</span></p></body></html> <html><head/><body><p><span style=" font-size:7pt;">&quot;3DS&quot; adalah merek dagang dari Nintendo. Citra tidak berafiliasi dengan Nintendo dengan cara apapun.</span></p></body></html> @@ -70,47 +70,47 @@ p, li { white-space: pre-wrap; } BreakPointModel - + Pica command loaded Perintah Pica dimuat - + Pica command processed Perintah Pica terproses - + Incoming primitive batch Batch primitif masuk - + Finished primitive batch Batch primitif selesai - + Vertex shader invocation Permintaan Shader Vertex - + Incoming display transfer Transfer tampilan masuk - + GSP command processed Perintah GSP terproses - + Buffers swapped Buffer ditukar - + Unknown debug context event Konteks debug tidak diketahui @@ -118,32 +118,32 @@ p, li { white-space: pre-wrap; } CalibrationConfigurationDialog - + Communicating with the server... Berkomunikasi dengan server... - + Cancel Batalkan - + Touch the top left corner <br>of your touchpad. Sentuh bagian pojok kiri atas <br>dari touchpad anda. - + Now touch the bottom right corner <br>of your touchpad. Sekarang sentuh bagian pojok kanan bawah<br>dari touchpad anda. - + Configuration completed! Pengaturan Telah Selesai - + OK OK @@ -151,93 +151,93 @@ p, li { white-space: pre-wrap; } ChatRoom - + Room Window Jendela Grup - + Send Chat Message Kirim Pesan Chat - + Send Message Kirim Pesan - + Members Anggota - + %1 has joined %1 telah bergabung - + %1 has left %1 telah pergi - + %1 has been kicked %1 telah di usir - + %1 has been banned %1 telah di banned - + %1 has been unbanned %1 sudah tidak ter-ban - + View Profile Lihat Profil - - + + Block Player Blokir Pemain - + When you block a player, you will no longer receive chat messages from them.<br><br>Are you sure you would like to block %1? Ketika Anda memblokir seorang pemain, Anda tidak dapat lagi menerima pesan chat dari mereka. <br><br>Apakah Anda yakin ingin memblokir pemain %1? - + Kick Usir - + Ban Banned - + Kick Player Usir Pemain - + Are you sure you would like to <b>kick</b> %1? Apakah kau yakin ingin <b>mengusir</b> %1? - + Ban Player Banned Pemain - + Are you sure you would like to <b>kick and ban</b> %1? This would ban both their forum username and their IP address. @@ -249,22 +249,22 @@ Ini akan mem-banned nama pengguna dan alamat IP mereka ClientRoom - + Room Window Jendela Grup - + Room Description Deskripsi Ruangan - + Moderation... Moderasi - + Leave Room Tinggalkan Grup @@ -272,17 +272,17 @@ Ini akan mem-banned nama pengguna dan alamat IP mereka ClientRoomWindow - + Connected Terhubung - + Disconnected Terputus - + %1 (%2/%3 members) - connected %1 (%2/%3 anggota) - terhubung @@ -290,108 +290,108 @@ Ini akan mem-banned nama pengguna dan alamat IP mereka CompatDB - + Report Compatibility Laporkan Kompatibilitas - - + + Report Game Compatibility Laporkan Kompatibilitas Permainan - + <html><head/><body><p><span style=" font-size:10pt;">Should you choose to submit a test case to the </span><a href="https://citra-emu.org/game/"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">Citra Compatibility List</span></a><span style=" font-size:10pt;">, The following information will be collected and displayed on the site:</span></p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Hardware Information (CPU / GPU / Operating System)</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Which version of Citra you are running</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The connected Citra account</li></ul></body></html> <html><head/><body><p><span style=" font-size:10pt;">Jika kamu memilih untuk memberikan test case ke </span><a href="https://citra-emu.org/game/"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">Daftar Kompatibilitas Citra</span></a><span style=" font-size:10pt;">, Informasi berikut ini akan dikumpulkan dan ditampilkan pada situs: </span></p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Informasi perangkat keras (CPU / GPU / Sistem Operasi) </li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Versi Citra apa saja yang Anda jalankan </li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Akun Citra yang terhubung </li></ul></body></html> - + Perfect Sempurna - + <html><head/><body><p>Game functions flawlessly with no audio or graphical glitches.</p></body></html> <html><head/><body><p> Permainan berfungsi dengan lancar tanpa kecacatan audio atau gambar </p></body></html> - + Great - + <html><head/><body><p>Game functions with minor graphical or audio glitches and is playable from start to finish. May require some workarounds.</p></body></html> <html><head/><body><p>Permainan berfungsi dengan sedikit kecacatan audio atau gambar dan dapat dimainkan dari awal hingga akhir. Mungkin membutuhkan beberapa perbaikan tambahan. </p></body></html> - + Okay Oke - + <html><head/><body><p>Game functions with major graphical or audio glitches, but game is playable from start to finish with workarounds.</p></body></html> <html><head/><body><p>Permainan berfungsi dengan banyak kecacatan audi atau gambar, tapi permainan dapat dimainkan dari awal hingga akhir dengan perbaikan tambahan. </p></body></html> - + Bad Buruk - + <html><head/><body><p>Game functions, but with major graphical or audio glitches. Unable to progress in specific areas due to glitches even with workarounds.</p></body></html> <html><head/><body><p>Permainan berfungsi, tapi dengan banyak kecacatan besar audio dan gambar. Tidak dapat berjalan di beberapa daerah karena cacat bahkan dengan perbaikan tambahan. </p></body></html> - + Intro/Menu Intro/Menu - + <html><head/><body><p>Game is completely unplayable due to major graphical or audio glitches. Unable to progress past the Start Screen.</p></body></html> <html><head/><body><p>Permainan secara total tidak bisa dimainkan karena banyak kecacatan besar audio dan gambar. Tidak dapat melewati Layar Mulai.</p></body></html> - + Won't Boot Tidak Mau Memulai - + <html><head/><body><p>The game crashes when attempting to startup.</p></body></html> <html><head/><body><p>Permainan ini tiba-tiba berhenti ketika mencoba untuk dimulai. </p></body></html> - + <html><head/><body><p>Independent of speed or performance, how well does this game play from start to finish on this version of Citra?</p></body></html> <html><head/><body><p>Terlepas dari kelajuan atau performa, seberapa baik permainan ini berjalan dari awal hingga akhir di versi Citra ini?</p></body></html> - + Thank you for your submission! Terima kasih atas masukannya! - + Submitting Menyerahkan - + Communication error Komunikasi eror - + An error occurred while sending the Testcase Galat terjadi saat mengirimkan Testcase - + Next Selanjutnya @@ -399,93 +399,93 @@ Ini akan mem-banned nama pengguna dan alamat IP mereka ConfigureAudio - + Output - + Emulation: Emulasi: - + HLE (fast) HLE (cepat) - + LLE (accurate) LLE (akurat) - + LLE multi-core LLE multi-inti - + Output Type - + Output Device - + This post-processing effect adjusts audio speed to match emulation speed and helps prevent audio stutter. This however increases audio latency. Efek pasca-pemrosesan ini dilakukan untuk menyesuaikan kecepatan audio agar sesuai dengan kecepatan emulasi dan mencegah terjadinya audio stutter. Namun proses ini meningkatkan latensi audio. - + Enable audio stretching Aktifkan audio stretching - + Use global volume - + Set volume: - + Volume: Volume: - + 0 % 0 % - + Microphone Mikrophone - + Input Type Tipe Masukan - + Input Device Alat Masukan - - + + Auto - + %1% Volume percentage (e.g. 50%) %1% @@ -494,203 +494,203 @@ Ini akan mem-banned nama pengguna dan alamat IP mereka ConfigureCamera - + Form Formulir - + Camera Kamera - - + + Select the camera to configure Pilih kamera untuk di atur - + Camera to configure: Kamera yang diatur: - + Front Depan - + Rear Belakang - - + + Select the camera mode (single or double) Pilih mode kamera (tunggal atau ganda) - + Camera mode: Mode kamera: - + Single (2D) Tunggal (2D) - + Double (3D) Ganda (3D) - - + + Select the position of camera to configure Pilih posisi kamera untuk di atur - + Camera position: Posisi kamera: - + Left Kiri - + Right Kanan - + Configuration Konfigurasi - - + + Select where the image of the emulated camera comes from. It may be an image or a real camera. Pilih di mana gambar dari kamera yang di emulasi datang berasal. Bisa dari gambar atau kamera asli. - + Camera Image Source: Sumber Gambar Kamera: - + Blank (blank) Kosong (kosong) - + Still Image (image) Gambar diam (gambar) - + System Camera (qt) Kamera Sistem (qt) - + File: File: - + ... ... - - + + Select the system camera to use Pilih kamera sistem untuk digunakan - + Camera: Kamera: - + <Default> <Default> - - + + Select the image flip to apply Pilih pembalikan gambar untuk diterapkan - + Flip: Balik: - + None Tidak Ada - + Horizontal Horizontal - + Vertical Vertikal - + Reverse Terbalik - + Select an image file every time before the camera is loaded Pilih file gambar setiap kali sebelum kamera di muat - + Prompt before load Tampilkan sebelum di muat - + Preview Peninjauan - + Resolution: 512*384 Resolusi: 512*384 - + Click to preview Klik untuk meninjau - + Resolution: %1*%2 Resolusi: %1*%2 - + Supported image files (%1) File gambar yang di dukung (%1) - + Open File Buka File @@ -698,88 +698,88 @@ Ini akan mem-banned nama pengguna dan alamat IP mereka ConfigureCheats - - + + Cheats Cheat - + Add Cheat Tambahkan Cheat - + Available Cheats: Cheat yang tersedia: - + Name - + Type - + Save - + Delete - + Name: - + Notes: - + Code: - + Would you like to save the current cheat? Apakah Anda ingin menyimpan cheat saat ini? - - - + + + Save Cheat Simpan Cheat - + Please enter a cheat name. Silahkan isi nama Cheat - + Please enter the cheat code. Silahkan isi kode cheat - + Cheat code line %1 is not valid. Would you like to ignore the error and continue? Baris kode cheat %1 tidak valid. Apakah Anda ingin mengabaikan kesalahan dan melanjutkan? - - + + [new cheat] [cheat baru] @@ -787,127 +787,127 @@ Apakah Anda ingin mengabaikan kesalahan dan melanjutkan? ConfigureDebug - + Form Formulir - + GDB GDB - + Enable GDB Stub Aktifkan GDB Stub - + Port: Port: - + Logging Pencatatan - + Global Log Filter Saring Log Global - + Show Log Console (Windows Only) Tampilkan Log Konsol (Hanya Jendela Windows) - + Open Log Location Buka Lokasi File Log - + CPU - + Use global clock speed - + Set clock speed: - + CPU Clock Speed - + <html><body>Changes the emulated CPU clock frequency.<br>Underclocking can increase performance but may cause the game to freeze.<br>Overclocking may reduce in game lag but also might cause freezes</body></html> - + <html><head/><body><p>Enables the use of the ARM JIT compiler for emulating the 3DS CPUs. Don't disable unless for debugging purposes</p></body></html> - + Enable CPU JIT Aktifkan CPU JIT - + Enable debug renderer - + Dump command buffers - + Miscellaneus - + <html><head/><body><p>Introduces a delay to the first ever launched app thread if LLE modules are enabled, to allow them to initialize.</p></body></html> - + Delay app start for LLE module initialization - + <html><head/><body><p>CPU Clock Speed Information<br/>Underclocking can increase performance but may cause the game to freeze.<br/>Overclocking may reduce in game lag but also might cause freezes</p></body></html> - + Validation layer not available - + Unable to enable debug renderer because the layer <strong>VK_LAYER_KHRONOS_validation</strong> is missing. Please install the Vulkan SDK or the appropriate package of your distribution - + Command buffer dumping not available - + Unable to enable command buffer dumping because the layer <strong>VK_LAYER_LUNARG_api_dump</strong> is missing. Please install the Vulkan SDK or the appropriate package of your distribution @@ -915,92 +915,92 @@ Apakah Anda ingin mengabaikan kesalahan dan melanjutkan? ConfigureDialog - + Citra Configuration Konfigurasi Citra - - - + + + General Umum - - - + + + System Sistem - - + + Input Masukan - - + + Hotkeys Tombol cepat - - + + Graphics Grafis - - + + Enhancements Perbaikan - - - + + + Audio Audio - - + + Camera Kamera - - + + Debug Debug - - + + Storage Penyimpanan - - + + Web Web - - + + UI UI - + Controls Kontrol - + Advanced Lebih Maju @@ -1008,278 +1008,278 @@ Apakah Anda ingin mengabaikan kesalahan dan melanjutkan? ConfigureEnhancements - + Form - + Renderer - + Internal Resolution - + Auto (Window Size) - + Native (400x240) - + 2x Native (800x480) - + 3x Native (1200x720) - + 4x Native (1600x960) - + 5x Native (2000x1200) - + 6x Native (2400x1440) - + 7x Native (2800x1680) - + 8x Native (3200x1920) - + 9x Native (3600x2160) - + 10x Native (4000x2400) - + Enable Linear Filtering - + Post-Processing Shader - + Texture Filter - + None - + Anime4K - + Bicubic - + ScaleForce - + xBRZ - + MMPX - + Stereoscopy - + Stereoscopic 3D Mode - + Off - - + + Side by Side - + Anaglyph - + Interlaced - + Reverse Interlaced - + Depth - + % - + Eye to Render in Monoscopic Mode - + Left Eye (default) - + Right Eye - + Layout - + Screen Layout: - + Default - + Single Screen - + Large Screen - + Separate Windows - + Hybrid Screen - + Swap Screens - + Rotate Screens Upright - + Large Screen Proportion: - + Background Color: - + Utility - + <html><head/><body><p>Replace textures with PNG files.</p><p>Textures are loaded from load/textures/[Title ID]/.</p></body></html> - + Use Custom Textures - + <html><head/><body><p>Dump textures to PNG files.</p><p>Textures are dumped to dump/textures/[Title ID]/.</p></body></html> - + Dump Textures - + <html><head/><body><p>Load all custom textures into memory on boot, instead of loading them when the game requires them.</p></body></html> - + Preload Custom Textures - + <html><head/><body><p>Load custom textures asynchronously with background threads to reduce loading stutter</p></body></html> - + Async Custom Texture Loading @@ -1287,136 +1287,136 @@ Apakah Anda ingin mengabaikan kesalahan dan melanjutkan? ConfigureGeneral - + Form Formulir - + General Umum - + Confirm exit while emulation is running Konfirmasi keluar saat emulasi berjalan - + Pause emulation when in background Hentikan emulasi ketika di latar belakang - + Mute audio when in background - + Hide mouse on inactivity Sembunyikan mouse jika tidak ada aktivitas - + Enable Gamemode - + Updates Pembaruan - + Check for updates on start Periksa pembaruan ketika memulai - + Silently auto update after closing Otomatis memperbarui setelah menutup - + Emulation Emulasi - + Region: Wilayah: - + Auto-select Otomatis Pilih - + Use global emulation speed - + Set emulation speed: - + Emulation Speed: Kecepatan Emulasi: - + Screenshots - + Use global screenshot path - + Set screenshot path: - + Save Screenshots To - + ... - + Reset All Settings Setel Ulang Semua Pengaturan - - - - - + + + + + unthrottled tidak dibatasi - + Select Screenshot Directory - + Citra Citra - + Are you sure you want to <b>reset your settings</b> and close Citra? Apakah kau yankin ingin <b>menyetel ulang pengaturan</b> dan menutup Citra? @@ -1424,157 +1424,157 @@ Apakah Anda ingin mengabaikan kesalahan dan melanjutkan? ConfigureGraphics - + Form Formulir - + Graphics - + API Settings - + Graphics API API Grafis - + Software - + OpenGL - + Vulkan - + Physical Device - + OpenGL Renderer - + SPIR-V Shader Generation - + Renderer Perender - + <html><head/><body><p>Use the selected graphics API to accelerate shader emulation.</p><p>Requires a relatively powerful GPU for better performance.</p></body></html> - + Enable Hardware Shader Gunakan Hardware Shader - + <html><head/><body><p>Correctly handle all edge cases in multiplication operation in shaders. </p><p>Some games requires this to be enabled for the hardware shader to render properly.</p><p>However this would reduce performance in most games.</p></body></html> <html><head/><body><p>Menangani semua kasus tepian dalam operasi penggandaan dalam shader secara tepat.</p><p>Beberapa game membutuhkan fitur ini di aktifkan untuk merender hardware shader secara benar.</p><p>Namun fitur ini akan mengurangi performa dalam kebanyakan game.</p></body></html> - + Accurate Multiplication Penggandaan Akurat - + <html><head/><body><p>Use the JIT engine instead of the interpreter for software shader emulation. </p><p>Enable this for better performance.</p></body></html> <html><head/><body><p>Gunakan JIT Engine sebagai ganti interperter untuk emulasi shader software.</p><p>Gunakan ini untuk performa yang lebih baik.</p></body></html> - + Enable Shader JIT Aktifkan Shader JIT - + <html><head/><body><p>Compile shaders using background threads to avoid shader compilation stutter. Expect temporary graphical glitches</p></body></html> - + Enable Async Shader Compilation - + <html><head/><body><p>Perform presentation on separate threads. Improves performance when using Vulkan in most games.</p></body></html> - + Enable Async Presentation - + Advanced Lanjutan - + <html><head/><body><p>Overrides the sampling filter used by games. This can be useful in certain cases with poorly behaved games when upscaling. If unsure set this to Game Controlled</p></body></html> - + Texture Sampling - + Game Controlled - + Nearest Neighbor - + Linear - + <html><head/><body><p>Reduce stuttering by storing and loading generated shaders to disk.</p></body></html> <html><head/><body><p>Mengurangi Stuttering dengan menyimpan dan memuat Shader yang telah dibuat ke penyimpanan</p></body></html> - + Use Disk Shader Cache Gunakan Disk Shader Cache - + VSync prevents the screen from tearing, but some graphics cards have lower performance with VSync enabled. Keep it enabled if you don't notice a performance difference. VSync mencegah layar dari "robekan", tetapi beberapa kartu grafis mempunyai performa yang lebih rendah ketika VSync dinyalakan. Biarkan VSync menyala jika kamu tidak merasa adanya perbedaan pada performa. - + Enable VSync Aktifkan VSync @@ -1582,63 +1582,63 @@ Apakah Anda ingin mengabaikan kesalahan dan melanjutkan? ConfigureHotkeys - + Hotkey Settings Pengaturan Tombol Cepat - + Double-click on a binding to change it. Klik dua kali di sebuah ikatan untuk menggantinya - + Clear All - + Restore Defaults - + Action Aksi - + Hotkey Tombol Cepat - - + + Conflicting Key Sequence Urutan Tombol Berkonflik - + The entered key sequence is already assigned to: %1 - + A 3ds button - + Restore Default - + Clear - + The default key sequence is already assigned to: %1 @@ -1646,307 +1646,307 @@ Apakah Anda ingin mengabaikan kesalahan dan melanjutkan? ConfigureInput - + ConfigureInput KonfigurasiInput - + Profile Profil - + New Baru - + Delete Hapus - + Rename Ganti Nama - + Face Buttons Tombol Face Buttons - + Y: Y: - + X: X: - + B: B: - + A: A: - + Directional Pad Tombol Arah - - - + + + Up: Atas: - - - + + + Down: Bawah: - - - + + + Left: Kiri: - - - + + + Right: Kanan: - + Misc. Misc. - + Start: Mulai: - + Select: Pilih: - + Home: Home: - + Power: - + Circle Mod: Tombol Circle Mod: - + GPIO14: GPIO14: - + Debug: Debug: - + Circle Pad Tombol Circle Pad - - - + + + Set Analog Stick Tentukan Analog Stick - - + + Deadzone: 0 Deadzone : 0 - + C-Stick C-Stick - + Shoulder Buttons Tombol Shoulder Buttons - + ZR: ZR: - + ZL: ZL: - + L: L: - + R: R: - + Motion / Touch... Motion/Touch... - + Auto Map Auto Map - + Clear All Bersihkan Semua - + Restore Defaults Kembalikan ke kondisi Default - - - + + + Clear Bersihkan - - - + + + [not set] [belum di tentukan] - - - + + + Restore Default Kembalikan Ke Kondisi Default - - + + Information Informasi - + After pressing OK, first move your joystick horizontally, and then vertically. Setelah menekan tombol OK, pindahkan joystick anda secara horizontal kemudian secara vertikal. - - + + Deadzone: %1% Deadzone: %1% - - + + Modifier Scale: %1% Pengubah Skala: %1% - + Warning Peringatan - + Auto mapping failed. Your controller may not have a corresponding mapping - + After pressing OK, press any button on your joystick - + [press key] [tekan tombol] - + Error! Eror! - + You're using a key that's already bound. Kau menggunakan tombol yang sudah di pakai - + New Profile Profil Baru - + Enter the name for the new profile. Masukkan nama untuk profil baru - + Delete Profile Hapus Profil - + Delete profile %1? Hapus profil %1? - + Rename Profile Ganti Nama Profil - + New name: Nama baru: - + Duplicate profile name Duplikasi nama profil - + Profile name already exists. Please choose a different name. Nama profil sudah ada. Mohon pilih nama lain. @@ -1954,198 +1954,198 @@ Apakah Anda ingin mengabaikan kesalahan dan melanjutkan? ConfigureMotionTouch - + Configure Motion / Touch Atur Motion/Touch - + Motion Gerakan - + Motion Provider: Penyedian Gerakan: - + Sensitivity: Sensitivitas: - + Controller: - - - - - + + + + + Configure Pengaturan - + Touch Sentuhan - + Touch Provider: Penyedia Sentuhan: - + Calibration: Penyesuaian - + (100, 50) - (1800, 850) (100,50)-(1800,850) - + Use button mapping: - + CemuhookUDP Config Pengaturan CemuhookUDP - + You may use any Cemuhook compatible UDP input source to provide motion and touch input. Kamu dapat menggunakan Cemuhook apa saja yang cocok dengan sumber input UDP untuk menyediakan input motion dan touch. - + Server: Server - + Port: Port: - + Pad: Pad: - + Pad 1 Pad 1 - + Pad 2 Pad 2 - + Pad 3 Pad 3 - + Pad 4 Pad 4 - + Learn More Pelajari Lebih Banyak - - + + Test Tes - + Mouse (Right Click) Mouse (Klik Kanan) - - + + CemuhookUDP CemuhookUDP - + SDL - + Emulator Window Jendela Window Emulator - + <a href='https://citra-emu.org/wiki/using-a-controller-or-android-phone-for-motion-or-touch-input'><span style="text-decoration: underline; color:#039be5;">Learn More</span></a> <a href='https://citra-emu.org/wiki/using-a-controller-or-android-phone-for-motion-or-touch-input'><span style="text-decoration: underline; color:#039be5;">Pelajari Lebih Banyak</span></a> - + Information - + After pressing OK, press a button on the controller whose motion you want to track. - + [press button] - + Testing Pengujian - + Configuring Mengatur - + Test Successful Pengujian Berhasil - + Successfully received data from the server. Berhasil Menerima Data Dari Server. - + Test Failed Pengujian Gagal - + Could not receive valid data from the server.<br>Please verify that the server is set up correctly and the address and port are correct. Tidak bisa menerima data valid dari server <br>Tolong pastikan bahwa server telah di atur dengan benar dan alamat serta port-nya sudah benar. - + Citra Citra - + UDP Test or calibration configuration is in progress.<br>Please wait for them to finish. Pengaturan pengujian atau penyesuaian UDP sedang dalam proses.<br>Tolong tunggu sampai selesai. @@ -2153,97 +2153,97 @@ Apakah Anda ingin mengabaikan kesalahan dan melanjutkan? ConfigurePerGame - + Dialog - + Info - + Size - + Format - + Name - + Filepath - + Title ID - + Reset Game Settings - + Use global configuration (%1) - + General - + System - + Enhancements - + Graphics - + Audio - + Debug - + Cheats Cheat - + Properties - + Citra - + Are you sure you want to <b>reset your settings for this game</b>? @@ -2251,65 +2251,65 @@ Apakah Anda ingin mengabaikan kesalahan dan melanjutkan? ConfigureStorage - + Form Form - + Storage Penyimpanan - + Use Virtual SD Gunakan Kartu SD virtual - + Custom Storage - + Use Custom Storage - + NAND Directory Direktori NAND - - + + Open Buka - - + + NOTE: This does not move the contents of the previous directory to the new one. - - + + Change - + SDMC Directory - + Select NAND Directory - + Select SDMC Directory @@ -2317,1064 +2317,1064 @@ Apakah Anda ingin mengabaikan kesalahan dan melanjutkan? ConfigureSystem - + Form Formulir - + System Settings Pengaturan Sistem - + Enable New 3DS mode - + Use LLE applets (if installed) - + Username Nama User - + Birthday Ulang tahun - + January Januari - + February Februari - + March Maret - + April April - + May Mei - + June Juni - + July Juli - + August Agustus - + September September - + October Oktober - + November November - + December Desember - + Language Bahasa - + Note: this can be overridden when region setting is auto-select Catatan: ini bisa di lewati bila pengaturan region-nya otomatis di pilih - + Japanese (日本語) Jepang (日本語) - + English Inggris - + French (français) Prancis (français) - + German (Deutsch) Jerman (Deutsch) - + Italian (italiano) Itali (italiano) - + Spanish (español) Spanyol (español) - + Simplified Chinese (简体中文) Cina Yang Di Sederhanakan (简体中文) - + Korean (한국어) Korea (한국어) - + Dutch (Nederlands) Belanda (Nederlands) - + Portuguese (português) Portugis (português) - + Russian (Русский) Rusia (Русский) - + Traditional Chinese (正體中文) Cina Tradisional (正體中文) - + Sound output mode Mode output suara - + Mono Mono - + Stereo Stereo - + Surround Surround - + Country Negara - + Clock Jam - + System Clock Jam Sistem - + Fixed Time Waktu Tetap - + Startup time Waktu Mulai - + yyyy-MM-ddTHH:mm:ss yyyy-MM-ddTHH:mm:ss - + Offset time - + days - + HH:mm:ss - + Initial System Ticks - + Random - + Fixed - + Initial System Ticks Override - + Play Coins: Koin Permainan: - + Run System Setup when Home Menu is launched - + Console ID: ID Konsol: - + Regenerate Perbaharui - + 3GX Plugin Loader: - + Enable 3GX plugin loader - + Allow games to change plugin loader state - + Download System Files from Nitendo servers - + Minimal - + Old 3DS - + New 3DS - + JPN - + USA - + EUR - + AUS - + CHN - + KOR - + TWN - + Download - + System settings are available only when game is not running. Pengaturan sistem hanya tersedia ketika game sedang tidak berjalan. - + Japan Jepang - + Anguilla Anguilla - + Antigua and Barbuda Antigua dan Barbuda - + Argentina Argentina - + Aruba Aruba - + Bahamas Bahama - + Barbados Barbados - + Belize Belize - + Bolivia Bolivia - + Brazil Brazil - + British Virgin Islands Kepulauan Virginia Britania Raya - + Canada Kanada - + Cayman Islands Kepulauan Cayman - + Chile Chili - + Colombia Kolombia - + Costa Rica Kosta Rika - + Dominica Dominika - + Dominican Republic Republik Dominika - + Ecuador Ekuador - + El Salvador El Salvador - + French Guiana Guyana Perancis - + Grenada Granada - + Guadeloupe Guadelope - + Guatemala Guatemala - + Guyana Guyana - + Haiti Haiti - + Honduras Honduras - + Jamaica Jamaika - + Martinique Martinique - + Mexico Meksiko - + Montserrat Montserrat - + Netherlands Antilles Antillen Belanda - + Nicaragua Nikaragua - + Panama Panama - + Paraguay Paraguai - + Peru Peru - + Saint Kitts and Nevis Saint Kitts dan Nevis - + Saint Lucia Saint Lucia - + Saint Vincent and the Grenadines Saint Vincent dan Granadines - + Suriname Suriname - + Trinidad and Tobago Trinidad dan Tobago - + Turks and Caicos Islands Kepulauan Turks dan Caicos - + United States Amerika Serikat - + Uruguay Uruguai - + US Virgin Islands Kepulauan Virginia Amerika Serikat - + Venezuela Venezuela - + Albania Albania - + Australia Australia - + Austria Austria - + Belgium Belgia - + Bosnia and Herzegovina Bosnia dan Herzegovina - + Botswana Botswana - + Bulgaria Bulgaria - + Croatia Kroasia - + Cyprus Siprus - + Czech Republic Republik Ceko - + Denmark Denmark - + Estonia Estonia - + Finland Finlandia - + France Perancis - + Germany Jerman - + Greece Yunani - + Hungary Hungaria - + Iceland Islandia - + Ireland Irlandia - + Italy Italia - + Latvia Latvia - + Lesotho Lesotho - + Liechtenstein Liechtenstein - + Lithuania Lithuania - + Luxembourg Luksemburg - + Macedonia Makedonia - + Malta Malta - + Montenegro Montenegro - + Mozambique Mozambik - + Namibia Namibia - + Netherlands Belanda - + New Zealand Selandia Baru - + Norway Norwegia - + Poland Polandia - + Portugal Portugal - + Romania Romania - + Russia Rusia - + Serbia Serbia - + Slovakia Slowakia - + Slovenia Slovenia - + South Africa Africa Selatan - + Spain Spanyol - + Swaziland Swaziland - + Sweden Swedia - + Switzerland Swiss - + Turkey Turki - + United Kingdom Inggris - + Zambia Zambia - + Zimbabwe Zimbabwe - + Azerbaijan Azerbaijan - + Mauritania Mauritania - + Mali Mali - + Niger Niger - + Chad Chad - + Sudan Sudan - + Eritrea Eritrea - + Djibouti Djibouti - + Somalia Somalia - + Andorra Andora - + Gibraltar Gibraltar - + Guernsey Guernsey - + Isle of Man Pulau Man - + Jersey Jersey - + Monaco Monako - + Taiwan Taiwan - + South Korea Korea Selatan - + Hong Kong Hong Kong - + Macau Makau - + Indonesia Indonesia - + Singapore Singapura - + Thailand Thailand - + Philippines Filipina - + Malaysia Malaysia - + China China - + United Arab Emirates Uni Emirat Arab - + India India - + Egypt Mesir - + Oman Oman - + Qatar Qatar - + Kuwait Kuwait - + Saudi Arabia Saudi Arabia - + Syria Siria - + Bahrain Bahrain - + Jordan Yordania - + San Marino San Marino - + Vatican City Vatikan - + Bermuda Bermuda - + Download System Files from Nintendo servers - + Citra is missing keys to download system files. <br><a href='https://citra-emu.org/wiki/aes-keys/'><span style="text-decoration: underline; color:#039be5;">How to get keys?</span></a> - - + + Console ID: 0x%1 ID Konsol: 0x%1 - + This will replace your current virtual 3DS with a new one. Your current virtual 3DS will not be recoverable. This might have unexpected effects in games. This might fail, if you use an outdated config savegame. Continue? Ini akan menggantikan 3DS virtual anda saat ini dengan yang baru. 3DS virtual Anda saat ini tidak dapat dikembalikan. Hal ini mungkin akan memberikan efek tak terduga dalam game. Kemungkinan hal ini akan gagal jika Anda menggunakan pengaturan save game lama. Lanjutkan? - + Warning Peringatan - + Downloading files... - + Cancel - - + + Citra - + Downloading system files failed. - + Successfully downloaded system files. @@ -3382,90 +3382,90 @@ Apakah Anda ingin mengabaikan kesalahan dan melanjutkan? ConfigureTouchFromButton - + Configure Touchscreen Mappings - + Mapping: - + New - + Delete - + Rename - + Click the bottom area to add a point, then press a button to bind. Drag points to change position, or double-click table cells to edit values. - + Delete Point - + Button - + X X axis - + Y Y axis - + New Profile - + Enter the name for the new profile. - + Delete Profile - + Delete profile %1? - + Rename Profile - + New name: - + [press key] @@ -3473,113 +3473,113 @@ Drag points to change position, or double-click table cells to edit values. ConfigureUi - + Form Bentuk - + General Umum - + Note: Changing language will apply your configuration. Catatan: Mengubah bahasa akan diterapkan ke konfigurasimu - + Interface language: Bahasa Antarmuka: - + Theme: Tema: - + Game List Daftar Game - + Icon Size: Ukuran Ikon: - - + + None TIdak Ada - + Small (24x24) Kecil (24x24) - + Large (48x48) Besar (48x48) - + Row 1 Text: Teks Barisan 1: - - + + File Name Nama File - - + + Full Path Jejak Penuh - - + + Title Name (short) Nama Judul (pendek) - - + + Title ID ID Judul - - + + Title Name (long) Nama Judul (panjang) - + Row 2 Text: Teks Barisan 2: - + Hide Titles without Icon Sembunyikan Judul tanpa Ikon - + Single Line Mode Mode Satu Baris - + <System> <System> - + English Inggris @@ -3587,136 +3587,136 @@ Drag points to change position, or double-click table cells to edit values. ConfigureWeb - + Form Formulir - + Citra Web Service Layanan Web Citra - + By providing your username and token, you agree to allow Citra to collect additional usage data, which may include user identifying information. Dengan memberikan nama user dan token, Anda menyetujui Citra untuk mengumpulkan data penggunaan tambahan, mungkin termaksud informasi identifikasi pengguna. - - + + Verify Verifikasi - + Sign up Daftar - + Token: Token: - + Username: Nama User: - + What is my token? Apa token Saya? - + Web Service configuration can only be changed when a public room isn't being hosted. Konfigurasi Servis Web hanya bisa di ubah ketika ruangan publik sedang tidak digunakan - + Telemetry Telemetri - + Share anonymous usage data with the Citra team Bagikan data penggunaan anonim dengan tim Citra - + Learn more Pelajari lebih Banyak - + Telemetry ID: ID Telemetri: - + Regenerate Memperbarui - + Discord Presence Status Discord - + Show Current Game in your Discord Status Tampilkan Game Saat Ini ke Status Discord Anda - + <a href='https://citra-emu.org/entry/telemetry-and-why-thats-a-good-thing/'><span style="text-decoration: underline; color:#039be5;">Learn more</span></a> <a href='https://citra-emu.org/entry/telemetry-and-why-thats-a-good-thing/'><span style="text-decoration: underline; color:#039be5;">Pelajari lebih banyak</span></a> - + <a href='https://profile.citra-emu.org/'><span style="text-decoration: underline; color:#039be5;">Sign up</span></a> <a href='https://profile.citra-emu.org/'><span style="text-decoration: underline; color:#039be5;">Daftar</span></a> - + <a href='https://citra-emu.org/wiki/citra-web-service/'><span style="text-decoration: underline; color:#039be5;">What is my token?</span></a> <a href='https://citra-emu.org/wiki/citra-web-service/'><span style="text-decoration: underline; color:#039be5;">Apa token saya ?</span></a> - - + + Unspecified Tidak di spesifikasi - - + + Telemetry ID: 0x%1 ID Telemetri: 0x%1 - + Token not verified Token tidak ter-verifikasi - + Token was not verified. The change to your token has not been saved. Token tidak di verifikasi. Perubahan pada token anda belum tersimpan. - + Verifying... Mem-verifikasi... - + Verification failed Verifikasi gagal - + Verification failed. Check that you have entered your token correctly, and that your internet connection is working. Verifikasi gagal. Pastikan nama user dan token yang Anda masukkan benar dan koneksi internet Anda menyala. @@ -3724,47 +3724,47 @@ Perubahan pada token anda belum tersimpan. DirectConnect - + Direct Connect Koneksi Langsung - + Server Address - + <html><head/><body><p>Server address of the host</p></body></html> - + Port Port - + <html><head/><body><p>Port number the host is listening on</p></body></html> <html><head/><body><p>Nomor Port yang digunakan oleh host sedang di dengarkan</p></body></html> - + 24872 24872 - + Nickname Nama Panggilan - + Password Kata Sandi - + Connect Hubungkan @@ -3772,12 +3772,12 @@ Perubahan pada token anda belum tersimpan. DirectConnectWindow - + Connecting Menghubungkan - + Connect Hubungkan @@ -3785,110 +3785,110 @@ Perubahan pada token anda belum tersimpan. DumpingDialog - + Dump Video - + Output - + Format: - - - + + + Options: - - - - + + + + ... - + Path: - + Video - - + + Encoder: - - + + Bitrate: - - + + bps - + Audio - - + + Citra - + Please specify the output path. - + output formats - + video encoders - + audio encoders - + Could not find any available %1. Please check your FFmpeg installation used for compilation. - - - - + + + + %1 (%2) - + Select Video Output Path @@ -3896,417 +3896,417 @@ Please check your FFmpeg installation used for compilation. GMainWindow - + <a href='https://citra-emu.org/entry/telemetry-and-why-thats-a-good-thing/'>Anonymous data is collected</a> to help improve Citra. <br/><br/>Would you like to share your usage data with us? <a href='https://citra-emu.org/entry/telemetry-and-why-thats-a-good-thing/'>Data anonim dikumpulkan</a>untuk membantu Citra menjadi lebih baik. <br/><br/>Apakah Anda ingin membagikan penggunaan data Anda dengan kami? - + Telemetry Telemetri - + No Suitable Vulkan Devices Detected - + Vulkan initialization failed during boot.<br/>Your GPU may not support Vulkan 1.1, or you do not have the latest graphics driver. - - + + Current emulation speed. Values higher or lower than 100% indicate emulation is running faster or slower than a 3DS. Kecepatan emulasi saat ini. Nilai yang lebih tinggi atau lebih rendah dari 100% menunjukan emulasi berjalan lebih cepat atau lebih lambat dari 3DS. - - + + How many frames per second the game is currently displaying. This will vary from game to game and scene to scene. Beberapa banyak frame per detik yang ditampilkan oleh permainan saat ini. Hal ini akan bervariasi dari tiap game dan adegan per-adegan. - - + + Time taken to emulate a 3DS frame, not counting framelimiting or v-sync. For full-speed emulation this should be at most 16.67 ms. Waktu yang dibutuhkan untuk mengemulasi frame 3DS, tidak menghitung pembatasan frame atau v-sync. setidaknya emulasi yang tergolong kecepatan penuh harus berada setidaknya pada 16.67 ms. - + Clear Recent Files Bersihkan Berkas File Terbaru - + &Continue - + &Pause - + Update Available Pembaharuan Tersedia - + An update is available. Would you like to install it now? Sebuah pembaharuan tersedia. Apakah Anda ingin memasangnya sekarang? - + No Update Found Tidak Ada Pembaharuan di Temukan - + No update is found. Tidak Ada Pembaharuan Yang di Temukan. - + Citra is running a game TRANSLATORS: This string is shown to the user to explain why Citra needs to prevent the computer from sleeping - - + + Invalid ROM Format Format ROM Invalid - - + + Your ROM format is not supported.<br/>Please follow the guides to redump your <a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>game cartridges</a> or <a href='https://citra-emu.org/wiki/dumping-installed-titles/'>installed titles</a>. Format ROM Anda tidak didukung.<br/>Mohon ikuti petunjuk untuk redump<a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>kartrid permainan</a> atau <a href='https://citra-emu.org/wiki/dumping-installed-titles/'>judul terpasang</a>anda. - + ROM Corrupted ROM Mengalami Kerusakan - + Your ROM is corrupted. <br/>Please follow the guides to redump your <a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>game cartridges</a> or <a href='https://citra-emu.org/wiki/dumping-installed-titles/'>installed titles</a>. ROM anda mengalami kerusakan. <br/>Mohon ikuti petunjuk untuk redump <a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>kartrid game</a> atau <a href='https://citra-emu.org/wiki/dumping-installed-titles/'>judul terpasang</a>anda. - + ROM Encrypted ROM Dienkripsi - + Your ROM is encrypted. <br/>Please follow the guides to redump your <a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>game cartridges</a> or <a href='https://citra-emu.org/wiki/dumping-installed-titles/'>installed titles</a>. ROM anda dienkripsi. <br/>Mohon ikuti petunjuk untuk membuat ulang <a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>kartrid permainan</a> atau <a href='https://citra-emu.org/wiki/dumping-installed-titles/'>judul terpasang</a>anda. - + Unsupported ROM - + GBA Virtual Console ROMs are not supported by Citra. - + Error while loading ROM! Error saat memuat ROM! - + An unknown error occurred. Please see the log for more details. - + CIA must be installed before usage CIA harus di install terlebih dahulu sebelum bisa di gunakan - + Before using this CIA, you must install it. Do you want to install it now? Sebelum memakai CIA ini kau harus memasangnya terlebih dahulu. Apa anda ingin menginstallnya sekarang? - - + + Slot %1 - + Slot %1 - %2 %3 - + Error Opening %1 Folder Kesalahan Dalam Membuka Folder %1 - - + + Folder does not exist! Folder tidak ada! - + Dumping... - - + + Cancel Batal - - - - - - - - - + + + + + + + + + Citra Citra - + Could not dump base RomFS. Refer to the log for details. - + Error Opening %1 Kesalahan Dalam Membuka %1 - + Select Directory Pilih Direktori - + Properties - + The game properties could not be loaded. - + 3DS Executable (%1);;All Files (*.*) %1 is an identifier for the 3DS executable file extensions. - + Load File Muat File - + Load Files Muat berkas - + 3DS Installation File (*.CIA*) 3DS Installation File (*.CIA*) - + All Files (*.*) Semua File (*.*) - + %1 has been installed successfully. %1 telah terinstall. - + Unable to open File Tidak dapat membuka File - + Could not open %1 Tidak dapat membuka %1 - + Installation aborted Instalasi dibatalkan - + The installation of %1 was aborted. Please see the log for more details Instalasi %1 dibatalkan. Silahkan lihat file log untuk info lebih lanjut. - + Invalid File File yang tidak valid - + %1 is not a valid CIA %1 bukan CIA yang valid - + Encrypted File File ter-Encrypt - + %1 must be decrypted before being used with Citra. A real 3DS is required. %1 harus di dekripsi sebelum digunakan dengan Citra. 3DS asli dibutuhkan. - + Unable to find File - + Could not find %1 - + Uninstalling '%1'... - + Failed to uninstall '%1'. - + Successfully uninstalled '%1'. - + File not found File tidak ditemukan - + File "%1" not found File "%1" tidak ditemukan - + Missing Citra Account Akun Citra Tidak Ada - + You must link your Citra account to submit test cases.<br/>Go to Emulation &gt; Configure... &gt; Web to do so. Anda harus menautkan akun Citra anda untuk mengajukan skenario pengetesan.<br/>Pergi Ke Emulasi &gt; Konfigurasi... &gt; Alamat Website untuk melakukannya. - + Savestates - + Warning: Savestates are NOT a replacement for in-game saves, and are not meant to be reliable. Use at your own risk! - - - + + + Error opening amiibo data file - + A tag is already in use. - + Game is not looking for amiibos. - + Amiibo File (%1);; All Files (*.*) - + Load Amiibo Muat Amiibo - + Unable to open amiibo file "%1" for reading. - + Record Movie Rekam Video - + Movie recording cancelled. Perekaman Video Di Batalkan. - - + + Movie Saved Video Di Simpan - - + + The movie is successfully saved. Video telah berhasil di simpan. - + Invalid Screenshot Directory - + Cannot create specified screenshot directory. Screenshot path is set back to its default value. - + Could not load video dumper - + FFmpeg could not be loaded. Make sure you have a compatible version installed. To install FFmpeg to Citra, press Open and select your FFmpeg directory. @@ -4315,158 +4315,158 @@ To view a guide on how to install FFmpeg, press Help. - + Select FFmpeg Directory - + The provided FFmpeg directory is missing %1. Please make sure the correct directory was selected. - + FFmpeg has been sucessfully installed. - + Installation of FFmpeg failed. Check the log file for details. - + Could not start video dumping.<br>Refer to the log for details. - + Recording %1 - + Playing %1 / %2 - + Movie Finished - + Speed: %1% Kecepatan: %1% - + Speed: %1% / %2% Kelajuan: %1% / %2% - + Game: %1 FPS Game: %1 FPS - + Frame: %1 ms Frame: %1 ms - + VOLUME: MUTE - + VOLUME: %1% Volume percentage (e.g. 50%) - + %1 is missing. Please <a href='https://citra-emu.org/wiki/dumping-system-archives-and-the-shared-fonts-from-a-3ds-console/'>dump your system archives</a>.<br/>Continuing emulation may result in crashes and bugs. %1 tidak tersedia. Mohon <a href='https://citra-emu.org/wiki/dumping-system-archives-and-the-shared-fonts-from-a-3ds-console/'>buat arsip sistem anda</a>.<br/>Melanjutkan emulasi dapat menyebabkan kegagalan dan masalah-masalah lainnya. - + A system archive Sebuah arsip sistem - + System Archive Not Found Arsip Sistem Tidak Ditemukan - + System Archive Missing Arsip sistem tidak ada - + Save/load Error - + Fatal Error Fatal Error - + A fatal error occurred. <a href='https://community.citra-emu.org/t/how-to-upload-the-log-file/296'>Check the log</a> for details.<br/>Continuing emulation may result in crashes and bugs. - + Fatal Error encountered Galat fatal terjadi - + Continue Lanjut - + Quit Game - + OK - + Would you like to exit now? Apakah anda ingin keluar sekarang? - + The game is still running. Would you like to stop emulation? Permainan sedang berjalan. Apakah anda ingin menghentikan emulasi? - + Playback Completed Pemutaran Kembali Telah Selesai - + Movie playback completed. Pemutaran kembali video telah selesai. - + Primary Window - + Secondary Window @@ -4474,22 +4474,22 @@ To view a guide on how to install FFmpeg, press Help. GPUCommandListModel - + Command Name Nama Perintah - + Register Register - + Mask Masker - + New Value Nilai Baru @@ -4497,23 +4497,23 @@ To view a guide on how to install FFmpeg, press Help. GPUCommandListWidget - + Pica Command List Daftar Perintah Pica - - + + Start Tracing Mulai Menelusuri - + Copy All Salin Semua - + Finish Tracing Selesai Menelusuri @@ -4521,7 +4521,7 @@ To view a guide on how to install FFmpeg, press Help. GPUCommandStreamWidget - + Graphics Debugger Debugger Grafis @@ -4529,42 +4529,42 @@ To view a guide on how to install FFmpeg, press Help. GRenderWindow - + OpenGL not available! - + OpenGL shared contexts are not supported. - + Error while initializing OpenGL! - + Your GPU may not support OpenGL, or you do not have the latest graphics driver. - + Error while initializing OpenGL 4.3! - + Your GPU may not support OpenGL 4.3, or you do not have the latest graphics driver.<br><br>GL Renderer:<br>%1 - + Error while initializing OpenGL ES 3.2! - + Your GPU may not support OpenGL ES 3.2, or you do not have the latest graphics driver.<br><br>GL Renderer:<br>%1 @@ -4572,193 +4572,193 @@ To view a guide on how to install FFmpeg, press Help. GameList - - + + Compatibility - - + + Region - - + + File type - - + + Size - + Open Save Data Location Buka Lokasi Save Data - + Open Extra Data Location Buka Lokasi Data Tambahan - + Open Application Location Buka Lokasi Aplikasi - + Open Update Data Location Buka Lokasi Data Pembaruan - + Open DLC Data Location - + Open Texture Dump Location - + Open Custom Texture Location - + Open Mods Location - + Dump RomFS - + Disk Shader Cache - + Open Shader Cache Location - + Delete OpenGL Shader Cache - + Uninstall - + Everything - + Game - + Update - + DLC - + Navigate to GameDB entry Arahkan ke entri GameDB - + Properties - - - - + + + + Citra - + Are you sure you want to completely uninstall '%1'? This will delete the game if installed, as well as any installed updates or DLC. - - + + %1 (Update) - - + + %1 (DLC) - + Are you sure you want to uninstall '%1'? - + Are you sure you want to uninstall the update for '%1'? - + Are you sure you want to uninstall all DLC for '%1'? - + Scan Subfolders Pindai Subfolder - + Remove Game Directory Hapus Lokasi Permainan - + Move Up - + Move Down - + Open Directory Location Buka Lokasi Penyimpanan - + Name @@ -4766,82 +4766,82 @@ This will delete the game if installed, as well as any installed updates or DLC. GameListItemCompat - + Perfect Sempurna - + Game functions flawless with no audio or graphical glitches, all tested functionality works as intended without any workarounds needed. Fungsi Game-nya akan sempurna tanpa kerusakan audio atau gambar,Semua fungsionalitas yang telah di uji bekerja sebagaimana yang telah di tujukan tanpa ada lagi perbaikan yang di butuhkan. - + Great Hebat - + Game functions with minor graphical or audio glitches and is playable from start to finish. May require some workarounds. - Fungsi Game dengan kerusakan gambar atau audio yang kecil dan dapat di mainkan dari awal sampai selesai.Mungkin membutuhkan beberapa + Fungsi Game dengan kerusakan gambar atau audio yang kecil dan dapat di mainkan dari awal sampai selesai.Mungkin membutuhkan beberapa perbaikan. - + Okay Setuju - + Game functions with major graphical or audio glitches, but game is playable from start to finish with workarounds. - Fungsi Game dengan kerusakan gambar atau audio yang besar,tetapi game-nya dapat di mainkan dari awal sampai akhir dengan berbagai macam + Fungsi Game dengan kerusakan gambar atau audio yang besar,tetapi game-nya dapat di mainkan dari awal sampai akhir dengan berbagai macam perbaikan. - + Bad Buruk - + Game functions, but with major graphical or audio glitches. Unable to progress in specific areas due to glitches even with workarounds. - Fungsi Game,tetapi dengan kerusakan gambar atau audio yang besar.Tidak bisa berlanjut memasuki ke dalam area tertentu do karenakan kerusakannya tersebut + Fungsi Game,tetapi dengan kerusakan gambar atau audio yang besar.Tidak bisa berlanjut memasuki ke dalam area tertentu do karenakan kerusakannya tersebut bahkan dengan berbagai macam perbaikan - + Intro/Menu Intro/Menu - + Game is completely unplayable due to major graphical or audio glitches. Unable to progress past the Start Screen. - Game secara total tidak dapat di mainkan di karenakan kerusakan gambar atau audio yang besar.Tidak bisa berlanjut hingga melewati Layar + Game secara total tidak dapat di mainkan di karenakan kerusakan gambar atau audio yang besar.Tidak bisa berlanjut hingga melewati Layar Mulai. - + Won't Boot Tidak Mau Memulai - + The game crashes when attempting to startup. Game ini mengalami kegagalan ketika ingin memulai. - + Not Tested Belum Di Uji - + The game has not yet been tested. Game ini masih belum di uji. @@ -4849,7 +4849,7 @@ Mulai. GameListPlaceholder - + Double-click to add a new folder to the game list @@ -4857,27 +4857,27 @@ Mulai. GameListSearchField - + of dari - + result hasil - + results hasil - + Filter: Saringan: - + Enter pattern to filter Masukkan pola untuk menyaring @@ -4885,47 +4885,47 @@ Mulai. GameRegion - + Japan - + North America - + Europe - + Australia - + China - + Korea - + Taiwan - + Invalid region - + Region free @@ -4933,23 +4933,23 @@ Mulai. GraphicsBreakPointsWidget - + Pica Breakpoints Pica Breakpoints - - + + Emulation running Emulasi berjalan - + Resume Jalankan - + Emulation halted at breakpoint Emulasi berhenti di breakpoint @@ -4957,146 +4957,146 @@ Mulai. GraphicsSurfaceWidget - + Pica Surface Viewer Penampil Permukaan Pica - + Color Buffer Buffer Warna - + Depth Buffer Buffer Kedalaman - + Stencil Buffer Buffer Setensilan - + Texture 0 Tekstur 0 - + Texture 1 Tekstur 1 - + Texture 2 Tekstur 2 - + Custom Custom - + Unknown Tidak diketahui - + Save Simpan - + Source: Sumber: - + Physical Address: Alamat Fisik: - + Width: Lebar: - + Height: Tinggi: - + Format: Format: - + X: X: - + Y: Y: - + Pixel out of bounds Pixel keluar batas - + (unable to access pixel data) (tidak dapat mengakses data pixel) - + (invalid surface address) (alamat permukaan tidak valid) - + (unknown surface format) (format permukaan tidak diketahui) - + Portable Network Graphic (*.png) Portable Network Graphic (*.png) - + Binary data (*.bin) Binary data (*.bin) - + Save Surface Simpan Permukaan - - - - + + + + Error - - + + Failed to open file '%1' - + Failed to save surface data to file '%1' - + Failed to completely write surface data to file. The saved data will likely be corrupt. @@ -5104,42 +5104,42 @@ Mulai. GraphicsTracingWidget - + CiTrace Recorder Perekam CiTrace - + Start Recording Mulai Perekam - + Stop and Save Berhenti dan Simpan - + Abort Recording Hentikan Perekam - + Save CiTrace Simpan CiTrace - + CiTrace File (*.ctf) CiTrace File (*.ctf) - + CiTracing still active CiTracing masih aktif - + A CiTrace is still being recorded. Do you want to save it? If not, all recorded data will be discarded. CiTrace masih direkam. Apakah Anda ingin menyimpannya? Jika tidak, semua data yang terekam akan dibuang. @@ -5147,17 +5147,17 @@ Mulai. GraphicsVertexShaderModel - + Offset Offset - + Raw Raw - + Disassembly Membongkar @@ -5165,127 +5165,127 @@ Mulai. GraphicsVertexShaderWidget - + Save Shader Dump Simpan Shader Dump - + Shader Binary (*.shbin) Shader Binary (*.shbin) - + Pica Vertex Shader - + (data only available at vertex shader invocation breakpoints) (data hanya tersedia ketika vertex shader meminta breakpoints) - + Dump Dump - + Input Data Masukkan Data - + Attribute %1 Atribut %1 - + Cycle Index: Indeks Siklus: - + SRC1: %1, %2, %3, %4 SRC1: %1, %2, %3, %4 - + SRC2: %1, %2, %3, %4 SRC2: %1, %2, %3, %4 - + SRC3: %1, %2, %3, %4 SRC3: %1, %2, %3, %4 - + DEST_IN: %1, %2, %3, %4 DEST_IN: %1, %2, %3, %4 - + DEST_OUT: %1, %2, %3, %4 DEST_OUT: %1, %2, %3, %4 - + Address Registers: %1, %2 Register Alamat: %1, %2 - + Compare Result: %1, %2 Bandingkan Hasil: %1, %2 - + Static Condition: %1 Kondisi Statis: %1 - + Dynamic Conditions: %1, %2 Kondisi Dinamis: %1, %2 - + Loop Parameters: %1 (repeats), %2 (initializer), %3 (increment), %4 Parameter Pengulangan: %1 (pengulangan), %2 (penginisialisasi), %3 (tambahan), %4 - + Instruction offset: 0x%1 Instruksi offset: 0x%1 - + -> 0x%2 -> 0x%2 - + (last instruction) (instruksi terakhir) @@ -5293,67 +5293,67 @@ Mulai. HostRoom - + Create Room Buat Ruangan - + Room Name Nama Ruangan - + Preferred Game Permainan yang Disukai - + Max Players Maks Pemain - + Username Nama Pengguna - + (Leave blank for open game) (Kosongkan untuk permainan terbuka) - + Password Kata Sandi - + Port Port - + Room Description - + Load Previous Ban List Muat Daftar Ban Sebelumnya - + Public Publik - + Unlisted Tidak Terdaftar - + Host Room Host Ruangan @@ -5361,12 +5361,12 @@ Mulai. HostRoomWindow - + Error Galat - + Failed to announce the room to the public lobby. In order to host a room publicly, you must have a valid Citra account configured in Emulation -> Configure -> Web. If you do not want to publish a room in the public lobby, then select Unlisted instead. Debug Message: @@ -5375,47 +5375,47 @@ Debug Message: IPCRecorder - + IPC Recorder - + Enable Recording - + Filter: - + Leave empty to disable filtering - + # - + Status - + Service - + Function - + Clear @@ -5423,47 +5423,47 @@ Debug Message: IPCRecorderWidget - + Invalid - + Sent - + Handling - + Success - + Error - + HLE Unimplemented - + HLE - + LLE - + Unknown @@ -5471,7 +5471,7 @@ Debug Message: LLEServiceModulesWidget - + Toggle LLE Service Modules Ganti Modul Servis LLE @@ -5479,53 +5479,53 @@ Debug Message: LoadingScreen - + Loading Shaders 387 / 1628 - + Loading Shaders %v out of %m - + Estimated Time 5m 4s - + Loading... - + Preloading Textures %1 / %2 - + Preparing Shaders %1 / %2 - + Loading Shaders %1 / %2 - + Launching... - + Now Loading %1 - + Estimated Time %1 @@ -5533,83 +5533,83 @@ Debug Message: Lobby - + Public Room Browser Browser Ruangan Publik - - + + Nickname Nickname - + Filters Filter - + Search Cari - + Games I Own Permainan yang Saya Miliki - + Hide Empty Rooms - + Hide Full Rooms Sembunyikan Ruangan yang Penuh - + Refresh Lobby Segarkan Lobi - + Password Required to Join Kata Sandi Dibutuhkan untuk Bergabung - + Password: Kata Sandi: - + Room Name Nama Ruangan - + Preferred Game Preferensi Permainan - + Host Host - + Players Pemain - + Refreshing Menyegarkan - + Refresh List Segarkan Daftar @@ -5617,362 +5617,362 @@ Debug Message: MainWindow - + Citra Citra - + &File &File - + Boot Home Menu - + Recent Files File Terkini - + Amiibo Amiibo - + &Emulation &Emulasi - + Save State - + Load State - + &View &Tampilan - + Debugging Debugging - + Screen Layout Tata Letak Layar - + Multiplayer Multiplayer - + Tools - + Movie Video - + Frame Advance - + &Help Ba&ntuan - + Load File... Muat File... - + Install CIA... Pasang CIA... - + JPN - + USA - + EUR - + AUS - + CHN - + KOR - + TWN - + E&xit &Keluar - + &Pause &Jeda - + &Stop &Berhenti - + Save - + Load - + FAQ FAQ - + About Citra Tentang Citra - + Single Window Mode Mode Satu Jendela - + Save to Oldest Slot - + Load from Newest Slot - + Configure... Konfigurasi... - + Display Dock Widget Headers Tampilkan Dock Widget Headers - + Show Filter Bar Tampilkan Filter Bar - + Show Status Bar Tampilkan Status Bar - + Create Pica Surface Viewer Buat Penampil Permukaan Pica - + Record... - + Play... - + Close - + Save without Closing - + Read-Only Mode - + Enable Frame Advancing Aktifkan Pemercepat Frame - + Advance Frame Pemercepat Frame - + Capture Screenshot - + Dump Video - + Browse Public Game Lobby Jelajahi Lobi Permainan Publik - + Create Room Buat Ruangan - + Leave Room Tinggalkan Ruangan - + Direct Connect to Room Koneksi Langsung ke Ruangan - + Show Current Room Tunjukkan Ruangan Saat Ini - + Fullscreen Layar penuh - + Modify Citra Install Modifikasi Pemasangan Citra - + Opens the maintenance tool to modify your Citra installation Buka alat perbaikan untuk memodifikasi pemasangan Citra Anda - + Default Default - + Single Screen Layar Tunggal - + Large Screen Layar Besar - + Hybrid Screen - + Side by Side Bersebelahan - + Separate Windows - + Swap Screens Layar Swap - + Rotate Upright - + Check for Updates Periksa Pembaruan - + Report Compatibility Laporkan Kompatibilitas - + Restart Mulai ulang - + Load... - + Remove - + Open Citra Folder - + Configure Current Game... @@ -5980,7 +5980,7 @@ Debug Message: MicroProfileDialog - + MicroProfile Profil Mikro @@ -5988,48 +5988,48 @@ Debug Message: ModerationDialog - + Moderation - + Ban List - - + + Refreshing - + Unban - + Subject - + Type - + Forum Username - + IP Address - + Refresh @@ -6037,91 +6037,91 @@ Debug Message: MoviePlayDialog - - + + Play Movie - + File: - + ... - + Info - + Game: - + Author: - + Rerecord Count: - + Length: - + Current running game will be stopped. - + <br>Current recording will be discarded. - + Citra TAS Movie (*.ctm) - + Invalid movie file. - + Revision dismatch, playback may desync. - + Indicated length is incorrect, file may be corrupted. - - - - + + + + (unknown) - + Game used in this movie is not in game list. - + (>1 day) @@ -6129,43 +6129,43 @@ Debug Message: MovieRecordDialog - - + + Record Movie - + File: - + ... - + Author: - + Current running game will be restarted. - + <br>Current recording will be discarded. - + Recording will start once you boot a game. - + Citra TAS Movie (*.ctm) @@ -6173,43 +6173,43 @@ Debug Message: MultiplayerState - - + + Current connection status Status koneksi saat ini - - + + Not Connected. Click here to find a room! Tidak Terhubung. Klik disini untuk mencari ruangan! - - - + + + Connected Terhubung - - + + Not Connected Tidak Terhubung - + Error Error - + Failed to update the room information. Please check your Internet connection and try hosting the room again. Debug Message: - + New Messages Received @@ -6217,22 +6217,22 @@ Debug Message: NetworkMessage - + Leave Room Tinggalkan Ruangan - + You are about to close the room. Any network connections will be closed. Anda akan meninggalkan ruangan. Segala koneksi jaringan akan ditutup. - + Disconnect Putuskan - + You are about to leave the room. Any network connections will be closed. Anda akan meninggalkan ruangan. Segala koneksi jaringan akan ditutup. @@ -6240,110 +6240,110 @@ Debug Message: NetworkMessage::ErrorManager - + Username is not valid. Must be 4 to 20 alphanumeric characters. - + Room name is not valid. Must be 4 to 20 alphanumeric characters. - + Username is already in use or not valid. Please choose another. - + IP is not a valid IPv4 address. - + Port must be a number between 0 to 65535. - + You must choose a Preferred Game to host a room. If you do not have any games in your game list yet, add a game folder by clicking on the plus icon in the game list. - + Unable to find an internet connection. Check your internet settings. - + Unable to connect to the host. Verify that the connection settings are correct. If you still cannot connect, contact the room host and verify that the host is properly configured with the external port forwarded. - + Unable to connect to the room because it is already full. - + Creating a room failed. Please retry. Restarting Citra might be necessary. - + The host of the room has banned you. Speak with the host to unban you or try a different room. - + Version mismatch! Please update to the latest version of Citra. If the problem persists, contact the room host and ask them to update the server. - + Incorrect password. - + An unknown error occurred. If this error continues to occur, please open an issue - + Connection to room lost. Try to reconnect. - + You have been kicked by the room host. - + MAC address is already in use. Please choose another. - + Your Console ID conflicted with someone else's in the room. Please go to Emulation > Configure > System to regenerate your Console ID. - + You do not have enough permission to perform this action. - + The user you are trying to kick/ban could not be found. They may have left the room. - + Error @@ -6351,37 +6351,37 @@ They may have left the room. OptionSetDialog - + Options - + Unset - + unknown - + %1 &lt;%2> %3 - + Range: %1 - %2 - + custom - + %1 (0x%2) %3 @@ -6389,32 +6389,32 @@ They may have left the room. OptionsDialog - + Options - + Double click to see the description and change the values of the options. - + Specific - + Generic - + Name - + Value @@ -6422,157 +6422,157 @@ They may have left the room. QObject - + Supported image files (%1) Berkas gambar yang didukung (%1) - + Open File Buka Berkas - + Error Error - + Couldn't load the camera Tidak dapat memuat kamera - + Couldn't load %1 Tidak dapat memuat %1 - - + + Shift Shift - - + + Ctrl Ctrl - - + + Alt Alt - - - + + + [not set] [tidak diatur] - - + + Hat %1 %2 Hat %1%2 - - - - - - + + + + + + Axis %1%2 Axis %1%2 - - + + Button %1 Tombol %1 - + GC Axis %1%2 - + GC Button %1 - - - + + + [unknown] [tidak diketahui] - + [unused] [tidak terpakai] - + auto - + true - + false - - + + none - + %1 (0x%2) - + Invalid region Region Tidak Valid - + Installed Titles - + System Titles - + Add New Game Directory - + Not playing a game - + %1 is not playing a game %1 Sedang tidak bermain - + %1 is playing %2 %1 Sedang Memainkan %2 @@ -6580,7 +6580,7 @@ They may have left the room. QtKeyboard - + Software Keyboard @@ -6588,27 +6588,27 @@ They may have left the room. QtKeyboardDialog - + Text length is not correct (should be %1 characters) Panjang teks salah (harus %1 karakter) - + Text is too long (should be no more than %1 characters) Teks terlalu panjang (tidak boleh lebih dari %1 karakter) - + Blank input is not allowed Masukan kosong tidak diperbolehkan - + Empty input is not allowed Masukan kosong tidak diperbolehkan - + Validation error Validasi bermasalah @@ -6616,12 +6616,12 @@ They may have left the room. QtMiiSelectorDialog - + Mii Selector - + Standard Mii @@ -6629,95 +6629,95 @@ They may have left the room. RecordDialog - + View Record - + Client - - + + Process: - - + + Thread: - - + + Session: - + Server - + General - + Client Port: - + Service: - + Function: - + Command Buffer - + Select: - + Request Untranslated - + Request Translated - + Reply Untranslated - + Reply Translated - + OK - + null @@ -6725,37 +6725,37 @@ They may have left the room. RegistersWidget - + Registers Register - + VFP Registers Register VFP - + VFP System Registers Register VFP Sistem - + Vector Length Panjang Vektor - + Vector Stride Langkah Vector - + Rounding Mode Mode Pembulatan - + Vector Iteration Count Hitungan Perulangan Vector @@ -6763,7 +6763,7 @@ They may have left the room. SequenceDialog - + Enter a hotkey @@ -6771,7 +6771,7 @@ They may have left the room. WaitTreeEvent - + reset type = %1 tipe reset = %1 @@ -6779,12 +6779,12 @@ They may have left the room. WaitTreeMutex - + locked %1 times by thread: terkunci %1 kali oleh thread: - + free bebas @@ -6792,7 +6792,7 @@ They may have left the room. WaitTreeMutexList - + holding mutexes Menahan mutex @@ -6800,12 +6800,12 @@ They may have left the room. WaitTreeObjectList - + waiting for all objects menunggu semua objek - + waiting for one of the following objects menunggu objek ini @@ -6813,12 +6813,12 @@ They may have left the room. WaitTreeSemaphore - + available count = %1 hitungan tersedia = %1 - + max count = %1 hitungan maksimal = %1 @@ -6826,112 +6826,112 @@ They may have left the room. WaitTreeThread - + running berjalan - + ready siap - + waiting for address 0x%1 menunggu alamat 0x%1 - + sleeping sedang tidur - + waiting for IPC response menunggu respon IPC - + waiting for objects menunggu objek - + waiting for HLE return menunggu HLE return - + dormant tidak aktif - + dead mati - + PC = 0x%1 LR = 0x%2 PC = 0x%1 LR = 0x%2 - + default default - + all semua - + AppCore AppCore - + SysCore SysCore - + Unknown processor %1 Prosesor tidak diketahui %1 - + object id = %1 - + processor = %1 prosesor = %1 - + thread id = %1 id thread = %1 - + process = %1 (%2) - + priority = %1(current) / %2(normal) prioritas = %1(saat ini) / %2(normal) - + last running ticks = %1 tick yang terakhir berjalan = %1 - + not holding mutex tidak menahan mutex @@ -6939,7 +6939,7 @@ They may have left the room. WaitTreeThreadList - + waited by thread ditunggu oleh thread @@ -6947,17 +6947,17 @@ They may have left the room. WaitTreeTimer - + reset type = %1 tipe reset = %1 - + initial delay = %1 awal delay = %1 - + interval delay = %1 delay interval = %1 @@ -6965,27 +6965,27 @@ They may have left the room. WaitTreeWaitObject - + [%1]%2 %3 [%1]%2 %3 - + waited by no thread tidak ada thread yang ditunggu - + one shot satu kesempatan - + sticky sticky - + pulse pulsa @@ -6993,7 +6993,7 @@ They may have left the room. WaitTreeWidget - + Wait Tree Tunggu Tree diff --git a/dist/languages/it.ts b/dist/languages/it.ts index 2d7b83171..c85467f0a 100644 --- a/dist/languages/it.ts +++ b/dist/languages/it.ts @@ -2,17 +2,17 @@ ARMRegisters - + ARM Registers Registri ARM - + Register Registro - + Value Valore @@ -20,27 +20,27 @@ AboutDialog - + About Citra Informazioni su Citra - - <html><head/><body><p><img src=":/icons/citra.png"/></p></body></html> - <html><head/><body><p><img src=":/icons/citra.png"/></p></body></html> + + <html><head/><body><p><img src=":/icons/lime.png"/></p></body></html> + <html><head/><body><p><img src=":/icons/lime.png"/></p></body></html> - + <html><head/><body><p><span style=" font-size:28pt;">Citra</span></p></body></html> <html><head/><body><p><span style=" font-size:28pt;">Citra</span></p></body></html> - + <html><head/><body><p>%1 | %2-%3 (%4)</p></body></html> <html><head/><body><p>%1 | %2-%3 (%4)</p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -57,12 +57,12 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">Questo software non dovrebbe essere usato per avviare videogiochi ottenuti illegalmente.</span></p></body></html> - + <html><head/><body><p><a href="https://citra-emu.org/"><span style=" text-decoration: underline; color:#039be5;">Website</span></a> | <a href="https://community.citra-emu.org/"><span style=" text-decoration: underline; color:#039be5;">Forum</span></a> | <a href="https://github.com/citra-emu"><span style=" text-decoration: underline; color:#039be5;">Source Code</span></a> | <a href="https://github.com/citra-emu/citra/graphs/contributors"><span style=" text-decoration: underline; color:#039be5;">Contributors</span></a> | <a href="https://github.com/citra-emu/citra/blob/master/license.txt"><span style=" text-decoration: underline; color:#039be5;">License</span></a></p></body></html> <html><head/><body><p><a href="https://citra-emu.org/"><span style=" text-decoration: underline; color:#039be5;">Sito web</span></a> | <a href="https://community.citra-emu.org/"><span style=" text-decoration: underline; color:#039be5;">Forum</span></a> | <a href="https://github.com/citra-emu"><span style=" text-decoration: underline; color:#039be5;">Codice sorgente</span></a> | <a href="https://github.com/citra-emu/citra/graphs/contributors"><span style=" text-decoration: underline; color:#039be5;">Contributori</span></a> | <a href="https://github.com/citra-emu/citra/blob/master/license.txt"><span style=" text-decoration: underline; color:#039be5;">Licenza</span></a></p></body></html> - + <html><head/><body><p><span style=" font-size:7pt;">&quot;3DS&quot; is a trademark of Nintendo. Citra is not affiliated with Nintendo in any way.</span></p></body></html> <html><head/><body><p><span style=" font-size:7pt;">&quot;3DS&quot; è un marchio registrato di Nintendo. Citra non è affiliato in alcun modo a Nintendo.</span></p></body></html> @@ -70,47 +70,47 @@ p, li { white-space: pre-wrap; } BreakPointModel - + Pica command loaded Comando Pica caricato - + Pica command processed Comando Pica eseguito - + Incoming primitive batch Batch primitivo in arrivo - + Finished primitive batch Batch primitivo terminato - + Vertex shader invocation Invocazione vertex shader - + Incoming display transfer Trasferimento display in arrivo - + GSP command processed Comando GSP eseguito - + Buffers swapped Buffer scambiati - + Unknown debug context event Evento del contesto di debug sconosciuto @@ -118,32 +118,32 @@ p, li { white-space: pre-wrap; } CalibrationConfigurationDialog - + Communicating with the server... Comunicazione con il server in corso... - + Cancel Annulla - + Touch the top left corner <br>of your touchpad. Tocca l'angolo in alto a sinistra <br>del tuo touchpad. - + Now touch the bottom right corner <br>of your touchpad. Ora tocca l'angolo in basso a destra<br> del tuo touchpad. - + Configuration completed! Configurazione completata! - + OK OK @@ -151,93 +151,93 @@ p, li { white-space: pre-wrap; } ChatRoom - + Room Window Finestra della stanza - + Send Chat Message Invia messaggio in chat - + Send Message Invia messaggio - + Members Membri - + %1 has joined %1 è entrato - + %1 has left %1 è uscito - + %1 has been kicked %1 è stato espulso - + %1 has been banned %1 è stato bannato - + %1 has been unbanned %1 non è più bannato - + View Profile Visualizza profilo - - + + Block Player Blocca giocatore - + When you block a player, you will no longer receive chat messages from them.<br><br>Are you sure you would like to block %1? Quando blocchi un giocatore, non riceverai più messaggi da quel giocatore.<br><br>Sei sicuro di voler bloccare %1? - + Kick Espelli - + Ban Banna - + Kick Player Espelli giocatore - + Are you sure you would like to <b>kick</b> %1? Sei sicuro di voler <b>espellere</b> %1? - + Ban Player Banna giocatore - + Are you sure you would like to <b>kick and ban</b> %1? This would ban both their forum username and their IP address. @@ -249,22 +249,22 @@ Questo bannerà sia il suo nome utente del forum che il suo indirizzo IP. ClientRoom - + Room Window Finestra della stanza - + Room Description Descrizione della stanza - + Moderation... Moderazione... - + Leave Room Esci dalla stanza @@ -272,17 +272,17 @@ Questo bannerà sia il suo nome utente del forum che il suo indirizzo IP. ClientRoomWindow - + Connected Connesso - + Disconnected Disconnesso - + %1 (%2/%3 members) - connected %1 (%2/%3 membri) - connesso @@ -290,108 +290,108 @@ Questo bannerà sia il suo nome utente del forum che il suo indirizzo IP. CompatDB - + Report Compatibility Segnala compatibilità - - + + Report Game Compatibility Segnala la compatibilità del gioco - + <html><head/><body><p><span style=" font-size:10pt;">Should you choose to submit a test case to the </span><a href="https://citra-emu.org/game/"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">Citra Compatibility List</span></a><span style=" font-size:10pt;">, The following information will be collected and displayed on the site:</span></p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Hardware Information (CPU / GPU / Operating System)</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Which version of Citra you are running</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The connected Citra account</li></ul></body></html> <html><head/><body><p><span style=" font-size:10pt;">Se dovessi scegliere di inviare una segnalazione alla </span><a href="https://citra-emu.org/game/"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">lista di compatibilità di Citra</span></a><span style=" font-size:10pt;">, le seguenti informazioni saranno raccolte e visualizzate sul sito: </span></p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Informazioni sull'hardware (CPU / GPU / sistema operativo)</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Quale versione di Citra stai utilizzando</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">L'account di Citra connesso</li></ul></body></html> - + Perfect Perfetto - + <html><head/><body><p>Game functions flawlessly with no audio or graphical glitches.</p></body></html> <html><head/><body><p>Il gioco funziona perfettamente senza alcun glitch audio o video.</p></body></html> - + Great Ottimo - + <html><head/><body><p>Game functions with minor graphical or audio glitches and is playable from start to finish. May require some workarounds.</p></body></html> <html><head/><body><p>Il gioco presenta alcuni glitch audio o video minori ed è possibile giocare dall'inizio alla fine. Potrebbe richiedere l'utilizzo di alcuni espedienti.</p></body></html> - + Okay Okay - + <html><head/><body><p>Game functions with major graphical or audio glitches, but game is playable from start to finish with workarounds.</p></body></html> <html><head/><body><p>Il gioco presenta considerevoli glitch audio o video, ma è possibile giocare dall'inizio alla fine utilizzando degli espedienti.</p></body></html> - + Bad Scadente - + <html><head/><body><p>Game functions, but with major graphical or audio glitches. Unable to progress in specific areas due to glitches even with workarounds.</p></body></html> <html><head/><body><p>Il gioco presenta considerevoli glitch audio o video. È impossibile progredire in alcune aree a causa della presenza di glitch anche utilizzando degli espedienti.</p></body></html> - + Intro/Menu Intro/Menù - + <html><head/><body><p>Game is completely unplayable due to major graphical or audio glitches. Unable to progress past the Start Screen.</p></body></html> <html><head/><body><p>Il gioco è del tutto ingiocabile a causa di considerevoli glitch audio o video. È impossibile proseguire oltre la schermata iniziale.</p></body></html> - + Won't Boot Non si avvia - + <html><head/><body><p>The game crashes when attempting to startup.</p></body></html> <html><head/><body><p>Il gioco va in crash quando viene avviato.</p></body></html> - + <html><head/><body><p>Independent of speed or performance, how well does this game play from start to finish on this version of Citra?</p></body></html> <html><head/><body><p>Indipendentemente dalla velocità o dalle prestazioni, come ti è sembrato giocare questo gioco dall'inizio alla fine su questa versione di Citra?</p></body></html> - + Thank you for your submission! Grazie per la segnalazione! - + Submitting Invio in corso - + Communication error Errore di comunicazione - + An error occurred while sending the Testcase Si è verificato un errore durante l'invio della segnalazione - + Next Successivo @@ -399,93 +399,93 @@ Questo bannerà sia il suo nome utente del forum che il suo indirizzo IP. ConfigureAudio - + Output Output - + Emulation: Emulazione: - + HLE (fast) HLE (veloce) - + LLE (accurate) LLE (accurato) - + LLE multi-core LLE multi-core - + Output Type Tipo di output - + Output Device Dispositivo di output - + This post-processing effect adjusts audio speed to match emulation speed and helps prevent audio stutter. This however increases audio latency. Questo effetto di post-processing permette di far combaciare la velocità dell'emulazione con quella dell'audio per prevenire lo stutter. Questo però aumenta la latenza dell'audio. - + Enable audio stretching Abilita allungamento dell'audio - + Use global volume Usa il volume globale - + Set volume: Imposta il volume: - + Volume: Volume: - + 0 % 0 % - + Microphone Microfono - + Input Type Tipo di input - + Input Device Dispositivo di input - - + + Auto - + %1% Volume percentage (e.g. 50%) %1% @@ -494,203 +494,203 @@ Questo bannerà sia il suo nome utente del forum che il suo indirizzo IP. ConfigureCamera - + Form Modulo - + Camera Fotocamera - - + + Select the camera to configure Seleziona la fotocamera da configurare - + Camera to configure: Fotocamera da configurare: - + Front Frontale - + Rear Posteriore - - + + Select the camera mode (single or double) Seleziona la modalità della fotocamera (singola o doppia) - + Camera mode: Modalità della fotocamera: - + Single (2D) Singola (2D) - + Double (3D) Doppia (3D) - - + + Select the position of camera to configure Seleziona la posizione della fotocamera da configurare - + Camera position: Posizione della fotocamera: - + Left Sinistra - + Right Destra - + Configuration Configurazione - - + + Select where the image of the emulated camera comes from. It may be an image or a real camera. Seleziona la fonte dell'immagine della fotocamera emulata. Può essere un'immagine o una vera fotocamera. - + Camera Image Source: Fonte dell'immagine della fotocamera: - + Blank (blank) Vuoto (vuoto) - + Still Image (image) Immagine fissa (immagine) - + System Camera (qt) Fotocamera di sistema (qt) - + File: File: - + ... ... - - + + Select the system camera to use Seleziona la fotocamera di sistema da utilizzare - + Camera: Fotocamera: - + <Default> <Default> - - + + Select the image flip to apply Seleziona il capovolgimento dell'immagine da applicare - + Flip: Rotazione: - + None Nessuna - + Horizontal Orizzontale - + Vertical Verticale - + Reverse Inversa - + Select an image file every time before the camera is loaded Seleziona ogni volta un file di immagine prima che la fotocamera venga caricata - + Prompt before load Chiedi prima di caricare - + Preview Anteprima - + Resolution: 512*384 Risoluzione: 512*384 - + Click to preview Clicca per visualizzare l'anteprima - + Resolution: %1*%2 Risoluzione: %1*%2 - + Supported image files (%1) File di immagine supportati (%1) - + Open File Apri file @@ -698,88 +698,88 @@ Questo bannerà sia il suo nome utente del forum che il suo indirizzo IP. ConfigureCheats - - + + Cheats Trucchi - + Add Cheat Aggiungi trucco - + Available Cheats: Trucchi disponibili: - + Name Nome - + Type Tipo - + Save Salva - + Delete Elimina - + Name: Nome: - + Notes: Note: - + Code: Codice: - + Would you like to save the current cheat? Desideri salvare il trucco corrente? - - - + + + Save Cheat Salva trucco - + Please enter a cheat name. Inserisci un nome per il trucco. - + Please enter the cheat code. Inserisci il codice del trucco. - + Cheat code line %1 is not valid. Would you like to ignore the error and continue? La riga %1 del codice del trucco non è valida. Desideri ignorare l'errore e continuare? - - + + [new cheat] [nuovo trucco] @@ -787,127 +787,127 @@ Desideri ignorare l'errore e continuare? ConfigureDebug - + Form Modulo - + GDB GDB - + Enable GDB Stub Abilita stub GDB - + Port: Porta: - + Logging Logging - + Global Log Filter Filtro log globale - + Show Log Console (Windows Only) Mostra console di log (solo su Windows) - + Open Log Location Apri cartella dei log - + CPU CPU - + Use global clock speed Usa la velocità di clock globale - + Set clock speed: Imposta la velocità di clock: - + CPU Clock Speed Velocità di clock della CPU - + <html><body>Changes the emulated CPU clock frequency.<br>Underclocking can increase performance but may cause the game to freeze.<br>Overclocking may reduce in game lag but also might cause freezes</body></html> <html><body>Modifica la frequenza di clock della CPU emulata.<br>Diminuirla (underclock) può migliorare le prestazioni ma potrebbe far sì che il gioco si blocchi.<br>Aumentarla (overclock) può ridurre il lag del gioco ma potrebbe anche causare dei blocchi.</body></html> - + <html><head/><body><p>Enables the use of the ARM JIT compiler for emulating the 3DS CPUs. Don't disable unless for debugging purposes</p></body></html> <html><head/><body><p>Abilita l'uso del compilatore JIT ARM per l'emulazione delle CPU del 3DS. Non disabilitare questa opzione se non per scopi di debug.</p></body></html> - + Enable CPU JIT Abilita CPU JIT - + Enable debug renderer Abilita il renderer di debug - + Dump command buffers Salva in memoria i buffer dei comandi - + Miscellaneus - + <html><head/><body><p>Introduces a delay to the first ever launched app thread if LLE modules are enabled, to allow them to initialize.</p></body></html> - + Delay app start for LLE module initialization - + <html><head/><body><p>CPU Clock Speed Information<br/>Underclocking can increase performance but may cause the game to freeze.<br/>Overclocking may reduce in game lag but also might cause freezes</p></body></html> <html><head/><body><p>Informazioni sulla velocità di clock della CPU<br/>Diminuirla (underclock) può migliorare le prestazioni ma potrebbe far sì che il gioco si blocchi.<br/>Aumentarla (overclock) può ridurre il lag del gioco ma potrebbe anche causare dei blocchi.</p></body></html> - + Validation layer not available Il layer di validazione non è disponibile - + Unable to enable debug renderer because the layer <strong>VK_LAYER_KHRONOS_validation</strong> is missing. Please install the Vulkan SDK or the appropriate package of your distribution Impossibile abilitare il renderer di Debug perché il layer <strong>VK_LAYER_KHRONOS_validation</strong>è mancante. Reinstalla Vulkan SDK o il pacchetto appropriato alla tua distro. - + Command buffer dumping not available Il salvataggio dei comandi in buffer non è disponibile. - + Unable to enable command buffer dumping because the layer <strong>VK_LAYER_LUNARG_api_dump</strong> is missing. Please install the Vulkan SDK or the appropriate package of your distribution Impossibile abilitare il salvataggio in memoria dei comandi in buffer perché <strong>VK_LAYER_api_dump</strong> è mancante. Reinstalla Vulkan SDK o il pacchetto appropriato alla tua distro. @@ -915,92 +915,92 @@ Desideri ignorare l'errore e continuare? ConfigureDialog - + Citra Configuration Configurazione di Citra - - - + + + General Generale - - - + + + System Sistema - - + + Input Input - - + + Hotkeys Scorciatoie - - + + Graphics Grafica - - + + Enhancements Miglioramenti - - - + + + Audio Audio - - + + Camera Fotocamera - - + + Debug Debug - - + + Storage Archiviazione - - + + Web Web - - + + UI Interfaccia - + Controls Comandi - + Advanced Avanzate @@ -1008,278 +1008,278 @@ Desideri ignorare l'errore e continuare? ConfigureEnhancements - + Form Modulo - + Renderer Rendering - + Internal Resolution Risoluzione interna - + Auto (Window Size) Automatica (dimensione della finestra) - + Native (400x240) Nativa (400x240) - + 2x Native (800x480) Nativa 2x (800x480) - + 3x Native (1200x720) Nativa 3x (1200x720) - + 4x Native (1600x960) Nativa 4x (1600x960) - + 5x Native (2000x1200) Nativa 5x (2000x1200) - + 6x Native (2400x1440) Nativa 6x (2400x1440) - + 7x Native (2800x1680) Nativa 7x (2800x1680) - + 8x Native (3200x1920) Nativa 8x (3200x1920) - + 9x Native (3600x2160) Nativa 9x (3600x2160) - + 10x Native (4000x2400) Nativa 10x (4000x2400) - + Enable Linear Filtering Abilita filtraggio lineare - + Post-Processing Shader Shader di post-processing - + Texture Filter Filtro texture - + None Nessuno - + Anime4K Anime4K - + Bicubic Bicubico - + ScaleForce ScaleForce - + xBRZ xBRZ - + MMPX MMPX - + Stereoscopy Stereoscopia - + Stereoscopic 3D Mode Modalità 3D stereoscopico - + Off Disabilitato - - + + Side by Side Affiancato - + Anaglyph Anaglifo - + Interlaced Interlacciato - + Reverse Interlaced Interlacciato inverso - + Depth Profondità - + % % - + Eye to Render in Monoscopic Mode Occhio da renderizzare in modalità monoscopica - + Left Eye (default) Occhio sinistro (predefinito) - + Right Eye Occhio destro - + Layout Disposizione - + Screen Layout: Disposizione schermi: - + Default Predefinita - + Single Screen Schermo singolo - + Large Screen Schermo grande - + Separate Windows Finestre separate - + Hybrid Screen Schermo Ibrido - + Swap Screens Scambia schermi - + Rotate Screens Upright Ruota schermi in verticale - + Large Screen Proportion: Proporzione dello schermo grande: - + Background Color: Colore dello sfondo: - + Utility Utilità - + <html><head/><body><p>Replace textures with PNG files.</p><p>Textures are loaded from load/textures/[Title ID]/.</p></body></html> <html><head/><body><p>Sostituisci le texture con file PNG.</p><p>Le texture verranno caricate dalla cartella load/textures/[ID titolo]/.</p></body></html> - + Use Custom Textures Usa texture personalizzate - + <html><head/><body><p>Dump textures to PNG files.</p><p>Textures are dumped to dump/textures/[Title ID]/.</p></body></html> <html><head/><body><p>Estrai le texture su file PNG.</p><p>Le texture verranno estratte nella cartella dump/textures/[ID titolo]/.</p></body></html> - + Dump Textures Estrai texture - + <html><head/><body><p>Load all custom textures into memory on boot, instead of loading them when the game requires them.</p></body></html> <html><head/><body><p>Carica tutte le texture personalizzate in memoria all'avvio, invece di caricarle quando il gioco le richiede.</p></body></html> - + Preload Custom Textures Precarica texture personalizzate - + <html><head/><body><p>Load custom textures asynchronously with background threads to reduce loading stutter</p></body></html> <html><head/><body><p>Carica le texture personalizzate in modo asincrono tramite dei thread in background per ridurre lo stutter durante il caricamento di esse.</p></body></html> - + Async Custom Texture Loading Caricamento Asincrone Texture Personalizzate @@ -1287,136 +1287,136 @@ Desideri ignorare l'errore e continuare? ConfigureGeneral - + Form Modulo - + General Generale - + Confirm exit while emulation is running Conferma uscita con emulazione in corso - + Pause emulation when in background Metti in pausa l'emulazione quando la finestra è in background - + Mute audio when in background - + Hide mouse on inactivity Nascondi il puntatore quando inattivo - + Enable Gamemode - + Updates Aggiornamenti - + Check for updates on start Controlla aggiornamenti all'avvio - + Silently auto update after closing Aggiorna automaticamente dopo la chiusura - + Emulation Emulazione - + Region: Regione: - + Auto-select Selezione automatica - + Use global emulation speed Usa la velocità di emulazione globale - + Set emulation speed: Imposta la velocità di emulazione: - + Emulation Speed: Velocità di emulazione: - + Screenshots Screenshot - + Use global screenshot path Usa il percorso degli screenshot globale - + Set screenshot path: Imposta il percorso degli screenshot: - + Save Screenshots To Salva gli screenshot in - + ... ... - + Reset All Settings Ripristina tutte le impostazioni - - - - - + + + + + unthrottled illimitata - + Select Screenshot Directory Seleziona la cartella degli screenshot - + Citra Citra - + Are you sure you want to <b>reset your settings</b> and close Citra? Sei sicuro di voler <b>ripristinare le impostazioni</b> ai valori predefiniti e chiudere Citra? @@ -1424,157 +1424,157 @@ Desideri ignorare l'errore e continuare? ConfigureGraphics - + Form Modulo - + Graphics Grafica - + API Settings Impostazioni API - + Graphics API API grafica - + Software Software - + OpenGL OpenGL - + Vulkan Vulkan - + Physical Device Dispositivo fisico - + OpenGL Renderer - + SPIR-V Shader Generation Generazione Shader SPIR-V - + Renderer Renderer - + <html><head/><body><p>Use the selected graphics API to accelerate shader emulation.</p><p>Requires a relatively powerful GPU for better performance.</p></body></html> <html><head/><body><p>Usa l'API grafica selezionata per accelerare l'emulazione degli shader.</p><p>Richiede una gpu discreta o abbastanza potente per notare miglioramenti nelle performance.</p></body></html> - + Enable Hardware Shader Abilita shader hardware - + <html><head/><body><p>Correctly handle all edge cases in multiplication operation in shaders. </p><p>Some games requires this to be enabled for the hardware shader to render properly.</p><p>However this would reduce performance in most games.</p></body></html> <html><head/><body><p>Gestisci tutti i casi limite nelle operazioni di moltiplicazione degli shader.</p><p> Alcuni giochi richiedono l'attivazione di questa opzione affinché gli shader hardware vengano visualizzati nel modo corretto.</p><p>Tuttavia, l'opzione riduce le prestazioni in gran parte dei giochi.</p></body></html> - + Accurate Multiplication Moltiplicazione accurata - + <html><head/><body><p>Use the JIT engine instead of the interpreter for software shader emulation. </p><p>Enable this for better performance.</p></body></html> <html><head/><body><p>Utilizza il motore JIT invece dell'interprete per l'emulazione software degli shader.</p><p>Abilita questa opzione per prestazioni migliori.</p></body></html> - + Enable Shader JIT Abilita shader JIT - + <html><head/><body><p>Compile shaders using background threads to avoid shader compilation stutter. Expect temporary graphical glitches</p></body></html> <html><head/><body><p>Compila gli shader usando threads in background per risolvere gli stutter derivati dalla compilazione. Potrebbero comparire dei glitch grafici temporanei.</p></body></html> - + Enable Async Shader Compilation Abilita Compilazione Shader Asincrone - + <html><head/><body><p>Perform presentation on separate threads. Improves performance when using Vulkan in most games.</p></body></html> <html><head/><body><p>Esegue la presentazione Vulkan in thread separati. Migliora le performance in molti giochi.</p></body></html> - + Enable Async Presentation Abilita Presentazione Asincrone - + Advanced Avanzate - + <html><head/><body><p>Overrides the sampling filter used by games. This can be useful in certain cases with poorly behaved games when upscaling. If unsure set this to Game Controlled</p></body></html> - + Texture Sampling - + Game Controlled - + Nearest Neighbor - + Linear - + <html><head/><body><p>Reduce stuttering by storing and loading generated shaders to disk.</p></body></html> <html><head/><body><p>Riduce lo stuttering salvando e caricando dal disco gli shader generati.</p></body></html> - + Use Disk Shader Cache Utilizza la cache degli shader su disco - + VSync prevents the screen from tearing, but some graphics cards have lower performance with VSync enabled. Keep it enabled if you don't notice a performance difference. Il VSync evita il tearing dello schermo, ma alcune schede video hanno prestazioni peggiori quando il VSync è abilitato. Lascialo abilitato se non noti una differenza nelle prestazioni. - + Enable VSync Abilita VSync @@ -1582,63 +1582,63 @@ Desideri ignorare l'errore e continuare? ConfigureHotkeys - + Hotkey Settings Impostazioni scorciatoie - + Double-click on a binding to change it. Fai doppio clic su una scorciatoia per cambiarla. - + Clear All Cancella tutto - + Restore Defaults Ripristina predefinite - + Action Azione - + Hotkey Scorciatoia - - + + Conflicting Key Sequence Sequenza di tasti in conflitto - + The entered key sequence is already assigned to: %1 La sequenza di tasti inserita è già assegnata a: %1 - + A 3ds button Un pulsante del 3DS - + Restore Default Ripristina predefinita - + Clear Cancella - + The default key sequence is already assigned to: %1 La sequenza di tasti predefinita è già assegnata a: %1 @@ -1646,307 +1646,307 @@ Desideri ignorare l'errore e continuare? ConfigureInput - + ConfigureInput ConfiguraInput - + Profile Profilo - + New Nuovo - + Delete Elimina - + Rename Rinomina - + Face Buttons Pulsanti frontali - + Y: Y: - + X: X: - + B: B: - + A: A: - + Directional Pad Pulsanti direzionali - - - + + + Up: Su: - - - + + + Down: Giù: - - - + + + Left: Sinistra: - - - + + + Right: Destra: - + Misc. Altro - + Start: Start: - + Select: Select: - + Home: Home: - + Power: Stato: - + Circle Mod: Mod Circolare: - + GPIO14: GPIO14: - + Debug: Debug: - + Circle Pad Pad scorrevole - - - + + + Set Analog Stick Imposta levetta analogica - - + + Deadzone: 0 Zona morta: 0 - + C-Stick Levetta C - + Shoulder Buttons Pulsanti dorsali - + ZR: ZR: - + ZL: ZL: - + L: L: - + R: R: - + Motion / Touch... Movimento / Tocco... - + Auto Map Mappa automaticamente - + Clear All Rimuovi tutto - + Restore Defaults Ripristina predefiniti - - - + + + Clear Rimuovi - - - + + + [not set] [non impostato] - - - + + + Restore Default Ripristina valore predefinito - - + + Information Informazioni - + After pressing OK, first move your joystick horizontally, and then vertically. Dopo aver premuto OK, muovi il tuo joystick prima orizzontalmente, e poi verticalmente. - - + + Deadzone: %1% Zona morta: %1% - - + + Modifier Scale: %1% Scala del Modificatore: %1% - + Warning Attenzione - + Auto mapping failed. Your controller may not have a corresponding mapping Mappatura automatica fallita. Il tuo controller potrebbe non avere una mappatura corrispondente - + After pressing OK, press any button on your joystick Dopo aver premuto OK, premi un pulsante qualsiasi sul tuo joystick - + [press key] [premi tasto] - + Error! Errore! - + You're using a key that's already bound. Stai usando un tasto che è già in uso. - + New Profile Nuovo profilo - + Enter the name for the new profile. Inserisci il nome per il nuovo profilo. - + Delete Profile Elimina profilo - + Delete profile %1? Eliminare il profilo %1? - + Rename Profile Rinomina profilo - + New name: Nuovo nome: - + Duplicate profile name Nome del profilo duplicato - + Profile name already exists. Please choose a different name. Il nome del profilo esiste già. Scegli un nome diverso. @@ -1954,198 +1954,198 @@ Desideri ignorare l'errore e continuare? ConfigureMotionTouch - + Configure Motion / Touch Configura movimento / tocco - + Motion Movimento - + Motion Provider: Provider di movimento: - + Sensitivity: Sensibilità: - + Controller: Controller: - - - - - + + + + + Configure Configura - + Touch Tocco - + Touch Provider: Provider del tocco: - + Calibration: Calibrazione: - + (100, 50) - (1800, 850) (100, 50) - (1800, 850) - + Use button mapping: Utilizza la mappatura dei pulsanti: - + CemuhookUDP Config Configurazione CemuhookUDP - + You may use any Cemuhook compatible UDP input source to provide motion and touch input. Puoi utilizzare qualsiasi input UDP compatibile con Cemuhook per fornire input di movimento e di tocco. - + Server: Server: - + Port: Porta: - + Pad: Pad: - + Pad 1 Pad 1 - + Pad 2 Pad 2 - + Pad 3 Pad 3 - + Pad 4 Pad 4 - + Learn More Per saperne di più - - + + Test Test - + Mouse (Right Click) Mouse (tasto destro) - - + + CemuhookUDP CemuhookUDP - + SDL SDL - + Emulator Window Finestra dell'emulatore - + <a href='https://citra-emu.org/wiki/using-a-controller-or-android-phone-for-motion-or-touch-input'><span style="text-decoration: underline; color:#039be5;">Learn More</span></a> <a href='https://citra-emu.org/wiki/using-a-controller-or-android-phone-for-motion-or-touch-input'><span style="text-decoration: underline; color:#039be5;">Per saperne di più</span></a> - + Information Informazioni - + After pressing OK, press a button on the controller whose motion you want to track. Dopo aver premuto OK, premi un pulsante sul controller di cui vuoi tracciare il movimento. - + [press button] [premi pulsante] - + Testing Prova - + Configuring Configurazione - + Test Successful Test riuscito - + Successfully received data from the server. Dati ricevuti con successo dal server. - + Test Failed Test fallito - + Could not receive valid data from the server.<br>Please verify that the server is set up correctly and the address and port are correct. Impossibile ricevere informazioni valide dal server.<br>Verifica che il server sia configurato correttamente e che l'indirizzo e la porta siano corretti. - + Citra Citra - + UDP Test or calibration configuration is in progress.<br>Please wait for them to finish. Test UDP o configurazione della calibrazione in corso.<br>Si prega di attendere fino al loro termine. @@ -2153,97 +2153,97 @@ Desideri ignorare l'errore e continuare? ConfigurePerGame - + Dialog Dialogo - + Info Informazioni - + Size Dimensione - + Format Formato - + Name Nome - + Filepath Percorso file - + Title ID ID titolo - + Reset Game Settings Ripristina impostazioni del gioco - + Use global configuration (%1) Usa la configurazione globale (%1) - + General Generale - + System Sistema - + Enhancements Miglioramenti - + Graphics Grafica - + Audio Audio - + Debug Debug - + Cheats Trucchi - + Properties Proprietà - + Citra Citra - + Are you sure you want to <b>reset your settings for this game</b>? Sei sicuro di voler <b>ripristinare le impostazioni per questo gioco</b>? @@ -2251,65 +2251,65 @@ Desideri ignorare l'errore e continuare? ConfigureStorage - + Form Modulo - + Storage Archiviazione - + Use Virtual SD Usa la SD virtuale - + Custom Storage Archiviazione personalizzata - + Use Custom Storage Usa l'archiviazione personalizzata - + NAND Directory Cartella NAND - - + + Open Apri - - + + NOTE: This does not move the contents of the previous directory to the new one. NOTA: i contenuti della cartella precedente non verranno spostati in quella nuova. - - + + Change Cambia - + SDMC Directory Cartella SDMC - + Select NAND Directory Seleziona cartella NAND - + Select SDMC Directory Seleziona cartella SDMC @@ -2317,1064 +2317,1064 @@ Desideri ignorare l'errore e continuare? ConfigureSystem - + Form Modulo - + System Settings Impostazioni di sistema - + Enable New 3DS mode Abilita la modalità New 3DS - + Use LLE applets (if installed) - + Username Nome utente - + Birthday Compleanno - + January Gennaio - + February Febbraio - + March Marzo - + April Aprile - + May Maggio - + June Giugno - + July Luglio - + August Agosto - + September Settembre - + October Ottobre - + November Novembre - + December Dicembre - + Language Lingua - + Note: this can be overridden when region setting is auto-select Nota: questa impostazione può essere sovrascritta quando le impostazioni regionali sono su Selezione automatica - + Japanese (日本語) Giapponese (日本語) - + English English - + French (français) Francese (Français) - + German (Deutsch) Tedesco (Deutsch) - + Italian (italiano) Italiano (italiano) - + Spanish (español) Spagnolo (Español) - + Simplified Chinese (简体中文) Cinese semplificato (简体中文) - + Korean (한국어) Coreano (한국어) - + Dutch (Nederlands) Olandese (Nederlands) - + Portuguese (português) Portoghese (Português) - + Russian (Русский) Russo (Русский) - + Traditional Chinese (正體中文) Cinese tradizionale (正體中文) - + Sound output mode Modalità di output del suono - + Mono Mono - + Stereo Stereo - + Surround Surround - + Country Nazione - + Clock Orario - + System Clock Orario del sistema - + Fixed Time Orario fisso - + Startup time Ora di avvio - + yyyy-MM-ddTHH:mm:ss yyyy-MM-ddTHH:mm:ss - + Offset time Offset Orario - + days giorni - + HH:mm:ss HH:mm:ss - + Initial System Ticks - + Random - + Fixed - + Initial System Ticks Override - + Play Coins: Monete di gioco: - + Run System Setup when Home Menu is launched Esegui il Setup del Sistema quando l'Home Menu viene avviato. - + Console ID: ID Console: - + Regenerate Rigenera - + 3GX Plugin Loader: 3GX Plugin Loader - + Enable 3GX plugin loader Abilita 3GX - + Allow games to change plugin loader state Permette ai giochi di cambiare lo stato del plugin loader - + Download System Files from Nitendo servers Scarica i File di Sistema dai Server Nitendo - + Minimal Minimale - + Old 3DS 3DS Originale - + New 3DS New 3DS - + JPN JPN - + USA USA - + EUR EUR - + AUS AUS - + CHN CHN - + KOR KOR - + TWN TWN - + Download Download - + System settings are available only when game is not running. Le impostazioni del sistema sono disponibili solo quando non è in esecuzione nessun gioco. - + Japan Giappone - + Anguilla Anguilla - + Antigua and Barbuda Antigua e Barbuda - + Argentina Argentina - + Aruba Aruba - + Bahamas Bahamas - + Barbados Barbados - + Belize Belize - + Bolivia Bolivia - + Brazil Brasile - + British Virgin Islands Isole Vergini Britanniche - + Canada Canada - + Cayman Islands Isole Cayman - + Chile Cile - + Colombia Colombia - + Costa Rica Costa Rica - + Dominica Dominica - + Dominican Republic Repubblica Dominicana - + Ecuador Ecuador - + El Salvador El Salvador - + French Guiana Guyana Francese - + Grenada Grenada - + Guadeloupe Guadalupa - + Guatemala Guatemala - + Guyana Guyana - + Haiti Haiti - + Honduras Honduras - + Jamaica Giamaica - + Martinique Martinica - + Mexico Messico - + Montserrat Montserrat - + Netherlands Antilles Antille Olandesi - + Nicaragua Nicaragua - + Panama Panama - + Paraguay Paraguay - + Peru Perù - + Saint Kitts and Nevis Saint Kitts e Nevis - + Saint Lucia Santa Lucia - + Saint Vincent and the Grenadines Saint Vincent e Grenadines - + Suriname Suriname - + Trinidad and Tobago Trinidad e Tobago - + Turks and Caicos Islands Isole Turks e Caicos - + United States Stati Uniti - + Uruguay Uruguay - + US Virgin Islands Isole Vergini Americane - + Venezuela Venezuela - + Albania Albania - + Australia Australia - + Austria Austria - + Belgium Belgio - + Bosnia and Herzegovina Bosnia ed Erzegovina - + Botswana Botswana - + Bulgaria Bulgaria - + Croatia Croazia - + Cyprus Cipro - + Czech Republic Repubblica Ceca - + Denmark Danimarca - + Estonia Estonia - + Finland Finlandia - + France Francia - + Germany Germania - + Greece Grecia - + Hungary Ungheria - + Iceland Islanda - + Ireland Irlanda - + Italy Italia - + Latvia Lettonia - + Lesotho Lesotho - + Liechtenstein Liechtenstein - + Lithuania Lituania - + Luxembourg Lussemburgo - + Macedonia Macedonia - + Malta Malta - + Montenegro Montenegro - + Mozambique Mozambico - + Namibia Namibia - + Netherlands Paesi Bassi - + New Zealand Nuova Zelanda - + Norway Norvegia - + Poland Polonia - + Portugal Portogallo - + Romania Romania - + Russia Russia - + Serbia Serbia - + Slovakia Slovacchia - + Slovenia Slovenia - + South Africa Sudafrica - + Spain Spagna - + Swaziland Swaziland - + Sweden Svezia - + Switzerland Svizzera - + Turkey Turchia - + United Kingdom Regno Unito - + Zambia Zambia - + Zimbabwe Zimbabwe - + Azerbaijan Azerbaigian - + Mauritania Mauritania - + Mali Mali - + Niger Nigeria - + Chad Ciad - + Sudan Sudan - + Eritrea Eritrea - + Djibouti Gibuti - + Somalia Somalia - + Andorra Andorra - + Gibraltar Gibilterra - + Guernsey Guernsey - + Isle of Man Isola di Man - + Jersey Jersey - + Monaco Monaco - + Taiwan Taiwan - + South Korea Corea del Sud - + Hong Kong Hong Kong - + Macau Macao - + Indonesia Indonesia - + Singapore Singapore - + Thailand Thailandia - + Philippines Filippine - + Malaysia Malesia - + China Cina - + United Arab Emirates Emirati Arabi Uniti - + India India - + Egypt Egitto - + Oman Oman - + Qatar Qatar - + Kuwait Kuwait - + Saudi Arabia Arabia Saudita - + Syria Siria - + Bahrain Bahrein - + Jordan Giordania - + San Marino San Marino - + Vatican City Città del Vaticano - + Bermuda Bermuda - + Download System Files from Nintendo servers Scarica i File di Sistema dai Server Nintendo - + Citra is missing keys to download system files. <br><a href='https://citra-emu.org/wiki/aes-keys/'><span style="text-decoration: underline; color:#039be5;">How to get keys?</span></a> CItra non ha le keys adatte per scaricare i File di Sistema.<br><a href='https://citra-emu.org/wiki/aes-keys/'><span style="text-decoration: underline; color:#039be5;">Come ottengo le mie keys?</span></a> - - + + Console ID: 0x%1 ID console: 0x%1 - + This will replace your current virtual 3DS with a new one. Your current virtual 3DS will not be recoverable. This might have unexpected effects in games. This might fail, if you use an outdated config savegame. Continue? Questo rimpiazzerà il tuo 3DS virtuale corrente con uno nuovo. Il tuo 3DS virtuale corrente non sarà ripristinabile. Questo potrebbe causare degli effetti inaspettati sui giochi. Potrebbe inoltre fallire, se usi una configurazione di salvataggio datata. Desideri continuare? - + Warning Attenzione - + Downloading files... Scaricando i files... - + Cancel Annulla - - + + Citra Citra - + Downloading system files failed. Download dei File di Sistema fallito. - + Successfully downloaded system files. File di Sistema scaricati con successo. @@ -3382,91 +3382,91 @@ Desideri ignorare l'errore e continuare? ConfigureTouchFromButton - + Configure Touchscreen Mappings Configura le mappature del touchscreen - + Mapping: Mappatura: - + New Nuovo - + Delete Elimina - + Rename Rinomina - + Click the bottom area to add a point, then press a button to bind. Drag points to change position, or double-click table cells to edit values. Clicca l'area in basso per aggiungere un punto, poi premi un pulsante da assegnare. Trascina i punti per cambiarne la posizione, o fai doppio clic sulla tabella per modificare i valori. - + Delete Point Elimina punto - + Button Pulsante - + X X axis X - + Y Y axis Y - + New Profile Nuovo profilo - + Enter the name for the new profile. Inserisci il nome del nuovo profilo. - + Delete Profile Elimina profilo - + Delete profile %1? Vuoi eliminare il profilo %1? - + Rename Profile Rinomina profilo - + New name: Nuovo nome: - + [press key] [premi un tasto] @@ -3474,113 +3474,113 @@ Trascina i punti per cambiarne la posizione, o fai doppio clic sulla tabella per ConfigureUi - + Form Modulo - + General Generale - + Note: Changing language will apply your configuration. Nota: Cambiare lingua applicherà i cambiamenti fatti alla configurazione. - + Interface language: Lingua dell'interfaccia: - + Theme: Tema: - + Game List Lista dei giochi - + Icon Size: Dimensione dell'icona: - - + + None Nessuna - + Small (24x24) Piccola (24x24) - + Large (48x48) Grande (48x48) - + Row 1 Text: Testo riga 1: - - + + File Name Nome del file - - + + Full Path Percorso completo del file - - + + Title Name (short) Nome del titolo (corto) - - + + Title ID ID titolo - - + + Title Name (long) Nome del titolo (lungo) - + Row 2 Text: Testo riga 2: - + Hide Titles without Icon Nascondi giochi senza icona - + Single Line Mode Modalità riga singola - + <System> <System> - + English Inglese @@ -3588,135 +3588,135 @@ Trascina i punti per cambiarne la posizione, o fai doppio clic sulla tabella per ConfigureWeb - + Form Modulo - + Citra Web Service Servizio web di Citra - + By providing your username and token, you agree to allow Citra to collect additional usage data, which may include user identifying information. Fornendo i tuoi nome utente e token, permetti a Citra di raccogliere dati di utilizzo aggiuntivi, che potrebbero contenere informazioni identificative dell'utente. - - + + Verify Verifica - + Sign up Registrati - + Token: Token: - + Username: Nome utente - + What is my token? Qual è il mio token? - + Web Service configuration can only be changed when a public room isn't being hosted. La configurazione del servizio web può essere cambiata solo quando non si sta ospitando una stanza pubblica. - + Telemetry Telemetria - + Share anonymous usage data with the Citra team Condividi dati anonimi sull'utilizzo con il team di Citra - + Learn more Per saperne di più - + Telemetry ID: ID telemetria: - + Regenerate Rigenera - + Discord Presence Discord Presence - + Show Current Game in your Discord Status Mostra il gioco attuale nel tuo stato di Discord - + <a href='https://citra-emu.org/entry/telemetry-and-why-thats-a-good-thing/'><span style="text-decoration: underline; color:#039be5;">Learn more</span></a> <a href='https://citra-emu.org/entry/telemetry-and-why-thats-a-good-thing/'><span style="text-decoration: underline; color:#039be5;">Per saperne di più</span></a> - + <a href='https://profile.citra-emu.org/'><span style="text-decoration: underline; color:#039be5;">Sign up</span></a> <a href='https://profile.citra-emu.org/'><span style="text-decoration: underline; color:#039be5;">Registrati</span></a> - + <a href='https://citra-emu.org/wiki/citra-web-service/'><span style="text-decoration: underline; color:#039be5;">What is my token?</span></a> <a href='https://citra-emu.org/wiki/citra-web-service/'><span style="text-decoration: underline; color:#039be5;">Qual è il mio token?</span></a> - - + + Unspecified Non specificato - - + + Telemetry ID: 0x%1 ID telemetria: 0x%1 - + Token not verified Token non verificato - + Token was not verified. The change to your token has not been saved. Il token non è stato verificato. La modifica al token non è stata salvata. - + Verifying... Verifica... - + Verification failed Verifica fallita - + Verification failed. Check that you have entered your token correctly, and that your internet connection is working. Verifica fallita. Controlla di aver inserito il token correttamente, e che la tua connessione a internet sia funzionante. @@ -3724,47 +3724,47 @@ Trascina i punti per cambiarne la posizione, o fai doppio clic sulla tabella per DirectConnect - + Direct Connect Collegamento diretto - + Server Address Indirizzo del server - + <html><head/><body><p>Server address of the host</p></body></html> <html><head/><body><p>Indirizzo del server dell'host</p></body></html> - + Port Porta - + <html><head/><body><p>Port number the host is listening on</p></body></html> <html><head/><body><p>Numero della porta sulla quale l'host è in ascolto</p></body></html> - + 24872 24872 - + Nickname Nickname - + Password Password - + Connect Connetti @@ -3772,12 +3772,12 @@ Trascina i punti per cambiarne la posizione, o fai doppio clic sulla tabella per DirectConnectWindow - + Connecting Connessione in corso - + Connect Connetti @@ -3785,111 +3785,111 @@ Trascina i punti per cambiarne la posizione, o fai doppio clic sulla tabella per DumpingDialog - + Dump Video Estrai Video - + Output Output - + Format: Formato: - - - + + + Options: Opzioni: - - - - + + + + ... ... - + Path: Percorso File: - + Video Video - - + + Encoder: Encoder: - - + + Bitrate: Bitrate: - - + + bps bps - + Audio Audio - - + + Citra Citra - + Please specify the output path. Specifica la cartella di output. - + output formats Formati di output disponibil - + video encoders Encoder video - + audio encoders Encoder audio - + Could not find any available %1. Please check your FFmpeg installation used for compilation. Impossibile trovare %1. Verifica l'installazione di FFmpeg usata per la compilazione. - - - - + + + + %1 (%2) %1 (%2) - + Select Video Output Path Seleziona la cartella di destinazione del Video @@ -3897,418 +3897,418 @@ Verifica l'installazione di FFmpeg usata per la compilazione. GMainWindow - + <a href='https://citra-emu.org/entry/telemetry-and-why-thats-a-good-thing/'>Anonymous data is collected</a> to help improve Citra. <br/><br/>Would you like to share your usage data with us? <a href='https://citra-emu.org/entry/telemetry-and-why-thats-a-good-thing/'>Vengono raccolti dati anonimi </a> per aiutare lo sviluppo di Citra. <br/><br/>Vuoi condividere i tuoi dati di utilizzo con noi? - + Telemetry Telemetria - + No Suitable Vulkan Devices Detected Impossibile trovare un dispositivo compatibile con Vulkan. - + Vulkan initialization failed during boot.<br/>Your GPU may not support Vulkan 1.1, or you do not have the latest graphics driver. L'inizializzazione di Vulkan ha fallito durante il boot. <br/>La tua GPU potrebbe non supportare Vulkan 1.1, oppure non hai i driver più recenti. - - + + Current emulation speed. Values higher or lower than 100% indicate emulation is running faster or slower than a 3DS. Velocità di emulazione corrente. Valori più alti o più bassi di 100% indicano che l'emulazione sta funzionando più velocemente o lentamente di un 3DS. - - + + How many frames per second the game is currently displaying. This will vary from game to game and scene to scene. Il numero di fotogrammi al secondo che il gioco visualizza attualmente. Può variare in base al gioco e alla situazione. - - + + Time taken to emulate a 3DS frame, not counting framelimiting or v-sync. For full-speed emulation this should be at most 16.67 ms. Tempo necessario per emulare un fotogramma del 3DS, senza tenere conto del limite al framerate o del V-Sync. Per un'emulazione alla massima velocità, il valore non dovrebbe essere superiore a 16.67 ms. - + Clear Recent Files Elimina file recenti - + &Continue &Continua - + &Pause &Pausa - + Update Available Aggiornamento disponibile - + An update is available. Would you like to install it now? È disponibile un aggiornamento. Desideri installarlo ora? - + No Update Found Nessun aggiornamento disponibile - + No update is found. Non ci sono aggiornamenti. - + Citra is running a game TRANSLATORS: This string is shown to the user to explain why Citra needs to prevent the computer from sleeping Citra sta eseguendo un gioco. - - + + Invalid ROM Format Formato ROM non valido - - + + Your ROM format is not supported.<br/>Please follow the guides to redump your <a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>game cartridges</a> or <a href='https://citra-emu.org/wiki/dumping-installed-titles/'>installed titles</a>. Il formato della ROM non è supportato.<br/>Segui le guide per eseguire nuovamente il dump delle tue <a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>schede di gioco</a> o dei <a href='https://citra-emu.org/wiki/dumping-installed-titles/'>titoli installati</a>. - + ROM Corrupted ROM corrotta - + Your ROM is corrupted. <br/>Please follow the guides to redump your <a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>game cartridges</a> or <a href='https://citra-emu.org/wiki/dumping-installed-titles/'>installed titles</a>. La ROM è corrotta. <br/>Segui le guide per eseguire nuovamente il dump delle tue <a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>schede di gioco</a> o dei <a href='https://citra-emu.org/wiki/dumping-installed-titles/'>titoli installati</a>. - + ROM Encrypted ROM criptata - + Your ROM is encrypted. <br/>Please follow the guides to redump your <a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>game cartridges</a> or <a href='https://citra-emu.org/wiki/dumping-installed-titles/'>installed titles</a>. La ROM è criptata.<br/>Segui le guide per eseguire nuovamente il dump delle tue <a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>schede di gioco</a> o dei <a href='https://citra-emu.org/wiki/dumping-installed-titles/'>titoli installati</a>. - + Unsupported ROM ROM non supportata - + GBA Virtual Console ROMs are not supported by Citra. Le ROM GBA Virtual Console non sono supportate da Citra. - + Error while loading ROM! Errore nel caricamento della ROM! - + An unknown error occurred. Please see the log for more details. Si è verificato un errore sconosciuto. Consulta il log per maggiori dettagli. - + CIA must be installed before usage Il CIA deve essere installato prima dell'uso - + Before using this CIA, you must install it. Do you want to install it now? Devi installare questo CIA prima di poterlo usare. Desideri farlo ora? - - + + Slot %1 Slot %1 - + Slot %1 - %2 %3 Slot %1 - %2 %3 - + Error Opening %1 Folder Errore nell'apertura della cartella %1 - - + + Folder does not exist! La cartella non esiste! - + Dumping... Estrazione in corso... - - + + Cancel Annulla - - - - - - - - - + + + + + + + + + Citra Citra - + Could not dump base RomFS. Refer to the log for details. Impossibile estrarre la RomFS base. Consulta il log per i dettagli. - + Error Opening %1 Errore nell'apertura di %1 - + Select Directory Seleziona cartella - + Properties Proprietà - + The game properties could not be loaded. Non è stato possibile caricare le proprietà del gioco. - + 3DS Executable (%1);;All Files (*.*) %1 is an identifier for the 3DS executable file extensions. Eseguibile 3DS (%1);;Tutti i file (*.*) - + Load File Carica file - + Load Files Carica file - + 3DS Installation File (*.CIA*) File di installazione 3DS (*.CIA*) - + All Files (*.*) Tutti i file (*.*) - + %1 has been installed successfully. %1 è stato installato con successo. - + Unable to open File Impossibile aprire il file - + Could not open %1 Impossibile aprire %1 - + Installation aborted Installazione annullata - + The installation of %1 was aborted. Please see the log for more details L'installazione di %1 è stata annullata. Visualizza il log per maggiori dettagli. - + Invalid File File non valido - + %1 is not a valid CIA %1 non è un CIA valido - + Encrypted File File criptato - + %1 must be decrypted before being used with Citra. A real 3DS is required. %1 deve essere decriptato per poter essere usato con Citra. È necessario un 3DS fisico. - + Unable to find File Impossibile trovare il file - + Could not find %1 Impossibile trovare %1 - + Uninstalling '%1'... - + Failed to uninstall '%1'. - + Successfully uninstalled '%1'. - + File not found File non trovato - + File "%1" not found File "%1" non trovato - + Missing Citra Account Account di Citra mancante - + You must link your Citra account to submit test cases.<br/>Go to Emulation &gt; Configure... &gt; Web to do so. Devi collegare il tuo account Citra per inviare delle segnalazioni. Per farlo, vai su Emulazione &gt; Configura... &gt; Web. - + Savestates SaveStates - + Warning: Savestates are NOT a replacement for in-game saves, and are not meant to be reliable. Use at your own risk! ATTENZIONE! Salvare lo stato di un gioco in esecuzione NON È un SOSTITUTO per i salvataggi IN-GAME.\n\nUsa i savestates a tuo RISCHIO e PERICOLO. - - - + + + Error opening amiibo data file Errore durante l'apertura dell'amiibo. - + A tag is already in use. Un tag è già in uso. - + Game is not looking for amiibos. Il gioco non sta cercando un Amiibo nelle vicinanze. - + Amiibo File (%1);; All Files (*.*) File Amiibo (%1);; Tutti i file (*.*) - + Load Amiibo Carica Amiibo - + Unable to open amiibo file "%1" for reading. Impossibile leggere il file amiibo "%1". - + Record Movie Registra filmato - + Movie recording cancelled. Registrazione del filmato annullata. - - + + Movie Saved Filmato salvato - - + + The movie is successfully saved. Il filmato è stato salvato con successo. - + Invalid Screenshot Directory Cartella degli screenshot non valida - + Cannot create specified screenshot directory. Screenshot path is set back to its default value. Non è stato possibile creare la cartella degli screenshot specificata. Il percorso a tale cartella è stato ripristinato al suo valore predefinito. - + Could not load video dumper Impossibile caricare l'estrattore del video - + FFmpeg could not be loaded. Make sure you have a compatible version installed. To install FFmpeg to Citra, press Open and select your FFmpeg directory. @@ -4321,158 +4321,158 @@ Per integrare FFmpeg in Citra, clicca su Apri e seleziona la directory d'in Se non stai come installare FFmpeg, clicca su Aiuto. - + Select FFmpeg Directory Seleziona la cartella di installazione di FFmpeg. - + The provided FFmpeg directory is missing %1. Please make sure the correct directory was selected. La cartella di FFmpeg selezionata è vuota/mancante %1. Assicurati di aver selezionato la cartella esatta - + FFmpeg has been sucessfully installed. FFmpeg è stato installato con successo. - + Installation of FFmpeg failed. Check the log file for details. Installazione di FFmpeg fallita. Consulta i file di log per più dettagli. - + Could not start video dumping.<br>Refer to the log for details. Impossibile iniziare la cattura del video.<br>Consulta il log per i dettagli. - + Recording %1 Registrazione in corso (%1) - + Playing %1 / %2 Riproduzione in corso (%1 / %2) - + Movie Finished Filmato terminato - + Speed: %1% Velocità: %1% - + Speed: %1% / %2% Velocità: %1% / %2% - + Game: %1 FPS Gioco: %1 FPS - + Frame: %1 ms Frame: %1 ms - + VOLUME: MUTE - + VOLUME: %1% Volume percentage (e.g. 50%) - + %1 is missing. Please <a href='https://citra-emu.org/wiki/dumping-system-archives-and-the-shared-fonts-from-a-3ds-console/'>dump your system archives</a>.<br/>Continuing emulation may result in crashes and bugs. %1 non trovato. <a href='https://citra-emu.org/wiki/dumping-system-archives-and-the-shared-fonts-from-a-3ds-console/'>Estrai i tuoi archivi di sistema</a>.<br/>Proseguendo l'emulazione si potrebbero verificare bug e arresti anomali. - + A system archive Un archivio di sistema - + System Archive Not Found Archivio di sistema non trovato - + System Archive Missing Archivio di sistema mancante - + Save/load Error Errore di salvataggio/caricamento - + Fatal Error Errore irreversibile - + A fatal error occurred. <a href='https://community.citra-emu.org/t/how-to-upload-the-log-file/296'>Check the log</a> for details.<br/>Continuing emulation may result in crashes and bugs. Si è verificato un errore irreversibile. <a href='https://community.citra-emu.org/t/how-to-upload-the-log-file/296'>Controlla il log</a> per ulteriori dettagli.<br/>Proseguendo l'emulazione si potrebbero verificare bug e arresti anomali. - + Fatal Error encountered Errore irreversibile riscontrato - + Continue Continua - + Quit Game Esci dal gioco - + OK OK - + Would you like to exit now? Desideri uscire ora? - + The game is still running. Would you like to stop emulation? Il gioco è ancora in esecuzione. Vuoi arrestare l'emulazione? - + Playback Completed Riproduzione completata - + Movie playback completed. Riproduzione del filmato completata. - + Primary Window Finestra Primaria. - + Secondary Window Finestra Secondaria. @@ -4480,22 +4480,22 @@ Se non stai come installare FFmpeg, clicca su Aiuto. GPUCommandListModel - + Command Name Nome del Comando - + Register Registro - + Mask Mask - + New Value Nuovo Valore @@ -4503,23 +4503,23 @@ Se non stai come installare FFmpeg, clicca su Aiuto. GPUCommandListWidget - + Pica Command List Lista comandi Pica - - + + Start Tracing Avvia tracciamento - + Copy All Copia Tutto - + Finish Tracing Termina tracciamento @@ -4527,7 +4527,7 @@ Se non stai come installare FFmpeg, clicca su Aiuto. GPUCommandStreamWidget - + Graphics Debugger Debugger della grafica @@ -4535,42 +4535,42 @@ Se non stai come installare FFmpeg, clicca su Aiuto. GRenderWindow - + OpenGL not available! OpenGL non disponibile! - + OpenGL shared contexts are not supported. Gli shared context di OpenGL non sono supportati. - + Error while initializing OpenGL! Errore durante l'inizializzazione di OpenGL! - + Your GPU may not support OpenGL, or you do not have the latest graphics driver. La tua GPU potrebbe non supportare OpenGL, o non hai installato l'ultima versione dei driver video. - + Error while initializing OpenGL 4.3! Errore durante l'inizializzazione di OpenGL 4.3! - + Your GPU may not support OpenGL 4.3, or you do not have the latest graphics driver.<br><br>GL Renderer:<br>%1 La tua GPU potrebbe non supportare OpenGL 4.3, o non hai installato l'ultima versione dei driver video.<br><br>Renderer GL:<br>%1 - + Error while initializing OpenGL ES 3.2! Errore durante l'inizializzazione di OpenGL ES 3.2! - + Your GPU may not support OpenGL ES 3.2, or you do not have the latest graphics driver.<br><br>GL Renderer:<br>%1 La tua GPU potrebbe non supportare OpenGL ES 3.2, oppure non hai i driver grafici più recenti. <br><br>GL Renderer: <br>%1 @@ -4578,193 +4578,193 @@ Se non stai come installare FFmpeg, clicca su Aiuto. GameList - - + + Compatibility Compatibilità - - + + Region Regione - - + + File type Tipo di file - - + + Size Dimensione - + Open Save Data Location Apri la cartella dei dati di salvataggio - + Open Extra Data Location Apri la cartella dei dati extra - + Open Application Location Apri la cartella dell'applicazione - + Open Update Data Location Apri la cartella degli aggiornamenti - + Open DLC Data Location Apri la cartella dei dati dei DLC - + Open Texture Dump Location Apri la cartella di estrazione delle texture - + Open Custom Texture Location Apri la cartella delle texture personalizzate - + Open Mods Location Apri la cartella delle mod - + Dump RomFS Estrai la RomFS - + Disk Shader Cache Cache degli shader su disco - + Open Shader Cache Location Apri la cartella della cache degli shader - + Delete OpenGL Shader Cache Elimina la cache degli shader OpenGL - + Uninstall - + Everything - + Game - + Update - + DLC - + Navigate to GameDB entry Vai alla voce di GameDB - + Properties Proprietà - - - - + + + + Citra - + Are you sure you want to completely uninstall '%1'? This will delete the game if installed, as well as any installed updates or DLC. - - + + %1 (Update) - - + + %1 (DLC) - + Are you sure you want to uninstall '%1'? - + Are you sure you want to uninstall the update for '%1'? - + Are you sure you want to uninstall all DLC for '%1'? - + Scan Subfolders Scansiona le sottocartelle - + Remove Game Directory Rimuovi cartella dei giochi - + Move Up Sposta in alto - + Move Down Sposta in basso - + Open Directory Location Apri cartella - + Name Nome @@ -4772,82 +4772,82 @@ This will delete the game if installed, as well as any installed updates or DLC. GameListItemCompat - + Perfect Perfetto - + Game functions flawless with no audio or graphical glitches, all tested functionality works as intended without any workarounds needed. Il gioco funziona perfettamente senza alcun glitch audio o video, tutte le funzionalità testate funzionano come dovrebbero senza la necessità di utilizzare alcun espediente. - + Great Ottimo - + Game functions with minor graphical or audio glitches and is playable from start to finish. May require some workarounds. Il gioco presenta alcuni glitch audio o video minori ed è possibile giocare dall'inizio alla fine. Potrebbe richiedere l'utilizzo di alcuni espedienti. - + Okay Okay - + Game functions with major graphical or audio glitches, but game is playable from start to finish with workarounds. Il gioco presenta considerevoli glitch audio o video, ma è possibile giocare dall'inizio alla fine utilizzando degli espedienti. - + Bad Scadente - + Game functions, but with major graphical or audio glitches. Unable to progress in specific areas due to glitches even with workarounds. Il gioco presenta considerevoli glitch audio o video. È impossibile progredire in alcune aree a causa della presenza di glitch anche utilizzando degli espedienti. - + Intro/Menu Intro/Menù - + Game is completely unplayable due to major graphical or audio glitches. Unable to progress past the Start Screen. Il gioco è del tutto ingiocabile a causa di considerevoli glitch audio o video. È impossibile proseguire oltre la schermata iniziale. - + Won't Boot Non si avvia - + The game crashes when attempting to startup. Il gioco va in crash quando viene avviato. - + Not Tested Non testato - + The game has not yet been tested. Il gioco non è ancora stato testato. @@ -4855,7 +4855,7 @@ Screen. GameListPlaceholder - + Double-click to add a new folder to the game list Fai doppio clic per aggiungere una nuova cartella alla lista dei giochi @@ -4863,27 +4863,27 @@ Screen. GameListSearchField - + of di - + result risultato - + results risultati - + Filter: Filtro: - + Enter pattern to filter Inserisci pattern per filtrare @@ -4891,47 +4891,47 @@ Screen. GameRegion - + Japan Giappone - + North America Nord America - + Europe Europa - + Australia Australia - + China Cina - + Korea Corea - + Taiwan Taiwan - + Invalid region Regione non valida - + Region free Region free @@ -4939,23 +4939,23 @@ Screen. GraphicsBreakPointsWidget - + Pica Breakpoints Breakpoint Pica - - + + Emulation running Emulazione in corso - + Resume Riprendi - + Emulation halted at breakpoint Emulazione arrestata al breakpoint @@ -4963,146 +4963,146 @@ Screen. GraphicsSurfaceWidget - + Pica Surface Viewer Visualizzatore superficie Pica - + Color Buffer Buffer del colore - + Depth Buffer Buffer della profondità - + Stencil Buffer Buffer di stencil - + Texture 0 Texture 0 - + Texture 1 Texture 1 - + Texture 2 Texture 2 - + Custom Personalizzato - + Unknown Sconosciuto - + Save Salva - + Source: Fonte: - + Physical Address: Indirizzo fisico: - + Width: Larghezza: - + Height: Altezza: - + Format: Formato: - + X: X: - + Y: Y: - + Pixel out of bounds Pixel fuori dai margini - + (unable to access pixel data) (impossibile accedere ai dati dei pixel) - + (invalid surface address) (indirizzo di superficie non valido) - + (unknown surface format) (formato di superficie sconosciuto) - + Portable Network Graphic (*.png) Portable Network Graphic (*.png) - + Binary data (*.bin) Binary data (*.bin) - + Save Surface Salva Superficie - - - - + + + + Error Errore - - + + Failed to open file '%1' Impossibile aprire il file '%1' - + Failed to save surface data to file '%1' Impossibile salvare i dati della superficie sul file '%1' - + Failed to completely write surface data to file. The saved data will likely be corrupt. Impossibile scrivere completamente i dati di superficie sul file. I dati salvati saranno probabilmente corrotti. @@ -5110,42 +5110,42 @@ Screen. GraphicsTracingWidget - + CiTrace Recorder Registratore CiTrace - + Start Recording Avvia registrazione - + Stop and Save Termina e salva - + Abort Recording Termina registrazione - + Save CiTrace Salva CiTrace - + CiTrace File (*.ctf) File CiTrace (*.ctf) - + CiTracing still active CiTracing ancora attivo - + A CiTrace is still being recorded. Do you want to save it? If not, all recorded data will be discarded. Un CiTrace è ancora in registrazione. Vuoi salvarlo? Se non lo farai, tutti i dati registrati verranno cancellati. @@ -5153,17 +5153,17 @@ Screen. GraphicsVertexShaderModel - + Offset Offset - + Raw Raw - + Disassembly Disassembly @@ -5171,127 +5171,127 @@ Screen. GraphicsVertexShaderWidget - + Save Shader Dump Salva l'estrazione degli shader - + Shader Binary (*.shbin) Binario shader (*.shbin) - + Pica Vertex Shader Vertex shader Pica - + (data only available at vertex shader invocation breakpoints) (dati disponibili solo al richiamo dei vertex shader breakpoint) - + Dump Estrai - + Input Data Dati di Input - + Attribute %1 Attributo %1 - + Cycle Index: Indice Ciclo: - + SRC1: %1, %2, %3, %4 SRC1: %1, %2, %3, %4 - + SRC2: %1, %2, %3, %4 SRC2: %1, %2, %3, %4 - + SRC3: %1, %2, %3, %4 SRC3: %1, %2, %3, %4 - + DEST_IN: %1, %2, %3, %4 DEST_IN: %1, %2, %3, %4 - + DEST_OUT: %1, %2, %3, %4 DEST_OUT: %1, %2, %3, %4 - + Address Registers: %1, %2 Registri dell'indirizzo: %1, %2 - + Compare Result: %1, %2 Risultato del confronto: %1, %2 - + Static Condition: %1 Condizione statica: %1 - + Dynamic Conditions: %1, %2 Condizioni dinamiche: %1, %2 - + Loop Parameters: %1 (repeats), %2 (initializer), %3 (increment), %4 Parametri loop: %1 (ripetute), %2 (inizializzatore), %3 (incremento), %4 - + Instruction offset: 0x%1 Offset istruzione: 0x%1 - + -> 0x%2 -> 0x%2 - + (last instruction) (ultima istruzione) @@ -5299,67 +5299,67 @@ Screen. HostRoom - + Create Room Crea stanza - + Room Name Nome stanza - + Preferred Game Gioco preferito - + Max Players Numero massimo di giocatori - + Username Nome utente - + (Leave blank for open game) (Lascia vuoto per accedere liberamente) - + Password Password - + Port Porta - + Room Description Descrizione della stanza - + Load Previous Ban List Carica la lista di ban precedente - + Public Pubblica - + Unlisted Non in lista - + Host Room Ospita stanza @@ -5367,12 +5367,12 @@ Screen. HostRoomWindow - + Error Errore - + Failed to announce the room to the public lobby. In order to host a room publicly, you must have a valid Citra account configured in Emulation -> Configure -> Web. If you do not want to publish a room in the public lobby, then select Unlisted instead. Debug Message: Impossibile annunciare la stanza alla lobby pubblica. Per ospitare una stanza pubblicamente, devi avere un account Citra valido configurato in Emulazione -> Configura -> Web. Se non desideri pubblicare una stanza nella lobby pubblica, seleziona Non in lista. @@ -5382,47 +5382,47 @@ Messaggio di debug: IPCRecorder - + IPC Recorder Registratore IPC - + Enable Recording Abilita la registrazione - + Filter: Filtro: - + Leave empty to disable filtering Lascia vuoto per disabilitare il filtraggio - + # # - + Status Stato - + Service Servizio - + Function Funzione - + Clear Rimuovi @@ -5430,47 +5430,47 @@ Messaggio di debug: IPCRecorderWidget - + Invalid Non valido - + Sent Inviato - + Handling Gestione - + Success Successo - + Error Errore - + HLE Unimplemented HLE non implementato - + HLE HLE - + LLE LLE - + Unknown Sconosciuto @@ -5478,7 +5478,7 @@ Messaggio di debug: LLEServiceModulesWidget - + Toggle LLE Service Modules Abilita/disabilita moduli dei servizi LLE @@ -5486,54 +5486,54 @@ Messaggio di debug: LoadingScreen - + Loading Shaders 387 / 1628 Caricamento shader 387 / 1628 - + Loading Shaders %v out of %m Caricamento shader %v di %m - + Estimated Time 5m 4s Tempo stimato 5m 4s - + Loading... Caricamento... - + Preloading Textures %1 / %2 Precaricamento texture %1 / %2 - + Preparing Shaders %1 / %2 Preparazione shader %1 / %2 - + Loading Shaders %1 / %2 Caricamento shader %1 / %2 - + Launching... Avvio in corso... - + Now Loading %1 Caricamento %1 - + Estimated Time %1 Tempo stimato %1 @@ -5541,83 +5541,83 @@ Messaggio di debug: Lobby - + Public Room Browser Navigatore delle stanze pubbliche - - + + Nickname Nickname - + Filters Filtri - + Search Cerca - + Games I Own Giochi che possiedo - + Hide Empty Rooms Nascondi stanze vuote - + Hide Full Rooms Nascondi stanze piene - + Refresh Lobby Aggiorna lobby - + Password Required to Join Password richiesta per entrare - + Password: Password: - + Room Name Nome stanza - + Preferred Game Gioco preferito - + Host Host - + Players Giocatori - + Refreshing Aggiornamento in corso - + Refresh List Aggiorna lista @@ -5625,362 +5625,362 @@ Messaggio di debug: MainWindow - + Citra Citra - + &File &File - + Boot Home Menu Avvia il menù Home - + Recent Files File recenti - + Amiibo Amiibo - + &Emulation &Emulazione - + Save State Salva stato - + Load State Carica stato - + &View &Visualizza - + Debugging Debug - + Screen Layout Disposizione schermi - + Multiplayer Multigiocatore - + Tools Strumenti - + Movie Filmato - + Frame Advance Avanzamento fotogrammi - + &Help &Aiuto - + Load File... Carica file... - + Install CIA... Installa CIA... - + JPN JPN - + USA USA - + EUR EUR - + AUS AUS - + CHN CHN - + KOR KOR - + TWN TWN - + E&xit &Esci - + &Pause &Pausa - + &Stop Arre&sta - + Save Salva - + Load Carica - + FAQ Domande frequenti - + About Citra Informazioni su Citra - + Single Window Mode Modalità finestra singola - + Save to Oldest Slot Salva nello slot più vecchio - + Load from Newest Slot Carica dallo slot più recente - + Configure... Configura... - + Display Dock Widget Headers Visualizza le intestazioni del dock dei widget - + Show Filter Bar Mostra barra del filtro - + Show Status Bar Mostra barra di stato - + Create Pica Surface Viewer Crea visualizzatore superficie Pica - + Record... Registra... - + Play... Riproduci... - + Close Chiudi - + Save without Closing Salva senza chiudere - + Read-Only Mode Modalità in sola lettura - + Enable Frame Advancing Abilita l'avanzamento dei fotogrammi - + Advance Frame Avanza fotogramma - + Capture Screenshot Cattura uno screenshot - + Dump Video Cattura video - + Browse Public Game Lobby Sfoglia lobby di gioco pubblica - + Create Room Crea stanza - + Leave Room Esci dalla stanza - + Direct Connect to Room Collegamento diretto alla stanza - + Show Current Room Mostra stanza attuale - + Fullscreen Schermo intero - + Modify Citra Install Modifica installazione di Citra - + Opens the maintenance tool to modify your Citra installation Accedi allo strumento di manutenzione per modificare la tua installazione di Citra - + Default Predefinita - + Single Screen Schermo singolo - + Large Screen Schermo grande - + Hybrid Screen Schermo Ibrido - + Side by Side Affiancati - + Separate Windows Finestre separate - + Swap Screens Scambia schermi - + Rotate Upright Ruota in verticale - + Check for Updates Controlla aggiornamenti - + Report Compatibility Segnala compatibilità - + Restart Riavvia - + Load... Carica... - + Remove Rimuovi - + Open Citra Folder Apri la cartella di Citra - + Configure Current Game... Configura il gioco in uso... @@ -5988,7 +5988,7 @@ Messaggio di debug: MicroProfileDialog - + MicroProfile MicroProfile @@ -5996,48 +5996,48 @@ Messaggio di debug: ModerationDialog - + Moderation Moderazione - + Ban List Lista di ban - - + + Refreshing Aggiornamento in corso - + Unban Revoca ban - + Subject Soggetto - + Type Tipo - + Forum Username Nome utente del forum - + IP Address Indirizzo IP - + Refresh Aggiorna @@ -6045,91 +6045,91 @@ Messaggio di debug: MoviePlayDialog - - + + Play Movie Riproduci filmato - + File: File: - + ... ... - + Info Informazioni - + Game: Gioco: - + Author: Autore: - + Rerecord Count: Numero di ri-registrazioni: - + Length: Durata: - + Current running game will be stopped. Il gioco attualmente in esecuzione verrà arrestato. - + <br>Current recording will be discarded. <br>La registrazione in corso verrà scartata. - + Citra TAS Movie (*.ctm) Filmato TAS di Citra (*.ctm) - + Invalid movie file. File del filmato non valido. - + Revision dismatch, playback may desync. Revisione non corrispondente, la riproduzione potrebbe non essere sincronizzata. - + Indicated length is incorrect, file may be corrupted. La durata riportata non è corretta, il file potrebbe essere corrotto. - - - - + + + + (unknown) (sconosciuto) - + Game used in this movie is not in game list. Il gioco usato in questo filmato non è presente nella lista dei giochi. - + (>1 day) (>1 giorno) @@ -6137,43 +6137,43 @@ Messaggio di debug: MovieRecordDialog - - + + Record Movie Registra filmato - + File: File: - + ... ... - + Author: Autore: - + Current running game will be restarted. Il gioco attualmente in esecuzione verrà riavviato. - + <br>Current recording will be discarded. <br>La registrazione in corso verrà scartata. - + Recording will start once you boot a game. La registrazione comincerà quando avvierai un gioco. - + Citra TAS Movie (*.ctm) Filmato TAS di Citra (*.ctm) @@ -6181,44 +6181,44 @@ Messaggio di debug: MultiplayerState - - + + Current connection status Stato connessione attuale - - + + Not Connected. Click here to find a room! Non connesso. Clicca qui per trovare una stanza! - - - + + + Connected Connesso - - + + Not Connected Non connesso - + Error Errore - + Failed to update the room information. Please check your Internet connection and try hosting the room again. Debug Message: Impossibile aggiornare le informazioni della stanza. Controlla la tua connessione a Internet e prova a ospitare la stanza di nuovo. Messaggio di debug: - + New Messages Received Nuovi messaggi ricevuti @@ -6226,22 +6226,22 @@ Messaggio di debug: NetworkMessage - + Leave Room Esci dalla stanza - + You are about to close the room. Any network connections will be closed. Stai per chiudere la stanza. Ogni connessione di rete verrà chiusa. - + Disconnect Disconnetti - + You are about to leave the room. Any network connections will be closed. Stai per uscire dalla stanza. Ogni connessione di rete verrà chiusa. @@ -6249,92 +6249,92 @@ Messaggio di debug: NetworkMessage::ErrorManager - + Username is not valid. Must be 4 to 20 alphanumeric characters. Username invalido. Deve contenere almeno 4 fino a 20 caratteri alfanumerici. - + Room name is not valid. Must be 4 to 20 alphanumeric characters. Il nome della stanza è invalido. Deve contenere almeno 4 fino a 20 caratteri alfanumerici. - + Username is already in use or not valid. Please choose another. Quest'username è già in uso, oppure non è valido. Scegline un altro. - + IP is not a valid IPv4 address. Quest'indirizzo IPv4 è invalido. - + Port must be a number between 0 to 65535. Il numero massimo della porta è 65535. - + You must choose a Preferred Game to host a room. If you do not have any games in your game list yet, add a game folder by clicking on the plus icon in the game list. Devi scegliere uno dei tuoi Giochi per hostare una stanza. Se ancora non hai alcun gioco nella lista, aggiungi una cartella dei giochi cliccando sull'icona del + dalla lista dei giochi. - + Unable to find an internet connection. Check your internet settings. Impossibile trovare una connessione ad Internet. Ricontrolla le tue impostazioni di rete. - + Unable to connect to the host. Verify that the connection settings are correct. If you still cannot connect, contact the room host and verify that the host is properly configured with the external port forwarded. Impossibile connettersi all'host. Accertati che le impostazioni di connessione siano corrette. Se ancora non riesci a connetterti, contatta l'host della stanza per verificare che l'host abbia abilitato il forwarding delle porte. - + Unable to connect to the room because it is already full. La stanza è piena. - + Creating a room failed. Please retry. Restarting Citra might be necessary. Impossibile creare la stanza. Riprova o riavvia Citra. - + The host of the room has banned you. Speak with the host to unban you or try a different room. L'host della stanza ti ha bannato. Contatta l'host o connettiti ad un altra stanza. - + Version mismatch! Please update to the latest version of Citra. If the problem persists, contact the room host and ask them to update the server. La versione di Citra dell'host e del client non sono uguali. Accertati di avere l'ultima versione di Citra. Se il problema persiste, contatta l'host della stanza e comunicagli di aggiornare Citra. - + Incorrect password. Password sbagliata - + An unknown error occurred. If this error continues to occur, please open an issue Errore sconosciuto. Se il problema persiste, apri un "Issue" sul Github di Citra. - + Connection to room lost. Try to reconnect. Connessione persa. Prova a riconnetterti. - + You have been kicked by the room host. Sei stato espulso dalla stanza. - + MAC address is already in use. Please choose another. Questo MAC Address è già in uso. Scegline un altro. - + Your Console ID conflicted with someone else's in the room. Please go to Emulation > Configure > System to regenerate your Console ID. @@ -6343,19 +6343,19 @@ Please go to Emulation > Configure > System to regenerate your Console ID. Vai in Emulazione > Configura > Sistema per generarne un altro. - + You do not have enough permission to perform this action. Permessi insufficienti per svolgere quest'azione. - + The user you are trying to kick/ban could not be found. They may have left the room. L'utente che stai cercando di espellere/bannare non è stato trovato. Potrebbe aver lasciato la stanza. - + Error Errore @@ -6363,37 +6363,37 @@ Potrebbe aver lasciato la stanza. OptionSetDialog - + Options Opzioni - + Unset Non Impostato. - + unknown sconosciuto - + %1 &lt;%2> %3 %1 &lt;%2> %3 - + Range: %1 - %2 Raggio %1 - %2 - + custom personalizzato - + %1 (0x%2) %3 %1 (0x%2) %3 @@ -6401,32 +6401,32 @@ Potrebbe aver lasciato la stanza. OptionsDialog - + Options Opzioni - + Double click to see the description and change the values of the options. Fai doppio click per vedere la descrizione e cambiare il valore dell'opzione. - + Specific Specifico - + Generic Generico - + Name Nome - + Value Valore @@ -6434,157 +6434,157 @@ Potrebbe aver lasciato la stanza. QObject - + Supported image files (%1) File di immagine supportati (%1) - + Open File Apri file - + Error Errore - + Couldn't load the camera Impossibile caricare la fotocamera - + Couldn't load %1 Impossibile caricare %1 - - + + Shift Shift - - + + Ctrl Ctrl - - + + Alt Alt - - - + + + [not set] [non impostato] - - + + Hat %1 %2 Hat %1 %2 - - - - - - + + + + + + Axis %1%2 Asse %1%2 - - + + Button %1 Pulsante %1 - + GC Axis %1%2 Asse GC %1%2 - + GC Button %1 Pulsante GC %1 - - - + + + [unknown] [sconosciuto] - + [unused] [inutilizzato] - + auto Automatico - + true Vero - + false Falso - - + + none Nessun - + %1 (0x%2) %1 (0x%2) - + Invalid region Regione non valida - + Installed Titles Titoli installati - + System Titles Titoli di sistema - + Add New Game Directory Aggiungi nuova cartella dei giochi - + Not playing a game Non in gioco - + %1 is not playing a game %1 non sta giocando a un gioco - + %1 is playing %2 %1 sta giocando a %2 @@ -6592,7 +6592,7 @@ Potrebbe aver lasciato la stanza. QtKeyboard - + Software Keyboard Tastiera software @@ -6600,27 +6600,27 @@ Potrebbe aver lasciato la stanza. QtKeyboardDialog - + Text length is not correct (should be %1 characters) La lunghezza del testo non è corretta (deve essere di %1 caratteri) - + Text is too long (should be no more than %1 characters) Il testo è troppo lungo (non deve essere più lungo di %1 caratteri) - + Blank input is not allowed Non può essere lasciato vuoto - + Empty input is not allowed Non può essere lasciato vuoto - + Validation error Errore di convalida @@ -6628,12 +6628,12 @@ Potrebbe aver lasciato la stanza. QtMiiSelectorDialog - + Mii Selector Selettore Mii - + Standard Mii Mii Standard @@ -6641,95 +6641,95 @@ Potrebbe aver lasciato la stanza. RecordDialog - + View Record Visualizza registrazione - + Client Client - - + + Process: Processo: - - + + Thread: Thread: - - + + Session: Sessione: - + Server Server - + General Generale - + Client Port: Porta del client: - + Service: Servizio: - + Function: Funzione: - + Command Buffer Buffer del Comando - + Select: Seleziona: - + Request Untranslated Richiesta non tradotta - + Request Translated Richiesta tradotta - + Reply Untranslated Risposta non tradotta - + Reply Translated Risposta tradotta - + OK OK - + null null @@ -6737,37 +6737,37 @@ Potrebbe aver lasciato la stanza. RegistersWidget - + Registers Registri - + VFP Registers Registri VFP - + VFP System Registers Registri di sistema VFP - + Vector Length Lunghezza vettore - + Vector Stride Andatura vettore - + Rounding Mode Modalità di arrotondamento - + Vector Iteration Count Conteggio dell'iterazione del vettore @@ -6775,7 +6775,7 @@ Potrebbe aver lasciato la stanza. SequenceDialog - + Enter a hotkey Inserisci una scorciatoia @@ -6783,7 +6783,7 @@ Potrebbe aver lasciato la stanza. WaitTreeEvent - + reset type = %1 reset type = %1 @@ -6791,12 +6791,12 @@ Potrebbe aver lasciato la stanza. WaitTreeMutex - + locked %1 times by thread: bloccato %1 volte da thread: - + free free @@ -6804,7 +6804,7 @@ Potrebbe aver lasciato la stanza. WaitTreeMutexList - + holding mutexes holding mutexes @@ -6812,12 +6812,12 @@ Potrebbe aver lasciato la stanza. WaitTreeObjectList - + waiting for all objects attesa di tutti gli oggetti - + waiting for one of the following objects attesa di uno degli oggetti seguenti @@ -6825,12 +6825,12 @@ Potrebbe aver lasciato la stanza. WaitTreeSemaphore - + available count = %1 conteggio disponibile = %1 - + max count = %1 conteggio massimo = %1 @@ -6838,112 +6838,112 @@ Potrebbe aver lasciato la stanza. WaitTreeThread - + running in esecuzione - + ready pronto - + waiting for address 0x%1 in attesa dell'indirizzo 0x%1 - + sleeping in sleep - + waiting for IPC response attesa risposta IPC - + waiting for objects attesa oggetti - + waiting for HLE return attesa return HLE - + dormant inattivo - + dead terminato - + PC = 0x%1 LR = 0x%2 PC = 0x%1 LR = 0x%2 - + default default - + all tutti - + AppCore AppCore - + SysCore SysCore - + Unknown processor %1 Processore sconosciuto %1 - + object id = %1 id oggetto = %1 - + processor = %1 processore = %1 - + thread id = %1 id thread = %1 - + process = %1 (%2) processo = %1 (%2) - + priority = %1(current) / %2(normal) priorità = %1(corrente) / %2(normale) - + last running ticks = %1 ultimi tick in esecuzione = %1 - + not holding mutex non holding mutex @@ -6951,7 +6951,7 @@ Potrebbe aver lasciato la stanza. WaitTreeThreadList - + waited by thread atteso dal thread @@ -6959,17 +6959,17 @@ Potrebbe aver lasciato la stanza. WaitTreeTimer - + reset type = %1 reset type = %1 - + initial delay = %1 ritardo iniziale = %1 - + interval delay = %1 ritardo dell'intervallo = %1 @@ -6977,27 +6977,27 @@ Potrebbe aver lasciato la stanza. WaitTreeWaitObject - + [%1]%2 %3 [%1]%2 %3 - + waited by no thread atteso da nessun thread - + one shot one shot - + sticky sticky - + pulse pulse @@ -7005,7 +7005,7 @@ Potrebbe aver lasciato la stanza. WaitTreeWidget - + Wait Tree Wait Tree diff --git a/dist/languages/ja_JP.ts b/dist/languages/ja_JP.ts index 39a74eca8..32a50cefe 100644 --- a/dist/languages/ja_JP.ts +++ b/dist/languages/ja_JP.ts @@ -2,17 +2,17 @@ ARMRegisters - + ARM Registers ARMレジスタ - + Register レジスタ - + Value @@ -20,27 +20,27 @@ AboutDialog - + About Citra Citraについて - - <html><head/><body><p><img src=":/icons/citra.png"/></p></body></html> - <html><head/><body><p><img src=":/icons/citra.png"/></p></body></html> + + <html><head/><body><p><img src=":/icons/lime.png"/></p></body></html> + <html><head/><body><p><img src=":/icons/lime.png"/></p></body></html> - + <html><head/><body><p><span style=" font-size:28pt;">Citra</span></p></body></html> <html><head/><body><p><span style=" font-size:28pt;">Citra</span></p></body></html> - + <html><head/><body><p>%1 | %2-%3 (%4)</p></body></html> <html><head/><body><p>%1 | %2-%3 (%4)</p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -57,12 +57,12 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">このソフトウェアは、法的に取得していないゲームをプレイする為に使用すべきではありません.</span></p></body></html> - + <html><head/><body><p><a href="https://citra-emu.org/"><span style=" text-decoration: underline; color:#039be5;">Website</span></a> | <a href="https://community.citra-emu.org/"><span style=" text-decoration: underline; color:#039be5;">Forum</span></a> | <a href="https://github.com/citra-emu"><span style=" text-decoration: underline; color:#039be5;">Source Code</span></a> | <a href="https://github.com/citra-emu/citra/graphs/contributors"><span style=" text-decoration: underline; color:#039be5;">Contributors</span></a> | <a href="https://github.com/citra-emu/citra/blob/master/license.txt"><span style=" text-decoration: underline; color:#039be5;">License</span></a></p></body></html> <html><head/><body><p><a href="https://citra-emu.org/"><span style=" text-decoration: underline; color:#039be5;">ウェブサイト</span></a> | <a href="https://community.citra-emu.org/"><span style=" text-decoration: underline; color:#039be5;">フォーラム</span></a> | <a href="https://github.com/citra-emu"><span style=" text-decoration: underline; color:#039be5;">ソースコード</span></a> | <a href="https://github.com/citra-emu/citra/graphs/contributors"><span style=" text-decoration: underline; color:#039be5;">開発チーム</span></a> | <a href="https://github.com/citra-emu/citra/blob/master/license.txt"><span style=" text-decoration: underline; color:#039be5;">ライセンス</span></a></p></body></html> - + <html><head/><body><p><span style=" font-size:7pt;">&quot;3DS&quot; is a trademark of Nintendo. Citra is not affiliated with Nintendo in any way.</span></p></body></html> <html><head/><body><p><span style=" font-size:7pt;">「3DS」は任天堂の商標です。Citraは任天堂と提携していません。</span></p></body></html> @@ -70,47 +70,47 @@ p, li { white-space: pre-wrap; } BreakPointModel - + Pica command loaded Pica command loaded - + Pica command processed Pica command processed - + Incoming primitive batch Incoming primitive batch - + Finished primitive batch Finished primitive batch - + Vertex shader invocation Vertex shader invocation - + Incoming display transfer Incoming display transfer - + GSP command processed GSP command processed - + Buffers swapped Buffers swapped - + Unknown debug context event Unknown debug context event @@ -118,32 +118,32 @@ p, li { white-space: pre-wrap; } CalibrationConfigurationDialog - + Communicating with the server... サーバーと通信中… - + Cancel キャンセル - + Touch the top left corner <br>of your touchpad. タッチパッド<br>の左上隅に触れてください - + Now touch the bottom right corner <br>of your touchpad. タッチパッド<br>の右下隅に触れてください - + Configuration completed! 設定完了! - + OK OK @@ -151,93 +151,93 @@ p, li { white-space: pre-wrap; } ChatRoom - + Room Window ルームウィンドウ - + Send Chat Message チャットメッセージを入力 - + Send Message チャット送信 - + Members メンバー - + %1 has joined %1がチャットに参加する - + %1 has left %1がチャットから抜ける - + %1 has been kicked %1 は強制退出されました - + %1 has been banned %1 はBANされました - + %1 has been unbanned %1 のBANは解除されました - + View Profile プロフィールを見る - - + + Block Player このプレイヤーをブロック - + When you block a player, you will no longer receive chat messages from them.<br><br>Are you sure you would like to block %1? ブロックすると、対象者からのチャットメッセージは受け取れなくなります。<br><br>本当に %1 をブロックしますか? - + Kick このプレイヤーを強制退出 - + Ban このプレイヤーをBAN - + Kick Player 確認 - + Are you sure you would like to <b>kick</b> %1? 本当にプレイヤー %1 を<b>強制退出</b>させますか? - + Ban Player 確認 - + Are you sure you would like to <b>kick and ban</b> %1? This would ban both their forum username and their IP address. @@ -249,22 +249,22 @@ This would ban both their forum username and their IP address. ClientRoom - + Room Window ルームウィンドウ - + Room Description ルームの説明 - + Moderation... 管理 - + Leave Room ルームから抜ける @@ -272,17 +272,17 @@ This would ban both their forum username and their IP address. ClientRoomWindow - + Connected 接続 - + Disconnected 切断 - + %1 (%2/%3 members) - connected %1 (%2/%3 人) - 接続中 @@ -290,108 +290,108 @@ This would ban both their forum username and their IP address. CompatDB - + Report Compatibility 互換性の問題を報告 - - + + Report Game Compatibility ゲームの互換性の問題を報告する - + <html><head/><body><p><span style=" font-size:10pt;">Should you choose to submit a test case to the </span><a href="https://citra-emu.org/game/"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">Citra Compatibility List</span></a><span style=" font-size:10pt;">, The following information will be collected and displayed on the site:</span></p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Hardware Information (CPU / GPU / Operating System)</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Which version of Citra you are running</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The connected Citra account</li></ul></body></html> <html><head/><body><p><span style=" font-size:10pt;">テストケースを報告すると、</span><a href="https://citra-emu.org/game/"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">Citra互換性リスト</span></a><span style=" font-size:10pt;">に以下の情報が登録されます。</span></p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">ハードウェア情報(CPU/GPU/OS)</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">実行しているCitraのバージョン</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">接続されたCitraアカウント</li></ul></body></html> - + Perfect カンペキ - + <html><head/><body><p>Game functions flawlessly with no audio or graphical glitches.</p></body></html> <html><head/><body><p>音声や描画の問題が全くなく、ゲームは完璧に動作する</p></body></html> - + Great - + <html><head/><body><p>Game functions with minor graphical or audio glitches and is playable from start to finish. May require some workarounds.</p></body></html> <html><head/><body><p>音声や描画に問題がある箇所があり、場合によって回避策が必要なこともあるが、基本的にはタイトルからゲームクリアまでプレイ可能</p></body></html> - + Okay 良好 - + <html><head/><body><p>Game functions with major graphical or audio glitches, but game is playable from start to finish with workarounds.</p></body></html> <html><head/><body><p>プレイに大きく影響する音声や描画の問題が見られるものの、ゲームクリアは可能</p></body></html> - + Bad ガタガタ - + <html><head/><body><p>Game functions, but with major graphical or audio glitches. Unable to progress in specific areas due to glitches even with workarounds.</p></body></html> <html><head/><body><p>ゲームの動作、音声や描画に大きな問題があり、特定の箇所までしか進むことができない</p></body></html> - + Intro/Menu イントロ - + <html><head/><body><p>Game is completely unplayable due to major graphical or audio glitches. Unable to progress past the Start Screen.</p></body></html> <html><head/><body><p>ゲームの動作、音声や描画に重大な問題があり、タイトルやメニュー画面より先に進むことができない</p></body></html> - + Won't Boot ダメダメ - + <html><head/><body><p>The game crashes when attempting to startup.</p></body></html> <html><head/><body><p>起動時にクラッシュするためプレイ不可</p></body></html> - + <html><head/><body><p>Independent of speed or performance, how well does this game play from start to finish on this version of Citra?</p></body></html> <html><head/><body><p>エミュレーション速度以外の部分で、このゲームはどの程度動作しますか?</p></body></html> - + Thank you for your submission! ご報告いただき、ありがとうございました! - + Submitting 送信中 - + Communication error 通信エラー - + An error occurred while sending the Testcase テストケースの送信中にエラーが発生しました - + Next 次へ @@ -399,93 +399,93 @@ This would ban both their forum username and their IP address. ConfigureAudio - + Output 出力 - + Emulation: エミュレーション - + HLE (fast) HLE (速度重視) - + LLE (accurate) LLE (精度重視) - + LLE multi-core LLE マルチコア - + Output Type 出力方式 - + Output Device 出力デバイス - + This post-processing effect adjusts audio speed to match emulation speed and helps prevent audio stutter. This however increases audio latency. この後処理エフェクトを有効にすると、エミュレーション速度に合わせて音声を伸長し、音声のカクつきを低減させます。ただし、レイテンシが増加します。 - + Enable audio stretching タイムストレッチを有効化 - + Use global volume - + Set volume: - + Volume: 音量 - + 0 % 0 % - + Microphone マイク - + Input Type 入力タイプ - + Input Device 入力デバイス - - + + Auto - + %1% Volume percentage (e.g. 50%) %1% @@ -494,203 +494,203 @@ This would ban both their forum username and their IP address. ConfigureCamera - + Form フォーム - + Camera カメラ設定 - - + + Select the camera to configure 設定を行うカメラを選択してください - + Camera to configure: 設定を行うカメラ - + Front 前面 - + Rear 背面 - - + + Select the camera mode (single or double) カメラモードを選択してください - + Camera mode: カメラモード - + Single (2D) シングル (2D) - + Double (3D) ダブル (3D) - - + + Select the position of camera to configure 設定するカメラの位置を選択してください - + Camera position: カメラの位置 - + Left 左側 - + Right 右側 - + Configuration 全般 - - + + Select where the image of the emulated camera comes from. It may be an image or a real camera. カメラに表示する画像もしくは実際に接続されているカメラを選択 - + Camera Image Source: カメラに表示する画像(映像)選択 - + Blank (blank) 空の画像 (blank) - + Still Image (image) 画像ファイル - + System Camera (qt) 接続中のカメラ (qt) - + File: ファイル - + ... ... - - + + Select the system camera to use 使用するシステムカメラを選択 - + Camera: カメラ - + <Default> <Default> - - + + Select the image flip to apply 適用する効果を選択してください - + Flip: フリップ効果 - + None なし - + Horizontal 水平 - + Vertical 垂直 - + Reverse 反転 - + Select an image file every time before the camera is loaded カメラ使用時に毎回画像選択を行います - + Prompt before load プレイ中のカメラ使用時に選択する - + Preview プレビュー - + Resolution: 512*384 解像度 : 512*384 - + Click to preview ここをクリックしてプレビュー - + Resolution: %1*%2 解像度: %1*%2 - + Supported image files (%1) 画像ファイル (%1) - + Open File カメラからの画像として表示するファイルを選択 @@ -698,87 +698,87 @@ This would ban both their forum username and their IP address. ConfigureCheats - - + + Cheats - + Add Cheat - + Available Cheats: - + Name - + Type - + Save - + Delete - + Name: - + Notes: - + Code: - + Would you like to save the current cheat? - - - + + + Save Cheat - + Please enter a cheat name. - + Please enter the cheat code. - + Cheat code line %1 is not valid. Would you like to ignore the error and continue? - - + + [new cheat] @@ -786,127 +786,127 @@ Would you like to ignore the error and continue? ConfigureDebug - + Form フォーム - + GDB GDB - + Enable GDB Stub GDBスタブを有効化 - + Port: ポート - + Logging ログの設定 - + Global Log Filter Global Log Filter - + Show Log Console (Windows Only) ログコンソールを表示(Windowsのみ) - + Open Log Location ログファイルの保存先を開く - + CPU CPU - + Use global clock speed - + Set clock speed: - + CPU Clock Speed CPU周波数 - + <html><body>Changes the emulated CPU clock frequency.<br>Underclocking can increase performance but may cause the game to freeze.<br>Overclocking may reduce in game lag but also might cause freezes</body></html> - + <html><head/><body><p>Enables the use of the ARM JIT compiler for emulating the 3DS CPUs. Don't disable unless for debugging purposes</p></body></html> - + Enable CPU JIT CPU JITを有効化 - + Enable debug renderer - + Dump command buffers - + Miscellaneus - + <html><head/><body><p>Introduces a delay to the first ever launched app thread if LLE modules are enabled, to allow them to initialize.</p></body></html> - + Delay app start for LLE module initialization - + <html><head/><body><p>CPU Clock Speed Information<br/>Underclocking can increase performance but may cause the game to freeze.<br/>Overclocking may reduce in game lag but also might cause freezes</p></body></html> - + Validation layer not available - + Unable to enable debug renderer because the layer <strong>VK_LAYER_KHRONOS_validation</strong> is missing. Please install the Vulkan SDK or the appropriate package of your distribution - + Command buffer dumping not available - + Unable to enable command buffer dumping because the layer <strong>VK_LAYER_LUNARG_api_dump</strong> is missing. Please install the Vulkan SDK or the appropriate package of your distribution @@ -914,92 +914,92 @@ Would you like to ignore the error and continue? ConfigureDialog - + Citra Configuration 設定 - - - + + + General 全般 - - - + + + System システム - - + + Input 入力 - - + + Hotkeys ホットキー - - + + Graphics グラフィック - - + + Enhancements 強化 - - - + + + Audio サウンド - - + + Camera カメラ - - + + Debug デバッグ - - + + Storage ストレージ - - + + Web Web - - + + UI UI - + Controls 操作 - + Advanced 高度 @@ -1007,278 +1007,278 @@ Would you like to ignore the error and continue? ConfigureEnhancements - + Form - + Renderer レンダラ - + Internal Resolution 内部解像度 - + Auto (Window Size) - + Native (400x240) - + 2x Native (800x480) - + 3x Native (1200x720) - + 4x Native (1600x960) - + 5x Native (2000x1200) - + 6x Native (2400x1440) - + 7x Native (2800x1680) - + 8x Native (3200x1920) - + 9x Native (3600x2160) - + 10x Native (4000x2400) - + Enable Linear Filtering 線形フィルタリングを有効化 - + Post-Processing Shader 後処理シェーダー - + Texture Filter テクスチャフィルタ - + None なし - + Anime4K Anime4K - + Bicubic Bicubic - + ScaleForce - + xBRZ xBRZ - + MMPX - + Stereoscopy 立体視 - + Stereoscopic 3D Mode - + Off - - + + Side by Side - + Anaglyph - + Interlaced - + Reverse Interlaced - + Depth - + % % - + Eye to Render in Monoscopic Mode - + Left Eye (default) 左目(既定) - + Right Eye 右目 - + Layout レイアウト - + Screen Layout: 画面レイアウト: - + Default - + Single Screen - + Large Screen - + Separate Windows ウインドウを分ける - + Hybrid Screen - + Swap Screens - + Rotate Screens Upright - + Large Screen Proportion: - + Background Color: 背景色 - + Utility ユーティリティ - + <html><head/><body><p>Replace textures with PNG files.</p><p>Textures are loaded from load/textures/[Title ID]/.</p></body></html> - + Use Custom Textures カスタムテクスチャを使用 - + <html><head/><body><p>Dump textures to PNG files.</p><p>Textures are dumped to dump/textures/[Title ID]/.</p></body></html> - + Dump Textures テクスチャをダンプ - + <html><head/><body><p>Load all custom textures into memory on boot, instead of loading them when the game requires them.</p></body></html> - + Preload Custom Textures - + <html><head/><body><p>Load custom textures asynchronously with background threads to reduce loading stutter</p></body></html> - + Async Custom Texture Loading @@ -1286,136 +1286,136 @@ Would you like to ignore the error and continue? ConfigureGeneral - + Form フォーム - + General 基本設定 - + Confirm exit while emulation is running エミュレーション停止時に確認 - + Pause emulation when in background バックグラウンドでエミュレーションを一時停止する - + Mute audio when in background - + Hide mouse on inactivity 非アクティブ時にマウスを非表示にする - + Enable Gamemode - + Updates 自動更新の設定 - + Check for updates on start Citra起動時に確認 - + Silently auto update after closing Citra終了後に自動更新する - + Emulation エミュレーション - + Region: 地域 - + Auto-select 自動 - + Use global emulation speed - + Set emulation speed: - + Emulation Speed: エミュレーション速度 - + Screenshots スクリーンショット - + Use global screenshot path - + Set screenshot path: - + Save Screenshots To - + ... - + Reset All Settings すべての設定をリセット - - - - - + + + + + unthrottled 制限なし - + Select Screenshot Directory - + Citra Citra - + Are you sure you want to <b>reset your settings</b> and close Citra? すべての設定を<b>リセット</b>してCitraを終了してもよろしいですか? @@ -1423,157 +1423,157 @@ Would you like to ignore the error and continue? ConfigureGraphics - + Form フォーム - + Graphics グラフィック - + API Settings API設定 - + Graphics API グラフィックスAPI - + Software ソフトウェア - + OpenGL OpenGL - + Vulkan - + Physical Device - + OpenGL Renderer - + SPIR-V Shader Generation - + Renderer グラフィックに関する設定 - + <html><head/><body><p>Use the selected graphics API to accelerate shader emulation.</p><p>Requires a relatively powerful GPU for better performance.</p></body></html> - + Enable Hardware Shader ハードウェアシェーダーを有効化 - + <html><head/><body><p>Correctly handle all edge cases in multiplication operation in shaders. </p><p>Some games requires this to be enabled for the hardware shader to render properly.</p><p>However this would reduce performance in most games.</p></body></html> <html><head/><body><p>シェーダーの乗算演算ですべての極端なケースを正しく扱います。</p><p>いくつかのゲームでハードウェアシェーダーを正しくレンダリングするために必要です。</p><p>有効にすると多くのタイトルでパフォーマンスに影響が出る可能性があります。</p></body></html> - + Accurate Multiplication Accurate Multiplication - + <html><head/><body><p>Use the JIT engine instead of the interpreter for software shader emulation. </p><p>Enable this for better performance.</p></body></html> <html><head/><body><p>ソフトウェアシェーダーエミュレーションをインタプリタではなくJITで処理します。</p><p>有効にするとパフォーマンスが向上します。</p></body></html> - + Enable Shader JIT シェーダーJITを有効化 - + <html><head/><body><p>Compile shaders using background threads to avoid shader compilation stutter. Expect temporary graphical glitches</p></body></html> - + Enable Async Shader Compilation - + <html><head/><body><p>Perform presentation on separate threads. Improves performance when using Vulkan in most games.</p></body></html> - + Enable Async Presentation - + Advanced 高度 - + <html><head/><body><p>Overrides the sampling filter used by games. This can be useful in certain cases with poorly behaved games when upscaling. If unsure set this to Game Controlled</p></body></html> - + Texture Sampling - + Game Controlled - + Nearest Neighbor - + Linear - + <html><head/><body><p>Reduce stuttering by storing and loading generated shaders to disk.</p></body></html> <html><head/><body><p>生成されたシェーダーをディスクに保存してロードすることによってラグを解消できます。</p></body></html> - + Use Disk Shader Cache ディスクシェーダーキャッシュを使う - + VSync prevents the screen from tearing, but some graphics cards have lower performance with VSync enabled. Keep it enabled if you don't notice a performance difference. VSyncはティアリングを防止しますが、グラフィックカードによってはパフォーマンスが低下します。パフォーマンスに影響がないようなら有効にしてください。 - + Enable VSync Vsync有効化 @@ -1581,63 +1581,63 @@ Would you like to ignore the error and continue? ConfigureHotkeys - + Hotkey Settings ホットキーのカスタマイズ - + Double-click on a binding to change it. 項目をダブルクリックして変更できます - + Clear All すべてクリア - + Restore Defaults 設定の初期化 - + Action 動作 - + Hotkey ホットキー - - + + Conflicting Key Sequence ホットキーの競合 - + The entered key sequence is already assigned to: %1 - + A 3ds button - + Restore Default - + Clear - + The default key sequence is already assigned to: %1 @@ -1645,307 +1645,307 @@ Would you like to ignore the error and continue? ConfigureInput - + ConfigureInput 入力の設定 - + Profile プロファイル - + New 新規 - + Delete 削除 - + Rename プロファイル名変更 - + Face Buttons ボタン - + Y: Y: - + X: X: - + B: B: - + A: A: - + Directional Pad 十字ボタン - - - + + + Up: 上: - - - + + + Down: 下: - - - + + + Left: 左: - - - + + + Right: 右: - + Misc. その他 - + Start: START: - + Select: SELECT: - + Home: HOME: - + Power: - + Circle Mod: Circle Mod: - + GPIO14: GPIO14: - + Debug: デバッグ: - + Circle Pad スライドパッド - - - + + + Set Analog Stick アナログスティックを設定する - - + + Deadzone: 0 遊び: 0 - + C-Stick Cスティック - + Shoulder Buttons トリガー - + ZR: ZR: - + ZL: ZL: - + L: L: - + R: R: - + Motion / Touch... モーション/タッチ - + Auto Map 自動マッピング - + Clear All すべてクリア - + Restore Defaults ボタン設定の初期化 - - - + + + Clear クリア - - - + + + [not set] [未設定] - - - + + + Restore Default 設定の初期化 - - + + Information 情報 - + After pressing OK, first move your joystick horizontally, and then vertically. OKを押してこの画面を閉じたら、まず水平方向にジョイスティックを動かし、続けて垂直方向へ動かしてください - - + + Deadzone: %1% 遊び: %1% - - + + Modifier Scale: %1% 敏感度: %1% - + Warning 警告 - + Auto mapping failed. Your controller may not have a corresponding mapping 自動マッピング失敗。あなたのコントローラーに該当するマッピングが存在しない可能性があります - + After pressing OK, press any button on your joystick OKを押してから、ジョイスティックのボタンをどれか押してください。 - + [press key] [キーを入力...] - + Error! エラー - + You're using a key that's already bound. このキーは他の操作に割当済です - + New Profile 新しいプロファイル - + Enter the name for the new profile. 新しいプロファイルの名前を入力してください。 - + Delete Profile プロファイルを削除 - + Delete profile %1? プロファイル %1 を削除しますか? - + Rename Profile プロファイル名の変更 - + New name: 新しいプロファイル名を入力 - + Duplicate profile name プロファイル名の競合 - + Profile name already exists. Please choose a different name. このプロファイル名は既に使用されています、他の名前を入力してください @@ -1953,198 +1953,198 @@ Would you like to ignore the error and continue? ConfigureMotionTouch - + Configure Motion / Touch モーション/タッチ設定 - + Motion モーション - + Motion Provider: モーション操作の提供元 - + Sensitivity: 感度 - + Controller: コントローラー: - - - - - + + + + + Configure 設定 - + Touch タッチ - + Touch Provider: タッチ操作の提供元 - + Calibration: キャリブレーション - + (100, 50) - (1800, 850) (100, 50) - (1800, 850) - + Use button mapping: ボタンマッピングを使用: - + CemuhookUDP Config CemuhookUDPの設定 - + You may use any Cemuhook compatible UDP input source to provide motion and touch input. モーション操作やタッチ操作のためにCemuhook互換のUDP入力ソースを使用できます - + Server: サーバ - + Port: ポート - + Pad: パッド - + Pad 1 パッド1 - + Pad 2 パッド2 - + Pad 3 パッド3 - + Pad 4 パッド4 - + Learn More もっと詳しく - - + + Test テスト - + Mouse (Right Click) マウス(右クリック) - - + + CemuhookUDP CemuhookUDP - + SDL SDL - + Emulator Window エミュレータウィンドウ - + <a href='https://citra-emu.org/wiki/using-a-controller-or-android-phone-for-motion-or-touch-input'><span style="text-decoration: underline; color:#039be5;">Learn More</span></a> <a href='https://citra-emu.org/wiki/using-a-controller-or-android-phone-for-motion-or-touch-input'><span style="text-decoration: underline; color:#039be5;">もっと詳しく</span></a> - + Information 情報 - + After pressing OK, press a button on the controller whose motion you want to track. OKを押してから、トラッキングをしたいコントローラーのボタンを押してください。 - + [press button] [ボタン入力] - + Testing テスト中... - + Configuring 設定中... - + Test Successful テスト成功 - + Successfully received data from the server. サーバーからデータを正常に受信しました - + Test Failed テスト失敗 - + Could not receive valid data from the server.<br>Please verify that the server is set up correctly and the address and port are correct. サーバーから有効なデータを受信できませんでした。<br>サーバーが正しく設定されていることを確認した後、アドレスとポートが正しいことを確認してください - + Citra Citra - + UDP Test or calibration configuration is in progress.<br>Please wait for them to finish. UDPテスト中またはキャリブレーション設定中です。完了までお待ちください @@ -2152,97 +2152,97 @@ Would you like to ignore the error and continue? ConfigurePerGame - + Dialog - + Info - + Size - + Format - + Name - + Filepath - + Title ID - + Reset Game Settings - + Use global configuration (%1) - + General - + System - + Enhancements - + Graphics グラフィック - + Audio サウンド - + Debug デバッグ - + Cheats チート - + Properties - + Citra Citra - + Are you sure you want to <b>reset your settings for this game</b>? @@ -2250,65 +2250,65 @@ Would you like to ignore the error and continue? ConfigureStorage - + Form フォーム - + Storage ストレージ - + Use Virtual SD 仮想SDを使う - + Custom Storage - + Use Custom Storage - + NAND Directory NANDディレクトリ - - + + Open 開く - - + + NOTE: This does not move the contents of the previous directory to the new one. - - + + Change 変更 - + SDMC Directory SDMCディレクトリ - + Select NAND Directory NANDディレクトリを選択 - + Select SDMC Directory SDMCディレクトリを選択 @@ -2316,1033 +2316,1033 @@ Would you like to ignore the error and continue? ConfigureSystem - + Form フォーム - + System Settings システム設定 - + Enable New 3DS mode New 3DSモードを有効化 - + Use LLE applets (if installed) - + Username ユーザーネーム - + Birthday 誕生日 - + January 1月 - + February 2月 - + March 3月 - + April 4月 - + May 5月 - + June 6月 - + July 7月 - + August 8月 - + September 9月 - + October 10月 - + November 11月 - + December 12月 - + Language 言語 - + Note: this can be overridden when region setting is auto-select 注:地域設定が自動選択の場合、この設定は無視されます。 - + Japanese (日本語) 日本語 (Japanese) - + English 英語 (English) - + French (français) フランス語 (Français) - + German (Deutsch) ドイツ語 (Deutsch) - + Italian (italiano) イタリア語 (Italiano) - + Spanish (español) スペイン語 (Español) - + Simplified Chinese (简体中文) 簡体字中国語 (简体中文) - + Korean (한국어) 韓国語 (한국어) - + Dutch (Nederlands) オランダ語 (Nederlands) - + Portuguese (português) ポルトガル語 (Português) - + Russian (Русский) ロシア語 (Русский) - + Traditional Chinese (正體中文) 繁体字中国語 (正體中文) - + Sound output mode サウンド - + Mono モノラル - + Stereo ステレオ - + Surround サラウンド - + Country - + Clock 時刻 - + System Clock システムの時刻を使用 - + Fixed Time 固定 - + Startup time 起動時の時刻 - + yyyy-MM-ddTHH:mm:ss yyyy-MM-dd THH:mm:ss - + Offset time - + days - + HH:mm:ss - + Initial System Ticks - + Random - + Fixed - + Initial System Ticks Override - + Play Coins: ゲームコインの枚数 - + Run System Setup when Home Menu is launched - + Console ID: コンソールID: - + Regenerate コンソールの再作成 - + 3GX Plugin Loader: - + Enable 3GX plugin loader - + Allow games to change plugin loader state - + Download System Files from Nitendo servers - + Minimal - + Old 3DS - + New 3DS - + JPN - + USA - + EUR - + AUS - + CHN - + KOR - + TWN - + Download - + System settings are available only when game is not running. ゲーム実行中にシステム設定を変更することはできません - + Japan 日本 - + Anguilla アンギラ - + Antigua and Barbuda アンティグア・バーブーダ - + Argentina アルゼンチン - + Aruba アルバ - + Bahamas バハマ - + Barbados バルバドス - + Belize ベリーズ - + Bolivia ボリビア - + Brazil ブラジル - + British Virgin Islands 英領ヴァージン諸島 - + Canada カナダ - + Cayman Islands ケイマン諸島 - + Chile チリ - + Colombia コロンビア - + Costa Rica コスタリカ - + Dominica ドミニカ国 - + Dominican Republic ドミニカ共和国 - + Ecuador エクアドル - + El Salvador エルサルバドル - + French Guiana 仏領ギアナ - + Grenada グレナダ - + Guadeloupe グアドループ - + Guatemala グアテマラ - + Guyana ガイアナ - + Haiti ハイチ - + Honduras ホンジュラス - + Jamaica ジャマイカ - + Martinique マルティニーク - + Mexico メキシコ - + Montserrat モントセラト - + Netherlands Antilles オランダ領アンティル - + Nicaragua ニカラグア - + Panama パナマ - + Paraguay パラグアイ - + Peru ペルー - + Saint Kitts and Nevis セントクリストファー・ネーヴィス - + Saint Lucia セントルシア - + Saint Vincent and the Grenadines セントビンセント及びグレナディーン諸島 - + Suriname スリナム - + Trinidad and Tobago トリニダード・トバゴ - + Turks and Caicos Islands タークス・カイコス諸島 - + United States アメリカ合衆国 - + Uruguay ウルグアイ - + US Virgin Islands 米領ヴァージン諸島 - + Venezuela ベネズエラ - + Albania アルバニア - + Australia オーストラリア - + Austria オーストリア - + Belgium ベルギー - + Bosnia and Herzegovina ボスニア・ヘルツェゴビナ - + Botswana ボツワナ - + Bulgaria ブルガリア - + Croatia クロアチア - + Cyprus キプロス - + Czech Republic チェコ共和国 - + Denmark デンマーク - + Estonia エストニア - + Finland フィンランド - + France フランス - + Germany ドイツ - + Greece ギリシャ - + Hungary ハンガリー - + Iceland アイスランド - + Ireland アイルランド - + Italy イタリア - + Latvia ラトビア - + Lesotho レソト - + Liechtenstein リヒテンシュタイン - + Lithuania リトアニア - + Luxembourg ルクセンブルク - + Macedonia マケドニア - + Malta マルタ - + Montenegro モンテネグロ - + Mozambique モザンビーク - + Namibia ナミビア - + Netherlands オランダ - + New Zealand ニュージーランド - + Norway ノルウェー - + Poland ポーランド - + Portugal ポルトガル - + Romania ルーマニア - + Russia ロシア - + Serbia セルビア - + Slovakia スロバキア - + Slovenia スロベニア - + South Africa 南アフリカ - + Spain スペイン - + Swaziland スワジランド - + Sweden スウェーデン - + Switzerland スイス - + Turkey トルコ - + United Kingdom イギリス - + Zambia ザンビア - + Zimbabwe ジンバブエ - + Azerbaijan アゼルバイジャン - + Mauritania モーリタニア - + Mali マリ - + Niger ニジェール - + Chad チャド - + Sudan スーダン - + Eritrea エリトリア - + Djibouti ジブチ - + Somalia ソマリア - + Andorra アンドラ - + Gibraltar ジブラルタル - + Guernsey ガーンジー - + Isle of Man マン島 - + Jersey ジャージー - + Monaco モナコ - + Taiwan 台湾 - + South Korea 韓国 - + Hong Kong 香港 - + Macau マカオ - + Indonesia インドネシア - + Singapore シンガポール - + Thailand タイ - + Philippines フィリピン - + Malaysia マレーシア - + China 中国 - + United Arab Emirates アラブ首長国連邦 - + India インド - + Egypt エジプト - + Oman オマーン - + Qatar カタール - + Kuwait クウェート - + Saudi Arabia サウジアラビア - + Syria シリア - + Bahrain バーレーン - + Jordan ヨルダン - + San Marino サンマリノ - + Vatican City バチカン市国 - + Bermuda バミューダ - + Download System Files from Nintendo servers - + Citra is missing keys to download system files. <br><a href='https://citra-emu.org/wiki/aes-keys/'><span style="text-decoration: underline; color:#039be5;">How to get keys?</span></a> - - + + Console ID: 0x%1 コンソール ID: 0x%1 - + This will replace your current virtual 3DS with a new one. Your current virtual 3DS will not be recoverable. This might have unexpected effects in games. This might fail, if you use an outdated config savegame. Continue? 仮想3DSコンソールを新しく作り直します。現在使用中の仮想3DSコンソールを復元することはできず、ゲームに予期しない影響を与えることもあります。 この処理は古い設定のセーブデータが残っていると失敗する可能性があります @@ -3350,33 +3350,33 @@ Would you like to ignore the error and continue? それでも続行しますか? - + Warning 警告 - + Downloading files... - + Cancel - - + + Citra Citra - + Downloading system files failed. - + Successfully downloaded system files. @@ -3384,91 +3384,91 @@ Would you like to ignore the error and continue? ConfigureTouchFromButton - + Configure Touchscreen Mappings タッチスクリーンマッピングを設定 - + Mapping: マッピング: - + New 新規作成 - + Delete 削除 - + Rename 名前変更 - + Click the bottom area to add a point, then press a button to bind. Drag points to change position, or double-click table cells to edit values. したのエリアをクリックしてポイントを追加し、そこにマッピングするボタンを押してください。 ポイントをドラッグして場所を変更し、表のセルをダブルクリックして値を変えてください。 - + Delete Point ポイント削除 - + Button ボタン - + X X axis - + Y Y axis - + New Profile 新規プロファイル - + Enter the name for the new profile. 新規プロファイルの名前を入力してください。 - + Delete Profile プロファイル削除 - + Delete profile %1? プロファイル %1 を削除しますか? - + Rename Profile プロファイル名の変更 - + New name: 新しい名前: - + [press key] [キーを押す] @@ -3476,113 +3476,113 @@ Drag points to change position, or double-click table cells to edit values. ConfigureUi - + Form フォーム - + General 一般 - + Note: Changing language will apply your configuration. 注:言語を変更すると設定が適用されます。 - + Interface language: UIの言語 - + Theme: テーマ - + Game List ゲームリスト - + Icon Size: アイコンサイズ - - + + None 表示しない - + Small (24x24) 小(24×24) - + Large (48x48) 大(48×48) - + Row 1 Text: 1行目の表示項目 - - + + File Name ファイル名 - - + + Full Path フルパス - - + + Title Name (short) タイトル名(短い) - - + + Title ID タイトルID - - + + Title Name (long) タイトル名(長い) - + Row 2 Text: 2行目の表示項目 - + Hide Titles without Icon アイコンのないタイトルを非表示 - + Single Line Mode シングルラインモード - + <System> <System> - + English 英語 @@ -3590,135 +3590,135 @@ Drag points to change position, or double-click table cells to edit values. ConfigureWeb - + Form フォーム - + Citra Web Service Citra Webサービス - + By providing your username and token, you agree to allow Citra to collect additional usage data, which may include user identifying information. ユーザー名とトークンを提供することにより、Citraへの追加の情報データの収集(ユーザー識別情報含む)へ同意したものとします。 - - + + Verify 確認 - + Sign up ユーザー登録 - + Token: トークン - + Username: ユーザー名 - + What is my token? トークンの取得 - + Web Service configuration can only be changed when a public room isn't being hosted. Web設定はPublicなルームをホスティング中は変更できません - + Telemetry テレメトリーの設定 - + Share anonymous usage data with the Citra team Citraチームに匿名で使用データを共有する - + Learn more もっと詳しく - + Telemetry ID: テレメトリーID - + Regenerate 再作成 - + Discord Presence Discord Presence - + Show Current Game in your Discord Status プレイ中のゲームをDiscordに表示 - + <a href='https://citra-emu.org/entry/telemetry-and-why-thats-a-good-thing/'><span style="text-decoration: underline; color:#039be5;">Learn more</span></a> <a href='https://citra-emu.org/entry/telemetry-and-why-thats-a-good-thing/'><span style="text-decoration: underline; color:#039be5;">もっと詳しく</span></a> - + <a href='https://profile.citra-emu.org/'><span style="text-decoration: underline; color:#039be5;">Sign up</span></a> <a href='https://profile.citra-emu.org/'><span style="text-decoration: underline; color:#039be5;">サインアップ</span></a> - + <a href='https://citra-emu.org/wiki/citra-web-service/'><span style="text-decoration: underline; color:#039be5;">What is my token?</span></a> <a href='https://citra-emu.org/wiki/citra-web-service/'><span style="text-decoration: underline; color:#039be5;">トークンの取得</span></a> - - + + Unspecified 未指定 - - + + Telemetry ID: 0x%1 テレメトリーID: 0x%1 - + Token not verified トークン未検証 - + Token was not verified. The change to your token has not been saved. トークンが未検証です。トークンの変更は保存されていません。 - + Verifying... 検証中… - + Verification failed 検証失敗 - + Verification failed. Check that you have entered your token correctly, and that your internet connection is working. 検証に失敗しました。トークンが正しく入力されているか、ネット接続が正常に機能しているか確認してください。 @@ -3726,47 +3726,47 @@ Drag points to change position, or double-click table cells to edit values. DirectConnect - + Direct Connect 直接接続 - + Server Address - + <html><head/><body><p>Server address of the host</p></body></html> - + Port ポート - + <html><head/><body><p>Port number the host is listening on</p></body></html> <html><head/><body><p>ホストが待ち受けているポート番号</p></body></html> - + 24872 24872 - + Nickname ニックネーム - + Password パスワード - + Connect 接続 @@ -3774,12 +3774,12 @@ Drag points to change position, or double-click table cells to edit values. DirectConnectWindow - + Connecting 接続中... - + Connect 接続 @@ -3787,110 +3787,110 @@ Drag points to change position, or double-click table cells to edit values. DumpingDialog - + Dump Video - + Output - + Format: - - - + + + Options: - - - - + + + + ... - + Path: - + Video - - + + Encoder: - - + + Bitrate: - - + + bps - + Audio - - + + Citra - + Please specify the output path. - + output formats - + video encoders ビデオエンコーダ - + audio encoders オーディオエンコーダ - + Could not find any available %1. Please check your FFmpeg installation used for compilation. - - - - + + + + %1 (%2) - + Select Video Output Path @@ -3898,418 +3898,418 @@ Please check your FFmpeg installation used for compilation. GMainWindow - + <a href='https://citra-emu.org/entry/telemetry-and-why-thats-a-good-thing/'>Anonymous data is collected</a> to help improve Citra. <br/><br/>Would you like to share your usage data with us? <a href='https://citra-emu.org/entry/telemetry-and-why-thats-a-good-thing/'>匿名のデータ</a>がCitraの改善のために収集されます<br/><br/>利用状況データの提供に同意しますか? - + Telemetry テレメトリ - + No Suitable Vulkan Devices Detected - + Vulkan initialization failed during boot.<br/>Your GPU may not support Vulkan 1.1, or you do not have the latest graphics driver. - - + + Current emulation speed. Values higher or lower than 100% indicate emulation is running faster or slower than a 3DS. 現在のエミュレーション速度です。100%以外の値は、エミュレーションが3DS実機より高速または低速で行われていることを表します。 - - + + How many frames per second the game is currently displaying. This will vary from game to game and scene to scene. 1秒当たりの表示フレーム数です。ゲームタイトルや場面によって変化することがあります。 - - + + Time taken to emulate a 3DS frame, not counting framelimiting or v-sync. For full-speed emulation this should be at most 16.67 ms. 3DSフレームをエミュレートするのにかかった時間です。フレームリミットや垂直同期の有効時にはカウントしません。フルスピードで動作させるには16.67ms以下に保つ必要があります。 - + Clear Recent Files 最近のファイルを消去 - + &Continue - + &Pause - + Update Available 利用可能な更新 - + An update is available. Would you like to install it now? アップデートが利用可能です。今すぐインストールしますか? - + No Update Found アップデートなし - + No update is found. 利用可能なアップデートはありません - + Citra is running a game TRANSLATORS: This string is shown to the user to explain why Citra needs to prevent the computer from sleeping - - + + Invalid ROM Format 無効なROMフォーマット - - + + Your ROM format is not supported.<br/>Please follow the guides to redump your <a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>game cartridges</a> or <a href='https://citra-emu.org/wiki/dumping-installed-titles/'>installed titles</a>. このROMフォーマットはサポートされていません。<br/>ガイドに従って<a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>ゲームカートリッジ</a>か<a href='https://citra-emu.org/wiki/dumping-installed-titles/'>インストールされたタイトル</a>を再ダンプしてください - + ROM Corrupted ROMの破損 - + Your ROM is corrupted. <br/>Please follow the guides to redump your <a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>game cartridges</a> or <a href='https://citra-emu.org/wiki/dumping-installed-titles/'>installed titles</a>. このROMは破損しています。<br/>ガイドに従って<a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>ゲームカートリッジ</a>か<a href='https://citra-emu.org/wiki/dumping-installed-titles/'>インストールされたタイトル</a>を再ダンプしてください。 - + ROM Encrypted 暗号化されたROM - + Your ROM is encrypted. <br/>Please follow the guides to redump your <a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>game cartridges</a> or <a href='https://citra-emu.org/wiki/dumping-installed-titles/'>installed titles</a>. このROMは暗号化されています。<br/>ガイドに従って<a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>ゲームカートリッジ</a>か<a href='https://citra-emu.org/wiki/dumping-installed-titles/'>インストールされたタイトル</a>を再ダンプしてください。 - + Unsupported ROM - + GBA Virtual Console ROMs are not supported by Citra. - + Error while loading ROM! ROM読み込みエラー - + An unknown error occurred. Please see the log for more details. 不明なエラーが発生しました. 詳細はログを参照してください. - + CIA must be installed before usage CIAを使用前にインストールする必要有 - + Before using this CIA, you must install it. Do you want to install it now? CIAを使用するには先にインストールを行う必要があります。今すぐインストールしますか? - - + + Slot %1 スロット %1 - + Slot %1 - %2 %3 - + Error Opening %1 Folder フォルダ %1 を開く際のエラー - - + + Folder does not exist! フォルダが見つかりません! - + Dumping... ダンプ中... - - + + Cancel キャンセル - - - - - - - - - + + + + + + + + + Citra Citra - + Could not dump base RomFS. Refer to the log for details. ベースRomFSをダンプできませんでした。 詳細はログを参照してください。 - + Error Opening %1 %1 を開く際のエラー - + Select Directory 3DSのROMがあるフォルダを選択 - + Properties - + The game properties could not be loaded. - + 3DS Executable (%1);;All Files (*.*) %1 is an identifier for the 3DS executable file extensions. 3DS実行ファイル (%1);;すべてのファイル (*.*) - + Load File ゲームファイルの読み込み - + Load Files ファイルの読み込み - + 3DS Installation File (*.CIA*) 3DS インストールファイル (.CIA *) - + All Files (*.*) すべてのファイル (*.*) - + %1 has been installed successfully. %1が正常にインストールされました - + Unable to open File ファイルを開けません - + Could not open %1 %1を開くことができませんでした - + Installation aborted インストール中止 - + The installation of %1 was aborted. Please see the log for more details %1のインストールは中断されました。詳細はログを参照してください - + Invalid File 無効なファイル - + %1 is not a valid CIA %1は有効なCIAではありません - + Encrypted File 暗号化されたファイル - + %1 must be decrypted before being used with Citra. A real 3DS is required. %1 はCitraで使用する前に復号化する必要があります。3DS実機が必要です - + Unable to find File - + Could not find %1 - + Uninstalling '%1'... - + Failed to uninstall '%1'. - + Successfully uninstalled '%1'. - + File not found ファイルなし - + File "%1" not found ファイル%1が見つかりませんでした - + Missing Citra Account Citraアカウントがありません - + You must link your Citra account to submit test cases.<br/>Go to Emulation &gt; Configure... &gt; Web to do so. テストケースを送信するには、Citraアカウントとの連携が必要です。<br/>エミュレーション→設定→Webからアカウントの連携をしてください - + Savestates - + Warning: Savestates are NOT a replacement for in-game saves, and are not meant to be reliable. Use at your own risk! - - - + + + Error opening amiibo data file - + A tag is already in use. - + Game is not looking for amiibos. ゲームはAmiiboを探していません。 - + Amiibo File (%1);; All Files (*.*) Amiiboファイル (%1);; すべてのファイル (*.*) - + Load Amiibo Amiiboを読込 - + Unable to open amiibo file "%1" for reading. - + Record Movie 操作を記録 - + Movie recording cancelled. 操作の記録がキャンセルされました - - + + Movie Saved 保存成功 - - + + The movie is successfully saved. 操作記録を保存しました - + Invalid Screenshot Directory - + Cannot create specified screenshot directory. Screenshot path is set back to its default value. - + Could not load video dumper - + FFmpeg could not be loaded. Make sure you have a compatible version installed. To install FFmpeg to Citra, press Open and select your FFmpeg directory. @@ -4318,158 +4318,158 @@ To view a guide on how to install FFmpeg, press Help. - + Select FFmpeg Directory - + The provided FFmpeg directory is missing %1. Please make sure the correct directory was selected. - + FFmpeg has been sucessfully installed. - + Installation of FFmpeg failed. Check the log file for details. - + Could not start video dumping.<br>Refer to the log for details. ビデオのダンプを開始できませんでした。<br>詳細はログを参照してください。 - + Recording %1 - + Playing %1 / %2 - + Movie Finished - + Speed: %1% スピード:%1% - + Speed: %1% / %2% スピード:%1% / %2% - + Game: %1 FPS ゲーム:%1 FPS - + Frame: %1 ms フレーム:%1 ms - + VOLUME: MUTE - + VOLUME: %1% Volume percentage (e.g. 50%) - + %1 is missing. Please <a href='https://citra-emu.org/wiki/dumping-system-archives-and-the-shared-fonts-from-a-3ds-console/'>dump your system archives</a>.<br/>Continuing emulation may result in crashes and bugs. %1 が見つかりません。<a href='https://citra-emu.org/wiki/dumping-system-archives-and-the-shared-fonts-from-a-3ds-console/'>システムアーカイブをダンプしてください<br/>。このままエミュレーションを続行すると、クラッシュやバグが発生する可能性があります - + A system archive システムアーカイブ - + System Archive Not Found システムアーカイブなし - + System Archive Missing システムアーカイブが見つかりません - + Save/load Error セーブ/ロード エラー - + Fatal Error 致命的なエラー - + A fatal error occurred. <a href='https://community.citra-emu.org/t/how-to-upload-the-log-file/296'>Check the log</a> for details.<br/>Continuing emulation may result in crashes and bugs. 致命的なエラーが発生しました. <a href='https://community.citra-emu.org/t/how-to-upload-the-log-file/296'>詳細はログ</a>を確認してください.<br/>エミュレーションを継続するとクラッシュやバグが発生するかもしれません. - + Fatal Error encountered 致命的なエラーが発生しました - + Continue 続行 - + Quit Game - + OK - + Would you like to exit now? 今すぐ終了しますか? - + The game is still running. Would you like to stop emulation? ゲーム実行中です。エミュレーションを中止しますか? - + Playback Completed 再生完了 - + Movie playback completed. 操作記録の再生が完了しました - + Primary Window - + Secondary Window @@ -4477,22 +4477,22 @@ To view a guide on how to install FFmpeg, press Help. GPUCommandListModel - + Command Name Command Name - + Register Register - + Mask Mask - + New Value New Value @@ -4500,23 +4500,23 @@ To view a guide on how to install FFmpeg, press Help. GPUCommandListWidget - + Pica Command List Pica Command List - - + + Start Tracing Start Tracing - + Copy All Copy All - + Finish Tracing Finish Tracing @@ -4524,7 +4524,7 @@ To view a guide on how to install FFmpeg, press Help. GPUCommandStreamWidget - + Graphics Debugger Graphics Debugger @@ -4532,42 +4532,42 @@ To view a guide on how to install FFmpeg, press Help. GRenderWindow - + OpenGL not available! - + OpenGL shared contexts are not supported. - + Error while initializing OpenGL! - + Your GPU may not support OpenGL, or you do not have the latest graphics driver. - + Error while initializing OpenGL 4.3! - + Your GPU may not support OpenGL 4.3, or you do not have the latest graphics driver.<br><br>GL Renderer:<br>%1 - + Error while initializing OpenGL ES 3.2! - + Your GPU may not support OpenGL ES 3.2, or you do not have the latest graphics driver.<br><br>GL Renderer:<br>%1 @@ -4575,193 +4575,193 @@ To view a guide on how to install FFmpeg, press Help. GameList - - + + Compatibility 動作状況 - - + + Region 地域 - - + + File type ファイルの種類 - - + + Size サイズ - + Open Save Data Location セーブデータの保存先を開く - + Open Extra Data Location 拡張データの保存先を開く - + Open Application Location アプリケーションの保存先を開く - + Open Update Data Location アップデータの保存先を開く - + Open DLC Data Location - + Open Texture Dump Location テクスチャダンプの場所を開く - + Open Custom Texture Location カスタムテクスチャの場所を開く - + Open Mods Location Modを開く - + Dump RomFS RomFSをダンプ - + Disk Shader Cache - + Open Shader Cache Location - + Delete OpenGL Shader Cache - + Uninstall - + Everything - + Game - + Update - + DLC - + Navigate to GameDB entry 公式ゲームDBで動作状況を確認 - + Properties - - - - + + + + Citra - + Are you sure you want to completely uninstall '%1'? This will delete the game if installed, as well as any installed updates or DLC. - - + + %1 (Update) - - + + %1 (DLC) - + Are you sure you want to uninstall '%1'? - + Are you sure you want to uninstall the update for '%1'? - + Are you sure you want to uninstall all DLC for '%1'? - + Scan Subfolders サブフォルダも検索 - + Remove Game Directory ゲームフォルダを削除 - + Move Up - + Move Down - + Open Directory Location フォルダの場所を開く - + Name タイトル @@ -4769,77 +4769,77 @@ This will delete the game if installed, as well as any installed updates or DLC. GameListItemCompat - + Perfect カンペキ - + Game functions flawless with no audio or graphical glitches, all tested functionality works as intended without any workarounds needed. 音声や描画の問題は全くみられず、完璧に動作する - + Great サクサク - + Game functions with minor graphical or audio glitches and is playable from start to finish. May require some workarounds. 場面によって音声や描画に問題があり回避策が必要なこともあるが、タイトルからゲームクリアまでプレイは可能 - + Okay ソコソコ - + Game functions with major graphical or audio glitches, but game is playable from start to finish with workarounds. プレイに大きく影響する音声や描画の問題があるものの、一応クリアは可能 - + Bad ガタガタ - + Game functions, but with major graphical or audio glitches. Unable to progress in specific areas due to glitches even with workarounds. ゲームの動作や音声、描画に大きな問題があり、特定の場面までしか進めない - + Intro/Menu イントロ - + Game is completely unplayable due to major graphical or audio glitches. Unable to progress past the Start Screen. ゲームの動作や音声、描画に重大な問題があり、タイトルやメニュー画面より先に進めない - + Won't Boot ダメダメ - + The game crashes when attempting to startup. 起動時にクラッシュするためプレイ不可 - + Not Tested 未検証 - + The game has not yet been tested. このゲームはまだテストされていない @@ -4847,7 +4847,7 @@ Screen. GameListPlaceholder - + Double-click to add a new folder to the game list ダブルクリックして新しいフォルダーをゲームリストに追加 @@ -4855,27 +4855,27 @@ Screen. GameListSearchField - + of 件ヒットしました - + result 件中 - + results 件中 - + Filter: タイトル名でフィルタ - + Enter pattern to filter ゲームタイトルを入力 @@ -4883,47 +4883,47 @@ Screen. GameRegion - + Japan 日本 - + North America North America - + Europe Europe - + Australia Australia - + China China - + Korea Korea - + Taiwan Taiwan - + Invalid region 無効な地域 - + Region free リージョンフリー @@ -4931,23 +4931,23 @@ Screen. GraphicsBreakPointsWidget - + Pica Breakpoints Pica Breakpoints - - + + Emulation running エミュレーション実行中 - + Resume Resume - + Emulation halted at breakpoint Emulation halted at breakpoint @@ -4955,146 +4955,146 @@ Screen. GraphicsSurfaceWidget - + Pica Surface Viewer Pica Surface Viewer - + Color Buffer Color Buffer - + Depth Buffer Depth Buffer - + Stencil Buffer Stencil Buffer - + Texture 0 Texture 0 - + Texture 1 Texture 1 - + Texture 2 Texture 2 - + Custom Custom - + Unknown Unknown - + Save Save - + Source: Source: - + Physical Address: Physical Address: - + Width: Width: - + Height: Height: - + Format: Format: - + X: X: - + Y: Y: - + Pixel out of bounds Pixel out of bounds - + (unable to access pixel data) (unable to access pixel data) - + (invalid surface address) (invalid surface address) - + (unknown surface format) (unknown surface format) - + Portable Network Graphic (*.png) Portable Network Graphic (*.png) - + Binary data (*.bin) Binary data (*.bin) - + Save Surface Save Surface - - - - + + + + Error エラー - - + + Failed to open file '%1' ファイル '%1' を開けませんでした - + Failed to save surface data to file '%1' 表面データをファイル '%1' に保存できませんでした - + Failed to completely write surface data to file. The saved data will likely be corrupt. 表面データをファイルに完全に書き込めませんでした。保存されたデータはおそらく壊れている可能性があります。 @@ -5102,42 +5102,42 @@ Screen. GraphicsTracingWidget - + CiTrace Recorder CiTrace Recorder - + Start Recording Start Recording - + Stop and Save Stop and Save - + Abort Recording Abort Recording - + Save CiTrace Save CiTrace - + CiTrace File (*.ctf) CiTrace File (*.ctf) - + CiTracing still active CiTracing still active - + A CiTrace is still being recorded. Do you want to save it? If not, all recorded data will be discarded. A CiTrace is still being recorded. Do you want to save it? If not, all recorded data will be discarded. @@ -5145,17 +5145,17 @@ Screen. GraphicsVertexShaderModel - + Offset Offset - + Raw Raw - + Disassembly Disassembly @@ -5163,127 +5163,127 @@ Screen. GraphicsVertexShaderWidget - + Save Shader Dump Save Shader Dump - + Shader Binary (*.shbin) Shader Binary (*.shbin) - + Pica Vertex Shader ピカ頂点シェーダー - + (data only available at vertex shader invocation breakpoints) (data only available at vertex shader invocation breakpoints) - + Dump Dump - + Input Data Input Data - + Attribute %1 Attribute %1 - + Cycle Index: Cycle Index: - + SRC1: %1, %2, %3, %4 SRC1: %1, %2, %3, %4 - + SRC2: %1, %2, %3, %4 SRC2: %1, %2, %3, %4 - + SRC3: %1, %2, %3, %4 SRC3: %1, %2, %3, %4 - + DEST_IN: %1, %2, %3, %4 DEST_IN: %1, %2, %3, %4 - + DEST_OUT: %1, %2, %3, %4 DEST_OUT: %1, %2, %3, %4 - + Address Registers: %1, %2 Address Registers: %1, %2 - + Compare Result: %1, %2 Compare Result: %1, %2 - + Static Condition: %1 Static Condition: %1 - + Dynamic Conditions: %1, %2 Dynamic Conditions: %1, %2 - + Loop Parameters: %1 (repeats), %2 (initializer), %3 (increment), %4 Loop Parameters: %1 (repeats), %2 (initializer), %3 (increment), %4 - + Instruction offset: 0x%1 Instruction offset: 0x%1 - + -> 0x%2 -> 0x%2 - + (last instruction) (last instruction) @@ -5291,67 +5291,67 @@ Screen. HostRoom - + Create Room 新規ルーム作成 - + Room Name ルーム名 - + Preferred Game プレイ希望ゲーム - + Max Players 最大プレイヤー数 - + Username ユーザー名 - + (Leave blank for open game) (空白のままで誰でも参加可能) - + Password パスワード - + Port ポート - + Room Description 説明 - + Load Previous Ban List 前回のBANリストを続けて使用 - + Public ルーム一覧に表示(Public) - + Unlisted ルーム一覧に表示させない(Unlisted) - + Host Room ホストルーム @@ -5359,12 +5359,12 @@ Screen. HostRoomWindow - + Error エラー - + Failed to announce the room to the public lobby. In order to host a room publicly, you must have a valid Citra account configured in Emulation -> Configure -> Web. If you do not want to publish a room in the public lobby, then select Unlisted instead. Debug Message: このルームをルーム一覧に登録できませんでした。 @@ -5376,47 +5376,47 @@ Debug Message: IPCRecorder - + IPC Recorder IPCレコーダー - + Enable Recording 録画を有効化 - + Filter: フィルタ: - + Leave empty to disable filtering 空のままにしてフィルタリングを無効 - + # # - + Status 状態 - + Service サービス - + Function 関数 - + Clear クリア @@ -5424,47 +5424,47 @@ Debug Message: IPCRecorderWidget - + Invalid 無効 - + Sent 送信済み - + Handling 取り扱い - + Success 成功 - + Error エラー - + HLE Unimplemented HLE未実装 - + HLE HLE - + LLE LLE - + Unknown 不明 @@ -5472,7 +5472,7 @@ Debug Message: LLEServiceModulesWidget - + Toggle LLE Service Modules Toggle LLE Service Modules @@ -5480,54 +5480,54 @@ Debug Message: LoadingScreen - + Loading Shaders 387 / 1628 シェーダーをロード中 387 / 1628 - + Loading Shaders %v out of %m シェーダーをロード中 %v / %m - + Estimated Time 5m 4s 予想時間 5分4秒 - + Loading... ロード中... - + Preloading Textures %1 / %2 - + Preparing Shaders %1 / %2 シェーダーを準備中 %1 / %2 - + Loading Shaders %1 / %2 シェーダーをロード中 %1 / %2 - + Launching... 起動中... - + Now Loading %1 ロード中 %1 - + Estimated Time %1 予想時間 %1 @@ -5535,83 +5535,83 @@ Debug Message: Lobby - + Public Room Browser ルーム一覧を表示(Publicのみ) - - + + Nickname ニックネーム - + Filters フィルタ - + Search ゲームタイトルで検索 - + Games I Own 所持タイトルのルームのみ - + Hide Empty Rooms - + Hide Full Rooms 満室でないルームのみ - + Refresh Lobby ロビーを更新 - + Password Required to Join パスワードが必要です - + Password: パスワードを入力 - + Room Name ルーム名 - + Preferred Game プレイ希望ゲーム - + Host ホスト - + Players プレイヤー - + Refreshing 更新 - + Refresh List リスト更新 @@ -5619,362 +5619,362 @@ Debug Message: MainWindow - + Citra Citra - + &File ファイル(&F) - + Boot Home Menu - + Recent Files 最近使ったファイル - + Amiibo Amiibo - + &Emulation エミュレーション(&E) - + Save State ステートセーブ - + Load State ステートロード - + &View 表示(&V) - + Debugging デバッグ - + Screen Layout 画面レイアウト - + Multiplayer マルチプレイヤー - + Tools ツール - + Movie 操作の記録 - + Frame Advance Frame Advance - + &Help ヘルプ(&H) - + Load File... ファイルを開く... - + Install CIA... CIAをインストール... - + JPN - + USA - + EUR - + AUS - + CHN - + KOR - + TWN - + E&xit 終了(&X) - + &Pause 一時停止(&P) - + &Stop 停止(&S) - + Save セーブ - + Load ロード - + FAQ よくある質問 - + About Citra Citraについて - + Single Window Mode シングルウィンドウモード - + Save to Oldest Slot 一番古いスロットにセーブ - + Load from Newest Slot 一番新しいスロットからロード - + Configure... 設定 - + Display Dock Widget Headers Dock Widget ヘッダを表示 - + Show Filter Bar フィルタバーを表示 - + Show Status Bar ステータスバーを表示 - + Create Pica Surface Viewer Create Pica Surface Viewer - + Record... - + Play... - + Close - + Save without Closing - + Read-Only Mode - + Enable Frame Advancing フレームアドバンスを有効化 - + Advance Frame Advance Frame - + Capture Screenshot スクリーンショット実行 - + Dump Video ビデオをダンプ - + Browse Public Game Lobby ルーム一覧をブラウズ - + Create Room 新しくルームを作成 - + Leave Room 退室 - + Direct Connect to Room 指定ルームへ直接接続 - + Show Current Room 現在のルームを表示 - + Fullscreen フルスクリーンで表示 - + Modify Citra Install Citraのインストール形態を変更 - + Opens the maintenance tool to modify your Citra installation Citraのインストール形態を変更するためのメンテナンスツールを開きます - + Default デフォルト - + Single Screen Single Screen - + Large Screen Large Screen - + Hybrid Screen - + Side by Side Side by Side - + Separate Windows ウインドウを分ける - + Swap Screens スクリーンの上下を入れ替える - + Rotate Upright 回転する - + Check for Updates アップデートの確認 - + Report Compatibility 動作状況を報告 - + Restart 再起動 - + Load... 読込... - + Remove 削除 - + Open Citra Folder Citra本体のあるフォルダを開く - + Configure Current Game... @@ -5982,7 +5982,7 @@ Debug Message: MicroProfileDialog - + MicroProfile マイクロプロファイル @@ -5990,48 +5990,48 @@ Debug Message: ModerationDialog - + Moderation 管理 - + Ban List BANリスト - - + + Refreshing 更新中 - + Unban 解除 - + Subject 対象者 - + Type 種類 - + Forum Username フォーラムでのユーザー名 - + IP Address IPアドレス - + Refresh 更新 @@ -6039,91 +6039,91 @@ Debug Message: MoviePlayDialog - - + + Play Movie - + File: - + ... - + Info - + Game: - + Author: - + Rerecord Count: - + Length: - + Current running game will be stopped. - + <br>Current recording will be discarded. - + Citra TAS Movie (*.ctm) - + Invalid movie file. - + Revision dismatch, playback may desync. - + Indicated length is incorrect, file may be corrupted. - - - - + + + + (unknown) - + Game used in this movie is not in game list. - + (>1 day) @@ -6131,43 +6131,43 @@ Debug Message: MovieRecordDialog - - + + Record Movie - + File: - + ... - + Author: - + Current running game will be restarted. - + <br>Current recording will be discarded. - + Recording will start once you boot a game. - + Citra TAS Movie (*.ctm) @@ -6175,37 +6175,37 @@ Debug Message: MultiplayerState - - + + Current connection status 現在の接続状況を表示 - - + + Not Connected. Click here to find a room! ルームに接続されていません。ここをクリックで検索できます! - - - + + + Connected 接続済 - - + + Not Connected 未接続 - + Error エラー - + Failed to update the room information. Please check your Internet connection and try hosting the room again. Debug Message: ルーム情報の更新に失敗 @@ -6213,7 +6213,7 @@ Debug Message: 以下デバッグ用: - + New Messages Received 新しいメッセージを受信 @@ -6221,22 +6221,22 @@ Debug Message: NetworkMessage - + Leave Room 退室 - + You are about to close the room. Any network connections will be closed. ルームを閉じると現在の接続は失われます。よろしいですか? - + Disconnect 切断 - + You are about to leave the room. Any network connections will be closed. 退室すると全てのネットワークは切断されます。続行しますか? @@ -6244,110 +6244,110 @@ Debug Message: NetworkMessage::ErrorManager - + Username is not valid. Must be 4 to 20 alphanumeric characters. - + Room name is not valid. Must be 4 to 20 alphanumeric characters. - + Username is already in use or not valid. Please choose another. - + IP is not a valid IPv4 address. - + Port must be a number between 0 to 65535. - + You must choose a Preferred Game to host a room. If you do not have any games in your game list yet, add a game folder by clicking on the plus icon in the game list. - + Unable to find an internet connection. Check your internet settings. - + Unable to connect to the host. Verify that the connection settings are correct. If you still cannot connect, contact the room host and verify that the host is properly configured with the external port forwarded. - + Unable to connect to the room because it is already full. - + Creating a room failed. Please retry. Restarting Citra might be necessary. - + The host of the room has banned you. Speak with the host to unban you or try a different room. - + Version mismatch! Please update to the latest version of Citra. If the problem persists, contact the room host and ask them to update the server. - + Incorrect password. - + An unknown error occurred. If this error continues to occur, please open an issue - + Connection to room lost. Try to reconnect. - + You have been kicked by the room host. - + MAC address is already in use. Please choose another. - + Your Console ID conflicted with someone else's in the room. Please go to Emulation > Configure > System to regenerate your Console ID. - + You do not have enough permission to perform this action. - + The user you are trying to kick/ban could not be found. They may have left the room. - + Error エラー @@ -6355,37 +6355,37 @@ They may have left the room. OptionSetDialog - + Options - + Unset - + unknown - + %1 &lt;%2> %3 - + Range: %1 - %2 - + custom - + %1 (0x%2) %3 @@ -6393,32 +6393,32 @@ They may have left the room. OptionsDialog - + Options - + Double click to see the description and change the values of the options. - + Specific - + Generic - + Name - + Value @@ -6426,157 +6426,157 @@ They may have left the room. QObject - + Supported image files (%1) サポートしている画像ファイル (%1) - + Open File ファイルを開く - + Error エラー - + Couldn't load the camera カメラをロードできませんでした - + Couldn't load %1 %1 をロードできませんでした - - + + Shift Shift - - + + Ctrl Ctrl - - + + Alt Alt - - - + + + [not set] [未設定] - - + + Hat %1 %2 Hat %1 %2 - - - - - - + + + + + + Axis %1%2 Axis %1%2 - - + + Button %1 Button %1 - + GC Axis %1%2 GC軸 %1%2 - + GC Button %1 GCボタン %1 - - - + + + [unknown] [不明] - + [unused] [未使用] - + auto - + true - + false - - + + none - + %1 (0x%2) - + Invalid region 無効な地域 - + Installed Titles インストールされたタイトル - + System Titles システムタイトル - + Add New Game Directory 新しいゲームディレクトリを追加 - + Not playing a game 何もプレイしていません - + %1 is not playing a game %1 は現在何もプレイしていません - + %1 is playing %2 %1 は %2 をプレイ中 @@ -6584,7 +6584,7 @@ They may have left the room. QtKeyboard - + Software Keyboard ソフトウェアキーボード @@ -6592,27 +6592,27 @@ They may have left the room. QtKeyboardDialog - + Text length is not correct (should be %1 characters) テキストの長さが正しくありません(%1 文字にしてください) - + Text is too long (should be no more than %1 characters) テキストが長すぎます(%1文字以内) - + Blank input is not allowed 空白だけの入力はできません - + Empty input is not allowed 入力なしにはできません - + Validation error 入力エラー @@ -6620,12 +6620,12 @@ They may have left the room. QtMiiSelectorDialog - + Mii Selector Mii Selector - + Standard Mii デフォルトの Mii @@ -6633,95 +6633,95 @@ They may have left the room. RecordDialog - + View Record レコードを表示 - + Client クライアント - - + + Process: プロセス: - - + + Thread: スレッド: - - + + Session: セッション: - + Server サーバ - + General 一般 - + Client Port: クライアントポート: - + Service: サービス: - + Function: 関数: - + Command Buffer コマンドバッファ - + Select: 選択: - + Request Untranslated 未翻訳リクエスト - + Request Translated 翻訳されたリクエスト - + Reply Untranslated 未翻訳返信 - + Reply Translated 翻訳された返信 - + OK OK - + null null @@ -6729,37 +6729,37 @@ They may have left the room. RegistersWidget - + Registers Registers - + VFP Registers VFP Registers - + VFP System Registers VFP System Registers - + Vector Length Vector Length - + Vector Stride Vector Stride - + Rounding Mode Rounding Mode - + Vector Iteration Count Vector Iteration Count @@ -6767,7 +6767,7 @@ They may have left the room. SequenceDialog - + Enter a hotkey ホットキーを入力 @@ -6775,7 +6775,7 @@ They may have left the room. WaitTreeEvent - + reset type = %1 reset type = %1 @@ -6783,12 +6783,12 @@ They may have left the room. WaitTreeMutex - + locked %1 times by thread: locked %1 times by thread: - + free free @@ -6796,7 +6796,7 @@ They may have left the room. WaitTreeMutexList - + holding mutexes holding mutexes @@ -6804,12 +6804,12 @@ They may have left the room. WaitTreeObjectList - + waiting for all objects waiting for all objects - + waiting for one of the following objects waiting for one of the following objects @@ -6817,12 +6817,12 @@ They may have left the room. WaitTreeSemaphore - + available count = %1 available count = %1 - + max count = %1 max count = %1 @@ -6830,112 +6830,112 @@ They may have left the room. WaitTreeThread - + running running - + ready ready - + waiting for address 0x%1 waiting for address 0x%1 - + sleeping sleeping - + waiting for IPC response waiting for IPC response - + waiting for objects waiting for objects - + waiting for HLE return waiting for HLE return - + dormant dormant - + dead dead - + PC = 0x%1 LR = 0x%2 PC = 0x%1 LR = 0x%2 - + default default - + all all - + AppCore AppCore - + SysCore SysCore - + Unknown processor %1 Unknown processor %1 - + object id = %1 object id = %1 - + processor = %1 processor = %1 - + thread id = %1 thread id = %1 - + process = %1 (%2) process = %1 (%2) - + priority = %1(current) / %2(normal) priority = %1(current) / %2(normal) - + last running ticks = %1 last running ticks = %1 - + not holding mutex not holding mutex @@ -6943,7 +6943,7 @@ They may have left the room. WaitTreeThreadList - + waited by thread waited by thread @@ -6951,17 +6951,17 @@ They may have left the room. WaitTreeTimer - + reset type = %1 reset type = %1 - + initial delay = %1 initial delay = %1 - + interval delay = %1 interval delay = %1 @@ -6969,27 +6969,27 @@ They may have left the room. WaitTreeWaitObject - + [%1]%2 %3 [%1]%2 %3 - + waited by no thread waited by no thread - + one shot one shot - + sticky sticky - + pulse pulse @@ -6997,7 +6997,7 @@ They may have left the room. WaitTreeWidget - + Wait Tree Wait Tree diff --git a/dist/languages/ko_KR.ts b/dist/languages/ko_KR.ts index 61badf94d..c44965af1 100644 --- a/dist/languages/ko_KR.ts +++ b/dist/languages/ko_KR.ts @@ -2,17 +2,17 @@ ARMRegisters - + ARM Registers ARM 레지스터 - + Register 레지스터 - + Value @@ -20,27 +20,27 @@ AboutDialog - + About Citra CItra 소개 - - <html><head/><body><p><img src=":/icons/citra.png"/></p></body></html> - <html><head/><body><p><img src=":/icons/citra.png"/></p></body></html> + + <html><head/><body><p><img src=":/icons/lime.png"/></p></body></html> + <html><head/><body><p><img src=":/icons/lime.png"/></p></body></html> - + <html><head/><body><p><span style=" font-size:28pt;">Citra</span></p></body></html> <html><head/><body><p><span style=" font-size:28pt;">Citra</span></p></body></html> - + <html><head/><body><p>%1 | %2-%3 (%4)</p></body></html> <html><head/><body><p>%1 | %2-%3 (%4)</p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -57,12 +57,12 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">이 소프트웨어는 합법적으로 얻지 않은 게임을 플레이하는 데 사용할 수 없습니다.</span></p></body></html> - + <html><head/><body><p><a href="https://citra-emu.org/"><span style=" text-decoration: underline; color:#039be5;">Website</span></a> | <a href="https://community.citra-emu.org/"><span style=" text-decoration: underline; color:#039be5;">Forum</span></a> | <a href="https://github.com/citra-emu"><span style=" text-decoration: underline; color:#039be5;">Source Code</span></a> | <a href="https://github.com/citra-emu/citra/graphs/contributors"><span style=" text-decoration: underline; color:#039be5;">Contributors</span></a> | <a href="https://github.com/citra-emu/citra/blob/master/license.txt"><span style=" text-decoration: underline; color:#039be5;">License</span></a></p></body></html> <html><head/><body><p><a href="https://citra-emu.org/"><span style=" text-decoration: underline; color:#039be5;">웹사이트</a> | <a href="https://community.citra-emu.org/"><span style=" text-decoration: underline; color:#039be5;">포럼</a> | <a href="https://github.com/citra-emu"><span style=" text-decoration: underline; color:#039be5;">소스코드</span></a> | <a href="https://github.com/citra-emu/citra/graphs/contributors"><span style=" text-decoration: underline; color:#039be5;">기여자</a> | <a href="https://github.com/citra-emu/citra/blob/master/license.txt"><span style=" text-decoration: underline; color:#039be5;">라이센스</a></p></body></html> - + <html><head/><body><p><span style=" font-size:7pt;">&quot;3DS&quot; is a trademark of Nintendo. Citra is not affiliated with Nintendo in any way.</span></p></body></html> <html><head/><body><p><span style=" font-size:7pt;">&quot;3DS&quot; 는 닌텐도의 트레이드 마크입니다. Citra는 닌텐도와 아무런 관련이 없습니다</span></p></body></html> @@ -70,47 +70,47 @@ p, li { white-space: pre-wrap; } BreakPointModel - + Pica command loaded Pica 명령 불러오기됨 - + Pica command processed Pica 명령 처리됨 - + Incoming primitive batch 들어오는 기본다각형 배치 - + Finished primitive batch 완료된 기본다각형 배치 - + Vertex shader invocation 버텍스 셰이더 호출 - + Incoming display transfer 들어온 디스플레이 전송 - + GSP command processed GSP 명령 처리됨 - + Buffers swapped 버퍼 스왑됨 - + Unknown debug context event 알 수 없는 디버그 컨텍스트 이벤트 @@ -118,32 +118,32 @@ p, li { white-space: pre-wrap; } CalibrationConfigurationDialog - + Communicating with the server... 서버와 통신중... - + Cancel 취소 - + Touch the top left corner <br>of your touchpad. 이제 터치 패드의 왼쪽 하단을 <br>터치하십시오. - + Now touch the bottom right corner <br>of your touchpad. 이제 터치 패드의 오른쪽 하단을 <br>터치하십시오. - + Configuration completed! 설정 완료! - + OK 확인 @@ -151,93 +151,93 @@ p, li { white-space: pre-wrap; } ChatRoom - + Room Window 방 창 - + Send Chat Message 채팅 메시지 보내기 - + Send Message 메시지 보내기 - + Members 멤버 - + %1 has joined %1 님이 들어왔습니다 - + %1 has left %1 님이 나갔습니다 - + %1 has been kicked %1 님이 추방되었습니다 - + %1 has been banned %1 님이 차단되었습니다 - + %1 has been unbanned %1 님이 차단 해제되었습니다 - + View Profile 프로필 보기 - - + + Block Player 플레이어 차단 - + When you block a player, you will no longer receive chat messages from them.<br><br>Are you sure you would like to block %1? 플레이어를 차단하면 더 이상 플레이어로부터 채팅 메시지를 받을수 없습니다. <br><br>%1 님을 차단 하시겠습니까? - + Kick 추방 - + Ban 차단 - + Kick Player 플레이어 추방 - + Are you sure you would like to <b>kick</b> %1? %1 님을 <b>추방</b>하시겠습니까? - + Ban Player 플레이어 차단 - + Are you sure you would like to <b>kick and ban</b> %1? This would ban both their forum username and their IP address. @@ -249,22 +249,22 @@ This would ban both their forum username and their IP address. ClientRoom - + Room Window 방 창 - + Room Description 방 설명 - + Moderation... 관리... - + Leave Room 방 나가기 @@ -272,17 +272,17 @@ This would ban both their forum username and their IP address. ClientRoomWindow - + Connected 연결됨 - + Disconnected 연결되지 않음 - + %1 (%2/%3 members) - connected %1 (%2/%3 멤버) - 연결됨 @@ -290,108 +290,108 @@ This would ban both their forum username and their IP address. CompatDB - + Report Compatibility 호환성 보고하기 - - + + Report Game Compatibility 게임 호환성 보고하기 - + <html><head/><body><p><span style=" font-size:10pt;">Should you choose to submit a test case to the </span><a href="https://citra-emu.org/game/"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">Citra Compatibility List</span></a><span style=" font-size:10pt;">, The following information will be collected and displayed on the site:</span></p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Hardware Information (CPU / GPU / Operating System)</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Which version of Citra you are running</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The connected Citra account</li></ul></body></html> <html><head/><body><p><span style=" font-size:10pt;"><a href="https://citra-emu.org/game/"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">Citra 호환성 목록</span></a>에 제출할 테스트 케이스를 선택해야 합니다</span><span style=" font-size:10pt;">. 다음 정보가 수집되어 사이트에 표시됩니다:</span></p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">하드웨어 정보 (CPU / GPU / 운영 체제)</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">실행중인 Citra의 버전</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">연결된 Citra 계정</li></ul></body></html> - + Perfect 완벽함 - + <html><head/><body><p>Game functions flawlessly with no audio or graphical glitches.</p></body></html> <html><head/><body><p>오디오 또는 그래픽 글리치가 없이 게임이 완벽하게 작동합니다.</p></body></html> - + Great 좋음 - + <html><head/><body><p>Game functions with minor graphical or audio glitches and is playable from start to finish. May require some workarounds.</p></body></html> <html><head/><body><p>게임은 사소한 그래픽문제나 오디오 글리치와 함께 처음부터 끝까지 진행가능합니다. 몇가지 해결방안이 필요할 수 있습니다.</p></body></html> - + Okay 양호 - + <html><head/><body><p>Game functions with major graphical or audio glitches, but game is playable from start to finish with workarounds.</p></body></html> <html><head/><body><p>게임에 주요 그래픽문제가 오디오 글리치가 있지만 몇가지 해결방안과 함께 처음부터 끝까지 플레이 할 수있습니다</p></body></html> - + Bad 나쁨 - + <html><head/><body><p>Game functions, but with major graphical or audio glitches. Unable to progress in specific areas due to glitches even with workarounds.</p></body></html> <html><head/><body><p>게임은 작동하지만 주요 그래픽이나 오디오 글리치가 있습니다. 특별한 해결방안에도 불구하고 특정한 지역에서 글리치로 인해 진행이 불가능합니다.</p></body></html> - + Intro/Menu 인트로/메뉴 - + <html><head/><body><p>Game is completely unplayable due to major graphical or audio glitches. Unable to progress past the Start Screen.</p></body></html> <html><head/><body><p>주요 그래픽 또는 오디오 결함으로 인해 게임을 완전히 재생할 수 없습니다. 시작화면을 지날 수 없습니다</p></body></html> - + Won't Boot 실행불가 - + <html><head/><body><p>The game crashes when attempting to startup.</p></body></html> <html><head/><body><p>게임을 시작하려 할 때 게임이 충돌합니다.</p></body></html> - + <html><head/><body><p>Independent of speed or performance, how well does this game play from start to finish on this version of Citra?</p></body></html> <html><head/><body><p>속도나 성능에 관계없이 Citra가 이 게임이 현재버전에서 처음부터 끝까지 얼마나 잘 실행됩니까?</p></body></html> - + Thank you for your submission! 제출해 주셔서 감사합니다! - + Submitting 제출 - + Communication error 통신 에러 - + An error occurred while sending the Testcase 테스트 케이스를 보내는 중 오류가 발생했습니다 - + Next 다음 @@ -399,93 +399,93 @@ This would ban both their forum username and their IP address. ConfigureAudio - + Output 출력 - + Emulation: 에뮬레이션: - + HLE (fast) HLE (빠름) - + LLE (accurate) LLE (정확함) - + LLE multi-core LLE 멀티코어 - + Output Type 출력 유형 - + Output Device 출력 장치 - + This post-processing effect adjusts audio speed to match emulation speed and helps prevent audio stutter. This however increases audio latency. 이 후처리 효과는 오디오 속도를 에뮬레이션 속도와 일치시키고 오디오 떨림을 방지하는 데 도움이 됩니다. 하지만 이렇게 되면 오디오 지연 시간이 늘어납니다. - + Enable audio stretching 오디오 스트레칭 활성화 - + Use global volume 전역 볼륨 사용하기 - + Set volume: 볼륨 설정: - + Volume: 볼륨: - + 0 % 0 % - + Microphone 마이크 - + Input Type 입력 타입 - + Input Device 입력장치 - - + + Auto - + %1% Volume percentage (e.g. 50%) %1% @@ -494,203 +494,203 @@ This would ban both their forum username and their IP address. ConfigureCamera - + Form Form - + Camera 카메라 - - + + Select the camera to configure 설정할 카메라 선택 - + Camera to configure: 설정할 카메라: - + Front 전면 - + Rear 후면 - - + + Select the camera mode (single or double) 카메라 모드 선택하기 (싱글 또는 더블) - + Camera mode: 카메라모드: - + Single (2D) 싱글 (2D) - + Double (3D) 더블 (3D) - - + + Select the position of camera to configure 설정할 카메라의 위치 선택 - + Camera position: 카메라 위치: - + Left 왼쪽 - + Right 오른쪽 - + Configuration 설정 - - + + Select where the image of the emulated camera comes from. It may be an image or a real camera. 에뮬레이션되는 카메라의 이미지를 가져올 위치를 선택하십시오. 이미지 또는 실제 카메라일 수 있습니다. - + Camera Image Source: 카메라 이미지 소스: - + Blank (blank) 빈화면 (blank) - + Still Image (image) 정지 이미지 (image) - + System Camera (qt) 시스템 카메라 (qt) - + File: 파일: - + ... ... - - + + Select the system camera to use 사용할 시스템 카메라 선택하기 - + Camera: 카메라: - + <Default> <Default> - - + + Select the image flip to apply 적용할 이미지 뒤집기 선택하기 - + Flip: 뒤집기: - + None 없음 - + Horizontal 좌우반전 - + Vertical 상하반전 - + Reverse 리버스 - + Select an image file every time before the camera is loaded 카메라가 로드되기 전에 매번 이미지 파일을 선택합니다 - + Prompt before load 불러오기 전에 확인 - + Preview 미리보기 - + Resolution: 512*384 해상도: 512*384 - + Click to preview 미리보기를 하려면 클릭 - + Resolution: %1*%2 해상도: %1*%2 - + Supported image files (%1) 지원되는 이미지 파일 (%1) - + Open File 파일 열기 @@ -698,88 +698,88 @@ This would ban both their forum username and their IP address. ConfigureCheats - - + + Cheats 치트 - + Add Cheat 치트 추가 - + Available Cheats: 사용 가능한 치트: - + Name 이름 - + Type 유형 - + Save 저장 - + Delete 삭제 - + Name: 이름: - + Notes: 메모: - + Code: 코드: - + Would you like to save the current cheat? 현재 치트를 저장하시겠습니까? - - - + + + Save Cheat 치트 저장 - + Please enter a cheat name. 치트 이름을 입력하세요. - + Please enter the cheat code. 치트코드를 입력해주세요. - + Cheat code line %1 is not valid. Would you like to ignore the error and continue? 치트코드 %1줄이 유효하지 않습니다. 오류를 무시하고 계속하시겠습니까? - - + + [new cheat] [새로운 치트] @@ -787,127 +787,127 @@ Would you like to ignore the error and continue? ConfigureDebug - + Form Form - + GDB GDB - + Enable GDB Stub GDB Stub 활성화 - + Port: 포트: - + Logging 로깅 - + Global Log Filter 글로벌 로그 필터 - + Show Log Console (Windows Only) 로그 콘솔 표시하기 (Windows만) - + Open Log Location 로그 위치 열기 - + CPU CPU - + Use global clock speed 글로벌 클럭 속도 사용 - + Set clock speed: 클럭 속도 설정: - + CPU Clock Speed CPU 클럭 속도 - + <html><body>Changes the emulated CPU clock frequency.<br>Underclocking can increase performance but may cause the game to freeze.<br>Overclocking may reduce in game lag but also might cause freezes</body></html> <html><body>에뮬레이트 된 CPU 클록 주파수를 변경합니다.<br>언더클러킹은 성능을 향상시킬 수 있지만 게임을 프리징되게 만들 수 있습니다.<br>오버클러킹은 게임 렉을 줄일 수 있지만 프리징을 일으킬 수 있습니다</body></html> - + <html><head/><body><p>Enables the use of the ARM JIT compiler for emulating the 3DS CPUs. Don't disable unless for debugging purposes</p></body></html> <html><head/><body><p>3DS CPU를 에뮬레이션하기 위해 ARM JIT 컴파일러를 사용할 수 있습니다. 디버깅 목적이 아니면 비활성화하지 마십시오</p></body></html> - + Enable CPU JIT CPU JIT 활성화 - + Enable debug renderer 디버그 렌더러 활성화 - + Dump command buffers - + Miscellaneus - + <html><head/><body><p>Introduces a delay to the first ever launched app thread if LLE modules are enabled, to allow them to initialize.</p></body></html> - + Delay app start for LLE module initialization - + <html><head/><body><p>CPU Clock Speed Information<br/>Underclocking can increase performance but may cause the game to freeze.<br/>Overclocking may reduce in game lag but also might cause freezes</p></body></html> <html><head/><body><p>CPU 클럭 속도 정보<br/>언더클러킹은 성능을 향상시킬 수 있지만 게임을 프리징되게 만들 수 있습니다.<br/>오버클러킹은 게임 렉을 줄일 수 있지만 프리징을 일으킬 수 있습니다</p></body></html> - + Validation layer not available - + Unable to enable debug renderer because the layer <strong>VK_LAYER_KHRONOS_validation</strong> is missing. Please install the Vulkan SDK or the appropriate package of your distribution - + Command buffer dumping not available - + Unable to enable command buffer dumping because the layer <strong>VK_LAYER_LUNARG_api_dump</strong> is missing. Please install the Vulkan SDK or the appropriate package of your distribution @@ -915,92 +915,92 @@ Would you like to ignore the error and continue? ConfigureDialog - + Citra Configuration Citra 설정 - - - + + + General 일반 - - - + + + System 시스템 - - + + Input 입력 - - + + Hotkeys 단축키 - - + + Graphics 그래픽 - - + + Enhancements 향상기능 - - - + + + Audio 오디오 - - + + Camera 카메라 - - + + Debug 디버그 - - + + Storage 저장소 - - + + Web - - + + UI UI - + Controls 컨트롤 - + Advanced 고급 @@ -1008,278 +1008,278 @@ Would you like to ignore the error and continue? ConfigureEnhancements - + Form Form - + Renderer 렌더러 - + Internal Resolution 내부 해상도 - + Auto (Window Size) 자동 (화면크기) - + Native (400x240) 네이티브 (400x240) - + 2x Native (800x480) 2x 네이티브 (800x480) - + 3x Native (1200x720) 3x 네이티브 (1200x720) - + 4x Native (1600x960) 4x 네이티브 (1600x960) - + 5x Native (2000x1200) 5x 네이티브 (2000x1200) - + 6x Native (2400x1440) 6x 네이티브 (2400x1440) - + 7x Native (2800x1680) 7x 네이티브 (2800x1680) - + 8x Native (3200x1920) 8x 네이티브 (3200x1920) - + 9x Native (3600x2160) 9x 네이티브 (3600x2160) - + 10x Native (4000x2400) 10x 네이티브 (4000x2400) - + Enable Linear Filtering 리니어 필터링 활성화 - + Post-Processing Shader 후처리 셰이더 - + Texture Filter 텍스처 필터 - + None 없음 - + Anime4K Anime4K - + Bicubic Bicubic - + ScaleForce ScaleForce - + xBRZ xBRZ - + MMPX MMPX - + Stereoscopy 입체 영상 - + Stereoscopic 3D Mode 스테레오스코픽 3D 모드 - + Off 끄기 - - + + Side by Side 좌우 보기 - + Anaglyph 애너글리프 - + Interlaced 인터레이스 - + Reverse Interlaced 역방향 인터레이스 - + Depth 깊이 - + % % - + Eye to Render in Monoscopic Mode 모노스코픽 모드에서 렌더링할 눈 - + Left Eye (default) 왼쪽 눈 (기본값) - + Right Eye 오른쪽 눈 - + Layout 레이아웃 - + Screen Layout: 화면 레이아웃: - + Default 기본값 - + Single Screen 단일 화면 - + Large Screen 큰 화면 - + Separate Windows 독립된 창 - + Hybrid Screen 하이브리드 스크린 - + Swap Screens 스크린 바꾸기 - + Rotate Screens Upright 화면을 수직으로 회전 - + Large Screen Proportion: 큰 화면 비율: - + Background Color: 배경색: - + Utility 도구 - + <html><head/><body><p>Replace textures with PNG files.</p><p>Textures are loaded from load/textures/[Title ID]/.</p></body></html> <html><head/><body><p>텍스처를 PNG 파일로 교체합니다.</p><p>텍스처는 load/textures/[Title ID]/에서 로드됩니다.</p></body></html> - + Use Custom Textures 사용자 정의 텍스처 사용 - + <html><head/><body><p>Dump textures to PNG files.</p><p>Textures are dumped to dump/textures/[Title ID]/.</p></body></html> <html><head/><body><p>텍스처를 PNG 파일로 덤프합니다.</p><p>텍스처를 dump/textures/[Title ID]/에 덤프합니다.</p></body></html> - + Dump Textures 텍스처 덤프 - + <html><head/><body><p>Load all custom textures into memory on boot, instead of loading them when the game requires them.</p></body></html> <html><head/><body><p>게임에서 필요할 때 로드하는 대신 모든 사용자 정의 텍스처를 부팅 시 메모리에 로드합니다.</p></body></html> - + Preload Custom Textures 사용자 지정 텍스처 미리 불러오기 - + <html><head/><body><p>Load custom textures asynchronously with background threads to reduce loading stutter</p></body></html> <html><head/><body><p>로딩 끊김을 줄이기 위해 배경 스레드와 비동기식으로 사용자 지정 텍스처를 로드합니다.</p></body></html> - + Async Custom Texture Loading 비동기 커스텀 텍스처 로딩 @@ -1287,136 +1287,136 @@ Would you like to ignore the error and continue? ConfigureGeneral - + Form Form - + General 일반 - + Confirm exit while emulation is running 에뮬레이션이 실행중일때 종료 확인 - + Pause emulation when in background 백그라운드에 있을때 에뮬레이션 일시중지 - + Mute audio when in background - + Hide mouse on inactivity 비활성화시 마우스 숨기기 - + Enable Gamemode - + Updates 업데이트 - + Check for updates on start 시작시 업데이트 확인 - + Silently auto update after closing 종료후 자동으로 업데이트 - + Emulation 에뮬레이션 - + Region: 지역: - + Auto-select 자동 선택 - + Use global emulation speed 전역 에뮬레이션 속도 사용하기 - + Set emulation speed: 에뮬레이션 속도 설정: - + Emulation Speed: 에뮬레이션 속도: - + Screenshots 스크린숏 - + Use global screenshot path 전역 스크린숏 경로 사용하기 - + Set screenshot path: 스크린숏 경로 설정: - + Save Screenshots To 스크린숏 저장 위치 - + ... ... - + Reset All Settings 모든 설정 초기화 - - - - - + + + + + unthrottled 제한없음 - + Select Screenshot Directory 스크린숏 디렉터리 선택하기 - + Citra Citra - + Are you sure you want to <b>reset your settings</b> and close Citra? <b>사용자의 설정을 초기화</b>하고 Citra를 닫으시겠습니까? @@ -1424,157 +1424,157 @@ Would you like to ignore the error and continue? ConfigureGraphics - + Form Form - + Graphics 그래픽 - + API Settings API 설정 - + Graphics API 그래픽 API - + Software 소프트웨어 - + OpenGL OpenGL - + Vulkan - + Physical Device - + OpenGL Renderer - + SPIR-V Shader Generation - + Renderer 렌더러 - + <html><head/><body><p>Use the selected graphics API to accelerate shader emulation.</p><p>Requires a relatively powerful GPU for better performance.</p></body></html> - + Enable Hardware Shader 하드웨어 셰이더 활성화 - + <html><head/><body><p>Correctly handle all edge cases in multiplication operation in shaders. </p><p>Some games requires this to be enabled for the hardware shader to render properly.</p><p>However this would reduce performance in most games.</p></body></html> <html><head/><body>셰이더의 곱셈 연산에서 모든 엣지 케이스를 올바르게 처리합니다.</p><p>일부 게임에서는 하드웨어 셰이더를 제대로 렌더링하기위해 이 기능의 활성화를 요구합니다.</p><p>그러나 대부분의 게임에서 성능이 저하될수 있습니다.</p></body></html> - + Accurate Multiplication 정확한 곱셈연산 - + <html><head/><body><p>Use the JIT engine instead of the interpreter for software shader emulation. </p><p>Enable this for better performance.</p></body></html> <html><head/><body><p>소프트웨어 셰이더 에뮬레이션에 인터프리터대신 JIT엔진을 사용합니다.<p>더 나은 성능을 위해 활성화하세요.</p></body></html> - + Enable Shader JIT 셰이더 JIT 활성화 - + <html><head/><body><p>Compile shaders using background threads to avoid shader compilation stutter. Expect temporary graphical glitches</p></body></html> - + Enable Async Shader Compilation - + <html><head/><body><p>Perform presentation on separate threads. Improves performance when using Vulkan in most games.</p></body></html> - + Enable Async Presentation - + Advanced 고급 - + <html><head/><body><p>Overrides the sampling filter used by games. This can be useful in certain cases with poorly behaved games when upscaling. If unsure set this to Game Controlled</p></body></html> - + Texture Sampling - + Game Controlled - + Nearest Neighbor - + Linear - + <html><head/><body><p>Reduce stuttering by storing and loading generated shaders to disk.</p></body></html> <html><head/><body><p>생성된 셰이더를 디스크에 저장하고 로드하여 버벅거림을 줄입니다.</p></body></html> - + Use Disk Shader Cache 디스크 셰이더 캐시 사용 - + VSync prevents the screen from tearing, but some graphics cards have lower performance with VSync enabled. Keep it enabled if you don't notice a performance difference. VSync는 티어링을 방지하지만 일부 그래픽 카드는 VSync를 활성화하면 성능이 저하됩니다. 성능 차이가 눈에 띄지 않으면 활성화하십시오. - + Enable VSync VSync 활성화 @@ -1582,63 +1582,63 @@ Would you like to ignore the error and continue? ConfigureHotkeys - + Hotkey Settings 단축키 설정 - + Double-click on a binding to change it. 바인딩을 변경하려면 바인딩을 두 번 클릭합니다. - + Clear All 모두 지우기 - + Restore Defaults 기본값으로 복원 - + Action 동작 - + Hotkey 단축키 - - + + Conflicting Key Sequence 키 조합 충돌 - + The entered key sequence is already assigned to: %1 입력한 키 시퀀스가 %1 에 이미 할당되었습니다  - + A 3ds button 3ds 버튼 - + Restore Default 기본값으로 재설정 - + Clear 지우기 - + The default key sequence is already assigned to: %1 기본 키 시퀀스가 %1 에 이미 할당되었습니다 @@ -1646,307 +1646,307 @@ Would you like to ignore the error and continue? ConfigureInput - + ConfigureInput ConfigureInput - + Profile 프로필 - + New 새로 만들기 - + Delete 삭제하기 - + Rename 이름변경 - + Face Buttons A/B/X/Y 버튼 - + Y: Y: - + X: X: - + B: B: - + A: A: - + Directional Pad 방향 패드 - - - + + + Up: 위: - - - + + + Down: 아래: - - - + + + Left: 왼쪽: - - - + + + Right: 오른쪽: - + Misc. 기타 - + Start: 시작: - + Select: 선택: - + Home: Home: - + Power: 파워: - + Circle Mod: 슬라이드 수정: - + GPIO14: GPIO14: - + Debug: 디버그: - + Circle Pad 슬라이드 패드 - - - + + + Set Analog Stick 아날로그 스틱 설정 - - + + Deadzone: 0 데드존: 0 - + C-Stick C 스틱 - + Shoulder Buttons L/R 버튼 - + ZR: ZR: - + ZL: ZL: - + L: L: - + R: R: - + Motion / Touch... 모션 / 터치... - + Auto Map 자동 매핑 - + Clear All 모두 지우기 - + Restore Defaults 기본값으로 재설정 - - - + + + Clear 지우기 - - - + + + [not set] [설정 안함] - - - + + + Restore Default 기본값으로 재설정 - - + + Information 정보 - + After pressing OK, first move your joystick horizontally, and then vertically. OK을 누른 후 먼저 조이스틱을 수평으로 이동한 다음 수직으로 이동하세요. - - + + Deadzone: %1% 데드존: %1% - - + + Modifier Scale: %1% 민감도: %1% - + Warning 경고 - + Auto mapping failed. Your controller may not have a corresponding mapping 자동 매핑에 실패했습니다. 컨트롤러에 해당 매핑이 없을 수 있습니다. - + After pressing OK, press any button on your joystick 확인을 누른 후 조이스틱의 아무 버튼이나 누르십시오. - + [press key] [키 입력] - + Error! 오류! - + You're using a key that's already bound. 이미 바인딩 된 키를 사용 중입니다. - + New Profile 새 프로필 - + Enter the name for the new profile. 새 프로필의 이름을 입력하십시오. - + Delete Profile 프로필 삭제하기 - + Delete profile %1? %1 프로필을 삭제하시겠습니까? - + Rename Profile 프로필 이름 바꾸기 - + New name: 새 이름: - + Duplicate profile name 중복 프로필 이름 - + Profile name already exists. Please choose a different name. 프로필 이름이 이미 있습니다. 다른 이름을 선택하십시오. @@ -1954,198 +1954,198 @@ Would you like to ignore the error and continue? ConfigureMotionTouch - + Configure Motion / Touch 모션 / 터치 설정 - + Motion 모션 - + Motion Provider: 모션 제공: - + Sensitivity: 민감성: - + Controller: 컨트롤러: - - - - - + + + + + Configure 설정 - + Touch 터치 - + Touch Provider: 터치 제공: - + Calibration: 캘리브레이션: - + (100, 50) - (1800, 850) (100, 50) - (1800, 850) - + Use button mapping: 버튼 매핑 사용 : - + CemuhookUDP Config CemuhookUDP 설정 - + You may use any Cemuhook compatible UDP input source to provide motion and touch input. Cemuhook 호환 UDP 입력 소스를 사용하여 동작 및 터치 입력을 제공 할 수 있습니다. - + Server: 서버: - + Port: 포트: - + Pad: 패드: - + Pad 1 패드 1 - + Pad 2 패드 2 - + Pad 3 패드 3 - + Pad 4 패드 4 - + Learn More 자세히 알아보기 - - + + Test 테스트 - + Mouse (Right Click) 마우스 (오른쪽 클릭) - - + + CemuhookUDP CemuhookUDP - + SDL SDL - + Emulator Window 에뮬레이터 창 - + <a href='https://citra-emu.org/wiki/using-a-controller-or-android-phone-for-motion-or-touch-input'><span style="text-decoration: underline; color:#039be5;">Learn More</span></a> <a href='https://citra-emu.org/wiki/using-a-controller-or-android-phone-for-motion-or-touch-input'><span style="text-decoration: underline; color:#039be5;">자세히 알아보기</span></a> - + Information 정보 - + After pressing OK, press a button on the controller whose motion you want to track. 확인을 누른 후 움직임을 추적하려는 컨트롤러의 버튼을 누릅니다. - + [press button] [버튼 누르기] - + Testing 테스팅 - + Configuring 설정중 - + Test Successful 테스트 성공 - + Successfully received data from the server. 서버로 부터 데이터를 받은데 성공했습니다. - + Test Failed 테스트 실패 - + Could not receive valid data from the server.<br>Please verify that the server is set up correctly and the address and port are correct. 서버로 부터 유효한 정보를 받지 못했습니다.<br>서버가 올바르게 설정됐는지 주소와 포트가 정확한지 확인하세요. - + Citra Citra - + UDP Test or calibration configuration is in progress.<br>Please wait for them to finish. UDP Test 또는 캘리브레이션 설정이 진행중입니다.<br>설정이 끝날때까지 기다려주세요. @@ -2153,97 +2153,97 @@ Would you like to ignore the error and continue? ConfigurePerGame - + Dialog 대화상자 - + Info 정보 - + Size 크기 - + Format 형식 - + Name 이름 - + Filepath 파일경로 - + Title ID 제목 ID - + Reset Game Settings 게임 설정 초기화 - + Use global configuration (%1) 전역 설정(%1) 사용하기 - + General 일반 - + System 시스템 - + Enhancements 향상기능 - + Graphics 그래픽 - + Audio 오디오 - + Debug 디버그 - + Cheats 치트 - + Properties 속성 - + Citra Citra - + Are you sure you want to <b>reset your settings for this game</b>? <b>이 게임에 대한 사용자의 설정을 초기화</b>하시겠습니까? @@ -2251,65 +2251,65 @@ Would you like to ignore the error and continue? ConfigureStorage - + Form Form - + Storage 저장소 - + Use Virtual SD Virtual SD 사용 - + Custom Storage 사용자 정의 저장공간 - + Use Custom Storage 사용자 정의 저장공간 사용 - + NAND Directory NAND 디렉터리 - - + + Open 열기 - - + + NOTE: This does not move the contents of the previous directory to the new one. 참고: 이전 디렉터리의 내용이 새 디렉터리로 이동되지 않습니다. - - + + Change 변경 - + SDMC Directory SDMC 디렉터리 - + Select NAND Directory NAND 디렉터리 선택하기 - + Select SDMC Directory SDMC 디렉터리 선택하기 @@ -2317,1064 +2317,1064 @@ Would you like to ignore the error and continue? ConfigureSystem - + Form Form - + System Settings 시스템 설정 - + Enable New 3DS mode New 3DS mode 활성화 - + Use LLE applets (if installed) - + Username 사용자 이름 - + Birthday 생일 - + January 1월 - + February 2월 - + March 3월 - + April 4월 - + May 5월 - + June 6월 - + July 7월 - + August 8월 - + September 9월 - + October 10월 - + November 11월 - + December 12월 - + Language 언어 - + Note: this can be overridden when region setting is auto-select Note: 이 설정은 언어설정이 자동일경우 무시될수 있습니다 - + Japanese (日本語) 일본어 (日本語) - + English 영어 (English) - + French (français) 프랑스어 (français) - + German (Deutsch) 독일어 (Deutsch) - + Italian (italiano) 이탈리아어 (italiano) - + Spanish (español) 스페인어 (español) - + Simplified Chinese (简体中文) 간체 (简体中文) - + Korean (한국어) 한국어 - + Dutch (Nederlands) 네덜란드어 (Nederlands) - + Portuguese (português) 포르투갈어 (português) - + Russian (Русский) 러시아어 (Русский) - + Traditional Chinese (正體中文) 번체 (正體中文) - + Sound output mode 사운드 출력모드 - + Mono 모노 - + Stereo 스테레오 - + Surround 서라운드 - + Country 국가 - + Clock 시계 - + System Clock 시스템 시계 - + Fixed Time 수정된 시간 - + Startup time 시작 시간 - + yyyy-MM-ddTHH:mm:ss yyyy-MM-ddTHH:mm:ss - + Offset time 오프셋 시간 - + days - + HH:mm:ss HH:mm:ss - + Initial System Ticks - + Random - + Fixed - + Initial System Ticks Override - + Play Coins: 플레이 코인: - + Run System Setup when Home Menu is launched 홈 메뉴가 실행되면 시스템 설정 실행 - + Console ID: 콘솔 ID: - + Regenerate 재생성 - + 3GX Plugin Loader: 3GX 플러그인 로더: - + Enable 3GX plugin loader 3GX 플러그인 로더 활성화 - + Allow games to change plugin loader state 게임이 플러그인 로더 상태를 변경하도록 허용하기 - + Download System Files from Nitendo servers Nitendo 서버에서 시스템 파일 다운로드 - + Minimal 최소 - + Old 3DS 구형 3DS - + New 3DS 신형 3DS - + JPN JPN - + USA USA - + EUR EUR - + AUS AUS - + CHN CHN - + KOR KOR - + TWN TWN - + Download 다운로드 - + System settings are available only when game is not running. 시스템 설정은 게임이 실행되고 있지 않을 때만 사용할 수 있습니다. - + Japan 일본 - + Anguilla 앵귈라 - + Antigua and Barbuda 앤티가 바부다 - + Argentina 아르헨티나 - + Aruba 아루바 - + Bahamas 바하마 - + Barbados 바베이도스 - + Belize 벨리세 - + Bolivia 볼리비아 - + Brazil 브라질 - + British Virgin Islands 영국령 버진아일랜드 - + Canada 캐나다 - + Cayman Islands 케이맨 제도 - + Chile 칠레 - + Colombia 콜롬비아 - + Costa Rica 코스타리카 - + Dominica 도미니카 연방 - + Dominican Republic 도미니카 공화국 - + Ecuador 에콰도르 - + El Salvador 엘살바도르 - + French Guiana 프랑스령 기아나 - + Grenada 그레나다 - + Guadeloupe 과들루프 - + Guatemala 과테말라 - + Guyana 가이아나 - + Haiti 아이티 - + Honduras 온두라스 - + Jamaica 자메이카 - + Martinique 마르티니크 - + Mexico 멕시코 - + Montserrat 몬트세랫 - + Netherlands Antilles 네덜란드령 안틸레스 - + Nicaragua 니카라과 - + Panama 파나마 - + Paraguay 파라과이 - + Peru 페루 - + Saint Kitts and Nevis 세인트키츠 네비스 - + Saint Lucia 세인트루시아 - + Saint Vincent and the Grenadines 세인트빈센트 그레나딘 - + Suriname 수리남 - + Trinidad and Tobago 트리니다드 토바고 - + Turks and Caicos Islands 터크스 케이커스 제도 - + United States 미국 - + Uruguay 우루과이 - + US Virgin Islands 미국령 버진아일랜드 - + Venezuela 베네수엘라 - + Albania 알바니아 - + Australia 호주 - + Austria 오스트리아 - + Belgium 벨기에 - + Bosnia and Herzegovina 보스니아 헤르체고비나 - + Botswana 보츠와나 - + Bulgaria 불가리아 - + Croatia 크로아티아 - + Cyprus 키프로스 - + Czech Republic 체코 - + Denmark 덴마크 - + Estonia 에스토니아 - + Finland 핀란드 - + France 프랑스 - + Germany 독일 - + Greece 그리스 - + Hungary 헝가리 - + Iceland 아이슬란드 - + Ireland 아일랜드 - + Italy 이탈리아 - + Latvia 라트비아 - + Lesotho 레소토 - + Liechtenstein 리히텐슈타인 - + Lithuania 리투아니아 - + Luxembourg 룩셈부르크 - + Macedonia 마케도니아 - + Malta 몰타 - + Montenegro 몬테네그로 - + Mozambique 모잠비크 - + Namibia 나미비아 - + Netherlands 네덜란드 - + New Zealand 뉴질랜드 - + Norway 노르웨이 - + Poland 폴란드 - + Portugal 포르투갈 - + Romania 루마니아 - + Russia 러시아 - + Serbia 세르비아 - + Slovakia 슬로바키아 - + Slovenia 슬로베니아 - + South Africa 남아프리카공화국 - + Spain 스페인 - + Swaziland 스와질란드 - + Sweden 스웨덴 - + Switzerland 스위스 - + Turkey 터키 - + United Kingdom 영국 - + Zambia 잠비아 - + Zimbabwe 짐바브웨 - + Azerbaijan 아제르바이잔 - + Mauritania 모리타니 - + Mali 말리 - + Niger 니제르 - + Chad 차드 - + Sudan 수단 - + Eritrea 에리트레아 - + Djibouti 지부티 - + Somalia 소말리아 - + Andorra 안도라 - + Gibraltar 지브롤터 - + Guernsey 건지 - + Isle of Man 맨 섬 - + Jersey 저지섬 - + Monaco 모나코 - + Taiwan 대만 - + South Korea 대한민국 - + Hong Kong 홍콩 - + Macau 마카오 - + Indonesia 인도네시아 - + Singapore 싱가포르 - + Thailand 태국 - + Philippines 필리핀 - + Malaysia 말레이시아 - + China 중국 - + United Arab Emirates 아랍에미리트 - + India 인도 - + Egypt 이집트 - + Oman 오만 - + Qatar 카타르 - + Kuwait 쿠웨이트 - + Saudi Arabia 사우디아라비아 - + Syria 시리아 - + Bahrain 바레인 - + Jordan 요르단 - + San Marino 산마리노 - + Vatican City 바티칸 시국 - + Bermuda 버뮤다 - + Download System Files from Nintendo servers Nitendo 서버에서 시스템 파일 다운로드 - + Citra is missing keys to download system files. <br><a href='https://citra-emu.org/wiki/aes-keys/'><span style="text-decoration: underline; color:#039be5;">How to get keys?</span></a> Citra에 시스템 파일을 다운로드하기 위한 키가 없습니다. <br><a href='https://citra-emu.org/wiki/aes-keys/'><span style="text-decoration: underline; color:#039be5;">키를 어떻게 얻나요?</span></a> - - + + Console ID: 0x%1 콘솔 ID: 0x%1 - + This will replace your current virtual 3DS with a new one. Your current virtual 3DS will not be recoverable. This might have unexpected effects in games. This might fail, if you use an outdated config savegame. Continue? 현재 사용하는 가상 3DS를 새로운 시스템으로 교체합니다. 현재 사용하는 가상 3DS는 복구 할 수 없습니다. 이러한 변경은 게임에 예기치 않은 영향을 미칠 수 있습니다. 이 작업은 오래된 Config Savegame을 사용하는 경우 실패할 수 있습니다. 계속하시겠습니까? - + Warning 경고 - + Downloading files... 파일 다운로드 중... - + Cancel 취소 - - + + Citra Citra - + Downloading system files failed. 시스템 파일 다운로드에 실패했습니다. - + Successfully downloaded system files. 시스템 파일을 성공적으로 다운로드했습니다. @@ -3382,91 +3382,91 @@ Would you like to ignore the error and continue? ConfigureTouchFromButton - + Configure Touchscreen Mappings 터치스크린 매핑 설정 - + Mapping: 매핑: - + New 새로 만들기 - + Delete 삭제하기 - + Rename 이름변경 - + Click the bottom area to add a point, then press a button to bind. Drag points to change position, or double-click table cells to edit values. 아래쪽 영역을 클릭하여 점을 추가 한 다음 버튼을 눌러 바인딩합니다. 점을 드래그하여 위치를 변경하거나 셀을 두 번 클릭하여 값을 편집하십시오. - + Delete Point 포인트 삭제하기 - + Button 버튼 - + X X axis X - + Y Y axis Y - + New Profile 새 프로필 - + Enter the name for the new profile. 새 프로필의 이름을 입력하십시오. - + Delete Profile 프로필 삭제하기 - + Delete profile %1? %1 프로필을 삭제하시겠습니까? - + Rename Profile 프로필 이름 바꾸기 - + New name: 새 이름: - + [press key] [키 누르기] @@ -3474,113 +3474,113 @@ Drag points to change position, or double-click table cells to edit values. ConfigureUi - + Form Form - + General 일반 - + Note: Changing language will apply your configuration. 참고 : 언어를 변경하면 설정에 반영됩니다 - + Interface language: 인터페이스 언어: - + Theme: 테마: - + Game List 게임 목록 - + Icon Size: 아이콘 사이즈: - - + + None 없음 - + Small (24x24) 작은 (24x24) - + Large (48x48) 큰 (48x48) - + Row 1 Text: 첫째행 텍스트: - - + + File Name 파일 이름 - - + + Full Path 전체 경로 - - + + Title Name (short) 제목 이름 (짧은) - - + + Title ID 제목 ID - - + + Title Name (long) 제목 이름 (긴) - + Row 2 Text: 둘째행 텍스트: - + Hide Titles without Icon 아이콘이 없는 제목 숨기기 - + Single Line Mode 한 줄 모드 - + <System> <시스템> - + English English @@ -3588,135 +3588,135 @@ Drag points to change position, or double-click table cells to edit values. ConfigureWeb - + Form 종류 - + Citra Web Service Citra 웹 서비스 - + By providing your username and token, you agree to allow Citra to collect additional usage data, which may include user identifying information. 사용자 이름과 토큰을 제공하므로써 Citra가 사용자 식별 정보를 포함한 추가 사용 데이터를 수집하도록 허용하는 데 동의하게 됩니다. - - + + Verify 인증 - + Sign up 가입 - + Token: 토큰: - + Username: 사용자 이름: - + What is my token? 나의 토큰이 무엇인가요? - + Web Service configuration can only be changed when a public room isn't being hosted. 공개 방이 호스팅되지 않을 때만 웹 서비스 설정을 변경할 수 있습니다. - + Telemetry 텔레메트리 - + Share anonymous usage data with the Citra team Citra팀과 익명 사용 데이터 공유하겠습니다 - + Learn more 자세히 알아보기 - + Telemetry ID: 텔레메트리 ID: - + Regenerate 재생성 - + Discord Presence 디스코드 있음 - + Show Current Game in your Discord Status 사용자의 디스코드 상태에 현재 게임 표시하기 - + <a href='https://citra-emu.org/entry/telemetry-and-why-thats-a-good-thing/'><span style="text-decoration: underline; color:#039be5;">Learn more</span></a> <a href='https://citra-emu.org/entry/telemetry-and-why-thats-a-good-thing/'><span style="text-decoration: underline; color:#039be5;">자세히 알아보기</span></a> - + <a href='https://profile.citra-emu.org/'><span style="text-decoration: underline; color:#039be5;">Sign up</span></a> <a href='https://profile.citra-emu.org/'><span style="text-decoration: underline; color:#039be5;">가입</span></a> - + <a href='https://citra-emu.org/wiki/citra-web-service/'><span style="text-decoration: underline; color:#039be5;">What is my token?</span></a> <a href='https://citra-emu.org/wiki/citra-web-service/'><span style="text-decoration: underline; color:#039be5;">나의 토큰이 무엇인가요?</span></a> - - + + Unspecified 불특정 - - + + Telemetry ID: 0x%1 텔레메트리 ID: 0x%1 - + Token not verified 토큰이 확인되지 않음 - + Token was not verified. The change to your token has not been saved. 토큰이 확인되지 않았습니다. 토큰 변경 사항이 저장되지 않을 것입니다. - + Verifying... 인증중... - + Verification failed 인증 실패 - + Verification failed. Check that you have entered your token correctly, and that your internet connection is working. 인증에 실패했습니다. 토큰을 올바르게 입력했으며 인터넷 연결이 작동하는지 확인하십시오. @@ -3724,47 +3724,47 @@ Drag points to change position, or double-click table cells to edit values. DirectConnect - + Direct Connect 직접 연결하기 - + Server Address 서버 주소 - + <html><head/><body><p>Server address of the host</p></body></html> <html><head/><body><p>호스트의 서버 주소</p></body></html> - + Port 포트 - + <html><head/><body><p>Port number the host is listening on</p></body></html> <html><head/><body><p>호스트가 수신 대기중인 포트 번호</p></body> - + 24872 24872 - + Nickname 닉네임 - + Password 비밀번호 - + Connect 연결하기 @@ -3772,12 +3772,12 @@ Drag points to change position, or double-click table cells to edit values. DirectConnectWindow - + Connecting 연결하는 중 - + Connect 연결하기 @@ -3785,111 +3785,111 @@ Drag points to change position, or double-click table cells to edit values. DumpingDialog - + Dump Video 비디오 덤프 - + Output 출력 - + Format: 포맷: - - - + + + Options: 옵션: - - - - + + + + ... ... - + Path: 경로: - + Video 비디오 - - + + Encoder: 인코더: - - + + Bitrate: 비트레이트: - - + + bps bps - + Audio 오디오 - - + + Citra Citra - + Please specify the output path. 출력 경로를 지정하십시오. - + output formats 출력 포맷 - + video encoders 비디오 인코더 - + audio encoders 오디오 인코더 - + Could not find any available %1. Please check your FFmpeg installation used for compilation. 사용 가능한 %1을 찾을 수 없습니다. 컴파일에 사용된 FFmpeg 설치를 확인하십시오. - - - - + + + + %1 (%2) %1 (%2) - + Select Video Output Path 비디오 출력 경로 선택 @@ -3897,581 +3897,581 @@ Please check your FFmpeg installation used for compilation. GMainWindow - + <a href='https://citra-emu.org/entry/telemetry-and-why-thats-a-good-thing/'>Anonymous data is collected</a> to help improve Citra. <br/><br/>Would you like to share your usage data with us? Citra를 개선하기위해 <a href='https://citra-emu.org/entry/telemetry-and-why-thats-a-good-thing/'>익명데이터가 수집됩니다</a>. <br/><br/>사용 데이터를 공유하시겠습니까? - + Telemetry 텔레메트리 - + No Suitable Vulkan Devices Detected - + Vulkan initialization failed during boot.<br/>Your GPU may not support Vulkan 1.1, or you do not have the latest graphics driver. - - + + Current emulation speed. Values higher or lower than 100% indicate emulation is running faster or slower than a 3DS. 현재 에뮬레이션 속도. 100%보다 높거나 낮은 값은 에뮬레이션이 3DS보다 빠르거나 느린 것을 나타냅니다. - - + + How many frames per second the game is currently displaying. This will vary from game to game and scene to scene. 게임이 현재 표시하고 있는 초당 프레임 수입니다. 이것은 게임마다 다르며 장면마다 다릅니다. - - + + Time taken to emulate a 3DS frame, not counting framelimiting or v-sync. For full-speed emulation this should be at most 16.67 ms. 3DS 프레임을 에뮬레이션 하는 데 걸린 시간, 프레임제한 또는 v-동기화를 카운트하지 않음. 최대 속도 에뮬레이션의 경우, 이는 최대 16.67 ms여야 합니다. - + Clear Recent Files 최근 파일 삭제 - + &Continue 계속(&C) - + &Pause 일시중지(&P) - + Update Available 업데이트 사용 가능 - + An update is available. Would you like to install it now? 업데이트가 존재합니다. 지금 설치할까요? - + No Update Found 업데이트를 발견하지 못했습니다 - + No update is found. 업데이트를 찾을 수 없습니다. - + Citra is running a game TRANSLATORS: This string is shown to the user to explain why Citra needs to prevent the computer from sleeping Citra가 게임을 실행 중입니다. - - + + Invalid ROM Format 올바르지 않은 롬 포맷 - - + + Your ROM format is not supported.<br/>Please follow the guides to redump your <a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>game cartridges</a> or <a href='https://citra-emu.org/wiki/dumping-installed-titles/'>installed titles</a>. 지원되지 않는 롬 포맷입니다. <br/><a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>게임 카트리지</a>나 <a href='https://citra-emu.org/wiki/dumping-installed-titles/'>설치된 제목</a>을 덤프하기위해 가이드를 따르세요 - + ROM Corrupted 롬이 손상되었습니다 - + Your ROM is corrupted. <br/>Please follow the guides to redump your <a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>game cartridges</a> or <a href='https://citra-emu.org/wiki/dumping-installed-titles/'>installed titles</a>. 롬이 손상되었습니다. <br/><a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>게임 카트리지</a>나 <a href='https://citra-emu.org/wiki/dumping-installed-titles/'>설치된 제목</a>을 덤프하기위해 가이드를 따르세요 - + ROM Encrypted 롬이 암호화되어 있습니다 - + Your ROM is encrypted. <br/>Please follow the guides to redump your <a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>game cartridges</a> or <a href='https://citra-emu.org/wiki/dumping-installed-titles/'>installed titles</a>. 롬이 암호화 되어있습니다. <br/><a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>게임 카트리지</a>나 <a href='https://citra-emu.org/wiki/dumping-installed-titles/'>설치된 제목</a>을 덤프하기위해 가이드를 따르세요 - + Unsupported ROM 지원되지 않는 ROM - + GBA Virtual Console ROMs are not supported by Citra. GBA 가상 콘솔 ROM은 Citra에서 지원하지 않습니다. - + Error while loading ROM! ROM을 불러오는 중 오류가 발생했습니다! - + An unknown error occurred. Please see the log for more details. 알 수 없는 오류가 발생했습니다. 자세한 내용은 로그를 참조하십시오. - + CIA must be installed before usage CIA를 사용하기 전에 설치되어야 합니다 - + Before using this CIA, you must install it. Do you want to install it now? 이 CIA를 사용하기 전에 설치해야합니다. 지금 설치 하시겠습니까? - - + + Slot %1 슬롯 %1 - + Slot %1 - %2 %3 슬롯 %1 - %2 %3 - + Error Opening %1 Folder %1 폴더 열기 오류 - - + + Folder does not exist! 폴더가 존재하지 않습니다! - + Dumping... 덤프중... - - + + Cancel 취소 - - - - - - - - - + + + + + + + + + Citra Citra - + Could not dump base RomFS. Refer to the log for details. 베이스 RomFS를 덤프 할 수 없습니다. 자세한 내용은 로그를 참조하십시오. - + Error Opening %1 %1 열기 오류 - + Select Directory 디렉터리 선택하기 - + Properties 속성 - + The game properties could not be loaded. 게임 속성을 불러올 수 없습니다. - + 3DS Executable (%1);;All Files (*.*) %1 is an identifier for the 3DS executable file extensions. 3DS 실행파일 (%1);;모든파일 (*.*) - + Load File 파일 불러오기 - + Load Files 파일 불러오기 - + 3DS Installation File (*.CIA*) 3DS 설치 파일 (*.CIA*) - + All Files (*.*) 모든파일 (*.*) - + %1 has been installed successfully. %1가 성공적으로 설치되었습니다. - + Unable to open File 파일을 열 수 없음 - + Could not open %1 %1을(를) 열 수 없음 - + Installation aborted 설치 중단됨 - + The installation of %1 was aborted. Please see the log for more details %1의 설치가 중단되었습니다. 자세한 내용은 로그를 참조하십시오. - + Invalid File 올바르지 않은 파일 - + %1 is not a valid CIA %1은 올바른 CIA가 아닙니다 - + Encrypted File 암호화된 파일 - + %1 must be decrypted before being used with Citra. A real 3DS is required. %1 은 Citra에서 사용되기전에 디크립트되어야 합니다. 실제 3DS가 필요합니다. - + Unable to find File 파일을 찾을 수 없음 - + Could not find %1 1을(를) 찾을 수 없습니다 - + Uninstalling '%1'... - + Failed to uninstall '%1'. - + Successfully uninstalled '%1'. - + File not found 파일을 찾을 수 없음 - + File "%1" not found "%1" 파일을 찾을 수 없음 - + Missing Citra Account Citra 계정 없음 - + You must link your Citra account to submit test cases.<br/>Go to Emulation &gt; Configure... &gt; Web to do so. 테스트를 제출하기 위해서는 Citra계정을 연결해야합니다.<br/>연결하려면 에뮬레이션&gt; 설정... &gt; 웹으로 가세요. - + Savestates 상태저장(Savestates) - + Warning: Savestates are NOT a replacement for in-game saves, and are not meant to be reliable. Use at your own risk! 경고: 상태저장은 게임 내 저장을 대체하지 않으며 신뢰할 수 없습니다. 자신의 책임하에 사용하십시오! - - - + + + Error opening amiibo data file Amiibo 데이터 파일 열기 오류 - + A tag is already in use. 태그가 이미 사용중입니다. - + Game is not looking for amiibos. 게임은 amiibos를 찾고 있지 않습니다. - + Amiibo File (%1);; All Files (*.*) Amiibo 파일 (%1);; 모든파일 (*.*) - + Load Amiibo Amiibo 불러오기 - + Unable to open amiibo file "%1" for reading. Amiibo 파일 "%1"을 읽을 수 없습니다. - + Record Movie 무비 녹화 - + Movie recording cancelled. 무비 레코딩이 취소되었습니다. - - + + Movie Saved 무비 저장됨 - - + + The movie is successfully saved. 무비가 성공적으로 저장되었습니다 - + Invalid Screenshot Directory 올바르지 않은 스크린숏 디렉터리 - + Cannot create specified screenshot directory. Screenshot path is set back to its default value. 지정된 스크린숏 디렉터리를 생성할 수 없습니다. 스크린숏 경로가 기본값으로 다시 설정됩니다. - + Could not load video dumper 비디오 덤퍼를 불러올 수 없습니다 - + FFmpeg could not be loaded. Make sure you have a compatible version installed. To install FFmpeg to Citra, press Open and select your FFmpeg directory. To view a guide on how to install FFmpeg, press Help. FFmpeg를 불러올 수 없습니다. 호환되는 버전이 설치되어 있는지 확인하십시오. -  + FFmpeg를 Citra에 설치하려면 열기를 누르고 FFmpeg 디렉토리를 선택하십시오. FFmpeg 설치 방법에 대한 가이드를 보려면 도움말을 누르십시오. - + Select FFmpeg Directory FFmpeg 디렉토리 선택 - + The provided FFmpeg directory is missing %1. Please make sure the correct directory was selected. 제공된 FFmpeg 디렉토리에 %1이 없습니다. 올바른 디렉토리가 선택되었는지 확인하십시오. - + FFmpeg has been sucessfully installed. FFmpeg가 성공적으로 설치되었습니다. - + Installation of FFmpeg failed. Check the log file for details. FFmpeg 설치에 실패했습니다. 자세한 내용은 로그 파일을 확인하십시오. - + Could not start video dumping.<br>Refer to the log for details. 비디오 덤프를 시작할 수 없습니다.<br>자세한 내용은 로그를 참조하십시오. - + Recording %1 %1 녹화 중 - + Playing %1 / %2 %1 / %2 재생 중 - + Movie Finished 무비 완료됨 - + Speed: %1% 속도: %1% - + Speed: %1% / %2% 속도: %1% / %2% - + Game: %1 FPS 게임: %1 FPS - + Frame: %1 ms 프레임: %1 ms - + VOLUME: MUTE - + VOLUME: %1% Volume percentage (e.g. 50%) - + %1 is missing. Please <a href='https://citra-emu.org/wiki/dumping-system-archives-and-the-shared-fonts-from-a-3ds-console/'>dump your system archives</a>.<br/>Continuing emulation may result in crashes and bugs. %1이 없습니다. <a href='https://citra-emu.org/wiki/dumping-system-archives-and-the-shared-fonts-from-a-3ds-console/'>시스템 아카이브를 덤프하십시오</a>.<br/>에뮬레이션을 계속하면 충돌 및 버그가 발생할 수 있습니다. - + A system archive 시스템 아카이브 - + System Archive Not Found 시스템 아카이브를 찾을수 없습니다 - + System Archive Missing 시스템 아카이브가 없습니다 - + Save/load Error 저장하기/불러오기 오류 - + Fatal Error 치명적인 오류 - + A fatal error occurred. <a href='https://community.citra-emu.org/t/how-to-upload-the-log-file/296'>Check the log</a> for details.<br/>Continuing emulation may result in crashes and bugs. 치명적인 오류가 발생했습니다. 자세한 내용은 <a href='https://community.citra-emu.org/t/how-to-upload-the-log-file/296'>로그를 확인하십시오</a>. <br/>에뮬레이션을 계속하면 충돌과 버그가 발생할 수 있습니다. - + Fatal Error encountered 치명적인 오류가 발생했습니다 - + Continue 계속 - + Quit Game 게임 종료 - + OK 확인 - + Would you like to exit now? 지금 종료하시겠습니까? - + The game is still running. Would you like to stop emulation? 게임이 아직 작동중입니다. 에뮬레이션을 정지할까요? - + Playback Completed 재생 완료 - + Movie playback completed. 무비 재생 완료 - + Primary Window 첫번째 윈도우 - + Secondary Window 두번째 윈도우 @@ -4479,22 +4479,22 @@ FFmpeg 설치 방법에 대한 가이드를 보려면 도움말을 누르십시 GPUCommandListModel - + Command Name 명령 이름 - + Register 레지스터 - + Mask Mask - + New Value 새 값 @@ -4502,23 +4502,23 @@ FFmpeg 설치 방법에 대한 가이드를 보려면 도움말을 누르십시 GPUCommandListWidget - + Pica Command List Pica 명령 목록 - - + + Start Tracing 추적 시작 - + Copy All 모두 복사하기 - + Finish Tracing 추적 완료 @@ -4526,7 +4526,7 @@ FFmpeg 설치 방법에 대한 가이드를 보려면 도움말을 누르십시 GPUCommandStreamWidget - + Graphics Debugger 그래픽 디버거 @@ -4534,42 +4534,42 @@ FFmpeg 설치 방법에 대한 가이드를 보려면 도움말을 누르십시 GRenderWindow - + OpenGL not available! OpenGL을 사용할 수 없습니다! - + OpenGL shared contexts are not supported. OpenGL 공유 컨텍스트가 지원되지 않습니다. - + Error while initializing OpenGL! OpenGL을 초기화하는 동안 오류가 발생했습니다! - + Your GPU may not support OpenGL, or you do not have the latest graphics driver. GPU가 OpenGL을 지원하지 않거나 최신 그래픽 드라이버가 없을 수 있습니다. - + Error while initializing OpenGL 4.3! OpenGL 4.3을 초기화하는 동안 오류가 발생했습니다! - + Your GPU may not support OpenGL 4.3, or you do not have the latest graphics driver.<br><br>GL Renderer:<br>%1 GPU가 OpenGL 4.3을 지원하지 않거나 최신 그래픽 드라이버를 가지고 있지 않을 수 있습니다.<br><br>GL 렌더러:<br>%1 - + Error while initializing OpenGL ES 3.2! - + Your GPU may not support OpenGL ES 3.2, or you do not have the latest graphics driver.<br><br>GL Renderer:<br>%1 @@ -4577,193 +4577,193 @@ FFmpeg 설치 방법에 대한 가이드를 보려면 도움말을 누르십시 GameList - - + + Compatibility 호환성 - - + + Region 지역 - - + + File type 파일 타입 - - + + Size 크기 - + Open Save Data Location 세이브 데이터 위치 열기 - + Open Extra Data Location Extra Date 위치 열기 - + Open Application Location 어플리케이션 위치 열기 - + Open Update Data Location 업데이트 데이터 위치 열기 - + Open DLC Data Location DLC 데이터 위치 열기 - + Open Texture Dump Location 텍스처 덤프 위치 열기 - + Open Custom Texture Location 사용자 정의 텍스처 위치 열기 - + Open Mods Location 모드 위치 열기 - + Dump RomFS RomFS 덤프 - + Disk Shader Cache 디스크 셰이더 캐시 - + Open Shader Cache Location 셰이더 캐시 위치 열기 - + Delete OpenGL Shader Cache OpenGL 셰이더 캐시 삭제하기 - + Uninstall - + Everything - + Game - + Update - + DLC - + Navigate to GameDB entry GameDB 엔트리로 이동 - + Properties 속성 - - - - + + + + Citra - + Are you sure you want to completely uninstall '%1'? This will delete the game if installed, as well as any installed updates or DLC. - - + + %1 (Update) - - + + %1 (DLC) - + Are you sure you want to uninstall '%1'? - + Are you sure you want to uninstall the update for '%1'? - + Are you sure you want to uninstall all DLC for '%1'? - + Scan Subfolders 서브 디렉토리 스캔 - + Remove Game Directory 게임 디렉터리 삭제 - + Move Up 위로 - + Move Down 아래로 - + Open Directory Location 디렉터리 위치 열기 - + Name 이름 @@ -4771,81 +4771,81 @@ This will delete the game if installed, as well as any installed updates or DLC. GameListItemCompat - + Perfect 완벽함 - + Game functions flawless with no audio or graphical glitches, all tested functionality works as intended without any workarounds needed. 오디오 또는 그래픽 글리치가 없이 게임이 완벽하게 작동하며, 테스트된 모든 기능이 특별한 해결방안 없이 의도대로 작동합니다. - + Great 좋음 - + Game functions with minor graphical or audio glitches and is playable from start to finish. May require some workarounds. - 게임은 사소한 그래픽문제나 오디오 글리치와 함께 처음부터 끝까지 진행가능합니다. + 게임은 사소한 그래픽문제나 오디오 글리치와 함께 처음부터 끝까지 진행가능합니다. 몇가지 해결방안이 필요할 수 있습니다. - + Okay 양호 - + Game functions with major graphical or audio glitches, but game is playable from start to finish with workarounds. - 게임은 주요 그래픽문제나 오디오 글리치와 함께 처음부터 끝까지 진행가능합니다. + 게임은 주요 그래픽문제나 오디오 글리치와 함께 처음부터 끝까지 진행가능합니다. 몇가지 해결방안이 필요할 수 있습니다. - + Bad 나쁨 - + Game functions, but with major graphical or audio glitches. Unable to progress in specific areas due to glitches even with workarounds. - 게임은 작동하지만 주요 그래픽이나 오디오 글리치가 있습니다. 특별한 해결방안에도 불구하고 + 게임은 작동하지만 주요 그래픽이나 오디오 글리치가 있습니다. 특별한 해결방안에도 불구하고 특정한 지역에서 글리치로 인해 진행이 불가능합니다 - + Intro/Menu 인트로/메뉴 - + Game is completely unplayable due to major graphical or audio glitches. Unable to progress past the Start Screen. - 주요 그래픽 또는 오디오 결함으로 인해 게임을 완전히 재생할 수 없습니다. 시작화면을 + 주요 그래픽 또는 오디오 결함으로 인해 게임을 완전히 재생할 수 없습니다. 시작화면을 지날 수 없습니다 - + Won't Boot 실행불가 - + The game crashes when attempting to startup. 시작할 때 게임이 충돌합니다. - + Not Tested 테스트되지 않음 - + The game has not yet been tested. 이 게임은 아직 테스트되지 않았습니다. @@ -4853,7 +4853,7 @@ Screen. GameListPlaceholder - + Double-click to add a new folder to the game list 게임 목록에 새 폴더를 추가하려면 두 번 클릭합니다 @@ -4861,27 +4861,27 @@ Screen. GameListSearchField - + of 중의 - + result 결과 - + results 결과 - + Filter: 필터: - + Enter pattern to filter 검색 필터 입력 @@ -4889,47 +4889,47 @@ Screen. GameRegion - + Japan 일본 - + North America 북미 - + Europe 유럽 - + Australia 호주 - + China 중국 - + Korea 한국 - + Taiwan 대만 - + Invalid region 올바르지 않은 지역 - + Region free 지역해제 @@ -4937,23 +4937,23 @@ Screen. GraphicsBreakPointsWidget - + Pica Breakpoints Pica 브레이크포인트 - - + + Emulation running 에뮬레이션 실행중 - + Resume 재개하기 - + Emulation halted at breakpoint 에뮬레이션이 브레이크포인트에서 정지했습니다 @@ -4961,146 +4961,146 @@ Screen. GraphicsSurfaceWidget - + Pica Surface Viewer Pica Surface 뷰어 - + Color Buffer 색상 버퍼 - + Depth Buffer 깊이 버퍼 - + Stencil Buffer 스텐실 버퍼 - + Texture 0 텍스처 0 - + Texture 1 텍스처 1 - + Texture 2 텍스처 2 - + Custom 커스텀 - + Unknown 알 수없는 - + Save 저장하기 - + Source: 출처: - + Physical Address: 물리 주소: - + Width: 너비: - + Height: 높이: - + Format: 포맷: - + X: X: - + Y: Y: - + Pixel out of bounds 픽셀이 경계를 벗어남 - + (unable to access pixel data) (픽셀 데이터에 액세스할 수 없음) - + (invalid surface address) (잘못된 surface 주소) - + (unknown surface format) (알 수 없는 surface 형식) - + Portable Network Graphic (*.png) 포터블 네트워크 그래픽 (*.png) - + Binary data (*.bin) 바이너리 데이터 (*.bin) - + Save Surface Surface 저장하기 - - - - + + + + Error 오류 - - + + Failed to open file '%1' '%1' 파일을 여는데 실패했습니다 - + Failed to save surface data to file '%1' '%1'에 surface 데이터를 저장하는데 실패했습니다 - + Failed to completely write surface data to file. The saved data will likely be corrupt. surface 데이터를 파일에 쓰는데 실패했습니다. 저장된 데이터가 손상 될 수 있습니다. @@ -5108,42 +5108,42 @@ Screen. GraphicsTracingWidget - + CiTrace Recorder CiTrace 레코더 - + Start Recording 녹화 시작 - + Stop and Save 저장하고 종료 - + Abort Recording 녹화 중단하기 - + Save CiTrace CiTrace 저장하기 - + CiTrace File (*.ctf) CiTrace 파일 (*.ctf) - + CiTracing still active CiTracing 실행중 - + A CiTrace is still being recorded. Do you want to save it? If not, all recorded data will be discarded. CiTrace는 계속 녹화중입니다. 저장하시겠습니까? 그렇지 않으면, 모든 녹화된 데이터는 폐기됩니다. @@ -5151,17 +5151,17 @@ Screen. GraphicsVertexShaderModel - + Offset 오프셋 - + Raw Raw - + Disassembly 디스어셈블리 @@ -5169,126 +5169,126 @@ Screen. GraphicsVertexShaderWidget - + Save Shader Dump 셰이더 덤프 저장하기 - + Shader Binary (*.shbin) 셰이더 바이너리 (*.shbin) - + Pica Vertex Shader Pica Vertex Shader - + (data only available at vertex shader invocation breakpoints) (버텍스 셰이더 호출 브레이크포인트에서만 데이터 유효합니다) - + Dump 덤프 - + Input Data 입력 데이터 - + Attribute %1 속성 %1 - + Cycle Index: 사이클 인덱스: - + SRC1: %1, %2, %3, %4 SRC1: %1, %2, %3, %4 - + SRC2: %1, %2, %3, %4 SRC2: %1, %2, %3, %4 - + SRC3: %1, %2, %3, %4 SRC3: %1, %2, %3, %4 - + DEST_IN: %1, %2, %3, %4 DEST_IN: %1, %2, %3, %4 - + DEST_OUT: %1, %2, %3, %4 DEST_OUT: %1, %2, %3, %4 - + Address Registers: %1, %2 주소 레지스터: %1, %2 - + Compare Result: %1, %2 비교 결과: %1, %2 - + Static Condition: %1 정적 조건: %1 - + Dynamic Conditions: %1, %2 동적 조건: %1, %2 - + Loop Parameters: %1 (repeats), %2 (initializer), %3 (increment), %4 루프 매개변수: %1(반복), %2(이니셜라이저), %3(증분), %4 - + Instruction offset: 0x%1 인스트럭션 오프셋: 0x%1 - + -> 0x%2 -> 0x%2 - + (last instruction) (마지막 명령어) @@ -5296,67 +5296,67 @@ Screen. HostRoom - + Create Room 방 만들기 - + Room Name 방 이름 - + Preferred Game 선호되는 게임 - + Max Players 최대 플레이어 - + Username 사용자 이름 - + (Leave blank for open game) (열린 게임을 위해 비워두기) - + Password 비밀번호 - + Port 포트 - + Room Description 방 설명 - + Load Previous Ban List 이전 차단 목록 불러오기 - + Public 공개 - + Unlisted 비공개 - + Host Room 방 호스트 @@ -5364,12 +5364,12 @@ Screen. HostRoomWindow - + Error 오류 - + Failed to announce the room to the public lobby. In order to host a room publicly, you must have a valid Citra account configured in Emulation -> Configure -> Web. If you do not want to publish a room in the public lobby, then select Unlisted instead. Debug Message: 공개 로비에 방을 알리는데 실패했습니다. 방을 공개적으로 호스트하기 위해서는 에뮬레이션 -> 설정 -> 웹 에서 유효한 Citra 계정을 설정해야합니다. 공용 로비에 방을 게시하고 싶지 않으면 비공개를 선택하십시오. @@ -5379,47 +5379,47 @@ Debug Message: IPCRecorder - + IPC Recorder IPC 레코더 - + Enable Recording 녹화 활성화 - + Filter: 필터: - + Leave empty to disable filtering 필터링을 사용하지 않으려면 비워 두십시오. - + # # - + Status 상태 - + Service Service - + Function Function - + Clear 지우기 @@ -5427,47 +5427,47 @@ Debug Message: IPCRecorderWidget - + Invalid Invalid - + Sent Sent - + Handling Handling - + Success Success - + Error Error - + HLE Unimplemented HLE Unimplemented - + HLE HLE - + LLE LLE - + Unknown 알 수없는 @@ -5475,7 +5475,7 @@ Debug Message: LLEServiceModulesWidget - + Toggle LLE Service Modules LLE 서비스 모듈 전환하기 @@ -5483,54 +5483,54 @@ Debug Message: LoadingScreen - + Loading Shaders 387 / 1628 387 / 1628 셰이더 불러오는 중 - + Loading Shaders %v out of %m %v / %m 셰이더 불러오는 중 - + Estimated Time 5m 4s 추정 시간 5m 4s - + Loading... 불러오는 중... - + Preloading Textures %1 / %2 프리로딩 텍스처 %1 / %2 - + Preparing Shaders %1 / %2 셰이더 준비중 %1 / %2 - + Loading Shaders %1 / %2 %1 / %2 셰이더 불러오는 중 - + Launching... 실행중... - + Now Loading %1 지금 불러오는 중 %1 - + Estimated Time %1 추정 시간 %1 @@ -5538,83 +5538,83 @@ Debug Message: Lobby - + Public Room Browser 공개 방 브라우저 - - + + Nickname 닉네임 - + Filters 필터 - + Search 검색 - + Games I Own 내가 보유한 게임 - + Hide Empty Rooms 빈 방 숨기기 - + Hide Full Rooms 가득찬 방 숨기기 - + Refresh Lobby 로비 새로고침 - + Password Required to Join 참가시 비밀번호 필요 - + Password: 비밀번호: - + Room Name 방 이름 - + Preferred Game 선호되는 게임 - + Host 호스트 - + Players 플레이어 - + Refreshing 새로고침중 - + Refresh List 목록 새로고침 @@ -5622,362 +5622,362 @@ Debug Message: MainWindow - + Citra Citra - + &File 파일(&F) - + Boot Home Menu 홈메뉴 부팅 - + Recent Files 최근 파일 - + Amiibo Amiibo - + &Emulation 에뮬레이션(&E) - + Save State 상태 저장하기 - + Load State 상태 불러오기 - + &View 보기(&V) - + Debugging 디버깅 - + Screen Layout 화면 레이아웃 - + Multiplayer 멀티플레이어 - + Tools 도구 - + Movie 무비 - + Frame Advance 프레임 어드밴스 - + &Help 도움말(&H) - + Load File... 파일 불러오기... - + Install CIA... CIA 설치하기... - + JPN JPN - + USA USA - + EUR EUR - + AUS AUS - + CHN CHN - + KOR KOR - + TWN TWN - + E&xit 종료(&X) - + &Pause 일시중지(&P) - + &Stop 정지(&S) - + Save 저장하기 - + Load 불러오기 - + FAQ FAQ - + About Citra Citra에 대하여 - + Single Window Mode 단일 창 모드 - + Save to Oldest Slot 가장 오래된 슬롯에 저장하기 - + Load from Newest Slot 최신 슬롯에서 불러오기 - + Configure... 설정... - + Display Dock Widget Headers Dock 위젯 헤더 보이기 - + Show Filter Bar 필터 표시줄 표시하기 - + Show Status Bar 상태 표시줄 표시하기 - + Create Pica Surface Viewer Pica Surface Viewer 생성 - + Record... 녹화하기... - + Play... 재생하기... - + Close 닫기 - + Save without Closing 닫지 않고 저장하기 - + Read-Only Mode 읽기 전용 모드 - + Enable Frame Advancing 프레임 어드밴스 활성화 - + Advance Frame 프레임 진행 - + Capture Screenshot 캡쳐 스크린숏 - + Dump Video 비디오 덤프 - + Browse Public Game Lobby 공개 방 찾아보기 - + Create Room 방 만들기 - + Leave Room 방 나가기 - + Direct Connect to Room 방에 직접 연결하기 - + Show Current Room 현재 방 표시하기 - + Fullscreen 전체화면 - + Modify Citra Install Citra 설치 수정하기 - + Opens the maintenance tool to modify your Citra installation Citra 설치 변경을 위한 유지보수 도구 열기 - + Default 기본값 - + Single Screen 단일 화면 - + Large Screen 큰 화면 - + Hybrid Screen 하이브리드 스크린 - + Side by Side 좌우 보기 - + Separate Windows 독립된 창 - + Swap Screens 화면 바꾸기 - + Rotate Upright 수직 회전 - + Check for Updates 업데이트 확인 - + Report Compatibility 호환성 보고하기 - + Restart 재시작 - + Load... 불러오기... - + Remove 제거 - + Open Citra Folder Citra 폴더 열기 - + Configure Current Game... 현재 게임 설정하기... @@ -5985,7 +5985,7 @@ Debug Message: MicroProfileDialog - + MicroProfile 마이크로프로필 @@ -5993,48 +5993,48 @@ Debug Message: ModerationDialog - + Moderation 관리 - + Ban List 차단 목록 - - + + Refreshing 새로고침 - + Unban 차단해제 - + Subject 대상 - + Type 유형 - + Forum Username 포럼 사용자 이름 - + IP Address IP 주소 - + Refresh 새로고침 @@ -6042,91 +6042,91 @@ Debug Message: MoviePlayDialog - - + + Play Movie 무비 재생 - + File: 파일 - + ... ... - + Info 정보 - + Game: 게임: - + Author: 작성자: - + Rerecord Count: 재녹화 횟수: - + Length: 길이: - + Current running game will be stopped. 현재 실행 중인 게임이 중지됩니다. - + <br>Current recording will be discarded. <br>현재 녹화가 폐기됩니다. - + Citra TAS Movie (*.ctm) Citra TAS 무비(*.ctm) - + Invalid movie file. 무비 파일이 잘못되었습니다. - + Revision dismatch, playback may desync. 버전 불일치, 재생이 동기화되지 않을 수 있습니다. - + Indicated length is incorrect, file may be corrupted. 표시된 길이가 잘못되었습니다. 파일이 손상되었을 수 있습니다. - - - - + + + + (unknown) (알 수 없음) - + Game used in this movie is not in game list. 이 무비에 사용된 게임은 게임 목록에 없습니다. - + (>1 day) (>1일) @@ -6134,43 +6134,43 @@ Debug Message: MovieRecordDialog - - + + Record Movie 무비 녹화 - + File: 파일: - + ... ... - + Author: 작성자: - + Current running game will be restarted. 현재 실행 중인 게임이 다시 시작됩니다. - + <br>Current recording will be discarded. <br>현재 녹화가 폐기됩니다. - + Recording will start once you boot a game. 게임을 부팅하면 녹화가 시작됩니다. - + Citra TAS Movie (*.ctm) Citra TAS Movie(*.ctm) @@ -6178,44 +6178,44 @@ Debug Message: MultiplayerState - - + + Current connection status 현재 연결 상태 - - + + Not Connected. Click here to find a room! 연결되지 않았습니다. 방을 찾으려면 여기를 클릭하세요! - - - + + + Connected 연결됨 - - + + Not Connected 연결되지 않음 - + Error 오류 - + Failed to update the room information. Please check your Internet connection and try hosting the room again. Debug Message: 방 정보를 업데이트하지 못했습니다. 인터넷 연결을 확인하고 방을 다시 호스팅 해보십시오. 디버그 메시지: - + New Messages Received 새 메시지 수신 @@ -6223,22 +6223,22 @@ Debug Message: NetworkMessage - + Leave Room 방 나가기 - + You are about to close the room. Any network connections will be closed. 방을 닫으려고 합니다. 모든 네트워크 연결이 닫힙니다. - + Disconnect 연결끊기 - + You are about to leave the room. Any network connections will be closed. 방을 닫으려고 합니다. 모든 네트워크 연결이 닫힙니다. @@ -6246,110 +6246,110 @@ Debug Message: NetworkMessage::ErrorManager - + Username is not valid. Must be 4 to 20 alphanumeric characters. - + Room name is not valid. Must be 4 to 20 alphanumeric characters. - + Username is already in use or not valid. Please choose another. - + IP is not a valid IPv4 address. - + Port must be a number between 0 to 65535. - + You must choose a Preferred Game to host a room. If you do not have any games in your game list yet, add a game folder by clicking on the plus icon in the game list. - + Unable to find an internet connection. Check your internet settings. - + Unable to connect to the host. Verify that the connection settings are correct. If you still cannot connect, contact the room host and verify that the host is properly configured with the external port forwarded. - + Unable to connect to the room because it is already full. - + Creating a room failed. Please retry. Restarting Citra might be necessary. - + The host of the room has banned you. Speak with the host to unban you or try a different room. - + Version mismatch! Please update to the latest version of Citra. If the problem persists, contact the room host and ask them to update the server. - + Incorrect password. - + An unknown error occurred. If this error continues to occur, please open an issue - + Connection to room lost. Try to reconnect. - + You have been kicked by the room host. - + MAC address is already in use. Please choose another. - + Your Console ID conflicted with someone else's in the room. Please go to Emulation > Configure > System to regenerate your Console ID. - + You do not have enough permission to perform this action. - + The user you are trying to kick/ban could not be found. They may have left the room. - + Error 오류 @@ -6357,37 +6357,37 @@ They may have left the room. OptionSetDialog - + Options 옵션 - + Unset 설정 해제 - + unknown 알수없음 - + %1 &lt;%2> %3 %1 &lt;%2> %3 - + Range: %1 - %2 범위: %1 - %2 - + custom 커스텀 - + %1 (0x%2) %3 %1 (0x%2) %3 @@ -6395,32 +6395,32 @@ They may have left the room. OptionsDialog - + Options 옵션 - + Double click to see the description and change the values of the options. 설명을 보고 옵션 값을 변경하려면 두 번 클릭합니다. - + Specific 한정적 - + Generic 일반적인 - + Name 이름 - + Value @@ -6428,157 +6428,157 @@ They may have left the room. QObject - + Supported image files (%1) 지원되는 이미지 파일 (%1) - + Open File 파일 열기 - + Error 오류 - + Couldn't load the camera 카메라를 불러올 수 없습니다 - + Couldn't load %1 %1을(를) 불러올 수 없습니다 - - + + Shift Shift - - + + Ctrl Ctrl - - + + Alt Alt - - - + + + [not set] [설정 안함] - - + + Hat %1 %2 방향키 %1 %2 - - - - - - + + + + + + Axis %1%2 Axis %1%2 - - + + Button %1 버튼 %1 - + GC Axis %1%2 GC Axis %1%2 - + GC Button %1 GC 버튼 %1 - - - + + + [unknown] [알수없는] - + [unused] [사용되지않음] - + auto 자동 - + true - + false 거짓 - - + + none 없음 - + %1 (0x%2) %1 (0x%2) - + Invalid region 올바르지 않은 지역 - + Installed Titles 설치된 제목 - + System Titles 시스템 제목 - + Add New Game Directory 새 게임 디렉터리 추가하기 - + Not playing a game 게임을 하고 있지 않음 - + %1 is not playing a game %1 님은 게임을 하고 있지 않습니다 - + %1 is playing %2 %1 님은 %2을(를) 플레이중입니다 @@ -6586,7 +6586,7 @@ They may have left the room. QtKeyboard - + Software Keyboard 소프트웨어 키보드 @@ -6594,27 +6594,27 @@ They may have left the room. QtKeyboardDialog - + Text length is not correct (should be %1 characters) 텍스트 길이가 올바르지 않습니다 (%1자여야 합니다) - + Text is too long (should be no more than %1 characters) 텍스트가 너무 깁니다 (%1자 이하여야 합니다 ) - + Blank input is not allowed 공백 입력은 허용되지 않습니다. - + Empty input is not allowed 빈 입력은 허용되지 않습니다. - + Validation error 검증 오류 @@ -6622,12 +6622,12 @@ They may have left the room. QtMiiSelectorDialog - + Mii Selector Mii 선택도구 - + Standard Mii 표준 Mii @@ -6635,95 +6635,95 @@ They may have left the room. RecordDialog - + View Record 레코드 보기 - + Client Client - - + + Process: Process: - - + + Thread: 스레드: - - + + Session: Session: - + Server Server - + General General - + Client Port: Client Port: - + Service: Service: - + Function: Function: - + Command Buffer 명령 버퍼 - + Select: 선택: - + Request Untranslated 요청이 번역되지 않음 - + Request Translated 요청이 번역됨 - + Reply Untranslated 응답이 번역되지 않음 - + Reply Translated 응답이 번역됨 - + OK 확인 - + null null @@ -6731,37 +6731,37 @@ They may have left the room. RegistersWidget - + Registers 레지스터 - + VFP Registers VFP 레지스터 - + VFP System Registers VFP 시스템 레지스터 - + Vector Length 벡터 길이 - + Vector Stride 벡터 스트라이드 - + Rounding Mode 반올림 모드 - + Vector Iteration Count 벡터 반복 횟수 @@ -6769,7 +6769,7 @@ They may have left the room. SequenceDialog - + Enter a hotkey 단축키 입력 @@ -6777,7 +6777,7 @@ They may have left the room. WaitTreeEvent - + reset type = %1 초기화 유형 = %1 @@ -6785,12 +6785,12 @@ They may have left the room. WaitTreeMutex - + locked %1 times by thread: 스레드에 의해 %1번 잠김: - + free free @@ -6798,7 +6798,7 @@ They may have left the room. WaitTreeMutexList - + holding mutexes holding mutexes @@ -6806,12 +6806,12 @@ They may have left the room. WaitTreeObjectList - + waiting for all objects 모든 객체를 기다리는 중 - + waiting for one of the following objects 다음 객체 중 하나를 기다리는 중 @@ -6819,12 +6819,12 @@ They may have left the room. WaitTreeSemaphore - + available count = %1 사용 가능한 개수 = %1 - + max count = %1 최대 개수 = %1 @@ -6832,112 +6832,112 @@ They may have left the room. WaitTreeThread - + running 실행 - + ready 준비 - + waiting for address 0x%1 0x%1 주소를 기다리는 중 - + sleeping sleeping - + waiting for IPC response IPC 응답을 기다리는 중 - + waiting for objects 객체를 기다리는 중 - + waiting for HLE return HLE 반환을 기다리는 중 - + dormant 휴면 - + dead dead - + PC = 0x%1 LR = 0x%2 PC = 0x%1 LR = 0x%2 - + default 기본값 - + all all - + AppCore AppCore - + SysCore SysCore - + Unknown processor %1 알수없는 프로세서 %1 - + object id = %1 객체 id = %1 - + processor = %1 프로세서 = %1 - + thread id = %1 스레드 id = %1 - + process = %1 (%2) 프로세스 = %1 (%2) - + priority = %1(current) / %2(normal) 우선순위 = %1(현재) / %2(보통) - + last running ticks = %1 마지막으로 실행한 틱 수 = %1 - + not holding mutex mutex를 보유하지 않음 @@ -6945,7 +6945,7 @@ They may have left the room. WaitTreeThreadList - + waited by thread 스레드로 기다림 @@ -6953,17 +6953,17 @@ They may have left the room. WaitTreeTimer - + reset type = %1 초기화 유형 = %1 - + initial delay = %1 초기 지연시간 = %1 - + interval delay = %1 중간 지연시간 = %1 @@ -6971,27 +6971,27 @@ They may have left the room. WaitTreeWaitObject - + [%1]%2 %3 [%1]%2 %3 - + waited by no thread 스레드 없이 기다림 - + one shot one shot - + sticky sticky - + pulse 주기 @@ -6999,7 +6999,7 @@ They may have left the room. WaitTreeWidget - + Wait Tree Wait Tree diff --git a/dist/languages/lt_LT.ts b/dist/languages/lt_LT.ts index 22e6a7db4..bf983dbe1 100644 --- a/dist/languages/lt_LT.ts +++ b/dist/languages/lt_LT.ts @@ -2,17 +2,17 @@ ARMRegisters - + ARM Registers ARM registrai - + Register Registras - + Value Vertė @@ -20,27 +20,27 @@ AboutDialog - + About Citra Apie „Citra“ - - <html><head/><body><p><img src=":/icons/citra.png"/></p></body></html> - <html><head/><body><p><img src=":/icons/citra.png"/></p></body></html> + + <html><head/><body><p><img src=":/icons/lime.png"/></p></body></html> + <html><head/><body><p><img src=":/icons/lime.png"/></p></body></html> - + <html><head/><body><p><span style=" font-size:28pt;">Citra</span></p></body></html> <html><head/><body><p><span style=" font-size:28pt;">Citra</span></p></body></html> - + <html><head/><body><p>%1 | %2-%3 (%4)</p></body></html> <html><head/><body><p>%1 | %2-%3 (%4)</p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -57,12 +57,12 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">Ši programa neturėtų būti naudojama žaisti žaidimus, kurių jūs nesate įsigijęs legaliai.</span></p></body></html> - + <html><head/><body><p><a href="https://citra-emu.org/"><span style=" text-decoration: underline; color:#039be5;">Website</span></a> | <a href="https://community.citra-emu.org/"><span style=" text-decoration: underline; color:#039be5;">Forum</span></a> | <a href="https://github.com/citra-emu"><span style=" text-decoration: underline; color:#039be5;">Source Code</span></a> | <a href="https://github.com/citra-emu/citra/graphs/contributors"><span style=" text-decoration: underline; color:#039be5;">Contributors</span></a> | <a href="https://github.com/citra-emu/citra/blob/master/license.txt"><span style=" text-decoration: underline; color:#039be5;">License</span></a></p></body></html> <html><head/><body><p><a href="https://citra-emu.org/"><span style=" text-decoration: underline; color:#039be5;">Svetainė</span></a> | <a href="https://community.citra-emu.org/"><span style=" text-decoration: underline; color:#039be5;">Forumas</span></a> | <a href="https://github.com/citra-emu"><span style=" text-decoration: underline; color:#039be5;">Išeitinis kodas</span></a> | <a href="https://github.com/citra-emu/citra/graphs/contributors"><span style=" text-decoration: underline; color:#039be5;">Pagalbininkai</span></a> | <a href="https://github.com/citra-emu/citra/blob/master/license.txt"><span style=" text-decoration: underline; color:#039be5;">Licencija</span></a></p></body></html> - + <html><head/><body><p><span style=" font-size:7pt;">&quot;3DS&quot; is a trademark of Nintendo. Citra is not affiliated with Nintendo in any way.</span></p></body></html> <html><head/><body><p><span style=" font-size:7pt;">&quot;3DS&quot; yra „Nintendo“ prekės ženklas. „Citra“ jokiu būdu nėra susijusi su „Nintendo“.</span></p></body></html> @@ -70,47 +70,47 @@ p, li { white-space: pre-wrap; } BreakPointModel - + Pica command loaded „Pica“ komanda įkrauta - + Pica command processed „Pica“ komanda apdorota - + Incoming primitive batch Įeinanti primityvi partija - + Finished primitive batch Primityvi partija užbaigta - + Vertex shader invocation Vertekso šešėliuoklės iškvietimas - + Incoming display transfer Įeinantis vaizdo perdavimas - + GSP command processed GSP komanda apdorota - + Buffers swapped Buferiai apkeisti - + Unknown debug context event Nežinomas derinimo konteksto įvykis @@ -118,32 +118,32 @@ p, li { white-space: pre-wrap; } CalibrationConfigurationDialog - + Communicating with the server... Susisiekiama su serveriu... - + Cancel Atšaukti - + Touch the top left corner <br>of your touchpad. Palieskite viršutinį kairįjį kampą <br> jūsų jutikliniame kilimėlyje. - + Now touch the bottom right corner <br>of your touchpad. Dabar palieskite apatinįjį dešinįjį kampą <br> jūsų jutikliniame kilimėlyje. - + Configuration completed! Konfigūracija baigta! - + OK Gerai @@ -151,93 +151,93 @@ p, li { white-space: pre-wrap; } ChatRoom - + Room Window Serverio langas - + Send Chat Message Siųsti pokalbio žinutę - + Send Message Siųsti žinutę - + Members Nariai - + %1 has joined %1 prisijungė - + %1 has left %1 atsijungė - + %1 has been kicked %1 buvo išmestas - + %1 has been banned - + %1 has been unbanned - + View Profile Peržiūrėti Profilį - - + + Block Player Užblokuoti žaidėją - + When you block a player, you will no longer receive chat messages from them.<br><br>Are you sure you would like to block %1? Kai jūs užblokuosite žaidėją, jūs nebegausite naujų pranešimų nuo jo. <br><br>Ar tikrai norite užblokuoti %1? - + Kick Išmesti - + Ban - + Kick Player Išmesti Žaidėją - + Are you sure you would like to <b>kick</b> %1? Ar tikrai norite <b>išmesti</b> %1? - + Ban Player - + Are you sure you would like to <b>kick and ban</b> %1? This would ban both their forum username and their IP address. @@ -247,22 +247,22 @@ This would ban both their forum username and their IP address. ClientRoom - + Room Window Serverio langas - + Room Description Serverio aprašymas - + Moderation... - + Leave Room Palikti serverį @@ -270,17 +270,17 @@ This would ban both their forum username and their IP address. ClientRoomWindow - + Connected Prisijungta - + Disconnected Atsijungta - + %1 (%2/%3 members) - connected %1 (%2/%3 vartotojai) - prisijungta @@ -288,108 +288,108 @@ This would ban both their forum username and their IP address. CompatDB - + Report Compatibility Pranešti suderinamumą - - + + Report Game Compatibility Pranešti žaidimo suderinamumą - + <html><head/><body><p><span style=" font-size:10pt;">Should you choose to submit a test case to the </span><a href="https://citra-emu.org/game/"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">Citra Compatibility List</span></a><span style=" font-size:10pt;">, The following information will be collected and displayed on the site:</span></p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Hardware Information (CPU / GPU / Operating System)</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Which version of Citra you are running</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The connected Citra account</li></ul></body></html> <html><head/><body><p><span style=" font-size:10pt;">Jeigu jūs norite pateikti savo testavimus į </span><a href="https://citra-emu.org/game/"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">„Citra" suderinamumo sąrašą</span></a><span style=" font-size:10pt;">, ši informacija bus surinkta ir parodyta svetainėje:</span></p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Kompiuterinės įrangos informacija (CPU / GPU / operacinė sistema)</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Kokią „Citra" versiją naudojate</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Prijungta „Citra" paskyra</li></ul></body></html> - + Perfect Tobulai - + <html><head/><body><p>Game functions flawlessly with no audio or graphical glitches.</p></body></html> <html><head/><body><p>Žaidimas veikia nuostabiai, be jokių garso ar vaizdo trikdžių.</p></body></html> - + Great - + <html><head/><body><p>Game functions with minor graphical or audio glitches and is playable from start to finish. May require some workarounds.</p></body></html> <html><head/><body><p>Žaidimas veikia su smulkiais garso arba vaizdo trikdžiais ir yra galimas žaisti nuo pradžios iki galo. Gali reikalauti keleto problemų apėjimų.</p></body></html> - + Okay Gerai - + <html><head/><body><p>Game functions with major graphical or audio glitches, but game is playable from start to finish with workarounds.</p></body></html> <html><head/><body><p>Žaidimas veikia su dideliais garso arba vaizdo trikdžiais, bet žaidimas galimas žaisti nuo pradžios iki galo su problemų apėjimais.</p></body></html> - + Bad Blogai - + <html><head/><body><p>Game functions, but with major graphical or audio glitches. Unable to progress in specific areas due to glitches even with workarounds.</p></body></html> <html><head/><body><p>Žaidimas veikia, bet su dideliais garso arba vaizdo trikdžiais. Neįmanoma pereiti keleto vietų net ir su problemų apėjimais.</p></body></html> - + Intro/Menu Rodo tik pradžios ekraną - + <html><head/><body><p>Game is completely unplayable due to major graphical or audio glitches. Unable to progress past the Start Screen.</p></body></html> <html><head/><body><p>Žaidimas yra visiškai neveikiantis dėl didelių garso arba vaizdo trikdžių. Neįmanoma pratęsti žaidimo toliau kaip nuo pradžios ekrano.</p></body></html> - + Won't Boot Nepasileidžia - + <html><head/><body><p>The game crashes when attempting to startup.</p></body></html> <html><head/><body><p>Žaidimas netikėtai išsijungia jam bandant pasileisti.</p></body></html> - + <html><head/><body><p>Independent of speed or performance, how well does this game play from start to finish on this version of Citra?</p></body></html> <html><head/><body><p>Neįskaitant jūsų greičio ar FPS, kaip šis žaidimas žaidžiasi nuo pradžios iki galo šitoje „Citra" versijoje?</p></body></html> - + Thank you for your submission! Ačiū už jūsų pateikimą! - + Submitting Pateikiama - + Communication error Komunikacijos klaida - + An error occurred while sending the Testcase - + Next Kitas @@ -397,93 +397,93 @@ This would ban both their forum username and their IP address. ConfigureAudio - + Output - + Emulation: Emuliacija: - + HLE (fast) HLE (greitas) - + LLE (accurate) LLE (tikslus) - + LLE multi-core LLE multi-core - + Output Type - + Output Device - + This post-processing effect adjusts audio speed to match emulation speed and helps prevent audio stutter. This however increases audio latency. Šis efektas suderina garso greitį su emuliacijos greičiu ir padeda išvengti garso trūkinėjimų. Bet tai kartu pailgina garso latenciją. - + Enable audio stretching Įjungti garso tęstinumą - + Use global volume - + Set volume: - + Volume: Garsumas: - + 0 % 0 % - + Microphone Mikrofonas - + Input Type Įvesties Tipas - + Input Device Įvesties Įrenginys - - + + Auto - + %1% Volume percentage (e.g. 50%) %1% @@ -492,203 +492,203 @@ This would ban both their forum username and their IP address. ConfigureCamera - + Form Forma - + Camera Kamera - - + + Select the camera to configure Pasirinkite, kurią kamerą konfigūruoti - + Camera to configure: Kamera, kurią konfigūruosite: - + Front Priekinė - + Rear Galinė - - + + Select the camera mode (single or double) Pasirinkite kameros režimą (vienguba arba dviguba) - + Camera mode: Kameros režimas: - + Single (2D) Viengubas (2D) - + Double (3D) Dvigubas (3D) - - + + Select the position of camera to configure Pasirinkite kameros poziciją konfigūracijai - + Camera position: Kameros pozicija: - + Left Kairinė - + Right Dešininė - + Configuration Konfigūracija - - + + Select where the image of the emulated camera comes from. It may be an image or a real camera. Pasirinkite kameros įvestį. Tai gali būti paveikslėlis arba tikra kamera. - + Camera Image Source: Kameros įvestis: - + Blank (blank) Tuščia - + Still Image (image) Nejudantis atvaizdas (paveikslėlis) - + System Camera (qt) Kompiuterio kamera (Qt) - + File: Failas: - + ... ... - - + + Select the system camera to use Pasirinkite, kurią sistemos kamerą naudoti - + Camera: Kamera: - + <Default> <Default> - - + + Select the image flip to apply Pasirinkite, kurį vaizdo apvertimo būdą naudoti - + Flip: Apvertimas: - + None Nėra - + Horizontal Horizontalus - + Vertical Vertikalus - + Reverse Atvirkščias - + Select an image file every time before the camera is loaded Pasirinkite paveikslėlį kiekvieną kartą prieš kameros įkrovimą - + Prompt before load Paklausti prieš įkrovimą - + Preview Peržiūra - + Resolution: 512*384 Skiriamoji geba: 512*384 - + Click to preview Paspauskite, kad peržiūrėti - + Resolution: %1*%2 - + Supported image files (%1) Palaikomi paveikslėlių tipai (%1) - + Open File Atidaryti failą @@ -696,87 +696,87 @@ This would ban both their forum username and their IP address. ConfigureCheats - - + + Cheats - + Add Cheat - + Available Cheats: - + Name - + Type - + Save - + Delete - + Name: - + Notes: - + Code: - + Would you like to save the current cheat? - - - + + + Save Cheat - + Please enter a cheat name. - + Please enter the cheat code. - + Cheat code line %1 is not valid. Would you like to ignore the error and continue? - - + + [new cheat] @@ -784,127 +784,127 @@ Would you like to ignore the error and continue? ConfigureDebug - + Form Forma - + GDB GDB - + Enable GDB Stub Įjungti GDB „kelmą“ - + Port: Įvadas: - + Logging Žurnalas - + Global Log Filter Žurnalo filtras - + Show Log Console (Windows Only) Rodyti žurnalo langą (tik Windows sistemoms) - + Open Log Location Atidaryti žurnalo vietą - + CPU - + Use global clock speed - + Set clock speed: - + CPU Clock Speed - + <html><body>Changes the emulated CPU clock frequency.<br>Underclocking can increase performance but may cause the game to freeze.<br>Overclocking may reduce in game lag but also might cause freezes</body></html> - + <html><head/><body><p>Enables the use of the ARM JIT compiler for emulating the 3DS CPUs. Don't disable unless for debugging purposes</p></body></html> - + Enable CPU JIT Įjungti procesoriaus JIT - + Enable debug renderer - + Dump command buffers - + Miscellaneus - + <html><head/><body><p>Introduces a delay to the first ever launched app thread if LLE modules are enabled, to allow them to initialize.</p></body></html> - + Delay app start for LLE module initialization - + <html><head/><body><p>CPU Clock Speed Information<br/>Underclocking can increase performance but may cause the game to freeze.<br/>Overclocking may reduce in game lag but also might cause freezes</p></body></html> - + Validation layer not available - + Unable to enable debug renderer because the layer <strong>VK_LAYER_KHRONOS_validation</strong> is missing. Please install the Vulkan SDK or the appropriate package of your distribution - + Command buffer dumping not available - + Unable to enable command buffer dumping because the layer <strong>VK_LAYER_LUNARG_api_dump</strong> is missing. Please install the Vulkan SDK or the appropriate package of your distribution @@ -912,92 +912,92 @@ Would you like to ignore the error and continue? ConfigureDialog - + Citra Configuration „Citra“ konfigūracija - - - + + + General Pagrindinis - - - + + + System Sistema - - + + Input Įvestis - - + + Hotkeys Spartieji klavišai - - + + Graphics Grafika - - + + Enhancements - - - + + + Audio Garsas - - + + Camera Kamera - - + + Debug Derinimas - - + + Storage - - + + Web Tinklo tarnyba - - + + UI NS (naudotojo sąsaja) - + Controls Valdymas - + Advanced @@ -1005,278 +1005,278 @@ Would you like to ignore the error and continue? ConfigureEnhancements - + Form - + Renderer - + Internal Resolution - + Auto (Window Size) - + Native (400x240) - + 2x Native (800x480) - + 3x Native (1200x720) - + 4x Native (1600x960) - + 5x Native (2000x1200) - + 6x Native (2400x1440) - + 7x Native (2800x1680) - + 8x Native (3200x1920) - + 9x Native (3600x2160) - + 10x Native (4000x2400) - + Enable Linear Filtering - + Post-Processing Shader - + Texture Filter - + None - + Anime4K - + Bicubic - + ScaleForce - + xBRZ - + MMPX - + Stereoscopy - + Stereoscopic 3D Mode - + Off - - + + Side by Side - + Anaglyph - + Interlaced - + Reverse Interlaced - + Depth - + % - + Eye to Render in Monoscopic Mode - + Left Eye (default) - + Right Eye - + Layout - + Screen Layout: - + Default - + Single Screen - + Large Screen - + Separate Windows - + Hybrid Screen - + Swap Screens - + Rotate Screens Upright - + Large Screen Proportion: - + Background Color: - + Utility - + <html><head/><body><p>Replace textures with PNG files.</p><p>Textures are loaded from load/textures/[Title ID]/.</p></body></html> - + Use Custom Textures - + <html><head/><body><p>Dump textures to PNG files.</p><p>Textures are dumped to dump/textures/[Title ID]/.</p></body></html> - + Dump Textures - + <html><head/><body><p>Load all custom textures into memory on boot, instead of loading them when the game requires them.</p></body></html> - + Preload Custom Textures - + <html><head/><body><p>Load custom textures asynchronously with background threads to reduce loading stutter</p></body></html> - + Async Custom Texture Loading @@ -1284,136 +1284,136 @@ Would you like to ignore the error and continue? ConfigureGeneral - + Form Forma - + General Pagrindinis - + Confirm exit while emulation is running Patvirtinti išėjimą veikiant emuliacijai - + Pause emulation when in background - + Mute audio when in background - + Hide mouse on inactivity - + Enable Gamemode - + Updates Atnaujinimai - + Check for updates on start Paieškoti atnaujinimų paleidžiant programą - + Silently auto update after closing Tyliai atsinaujinti išjungus programą - + Emulation Emuliacija - + Region: Regionas: - + Auto-select Automatiškai pasirinkti - + Use global emulation speed - + Set emulation speed: - + Emulation Speed: - + Screenshots - + Use global screenshot path - + Set screenshot path: - + Save Screenshots To - + ... - + Reset All Settings Atstatyti visus nustatymus - - - - - + + + + + unthrottled - + Select Screenshot Directory - + Citra „Citra“ - + Are you sure you want to <b>reset your settings</b> and close Citra? Ar tikrai norite <b>atstatyti jūsų nustatymus</b>ir uždaryti „Citra“? @@ -1421,157 +1421,157 @@ Would you like to ignore the error and continue? ConfigureGraphics - + Form Forma - + Graphics - + API Settings - + Graphics API - + Software - + OpenGL - + Vulkan - + Physical Device - + OpenGL Renderer - + SPIR-V Shader Generation - + Renderer Vaizdo generatorius - + <html><head/><body><p>Use the selected graphics API to accelerate shader emulation.</p><p>Requires a relatively powerful GPU for better performance.</p></body></html> - + Enable Hardware Shader Įjungti techninės įrangos šešėliuoklę - + <html><head/><body><p>Correctly handle all edge cases in multiplication operation in shaders. </p><p>Some games requires this to be enabled for the hardware shader to render properly.</p><p>However this would reduce performance in most games.</p></body></html> <html><head/><body><p>Ši funkcija kuo tiksliau atlieka įvairias funkcijas šešėliuoklėje. </p><p>Keletas žaidimų reikalauja šios funkcijos dėl tinkamo atvaizdo. </p><p> Tačiau ši funkcija sumažina greitį daugelyje žaidimų.</p></body></html> - + Accurate Multiplication Tiksli multiplikacija - + <html><head/><body><p>Use the JIT engine instead of the interpreter for software shader emulation. </p><p>Enable this for better performance.</p></body></html> <html><head/><body><p>Naudoti JIT, o ne interpretatorių šešėliuoklei. </p><p>Įjunkite šią funkciją geriausiems greičio rezultatams. </p></body> - + Enable Shader JIT Įjungti šešėliuoklės JIT - + <html><head/><body><p>Compile shaders using background threads to avoid shader compilation stutter. Expect temporary graphical glitches</p></body></html> - + Enable Async Shader Compilation - + <html><head/><body><p>Perform presentation on separate threads. Improves performance when using Vulkan in most games.</p></body></html> - + Enable Async Presentation - + Advanced - + <html><head/><body><p>Overrides the sampling filter used by games. This can be useful in certain cases with poorly behaved games when upscaling. If unsure set this to Game Controlled</p></body></html> - + Texture Sampling - + Game Controlled - + Nearest Neighbor - + Linear - + <html><head/><body><p>Reduce stuttering by storing and loading generated shaders to disk.</p></body></html> - + Use Disk Shader Cache - + VSync prevents the screen from tearing, but some graphics cards have lower performance with VSync enabled. Keep it enabled if you don't notice a performance difference. - + Enable VSync @@ -1579,63 +1579,63 @@ Would you like to ignore the error and continue? ConfigureHotkeys - + Hotkey Settings Sparčiųjų klavišų nustatymai - + Double-click on a binding to change it. - + Clear All - + Restore Defaults - + Action Veiksmas - + Hotkey Spartusis klavišas - - + + Conflicting Key Sequence - + The entered key sequence is already assigned to: %1 - + A 3ds button - + Restore Default - + Clear - + The default key sequence is already assigned to: %1 @@ -1643,307 +1643,307 @@ Would you like to ignore the error and continue? ConfigureInput - + ConfigureInput Konfigūruoti įvestį - + Profile Profilis - + New Naujas - + Delete Ištrinti - + Rename Pervadinti - + Face Buttons Priekiniai mygtukai - + Y: Y: - + X: X: - + B: B: - + A: A: - + Directional Pad Valdymo mygtukai - - - + + + Up: Aukštyn: - - - + + + Down: Žemyn: - - - + + + Left: Kairėn: - - - + + + Right: Dešinėn: - + Misc. Įvairūs - + Start: Pradėti: - + Select: Pasirinkti: - + Home: Meniu mygtukas: - + Power: - + Circle Mod: Sumažinti valdiklių jautrą: - + GPIO14: GPIO14: - + Debug: Derinimas: - + Circle Pad Judesių apskritimas - - - + + + Set Analog Stick Nustatyti analoginį valdiklį - - + + Deadzone: 0 - + C-Stick Apžvalgos valdiklis - + Shoulder Buttons Galiniai mygtukai - + ZR: ZR: - + ZL: ZL: - + L: L: - + R: R: - + Motion / Touch... Judesiai / lietimas... - + Auto Map - + Clear All Išvalyti viską - + Restore Defaults Atkurti numatytuosius - - - + + + Clear Išvalyti - - - + + + [not set] [nenustatyta] - - - + + + Restore Default Atkurti numatytuosius - - + + Information Informacija - + After pressing OK, first move your joystick horizontally, and then vertically. Kai paspausite OK, pajudinkite savo valdiklio lazdelę horizontaliai, ir paskui vertikaliai. - - + + Deadzone: %1% - - + + Modifier Scale: %1% - + Warning - + Auto mapping failed. Your controller may not have a corresponding mapping - + After pressing OK, press any button on your joystick - + [press key] [paspauskite klavišą] - + Error! Klaida! - + You're using a key that's already bound. - + New Profile Naujas Profilis - + Enter the name for the new profile. - + Delete Profile Ištrinti Profilį - + Delete profile %1? Ištrinti profilį %1? - + Rename Profile Pervadinti Profilį - + New name: Naujas pavadinimas: - + Duplicate profile name - + Profile name already exists. Please choose a different name. @@ -1951,198 +1951,198 @@ Would you like to ignore the error and continue? ConfigureMotionTouch - + Configure Motion / Touch Konfigūruoti judesius / lietimą - + Motion Judesiai - + Motion Provider: Judesių daviklis: - + Sensitivity: Jautrumas: - + Controller: - - - - - + + + + + Configure Konfigūruoti - + Touch Lietimas - + Touch Provider: Lietimo daviklis: - + Calibration: Kalibracija: - + (100, 50) - (1800, 850) (100, 50) - (1800, 850) - + Use button mapping: - + CemuhookUDP Config CemuhookUDP konfigūracija - + You may use any Cemuhook compatible UDP input source to provide motion and touch input. Jūs galite naudoti bet kokį suderinamą CemuhookUDP įvesties šaltinį perduodant judesius ir lietimą. - + Server: Serveris: - + Port: Įvadas: - + Pad: Įvestis: - + Pad 1 Įvestis 1 - + Pad 2 Įvestis 2 - + Pad 3 Įvestis 3 - + Pad 4 Įvestis 4 - + Learn More Sužinokite daugiau - - + + Test Testuoti - + Mouse (Right Click) Pelė (dešinysis klavišas) - - + + CemuhookUDP CemuhookUDP - + SDL - + Emulator Window Emuliatoriaus langas - + <a href='https://citra-emu.org/wiki/using-a-controller-or-android-phone-for-motion-or-touch-input'><span style="text-decoration: underline; color:#039be5;">Learn More</span></a> <a href='https://citra-emu.org/wiki/using-a-controller-or-android-phone-for-motion-or-touch-input'><span style="text-decoration: underline; color:#039be5;">Sužinokite daugiau</span></a> - + Information - + After pressing OK, press a button on the controller whose motion you want to track. - + [press button] - + Testing Testuojama - + Configuring Konfigūruojama - + Test Successful Testavimas pavyko - + Successfully received data from the server. Sėkmingai gauti duomenys iš serverio. - + Test Failed Testavimas nepavyko - + Could not receive valid data from the server.<br>Please verify that the server is set up correctly and the address and port are correct. Nepavyko gauti duomenų iš serverio. <br> Prašome patikrinti, ar serveris yra teisingai sukonfigūruotas ir adresas / įvadas yra teisingi. - + Citra „Citra“ - + UDP Test or calibration configuration is in progress.<br>Please wait for them to finish. Vyksta UDP testavimas ar kalibracija. <br> Prašome palaukti kol procesai bus užbaigti. @@ -2150,97 +2150,97 @@ Would you like to ignore the error and continue? ConfigurePerGame - + Dialog - + Info - + Size - + Format - + Name - + Filepath - + Title ID - + Reset Game Settings - + Use global configuration (%1) - + General - + System - + Enhancements - + Graphics - + Audio - + Debug - + Cheats - + Properties - + Citra - + Are you sure you want to <b>reset your settings for this game</b>? @@ -2248,65 +2248,65 @@ Would you like to ignore the error and continue? ConfigureStorage - + Form - + Storage - + Use Virtual SD - + Custom Storage - + Use Custom Storage - + NAND Directory - - + + Open - - + + NOTE: This does not move the contents of the previous directory to the new one. - - + + Change - + SDMC Directory - + Select NAND Directory - + Select SDMC Directory @@ -2314,1064 +2314,1064 @@ Would you like to ignore the error and continue? ConfigureSystem - + Form Forma - + System Settings Sistemos nustatymai - + Enable New 3DS mode - + Use LLE applets (if installed) - + Username Vartotojo vardas - + Birthday Gimtadienis - + January Sausio - + February Vasario - + March Kovo - + April Balandžio - + May Gegužės - + June Birželio - + July Liepos - + August Rugpjūčio - + September Rugsėjo - + October Spalio - + November Lapkričio - + December Gruodžio - + Language Kalba - + Note: this can be overridden when region setting is auto-select Pastaba: šis nustatymas bus ignoruojamas jeigu regionas nustatytas į "Automatiškai pasirinkti" - + Japanese (日本語) Japonų (日本語) - + English Anglų (English) - + French (français) Prancūzų (français) - + German (Deutsch) Vokiečių (Deutsch) - + Italian (italiano) Italų (italiano) - + Spanish (español) Ispanų (español) - + Simplified Chinese (简体中文) Supaprastinta kinų (简体中文) - + Korean (한국어) Korėjiečių (한국어) - + Dutch (Nederlands) Olandų (Nederlands) - + Portuguese (português) Portugalų (português) - + Russian (Русский) Rusų (Русский) - + Traditional Chinese (正體中文) Tradicinė kinų (正體中文) - + Sound output mode Garso išvesties režimas - + Mono Mono - + Stereo Stereo - + Surround Erdvinis - + Country Šalis - + Clock Laikrodis - + System Clock Sistemos laikrodis - + Fixed Time Nustatytas laikas - + Startup time Užkrovimo laikas - + yyyy-MM-ddTHH:mm:ss metai-MĖNESIAI-dienaTVALANDA:minutė:sekundė - + Offset time - + days - + HH:mm:ss - + Initial System Ticks - + Random - + Fixed - + Initial System Ticks Override - + Play Coins: Žaidimų pinigų kiekis: - + Run System Setup when Home Menu is launched - + Console ID: Konsolės ID: - + Regenerate Regeneruoti - + 3GX Plugin Loader: - + Enable 3GX plugin loader - + Allow games to change plugin loader state - + Download System Files from Nitendo servers - + Minimal - + Old 3DS - + New 3DS - + JPN - + USA - + EUR - + AUS - + CHN - + KOR - + TWN - + Download - + System settings are available only when game is not running. Sistemos nustatymai yra prieinami, tik kai žaidimai nepaleisti. - + Japan Japonija - + Anguilla Angilija - + Antigua and Barbuda Antigva ir Barbuda - + Argentina Argentina - + Aruba Aruba - + Bahamas Bahamos - + Barbados Barbadosas - + Belize Belizas - + Bolivia Bolivija - + Brazil Brazilija - + British Virgin Islands Mergelių salos - + Canada Kanada - + Cayman Islands Kaimanų salos - + Chile Čilė - + Colombia Kolumbija - + Costa Rica Kosta Rika - + Dominica Dominika - + Dominican Republic Dominikos respublika - + Ecuador Ekvadoras - + El Salvador El Salvadoras - + French Guiana Prancūzų Gviana - + Grenada Grenada - + Guadeloupe Gvadelupa - + Guatemala Gvatemala - + Guyana Gajana - + Haiti Haitis - + Honduras Hondūras - + Jamaica Jamaika - + Martinique Martinika - + Mexico Meksika - + Montserrat Montseratas - + Netherlands Antilles Nyderlandų Antilai - + Nicaragua Nikaragva - + Panama Panama - + Paraguay Paragvajus - + Peru Peru - + Saint Kitts and Nevis Sent Kitsas ir Nevis - + Saint Lucia Sent Lusija - + Saint Vincent and the Grenadines Sent Vinsentas ir Grenadinai - + Suriname Surinamas - + Trinidad and Tobago Trinidadas ir Tobagas - + Turks and Caicos Islands Terksas ir Kaikosas - + United States Jungtinės Amerikos Valstijos - + Uruguay Urugvajus - + US Virgin Islands Amerikos Mergelių salos - + Venezuela Venesuela - + Albania Albanija - + Australia Australija - + Austria Austrija - + Belgium Belgija - + Bosnia and Herzegovina Bosnija ir Hercegovina - + Botswana Botsvana - + Bulgaria Bulgarija - + Croatia Kroatija - + Cyprus Kipras - + Czech Republic Čekija - + Denmark Danija - + Estonia Estija - + Finland Suomija - + France Prancūzija - + Germany Vokietija - + Greece Graikija - + Hungary Vengrija - + Iceland Islandija - + Ireland Airija - + Italy Italija - + Latvia Latvija - + Lesotho Lesotas - + Liechtenstein Lichtenšteinas - + Lithuania Lietuva - + Luxembourg Liuksemburgas - + Macedonia Makedonija - + Malta Malta - + Montenegro Juodkalnija - + Mozambique Mozambikas - + Namibia Namibija - + Netherlands Nyderlandai - + New Zealand Naujoji Zelandija - + Norway Norvegija - + Poland Lenkija - + Portugal Portugalija - + Romania Rumunija - + Russia Rusija - + Serbia Serbija - + Slovakia Slovakija - + Slovenia Slovėnija - + South Africa Pietų Afrika - + Spain Ispanija - + Swaziland Svazilandas - + Sweden Švedija - + Switzerland Šveicarija - + Turkey Turkija - + United Kingdom Jungtinė Karalystė - + Zambia Zambija - + Zimbabwe Zimbabvė - + Azerbaijan Azerbaidžanas - + Mauritania Mauritanija - + Mali Malis - + Niger Nigeris - + Chad Čadas - + Sudan Sudanas - + Eritrea Eritrėja - + Djibouti Džibutis - + Somalia Somalis - + Andorra Andora - + Gibraltar Gibraltaras - + Guernsey Gernsis - + Isle of Man Meno sala - + Jersey Džersis - + Monaco Monakas - + Taiwan Taivanas - + South Korea Pietų Korėja - + Hong Kong Hong Kongas - + Macau Makao - + Indonesia Indonezija - + Singapore Singapūras - + Thailand Tailandas - + Philippines Filipinai - + Malaysia Malaizija - + China Kinija - + United Arab Emirates Jungtiniai Arabų Emyratai - + India Indija - + Egypt Egiptas - + Oman Omanas - + Qatar Kataras - + Kuwait Kuveitas - + Saudi Arabia Saudo Arabija - + Syria Sirija - + Bahrain Bahreinas - + Jordan Jordanija - + San Marino San Marinas - + Vatican City Vatikanas - + Bermuda Bermudai - + Download System Files from Nintendo servers - + Citra is missing keys to download system files. <br><a href='https://citra-emu.org/wiki/aes-keys/'><span style="text-decoration: underline; color:#039be5;">How to get keys?</span></a> - - + + Console ID: 0x%1 Konsolės ID: 0x%1 - + This will replace your current virtual 3DS with a new one. Your current virtual 3DS will not be recoverable. This might have unexpected effects in games. This might fail, if you use an outdated config savegame. Continue? Tai pakeis jūsų dabartinį virtualų 3DS nauju. Jūsų dabartinis virtualus 3DS bus nebeatkuriamas. Tai gali padaryti netikėtų pokyčių žaidimuose. Tęsti? - + Warning Įspėjimas - + Downloading files... - + Cancel - - + + Citra - + Downloading system files failed. - + Successfully downloaded system files. @@ -3379,90 +3379,90 @@ Would you like to ignore the error and continue? ConfigureTouchFromButton - + Configure Touchscreen Mappings - + Mapping: - + New - + Delete - + Rename - + Click the bottom area to add a point, then press a button to bind. Drag points to change position, or double-click table cells to edit values. - + Delete Point - + Button - + X X axis - + Y Y axis - + New Profile - + Enter the name for the new profile. - + Delete Profile - + Delete profile %1? - + Rename Profile - + New name: - + [press key] @@ -3470,113 +3470,113 @@ Drag points to change position, or double-click table cells to edit values. ConfigureUi - + Form Forma - + General Pagrindinis - + Note: Changing language will apply your configuration. - + Interface language: Sąsajos kalba: - + Theme: Tema: - + Game List Žaidimų sąrašo nustatymai - + Icon Size: Žaidimo paveikslėlio dydis: - - + + None Nėra - + Small (24x24) Mažas (24x24) - + Large (48x48) Didelis (48x48) - + Row 1 Text: 1 eilutės tekstas: - - + + File Name Failo pavadinimas - - + + Full Path Pilnas adresas - - + + Title Name (short) - - + + Title ID Programos ID - - + + Title Name (long) - + Row 2 Text: 2 eilutės tekstas: - + Hide Titles without Icon Paslėpti programas be paveikslėlio - + Single Line Mode - + <System> <System> - + English Anglų k. @@ -3584,135 +3584,135 @@ Drag points to change position, or double-click table cells to edit values. ConfigureWeb - + Form Forma - + Citra Web Service „Citra“ interneto tarnyba - + By providing your username and token, you agree to allow Citra to collect additional usage data, which may include user identifying information. Įrašydami jūsų vartotojo vardą ir simbolinį ID, jūs sutinkate, kad „Citra“ rinktų papildomus naudojimo duomenis, tarp kurių gali būti informacija, skirta atpažinti vartotoją. - - + + Verify Patikrinti - + Sign up Užsiregistruoti - + Token: Simbolinis ID: - + Username: Vartotojo vardas: - + What is my token? Koks yra mano simbolinis ID? - + Web Service configuration can only be changed when a public room isn't being hosted. - + Telemetry Telemetrija - + Share anonymous usage data with the Citra team Pasidalinti anonimiškais naudojimo duomenimis su „Citra“ komanda - + Learn more Sužinoti daugiau - + Telemetry ID: Telemetrijos ID: - + Regenerate Regeneruoti - + Discord Presence Discord nustatymai - + Show Current Game in your Discord Status Rodyti jūsų žaidžiamą žaidimą Discord'e - + <a href='https://citra-emu.org/entry/telemetry-and-why-thats-a-good-thing/'><span style="text-decoration: underline; color:#039be5;">Learn more</span></a> <a href='https://citra-emu.org/entry/telemetry-and-why-thats-a-good-thing/'><span style="text-decoration: underline; color:#039be5;">Sužinoti daugiau</span></a> - + <a href='https://profile.citra-emu.org/'><span style="text-decoration: underline; color:#039be5;">Sign up</span></a> <a href='https://profile.citra-emu.org/'><span style="text-decoration: underline; color:#039be5;">Užsiregistruoti</span></a> - + <a href='https://citra-emu.org/wiki/citra-web-service/'><span style="text-decoration: underline; color:#039be5;">What is my token?</span></a> <a href='https://citra-emu.org/wiki/citra-web-service/'><span style="text-decoration: underline; color:#039be5;">Koks yra mano simbolinis ID?</span></a> - - + + Unspecified - - + + Telemetry ID: 0x%1 Telemetrijos ID: 0x%1 - + Token not verified - + Token was not verified. The change to your token has not been saved. - + Verifying... Tikrinama... - + Verification failed Tikrinimas nepavyko - + Verification failed. Check that you have entered your token correctly, and that your internet connection is working. @@ -3720,47 +3720,47 @@ Drag points to change position, or double-click table cells to edit values. DirectConnect - + Direct Connect Tiesioginis prisijungimas - + Server Address - + <html><head/><body><p>Server address of the host</p></body></html> - + Port Prievadas - + <html><head/><body><p>Port number the host is listening on</p></body></html> <html><head/><body><p>Prievado numeris, kuris klauso serverio</p></body></html> - + 24872 24872 - + Nickname Vartotojo vardas - + Password Slaptažodis - + Connect Prisijungti @@ -3768,12 +3768,12 @@ Drag points to change position, or double-click table cells to edit values. DirectConnectWindow - + Connecting Jungiamasi - + Connect Prisijungti @@ -3781,110 +3781,110 @@ Drag points to change position, or double-click table cells to edit values. DumpingDialog - + Dump Video - + Output - + Format: - - - + + + Options: - - - - + + + + ... - + Path: - + Video - - + + Encoder: - - + + Bitrate: - - + + bps - + Audio - - + + Citra - + Please specify the output path. - + output formats - + video encoders - + audio encoders - + Could not find any available %1. Please check your FFmpeg installation used for compilation. - - - - + + + + %1 (%2) - + Select Video Output Path @@ -3892,417 +3892,417 @@ Please check your FFmpeg installation used for compilation. GMainWindow - + <a href='https://citra-emu.org/entry/telemetry-and-why-thats-a-good-thing/'>Anonymous data is collected</a> to help improve Citra. <br/><br/>Would you like to share your usage data with us? <a href='https://citra-emu.org/entry/telemetry-and-why-thats-a-good-thing/'>Anoniminiai duomenys yra renkami </a> kad padėtumėte Citra komandai. <br/><br/>Ar norite pasidalinti savo duomenimis su mumis? - + Telemetry Telemetrija - + No Suitable Vulkan Devices Detected - + Vulkan initialization failed during boot.<br/>Your GPU may not support Vulkan 1.1, or you do not have the latest graphics driver. - - + + Current emulation speed. Values higher or lower than 100% indicate emulation is running faster or slower than a 3DS. Dabartinės emuliacijos greitis. Reikšmės žemiau ar aukščiau 100% parodo, kad emuliacija veikia greičiau ar lėčiau negu 3DS. - - + + How many frames per second the game is currently displaying. This will vary from game to game and scene to scene. Kiek FPS žaidimas šiuo metu atvaizduoja. Tai gali keistis nuo žaidimo ir scenos. - - + + Time taken to emulate a 3DS frame, not counting framelimiting or v-sync. For full-speed emulation this should be at most 16.67 ms. Laikas, kuris buvo sunaudotas atvaizduoti 1 3DS kadrą, neskaičiuojant FPS ribojimo ar V-Sync. Pilno greičio emuliacijai reikalinga daugiausia 16.67 ms reikšmė. - + Clear Recent Files Pravalyti neseniai įkrautus failus - + &Continue - + &Pause - + Update Available Pasiekiamas atnaujinimas - + An update is available. Would you like to install it now? Atnaujinimas yra pasiekiamas. Ar dabar norite jį įdiegti? - + No Update Found Atnaujinimų nerasta - + No update is found. Atnaujinimų nerasta - + Citra is running a game TRANSLATORS: This string is shown to the user to explain why Citra needs to prevent the computer from sleeping - - + + Invalid ROM Format Klaidingas ROM formatas - - + + Your ROM format is not supported.<br/>Please follow the guides to redump your <a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>game cartridges</a> or <a href='https://citra-emu.org/wiki/dumping-installed-titles/'>installed titles</a>. Jūsų ROM formatas yra nepalaikomas.<br/>Prašome pasižiūrėti į mūsų gidus kaip nukopijuoti jūsų <a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>žaidimų plokšteles</a>arba <a href='https://citra-emu.org/wiki/dumping-installed-titles/'>įdiegtus žaidimus</a>. - + ROM Corrupted Pažeistas ROM failas - + Your ROM is corrupted. <br/>Please follow the guides to redump your <a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>game cartridges</a> or <a href='https://citra-emu.org/wiki/dumping-installed-titles/'>installed titles</a>. Jūsų ROM failas yra pažeistas.<br/>Prašome pasižiūrėti į mūsų gidus kaip iškopijuoti jūsų<a href='https://citra-emu.org/wiki/dumping-game-cartridges/'> žaidimų plokšteles</a>arba<a href='https://citra-emu.org/wiki/dumping-installed-titles/'> suinstaliuotus žaidimus</a>. - + ROM Encrypted Užšifruotas ROM failas - + Your ROM is encrypted. <br/>Please follow the guides to redump your <a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>game cartridges</a> or <a href='https://citra-emu.org/wiki/dumping-installed-titles/'>installed titles</a>. Jūsų ROM failas yra užšifruotas. <br/>Prašome pasižiūrėti į mūsų gidus kaip iškopijuoti jūsų <a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>žaidimų plokšteles</a>arba <a href='https://citra-emu.org/wiki/dumping-installed-titles/'>suinstaliuotus žaidimus</a>. - + Unsupported ROM - + GBA Virtual Console ROMs are not supported by Citra. - + Error while loading ROM! Klaida įkraunant ROM! - + An unknown error occurred. Please see the log for more details. - + CIA must be installed before usage - + Before using this CIA, you must install it. Do you want to install it now? - - + + Slot %1 - + Slot %1 - %2 %3 - + Error Opening %1 Folder Klaida atidarant %1 aplanką - - + + Folder does not exist! Aplankas neegzistuoja! - + Dumping... - - + + Cancel - - - - - - - - - + + + + + + + + + Citra „Citra“ - + Could not dump base RomFS. Refer to the log for details. - + Error Opening %1 Klaida atidarant %1 - + Select Directory Pasirinkti katalogą - + Properties - + The game properties could not be loaded. - + 3DS Executable (%1);;All Files (*.*) %1 is an identifier for the 3DS executable file extensions. 3DS programa (%1);;Visi failai (*.*) - + Load File Įkrauti failą - + Load Files Įkrauti failus - + 3DS Installation File (*.CIA*) 3DS instaliacijos failas (*.cia*) - + All Files (*.*) Visi failai (*.*) - + %1 has been installed successfully. %1 buvo įdiegtas sėkmingai. - + Unable to open File Negalima atverti failo - + Could not open %1 Nepavyko atverti %1 - + Installation aborted Instaliacija nutraukta - + The installation of %1 was aborted. Please see the log for more details Failo %1 instaliacija buvo nutraukta. Pasižiūrėkite į žurnalą dėl daugiau informacijos - + Invalid File Klaidingas failas - + %1 is not a valid CIA %1 nėra tinkamas CIA - + Encrypted File Šifruotas failas - + %1 must be decrypted before being used with Citra. A real 3DS is required. %1 turi būti iššifruotas prieš naudojant jį su „Citra“. Tikra 3DS konsolė yra būtina. - + Unable to find File - + Could not find %1 - + Uninstalling '%1'... - + Failed to uninstall '%1'. - + Successfully uninstalled '%1'. - + File not found Failas nerastas - + File "%1" not found Failas "%1" nerastas - + Missing Citra Account Nėra „Citra“ paskyros - + You must link your Citra account to submit test cases.<br/>Go to Emulation &gt; Configure... &gt; Web to do so. Jūs turite prijungti jūsų Citra vartotoją prieš pateikiant suderinamumą. <br/>Eikite į Emuliacija &gt; Konfigūruoti... &gt; Tinklo tarnyba. - + Savestates - + Warning: Savestates are NOT a replacement for in-game saves, and are not meant to be reliable. Use at your own risk! - - - + + + Error opening amiibo data file - + A tag is already in use. - + Game is not looking for amiibos. - + Amiibo File (%1);; All Files (*.*) „Amiibo“ failas (%1);; Visi failai (*.*) - + Load Amiibo Įkrauti „Amiibo“ - + Unable to open amiibo file "%1" for reading. - + Record Movie Įrašyti įvesčių vaizdo įrašą - + Movie recording cancelled. Įrašo įrašymas nutrauktas. - - + + Movie Saved Įrašas išsaugotas - - + + The movie is successfully saved. Filmas sėkmingai išsaugotas. - + Invalid Screenshot Directory - + Cannot create specified screenshot directory. Screenshot path is set back to its default value. - + Could not load video dumper - + FFmpeg could not be loaded. Make sure you have a compatible version installed. To install FFmpeg to Citra, press Open and select your FFmpeg directory. @@ -4311,158 +4311,158 @@ To view a guide on how to install FFmpeg, press Help. - + Select FFmpeg Directory - + The provided FFmpeg directory is missing %1. Please make sure the correct directory was selected. - + FFmpeg has been sucessfully installed. - + Installation of FFmpeg failed. Check the log file for details. - + Could not start video dumping.<br>Refer to the log for details. - + Recording %1 - + Playing %1 / %2 - + Movie Finished - + Speed: %1% Greitis: %1% - + Speed: %1% / %2% Greitis: %1% / %2% - + Game: %1 FPS Žaidimas: %1 kadr./s - + Frame: %1 ms Kadras: %1 ms - + VOLUME: MUTE - + VOLUME: %1% Volume percentage (e.g. 50%) - + %1 is missing. Please <a href='https://citra-emu.org/wiki/dumping-system-archives-and-the-shared-fonts-from-a-3ds-console/'>dump your system archives</a>.<br/>Continuing emulation may result in crashes and bugs. Trūksta %1. Prašome <a href='https://citra-emu.org/wiki/dumping-system-archives-and-the-shared-fonts-from-a-3ds-console/'>iškopijuoti sisteminius archyvus</a>. <br/>Jeigu tęsite emuliaciją, gali įvykti netikėtų išsijungimų ir klaidų. - + A system archive - + System Archive Not Found Sisteminis archyvas nerastas - + System Archive Missing - + Save/load Error - + Fatal Error Nepataisoma klaida - + A fatal error occurred. <a href='https://community.citra-emu.org/t/how-to-upload-the-log-file/296'>Check the log</a> for details.<br/>Continuing emulation may result in crashes and bugs. - + Fatal Error encountered - + Continue Tęsti - + Quit Game - + OK - + Would you like to exit now? Ar norite išeiti? - + The game is still running. Would you like to stop emulation? Žaidimas vis dar veikia. Ar norite sustabdyti emuliaciją? - + Playback Completed Atkūrimas užbaigtas - + Movie playback completed. Įrašo atkūrimas užbaigtas. - + Primary Window - + Secondary Window @@ -4470,22 +4470,22 @@ To view a guide on how to install FFmpeg, press Help. GPUCommandListModel - + Command Name Komandos pavadinimas - + Register Registras - + Mask Kaukė - + New Value Nauja vertė @@ -4493,23 +4493,23 @@ To view a guide on how to install FFmpeg, press Help. GPUCommandListWidget - + Pica Command List „Pica“ komandų sąrašas - - + + Start Tracing Pradėti sekti - + Copy All Kopijuoti viską - + Finish Tracing Užbaigti sekimą @@ -4517,7 +4517,7 @@ To view a guide on how to install FFmpeg, press Help. GPUCommandStreamWidget - + Graphics Debugger Grafikos derinimas @@ -4525,42 +4525,42 @@ To view a guide on how to install FFmpeg, press Help. GRenderWindow - + OpenGL not available! - + OpenGL shared contexts are not supported. - + Error while initializing OpenGL! - + Your GPU may not support OpenGL, or you do not have the latest graphics driver. - + Error while initializing OpenGL 4.3! - + Your GPU may not support OpenGL 4.3, or you do not have the latest graphics driver.<br><br>GL Renderer:<br>%1 - + Error while initializing OpenGL ES 3.2! - + Your GPU may not support OpenGL ES 3.2, or you do not have the latest graphics driver.<br><br>GL Renderer:<br>%1 @@ -4568,193 +4568,193 @@ To view a guide on how to install FFmpeg, press Help. GameList - - + + Compatibility Suderinamumas - - + + Region Regionas - - + + File type Failo tipas - - + + Size Dydis - + Open Save Data Location Atidaryti išsaugojimo duomenų vietą - + Open Extra Data Location Atidaryti papildomų duomenų vietą - + Open Application Location Atidaryti programos vietą - + Open Update Data Location Atidaryti atnaujinimo duomenų vietą - + Open DLC Data Location - + Open Texture Dump Location - + Open Custom Texture Location - + Open Mods Location - + Dump RomFS - + Disk Shader Cache - + Open Shader Cache Location - + Delete OpenGL Shader Cache - + Uninstall - + Everything - + Game - + Update - + DLC - + Navigate to GameDB entry Eiti į suderinamumo puslapį - + Properties - - - - + + + + Citra - + Are you sure you want to completely uninstall '%1'? This will delete the game if installed, as well as any installed updates or DLC. - - + + %1 (Update) - - + + %1 (DLC) - + Are you sure you want to uninstall '%1'? - + Are you sure you want to uninstall the update for '%1'? - + Are you sure you want to uninstall all DLC for '%1'? - + Scan Subfolders Ieškoti poaplankius - + Remove Game Directory Pašalinti žaidimo katalogą - + Move Up - + Move Down - + Open Directory Location Atidaryti katalogo vietą - + Name Pavadinimas @@ -4762,77 +4762,77 @@ This will delete the game if installed, as well as any installed updates or DLC. GameListItemCompat - + Perfect Tobulas - + Game functions flawless with no audio or graphical glitches, all tested functionality works as intended without any workarounds needed. Žaidimas veikia nuostabiai be jokių garso ar vaizdo trikdžių, visos išbandytos funkcijos veikia kaip numatyta be problemų apėjimų. - + Great Puikus - + Game functions with minor graphical or audio glitches and is playable from start to finish. May require some workarounds. Žaidimas veikia su smulkiais garso arba vaizdo trikdžiais ir gali būti pereitas nuo pradžios iki galo. Gali reikalauti keleto problemų apėjimų. - + Okay Geras - + Game functions with major graphical or audio glitches, but game is playable from start to finish with workarounds. Žaidimas veikia su dideliais garso arba vaizdo trikdžiais, bet žaidimas gali būti pereitas nuo pradžios iki galo su problemų apėjimais. - + Bad Blogas - + Game functions, but with major graphical or audio glitches. Unable to progress in specific areas due to glitches even with workarounds. Žaidimas veikia, bet su dideliais garso arba vaizdo trikdžiais. Neįmanoma pereiti keleto vietų net su problemų apėjimais. - + Intro/Menu Rodo tik pradžios ekraną - + Game is completely unplayable due to major graphical or audio glitches. Unable to progress past the Start Screen. Žaidimas yra visiškai negalimas žaisti dėl didelių garso ar vaizdo trikdžių. Neįmanoma pratęsti žaidimo toliau negu pradžios ekranas. - + Won't Boot Nepasileidžia - + The game crashes when attempting to startup. Žaidimas netikėtai išsijungia pasileidžiant. - + Not Tested Netestuota - + The game has not yet been tested. Žaidimas dar nebuvo išbandytas. @@ -4840,7 +4840,7 @@ Screen. GameListPlaceholder - + Double-click to add a new folder to the game list @@ -4848,27 +4848,27 @@ Screen. GameListSearchField - + of - + result rezultatų - + results rezultatai - + Filter: Filtras: - + Enter pattern to filter Įveskite raktinius žodžius filtravimui @@ -4876,47 +4876,47 @@ Screen. GameRegion - + Japan - + North America - + Europe - + Australia - + China - + Korea - + Taiwan - + Invalid region - + Region free @@ -4924,23 +4924,23 @@ Screen. GraphicsBreakPointsWidget - + Pica Breakpoints „Pica“ nutrūkimo taškai - - + + Emulation running Emuliacija veikia - + Resume Pratęsti - + Emulation halted at breakpoint Emuliacija sustabdyta nutrūkimo taške @@ -4948,146 +4948,146 @@ Screen. GraphicsSurfaceWidget - + Pica Surface Viewer „Pica“ pagrindo žiūryklė - + Color Buffer Spalvos buferis - + Depth Buffer Gylio buferis - + Stencil Buffer Šablono buferis - + Texture 0 Tekstūra 0 - + Texture 1 Tekstūra 1 - + Texture 2 Tekstūra 2 - + Custom Pasirinktinis - + Unknown Nežinoma - + Save Išsaugoti - + Source: Šaltinis: - + Physical Address: Fizinis adresas: - + Width: Plotis: - + Height: Aukštis: - + Format: Formatas: - + X: X: - + Y: Y: - + Pixel out of bounds Pikseliai už ribų - + (unable to access pixel data) (negalima pasiekti pikselių duomenų) - + (invalid surface address) (netinkamas paviršiaus adresas) - + (unknown surface format) (nežinomas paviršiaus formatas) - + Portable Network Graphic (*.png) Kilnojama tinklo grafika (*.png) - + Binary data (*.bin) Dvejetainiai duomenys (*.bin) - + Save Surface Išsaugoti paviršių - - - - + + + + Error - - + + Failed to open file '%1' - + Failed to save surface data to file '%1' - + Failed to completely write surface data to file. The saved data will likely be corrupt. @@ -5095,42 +5095,42 @@ Screen. GraphicsTracingWidget - + CiTrace Recorder CiTrace įrašymas - + Start Recording Pradėti įrašymą - + Stop and Save Sustabdyti ir išsaugoti - + Abort Recording Nutraukti įrašymą - + Save CiTrace Išsaugoti CiTrace - + CiTrace File (*.ctf) CiTrace failas (*.ctf) - + CiTracing still active CiTracing vis dar veikia - + A CiTrace is still being recorded. Do you want to save it? If not, all recorded data will be discarded. CiTrace vis dar įrašomas. Ar norite išsaugoti įrašymą? Jeigu ne, visi įrašyti duomenys bus atmesti. @@ -5138,17 +5138,17 @@ Screen. GraphicsVertexShaderModel - + Offset Ofsetas - + Raw Neapdorotas - + Disassembly Išardymas @@ -5156,127 +5156,127 @@ Screen. GraphicsVertexShaderWidget - + Save Shader Dump Išsaugoti šešėliuoklės kopiją - + Shader Binary (*.shbin) Šešėliuoklės kodas (*.shbin) - + Pica Vertex Shader - + (data only available at vertex shader invocation breakpoints) (duomenys prieinami tik vertekso šešėliuoklės iškvietimo sustabdymo taškuose) - + Dump Kopijuoti - + Input Data Įvesties duomenys - + Attribute %1 Atributas %1 - + Cycle Index: Rato indeksas: - + SRC1: %1, %2, %3, %4 SRC1: %1, %2, %3, %4 - + SRC2: %1, %2, %3, %4 SRC2: %1, %2, %3, %4 - + SRC3: %1, %2, %3, %4 SRC3: %1, %2, %3, %4 - + DEST_IN: %1, %2, %3, %4 DEST_IN: %1, %2, %3, %4 - + DEST_OUT: %1, %2, %3, %4 DEST_OUT: %1, %2, %3, %4 - + Address Registers: %1, %2 Adreso registrai: %1, %2 - + Compare Result: %1, %2 Palyginti rezultatus: %1, %2 - + Static Condition: %1 Statinė sąlyga %1 - + Dynamic Conditions: %1, %2 Dinaminės sąlygos: %1, %2 - + Loop Parameters: %1 (repeats), %2 (initializer), %3 (increment), %4 Ciklo parametrai: %1 (pasikartoja), %2 (inicijuoja), %3 (didina), %4 - + Instruction offset: 0x%1 Instrukcijos ofsetas: 0x%1 - + -> 0x%2 -> 0x%2 - + (last instruction) (paskutinė instrukcija) @@ -5284,67 +5284,67 @@ Screen. HostRoom - + Create Room Sukurti serverį - + Room Name Serverio pavadinimas - + Preferred Game Pageidautinas žaidimas - + Max Players Daugiausia žaidėjų - + Username Vartotojo vardas - + (Leave blank for open game) (palikite tuščią, jei nesvarbu) - + Password Slaptažodis - + Port Prievadas - + Room Description Serverio aprašymas - + Load Previous Ban List - + Public Viešas - + Unlisted Nematomas - + Host Room Paskelbti serverį @@ -5352,12 +5352,12 @@ Screen. HostRoomWindow - + Error - + Failed to announce the room to the public lobby. In order to host a room publicly, you must have a valid Citra account configured in Emulation -> Configure -> Web. If you do not want to publish a room in the public lobby, then select Unlisted instead. Debug Message: @@ -5366,47 +5366,47 @@ Debug Message: IPCRecorder - + IPC Recorder - + Enable Recording - + Filter: - + Leave empty to disable filtering - + # - + Status - + Service - + Function - + Clear @@ -5414,47 +5414,47 @@ Debug Message: IPCRecorderWidget - + Invalid - + Sent - + Handling - + Success - + Error - + HLE Unimplemented - + HLE - + LLE - + Unknown @@ -5462,7 +5462,7 @@ Debug Message: LLEServiceModulesWidget - + Toggle LLE Service Modules Įjungti žemo lygio emuliacijos sisteminius modulius @@ -5470,53 +5470,53 @@ Debug Message: LoadingScreen - + Loading Shaders 387 / 1628 - + Loading Shaders %v out of %m - + Estimated Time 5m 4s - + Loading... - + Preloading Textures %1 / %2 - + Preparing Shaders %1 / %2 - + Loading Shaders %1 / %2 - + Launching... - + Now Loading %1 - + Estimated Time %1 @@ -5524,83 +5524,83 @@ Debug Message: Lobby - + Public Room Browser Viešų serverių naršyklė - - + + Nickname Vartotojo vardas - + Filters Filtrai - + Search Paieška - + Games I Own Žaidimai, kuriuos turiu - + Hide Empty Rooms - + Hide Full Rooms Slėpti pilnus serverius - + Refresh Lobby Atnaujinti sąrašą - + Password Required to Join Reikalingas slaptažodis - + Password: Slaptažodis: - + Room Name Serverio pavadinimas - + Preferred Game Pageidautinas žaidimas - + Host Vartotojas - + Players Žaidėjų skaičius - + Refreshing Atnaujinama - + Refresh List Atnaujinti sąrašą @@ -5608,362 +5608,362 @@ Debug Message: MainWindow - + Citra „Citra“ - + &File &Failas - + Boot Home Menu - + Recent Files Neseniai įkrauti failai - + Amiibo „Amiibo“ - + &Emulation &Emuliacija - + Save State - + Load State - + &View &Žiūrėti - + Debugging Derinimas - + Screen Layout Ekranų išdėstymas - + Multiplayer Kelių žaidėjų režimas - + Tools Įrankiai - + Movie Įvesčių įrašai - + Frame Advance Kadro Perėjimas - + &Help &Pagalba - + Load File... Įkrauti failą... - + Install CIA... Diegti CIA... - + JPN - + USA - + EUR - + AUS - + CHN - + KOR - + TWN - + E&xit Į&šeiti - + &Pause &Pauzė - + &Stop &Sustabdyti - + Save - + Load - + FAQ DUK - + About Citra Apie „Citra“ - + Single Window Mode Vieno lango režimas - + Save to Oldest Slot - + Load from Newest Slot - + Configure... Konfigūruoti... - + Display Dock Widget Headers Rodyti ikonėles apačioje - + Show Filter Bar Rodyti paieškos juostą - + Show Status Bar Rodyti būsenos juostą - + Create Pica Surface Viewer Sukurti „Pica“ pagrindo žiūryklę - + Record... - + Play... - + Close - + Save without Closing - + Read-Only Mode - + Enable Frame Advancing Įjungti kadro perėjimą - + Advance Frame Pereiti į kitą kadrą - + Capture Screenshot - + Dump Video - + Browse Public Game Lobby Peržiūrėti viešus žaidimų serverius - + Create Room Sukurti serverį - + Leave Room Palikti serverį - + Direct Connect to Room Tiesioginis prisijungimas prie serverio - + Show Current Room Rodyti dabartinį serverį - + Fullscreen Per visą ekraną - + Modify Citra Install Modifikuoti „Citra“ instaliaciją - + Opens the maintenance tool to modify your Citra installation Atidaro priežiūros įrankį modifikuoti jūsų „Citra“ instaliaciją - + Default Numatytasis - + Single Screen Vienas ekranas - + Large Screen Didelis ekranas - + Hybrid Screen - + Side by Side Vienas prie kito šonu - + Separate Windows - + Swap Screens Apkeisti ekranus - + Rotate Upright - + Check for Updates Tikrinti, ar yra naujinimų - + Report Compatibility Pranešti suderinamumą - + Restart Persirauti - + Load... Įkrauti... - + Remove Pašalinti - + Open Citra Folder Atidaryti „Citra“ aplanką - + Configure Current Game... @@ -5971,7 +5971,7 @@ Debug Message: MicroProfileDialog - + MicroProfile Mikroprofilis @@ -5979,48 +5979,48 @@ Debug Message: ModerationDialog - + Moderation - + Ban List - - + + Refreshing Atnaujinama - + Unban - + Subject Tema - + Type Tipas - + Forum Username Forumo Vartotojo vardas - + IP Address IP adresas - + Refresh Atnaujinti @@ -6028,91 +6028,91 @@ Debug Message: MoviePlayDialog - - + + Play Movie - + File: - + ... - + Info - + Game: - + Author: - + Rerecord Count: - + Length: - + Current running game will be stopped. - + <br>Current recording will be discarded. - + Citra TAS Movie (*.ctm) - + Invalid movie file. - + Revision dismatch, playback may desync. - + Indicated length is incorrect, file may be corrupted. - - - - + + + + (unknown) - + Game used in this movie is not in game list. - + (>1 day) @@ -6120,43 +6120,43 @@ Debug Message: MovieRecordDialog - - + + Record Movie - + File: - + ... - + Author: - + Current running game will be restarted. - + <br>Current recording will be discarded. - + Recording will start once you boot a game. - + Citra TAS Movie (*.ctm) @@ -6164,43 +6164,43 @@ Debug Message: MultiplayerState - - + + Current connection status Dabartinis ryšio statusas - - + + Not Connected. Click here to find a room! Neprisijungta. Paspauskite čia, kad susirastumėte serverį! - - - + + + Connected Prisijungta - - + + Not Connected Neprisijungta - + Error Klaida - + Failed to update the room information. Please check your Internet connection and try hosting the room again. Debug Message: - + New Messages Received Gauti nauji pranešimai @@ -6208,22 +6208,22 @@ Debug Message: NetworkMessage - + Leave Room Palikti serverį - + You are about to close the room. Any network connections will be closed. Jūs netrukus uždarysite serverį. Visa su serveriu susijusi informacija bus prarasta. - + Disconnect Atsijungti - + You are about to leave the room. Any network connections will be closed. Jūs netrukus paliksite serverį. Visa su serveriu susijusi informacija bus prarasta. @@ -6231,110 +6231,110 @@ Debug Message: NetworkMessage::ErrorManager - + Username is not valid. Must be 4 to 20 alphanumeric characters. - + Room name is not valid. Must be 4 to 20 alphanumeric characters. - + Username is already in use or not valid. Please choose another. - + IP is not a valid IPv4 address. - + Port must be a number between 0 to 65535. - + You must choose a Preferred Game to host a room. If you do not have any games in your game list yet, add a game folder by clicking on the plus icon in the game list. - + Unable to find an internet connection. Check your internet settings. - + Unable to connect to the host. Verify that the connection settings are correct. If you still cannot connect, contact the room host and verify that the host is properly configured with the external port forwarded. - + Unable to connect to the room because it is already full. - + Creating a room failed. Please retry. Restarting Citra might be necessary. - + The host of the room has banned you. Speak with the host to unban you or try a different room. - + Version mismatch! Please update to the latest version of Citra. If the problem persists, contact the room host and ask them to update the server. - + Incorrect password. - + An unknown error occurred. If this error continues to occur, please open an issue - + Connection to room lost. Try to reconnect. - + You have been kicked by the room host. - + MAC address is already in use. Please choose another. - + Your Console ID conflicted with someone else's in the room. Please go to Emulation > Configure > System to regenerate your Console ID. - + You do not have enough permission to perform this action. - + The user you are trying to kick/ban could not be found. They may have left the room. - + Error @@ -6342,37 +6342,37 @@ They may have left the room. OptionSetDialog - + Options - + Unset - + unknown - + %1 &lt;%2> %3 - + Range: %1 - %2 - + custom - + %1 (0x%2) %3 @@ -6380,32 +6380,32 @@ They may have left the room. OptionsDialog - + Options - + Double click to see the description and change the values of the options. - + Specific - + Generic - + Name - + Value @@ -6413,157 +6413,157 @@ They may have left the room. QObject - + Supported image files (%1) Palaikomi paveikslėlių tipai (%1) - + Open File Atidaryti failą - + Error Klaida - + Couldn't load the camera Nepavyko įkrauti kameros - + Couldn't load %1 Nepavyko įkrauti %1 - - + + Shift Shift - - + + Ctrl Ctrl - - + + Alt Alt - - - + + + [not set] [nenustatytas] - - + + Hat %1 %2 Pusė %1 %2 - - - - - - + + + + + + Axis %1%2 Ašis %1%2 - - + + Button %1 Mygtukas %1 - + GC Axis %1%2 - + GC Button %1 - - - + + + [unknown] [nežinomas] - + [unused] [nenaudojamas] - + auto - + true - + false - - + + none - + %1 (0x%2) - + Invalid region Klaidingas regionas - + Installed Titles - + System Titles - + Add New Game Directory - + Not playing a game Nežaidžia žaidimo - + %1 is not playing a game %1 nežaidžia žaidimo - + %1 is playing %2 %1 žaidžia %2 @@ -6571,7 +6571,7 @@ They may have left the room. QtKeyboard - + Software Keyboard @@ -6579,27 +6579,27 @@ They may have left the room. QtKeyboardDialog - + Text length is not correct (should be %1 characters) Teksto ilgis nėra teisingas (turi būti %1 simbolis / -iai) - + Text is too long (should be no more than %1 characters) Tekstas yra per ilgas (turi būti ne didesnis kaip %1 simbolis / -iai) - + Blank input is not allowed Tuščias laukelis nėra galimas - + Empty input is not allowed Tuščias laukelis nėra galimas - + Validation error Tikrinimo klaida @@ -6607,12 +6607,12 @@ They may have left the room. QtMiiSelectorDialog - + Mii Selector - + Standard Mii @@ -6620,95 +6620,95 @@ They may have left the room. RecordDialog - + View Record - + Client - - + + Process: - - + + Thread: - - + + Session: - + Server - + General - + Client Port: - + Service: - + Function: - + Command Buffer - + Select: - + Request Untranslated - + Request Translated - + Reply Untranslated - + Reply Translated - + OK - + null @@ -6716,37 +6716,37 @@ They may have left the room. RegistersWidget - + Registers Registrai - + VFP Registers VFP registrai - + VFP System Registers VFP sistemos registrai - + Vector Length Vektoriaus ilgis - + Vector Stride Vektoriaus žingsnis - + Rounding Mode Apvalinimo režimas - + Vector Iteration Count Vektoriaus iteracijos skaičiavimas @@ -6754,7 +6754,7 @@ They may have left the room. SequenceDialog - + Enter a hotkey Įveskite spartųjį klavišą @@ -6762,7 +6762,7 @@ They may have left the room. WaitTreeEvent - + reset type = %1 perkrovimo tipas = %1 @@ -6770,12 +6770,12 @@ They may have left the room. WaitTreeMutex - + locked %1 times by thread: užrakintas = %1 kartų gijoje: - + free laisvas @@ -6783,7 +6783,7 @@ They may have left the room. WaitTreeMutexList - + holding mutexes laiko muteksus @@ -6791,12 +6791,12 @@ They may have left the room. WaitTreeObjectList - + waiting for all objects laukia visų objektų - + waiting for one of the following objects laukia vieno iš išvardintų objektų @@ -6804,12 +6804,12 @@ They may have left the room. WaitTreeSemaphore - + available count = %1 galimas skaičiavimas = %1 - + max count = %1 maksimalus skaičiavimas = %1 @@ -6817,112 +6817,112 @@ They may have left the room. WaitTreeThread - + running veikia - + ready pasiruošęs - + waiting for address 0x%1 laukia adreso 0x%1 - + sleeping miega - + waiting for IPC response laukia IPC atsakymo - + waiting for objects laukia objektų - + waiting for HLE return laukia HLE atsakymo - + dormant neveikiantis - + dead numiręs - + PC = 0x%1 LR = 0x%2 PC = 0x%1 LR = 0x%2 - + default numatytasis - + all visi - + AppCore AppCore - + SysCore SysCore - + Unknown processor %1 Nežinomas procesorius %1 - + object id = %1 - + processor = %1 procesorius = %1 - + thread id = %1 gijos id = %1 - + process = %1 (%2) - + priority = %1(current) / %2(normal) prioritetas = %1(dabartinis) / %2(normalus) - + last running ticks = %1 paskutinis veikia tiksėjimu = %1 - + not holding mutex nelaiko mutekso @@ -6930,7 +6930,7 @@ They may have left the room. WaitTreeThreadList - + waited by thread laukiamas gijos @@ -6938,17 +6938,17 @@ They may have left the room. WaitTreeTimer - + reset type = %1 perkrovimo tipas = %1 - + initial delay = %1 pradinis laukimas = %1 - + interval delay = %1 intervalo laukimas = %1 @@ -6956,27 +6956,27 @@ They may have left the room. WaitTreeWaitObject - + [%1]%2 %3 [%1]%2 %3 - + waited by no thread nelaukiamas nė vienos gijos - + one shot vieną kartą - + sticky lipnus - + pulse pulsas @@ -6984,7 +6984,7 @@ They may have left the room. WaitTreeWidget - + Wait Tree Laukimo gijų medis diff --git a/dist/languages/nb.ts b/dist/languages/nb.ts index 1ea903eb2..332aab69a 100644 --- a/dist/languages/nb.ts +++ b/dist/languages/nb.ts @@ -2,17 +2,17 @@ ARMRegisters - + ARM Registers ARM Registre - + Register Register - + Value Verdi @@ -20,27 +20,27 @@ AboutDialog - + About Citra Om Citra - - <html><head/><body><p><img src=":/icons/citra.png"/></p></body></html> - <html><head/><body><p><img src=":/icons/citra.png"/></p></body></html> + + <html><head/><body><p><img src=":/icons/lime.png"/></p></body></html> + <html><head/><body><p><img src=":/icons/lime.png"/></p></body></html> - + <html><head/><body><p><span style=" font-size:28pt;">Citra</span></p></body></html> <html><head/><body><p><span style=" font-size:28pt;">Citra</span></p></body></html> - + <html><head/><body><p>%1 | %2-%3 (%4)</p></body></html> <html><head/><body><p>%1 | %2-%3 (%4)</p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -57,12 +57,12 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">Denne programvaren skal ikke brukes til å spille spill du ikke har fått lovlig.</span></p></body></html> - + <html><head/><body><p><a href="https://citra-emu.org/"><span style=" text-decoration: underline; color:#039be5;">Website</span></a> | <a href="https://community.citra-emu.org/"><span style=" text-decoration: underline; color:#039be5;">Forum</span></a> | <a href="https://github.com/citra-emu"><span style=" text-decoration: underline; color:#039be5;">Source Code</span></a> | <a href="https://github.com/citra-emu/citra/graphs/contributors"><span style=" text-decoration: underline; color:#039be5;">Contributors</span></a> | <a href="https://github.com/citra-emu/citra/blob/master/license.txt"><span style=" text-decoration: underline; color:#039be5;">License</span></a></p></body></html> <html><head/><body><p><a href="https://citra-emu.org/"><span style=" text-decoration: underline; color:#039be5;">Nettside</span></a> | <a href="https://community.citra-emu.org/"><span style=" text-decoration: underline; color:#039be5;">Forum</span></a> | <a href="https://github.com/citra-emu"><span style=" text-decoration: underline; color:#039be5;">Kildekode</span></a> | <a href="https://github.com/citra-emu/citra/graphs/contributors"><span style=" text-decoration: underline; color:#039be5;">Bidragsytere</span></a> | <a href="https://github.com/citra-emu/citra/blob/master/license.txt"><span style=" text-decoration: underline; color:#039be5;">Lisens</span></a></p></body></html> - + <html><head/><body><p><span style=" font-size:7pt;">&quot;3DS&quot; is a trademark of Nintendo. Citra is not affiliated with Nintendo in any way.</span></p></body></html> <html><head/><body><p><span style=" font-size:7pt;">&quot;3DS&quot; er et varemerke av Nintendo. Citra er ikke på noen måter affiliert med Nintendo.</span></p></body></html> @@ -70,47 +70,47 @@ p, li { white-space: pre-wrap; } BreakPointModel - + Pica command loaded Pica kommando lastet - + Pica command processed Pica kommandoen behandlet - + Incoming primitive batch Innkommende primitiv batch - + Finished primitive batch Ferdigstilt primitiv batch - + Vertex shader invocation Kantskyggelegger påkalling - + Incoming display transfer Innkommende skjermoverføring - + GSP command processed GSP kommando behandlet - + Buffers swapped Buffere byttet - + Unknown debug context event Ukjent feilsøkingskonteksthendelse @@ -118,32 +118,32 @@ p, li { white-space: pre-wrap; } CalibrationConfigurationDialog - + Communicating with the server... Kommuniserer med serveren... - + Cancel Avbryt - + Touch the top left corner <br>of your touchpad. Trykk på øverste venstre hjørne<br>på styreflaten din. - + Now touch the bottom right corner <br>of your touchpad. Nå berør nederste høyre hjørne <br>på styreflaten. - + Configuration completed! Konfigurasjon fullført! - + OK OK @@ -151,93 +151,93 @@ p, li { white-space: pre-wrap; } ChatRoom - + Room Window Rom Vindu - + Send Chat Message Send Chat Melding - + Send Message Send Melding - + Members Brukere - + %1 has joined %1 ble med i chatten - + %1 has left %1 Har forlatt chatten - + %1 has been kicked %1 ble utestengt - + %1 has been banned %1 ble permanent utestengt - + %1 has been unbanned %1 Utestengelse ble opphevet - + View Profile Vis Profil - - + + Block Player Blokker Spiller - + When you block a player, you will no longer receive chat messages from them.<br><br>Are you sure you would like to block %1? Når du blokkerer en spiller, vil du ikke lenger motta chatmeldinger fra dem.<br><br>Er du sikker på at du vil blokkere %1? - + Kick Fjern - + Ban Utesteng - + Kick Player Fjern Spiller - + Are you sure you would like to <b>kick</b> %1? Er du sikker på at du ønsker å <b>utestenge</b> %1? - + Ban Player Utesteng Spiller - + Are you sure you would like to <b>kick and ban</b> %1? This would ban both their forum username and their IP address. @@ -249,22 +249,22 @@ Dette ville forby både deres brukernavn og IP-adressen. ClientRoom - + Room Window Rom Vindu - + Room Description Rombeskrivelse - + Moderation... Moderering... - + Leave Room Forlat Rom @@ -272,17 +272,17 @@ Dette ville forby både deres brukernavn og IP-adressen. ClientRoomWindow - + Connected Tilkoblet - + Disconnected Frakoblet - + %1 (%2/%3 members) - connected %1 (%2/%3 medlemmer) - tilkoblet @@ -290,108 +290,108 @@ Dette ville forby både deres brukernavn og IP-adressen. CompatDB - + Report Compatibility Rapporter kompatibilitet - - + + Report Game Compatibility Rapporter Spillkompatibilitet - + <html><head/><body><p><span style=" font-size:10pt;">Should you choose to submit a test case to the </span><a href="https://citra-emu.org/game/"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">Citra Compatibility List</span></a><span style=" font-size:10pt;">, The following information will be collected and displayed on the site:</span></p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Hardware Information (CPU / GPU / Operating System)</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Which version of Citra you are running</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The connected Citra account</li></ul></body></html> <html><head/><body><p><span style=" font-size:10pt;">Skulle du velge å sende inn en test case til </span><a href="https://citra-emu.org/game/"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">Citra kompatibilitet Listen</span></a><span style=" font-size:10pt;">, Vil følgende informasjon bli samlet inn og vist på nettstedet:</span></p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Maskivare informasjon (CPU / GPU / Operativsystem)</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Hvilken versjon av Citra du kjører</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Den tilkoblede Citra-kontoen</li></ul></body></html> - + Perfect Perfekt - + <html><head/><body><p>Game functions flawlessly with no audio or graphical glitches.</p></body></html> <html><head/><body><p>Spiller fungerer helt perfekt med ingen lyd- eller grafikkproblemer.</p></body></html> - + Great - + <html><head/><body><p>Game functions with minor graphical or audio glitches and is playable from start to finish. May require some workarounds.</p></body></html> <html><head/><body><p>Spillet fungerer med små grafiske- eller lyd-problemer og er spillbart fra start til slutt. Kan trenge noen justeringer.</p></body></html> - + Okay Ok - + <html><head/><body><p>Game functions with major graphical or audio glitches, but game is playable from start to finish with workarounds.</p></body></html> <html><head/><body><p>Spillet fungerer med store grafiske- eller lyd-problemer, men er spillbart fra start til slutt med justeringer.</p></body></html> - + Bad Dårlig - + <html><head/><body><p>Game functions, but with major graphical or audio glitches. Unable to progress in specific areas due to glitches even with workarounds.</p></body></html> <html><head/><body><p>Spillet fungerer, men med store grafiske- eller lyd-problemer. Umulig å gjøre framgang i spesifikke områder på grunn av problemer selv med justeringer.</p></body></html> - + Intro/Menu Intro/Meny - + <html><head/><body><p>Game is completely unplayable due to major graphical or audio glitches. Unable to progress past the Start Screen.</p></body></html> <html><head/><body><p>Spillet er helt umulig å spille på grunn av store grafiske- eller lydproblemer. Umulig å komme forbi startskjermen.</p></body></html> - + Won't Boot Vil ikke starte opp - + <html><head/><body><p>The game crashes when attempting to startup.</p></body></html> <html><head/><body><p>Spillet krasjer ved oppstart.</p></body></html> - + <html><head/><body><p>Independent of speed or performance, how well does this game play from start to finish on this version of Citra?</p></body></html> <html><head/><body><p>Uavhengig av hastighet eller ytelse, hvor bra fungerer dette spillet fra start til slutt på denne versjonen av Citra?</p></body></html> - + Thank you for your submission! Tusen takk for ditt bidrag! - + Submitting Sender inn - + Communication error Kommunikasjonsfeil - + An error occurred while sending the Testcase - + Next Neste @@ -399,93 +399,93 @@ Dette ville forby både deres brukernavn og IP-adressen. ConfigureAudio - + Output - + Emulation: Emulering: - + HLE (fast) HLE (rask) - + LLE (accurate) LLE (nøyaktig) - + LLE multi-core LLE multi-core - + Output Type - + Output Device - + This post-processing effect adjusts audio speed to match emulation speed and helps prevent audio stutter. This however increases audio latency. Denne etterbehandlingeffekten justerer lydhastigheten for å samsvare med emuleringshastigheten og bidrar til å forhindre lyd-hakking. Dette øker imidlertid lyd forsinkelsen. - + Enable audio stretching Aktiver lydstrekking - + Use global volume - + Set volume: - + Volume: Volum - + 0 % 0 % - + Microphone Mikrofon - + Input Type Inngangstype - + Input Device Inngangsenhet - - + + Auto - + %1% Volume percentage (e.g. 50%) %1% @@ -494,203 +494,203 @@ Dette ville forby både deres brukernavn og IP-adressen. ConfigureCamera - + Form Form - + Camera Kamera - - + + Select the camera to configure Velg kameraet som skal konfigureres - + Camera to configure: Konfigurer kamera: - + Front Foran - + Rear Bak - - + + Select the camera mode (single or double) Velg kameramodus (enkel eller dobbel) - + Camera mode: Kameramodus: - + Single (2D) Enkel (2D) - + Double (3D) Dobbel (3D) - - + + Select the position of camera to configure Velg posisjonen til kameraet for å konfigurere - + Camera position: Kamera posisjon: - + Left Venstre - + Right Høyre - + Configuration Konfigurasjon - - + + Select where the image of the emulated camera comes from. It may be an image or a real camera. Velg hvor bildet fra det emulerte kameraet kommer fra. Det kan være et bilde eller et ekte kamera. - + Camera Image Source: Kamerabildekilde: - + Blank (blank) Blank (blank) - + Still Image (image) Stillbilde (image) - + System Camera (qt) System Kamera (qt) - + File: Fil: - + ... ... - - + + Select the system camera to use Velg systemkameraet som skal brukes - + Camera: Kamera: - + <Default> <Default> - - + + Select the image flip to apply Velg bilde flippen som skal brukes - + Flip: Flip: - + None Ingen - + Horizontal Horisontal - + Vertical Vertikal - + Reverse Revers - + Select an image file every time before the camera is loaded Velg en bilde fil hver gang før kameraet startes opp - + Prompt before load Spør før oppstart - + Preview Forhåndsvisning - + Resolution: 512*384 Oppløsning: 512*384 - + Click to preview Trykk for forhåndsvisning - + Resolution: %1*%2 Oppløsning: %1*%2 - + Supported image files (%1) Støttede bildefiler (%1) - + Open File Åpne fil @@ -698,87 +698,87 @@ Dette ville forby både deres brukernavn og IP-adressen. ConfigureCheats - - + + Cheats - + Add Cheat - + Available Cheats: - + Name - + Type - + Save - + Delete - + Name: - + Notes: - + Code: - + Would you like to save the current cheat? - - - + + + Save Cheat - + Please enter a cheat name. - + Please enter the cheat code. - + Cheat code line %1 is not valid. Would you like to ignore the error and continue? - - + + [new cheat] @@ -786,127 +786,127 @@ Would you like to ignore the error and continue? ConfigureDebug - + Form Form - + GDB GDB - + Enable GDB Stub Aktiver GDB Stub - + Port: Port: - + Logging Loggføring - + Global Log Filter Global loggfilter - + Show Log Console (Windows Only) Vis Loggkonsoll (kun Windows) - + Open Log Location Åpne Logg Plassering - + CPU - + Use global clock speed - + Set clock speed: - + CPU Clock Speed - + <html><body>Changes the emulated CPU clock frequency.<br>Underclocking can increase performance but may cause the game to freeze.<br>Overclocking may reduce in game lag but also might cause freezes</body></html> - + <html><head/><body><p>Enables the use of the ARM JIT compiler for emulating the 3DS CPUs. Don't disable unless for debugging purposes</p></body></html> - + Enable CPU JIT Aktiver CPU JIT - + Enable debug renderer - + Dump command buffers - + Miscellaneus - + <html><head/><body><p>Introduces a delay to the first ever launched app thread if LLE modules are enabled, to allow them to initialize.</p></body></html> - + Delay app start for LLE module initialization - + <html><head/><body><p>CPU Clock Speed Information<br/>Underclocking can increase performance but may cause the game to freeze.<br/>Overclocking may reduce in game lag but also might cause freezes</p></body></html> - + Validation layer not available - + Unable to enable debug renderer because the layer <strong>VK_LAYER_KHRONOS_validation</strong> is missing. Please install the Vulkan SDK or the appropriate package of your distribution - + Command buffer dumping not available - + Unable to enable command buffer dumping because the layer <strong>VK_LAYER_LUNARG_api_dump</strong> is missing. Please install the Vulkan SDK or the appropriate package of your distribution @@ -914,92 +914,92 @@ Would you like to ignore the error and continue? ConfigureDialog - + Citra Configuration Citra Konfigurasjon - - - + + + General Generelt - - - + + + System System - - + + Input Inngang - - + + Hotkeys Hurtigtaster - - + + Graphics Grafikk - - + + Enhancements Forberedninger - - - + + + Audio Lyd - - + + Camera Kamera - - + + Debug Debug - - + + Storage - - + + Web Nett - - + + UI UI - + Controls Kontrollere - + Advanced Avansert @@ -1007,278 +1007,278 @@ Would you like to ignore the error and continue? ConfigureEnhancements - + Form - + Renderer - + Internal Resolution - + Auto (Window Size) - + Native (400x240) - + 2x Native (800x480) - + 3x Native (1200x720) - + 4x Native (1600x960) - + 5x Native (2000x1200) - + 6x Native (2400x1440) - + 7x Native (2800x1680) - + 8x Native (3200x1920) - + 9x Native (3600x2160) - + 10x Native (4000x2400) - + Enable Linear Filtering - + Post-Processing Shader - + Texture Filter - + None - + Anime4K - + Bicubic - + ScaleForce - + xBRZ - + MMPX - + Stereoscopy - + Stereoscopic 3D Mode - + Off - - + + Side by Side - + Anaglyph - + Interlaced - + Reverse Interlaced - + Depth - + % - + Eye to Render in Monoscopic Mode - + Left Eye (default) - + Right Eye - + Layout - + Screen Layout: - + Default - + Single Screen - + Large Screen - + Separate Windows - + Hybrid Screen - + Swap Screens - + Rotate Screens Upright - + Large Screen Proportion: - + Background Color: - + Utility - + <html><head/><body><p>Replace textures with PNG files.</p><p>Textures are loaded from load/textures/[Title ID]/.</p></body></html> - + Use Custom Textures - + <html><head/><body><p>Dump textures to PNG files.</p><p>Textures are dumped to dump/textures/[Title ID]/.</p></body></html> - + Dump Textures - + <html><head/><body><p>Load all custom textures into memory on boot, instead of loading them when the game requires them.</p></body></html> - + Preload Custom Textures - + <html><head/><body><p>Load custom textures asynchronously with background threads to reduce loading stutter</p></body></html> - + Async Custom Texture Loading @@ -1286,136 +1286,136 @@ Would you like to ignore the error and continue? ConfigureGeneral - + Form Form - + General Generelt - + Confirm exit while emulation is running Bekreft avslutting mens emuleringen kjører - + Pause emulation when in background Pause emuleringen når i bakgrunnen - + Mute audio when in background - + Hide mouse on inactivity Skjul musen ved inaktivitet - + Enable Gamemode - + Updates Oppdateringer - + Check for updates on start Se etter oppdateringer ved start - + Silently auto update after closing Stille automatisk oppdatering etter avslutning - + Emulation Emulering - + Region: Region - + Auto-select Auto-Velg - + Use global emulation speed - + Set emulation speed: - + Emulation Speed: Emulator Hastighet: - + Screenshots - + Use global screenshot path - + Set screenshot path: - + Save Screenshots To - + ... - + Reset All Settings Nullstill Alle Innstillinger - - - - - + + + + + unthrottled Ubegrenset - + Select Screenshot Directory - + Citra Citra - + Are you sure you want to <b>reset your settings</b> and close Citra? Er du sikker på at du vil <b>tilbakestille innstillingene dine</b> og lukke Citra? @@ -1423,157 +1423,157 @@ Would you like to ignore the error and continue? ConfigureGraphics - + Form Form - + Graphics - + API Settings - + Graphics API - + Software - + OpenGL - + Vulkan - + Physical Device - + OpenGL Renderer - + SPIR-V Shader Generation - + Renderer Gjengivelse - + <html><head/><body><p>Use the selected graphics API to accelerate shader emulation.</p><p>Requires a relatively powerful GPU for better performance.</p></body></html> - + Enable Hardware Shader Aktiver Maskinvare Gjengivelse - + <html><head/><body><p>Correctly handle all edge cases in multiplication operation in shaders. </p><p>Some games requires this to be enabled for the hardware shader to render properly.</p><p>However this would reduce performance in most games.</p></body></html> <html><head/><body><p>Behandle alle kantsaker korrekt i multiplikasjonoperasjon i shaders.</p><p>Noen spill krever at dette er aktivert for at maskinvare shader skal gjengis riktig.</p><p>Dette vil imidlertid redusere ytelsen i de fleste spill.</p></body></html> - + Accurate Multiplication Nøyaktig Multiplikasjon - + <html><head/><body><p>Use the JIT engine instead of the interpreter for software shader emulation. </p><p>Enable this for better performance.</p></body></html> <html><head/><body><p>Nøyaktig Bruk JIT motoren i stedet for tolken for programvare shader emulering. </p><p>Aktiver dette for bedre ytelse.</p></body></html> - + Enable Shader JIT Aktiver Gjengivelse JIT - + <html><head/><body><p>Compile shaders using background threads to avoid shader compilation stutter. Expect temporary graphical glitches</p></body></html> - + Enable Async Shader Compilation - + <html><head/><body><p>Perform presentation on separate threads. Improves performance when using Vulkan in most games.</p></body></html> - + Enable Async Presentation - + Advanced Avansert - + <html><head/><body><p>Overrides the sampling filter used by games. This can be useful in certain cases with poorly behaved games when upscaling. If unsure set this to Game Controlled</p></body></html> - + Texture Sampling - + Game Controlled - + Nearest Neighbor - + Linear - + <html><head/><body><p>Reduce stuttering by storing and loading generated shaders to disk.</p></body></html> - + Use Disk Shader Cache - + VSync prevents the screen from tearing, but some graphics cards have lower performance with VSync enabled. Keep it enabled if you don't notice a performance difference. VSync forhindrer screen tearing, men noen grafikkort har lavere ytelse når VSync er aktivert. Hold den aktivert hvis du ikke merker en ytelsesforskjell. - + Enable VSync Aktiver VSync @@ -1581,63 +1581,63 @@ Would you like to ignore the error and continue? ConfigureHotkeys - + Hotkey Settings Hurtigtast Instillinger - + Double-click on a binding to change it. Dobbeltklikk på en hurtigtast for å endre den. - + Clear All - + Restore Defaults - + Action Handling - + Hotkey Hurtigtast - - + + Conflicting Key Sequence Konflikterende Nøkkelsekvens - + The entered key sequence is already assigned to: %1 - + A 3ds button - + Restore Default - + Clear - + The default key sequence is already assigned to: %1 @@ -1645,307 +1645,307 @@ Would you like to ignore the error and continue? ConfigureInput - + ConfigureInput KonfigurerInnganger - + Profile Profil - + New Ny - + Delete Slett - + Rename Gi nytt navn - + Face Buttons Face Buttons - + Y: Y: - + X: X: - + B: B: - + A: A: - + Directional Pad Directional Pad - - - + + + Up: Opp - - - + + + Down: Ned - - - + + + Left: Venstre - - - + + + Right: Høyre - + Misc. Misc. - + Start: Start: - + Select: Select: - + Home: Home: - + Power: - + Circle Mod: Circle Mod: - + GPIO14: GPIO14: - + Debug: Feilsøk: - + Circle Pad Circle Pad - - - + + + Set Analog Stick Still Analog Stick - - + + Deadzone: 0 Dødsone: 0 - + C-Stick C-Stick - + Shoulder Buttons Shoulder Buttons - + ZR: ZR: - + ZL: ZL: - + L: L: - + R: R: - + Motion / Touch... Bevegelse / Berøring... - + Auto Map - + Clear All Slett Alt - + Restore Defaults Gjenopprett Standardinnstillinger - - - + + + Clear Slett - - - + + + [not set] [ikke satt] - - - + + + Restore Default Gjenopprett Standard - - + + Information Informasjon - + After pressing OK, first move your joystick horizontally, and then vertically. Etter å ha trykket på OK, flytt først joysticken horisontalt og deretter vertikalt. - - + + Deadzone: %1% Dødsone: %1% - - + + Modifier Scale: %1% Modifikasjonsskala: %1% - + Warning - + Auto mapping failed. Your controller may not have a corresponding mapping - + After pressing OK, press any button on your joystick - + [press key] [trykk på tast] - + Error! Feil! - + You're using a key that's already bound. Du bruker en tast som allerede er bundet. - + New Profile Ny Profil - + Enter the name for the new profile. Skriv inn navnet på den nye profilen. - + Delete Profile Slett Profil - + Delete profile %1? Slett profil %1? - + Rename Profile Endre navn til profilen - + New name: Nytt Navn: - + Duplicate profile name Duplikat profilnavn - + Profile name already exists. Please choose a different name. Profilnavn eksisterer allerede. Vennligst velg et annet navn. @@ -1953,198 +1953,198 @@ Would you like to ignore the error and continue? ConfigureMotionTouch - + Configure Motion / Touch Konfigurer Bevegelse / Berøring - + Motion Bevegelse - + Motion Provider: Bevegelses leverandør: - + Sensitivity: Sensitivitet: - + Controller: - - - - - + + + + + Configure Konfigurer - + Touch Berøring - + Touch Provider: Berørings Leverandør: - + Calibration: Kalibrering: - + (100, 50) - (1800, 850) (100, 50) - (1800, 850) - + Use button mapping: Bruk tastetilordning - + CemuhookUDP Config CemuhookUDP Konfigurasjon - + You may use any Cemuhook compatible UDP input source to provide motion and touch input. Du kan bruke en hvilken som helst Cemuhook kompatibel UDP inngangskilde for å gi bevegelse og berørings inngang. - + Server: Server: - + Port: Port: - + Pad: Pad: - + Pad 1 Pad 1 - + Pad 2 Pad 2 - + Pad 3 Pad 3 - + Pad 4 Pad 4 - + Learn More Lær Mer - - + + Test Test - + Mouse (Right Click) Mus (Høyre Klikk) - - + + CemuhookUDP CemuhookUDP - + SDL - + Emulator Window Emulator Vindu - + <a href='https://citra-emu.org/wiki/using-a-controller-or-android-phone-for-motion-or-touch-input'><span style="text-decoration: underline; color:#039be5;">Learn More</span></a> <a href='https://citra-emu.org/wiki/using-a-controller-or-android-phone-for-motion-or-touch-input'><span style="text-decoration: underline; color:#039be5;">Lær Mer</span></a> - + Information - + After pressing OK, press a button on the controller whose motion you want to track. - + [press button] - + Testing Testing - + Configuring Konfigurerer - + Test Successful Test Vellykket - + Successfully received data from the server. Mottatt data fra serveren vellykket. - + Test Failed Test Mislyktes - + Could not receive valid data from the server.<br>Please verify that the server is set up correctly and the address and port are correct. Kunne ikke motta gyldige data fra serveren.<br>Kontroller at serveren er riktig konfigurert, og adressen og porten er riktige. - + Citra Citra - + UDP Test or calibration configuration is in progress.<br>Please wait for them to finish. UDP Test eller kalibreringskonfigurasjon pågår.<br>Vennligst vent på at de skal fullføre. @@ -2152,97 +2152,97 @@ Would you like to ignore the error and continue? ConfigurePerGame - + Dialog - + Info - + Size - + Format - + Name - + Filepath - + Title ID - + Reset Game Settings - + Use global configuration (%1) - + General - + System - + Enhancements - + Graphics - + Audio - + Debug - + Cheats - + Properties - + Citra - + Are you sure you want to <b>reset your settings for this game</b>? @@ -2250,65 +2250,65 @@ Would you like to ignore the error and continue? ConfigureStorage - + Form - + Storage - + Use Virtual SD - + Custom Storage - + Use Custom Storage - + NAND Directory - - + + Open - - + + NOTE: This does not move the contents of the previous directory to the new one. - - + + Change - + SDMC Directory - + Select NAND Directory - + Select SDMC Directory @@ -2316,1064 +2316,1064 @@ Would you like to ignore the error and continue? ConfigureSystem - + Form Form - + System Settings System Instillinger - + Enable New 3DS mode Aktiver Ny 3DS modus - + Use LLE applets (if installed) - + Username Brukernavn - + Birthday Fødselsdag - + January Januar - + February Februar - + March Mars - + April April - + May Mai - + June Juni - + July Juli - + August August - + September September - + October Oktober - + November November - + December Desember - + Language Språk - + Note: this can be overridden when region setting is auto-select Merk: dette kan overstyres når regioninnstillingen er automatisk valgt - + Japanese (日本語) Japansk (日本語) - + English Engelsk - + French (français) Fransk (français) - + German (Deutsch) Tysk (Deutsch) - + Italian (italiano) Italiensk (italiano) - + Spanish (español) Spansk (español) - + Simplified Chinese (简体中文) Enkel Kinesisk (简体中文) - + Korean (한국어) Koreansk (한국어) - + Dutch (Nederlands) Nederlandsk (Nederlands) - + Portuguese (português) portugisisk (português) - + Russian (Русский) Russisk (Русский) - + Traditional Chinese (正體中文) Tradisjonell Kinesisk (正體中文) - + Sound output mode Lydutgangsmodus - + Mono Mono - + Stereo Stero - + Surround Surround - + Country Land - + Clock Klokke - + System Clock System Klokke - + Fixed Time Bestemt Tid - + Startup time Oppstartstid - + yyyy-MM-ddTHH:mm:ss yyyy-MM-ddTHH:mm:ss - + Offset time - + days - + HH:mm:ss - + Initial System Ticks - + Random - + Fixed - + Initial System Ticks Override - + Play Coins: Spill Mynter - + Run System Setup when Home Menu is launched - + Console ID: Konsoll ID: - + Regenerate Regenerere - + 3GX Plugin Loader: - + Enable 3GX plugin loader - + Allow games to change plugin loader state - + Download System Files from Nitendo servers - + Minimal - + Old 3DS - + New 3DS - + JPN - + USA - + EUR - + AUS - + CHN - + KOR - + TWN - + Download - + System settings are available only when game is not running. System innstillingene er ikke tilgjengelig når spillet kjører. - + Japan Japan - + Anguilla Anguilla - + Antigua and Barbuda Antigua og Barbuda - + Argentina Argentina - + Aruba Aruba - + Bahamas Bahamas - + Barbados Barbados - + Belize Belize - + Bolivia Bolivia - + Brazil Brasil - + British Virgin Islands De Britiske Jomfruøyer - + Canada Canada - + Cayman Islands Caymanøyene - + Chile Chile - + Colombia Colombia - + Costa Rica Costa Rica - + Dominica Dominica - + Dominican Republic Den Dominikanske Republikk - + Ecuador Ecuador - + El Salvador El Salvador - + French Guiana Republikken Guinea - + Grenada Grenada - + Guadeloupe Guadeloupe - + Guatemala Guatemala - + Guyana Guyana - + Haiti Haiti - + Honduras Honduras - + Jamaica Jamaica - + Martinique Martinique - + Mexico Mexico - + Montserrat Montserrat - + Netherlands Antilles De Nederlandske Antiller - + Nicaragua Nicaragua - + Panama Panama - + Paraguay Paraguay - + Peru Peru - + Saint Kitts and Nevis Føderasjonen Saint Kitts og Nevis - + Saint Lucia Saint Lucia - + Saint Vincent and the Grenadines Saint Vincent og Grenadinene - + Suriname Surinam - + Trinidad and Tobago Trinidad og Tobago - + Turks and Caicos Islands Turks- og Caicosøyene - + United States Amerikas forente stater - + Uruguay Uruguay - + US Virgin Islands De Amerikanske Jomfruøyer - + Venezuela Venezuela - + Albania Albania - + Australia Australia - + Austria Østerrike - + Belgium Belgia - + Bosnia and Herzegovina Bosnia-Hercegovina - + Botswana Botswana - + Bulgaria Bulgaria - + Croatia Kroatia - + Cyprus Kypros - + Czech Republic Tsjekkia - + Denmark Danmark - + Estonia Estland - + Finland Finland - + France Frankrike - + Germany Tyskland - + Greece Hellas - + Hungary Ungarn - + Iceland Island - + Ireland Irland - + Italy Italia - + Latvia Latvia - + Lesotho Lesotho - + Liechtenstein Liechtenstein - + Lithuania Litauen - + Luxembourg Luxemburg - + Macedonia Makedonia - + Malta Malta - + Montenegro Montenegro - + Mozambique Mosambik - + Namibia Namibia - + Netherlands Nederland - + New Zealand New Zealand - + Norway Norge - + Poland Polen - + Portugal Portugal - + Romania Romania - + Russia Russland - + Serbia Serbia - + Slovakia Slovakia - + Slovenia Slovenia - + South Africa Sør-Afrika - + Spain Spania - + Swaziland Swaziland - + Sweden Sverige - + Switzerland Sveits - + Turkey Tyrkia - + United Kingdom Storbritannia - + Zambia Zambia - + Zimbabwe Zimbabwe - + Azerbaijan Aserbajdsjan - + Mauritania Mauritania - + Mali Mali - + Niger Niger - + Chad Tsjad - + Sudan Sudan - + Eritrea Eritrea - + Djibouti Djibouti - + Somalia Somalia - + Andorra Andorra - + Gibraltar Gibraltar - + Guernsey Guernsey - + Isle of Man Man - + Jersey Jersey - + Monaco Monaco - + Taiwan Taiwan - + South Korea Sør-Korea - + Hong Kong Hong Kong - + Macau Macao - + Indonesia Indonesia - + Singapore Singapore - + Thailand Thailand - + Philippines Filippinene - + Malaysia Malaysia - + China Kina - + United Arab Emirates De forente arabiske emirater - + India India - + Egypt Egypt - + Oman Oman - + Qatar Qatar - + Kuwait Kuwait - + Saudi Arabia Saudi Arabia - + Syria Syria - + Bahrain Bahrain - + Jordan Jordan - + San Marino San Marino - + Vatican City Vatikanstaten - + Bermuda Bermuda - + Download System Files from Nintendo servers - + Citra is missing keys to download system files. <br><a href='https://citra-emu.org/wiki/aes-keys/'><span style="text-decoration: underline; color:#039be5;">How to get keys?</span></a> - - + + Console ID: 0x%1 Konsoll ID: 0x%1 - + This will replace your current virtual 3DS with a new one. Your current virtual 3DS will not be recoverable. This might have unexpected effects in games. This might fail, if you use an outdated config savegame. Continue? Dette erstatter din nåværende virtuelle 3DS med en ny. Din nåværende virtuelle 3DS kan ikke gjenopprettes. Dette kan ha uventede effekter i spill. Dette kan misslykkes, hvis du bruker et utdatert konfigurasjon lagret spill. Fortsette? - + Warning Advarsel - + Downloading files... - + Cancel - - + + Citra - + Downloading system files failed. - + Successfully downloaded system files. @@ -3381,91 +3381,91 @@ Would you like to ignore the error and continue? ConfigureTouchFromButton - + Configure Touchscreen Mappings Konfigurer berøringsskjerm tilordning - + Mapping: Tilordning - + New Ny - + Delete Slett - + Rename Endre navn - + Click the bottom area to add a point, then press a button to bind. Drag points to change position, or double-click table cells to edit values. Klikk på det nederste området for å legge til et punkt, og trykk deretter på en tast for å binde. Dra punkter for å endre posisjon, eller dobbeltklikk på tabellceller for å redigere verdier. - + Delete Point Slett Punkt - + Button Knapp - + X X axis - + Y Y axis - + New Profile Ny Profil - + Enter the name for the new profile. Skriv inn navn for ny profil. - + Delete Profile Slett Profil - + Delete profile %1? Slett profil %1? - + Rename Profile Endre navn til profilen - + New name: Nytt navn - + [press key] [trykk på tasten] @@ -3473,113 +3473,113 @@ Dra punkter for å endre posisjon, eller dobbeltklikk på tabellceller for å re ConfigureUi - + Form Form - + General Generelt - + Note: Changing language will apply your configuration. Merk: Endre språk vil lagre konfigurasjonen din. - + Interface language: Grensesnittspråk: - + Theme: Tema: - + Game List Spill liste - + Icon Size: Ikon Størrelse: - - + + None Ingen - + Small (24x24) liten (24x24) - + Large (48x48) Stor (48x48) - + Row 1 Text: Rad 1 tekst: - - + + File Name Filnavn - - + + Full Path Full Plassering - - + + Title Name (short) Tittel Navn (kort) - - + + Title ID Tittel ID - - + + Title Name (long) Tittel Navn (Langt) - + Row 2 Text: Rad 2 tekst: - + Hide Titles without Icon Skjul titler uten ikon - + Single Line Mode Enkeltlinjemodus - + <System> <System> - + English Engelsk @@ -3587,135 +3587,135 @@ Dra punkter for å endre posisjon, eller dobbeltklikk på tabellceller for å re ConfigureWeb - + Form Form - + Citra Web Service Citra Web Tjenester - + By providing your username and token, you agree to allow Citra to collect additional usage data, which may include user identifying information. Ved å gi brukernavn og nøkkel, samtykker du i å tillate Citra å samle inn brukerdata, som kan inneholde bruker indentifiserende informasjon. - - + + Verify Verifisere - + Sign up Registrer deg - + Token: Nøkkel: - + Username: Brukernavn: - + What is my token? Hva er min nøkkel? - + Web Service configuration can only be changed when a public room isn't being hosted. Web Service-konfigurasjon kan bare endres når et offentlig rom ikke blir hostet. - + Telemetry Telemetri - + Share anonymous usage data with the Citra team Del anonyme brukerdata med Citra-teamet - + Learn more Lær mer - + Telemetry ID: Telemetri ID: - + Regenerate Regenerere - + Discord Presence Discord tilstedeværelse - + Show Current Game in your Discord Status Vis Gjeldende Spill i Discord Statusen din. - + <a href='https://citra-emu.org/entry/telemetry-and-why-thats-a-good-thing/'><span style="text-decoration: underline; color:#039be5;">Learn more</span></a> <a href='https://citra-emu.org/entry/telemetry-and-why-thats-a-good-thing/'><span style="text-decoration: underline; color:#039be5;">Lær mer</span></a> - + <a href='https://profile.citra-emu.org/'><span style="text-decoration: underline; color:#039be5;">Sign up</span></a> <a href='https://profile.citra-emu.org/'><span style="text-decoration: underline; color:#039be5;">Registrer deg</span></a> - + <a href='https://citra-emu.org/wiki/citra-web-service/'><span style="text-decoration: underline; color:#039be5;">What is my token?</span></a> <a href='https://citra-emu.org/wiki/citra-web-service/'><span style="text-decoration: underline; color:#039be5;">Hva er min nøkkel?</span></a> - - + + Unspecified Uspesifisert - - + + Telemetry ID: 0x%1 Telemetri ID: 0x%1 - + Token not verified Nøkkel ikke bekreftet - + Token was not verified. The change to your token has not been saved. Nøkkel ble ikke bekreftet. Endringen til nøkelen ditt er ikke lagret. - + Verifying... Verifiserer... - + Verification failed Verifikasjon misslyktes - + Verification failed. Check that you have entered your token correctly, and that your internet connection is working. Bekreftelsen mislyktes. Sjekk at du har lagt inn nøkkelen riktig, og at internettforbindelsen din fungerer. @@ -3723,47 +3723,47 @@ Dra punkter for å endre posisjon, eller dobbeltklikk på tabellceller for å re DirectConnect - + Direct Connect Direkte Tilkobling - + Server Address - + <html><head/><body><p>Server address of the host</p></body></html> - + Port Port - + <html><head/><body><p>Port number the host is listening on</p></body></html> <html><head/><body><p>Portnummer verten lytter på</p></body></html> - + 24872 24872 - + Nickname Kallenavn - + Password Passord - + Connect Koble til @@ -3771,12 +3771,12 @@ Dra punkter for å endre posisjon, eller dobbeltklikk på tabellceller for å re DirectConnectWindow - + Connecting Kobler til - + Connect Koble til @@ -3784,110 +3784,110 @@ Dra punkter for å endre posisjon, eller dobbeltklikk på tabellceller for å re DumpingDialog - + Dump Video - + Output - + Format: - - - + + + Options: - - - - + + + + ... - + Path: - + Video - - + + Encoder: - - + + Bitrate: - - + + bps - + Audio - - + + Citra - + Please specify the output path. - + output formats - + video encoders - + audio encoders - + Could not find any available %1. Please check your FFmpeg installation used for compilation. - - - - + + + + %1 (%2) - + Select Video Output Path @@ -3895,418 +3895,418 @@ Please check your FFmpeg installation used for compilation. GMainWindow - + <a href='https://citra-emu.org/entry/telemetry-and-why-thats-a-good-thing/'>Anonymous data is collected</a> to help improve Citra. <br/><br/>Would you like to share your usage data with us? <a href='https://citra-emu.org/entry/telemetry-and-why-thats-a-good-thing/'>Anonym data samles inn</a> for å forbedre Citra. <br/><br/>Vil du dele dine brukerdata med oss? - + Telemetry Telemetri - + No Suitable Vulkan Devices Detected - + Vulkan initialization failed during boot.<br/>Your GPU may not support Vulkan 1.1, or you do not have the latest graphics driver. - - + + Current emulation speed. Values higher or lower than 100% indicate emulation is running faster or slower than a 3DS. Nåværende emuleringhastighet. Verdier høyere eller lavere enn 100% indikerer at emuleringen kjører raskere eller langsommere enn en 3DS. - - + + How many frames per second the game is currently displaying. This will vary from game to game and scene to scene. Hvor mange bilder per sekund spillet vises for øyeblikket. Dette vil variere fra spill til spill og scene til scene. - - + + Time taken to emulate a 3DS frame, not counting framelimiting or v-sync. For full-speed emulation this should be at most 16.67 ms. Tid tatt for å emulere et 3DS bilde, gjelder ikke bildebegrensning eller V-Sync. For raskest emulering bør dette være høyst 16,67 ms. - + Clear Recent Files Tøm nylige filer - + &Continue - + &Pause - + Update Available Oppdatering Tilgjengelig - + An update is available. Would you like to install it now? En oppdatering er tilgjengelig. Ønsker du å installere den nå? - + No Update Found Ingen Oppdatering Funnet - + No update is found. Ingen oppdatering ble funnet. - + Citra is running a game TRANSLATORS: This string is shown to the user to explain why Citra needs to prevent the computer from sleeping - - + + Invalid ROM Format Ugyldig ROM Format - - + + Your ROM format is not supported.<br/>Please follow the guides to redump your <a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>game cartridges</a> or <a href='https://citra-emu.org/wiki/dumping-installed-titles/'>installed titles</a>. ROM-formatet støttes ikke.<br/>Følg veiledningene for å redumpe dine<a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>spillpatroner</a> eller <a href='https://citra-emu.org/wiki/dumping-installed-titles/'>installerte titler</a>. - + ROM Corrupted ROM Korrupt - + Your ROM is corrupted. <br/>Please follow the guides to redump your <a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>game cartridges</a> or <a href='https://citra-emu.org/wiki/dumping-installed-titles/'>installed titles</a>. ROM er ødelagt.<br/>Vennligst følg veiledningene for å dumpe din<a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>Spillpatronen</a> eller <a href='https://citra-emu.org/wiki/dumping-installed-titles/'>installerte titler</a>. - + ROM Encrypted ROM Kryptert - + Your ROM is encrypted. <br/>Please follow the guides to redump your <a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>game cartridges</a> or <a href='https://citra-emu.org/wiki/dumping-installed-titles/'>installed titles</a>. Din ROM er kryptert. <br/>Vennligst følg veiledningene får å dumpe <a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>spillpatroner</a> eller <a href='https://citra-emu.org/wiki/dumping-installed-titles/'>installerte titler</a>. - + Unsupported ROM - + GBA Virtual Console ROMs are not supported by Citra. - + Error while loading ROM! Feil ved lasting av ROM! - + An unknown error occurred. Please see the log for more details. - + CIA must be installed before usage CIA må installeres før bruk - + Before using this CIA, you must install it. Do you want to install it now? Før du bruker denne CIA, må du installere den. Vil du installere det nå? - - + + Slot %1 Spor %1 - + Slot %1 - %2 %3 - + Error Opening %1 Folder Feil ved Åpning av %1 Mappe - - + + Folder does not exist! Mappen eksistere ikke! - + Dumping... Dumper... - - + + Cancel Kanseller - - - - - - - - - + + + + + + + + + Citra Citra - + Could not dump base RomFS. Refer to the log for details. Kunne ikke dumpe basen RomFS. Se loggen for detaljer. - + Error Opening %1 Feil ved åpning av %1 - + Select Directory Velg Mappe - + Properties - + The game properties could not be loaded. - + 3DS Executable (%1);;All Files (*.*) %1 is an identifier for the 3DS executable file extensions. 3DS Executable (%1);;All Files (*.*) - + Load File Last Fil - + Load Files Last Filer - + 3DS Installation File (*.CIA*) 3DS Installasjons Fil (*.CIA*) - + All Files (*.*) Alle Filer (*.*) - + %1 has been installed successfully. %1 Ble installert vellykket. - + Unable to open File Kan ikke åpne Fil - + Could not open %1 Kunne ikke åpne %1 - + Installation aborted Installasjon avbrutt - + The installation of %1 was aborted. Please see the log for more details Installeringen av %1 ble avbrutt. Vennligst se logg for detaljer - + Invalid File Ugyldig Fil - + %1 is not a valid CIA %1 er ikke en gyldig CIA - + Encrypted File Kryptert Fil - + %1 must be decrypted before being used with Citra. A real 3DS is required. %1 må bli dekryptert før den kan bli brukt av Citra. En ekte 3DS er nødvendig. - + Unable to find File - + Could not find %1 - + Uninstalling '%1'... - + Failed to uninstall '%1'. - + Successfully uninstalled '%1'. - + File not found Fil ikke funnet - + File "%1" not found Fil "%1" ble ikke funnet - + Missing Citra Account Mangler Citra Bruker - + You must link your Citra account to submit test cases.<br/>Go to Emulation &gt; Configure... &gt; Web to do so. Du må koble din Citra-konto til å sende inn testtilfeller.<br/>Gå til Emulering &gt; Konfigurasjon... &gt; Web får å gjøre det. - + Savestates - + Warning: Savestates are NOT a replacement for in-game saves, and are not meant to be reliable. Use at your own risk! - - - + + + Error opening amiibo data file - + A tag is already in use. - + Game is not looking for amiibos. - + Amiibo File (%1);; All Files (*.*) Amiibo File (%1);; All Files (*.*) - + Load Amiibo Last inn Amiibo - + Unable to open amiibo file "%1" for reading. - + Record Movie Ta Opp Video - + Movie recording cancelled. Filmopptak avbrutt. - - + + Movie Saved Film Lagret - - + + The movie is successfully saved. Filmen ble lagret vellykket. - + Invalid Screenshot Directory - + Cannot create specified screenshot directory. Screenshot path is set back to its default value. - + Could not load video dumper - + FFmpeg could not be loaded. Make sure you have a compatible version installed. To install FFmpeg to Citra, press Open and select your FFmpeg directory. @@ -4315,158 +4315,158 @@ To view a guide on how to install FFmpeg, press Help. - + Select FFmpeg Directory - + The provided FFmpeg directory is missing %1. Please make sure the correct directory was selected. - + FFmpeg has been sucessfully installed. - + Installation of FFmpeg failed. Check the log file for details. - + Could not start video dumping.<br>Refer to the log for details. Kunne ikke starte videodumping.<br>Se loggen for detaljer. - + Recording %1 - + Playing %1 / %2 - + Movie Finished - + Speed: %1% Fart: %1% - + Speed: %1% / %2% Fart: %1% / %2% - + Game: %1 FPS Spill: %1 FPS - + Frame: %1 ms Bilde: %1 ms - + VOLUME: MUTE - + VOLUME: %1% Volume percentage (e.g. 50%) - + %1 is missing. Please <a href='https://citra-emu.org/wiki/dumping-system-archives-and-the-shared-fonts-from-a-3ds-console/'>dump your system archives</a>.<br/>Continuing emulation may result in crashes and bugs. %1 mangler. Vennligst <a href='https://citra-emu.org/wiki/dumping-system-archives-and-the-shared-fonts-from-a-3ds-console/'>dump systemarkivene dine</a>.<br/>Fortsatt emulering kan føre til krasjer og feil. - + A system archive Et System Arkiv - + System Archive Not Found System Arkiv ikke funnet - + System Archive Missing System Arkiv Mangler - + Save/load Error Lagre/laste inn Feil - + Fatal Error Fatal Feil - + A fatal error occurred. <a href='https://community.citra-emu.org/t/how-to-upload-the-log-file/296'>Check the log</a> for details.<br/>Continuing emulation may result in crashes and bugs. - + Fatal Error encountered Fatal Feil Oppstått - + Continue Fortsett - + Quit Game - + OK - + Would you like to exit now? Vil du avslutte nå? - + The game is still running. Would you like to stop emulation? Spillet kjører fortsatt. Vil du stoppe emulering? - + Playback Completed Avspilling Fullført - + Movie playback completed. Filmavspilling fullført. - + Primary Window - + Secondary Window @@ -4474,22 +4474,22 @@ To view a guide on how to install FFmpeg, press Help. GPUCommandListModel - + Command Name Kommando Navn - + Register Register - + Mask Mask - + New Value Ny Verdi @@ -4497,23 +4497,23 @@ To view a guide on how to install FFmpeg, press Help. GPUCommandListWidget - + Pica Command List Pica Kommando Liste - - + + Start Tracing begynn å Spore - + Copy All Kopier Alt - + Finish Tracing Fullfør sporing @@ -4521,7 +4521,7 @@ To view a guide on how to install FFmpeg, press Help. GPUCommandStreamWidget - + Graphics Debugger Grafikk Feilsøker @@ -4529,42 +4529,42 @@ To view a guide on how to install FFmpeg, press Help. GRenderWindow - + OpenGL not available! - + OpenGL shared contexts are not supported. - + Error while initializing OpenGL! - + Your GPU may not support OpenGL, or you do not have the latest graphics driver. - + Error while initializing OpenGL 4.3! - + Your GPU may not support OpenGL 4.3, or you do not have the latest graphics driver.<br><br>GL Renderer:<br>%1 - + Error while initializing OpenGL ES 3.2! - + Your GPU may not support OpenGL ES 3.2, or you do not have the latest graphics driver.<br><br>GL Renderer:<br>%1 @@ -4572,193 +4572,193 @@ To view a guide on how to install FFmpeg, press Help. GameList - - + + Compatibility Kompatibilitet - - + + Region Region - - + + File type Filtype - - + + Size Størrelse - + Open Save Data Location Åpne Lagringsdata Plassering - + Open Extra Data Location Åpne Ekstra Data Lokasjon - + Open Application Location Åpne applikasjons plassering - + Open Update Data Location Åpne Oppdateringdata Plassering - + Open DLC Data Location - + Open Texture Dump Location Åpne Tekstur Dump Lokasjon - + Open Custom Texture Location Åpne Tilpasset Tekstur Lokasjon - + Open Mods Location Åpne Modifikasjoner Lokasjon - + Dump RomFS Dump RomFS - + Disk Shader Cache - + Open Shader Cache Location - + Delete OpenGL Shader Cache - + Uninstall - + Everything - + Game - + Update - + DLC - + Navigate to GameDB entry Naviger til GameDB oppføring - + Properties - - - - + + + + Citra - + Are you sure you want to completely uninstall '%1'? This will delete the game if installed, as well as any installed updates or DLC. - - + + %1 (Update) - - + + %1 (DLC) - + Are you sure you want to uninstall '%1'? - + Are you sure you want to uninstall the update for '%1'? - + Are you sure you want to uninstall all DLC for '%1'? - + Scan Subfolders Skann Undermapper - + Remove Game Directory Slett Spill Mappe - + Move Up - + Move Down - + Open Directory Location Fjern Mappe Plassering - + Name Navn @@ -4766,82 +4766,82 @@ This will delete the game if installed, as well as any installed updates or DLC. GameListItemCompat - + Perfect Perfekt - + Game functions flawless with no audio or graphical glitches, all tested functionality works as intended without any workarounds needed. Spillet fungerer feilfritt uten lyd- eller grafiske feil, alle testet funksjonalitet fungerer som tiltenkt uten behov for midlertidige løsninger. - + Great Bra - + Game functions with minor graphical or audio glitches and is playable from start to finish. May require some workarounds. Spillet Fungerer med minimale grafiske- eller lyd feil og kan spilles fra start til slutt. Kan kreve noe midlertidige løsninger. - + Okay Ok - + Game functions with major graphical or audio glitches, but game is playable from start to finish with workarounds. Spillet fungerer med omfattende grafiske- eller lyd feil, men er spillbart fra start til slutt med midlertidige løsninger. - + Bad Dårlig - + Game functions, but with major graphical or audio glitches. Unable to progress in specific areas due to glitches even with workarounds. Spillet fungerer, men med omfattende grafiske- eller lyd feil. Umulig med fremgang i spesifikke områder på grunn av feil selv med midlertidige løsninger. - + Intro/Menu Intro/Meny - + Game is completely unplayable due to major graphical or audio glitches. Unable to progress past the Start Screen. Spillet er helt uspillbart på grunn av store grafiske- eller lyd feil. Kan ikke gå videre forbi Start Skjermen. - + Won't Boot Vil ikke starte opp - + The game crashes when attempting to startup. Spillet krasjer når du prøver å starte opp. - + Not Tested Ikke Testet - + The game has not yet been tested. Spillet har ikke blitt testet ennå. @@ -4849,7 +4849,7 @@ Skjermen. GameListPlaceholder - + Double-click to add a new folder to the game list Dobbelttrykk for å legge til en ny mappe til spilllisten @@ -4857,27 +4857,27 @@ Skjermen. GameListSearchField - + of av - + result Resultat - + results Resultater - + Filter: Filter: - + Enter pattern to filter Skriv inn mønster for å filtrere @@ -4885,47 +4885,47 @@ Skjermen. GameRegion - + Japan Japan - + North America Nord Amerika - + Europe Europa - + Australia Australia - + China Kina - + Korea Korea - + Taiwan Taiwan - + Invalid region Ugyldig region - + Region free Regionfri @@ -4933,23 +4933,23 @@ Skjermen. GraphicsBreakPointsWidget - + Pica Breakpoints Pica Bruddpunkt - - + + Emulation running Emulering kjører - + Resume Fortsett - + Emulation halted at breakpoint Emuleringen stoppet ved bruddpunktet @@ -4957,146 +4957,146 @@ Skjermen. GraphicsSurfaceWidget - + Pica Surface Viewer Pica Overflate Visning - + Color Buffer Farge Buffer - + Depth Buffer Dybde Buffer - + Stencil Buffer Stencil Buffer - + Texture 0 Tekstur 0 - + Texture 1 Tekstur 1 - + Texture 2 Tekstur 2 - + Custom Tilpasset - + Unknown Ukjent - + Save Lagre - + Source: Kilde: - + Physical Address: Fysisk Adresse: - + Width: Vidde: - + Height: Høyde: - + Format: Format: - + X: X: - + Y: Y: - + Pixel out of bounds Pixel utenfor grensene - + (unable to access pixel data) (får ikke få tilgang til pikseldata) - + (invalid surface address) (ugyldig overflate adresse) - + (unknown surface format) (ukjent overflate format) - + Portable Network Graphic (*.png) Portable Network Graphic (*.png) - + Binary data (*.bin) Binær data (*.bin) - + Save Surface Lagre Overflate - - - - + + + + Error Feil - - + + Failed to open file '%1' Kunne ikke åpne filen '%1' - + Failed to save surface data to file '%1' Kunne ikke lagre overflatedata til filen '%1' - + Failed to completely write surface data to file. The saved data will likely be corrupt. Kunne ikke skrive overflatedata helt til fil. De lagrede dataene vil trolig bli skadet. @@ -5104,42 +5104,42 @@ Skjermen. GraphicsTracingWidget - + CiTrace Recorder CiTrace Opptaker - + Start Recording Start Opptak - + Stop and Save Stop og Lagre - + Abort Recording Avbryt Opptak - + Save CiTrace Lagre CiTrace - + CiTrace File (*.ctf) CiTrace Fil (*.ctf) - + CiTracing still active CiTracing Fortsatt Aktiv - + A CiTrace is still being recorded. Do you want to save it? If not, all recorded data will be discarded. CiTrace registreres fortsatt. Vil du lagre det? Hvis ikke, vil alle registrerte data bli forkastet. @@ -5147,17 +5147,17 @@ Skjermen. GraphicsVertexShaderModel - + Offset Forskyvning - + Raw - + Disassembly Demontering @@ -5165,127 +5165,127 @@ Skjermen. GraphicsVertexShaderWidget - + Save Shader Dump Lagre Shader Dump - + Shader Binary (*.shbin) Shader Binary (*.shbin) - + Pica Vertex Shader Pica Kantskyggelegger - + (data only available at vertex shader invocation breakpoints) (data bare er tilgjengelige ved kantskyggelegger påkallelse stoppunkter) - + Dump Dump - + Input Data Inngangsdata - + Attribute %1 Egenskap %1 - + Cycle Index: Syklusindeks: - + SRC1: %1, %2, %3, %4 SRC1: %1, %2, %3, %4 - + SRC2: %1, %2, %3, %4 SRC2: %1, %2, %3, %4 - + SRC3: %1, %2, %3, %4 SRC3: %1, %2, %3, %4 - + DEST_IN: %1, %2, %3, %4 DEST_IN: %1, %2, %3, %4 - + DEST_OUT: %1, %2, %3, %4 DEST_OUT: %1, %2, %3, %4 - + Address Registers: %1, %2 Adresse Register: %1, %2 - + Compare Result: %1, %2 Sammenlign Resultater: %1, %2 - + Static Condition: %1 Statisk Tilstand: %1 - + Dynamic Conditions: %1, %2 Dynamiske Betingelser: %1, %2 - + Loop Parameters: %1 (repeats), %2 (initializer), %3 (increment), %4 Loop Parameters: %1 (repeats), %2 (initializer), %3 (increment), %4 - + Instruction offset: 0x%1 Instruksjons forskyvning: 0x%1 - + -> 0x%2 -> 0x%2 - + (last instruction) (siste instruksjon) @@ -5293,67 +5293,67 @@ Skjermen. HostRoom - + Create Room Opprett Rom - + Room Name Rom Navn - + Preferred Game Foretrukket Spill - + Max Players Maks Spillere - + Username Brukernavn - + (Leave blank for open game) (La stå tomt for åpent spill) - + Password Passord - + Port Port - + Room Description Rombeskrivelse - + Load Previous Ban List Last inn tidligere utestengelse liste - + Public Offentlig - + Unlisted Ulistet - + Host Room Vert Rom @@ -5361,12 +5361,12 @@ Skjermen. HostRoomWindow - + Error Feil - + Failed to announce the room to the public lobby. In order to host a room publicly, you must have a valid Citra account configured in Emulation -> Configure -> Web. If you do not want to publish a room in the public lobby, then select Unlisted instead. Debug Message: Kunne ikke kunngjøre rommet til den offentlige lobbyen. For å være vert for et rom offentlig, må du ha en gyldig Citra-konto konfigurert i Emulering-> Konfigurasjon-> Web. Hvis du ikke vil publisere et rom i den offentlige lobbyen, velger du Ulistet i stedet. @@ -5376,47 +5376,47 @@ Feilmelding: IPCRecorder - + IPC Recorder IPC Opptaker - + Enable Recording Aktiver Opptak - + Filter: Filter: - + Leave empty to disable filtering La være tom for å deaktivere filtrering - + # # - + Status Status - + Service Service - + Function Funksjon - + Clear Fjern @@ -5424,47 +5424,47 @@ Feilmelding: IPCRecorderWidget - + Invalid Ugyldig - + Sent Sent - + Handling Håndtering - + Success Suksess - + Error Feil - + HLE Unimplemented HLE Ikke Implementert - + HLE HLE - + LLE LLE - + Unknown Ukjent @@ -5472,7 +5472,7 @@ Feilmelding: LLEServiceModulesWidget - + Toggle LLE Service Modules Endre LLE-servicemoduler @@ -5480,54 +5480,54 @@ Feilmelding: LoadingScreen - + Loading Shaders 387 / 1628 Laster Shaders 387 / 1628 - + Loading Shaders %v out of %m Laster Shaders %v ut av %m - + Estimated Time 5m 4s Estimert Tid 5m 4s - + Loading... Laster... - + Preloading Textures %1 / %2 - + Preparing Shaders %1 / %2 Forbereder Shaders %1 / %2 - + Loading Shaders %1 / %2 Laster Shaders %1 / %2 - + Launching... Starter... - + Now Loading %1 Laster %1 - + Estimated Time %1 Estimert Tid %1 @@ -5535,83 +5535,83 @@ Feilmelding: Lobby - + Public Room Browser Offentlig Rom Liste - - + + Nickname Kallenavn - + Filters Filtere - + Search Søk - + Games I Own Spill jeg eier - + Hide Empty Rooms - + Hide Full Rooms Skjul Fulle Rom - + Refresh Lobby Oppdater Lobby - + Password Required to Join Passord kreves for å bli med - + Password: Passord: - + Room Name Rom Navn - + Preferred Game Foretrukket Spill - + Host Vert - + Players Spillere - + Refreshing Oppdaterer - + Refresh List Oppdaterer Liste @@ -5619,362 +5619,362 @@ Feilmelding: MainWindow - + Citra Citra - + &File &Fil - + Boot Home Menu - + Recent Files Nylige Filer - + Amiibo Amiibo - + &Emulation &Emulering - + Save State Lagre Tilstand - + Load State Laste Tilstand - + &View &Vis - + Debugging Feilsøking - + Screen Layout Skjerm Oppsett - + Multiplayer Flerspiller - + Tools Verktøy - + Movie Video - + Frame Advance Frame Advance - + &Help &Hjelp - + Load File... Last inn fil... - + Install CIA... Installer CIA... - + JPN - + USA - + EUR - + AUS - + CHN - + KOR - + TWN - + E&xit Avslutt - + &Pause &Pause - + &Stop &Stopp - + Save Lagre - + Load Laste Inn - + FAQ FAQ - + About Citra Om Citra - + Single Window Mode Enkelt vindu modus - + Save to Oldest Slot Lagre til Eldste Spor - + Load from Newest Slot Last Inn fra Nyeste Spor - + Configure... Konfigurer... - + Display Dock Widget Headers Vis Dock Widget Headere - + Show Filter Bar Vis filter linje - + Show Status Bar Vis status linje - + Create Pica Surface Viewer Lag Pica overflate visning - + Record... - + Play... - + Close - + Save without Closing - + Read-Only Mode - + Enable Frame Advancing Enable Frame Advancing - + Advance Frame Advance Frame - + Capture Screenshot Ta skjermbilde - + Dump Video Dump Video - + Browse Public Game Lobby Bla gjennom Offentlig Spill Lobby - + Create Room Opprett Rom - + Leave Room Forlat Rom - + Direct Connect to Room Koble Direkte til Rom - + Show Current Room Vis Nåværende Rom - + Fullscreen Fullskjerm - + Modify Citra Install Modifiser Citra Installasjon - + Opens the maintenance tool to modify your Citra installation Åpner vedlikeholdvertøyet for din Citra Installasjon - + Default Standard - + Single Screen Enkel Skjerm - + Large Screen Stor Skjerm - + Hybrid Screen - + Side by Side Side ved Side - + Separate Windows - + Swap Screens Bytt Skjerm - + Rotate Upright Roter Oppreist - + Check for Updates Sjekk for oppdateringer - + Report Compatibility Rapporter Kompatibilitet - + Restart Omstart - + Load... Last inn... - + Remove Fjern - + Open Citra Folder Åpne Citra Mappe - + Configure Current Game... @@ -5982,7 +5982,7 @@ Feilmelding: MicroProfileDialog - + MicroProfile MikroProfil @@ -5990,48 +5990,48 @@ Feilmelding: ModerationDialog - + Moderation Moderering - + Ban List Ban Liste - - + + Refreshing Lastes inn på nytt - + Unban Fjern Utestengelse - + Subject Subjekt - + Type Type - + Forum Username Forum Brukernavn - + IP Address IP Addresse - + Refresh Refresh @@ -6039,91 +6039,91 @@ Feilmelding: MoviePlayDialog - - + + Play Movie - + File: - + ... - + Info - + Game: - + Author: - + Rerecord Count: - + Length: - + Current running game will be stopped. - + <br>Current recording will be discarded. - + Citra TAS Movie (*.ctm) - + Invalid movie file. - + Revision dismatch, playback may desync. - + Indicated length is incorrect, file may be corrupted. - - - - + + + + (unknown) - + Game used in this movie is not in game list. - + (>1 day) @@ -6131,43 +6131,43 @@ Feilmelding: MovieRecordDialog - - + + Record Movie - + File: - + ... - + Author: - + Current running game will be restarted. - + <br>Current recording will be discarded. - + Recording will start once you boot a game. - + Citra TAS Movie (*.ctm) @@ -6175,44 +6175,44 @@ Feilmelding: MultiplayerState - - + + Current connection status Nåværende tilkoblingstatus - - + + Not Connected. Click here to find a room! Ikke tilkoblet. Klikk her få å finne et Rom - - - + + + Connected Tilkoblet - - + + Not Connected Ikke Tilkoblet - + Error Feil - + Failed to update the room information. Please check your Internet connection and try hosting the room again. Debug Message: Kunne ikke oppdatere rom informasjonen. Vennligst sjekk Internett-tilkoblingen din og prøv å hoste rommet på nytt Feilmelding: - + New Messages Received Ny Melding Mottatt @@ -6220,22 +6220,22 @@ Feilmelding: NetworkMessage - + Leave Room Forlat Rom - + You are about to close the room. Any network connections will be closed. Du er i ferd med å lukke rommet. Eventuelle nettverkstilkoblinger vil bli stengt. - + Disconnect Frakoblet - + You are about to leave the room. Any network connections will be closed. Du er i ferd med å forlate rommet. Eventuelle nettverkstilkoblinger vil bli stengt. @@ -6243,110 +6243,110 @@ Feilmelding: NetworkMessage::ErrorManager - + Username is not valid. Must be 4 to 20 alphanumeric characters. - + Room name is not valid. Must be 4 to 20 alphanumeric characters. - + Username is already in use or not valid. Please choose another. - + IP is not a valid IPv4 address. - + Port must be a number between 0 to 65535. - + You must choose a Preferred Game to host a room. If you do not have any games in your game list yet, add a game folder by clicking on the plus icon in the game list. - + Unable to find an internet connection. Check your internet settings. - + Unable to connect to the host. Verify that the connection settings are correct. If you still cannot connect, contact the room host and verify that the host is properly configured with the external port forwarded. - + Unable to connect to the room because it is already full. - + Creating a room failed. Please retry. Restarting Citra might be necessary. - + The host of the room has banned you. Speak with the host to unban you or try a different room. - + Version mismatch! Please update to the latest version of Citra. If the problem persists, contact the room host and ask them to update the server. - + Incorrect password. - + An unknown error occurred. If this error continues to occur, please open an issue - + Connection to room lost. Try to reconnect. - + You have been kicked by the room host. - + MAC address is already in use. Please choose another. - + Your Console ID conflicted with someone else's in the room. Please go to Emulation > Configure > System to regenerate your Console ID. - + You do not have enough permission to perform this action. - + The user you are trying to kick/ban could not be found. They may have left the room. - + Error Feil @@ -6354,37 +6354,37 @@ They may have left the room. OptionSetDialog - + Options - + Unset - + unknown - + %1 &lt;%2> %3 - + Range: %1 - %2 - + custom - + %1 (0x%2) %3 @@ -6392,32 +6392,32 @@ They may have left the room. OptionsDialog - + Options - + Double click to see the description and change the values of the options. - + Specific - + Generic - + Name - + Value @@ -6425,157 +6425,157 @@ They may have left the room. QObject - + Supported image files (%1) Støttede bildefiler (%1) - + Open File Åpne Fil - + Error Feil - + Couldn't load the camera Kunne ikke starte kamera - + Couldn't load %1 Kunne ikke starte %1 - - + + Shift Shift - - + + Ctrl Ctrl - - + + Alt Alt - - - + + + [not set] [ikke bestemt] - - + + Hat %1 %2 Hat %1 %2 - - - - - - + + + + + + Axis %1%2 Akse %1%2 - - + + Button %1 Knapp %1 - + GC Axis %1%2 - + GC Button %1 - - - + + + [unknown] [ukjent] - + [unused] [ubrukt] - + auto - + true - + false - - + + none - + %1 (0x%2) - + Invalid region Ugyldig region - + Installed Titles Installerte Tittler - + System Titles System Tittler - + Add New Game Directory Legg til en ny Spillmappe - + Not playing a game Ikke i Spill - + %1 is not playing a game %1 er ikke i et spill - + %1 is playing %2 %1 spiller %2 @@ -6583,7 +6583,7 @@ They may have left the room. QtKeyboard - + Software Keyboard Programvare Tastatur @@ -6591,27 +6591,27 @@ They may have left the room. QtKeyboardDialog - + Text length is not correct (should be %1 characters) Tekstlengde er ikke riktig (skal være %1 tegn) - + Text is too long (should be no more than %1 characters) Teksten er for lang (bør ikke være mer enn %1 tegn) - + Blank input is not allowed Blank felt er ikke tillatt - + Empty input is not allowed Tomt felt er ikke tillatt - + Validation error Registreringsfeil @@ -6619,12 +6619,12 @@ They may have left the room. QtMiiSelectorDialog - + Mii Selector Mii Velger - + Standard Mii Standard Mii @@ -6632,95 +6632,95 @@ They may have left the room. RecordDialog - + View Record Vis Opptak - + Client Klient - - + + Process: Prosess: - - + + Thread: Tråd: - - + + Session: Sesjon: - + Server Server - + General Generelt - + Client Port: Klient Port: - + Service: Service: - + Function: Funksjon: - + Command Buffer Kommandobuffer - + Select: Velg: - + Request Untranslated Be om Ikke Oversatt - + Request Translated Be Om Oversettelse - + Reply Untranslated Svar Ikke Oversatt - + Reply Translated Svar Oversatt - + OK OK - + null Null @@ -6728,37 +6728,37 @@ They may have left the room. RegistersWidget - + Registers Registre - + VFP Registers VFP Registre - + VFP System Registers VFP System Registre - + Vector Length Vektor Lengde - + Vector Stride Vector Stride - + Rounding Mode Rounding Mode - + Vector Iteration Count Vektor Gjentagelse Antall @@ -6766,7 +6766,7 @@ They may have left the room. SequenceDialog - + Enter a hotkey Skriv inn en hurtigtast @@ -6774,7 +6774,7 @@ They may have left the room. WaitTreeEvent - + reset type = %1 reset type = %1 @@ -6782,12 +6782,12 @@ They may have left the room. WaitTreeMutex - + locked %1 times by thread: locked %1 times by thread: - + free tilgjengelig @@ -6795,7 +6795,7 @@ They may have left the room. WaitTreeMutexList - + holding mutexes holding mutexes @@ -6803,12 +6803,12 @@ They may have left the room. WaitTreeObjectList - + waiting for all objects Venter på alle objekter - + waiting for one of the following objects Venter på en av følgende objekter @@ -6816,12 +6816,12 @@ They may have left the room. WaitTreeSemaphore - + available count = %1 tilgjengelig antall = %1 - + max count = %1 maks antall = %1 @@ -6829,112 +6829,112 @@ They may have left the room. WaitTreeThread - + running kjører - + ready klar - + waiting for address 0x%1 Venter på adresse 0x%1 - + sleeping sover - + waiting for IPC response venter på IPC respons - + waiting for objects venter på objekter - + waiting for HLE return waiting for HLE return - + dormant sovende - + dead død - + PC = 0x%1 LR = 0x%2 PC = 0x%1 LR = 0x%2 - + default standard - + all alle - + AppCore AppCore - + SysCore SysCore - + Unknown processor %1 Ukjent prosessor %1 - + object id = %1 objekt id = %1 - + processor = %1 prosessor = %1 - + thread id = %1 tråd id = %1 - + process = %1 (%2) prosess = %1 (%2) - + priority = %1(current) / %2(normal) prioritet = %1(nåværende) / %2(normal) - + last running ticks = %1 last running ticks = %1 - + not holding mutex not holding mutex @@ -6942,7 +6942,7 @@ They may have left the room. WaitTreeThreadList - + waited by thread ventet på tråd @@ -6950,17 +6950,17 @@ They may have left the room. WaitTreeTimer - + reset type = %1 tilbakestill type = %1 - + initial delay = %1 innledende forsinkelse = %1 - + interval delay = %1 intervallforsinkelse = %1 @@ -6968,27 +6968,27 @@ They may have left the room. WaitTreeWaitObject - + [%1]%2 %3 [%1]%2 %3 - + waited by no thread waited by no thread - + one shot ett skudd - + sticky klebrig - + pulse puls @@ -6996,7 +6996,7 @@ They may have left the room. WaitTreeWidget - + Wait Tree Wait Tree diff --git a/dist/languages/nl.ts b/dist/languages/nl.ts index e01b59c2b..855ab24ed 100644 --- a/dist/languages/nl.ts +++ b/dist/languages/nl.ts @@ -2,17 +2,17 @@ ARMRegisters - + ARM Registers ARM Registers - + Register Register - + Value Waarde @@ -20,27 +20,27 @@ AboutDialog - + About Citra Over Citra - - <html><head/><body><p><img src=":/icons/citra.png"/></p></body></html> - <html><head/><body><p><img src=":/icons/citra.png"/></p></body></html> + + <html><head/><body><p><img src=":/icons/lime.png"/></p></body></html> + <html><head/><body><p><img src=":/icons/lime.png"/></p></body></html> - + <html><head/><body><p><span style=" font-size:28pt;">Citra</span></p></body></html> <html><head/><body><p><span style=" font-size:28pt;">Citra</span></p></body></html> - + <html><head/><body><p>%1 | %2-%3 (%4)</p></body></html> <html><head/><body><p>%1 | %2-%3 (%4)</p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -57,12 +57,12 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">Deze software is niet bedoeld om spellen te spelen die je niet legaal verkregen hebt.</span></p></body></html> - + <html><head/><body><p><a href="https://citra-emu.org/"><span style=" text-decoration: underline; color:#039be5;">Website</span></a> | <a href="https://community.citra-emu.org/"><span style=" text-decoration: underline; color:#039be5;">Forum</span></a> | <a href="https://github.com/citra-emu"><span style=" text-decoration: underline; color:#039be5;">Source Code</span></a> | <a href="https://github.com/citra-emu/citra/graphs/contributors"><span style=" text-decoration: underline; color:#039be5;">Contributors</span></a> | <a href="https://github.com/citra-emu/citra/blob/master/license.txt"><span style=" text-decoration: underline; color:#039be5;">License</span></a></p></body></html> <html><head/><body><p><a href="https://citra-emu.org/"><span style=" text-decoration: underline; color:#039be5;">Website</span></a> | <a href="https://community.citra-emu.org/"><span style=" text-decoration: underline; color:#039be5;">Forum</span></a> | <a href="https://github.com/citra-emu"><span style=" text-decoration: underline; color:#039be5;">Bron Code</span></a> | <a href="https://github.com/citra-emu/citra/graphs/contributors"><span style=" text-decoration: underline; color:#039be5;">Bijdragers</span></a> | <a href="https://github.com/citra-emu/citra/blob/master/license.txt"><span style=" text-decoration: underline; color:#039be5;">Licentie</span></a></p></body></html> - + <html><head/><body><p><span style=" font-size:7pt;">&quot;3DS&quot; is a trademark of Nintendo. Citra is not affiliated with Nintendo in any way.</span></p></body></html> <html><head/><body><p><span style=" font-size:7pt;">&quot;3DS&quot; is een handelsmerk van Nintendo. Citra is op geen enkele manier aan Nintendo verbonden.</span></p></body></html> @@ -70,47 +70,47 @@ p, li { white-space: pre-wrap; } BreakPointModel - + Pica command loaded Pica opdracht geladen - + Pica command processed Pica opdracht verwerkt - + Incoming primitive batch Inkomende primitieve batch - + Finished primitive batch Klaar met primitieve batch - + Vertex shader invocation Vertex shader-aanroep - + Incoming display transfer Inkomende schermoverdracht - + GSP command processed GSP opdracht verwerkt - + Buffers swapped Buffers verwisseld - + Unknown debug context event Onbekend debug context evenement @@ -118,32 +118,32 @@ p, li { white-space: pre-wrap; } CalibrationConfigurationDialog - + Communicating with the server... Aan het communiceren met de server... - + Cancel Annuleren - + Touch the top left corner <br>of your touchpad. Raak de hoek linksboven <br>van je touchpad aan. - + Now touch the bottom right corner <br>of your touchpad. Raak nu de hoek rechtsonder <br>van je touchpad aan. - + Configuration completed! Configuratie voltooid! - + OK OK @@ -151,93 +151,93 @@ p, li { white-space: pre-wrap; } ChatRoom - + Room Window Kamer venster - + Send Chat Message Verstuur Chat Bericht - + Send Message Stuur Bericht - + Members Leden - + %1 has joined %1 is toegetreden - + %1 has left %1 is vertrokken - + %1 has been kicked %1 is geschopt - + %1 has been banned %1 is verbannen - + %1 has been unbanned %1 is niet meer verbannen - + View Profile Profiel weergeven - - + + Block Player Speler Blokkeren - + When you block a player, you will no longer receive chat messages from them.<br><br>Are you sure you would like to block %1? Wanneer je een speler blokkeert, kan je niet meer hun berichten ontvangen.<br><br>Weet je het zeker dat je %1 wilt blokkeren? - + Kick Schoppen - + Ban Verbannen - + Kick Player Speler Schoppen - + Are you sure you would like to <b>kick</b> %1? Weet je het zeker dat je %1 wilt <b>schoppen</b>? - + Ban Player Speler Verbannen - + Are you sure you would like to <b>kick and ban</b> %1? This would ban both their forum username and their IP address. @@ -249,22 +249,22 @@ Dit zal hun Forum gebruikersnaam en IP adres verbannen. ClientRoom - + Room Window Kamer Venster - + Room Description Kamer Beschrijving - + Moderation... Moderatie... - + Leave Room Kamer Verlaten @@ -272,17 +272,17 @@ Dit zal hun Forum gebruikersnaam en IP adres verbannen. ClientRoomWindow - + Connected Verbonden - + Disconnected Verbinding Verbroken - + %1 (%2/%3 members) - connected %1 (%2/%3 leden) - verbonden @@ -290,108 +290,108 @@ Dit zal hun Forum gebruikersnaam en IP adres verbannen. CompatDB - + Report Compatibility Compatibiliteit Rapporteren - - + + Report Game Compatibility Spel Compatibiliteit Rapporteren - + <html><head/><body><p><span style=" font-size:10pt;">Should you choose to submit a test case to the </span><a href="https://citra-emu.org/game/"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">Citra Compatibility List</span></a><span style=" font-size:10pt;">, The following information will be collected and displayed on the site:</span></p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Hardware Information (CPU / GPU / Operating System)</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Which version of Citra you are running</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The connected Citra account</li></ul></body></html> <html><head/><body><p><span style=" font-size:10pt;">Als je een rapport stuurt naar de </span><a href="https://citra-emu.org/game/"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">Citra Compatibiliteit Lijst</span></a><span style=" font-size:10pt;">, wordt het volgende verzamelt en weergegeven op de site:</span></p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Hardware Informatie (CPU / GPU / Bestuurings Systeem)</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Welke versie van Citra u gebruikt</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Het verbonden Citra account</li></ul></body></html> - + Perfect Perfect - + <html><head/><body><p>Game functions flawlessly with no audio or graphical glitches.</p></body></html> <html><head/><body><p> Spel functioneert vlekkeloos zonder geluid en/of grafische problemen.</p></body></html> - + Great Geweldig - + <html><head/><body><p>Game functions with minor graphical or audio glitches and is playable from start to finish. May require some workarounds.</p></body></html> <html><head/><body><p>Spel functioneert met kleine grafische en/of geluid problemen en is speelbaar vanaf het begin tot het einde. Heeft misschien omzeilingen nodig.</p></body></html> - + Okay Oké - + <html><head/><body><p>Game functions with major graphical or audio glitches, but game is playable from start to finish with workarounds.</p></body></html> <html><head/><body><p>Spel functioneert met enorme grafische en/of geluid problemen, maar het spel is speelbaar van het begin tot het einde met omzeilingen.</p></body></html> - + Bad Slecht - + <html><head/><body><p>Game functions, but with major graphical or audio glitches. Unable to progress in specific areas due to glitches even with workarounds.</p></body></html> <html><head/><body><p>Spel functioneert, maar met enorme grafische en/of geluid problemen. Kan niet door bepaalde gebieden komen door problemen zelfs met omzeilingen.</p></body></html> - + Intro/Menu Intro/Menu - + <html><head/><body><p>Game is completely unplayable due to major graphical or audio glitches. Unable to progress past the Start Screen.</p></body></html> <html><head/><body><p>Spel is compleet onspeelbaar door enorme grafische en/of geluid problemen. Het is onmogelijk om voorbij het startscherm te komen.</p></body></html> - + Won't Boot Start Niet - + <html><head/><body><p>The game crashes when attempting to startup.</p></body></html> <html><head/><body><p>De game crasht wanneer je het probeert op te starten.</p></body></html> - + <html><head/><body><p>Independent of speed or performance, how well does this game play from start to finish on this version of Citra?</p></body></html> <html><head/><body><p>Onafhankelijk van snelheid of prestaties, Hoe goed speelt de game van het begin tot het einde op deze versie van Citra?</p></body></html> - + Thank you for your submission! Bedankt voor je inzending! - + Submitting Verzenden - + Communication error Communicatie fout - + An error occurred while sending the Testcase Er is een fout opgetreden tijdens het verzenden van de Testcase - + Next Volgende @@ -399,93 +399,93 @@ Dit zal hun Forum gebruikersnaam en IP adres verbannen. ConfigureAudio - + Output Uitvoer - + Emulation: Emulatie: - + HLE (fast) HLE (snel) - + LLE (accurate) LLE (Nauwkeurig) - + LLE multi-core LLE multi-core - + Output Type Uitvoertype - + Output Device Uitvoerapparaat - + This post-processing effect adjusts audio speed to match emulation speed and helps prevent audio stutter. This however increases audio latency. Dit post-processing effect past de geluidssnelheid aan om gelijk te zijn aan de emulatiesnelheid en helpt audiostotter te voorkomen. Dit zorgt wel voor meer audiovertraging. - + Enable audio stretching Activeer audio uitrekken. - + Use global volume Gebruik globaal volume - + Set volume: Volume instellen: - + Volume: Volume: - + 0 % 0 % - + Microphone Microfoon - + Input Type Invoer type - + Input Device Invoer apparaat - - + + Auto - + %1% Volume percentage (e.g. 50%) %1% @@ -494,203 +494,203 @@ Dit zal hun Forum gebruikersnaam en IP adres verbannen. ConfigureCamera - + Form Vorm - + Camera Camera - - + + Select the camera to configure Selecteer de camera om te configureren - + Camera to configure: Camera om te configureren: - + Front Voorkant - + Rear Achterkant - - + + Select the camera mode (single or double) Selecteer camera modus (enkele of dubbele) - + Camera mode: Camera modus: - + Single (2D) Enkele (2D) - + Double (3D) Dubbele (3D) - - + + Select the position of camera to configure Selecteer positie van de camera om te configureren - + Camera position: Camera positie: - + Left Links - + Right Rechts - + Configuration Configuratie - - + + Select where the image of the emulated camera comes from. It may be an image or a real camera. Selecteer waar de afbeelding van de ge-emuleerde camera vandaan komt. Het mag een afbeelding zijn of een echte camera. - + Camera Image Source: Camera Afbeelding Bron: - + Blank (blank) Leeg (leeg) - + Still Image (image) Vaste Afbeelding (afbeelding) - + System Camera (qt) Systeem Camera (qt) - + File: Bestand: - + ... ... - - + + Select the system camera to use Selecteer systeem camera om te gebruiken - + Camera: Camera: - + <Default> <Standaard> - - + + Select the image flip to apply Selecteer het omdraai type om op de afbeelding toe te passen - + Flip: Omdraaing: - + None Geen - + Horizontal Horizontaal - + Vertical Verticaal - + Reverse Omgekeerd - + Select an image file every time before the camera is loaded Selecteer een afbeelding altijd voordat de camera is geladen. - + Prompt before load Aangeven voor het laden - + Preview Voorbeeld - + Resolution: 512*384 Resolutie: 512*384 - + Click to preview Click om voorbeeld te tonen - + Resolution: %1*%2 Resolutie: %1*%2 - + Supported image files (%1) Ondersteunde afbeelding bestanden (%1) - + Open File Bestand Openen @@ -698,88 +698,88 @@ Dit zal hun Forum gebruikersnaam en IP adres verbannen. ConfigureCheats - - + + Cheats Cheats - + Add Cheat Cheat Toevoegen - + Available Cheats: Beschikbare cheats: - + Name Naam - + Type Soort - + Save Opslaan - + Delete Verwijderen - + Name: Naam: - + Notes: Opmerkingen: - + Code: Code: - + Would you like to save the current cheat? Wilt u de huidige cheat opslaan? - - - + + + Save Cheat Cheat Opslaan - + Please enter a cheat name. Voer een cheatnaam in. - + Please enter the cheat code. Voer de cheatcode in. - + Cheat code line %1 is not valid. Would you like to ignore the error and continue? Cheatcode regel %1 is niet geldig. Wilt u de fout negeren en doorgaan? - - + + [new cheat] [nieuwe cheat] @@ -787,127 +787,127 @@ Wilt u de fout negeren en doorgaan? ConfigureDebug - + Form Formulier - + GDB GDB - + Enable GDB Stub Activeer GBD Stub - + Port: Poort: - + Logging Loggen - + Global Log Filter Globale Log Filter - + Show Log Console (Windows Only) Laat Log Venster Zien (Alleen Windows) - + Open Log Location Open Log Locatie - + CPU CPU - + Use global clock speed Gebruik globale kloksnelheid - + Set clock speed: Kloksnelheid instellen: - + CPU Clock Speed CPU-kloksnelheid - + <html><body>Changes the emulated CPU clock frequency.<br>Underclocking can increase performance but may cause the game to freeze.<br>Overclocking may reduce in game lag but also might cause freezes</body></html> <html><body>Verandert de geëmuleerde CPU-klokfrequentie.<br>Onderklokken kan de prestaties verhogen, maar kan ervoor zorgen dat het spel vastloopt.<br>Overklokken kan lag in de game verminderen, maar kan ook tot vastlopen leiden</body></html> - + <html><head/><body><p>Enables the use of the ARM JIT compiler for emulating the 3DS CPUs. Don't disable unless for debugging purposes</p></body></html> <html><head/><body><p>Schakelt het gebruik van de ARM JIT compiler in voor het emuleren van de 3DS CPU's. Niet uitschakelen, tenzij voor debugging-doeleinden</p></body></html> - + Enable CPU JIT Activeer CPU JIT - + Enable debug renderer Activeer debug-renderer - + Dump command buffers Opdrachtbuffers dumpen - + Miscellaneus - + <html><head/><body><p>Introduces a delay to the first ever launched app thread if LLE modules are enabled, to allow them to initialize.</p></body></html> - + Delay app start for LLE module initialization - + <html><head/><body><p>CPU Clock Speed Information<br/>Underclocking can increase performance but may cause the game to freeze.<br/>Overclocking may reduce in game lag but also might cause freezes</p></body></html> <html><head/><body><p>CPU-kloksnelheid informatie<br/>Onderklokken kan de prestaties verhogen, maar kan ervoor zorgen dat het spel vastloopt.<br/>Overklokken kan lag in de game verminderen, maar kan ook tot vastlopen leiden</p></body></html> - + Validation layer not available Validatielaag niet beschikbaar - + Unable to enable debug renderer because the layer <strong>VK_LAYER_KHRONOS_validation</strong> is missing. Please install the Vulkan SDK or the appropriate package of your distribution Debug renderer kan niet worden ingeschakeld omdat de laag </strong>VK_LAYER_KHRONOS_validation</strong> ontbreekt. Installeer de Vulkan SDK of het juiste pakket van uw distributie. - + Command buffer dumping not available Opdrachtbuffer dumpen niet beschikbaar - + Unable to enable command buffer dumping because the layer <strong>VK_LAYER_LUNARG_api_dump</strong> is missing. Please install the Vulkan SDK or the appropriate package of your distribution Kan opdrachtbufferdumpen niet inschakelen omdat de laag <strong>VK_LAYER_LUNARG_api_dump</strong> ontbreekt. Installeer de Vulkan SDK of het juiste pakket van uw distributie @@ -915,92 +915,92 @@ Wilt u de fout negeren en doorgaan? ConfigureDialog - + Citra Configuration Citra Configuratie - - - + + + General Algemeen - - - + + + System Systeem - - + + Input Invoer - - + + Hotkeys Sneltoetsen - - + + Graphics Beeldkwaliteit - - + + Enhancements Verbeteringen - - - + + + Audio Geluid - - + + Camera Camera - - + + Debug Fouten opsporen - - + + Storage Opslag - - + + Web Website - - + + UI UI - + Controls Besturing - + Advanced Geavanceerd @@ -1008,278 +1008,278 @@ Wilt u de fout negeren en doorgaan? ConfigureEnhancements - + Form Vorm - + Renderer Renderer - + Internal Resolution Interne Resolutie - + Auto (Window Size) Auto (Venstergrootte) - + Native (400x240) Normaal (400x240) - + 2x Native (800x480) 2x Normaal (800x480) - + 3x Native (1200x720) 3x Normaal (1200x720) - + 4x Native (1600x960) 4x Normaal (1600x960) - + 5x Native (2000x1200) 5x Normaal (2000x1200) - + 6x Native (2400x1440) 6x Normaal (2400x1440) - + 7x Native (2800x1680) 7x Normaal (2800x1680) - + 8x Native (3200x1920) 8x Normaal (3200x1920) - + 9x Native (3600x2160) 9x Normaal (3600x2160) - + 10x Native (4000x2400) 10x Normaal (4000x2400) - + Enable Linear Filtering Activeer lineaire filtering - + Post-Processing Shader Post-Processing Shader - + Texture Filter Textuur Filter - + None Geen - + Anime4K Anime4k - + Bicubic Bicubic - + ScaleForce ScaleForce - + xBRZ xBRZ - + MMPX MMPX - + Stereoscopy Stereoscopie - + Stereoscopic 3D Mode Stereoscopische 3D-modus - + Off Uit - - + + Side by Side Zij aan zij - + Anaglyph Anaglyph - + Interlaced Interlaced - + Reverse Interlaced Omgekeerd Interlaced - + Depth Diepte - + % % - + Eye to Render in Monoscopic Mode Oog om te renderen in monoscopische modus - + Left Eye (default) Linker Oog (standaard) - + Right Eye Rechter Oog - + Layout Indeling - + Screen Layout: Scherm Indeling - + Default Standaard - + Single Screen Enkel Scherm - + Large Screen Groot Scherm - + Separate Windows Gescheiden vensters - + Hybrid Screen Hybride Scherm - + Swap Screens Verwissel Schermen - + Rotate Screens Upright Schermen rechtop draaien - + Large Screen Proportion: Verhouding groot scherm: - + Background Color: Achtergrondkleur: - + Utility Utility - + <html><head/><body><p>Replace textures with PNG files.</p><p>Textures are loaded from load/textures/[Title ID]/.</p></body></html> <html><head/><body><p>Vervang texturen met PNG-bestanden.</p><p>Texturen worden geladen vanuit load/textures/[Title ID]/.</p></body></html> - + Use Custom Textures Gebruik aangepaste texturen - + <html><head/><body><p>Dump textures to PNG files.</p><p>Textures are dumped to dump/textures/[Title ID]/.</p></body></html> <html><head/><body><p>Dump texturen naar PNG-bestanden.</p><p>Texturen worden gedumpt naar dump/textures/[Title ID]/. - + Dump Textures Dump texturen - + <html><head/><body><p>Load all custom textures into memory on boot, instead of loading them when the game requires them.</p></body></html> <html><head/><body><p>Laad alle aangepaste texturen in het geheugen bij het opstarten, in plaats van ze te laden wanneer het spel ze nodig heeft.</p></body></html> - + Preload Custom Textures Aangepaste texturen vooraf laden - + <html><head/><body><p>Load custom textures asynchronously with background threads to reduce loading stutter</p></body></html> <html><head/><body><p>Aangepaste texturen asynchroon laden met achtergrondthreads om stotteren bij het laden te verminderen</p></body></html> - + Async Custom Texture Loading Async aangepaste texturen laden @@ -1287,136 +1287,136 @@ Wilt u de fout negeren en doorgaan? ConfigureGeneral - + Form Formulier - + General Algemeen - + Confirm exit while emulation is running Afsluiten bevestigen terwijl emulatie actief is - + Pause emulation when in background Emulatie pauzeren wanneer op achtergrond geplaatst - + Mute audio when in background - + Hide mouse on inactivity Verberg de muis wanneer niet actief - + Enable Gamemode - + Updates Updates - + Check for updates on start Zoeken naar updates bij opstarten - + Silently auto update after closing Stil automatisch updaten na sluiten - + Emulation Emulatie - + Region: Regio: - + Auto-select Automatisch selecteren - + Use global emulation speed Gebruik globale emulatiesnelheid - + Set emulation speed: Emulatiesnelheid instellen: - + Emulation Speed: Emulatiesnelheid: - + Screenshots Schermafbeeldingen - + Use global screenshot path Globaal pad voor schermafbeeldingen gebruiken - + Set screenshot path: Schermafbeeldingpad instellen: - + Save Screenshots To Schermafbeeldingen opslaan in - + ... ... - + Reset All Settings Alle Instellingen Herstellen - - - - - + + + + + unthrottled onbeperkt - + Select Screenshot Directory schermafbeelding-map selecteren - + Citra Citra - + Are you sure you want to <b>reset your settings</b> and close Citra? Weet je het zeker dat je <b>instellingen wilt herstellen</b> en Citra af wilt sluiten? @@ -1424,157 +1424,157 @@ Wilt u de fout negeren en doorgaan? ConfigureGraphics - + Form Formulier - + Graphics Beeldkwaliteit - + API Settings API instellingen - + Graphics API Grafische API - + Software Software - + OpenGL OpenGL - + Vulkan Vulkan - + Physical Device Fysiek apparaat - + OpenGL Renderer - + SPIR-V Shader Generation SPIR-V shadergeneratie - + Renderer Renderer - + <html><head/><body><p>Use the selected graphics API to accelerate shader emulation.</p><p>Requires a relatively powerful GPU for better performance.</p></body></html> <html><head/><body><p>Gebruik de geselecteerde grafische API om shaderemulatie te versnellen.</p><p>Vereist een relatief krachtige GPU voor betere prestaties.</p></body></html> - + Enable Hardware Shader Activeer Hardware Shader - + <html><head/><body><p>Correctly handle all edge cases in multiplication operation in shaders. </p><p>Some games requires this to be enabled for the hardware shader to render properly.</p><p>However this would reduce performance in most games.</p></body></html> <html><head/><body><p>Bereken ook bepaalde niet veel-voorkomede gevallen in vermenigvuldigingen in shaders correct. </p><p>Bepaalde spellen hebben dit nodig m.b.t. de hardware shader om correct te renderen.</p><p>Echter zorgt dit er voor dat de meeste spellen slechter presteren.</p></body></html> - + Accurate Multiplication Nauwkeurige Vermenigvuldiging - + <html><head/><body><p>Use the JIT engine instead of the interpreter for software shader emulation. </p><p>Enable this for better performance.</p></body></html> <html><head/><body><p>Gebruik de JIT engine in plaats van de interpretator voor software shader emulatie. </p><p>Zet dit aan voor betere prestaties.</p></body></html> - + Enable Shader JIT Activeer Shader JIT - + <html><head/><body><p>Compile shaders using background threads to avoid shader compilation stutter. Expect temporary graphical glitches</p></body></html> <html><head/><body><p>Compileer shaders met achtergrondthreads om stotteren bij het compileren van shaders te verhelpen. Verwacht tijdelijke grafische glitches</p></body></html> - + Enable Async Shader Compilation Activeer Async shadercompilatie - + <html><head/><body><p>Perform presentation on separate threads. Improves performance when using Vulkan in most games.</p></body></html> <html><head/><body><p>Presentatie uitvoeren op afzonderlijke threads. Verbetert de prestaties bij het gebruik van Vulkan in de meeste spellen.</p></body></html> - + Enable Async Presentation Activeer Async-presentatie - + Advanced Geavanceerd - + <html><head/><body><p>Overrides the sampling filter used by games. This can be useful in certain cases with poorly behaved games when upscaling. If unsure set this to Game Controlled</p></body></html> - + Texture Sampling - + Game Controlled - + Nearest Neighbor - + Linear - + <html><head/><body><p>Reduce stuttering by storing and loading generated shaders to disk.</p></body></html> <html><head/><body><p>Verminder stotteren door het opslaan en laden van gegenereerde shaders op schijf.</p></body></html> - + Use Disk Shader Cache Gebruik schijfshadercache - + VSync prevents the screen from tearing, but some graphics cards have lower performance with VSync enabled. Keep it enabled if you don't notice a performance difference. VSync voorkomt dat het scherm scheurt, maar sommige grafische kaarten presteren minder goed als VSync is ingeschakeld. Laat het ingeschakeld als u geen prestatieverschil merkt. - + Enable VSync Activeer VSync @@ -1582,63 +1582,63 @@ Wilt u de fout negeren en doorgaan? ConfigureHotkeys - + Hotkey Settings Sneltoets Instellingen - + Double-click on a binding to change it. Dubbelklik op een binding om deze te wijzigen. - + Clear All Alles wissen - + Restore Defaults Standaardinstellingen herstellen - + Action Actie - + Hotkey Sneltoets - - + + Conflicting Key Sequence Conflicterende sleutelvolgorde - + The entered key sequence is already assigned to: %1 De ingevoerde sleutelvolgorde is al toegewezen aan: %1 - + A 3ds button Een 3ds knop - + Restore Default Standaardinstellingen herstellen - + Clear Wissen - + The default key sequence is already assigned to: %1 De standaard sleutelvolgorde is al toegewezen aan: %1 @@ -1646,307 +1646,307 @@ Wilt u de fout negeren en doorgaan? ConfigureInput - + ConfigureInput Invoer Configureren - + Profile Profiel - + New Nieuw - + Delete Verwijder - + Rename Naam wijzigen - + Face Buttons Actieknoppen - + Y: Y: - + X: X: - + B: B: - + A: A: - + Directional Pad Richtingsknoppen - - - + + + Up: Omhoog: - - - + + + Down: Omlaag: - - - + + + Left: Links: - - - + + + Right: Rechts: - + Misc. Diversen - + Start: Start: - + Select: Select: - + Home: Home: - + Power: Power: - + Circle Mod: Circle Mod: - + GPIO14: GPIO14: - + Debug: Debug: - + Circle Pad Circle Pad - - - + + + Set Analog Stick Analog Stick instellen - - + + Deadzone: 0 Deadzone: 0 - + C-Stick C-Stick - + Shoulder Buttons Schouderknoppen: - + ZR: ZR: - + ZL: ZL: - + L: L: - + R: R: - + Motion / Touch... Beweging / Touch... - + Auto Map Autotoewijzing - + Clear All Alles Wissen - + Restore Defaults Standaardwaarde herstellen - - - + + + Clear Wissen - - - + + + [not set] [niet ingesteld] - - - + + + Restore Default Standaardwaarde herstellen - - + + Information Informatie - + After pressing OK, first move your joystick horizontally, and then vertically. Na op OK te drukken, beweeg eerst de joystick horizontaal en dan verticaal. - - + + Deadzone: %1% Deadzone: %1% - - + + Modifier Scale: %1% Wijzigingsschaal: %1% - + Warning Waarschuwing - + Auto mapping failed. Your controller may not have a corresponding mapping Autotoewijzing mislukt. Uw controller heeft mogelijk geen overeenkomstige toewijzing - + After pressing OK, press any button on your joystick Nadat u op OK hebt gedrukt, drukt u op een willekeurige knop op uw joystick - + [press key] [Druk op een toets] - + Error! Fout! - + You're using a key that's already bound. Je gebruikt een toets die al gebonden is. - + New Profile Nieuw Profiel - + Enter the name for the new profile. Voer de naam in van het nieuwe profiel. - + Delete Profile Profiel Verwijderen - + Delete profile %1? Verwijder profiel %1? - + Rename Profile Profiel hernoemen - + New name: Nieuwe naam: - + Duplicate profile name Duplicate profielnaam - + Profile name already exists. Please choose a different name. De naam van het profiel bestaat al. Kies een andere naam. @@ -1954,198 +1954,198 @@ Wilt u de fout negeren en doorgaan? ConfigureMotionTouch - + Configure Motion / Touch Configureer Beweging / Touch - + Motion Beweging - + Motion Provider: Beweging Aanbieder: - + Sensitivity: Gevoeligheid: - + Controller: Controller: - - - - - + + + + + Configure Configureren - + Touch Touch - + Touch Provider: Touch aanbieder: - + Calibration: Kalibreren: - + (100, 50) - (1800, 850) (100, 50) - (1800, 850) - + Use button mapping: Gebruik knop toewijzing: - + CemuhookUDP Config CemuhookUDP Configuratie - + You may use any Cemuhook compatible UDP input source to provide motion and touch input. U kunt elke UDP-invoerbron gebruiken die compatibel is met Cemuhook om bewegings- en touch-invoer te leveren. - + Server: Server: - + Port: Poort: - + Pad: Pad: - + Pad 1 Pad 1 - + Pad 2 Pad 2 - + Pad 3 Pad 3 - + Pad 4 Pad 4 - + Learn More Meer Informatie - - + + Test Test - + Mouse (Right Click) Muis (Rechtermuisknop) - - + + CemuhookUDP CemuhookUDP - + SDL SDL - + Emulator Window Emulator venster - + <a href='https://citra-emu.org/wiki/using-a-controller-or-android-phone-for-motion-or-touch-input'><span style="text-decoration: underline; color:#039be5;">Learn More</span></a> <a href='https://citra-emu.org/wiki/using-a-controller-or-android-phone-for-motion-or-touch-input'><span style="text-decoration: underline; color:#039be5;">Meer Informatie</span></a> - + Information Informatie - + After pressing OK, press a button on the controller whose motion you want to track. Nadat u op OK hebt gedrukt, druk je op een knop van de controller waarvan je de beweging wilt tracken. - + [press button] [druk op een knop]. - + Testing Testen - + Configuring Configureren - + Test Successful Test Geslaagd - + Successfully received data from the server. Gegevens met succes ontvangen van de server. - + Test Failed Test Mislukt - + Could not receive valid data from the server.<br>Please verify that the server is set up correctly and the address and port are correct. Kan geen valide data ontvangen van de server. <br> Verifieer dat de server correct opgezet is en dat het adres en de port correct zijn. - + Citra Citra - + UDP Test or calibration configuration is in progress.<br>Please wait for them to finish. UDP Test of calibratie is bezig.<br> Wacht tot deze klaar zijn. @@ -2153,97 +2153,97 @@ Wilt u de fout negeren en doorgaan? ConfigurePerGame - + Dialog Dialog - + Info Info - + Size Grootte - + Format Formaat - + Name Naam - + Filepath Bestandspad - + Title ID Title ID - + Reset Game Settings Spelinstellingen herstellen - + Use global configuration (%1) Gebruik globale configuratie (%1) - + General Algemeen - + System Systeem - + Enhancements Verbeteringen - + Graphics Beeldkwaliteit - + Audio Geluid - + Debug Foutopsporing - + Cheats Cheats - + Properties Eigenschappen - + Citra Citra - + Are you sure you want to <b>reset your settings for this game</b>? Weet u zeker dat u uw <b>instellingen voor dit spel wilt resetten</b>? @@ -2251,65 +2251,65 @@ Wilt u de fout negeren en doorgaan? ConfigureStorage - + Form Vorm - + Storage Opslag - + Use Virtual SD Gebruik virtuele SD - + Custom Storage Aangepaste opslag - + Use Custom Storage Gebruik aangepaste opslag - + NAND Directory NAND map - - + + Open Open - - + + NOTE: This does not move the contents of the previous directory to the new one. OPMERKING: De inhoud van de vorige map wordt niet verplaatst naar de nieuwe map. - - + + Change Verander - + SDMC Directory SDMC map - + Select NAND Directory Selecteer NAND map - + Select SDMC Directory Selecteer SDMC map @@ -2317,1064 +2317,1064 @@ Wilt u de fout negeren en doorgaan? ConfigureSystem - + Form Formulier - + System Settings Systeeminstellingen - + Enable New 3DS mode Activeer New 3DS-modus - + Use LLE applets (if installed) - + Username Gebruikersnaam - + Birthday Geboortedatum - + January januari - + February februari - + March maart - + April april - + May mei - + June juni - + July juli - + August augustus - + September september - + October oktober - + November november - + December december - + Language Taal - + Note: this can be overridden when region setting is auto-select Opmerking: dit kan overschreven worden wanneer regio instelling op automatisch selecteren staat - + Japanese (日本語) Japans (日本語) - + English Engels - + French (français) Frans (français) - + German (Deutsch) Duits (Deutsch) - + Italian (italiano) Italiaans (italiano) - + Spanish (español) Spaans (español) - + Simplified Chinese (简体中文) Versimpeld Chinees (简体中文) - + Korean (한국어) Koreaans (한국어) - + Dutch (Nederlands) Nederlands (Nederlands) - + Portuguese (português) Portugees (português) - + Russian (Русский) Russisch (Русский) - + Traditional Chinese (正體中文) Traditioneel Chinees (正體中文) - + Sound output mode Geluidsuitvoer modus - + Mono Mono - + Stereo Stereo - + Surround Surround - + Country Land - + Clock Klok - + System Clock Systeemklok - + Fixed Time Vaste tijd - + Startup time Opstarttijd - + yyyy-MM-ddTHH:mm:ss yyyy-MM-ddTHH:mm:ss - + Offset time Offset tijd - + days dagen - + HH:mm:ss HH:mm:ss - + Initial System Ticks - + Random - + Fixed - + Initial System Ticks Override - + Play Coins: Speel Munten: - + Run System Setup when Home Menu is launched Systeeminstellingen opstarten wanneer het Home-menu wordt gestart - + Console ID: Console ID: - + Regenerate Herstellen - + 3GX Plugin Loader: 3GX-pluginlader: - + Enable 3GX plugin loader Activeer 3GX-pluginlader - + Allow games to change plugin loader state Spellen toestaan om de status van de pluginloader te wijzigen - + Download System Files from Nitendo servers Download systeembestanden van Nitendo servers - + Minimal Minimaal - + Old 3DS Old 3DS - + New 3DS New 3DS - + JPN JPN - + USA USA - + EUR EUR - + AUS AUS - + CHN CHN - + KOR KOR - + TWN TWN - + Download Download - + System settings are available only when game is not running. Systeeminstellingen zijn alleen beschikbaar wanneer er geen spel actief is. - + Japan Japan - + Anguilla Anguilla - + Antigua and Barbuda Antigua en Barbuda - + Argentina Argentinië - + Aruba Aruba - + Bahamas Bahama's - + Barbados Barbados - + Belize Belize - + Bolivia Bolivia - + Brazil Brazilië - + British Virgin Islands Britse Maagdeneilanden - + Canada Canada - + Cayman Islands Kaaiman Eilanden - + Chile Chili - + Colombia Colombia - + Costa Rica Costa Rica - + Dominica Dominica - + Dominican Republic Dominicaanse Republiek - + Ecuador Ecuador - + El Salvador El Salvador - + French Guiana Frans-Guyana - + Grenada Grenada - + Guadeloupe Guadeloupe - + Guatemala Guatemala - + Guyana Guyana - + Haiti Haïti - + Honduras Honduras - + Jamaica Jamaica - + Martinique Martinique - + Mexico Mexico - + Montserrat Montserrat - + Netherlands Antilles Nederlandse Antillen - + Nicaragua Nicaragua - + Panama Panama - + Paraguay Paraguay - + Peru Peru - + Saint Kitts and Nevis Saint Kitts and Nevis - + Saint Lucia Saint Lucia - + Saint Vincent and the Grenadines Saint Vincent en de Grenadines - + Suriname Suriname - + Trinidad and Tobago Trinidad en Tobago - + Turks and Caicos Islands Turks- en Caicoseilanden - + United States Verenigde Staten - + Uruguay Uruguay - + US Virgin Islands Amerikaanse Maagdeneilanden - + Venezuela Venezuela - + Albania Albanië - + Australia Australië - + Austria Oostenrijk - + Belgium België - + Bosnia and Herzegovina Bosnië-Herzegovina - + Botswana Botswana - + Bulgaria Bulgarije - + Croatia Kroatië - + Cyprus Cyprus - + Czech Republic Tsjechië - + Denmark Denemarken - + Estonia Estland - + Finland Finland - + France Frankrijk - + Germany Duitsland - + Greece Griekenland - + Hungary Hongarije - + Iceland IJsland - + Ireland Ierland - + Italy Italië - + Latvia Letland - + Lesotho Lesotho - + Liechtenstein Liechtenstein - + Lithuania Litouwen - + Luxembourg Luxemburg - + Macedonia Macedonië - + Malta Malta - + Montenegro Montenegro - + Mozambique Mozambique - + Namibia Namibië - + Netherlands Nederland - + New Zealand Nieuw-Zeeland - + Norway Noorwegen - + Poland Polen - + Portugal Portugal - + Romania Roemenië - + Russia Rusland - + Serbia Servië - + Slovakia Slowakije - + Slovenia Slovenië - + South Africa Zuid-Afrika - + Spain Spanje - + Swaziland Swaziland - + Sweden Zweden - + Switzerland Zwitserland - + Turkey Turkije - + United Kingdom Verenigd Koninkrijk - + Zambia Zambia - + Zimbabwe Zimbabwe - + Azerbaijan Azerbeidzjan - + Mauritania Mauritanië - + Mali Mali - + Niger Niger - + Chad Tsjaad - + Sudan Soedan - + Eritrea Eritrea - + Djibouti Djibouti - + Somalia Somalië - + Andorra Andorra - + Gibraltar Gibraltar - + Guernsey Guernsey - + Isle of Man Man - + Jersey Jersey - + Monaco Monaco - + Taiwan Taiwan - + South Korea Zuid-Korea - + Hong Kong Hong Kong - + Macau Macau - + Indonesia Indonesië - + Singapore Singapore - + Thailand Thailand - + Philippines Filipijnen - + Malaysia Maleisië - + China China - + United Arab Emirates Verenigde Arabische Emiraten - + India India - + Egypt Egypte - + Oman Oman - + Qatar Qatar - + Kuwait Koeweit - + Saudi Arabia Saoedi-Arabië - + Syria Syrië - + Bahrain Bahrein - + Jordan Jordanië - + San Marino San Marino - + Vatican City Vaticaanstad - + Bermuda Bermuda - + Download System Files from Nintendo servers Download systeembestanden van Nintendo-servers - + Citra is missing keys to download system files. <br><a href='https://citra-emu.org/wiki/aes-keys/'><span style="text-decoration: underline; color:#039be5;">How to get keys?</span></a> Citra mist sleutels om systeembestanden te downloaden.<br><a href='https://citra-emu.org/wiki/aes-keys/'><span style="text-decoration: underline; color:#039be5;">Hoe komt u aan sleutels?</span></a> - - + + Console ID: 0x%1 Console ID: 0x%1 - + This will replace your current virtual 3DS with a new one. Your current virtual 3DS will not be recoverable. This might have unexpected effects in games. This might fail, if you use an outdated config savegame. Continue? Dit zal je huidige virtuele 3DS vervangen met een nieuwe. Je huidige virtuele 3DS is niet herstelbaar. Dit kan onverwachte effecten hebben in spellen. Dit kan mislukken, als je een verouderd configuratie opslagbestand gebruikt. Doorgaan? - + Warning Waarschuwing - + Downloading files... Bestanden downloaden... - + Cancel Annuleer - - + + Citra Citra - + Downloading system files failed. Downloaden van systeembestanden mislukt. - + Successfully downloaded system files. Systeembestanden met succes gedownload. @@ -3382,91 +3382,91 @@ Wilt u de fout negeren en doorgaan? ConfigureTouchFromButton - + Configure Touchscreen Mappings Touchscreen toewijzingen configureren - + Mapping: Toewijzing: - + New Nieuw - + Delete Verwijder - + Rename Hernoemen - + Click the bottom area to add a point, then press a button to bind. Drag points to change position, or double-click table cells to edit values. Klik op het bodemvlak om een punt toe te voegen en druk dan op een knop om te binden. Sleep punten om de positie te wijzigen of dubbelklik op tabelcellen om waarden te bewerken. - + Delete Point Verwijder punt - + Button Knop - + X X axis X - + Y Y axis Y - + New Profile Nieuw profiel - + Enter the name for the new profile. Voer de naam voor het nieuwe profiel in. - + Delete Profile Verwijder profiel - + Delete profile %1? Verwijder profiel %1? - + Rename Profile Hernoem profiel - + New name: Nieuwe naam: - + [press key] [druk op toets]. @@ -3474,113 +3474,113 @@ Sleep punten om de positie te wijzigen of dubbelklik op tabelcellen om waarden t ConfigureUi - + Form Formulier - + General Algemeen - + Note: Changing language will apply your configuration. Opmerking: Als u de taal wijzigt, wordt uw configuratie toegepast. - + Interface language: Interfacetaal: - + Theme: Thema: - + Game List Gamelijst - + Icon Size: Icoongrootte - - + + None Geen - + Small (24x24) Klein (24x24) - + Large (48x48) Groot (48x48) - + Row 1 Text: Rij 1 Tekst: - - + + File Name Bestandsnaam - - + + Full Path Volledige Pad - - + + Title Name (short) Titel naam (kort) - - + + Title ID Titel ID - - + + Title Name (long) Titel naam (lang) - + Row 2 Text: Rij 2 Tekst: - + Hide Titles without Icon Verberg titels zonder icoon - + Single Line Mode Enkelvoudige lijnmodus - + <System> <System> - + English Engels @@ -3588,135 +3588,135 @@ Sleep punten om de positie te wijzigen of dubbelklik op tabelcellen om waarden t ConfigureWeb - + Form Formulier - + Citra Web Service Citra-webdienst - + By providing your username and token, you agree to allow Citra to collect additional usage data, which may include user identifying information. Door het voorzien van je gebruikersnaam en token, ga je akkoord dat Citra aanvullende gebruiksdata verzameld, waaronder informatie waarmee de gebruiker zou kunnen worden geïdentificeerd. - - + + Verify Verifiëren - + Sign up Registreren - + Token: Token: - + Username: Gebruikersnaam: - + What is my token? Wat is mijn token? - + Web Service configuration can only be changed when a public room isn't being hosted. De webserviceconfiguratie kan alleen worden gewijzigd als er geen publieke ruimte wordt gehost. - + Telemetry Telemetrie - + Share anonymous usage data with the Citra team Deel anonieme gebruiksdata met het Citra team - + Learn more Meer leren - + Telemetry ID: Telemetrie ID: - + Regenerate Regenereren - + Discord Presence Discord Presence - + Show Current Game in your Discord Status Toon Huidige Spel in je Discord Status - + <a href='https://citra-emu.org/entry/telemetry-and-why-thats-a-good-thing/'><span style="text-decoration: underline; color:#039be5;">Learn more</span></a> <a href='https://citra-emu.org/entry/telemetry-and-why-thats-a-good-thing/'><span style="text-decoration: underline; color:#039be5;">Meer leren</span></a> - + <a href='https://profile.citra-emu.org/'><span style="text-decoration: underline; color:#039be5;">Sign up</span></a> <a href='https://profile.citra-emu.org/'><span style="text-decoration: underline; color:#039be5;">Registreren</span></a> - + <a href='https://citra-emu.org/wiki/citra-web-service/'><span style="text-decoration: underline; color:#039be5;">What is my token?</span></a> <a href='https://citra-emu.org/wiki/citra-web-service/'><span style="text-decoration: underline; color:#039be5;">Wat is mijn token?</span></a> - - + + Unspecified Ongespecificeerd - - + + Telemetry ID: 0x%1 Telemetrie ID: 0x%1 - + Token not verified Token niet geverifieerd - + Token was not verified. The change to your token has not been saved. Token is niet geverifieerd. De wijziging van uw token is niet opgeslagen. - + Verifying... Verifiëren... - + Verification failed Verificatie mislukt - + Verification failed. Check that you have entered your token correctly, and that your internet connection is working. Verificatie mislukt. Controleer of je je token correct hebt ingevoerd en of uw internetverbinding werkt. @@ -3724,47 +3724,47 @@ Sleep punten om de positie te wijzigen of dubbelklik op tabelcellen om waarden t DirectConnect - + Direct Connect Direct Verbinden - + Server Address Serveradres - + <html><head/><body><p>Server address of the host</p></body></html> <html><head/><body><p>Serveradres van de host</p></body></html> - + Port Poort - + <html><head/><body><p>Port number the host is listening on</p></body></html> <html><head/><body><p>Poort waar de host op luistert</p></body></html> - + 24872 24872 - + Nickname Bijnaam - + Password Wachtwoord - + Connect Verbind @@ -3772,12 +3772,12 @@ Sleep punten om de positie te wijzigen of dubbelklik op tabelcellen om waarden t DirectConnectWindow - + Connecting Verbinden - + Connect Verbind @@ -3785,111 +3785,111 @@ Sleep punten om de positie te wijzigen of dubbelklik op tabelcellen om waarden t DumpingDialog - + Dump Video Dump video - + Output Uitvoer - + Format: Formaat: - - - + + + Options: Opties: - - - - + + + + ... ... - + Path: Pad: - + Video Video - - + + Encoder: Encoder: - - + + Bitrate: Bitrate: - - + + bps bps - + Audio Geluid - - + + Citra Citra - + Please specify the output path. Geef het uitvoerpad aan. - + output formats Uitvoerformaten - + video encoders video-encoders - + audio encoders Geluid-encoders - + Could not find any available %1. Please check your FFmpeg installation used for compilation. Kon geen beschikbare %1 vinden. Controleer de FFmpeg-installatie die wordt gebruikt voor de compilatie. - - - - + + + + %1 (%2) %1 (%2) - + Select Video Output Path Selecteer video-uitvoerpad @@ -3897,342 +3897,342 @@ Controleer de FFmpeg-installatie die wordt gebruikt voor de compilatie. GMainWindow - + <a href='https://citra-emu.org/entry/telemetry-and-why-thats-a-good-thing/'>Anonymous data is collected</a> to help improve Citra. <br/><br/>Would you like to share your usage data with us? <a href='https://citra-emu.org/entry/telemetry-and-why-thats-a-good-thing/'>Anonieme gegevens worden verzameld</a> om Citra te helpen verbeteren. <br/><br/> Wilt u uw gebruiksgegevens met ons delen? - + Telemetry Telemetrie - + No Suitable Vulkan Devices Detected Geen geschikte Vulkan-apparaten gedetecteerd - + Vulkan initialization failed during boot.<br/>Your GPU may not support Vulkan 1.1, or you do not have the latest graphics driver. Vulkan-initialisatie mislukt tijdens het opstarten.<br/>Uw GPU ondersteunt Vulkan 1.1 mogelijk niet of u hebt niet het nieuwste grafische stuurprogramma. - - + + Current emulation speed. Values higher or lower than 100% indicate emulation is running faster or slower than a 3DS. Huidige emulatiesnelheid. Waardes hoger of lager dan 100% geven aan dat de emulatie sneller of langzamer gaat dan een 3DS. - - + + How many frames per second the game is currently displaying. This will vary from game to game and scene to scene. Hoeveel frames per seconde het spel momenteel laat zien. Dit kan variëren van spel tot spel en scene tot scene. - - + + Time taken to emulate a 3DS frame, not counting framelimiting or v-sync. For full-speed emulation this should be at most 16.67 ms. Tijd verstrekt om één 3DS frame te emuleren, zonder framelimitatie of V-Sync te tellen. Voor volledige snelheid emulatie zal dit maximaal 16.67 ms moeten zijn. - + Clear Recent Files Wis recente bestanden - + &Continue &Continue - + &Pause &Pause - + Update Available Update Beschikbaar - + An update is available. Would you like to install it now? Een update is beschikbaar. Zou u hem nu willen installeren? - + No Update Found Geen update gevonden - + No update is found. Geen update gevonden. - + Citra is running a game TRANSLATORS: This string is shown to the user to explain why Citra needs to prevent the computer from sleeping Citra is een spel aan het runnen - - + + Invalid ROM Format Ongeldig ROM-formaat - - + + Your ROM format is not supported.<br/>Please follow the guides to redump your <a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>game cartridges</a> or <a href='https://citra-emu.org/wiki/dumping-installed-titles/'>installed titles</a>. Uw ROM-formaat wordt niet ondersteund.<br/>Volg de gidsen om je <a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>spelcartridges</a> of <a href='https://citra-emu.org/wiki/dumping-installed-titles/'>geïnstalleerde titels</a> te redumpen. - + ROM Corrupted ROM Beschadigd - + Your ROM is corrupted. <br/>Please follow the guides to redump your <a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>game cartridges</a> or <a href='https://citra-emu.org/wiki/dumping-installed-titles/'>installed titles</a>. Je ROM is beschadigd. <br/>Volg de gidsen om je <a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>spelcartridges</a> of <a href='https://citra-emu.org/wiki/dumping-installed-titles/'>geïnstalleerde titels</a> te redumpen. - + ROM Encrypted ROM Versleuteld - + Your ROM is encrypted. <br/>Please follow the guides to redump your <a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>game cartridges</a> or <a href='https://citra-emu.org/wiki/dumping-installed-titles/'>installed titles</a>. Uw ROM is versleuteld.<br/>Volgt u AUB de handleiding om uw <a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>spelcartridges</a> of <a href='https://citra-emu.org/wiki/dumping-installed-titles/'>geïnstalleerde titels</a> opnieuw te dumpen. - + Unsupported ROM Niet-ondersteunde ROM - + GBA Virtual Console ROMs are not supported by Citra. GBA Virtual Console ROM's worden niet ondersteund door Citra. - + Error while loading ROM! Fout tijdens het laden van de ROM! - + An unknown error occurred. Please see the log for more details. Er heeft zich een onbekende fout voorgedaan. Raadpleeg het log voor meer informatie. - + CIA must be installed before usage CIA moet worden geïnstalleerd voor gebruik - + Before using this CIA, you must install it. Do you want to install it now? Voordat u deze CIA kunt gebruiken, moet je hem installeren. Wilt u het nu installeren? - - + + Slot %1 Slot %1 - + Slot %1 - %2 %3 Slot %1 - %2 %3 - + Error Opening %1 Folder Fout bij het openen van de map %1 - - + + Folder does not exist! Map bestaat niet! - + Dumping... Dumping... - - + + Cancel Annuleren - - - - - - - - - + + + + + + + + + Citra Citra - + Could not dump base RomFS. Refer to the log for details. Kon basis RomFS niet dumpen. Raadpleeg het log voor meer informatie. - + Error Opening %1 Fout bij het openen van %1 - + Select Directory Selecteer Folder - + Properties Eigenschappen - + The game properties could not be loaded. De game-eigenschappen konden niet worden geladen. - + 3DS Executable (%1);;All Files (*.*) %1 is an identifier for the 3DS executable file extensions. 3DS Executable (%1);;Alle bestanden (*.*) - + Load File Laad bestand - + Load Files Laad Bestanden - + 3DS Installation File (*.CIA*) 3DS Installatie bestand (*.CIA*) - + All Files (*.*) Alle bestanden (*.*) - + %1 has been installed successfully. %1 is succesvol geïnstalleerd. - + Unable to open File Kan bestand niet openen - + Could not open %1 Kan %1 niet openen - + Installation aborted Installatie onderbroken - + The installation of %1 was aborted. Please see the log for more details De installatie van %1 is afgebroken. Zie het logboek voor meer details - + Invalid File Ongeldig bestand - + %1 is not a valid CIA %1 is geen geldige CIA - + Encrypted File Versleuterd bestand - + %1 must be decrypted before being used with Citra. A real 3DS is required. %1 moet worden gedecodeerd voordat het met Citra kan worden gebruikt. Een echte 3DS is vereist. - + Unable to find File Bestand niet gevonden - + Could not find %1 Kon %1 niet vinden - + Uninstalling '%1'... - + Failed to uninstall '%1'. - + Successfully uninstalled '%1'. - + File not found Bestand niet gevonden - + File "%1" not found Bestand "%1" niet gevonden - + Missing Citra Account Citra Account ontbreekt - + You must link your Citra account to submit test cases.<br/>Go to Emulation &gt; Configure... &gt; Web to do so. U moet uw Citra-account koppelen om testcases te kunnen inzenden.<br/>Ga naar Emulatie &gt; Configureren... &gt; Web om dit te doen. - + Savestates Savestates - + Warning: Savestates are NOT a replacement for in-game saves, and are not meant to be reliable. Use at your own risk! @@ -4241,76 +4241,76 @@ Use at your own risk! Gebruik op eigen risico! - - - + + + Error opening amiibo data file Fout bij het openen van het amiibo databestand - + A tag is already in use. Er is al een tag in gebruik. - + Game is not looking for amiibos. Het spel is niet op zoek naar amiibo's. - + Amiibo File (%1);; All Files (*.*) Amiibo Bestand (%1);; Alle Bestanden (*.*) - + Load Amiibo Laad Amiibo - + Unable to open amiibo file "%1" for reading. Kan amiibo-bestand "%1" niet openen om te worden gelezen. - + Record Movie Film opnemen - + Movie recording cancelled. Filmopname geannuleerd. - - + + Movie Saved Film Opgeslagen - - + + The movie is successfully saved. De film is met succes opgeslagen. - + Invalid Screenshot Directory Ongeldige schermafbeeldmap - + Cannot create specified screenshot directory. Screenshot path is set back to its default value. Kan de opgegeven map voor schermafbeeldingen niet maken. Het pad voor schermafbeeldingen wordt teruggezet naar de standaardwaarde. - + Could not load video dumper Kan videodumper niet laden - + FFmpeg could not be loaded. Make sure you have a compatible version installed. To install FFmpeg to Citra, press Open and select your FFmpeg directory. @@ -4323,158 +4323,158 @@ Om FFmpeg op Citra te installeren, drukt u op Open en selecteert u uw FFmpeg-map Om een handleiding te bekijken over hoe u FFmpeg installeert, drukt u op Help. - + Select FFmpeg Directory Selecteer FFmpeg map - + The provided FFmpeg directory is missing %1. Please make sure the correct directory was selected. De opgegeven FFmpeg directory ontbreekt %1. Controleer of de juiste map is geselecteerd. - + FFmpeg has been sucessfully installed. FFmpeg is met succes geïnstalleerd. - + Installation of FFmpeg failed. Check the log file for details. Installatie van FFmpeg is mislukt. Controleer het logbestand voor meer informatie. - + Could not start video dumping.<br>Refer to the log for details. Kan videodump niet starten.<br>Raadpleeg het logboek voor meer informatie. - + Recording %1 Opname %1 - + Playing %1 / %2 Afspelen %1 / %2 - + Movie Finished Film Voltooid - + Speed: %1% Snelheid: %1% - + Speed: %1% / %2% Snelheid: %1% / %2% - + Game: %1 FPS Spel: %1 FPS - + Frame: %1 ms Frame: %1 ms - + VOLUME: MUTE - + VOLUME: %1% Volume percentage (e.g. 50%) - + %1 is missing. Please <a href='https://citra-emu.org/wiki/dumping-system-archives-and-the-shared-fonts-from-a-3ds-console/'>dump your system archives</a>.<br/>Continuing emulation may result in crashes and bugs. %1 ontbreekt. Gelieve uw <a href='https://citra-emu.org/wiki/dumping-system-archives-and-the-shared-fonts-from-a-3ds-console/'>systeemarchieven te dumpen</a>.<br/>Het voortzetten van de emulatie kan resulteren in crashes en bugs. - + A system archive Een systeemarchief - + System Archive Not Found Systeem archief niet gevonden - + System Archive Missing Systeemarchief ontbreekt - + Save/load Error Opslaan/Laad fout - + Fatal Error Fatale Fout - + A fatal error occurred. <a href='https://community.citra-emu.org/t/how-to-upload-the-log-file/296'>Check the log</a> for details.<br/>Continuing emulation may result in crashes and bugs. Er is een fatale fout opgetreden. <a href='https://community.citra-emu.org/t/how-to-upload-the-log-file/296'>Kijk in het log</a> voor details.<br/>Het voortzetten van de emulatie kan leiden tot crashes en bugs. - + Fatal Error encountered Fatale fout opgetreden - + Continue Doorgaan - + Quit Game Spel verlaten - + OK OK - + Would you like to exit now? Wil je nu afsluiten? - + The game is still running. Would you like to stop emulation? Het spel draait nog steeds. Wil je de emulatie stoppen? - + Playback Completed Afspelen voltooid - + Movie playback completed. Film afspelen voltooid. - + Primary Window Primaire venster - + Secondary Window Secundair venster @@ -4482,22 +4482,22 @@ Om een handleiding te bekijken over hoe u FFmpeg installeert, drukt u op Help. GPUCommandListModel - + Command Name Opdracht Naam - + Register Register - + Mask Maskeren - + New Value Nieuwe Waarde @@ -4505,23 +4505,23 @@ Om een handleiding te bekijken over hoe u FFmpeg installeert, drukt u op Help. GPUCommandListWidget - + Pica Command List Pica Opdrachten Lijst - - + + Start Tracing Start Traceren - + Copy All Alles kopiëren - + Finish Tracing Traceren voltooien @@ -4529,7 +4529,7 @@ Om een handleiding te bekijken over hoe u FFmpeg installeert, drukt u op Help. GPUCommandStreamWidget - + Graphics Debugger Grafische Foutopsporing @@ -4537,42 +4537,42 @@ Om een handleiding te bekijken over hoe u FFmpeg installeert, drukt u op Help. GRenderWindow - + OpenGL not available! OpenGL niet beschikbaar! - + OpenGL shared contexts are not supported. OpenGL gedeelde contexten zijn niet ondersteund. - + Error while initializing OpenGL! Fout bij het initialiseren van OpenGL! - + Your GPU may not support OpenGL, or you do not have the latest graphics driver. Het kan zijn dat je GPU OpenGL niet ondersteunt of dat je niet de nieuwste grafische stuurprogramma hebt. - + Error while initializing OpenGL 4.3! Fout tijdens het initialiseren van OpenGL 4.3! - + Your GPU may not support OpenGL 4.3, or you do not have the latest graphics driver.<br><br>GL Renderer:<br>%1 Uw GPU ondersteunt mogelijk OpenGL 4.3 niet of u hebt niet het meest recente grafische stuurprogramma.<br><br>GL Renderer:<br>%1 - + Error while initializing OpenGL ES 3.2! Fout tijdens het initialiseren van OpenGL ES 3.2! - + Your GPU may not support OpenGL ES 3.2, or you do not have the latest graphics driver.<br><br>GL Renderer:<br>%1 Uw GPU ondersteunt mogelijk OpenGL ES 3.2 niet of u hebt niet het meest recente grafische stuurprogramma.<br><br>GL Renderer:<br>%1 @@ -4580,193 +4580,193 @@ Om een handleiding te bekijken over hoe u FFmpeg installeert, drukt u op Help. GameList - - + + Compatibility Compatibiliteit - - + + Region Regio - - + + File type Bestandstype - - + + Size Grootte - + Open Save Data Location Open opslag data locatie - + Open Extra Data Location Open Extra Data Locatie - + Open Application Location Open Applicatie Locatie - + Open Update Data Location Open Update Data Locatie - + Open DLC Data Location Open DLC-gegevens locatie - + Open Texture Dump Location Open Texture Dump Locatie - + Open Custom Texture Location Open aangepaste textuurlocatie - + Open Mods Location Open Mods Locatie - + Dump RomFS Dump RomFS - + Disk Shader Cache Schijf Shader-cache - + Open Shader Cache Location Shader-cache locatie openen - + Delete OpenGL Shader Cache OpenGL Shader-cache verwijderen - + Uninstall - + Everything - + Game - + Update - + DLC - + Navigate to GameDB entry Navigeer naar GameDB item - + Properties Eigenschappen - - - - + + + + Citra - + Are you sure you want to completely uninstall '%1'? This will delete the game if installed, as well as any installed updates or DLC. - - + + %1 (Update) - - + + %1 (DLC) - + Are you sure you want to uninstall '%1'? - + Are you sure you want to uninstall the update for '%1'? - + Are you sure you want to uninstall all DLC for '%1'? - + Scan Subfolders Scan Submappen - + Remove Game Directory Verwijder Game Directorie - + Move Up Omhoog - + Move Down Omlaag - + Open Directory Location Open map Locatie - + Name Naam @@ -4774,82 +4774,82 @@ This will delete the game if installed, as well as any installed updates or DLC. GameListItemCompat - + Perfect Perfect - + Game functions flawless with no audio or graphical glitches, all tested functionality works as intended without any workarounds needed. Het spel werkt foutloos zonder audio of grafische glitches, alle geteste functies werken zoals bedoeld zonder dat er workarounds nodig. - + Great Geweldig - + Game functions with minor graphical or audio glitches and is playable from start to finish. May require some workarounds. Het spel werkt met kleine grafische of audiofouten en is van begin tot eind speelbaar. Mogelijk zijn enkele workarounds nodig. - + Okay Oké - + Game functions with major graphical or audio glitches, but game is playable from start to finish with workarounds. - Het spel functioneert met enorme grafische of geluidsproblemen, maar het spel is speelbaar van het begin tot het einde met + Het spel functioneert met enorme grafische of geluidsproblemen, maar het spel is speelbaar van het begin tot het einde met omzeilingen. - + Bad Slecht - + Game functions, but with major graphical or audio glitches. Unable to progress in specific areas due to glitches even with workarounds. Spel werkt, maar met grote grafische of audioglitches. Kan niet verder komen in bepaalde gebieden door glitches zelfs met workarounds. - + Intro/Menu Intro/Menu - + Game is completely unplayable due to major graphical or audio glitches. Unable to progress past the Start Screen. Het spel is volledig onspeelbaar door grote grafische of audioglitches. Je kunt niet verder dan het start scherm. - + Won't Boot Start Niet - + The game crashes when attempting to startup. Het spel crashed bij het opstarten. - + Not Tested Niet Getest - + The game has not yet been tested. Het spel is nog niet getest. @@ -4857,7 +4857,7 @@ scherm. GameListPlaceholder - + Double-click to add a new folder to the game list Dubbelklik om een nieuwe map toe te voegen aan de gamelijst @@ -4865,27 +4865,27 @@ scherm. GameListSearchField - + of van de - + result resultaat - + results resultaten - + Filter: Filter: - + Enter pattern to filter Patroon invoeren om te filteren @@ -4893,47 +4893,47 @@ scherm. GameRegion - + Japan Japan - + North America Noord-Amerika - + Europe Europa - + Australia Australië - + China China - + Korea Korea - + Taiwan Taiwan - + Invalid region Ongeldige regio - + Region free Regio vrij @@ -4941,23 +4941,23 @@ scherm. GraphicsBreakPointsWidget - + Pica Breakpoints Pica breekpunten - - + + Emulation running Emulatie loopt - + Resume Hervatten - + Emulation halted at breakpoint Emulatie gestopt op breekpunt @@ -4965,146 +4965,146 @@ scherm. GraphicsSurfaceWidget - + Pica Surface Viewer Pica Surface Viewer - + Color Buffer Kleur Buffer - + Depth Buffer Diepte Buffer - + Stencil Buffer Stencil Buffer - + Texture 0 Structuur 0 - + Texture 1 Structuur 1 - + Texture 2 Structuur 2 - + Custom Aangepast - + Unknown Onbekend - + Save Opslaan - + Source: Bron: - + Physical Address: Fysiek Adres: - + Width: Breedte: - + Height: Hoogte: - + Format: Formaat: - + X: X: - + Y: Y: - + Pixel out of bounds Pixel buiten bereik - + (unable to access pixel data) (geen toegang tot pixel data) - + (invalid surface address) (ongeldig surface adres) - + (unknown surface format) (onbekend surface formaat) - + Portable Network Graphic (*.png) Portable Network Graphic (*.png) - + Binary data (*.bin) Binary data (*.bin) - + Save Surface Surface opslaan - - - - + + + + Error Fout - - + + Failed to open file '%1' Kon bestand '%1' niet openen - + Failed to save surface data to file '%1' Het is niet gelukt oppervlaktegegevens op te slaan in bestand '%1'. - + Failed to completely write surface data to file. The saved data will likely be corrupt. Het schrijven van oppervlaktegegevens naar een bestand is mislukt. De opgeslagen gegevens zijn waarschijnlijk beschadigd. @@ -5112,42 +5112,42 @@ scherm. GraphicsTracingWidget - + CiTrace Recorder CiTrace Opnemer - + Start Recording Start Opname - + Stop and Save Stop en Opslaan - + Abort Recording Opname Onderbreken - + Save CiTrace CiTrace Opslaan - + CiTrace File (*.ctf) CiTrace File (*.ctf) - + CiTracing still active CiTracing nog steeds actief - + A CiTrace is still being recorded. Do you want to save it? If not, all recorded data will be discarded. Een CiTrace wordt nog steeds opgenomen. Wil je deze opslaan? Zo niet, dan zal alle data worden verwijderd. @@ -5155,17 +5155,17 @@ scherm. GraphicsVertexShaderModel - + Offset Compenseren - + Raw Rauw - + Disassembly Demontage @@ -5173,127 +5173,127 @@ scherm. GraphicsVertexShaderWidget - + Save Shader Dump Shader Dump Opslaan - + Shader Binary (*.shbin) Shader Binary (*.shbin) - + Pica Vertex Shader Pica Vertex Shader - + (data only available at vertex shader invocation breakpoints) (data alleen beschikbaar bij vertex shader-aanroep breekpunten) - + Dump Dump - + Input Data Invoer Data - + Attribute %1 Attribuut %1 - + Cycle Index: Cyclus Index: - + SRC1: %1, %2, %3, %4 SRC1: %1, %2, %3, %4 - + SRC2: %1, %2, %3, %4 SRC2: %1, %2, %3, %4 - + SRC3: %1, %2, %3, %4 SRC3: %1, %2, %3, %4 - + DEST_IN: %1, %2, %3, %4 DEST_IN: %1, %2, %3, %4 - + DEST_OUT: %1, %2, %3, %4 DEST_OUT: %1, %2, %3, %4 - + Address Registers: %1, %2 Adres Registers: %1, %2 - + Compare Result: %1, %2 Vergelijkings-resultaten: %1, %2 - + Static Condition: %1 Statische Toestand: %1 - + Dynamic Conditions: %1, %2 Dynamische Toestand: %1, %2 - + Loop Parameters: %1 (repeats), %2 (initializer), %3 (increment), %4 Loop Parameters: %1 (Herhaaldelijk), %2 (Tot stand brengen), %3 (Ophoging), %4 - + Instruction offset: 0x%1 Instructie verspringing: 0x%1 - + -> 0x%2 -> 0x%2 - + (last instruction) (laatste instructie) @@ -5301,67 +5301,67 @@ scherm. HostRoom - + Create Room Kamer Aanmaken - + Room Name Naam Kamer - + Preferred Game Voorkeurs spel - + Max Players Max Spelers - + Username Gebruikersnaam - + (Leave blank for open game) (Laat leeg voor huidig geopende spel) - + Password Wachtwoord - + Port Poort - + Room Description Kamer Beschrijving - + Load Previous Ban List Laad Vorige Banlijst - + Public Openbaar - + Unlisted Verborgen - + Host Room Host Room @@ -5369,12 +5369,12 @@ scherm. HostRoomWindow - + Error Fout - + Failed to announce the room to the public lobby. In order to host a room publicly, you must have a valid Citra account configured in Emulation -> Configure -> Web. If you do not want to publish a room in the public lobby, then select Unlisted instead. Debug Message: Het is niet gelukt om de kamer aan te kondigen in de openbare lobby. Om een ruimte publiekelijk te hosten, moet u een geldige Citra-account hebben geconfigureerd in Emulatie -> Configuratie -> Web. Als u een kamer niet wilt publiceren in de publieke lobby, selecteer dan Verborgen op de lijst. @@ -5384,47 +5384,47 @@ Debugbericht: IPCRecorder - + IPC Recorder IPC Opnemer - + Enable Recording Opname Inschakelen - + Filter: Filter: - + Leave empty to disable filtering Leeg laten om filteren uit te schakelen - + # # - + Status Status - + Service Service - + Function Functie - + Clear Wissen @@ -5432,47 +5432,47 @@ Debugbericht: IPCRecorderWidget - + Invalid Ongeldig - + Sent Verzonden - + Handling Hantering - + Success Succes - + Error Fout - + HLE Unimplemented HLE niet geïmplementeerd - + HLE HLE - + LLE LLE - + Unknown Onbekend @@ -5480,7 +5480,7 @@ Debugbericht: LLEServiceModulesWidget - + Toggle LLE Service Modules Schakelen tussen LLE-servicemodules @@ -5488,54 +5488,54 @@ Debugbericht: LoadingScreen - + Loading Shaders 387 / 1628 Shaders laden 387 / 1628 - + Loading Shaders %v out of %m Laden van shaders %v van %m - + Estimated Time 5m 4s Ingeschatte Tijd 5m 4s - + Loading... Laden... - + Preloading Textures %1 / %2 Texturen vooraf laden %1 / %2 - + Preparing Shaders %1 / %2 Shaders voorbereiden %1 / %2 - + Loading Shaders %1 / %2 Shaders laden %1 / %2 - + Launching... Starten... - + Now Loading %1 Nu aan het laden %1 - + Estimated Time %1 Geschatte tijd %1 @@ -5543,83 +5543,83 @@ Debugbericht: Lobby - + Public Room Browser Browser voor publieke ruimtes - - + + Nickname Bijnaam - + Filters Filters - + Search Zoek - + Games I Own Mijn Games - + Hide Empty Rooms Verberg lege kamers - + Hide Full Rooms Verberg volle kamers - + Refresh Lobby Vernieuw Lobby - + Password Required to Join Wachtwoord vereist voor toetreding - + Password: Wachtwoord: - + Room Name Kamernaam - + Preferred Game Voorkeursspel - + Host Host - + Players Spelers - + Refreshing Vernieuwen - + Refresh List Lijst vernieuwen @@ -5627,362 +5627,362 @@ Debugbericht: MainWindow - + Citra Citra - + &File &Bestand - + Boot Home Menu Start Home Menu - + Recent Files Recente Bestanden - + Amiibo Amiibo - + &Emulation &Emulatie - + Save State State Opslaan - + Load State State Laden - + &View &Beeld - + Debugging Foutopsporing - + Screen Layout Scherm indeling - + Multiplayer Multiplayer - + Tools Gereedschappen - + Movie Film - + Frame Advance Frame vooruitgang - + &Help &Help - + Load File... Laad Bestand... - + Install CIA... CIA Installeren... - + JPN JPN - + USA USA - + EUR EUR - + AUS AUS - + CHN CHN - + KOR KOR - + TWN TWN - + E&xit &Afsluiten - + &Pause &Pauzeren - + &Stop &Stop - + Save Opslaan - + Load Laden - + FAQ FAQ - + About Citra Over Citra - + Single Window Mode Enkel Scherm Modus - + Save to Oldest Slot Sla op in het Oudste Slot - + Load from Newest Slot Laad het nieuwste slot - + Configure... Configureren... - + Display Dock Widget Headers Dock Widget Headers Tonen - + Show Filter Bar Filter Bar Tonen - + Show Status Bar Status Bar Tonen - + Create Pica Surface Viewer Pica Surface Viewer Maken - + Record... Opnemen... - + Play... Afspelen... - + Close Sluiten - + Save without Closing Opslaan zonder af te sluiten - + Read-Only Mode Alleen-lezen modus - + Enable Frame Advancing Activeer frame vooruitgang - + Advance Frame Vooruitgang van frame - + Capture Screenshot Maak Schermafbeelding - + Dump Video Dump Video - + Browse Public Game Lobby Bekijk publieke spel lobby - + Create Room Kamer Aanmaken - + Leave Room Kamer Verlaten - + Direct Connect to Room Directe verbinding naar kamer - + Show Current Room Huidige kamer tonen - + Fullscreen Volledig Scherm - + Modify Citra Install Citra Installatie Aanpassen - + Opens the maintenance tool to modify your Citra installation Opent de onderhouds-tool om de Citra installatie aan te passen - + Default Standaard - + Single Screen Enkel Scherm - + Large Screen Groot Scherm - + Hybrid Screen Hybride scherm - + Side by Side Zij aan zij - + Separate Windows Gescheide vensters - + Swap Screens Verwissel Schermen - + Rotate Upright Schermen rechtop draaien - + Check for Updates Zoeken naar Updates - + Report Compatibility Compatibiliteit rapporteren - + Restart Herstart - + Load... Laden... - + Remove Verwijder - + Open Citra Folder Open Citra Map - + Configure Current Game... Huidig spel configureren... @@ -5990,7 +5990,7 @@ Debugbericht: MicroProfileDialog - + MicroProfile MicroProfiel @@ -5998,48 +5998,48 @@ Debugbericht: ModerationDialog - + Moderation Moderatie - + Ban List Ban lijst - - + + Refreshing Opnieuw Laden - + Unban Ontbannen - + Subject Onderwerp - + Type Type - + Forum Username Forum Gebruikersnaam - + IP Address IP-adres - + Refresh Opnieuw Laden @@ -6047,91 +6047,91 @@ Debugbericht: MoviePlayDialog - - + + Play Movie Film afspelen - + File: Bestand: - + ... ... - + Info Info - + Game: Spel: - + Author: Auteur: - + Rerecord Count: Heropname aantal: - + Length: Lengte: - + Current running game will be stopped. Het huidige spel zal worden gestopt. - + <br>Current recording will be discarded. <br>De huidige opname wordt verwijderd. - + Citra TAS Movie (*.ctm) Citra TAS film (*.ctm) - + Invalid movie file. Ongeldig filmbestand. - + Revision dismatch, playback may desync. Revisie dismatch, afspelen kan desynchroniseren. - + Indicated length is incorrect, file may be corrupted. Aangegeven lengte is onjuist, bestand kan beschadigd zijn. - - - - + + + + (unknown) (onbekend) - + Game used in this movie is not in game list. Het spel dat in deze film wordt gebruikt, staat niet in de spellijst. - + (>1 day) (>1 dag) @@ -6139,43 +6139,43 @@ Debugbericht: MovieRecordDialog - - + + Record Movie Film opnemen - + File: Bestand: - + ... ... - + Author: Auteur: - + Current running game will be restarted. Het huidige spel zal opnieuw worden opgestart. - + <br>Current recording will be discarded. <br>De huidige opname wordt verwijderd. - + Recording will start once you boot a game. De opname start zodra u een spel opstart. - + Citra TAS Movie (*.ctm) Citra TAS film (*.ctm) @@ -6183,44 +6183,44 @@ Debugbericht: MultiplayerState - - + + Current connection status Huidige verbindingsstatus - - + + Not Connected. Click here to find a room! Niet verbonden. Klik hier om een kamer te vinden! - - - + + + Connected Verbonden - - + + Not Connected Niet Verbonden - + Error Fout - + Failed to update the room information. Please check your Internet connection and try hosting the room again. Debug Message: Het is niet gelukt om de kamerinformatie bij te werken. Controleer je internetverbinding en probeer de kamer opnieuw te hosten. Debug bericht: - + New Messages Received Nieuw Bericht Ontvangen @@ -6228,22 +6228,22 @@ Debug bericht: NetworkMessage - + Leave Room Kamer Verlaten - + You are about to close the room. Any network connections will be closed. U staat op het punt de kamer af te sluiten. Alle netwerkverbindingen worden afgesloten. - + Disconnect Verbinding verbreken - + You are about to leave the room. Any network connections will be closed. U staat op het punt de kamer af te sluiten. Alle netwerkverbindingen worden afgesloten. @@ -6251,92 +6251,92 @@ Debug bericht: NetworkMessage::ErrorManager - + Username is not valid. Must be 4 to 20 alphanumeric characters. Gebruikersnaam is ongeldig. Moet 4 tot 20 alfanumerieke tekens bevatten. - + Room name is not valid. Must be 4 to 20 alphanumeric characters. De kamernaam is ongeldig. Moet 4 tot 20 alfanumerieke tekens bevatten - + Username is already in use or not valid. Please choose another. Gebruikersnaam is al in gebruik of ongeldig. Kies een andere. - + IP is not a valid IPv4 address. IP is geen geldig IPv4-adres. - + Port must be a number between 0 to 65535. De poort moet een getal zijn tussen 0 en 65535. - + You must choose a Preferred Game to host a room. If you do not have any games in your game list yet, add a game folder by clicking on the plus icon in the game list. U moet een Voorkeursspel kiezen om een kamer te hosten. Als u nog geen spellen in uw spellijst hebt, voeg dan een spelmap toe door op het plus-pictogram in de spellijst te klikken. - + Unable to find an internet connection. Check your internet settings. Kan geen internetverbinding vinden. Controleer uw internetinstellingen. - + Unable to connect to the host. Verify that the connection settings are correct. If you still cannot connect, contact the room host and verify that the host is properly configured with the external port forwarded. Kan geen verbinding maken met de host. Controleer of de verbindingsinstellingen correct zijn. Als u nog steeds geen verbinding kunt maken, neem dan contact op met de host van de kamer en controleer of de host correct is geconfigureerd met de externe poort doorgestuurd. - + Unable to connect to the room because it is already full. Kan geen verbinding maken met de kamer omdat deze al vol is. - + Creating a room failed. Please retry. Restarting Citra might be necessary. Het aanmaken van een kamer is mislukt. Probeer het opnieuw. Mogelijk moet Citra opnieuw worden opgestart. - + The host of the room has banned you. Speak with the host to unban you or try a different room. De host van de kamer heeft u gebanned. Praat met de host om uw ban op te heffen of probeer een andere kamer. - + Version mismatch! Please update to the latest version of Citra. If the problem persists, contact the room host and ask them to update the server. Versie komt niet overeen! Werk bij naar de nieuwste versie van Citra. Als het probleem zich blijft voordoen, neem dan contact op met de host van de ruimte en vraag hen om de server bij te werken. - + Incorrect password. Onjuist wachtwoord. - + An unknown error occurred. If this error continues to occur, please open an issue Er heeft zich een onbekende fout voorgedaan. Als deze fout zich blijft voordoen, open dan een issue - + Connection to room lost. Try to reconnect. Verbinding met kamer verloren. Probeer opnieuw verbinding te maken. - + You have been kicked by the room host. U bent geschopt door de kamerhost. - + MAC address is already in use. Please choose another. Het MAC-adres is al in gebruik. Kies een ander. - + Your Console ID conflicted with someone else's in the room. Please go to Emulation > Configure > System to regenerate your Console ID. @@ -6345,19 +6345,19 @@ Please go to Emulation > Configure > System to regenerate your Console ID. Ga naar Emulatie > Configuratie > Systeem om uw Console ID opnieuw te genereren. - + You do not have enough permission to perform this action. U heeft niet genoeg rechten om deze actie uit te voeren. - + The user you are trying to kick/ban could not be found. They may have left the room. De gebruiker die u probeert te schoppen/bannen kon niet worden gevonden. Misschien hebben ze de kamer verlaten. - + Error Fout @@ -6365,37 +6365,37 @@ Misschien hebben ze de kamer verlaten. OptionSetDialog - + Options Opties - + Unset Niet ingesteld - + unknown onbekend - + %1 &lt;%2> %3 %1 &lt;%2> %3 - + Range: %1 - %2 Bereik: %1 - %2 - + custom Aangepaste - + %1 (0x%2) %3 %1 (0x%2) %3 @@ -6403,32 +6403,32 @@ Misschien hebben ze de kamer verlaten. OptionsDialog - + Options Opties - + Double click to see the description and change the values of the options. Dubbelklik om de beschrijving te zien en de waarden van de opties te wijzigen. - + Specific Specifiek - + Generic Generiek - + Name Naam - + Value Waarde @@ -6436,157 +6436,157 @@ Misschien hebben ze de kamer verlaten. QObject - + Supported image files (%1) Ondersteunde afbeeldings bestanden (%1) - + Open File Bestand Openen - + Error Fout - + Couldn't load the camera Kan de camera niet laden - + Couldn't load %1 Kan %1 niet laden - - + + Shift Shift - - + + Ctrl Ctrl - - + + Alt Alt - - - + + + [not set] [niet ingesteld] - - + + Hat %1 %2 Hat %1 %2 - - - - - - + + + + + + Axis %1%2 Axis %1%2 - - + + Button %1 Knop %1 - + GC Axis %1%2 GC Axis %1%2 - + GC Button %1 GC Button %1 - - - + + + [unknown] [onbekend] - + [unused] [ongebruikt] - + auto auto - + true waar - + false onwaar - - + + none geen - + %1 (0x%2) %1 (0x%2) - + Invalid region Ongeldige regio - + Installed Titles Geïnstalleerde titels - + System Titles Systeem titels - + Add New Game Directory Nieuwe spelmap toevoegen - + Not playing a game Speelt geen spel - + %1 is not playing a game %1 is geen spel aan het spelen - + %1 is playing %2 %1 speelt %2 @@ -6594,7 +6594,7 @@ Misschien hebben ze de kamer verlaten. QtKeyboard - + Software Keyboard Software Toetsenbord @@ -6602,27 +6602,27 @@ Misschien hebben ze de kamer verlaten. QtKeyboardDialog - + Text length is not correct (should be %1 characters) Tekstlengte is niet juist (zou %1 tekens moeten zijn) - + Text is too long (should be no more than %1 characters) Tekst is te lang (zou niet meer dan %1 tekens mogen zijn) - + Blank input is not allowed Blanco invoer is niet toegestaan - + Empty input is not allowed Lege invoer is niet toegestaan - + Validation error Validatiefout @@ -6630,12 +6630,12 @@ Misschien hebben ze de kamer verlaten. QtMiiSelectorDialog - + Mii Selector Mii Selectie - + Standard Mii Standaard Mii @@ -6643,95 +6643,95 @@ Misschien hebben ze de kamer verlaten. RecordDialog - + View Record Opname bekijken - + Client Client - - + + Process: Proces: - - + + Thread: Thread: - - + + Session: Sessie: - + Server Server - + General Algemeen - + Client Port: Client Poort: - + Service: Service: - + Function: Functie: - + Command Buffer Opdrachtenbuffer - + Select: Selecteer: - + Request Untranslated Verzoek Onvertaald - + Request Translated Verzoek Vertaald - + Reply Untranslated Antwoord Onvertaald - + Reply Translated Antwoord Vertaald - + OK Oké - + null leeg @@ -6739,37 +6739,37 @@ Misschien hebben ze de kamer verlaten. RegistersWidget - + Registers Registers - + VFP Registers VFP Registers - + VFP System Registers VFP Systeem Registers - + Vector Length Vector Lengte - + Vector Stride Vector Schrede - + Rounding Mode Afronding Modus - + Vector Iteration Count Vector Iteratieteller @@ -6777,7 +6777,7 @@ Misschien hebben ze de kamer verlaten. SequenceDialog - + Enter a hotkey Voer een sneltoets in @@ -6785,7 +6785,7 @@ Misschien hebben ze de kamer verlaten. WaitTreeEvent - + reset type = %1 reset type = %1 @@ -6793,12 +6793,12 @@ Misschien hebben ze de kamer verlaten. WaitTreeMutex - + locked %1 times by thread: %1 keer gesloten door thread: - + free vrij @@ -6806,7 +6806,7 @@ Misschien hebben ze de kamer verlaten. WaitTreeMutexList - + holding mutexes mutexes worden vasthouden @@ -6814,12 +6814,12 @@ Misschien hebben ze de kamer verlaten. WaitTreeObjectList - + waiting for all objects wachten op alle objecten - + waiting for one of the following objects wachten op een van de volgende objecten @@ -6827,12 +6827,12 @@ Misschien hebben ze de kamer verlaten. WaitTreeSemaphore - + available count = %1 beschikbare aantal = %1 - + max count = %1 maximale aantal = %1 @@ -6840,112 +6840,112 @@ Misschien hebben ze de kamer verlaten. WaitTreeThread - + running lopend - + ready Gereed - + waiting for address 0x%1 Wachten op adres 0x%1 - + sleeping sluimeren - + waiting for IPC response wachten op IPC antwoord - + waiting for objects wachten op objecten - + waiting for HLE return wachten op HLE teruggave - + dormant slapend - + dead dood - + PC = 0x%1 LR = 0x%2 PC = 0x%1 LR = 0x%2 - + default standaard - + all alle - + AppCore AppCore - + SysCore SysCore - + Unknown processor %1 Onbekende processor %1 - + object id = %1 object id = %1 - + processor = %1 processor = %1 - + thread id = %1 thread id = %1 - + process = %1 (%2) process = %1 (%2) - + priority = %1(current) / %2(normal) prioriteit = %1(huidige) / %2(normaal) - + last running ticks = %1 laatste lopende tikken = %1 - + not holding mutex geen mutex wordt vastgehouden @@ -6953,7 +6953,7 @@ Misschien hebben ze de kamer verlaten. WaitTreeThreadList - + waited by thread gepauzeerd door thread @@ -6961,17 +6961,17 @@ Misschien hebben ze de kamer verlaten. WaitTreeTimer - + reset type = %1 reset type = %1 - + initial delay = %1 Initiële vertraging = %1 - + interval delay = %1 interval vertraging = %1 @@ -6979,27 +6979,27 @@ Misschien hebben ze de kamer verlaten. WaitTreeWaitObject - + [%1]%2 %3 [%1]%2 %3 - + waited by no thread gepauzeerd door geen thread - + one shot one shot - + sticky sticky - + pulse pulse @@ -7007,7 +7007,7 @@ Misschien hebben ze de kamer verlaten. WaitTreeWidget - + Wait Tree Wait Tree diff --git a/dist/languages/pl_PL.ts b/dist/languages/pl_PL.ts index 775a2e108..15f38469e 100644 --- a/dist/languages/pl_PL.ts +++ b/dist/languages/pl_PL.ts @@ -2,17 +2,17 @@ ARMRegisters - + ARM Registers Rejestry ARM - + Register Rejestr - + Value Wartość @@ -20,27 +20,27 @@ AboutDialog - + About Citra O Citra - - <html><head/><body><p><img src=":/icons/citra.png"/></p></body></html> - <html><head/><body><p><img src=":/icons/citra.png"/></p></body></html> + + <html><head/><body><p><img src=":/icons/lime.png"/></p></body></html> + <html><head/><body><p><img src=":/icons/lime.png"/></p></body></html> - + <html><head/><body><p><span style=" font-size:28pt;">Citra</span></p></body></html> <html><head/><body><p><span style=" font-size:28pt;">Citra</span></p></body></html> - + <html><head/><body><p>%1 | %2-%3 (%4)</p></body></html> <html><head/><body><p>%1 | %2-%3 (%4)</p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -57,12 +57,12 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">To oprogramowanie nie powinno być stosowane do grania w gry, których nie uzyskałeś w legalny sposób.</span></p></body></html> - + <html><head/><body><p><a href="https://citra-emu.org/"><span style=" text-decoration: underline; color:#039be5;">Website</span></a> | <a href="https://community.citra-emu.org/"><span style=" text-decoration: underline; color:#039be5;">Forum</span></a> | <a href="https://github.com/citra-emu"><span style=" text-decoration: underline; color:#039be5;">Source Code</span></a> | <a href="https://github.com/citra-emu/citra/graphs/contributors"><span style=" text-decoration: underline; color:#039be5;">Contributors</span></a> | <a href="https://github.com/citra-emu/citra/blob/master/license.txt"><span style=" text-decoration: underline; color:#039be5;">License</span></a></p></body></html> <html><head/><body><p><a href="https://citra-emu.org/"><span style=" text-decoration: underline; color:#039be5;">Strona główna</span></a> | <a href="https://community.citra-emu.org/"><span style=" text-decoration: underline; color:#039be5;">Forum</span></a> | <a href="https://github.com/citra-emu"><span style=" text-decoration: underline; color:#039be5;">Kod źródłowy</span></a> | <a href="https://github.com/citra-emu/citra/graphs/contributors"><span style=" text-decoration: underline; color:#039be5;">Współtwórcy</span></a> | <a href="https://github.com/citra-emu/citra/blob/master/license.txt"><span style=" text-decoration: underline; color:#039be5;">Licencja</span></a></p></body></html> - + <html><head/><body><p><span style=" font-size:7pt;">&quot;3DS&quot; is a trademark of Nintendo. Citra is not affiliated with Nintendo in any way.</span></p></body></html> <html><head/><body><p><span style=" font-size:7pt;">&quot;3DS&quot; jest znakiem towarowym Nintendo. Citra nie jest w żaden sposób powiązana z Nintendo.</span></p></body></html> @@ -70,47 +70,47 @@ p, li { white-space: pre-wrap; } BreakPointModel - + Pica command loaded Polecenie Pica załadowane - + Pica command processed Polecenie Pica wykonane - + Incoming primitive batch Przychodząca prymitywna partia - + Finished primitive batch Zakończona prymitywna partia - + Vertex shader invocation Wywołanie cienieniowania Vertex - + Incoming display transfer Przychodzący transfer ekranu - + GSP command processed Polecenie GSP wykonane - + Buffers swapped Bufory zamienione - + Unknown debug context event Nieznane zdarzenie kontekstu debugowania @@ -118,32 +118,32 @@ p, li { white-space: pre-wrap; } CalibrationConfigurationDialog - + Communicating with the server... Komunikacja z serwerem... - + Cancel Anuluj - + Touch the top left corner <br>of your touchpad. Dotknij lewy górny róg <br>twojego touchpada. - + Now touch the bottom right corner <br>of your touchpad. Dotknij dolny prawy róg <br>twojego touchpada. - + Configuration completed! Konfiguracja zakończona! - + OK OK @@ -151,93 +151,93 @@ p, li { white-space: pre-wrap; } ChatRoom - + Room Window Okno Pokoju - + Send Chat Message Treść wiadomości - + Send Message Wyślij - + Members Członkowie - + %1 has joined %1 dołączył - + %1 has left %1 wyszedł - + %1 has been kicked %1 został wyrzucony - + %1 has been banned %1 został zbanowany - + %1 has been unbanned %1 został odbanowany - + View Profile Pokaż profil - - + + Block Player Zablokuj Gracza - + When you block a player, you will no longer receive chat messages from them.<br><br>Are you sure you would like to block %1? Jeżeli zablokujesz gracza, nie będziesz więcej otrzymywał wiadomości od niego.<br><br>Jesteś pewien, że chcesz zablokować %1? - + Kick Wyrzuć - + Ban Zbanuj - + Kick Player Wyrzuć Gracza - + Are you sure you would like to <b>kick</b> %1? Czy jesteś pewien, że chcesz <b>wyrzucić</b>%1? - + Ban Player Zbanuj Gracza - + Are you sure you would like to <b>kick and ban</b> %1? This would ban both their forum username and their IP address. @@ -249,22 +249,22 @@ Spowodowałoby to zablokowanie zarówno nazwy użytkownika forum, jak i adresu I ClientRoom - + Room Window Okno Pokoju - + Room Description Opis Pokoju - + Moderation... Moderacja... - + Leave Room Opuść Pokój @@ -272,17 +272,17 @@ Spowodowałoby to zablokowanie zarówno nazwy użytkownika forum, jak i adresu I ClientRoomWindow - + Connected Połączono - + Disconnected Rozłączono - + %1 (%2/%3 members) - connected %1 (%2/%3 członków) - połączonych @@ -290,108 +290,108 @@ Spowodowałoby to zablokowanie zarówno nazwy użytkownika forum, jak i adresu I CompatDB - + Report Compatibility Zgłoś Kompatybilność - - + + Report Game Compatibility Zgłoś Kompatybilność Gry - + <html><head/><body><p><span style=" font-size:10pt;">Should you choose to submit a test case to the </span><a href="https://citra-emu.org/game/"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">Citra Compatibility List</span></a><span style=" font-size:10pt;">, The following information will be collected and displayed on the site:</span></p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Hardware Information (CPU / GPU / Operating System)</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Which version of Citra you are running</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The connected Citra account</li></ul></body></html> <html><head/><body><p><span style=" font-size:10pt;">Jeśli zdecydujesz się wysłać zgłoszenie do </span><a href="https://citra-emu.org/game/"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">Listy Kompatybilności Citry</span></a><span style=" font-size:10pt;">, następujące informacje zostaną zebrane i wysłane na stronę:</span></p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Informacje o sprzęcie (CPU / GPU / System operacyjny)</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Z której wersji Citry korzystasz</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Podłączone konto Citry</li></ul></body></html> - + Perfect Idealna - + <html><head/><body><p>Game functions flawlessly with no audio or graphical glitches.</p></body></html> <html><head/><body><p>Gra działa bez zarzutu, bez błędów graficznych lub dźwiękowych.</p></body></html> - + Great - + <html><head/><body><p>Game functions with minor graphical or audio glitches and is playable from start to finish. May require some workarounds.</p></body></html> <html><head/><body><p>Gra działa z pomniejszymi błędami dźwiękowymi lub graficznymi, jest grywalna od początku do końca. Może wymagać kilku obejść/poprawek.</p></body></html> - + Okay W porządku - + <html><head/><body><p>Game functions with major graphical or audio glitches, but game is playable from start to finish with workarounds.</p></body></html> <html><head/><body><p>Gra działa z większymi błędami dźwiękowymi lub graficznymi, ale jest grywalna od początku do końca. Może wymagać kilku obejść/poprawek.</p></body></html> - + Bad Zła - + <html><head/><body><p>Game functions, but with major graphical or audio glitches. Unable to progress in specific areas due to glitches even with workarounds.</p></body></html> <html><head/><body><p>Gra działa z większymi błędami dźwiękowymi lub graficznymi. Niemożliwe jest przejście konkretnych miejsc nawet z obejściami.</p></body></html> - + Intro/Menu Intro/Menu - + <html><head/><body><p>Game is completely unplayable due to major graphical or audio glitches. Unable to progress past the Start Screen.</p></body></html> <html><head/><body><p>Gra jest całkowicie niegrywalna z uwagi na poważne błędy graficzne lub dźwiękowe. Działa jedynie ekran startowy.</p></body></html> - + Won't Boot Nie uruchamia się - + <html><head/><body><p>The game crashes when attempting to startup.</p></body></html> <html><head/><body><p>Gra wysypuje się przy próbie uruchomienia.</p></body></html> - + <html><head/><body><p>Independent of speed or performance, how well does this game play from start to finish on this version of Citra?</p></body></html> <html><head/><body><p>Niezależnie od szybkości/wydajności, jak dobrze działa gra, od początku do końca, na tej wersji Citry?</p></body></html> - + Thank you for your submission! Dziękujemy za zgłoszenie! - + Submitting Oddawanie - + Communication error Błąd komunikacji - + An error occurred while sending the Testcase An error occurred while sending the Testcase - + Next Następny @@ -399,93 +399,93 @@ Spowodowałoby to zablokowanie zarówno nazwy użytkownika forum, jak i adresu I ConfigureAudio - + Output - + Emulation: Emulacja: - + HLE (fast) HLE (szybkie) - + LLE (accurate) LLE (dokładne) - + LLE multi-core LLE wielordzeniowe - + Output Type - + Output Device - + This post-processing effect adjusts audio speed to match emulation speed and helps prevent audio stutter. This however increases audio latency. Efekt ten dostosowuje prędkość dźwięku do prędkości emulacji w celu zapobiegnięcia tzw. "stutteringu" dźwięku. Opcja ta zwiększa opóźnienie dźwięku. - + Enable audio stretching Aktywuj rozciąganie dźwięku - + Use global volume - + Set volume: - + Volume: Głośność: - + 0 % 0 % - + Microphone Mikrofon - + Input Type Typ Wejścia - + Input Device Urządzenie Wejściowe - - + + Auto - + %1% Volume percentage (e.g. 50%) %1% @@ -494,203 +494,203 @@ Spowodowałoby to zablokowanie zarówno nazwy użytkownika forum, jak i adresu I ConfigureCamera - + Form Formularz - + Camera Kamera - - + + Select the camera to configure Wybierz kamerę do konfiguracji - + Camera to configure: Kamera do konfiguracji: - + Front Przednia - + Rear Tylnia - - + + Select the camera mode (single or double) Wybierz tryb kamery (pojedyncza lub podwójna) - + Camera mode: Tryb kamery: - + Single (2D) Pojedyncza (2D) - + Double (3D) Podwójna (3D) - - + + Select the position of camera to configure Wybierz położenie kamery do konfiguracji - + Camera position: Położenie kamery: - + Left Lewa - + Right Prawa - + Configuration Konfiguracja - - + + Select where the image of the emulated camera comes from. It may be an image or a real camera. Wybierz obraz, z którego ma być emulowana kamera. Może to być plik lub prawdziwa kamera. - + Camera Image Source: Źródło Obrazu Kamery: - + Blank (blank) Pusta (pusta) - + Still Image (image) Statyczny Obraz (zdjęcie) - + System Camera (qt) Kamera Systemowa (qt) - + File: Plik: - + ... ... - - + + Select the system camera to use Wybierz kamerę, której chcesz użyć - + Camera: Kamera: - + <Default> <Domyślny> - - + + Select the image flip to apply Wybierz sposób obrotu - + Flip: Obrót: - + None Brak - + Horizontal Horyzontalny - + Vertical Wertykalny - + Reverse Odwrócony - + Select an image file every time before the camera is loaded Wybierz plik obrazu za każdym razem przed załadowaniem kamery - + Prompt before load Zapytaj przed załadowaniem - + Preview Podgląd - + Resolution: 512*384 Rozdzielczość: 512*384 - + Click to preview Kliknij by podejrzeć - + Resolution: %1*%2 Rozdzielczość: %1*%2 - + Supported image files (%1) Wspierane pliki obrazów (%1) - + Open File Otwórz Plik @@ -698,87 +698,87 @@ Spowodowałoby to zablokowanie zarówno nazwy użytkownika forum, jak i adresu I ConfigureCheats - - + + Cheats - + Add Cheat - + Available Cheats: - + Name - + Type - + Save - + Delete - + Name: - + Notes: - + Code: - + Would you like to save the current cheat? - - - + + + Save Cheat - + Please enter a cheat name. - + Please enter the cheat code. - + Cheat code line %1 is not valid. Would you like to ignore the error and continue? - - + + [new cheat] @@ -786,127 +786,127 @@ Would you like to ignore the error and continue? ConfigureDebug - + Form Formularz - + GDB GDB - + Enable GDB Stub Włącz pośrednika GDB - + Port: Port: - + Logging Logowanie - + Global Log Filter Globalny Filtr Logów - + Show Log Console (Windows Only) Pokaż Konsolę Logów (Tylko Windows) - + Open Log Location Otwórz Lokalizację Logów - + CPU - + Use global clock speed - + Set clock speed: - + CPU Clock Speed - + <html><body>Changes the emulated CPU clock frequency.<br>Underclocking can increase performance but may cause the game to freeze.<br>Overclocking may reduce in game lag but also might cause freezes</body></html> - + <html><head/><body><p>Enables the use of the ARM JIT compiler for emulating the 3DS CPUs. Don't disable unless for debugging purposes</p></body></html> - + Enable CPU JIT Aktywuj CPU JIT - + Enable debug renderer - + Dump command buffers - + Miscellaneus - + <html><head/><body><p>Introduces a delay to the first ever launched app thread if LLE modules are enabled, to allow them to initialize.</p></body></html> - + Delay app start for LLE module initialization - + <html><head/><body><p>CPU Clock Speed Information<br/>Underclocking can increase performance but may cause the game to freeze.<br/>Overclocking may reduce in game lag but also might cause freezes</p></body></html> - + Validation layer not available - + Unable to enable debug renderer because the layer <strong>VK_LAYER_KHRONOS_validation</strong> is missing. Please install the Vulkan SDK or the appropriate package of your distribution - + Command buffer dumping not available - + Unable to enable command buffer dumping because the layer <strong>VK_LAYER_LUNARG_api_dump</strong> is missing. Please install the Vulkan SDK or the appropriate package of your distribution @@ -914,92 +914,92 @@ Would you like to ignore the error and continue? ConfigureDialog - + Citra Configuration Konfiguracja Citry - - - + + + General Ogólne - - - + + + System System - - + + Input Sterowanie - - + + Hotkeys Skróty klawiszowe - - + + Graphics Obraz - - + + Enhancements Ulepszenia - - - + + + Audio Dźwięk - - + + Camera Kamera - - + + Debug Debug - - + + Storage Miejsce - - + + Web Sieć - - + + UI UI - + Controls Sterowanie - + Advanced Zaawansowane @@ -1007,278 +1007,278 @@ Would you like to ignore the error and continue? ConfigureEnhancements - + Form - + Renderer - + Internal Resolution - + Auto (Window Size) - + Native (400x240) - + 2x Native (800x480) - + 3x Native (1200x720) - + 4x Native (1600x960) - + 5x Native (2000x1200) - + 6x Native (2400x1440) - + 7x Native (2800x1680) - + 8x Native (3200x1920) - + 9x Native (3600x2160) - + 10x Native (4000x2400) - + Enable Linear Filtering - + Post-Processing Shader - + Texture Filter - + None - + Anime4K - + Bicubic - + ScaleForce - + xBRZ - + MMPX - + Stereoscopy - + Stereoscopic 3D Mode - + Off - - + + Side by Side - + Anaglyph - + Interlaced - + Reverse Interlaced - + Depth - + % - + Eye to Render in Monoscopic Mode - + Left Eye (default) - + Right Eye - + Layout - + Screen Layout: - + Default - + Single Screen - + Large Screen - + Separate Windows - + Hybrid Screen - + Swap Screens - + Rotate Screens Upright - + Large Screen Proportion: - + Background Color: - + Utility - + <html><head/><body><p>Replace textures with PNG files.</p><p>Textures are loaded from load/textures/[Title ID]/.</p></body></html> - + Use Custom Textures - + <html><head/><body><p>Dump textures to PNG files.</p><p>Textures are dumped to dump/textures/[Title ID]/.</p></body></html> - + Dump Textures - + <html><head/><body><p>Load all custom textures into memory on boot, instead of loading them when the game requires them.</p></body></html> - + Preload Custom Textures - + <html><head/><body><p>Load custom textures asynchronously with background threads to reduce loading stutter</p></body></html> - + Async Custom Texture Loading @@ -1286,136 +1286,136 @@ Would you like to ignore the error and continue? ConfigureGeneral - + Form Formularz - + General Ogólne - + Confirm exit while emulation is running Potwierdź wyjście, gdy emulator jest uruchomiony - + Pause emulation when in background Wstrzymaj emulowanie w tle - + Mute audio when in background - + Hide mouse on inactivity Ukryj mysz przy braku aktywności - + Enable Gamemode - + Updates Aktualizacje - + Check for updates on start Sprawdź dostępność aktualizacji przy uruchomieniu - + Silently auto update after closing Automatycznie aktualizuj w tle po zamknięciu - + Emulation Emulacja - + Region: Region: - + Auto-select Wybór automatyczny - + Use global emulation speed - + Set emulation speed: - + Emulation Speed: Szybkość emulowania: - + Screenshots - + Use global screenshot path - + Set screenshot path: - + Save Screenshots To - + ... - + Reset All Settings Zresetuj Wszystkie Ustawienia - - - - - + + + + + unthrottled - + Select Screenshot Directory - + Citra Citra - + Are you sure you want to <b>reset your settings</b> and close Citra? @@ -1423,157 +1423,157 @@ Would you like to ignore the error and continue? ConfigureGraphics - + Form Formularz - + Graphics - + API Settings - + Graphics API - + Software - + OpenGL - + Vulkan - + Physical Device - + OpenGL Renderer - + SPIR-V Shader Generation - + Renderer Renderer - + <html><head/><body><p>Use the selected graphics API to accelerate shader emulation.</p><p>Requires a relatively powerful GPU for better performance.</p></body></html> - + Enable Hardware Shader Aktywuj Cieniowanie Sprzętowe - + <html><head/><body><p>Correctly handle all edge cases in multiplication operation in shaders. </p><p>Some games requires this to be enabled for the hardware shader to render properly.</p><p>However this would reduce performance in most games.</p></body></html> <html><head/><body><p>Poprawnie obsługuje krawędzie w przypadku operacji mnożenia podczas cieniowania. </p><p>Niektóre gry mogą wymagać włączenia tego dla sprzętowego cieniowania, aby wyrenderować się poprawnie.</p><p>Może to negatywnie wpłynąć na wydajność w niektórych grach</p></body></html> - + Accurate Multiplication Dokładne Mnożenie - + <html><head/><body><p>Use the JIT engine instead of the interpreter for software shader emulation. </p><p>Enable this for better performance.</p></body></html> <html><head/><body><p>Użyj silnika JIT zamiast interpretera do programowego emulowania cieniowania. </p><p>Włącz to dla lepszej wydajności.</p></body></html> - + Enable Shader JIT Aktywuj Cieniowanie JIT - + <html><head/><body><p>Compile shaders using background threads to avoid shader compilation stutter. Expect temporary graphical glitches</p></body></html> - + Enable Async Shader Compilation - + <html><head/><body><p>Perform presentation on separate threads. Improves performance when using Vulkan in most games.</p></body></html> - + Enable Async Presentation - + Advanced Zaawansowane - + <html><head/><body><p>Overrides the sampling filter used by games. This can be useful in certain cases with poorly behaved games when upscaling. If unsure set this to Game Controlled</p></body></html> - + Texture Sampling - + Game Controlled - + Nearest Neighbor - + Linear - + <html><head/><body><p>Reduce stuttering by storing and loading generated shaders to disk.</p></body></html> - + Use Disk Shader Cache - + VSync prevents the screen from tearing, but some graphics cards have lower performance with VSync enabled. Keep it enabled if you don't notice a performance difference. - + Enable VSync Włącz V-Sync @@ -1581,63 +1581,63 @@ Would you like to ignore the error and continue? ConfigureHotkeys - + Hotkey Settings Ustawienia skrótów klawiszowych - + Double-click on a binding to change it. - + Clear All - + Restore Defaults - + Action Czynność - + Hotkey Skrót klawiszowy - - + + Conflicting Key Sequence - + The entered key sequence is already assigned to: %1 - + A 3ds button - + Restore Default - + Clear - + The default key sequence is already assigned to: %1 @@ -1645,307 +1645,307 @@ Would you like to ignore the error and continue? ConfigureInput - + ConfigureInput KonfigurujSterowanie - + Profile Profil - + New Nowy - + Delete Usuń - + Rename Zmień nazwę - + Face Buttons Przyciski - + Y: Y: - + X: X: - + B: B: - + A: A: - + Directional Pad Krzyżak - - - + + + Up: Góra: - - - + + + Down: Dół: - - - + + + Left: Lewo: - - - + + + Right: Prawo: - + Misc. Różne - + Start: Start: - + Select: Select: - + Home: Home: - + Power: - + Circle Mod: Tryb Analoga: - + GPIO14: GPIO14: - + Debug: Debug: - + Circle Pad Analog - - - + + + Set Analog Stick Ustaw Analog - - + + Deadzone: 0 Martwa strefa: 0 - + C-Stick C-Stick - + Shoulder Buttons Spusty: - + ZR: ZR: - + ZL: ZL: - + L: L: - + R: R: - + Motion / Touch... Gest / Dotyk... - + Auto Map - + Clear All Wyczyść Wszystko - + Restore Defaults Przywróć Domyślne - - - + + + Clear Wyczyść - - - + + + [not set] [nieustawione] - - - + + + Restore Default Przywróć Domyślne - - + + Information Informacja - + After pressing OK, first move your joystick horizontally, and then vertically. Po naciśnięciu OK, wykonaj ruch analogiem horyzontalnie, a następnie wertykalnie. - - + + Deadzone: %1% Martwa strefa: %1% - - + + Modifier Scale: %1% - + Warning - + Auto mapping failed. Your controller may not have a corresponding mapping - + After pressing OK, press any button on your joystick - + [press key] [naciśnij przycisk] - + Error! Błąd! - + You're using a key that's already bound. - + New Profile Nowy Profil - + Enter the name for the new profile. - + Delete Profile Usuń Profil - + Delete profile %1? Usunąć Profil %1? - + Rename Profile Zmień nazwę Profilu - + New name: Nowa nazwa: - + Duplicate profile name - + Profile name already exists. Please choose a different name. @@ -1953,198 +1953,198 @@ Would you like to ignore the error and continue? ConfigureMotionTouch - + Configure Motion / Touch Konfiguruj Gesty / Dotyk... - + Motion Gest - + Motion Provider: Źródło Gestów: - + Sensitivity: Czułość: - + Controller: - - - - - + + + + + Configure Skonfiguruj... - + Touch Dotyk - + Touch Provider: Źródło Dotyku: - + Calibration: Kalibracja: - + (100, 50) - (1800, 850) (100, 50) - (1800, 850) - + Use button mapping: - + CemuhookUDP Config Konfiguracja CemuhookUDP - + You may use any Cemuhook compatible UDP input source to provide motion and touch input. Możesz skorzystać z dowolnego zgodnego z CemuhookUDP aby obsłużyć dotyk i gesty. - + Server: Serwer: - + Port: Port: - + Pad: Kontroler: - + Pad 1 Kontroler 1 - + Pad 2 Kontroler 2 - + Pad 3 Kontroler 3 - + Pad 4 Kontroler 4 - + Learn More Dowiedz się więcej - - + + Test Przetestuj - + Mouse (Right Click) Mysz (Prawy Przycisk) - - + + CemuhookUDP CemuhookUDP - + SDL - + Emulator Window Okno Emulatora - + <a href='https://citra-emu.org/wiki/using-a-controller-or-android-phone-for-motion-or-touch-input'><span style="text-decoration: underline; color:#039be5;">Learn More</span></a> <a href='https://citra-emu.org/wiki/using-a-controller-or-android-phone-for-motion-or-touch-input'><span style="text-decoration: underline; color:#039be5;">Dowiedz się więcej</span></a> - + Information - + After pressing OK, press a button on the controller whose motion you want to track. - + [press button] - + Testing Testowanie - + Configuring Konfiguracja - + Test Successful Test Udany - + Successfully received data from the server. Poprawnie odebrano dane z serwera. - + Test Failed Test Nieudany - + Could not receive valid data from the server.<br>Please verify that the server is set up correctly and the address and port are correct. Nie udało się otrzymać danych z serwera.<br>Sprawdź proszę czy twój serwer jest prawidłowo ustawiony oraz czy podałeś prawidłowy adres i port. - + Citra Citra - + UDP Test or calibration configuration is in progress.<br>Please wait for them to finish. Test UDP lub kalibracja jest właśnie wykonywana. <br>Poczekaj, aż zostaną zakończone. @@ -2152,97 +2152,97 @@ Would you like to ignore the error and continue? ConfigurePerGame - + Dialog - + Info - + Size - + Format - + Name - + Filepath - + Title ID - + Reset Game Settings - + Use global configuration (%1) - + General - + System - + Enhancements - + Graphics - + Audio - + Debug - + Cheats - + Properties - + Citra - + Are you sure you want to <b>reset your settings for this game</b>? @@ -2250,65 +2250,65 @@ Would you like to ignore the error and continue? ConfigureStorage - + Form - + Storage - + Use Virtual SD - + Custom Storage - + Use Custom Storage - + NAND Directory - - + + Open - - + + NOTE: This does not move the contents of the previous directory to the new one. - - + + Change - + SDMC Directory - + Select NAND Directory - + Select SDMC Directory @@ -2316,1064 +2316,1064 @@ Would you like to ignore the error and continue? ConfigureSystem - + Form Formularz - + System Settings Ustawienia Systemowe - + Enable New 3DS mode - + Use LLE applets (if installed) - + Username Nazwa Użytkownika - + Birthday Urodziny - + January Styczeń - + February Luty - + March Marzec - + April Kwiecień - + May Maj - + June Czerwiec - + July Lipiec - + August Sierpień - + September Wrzesień - + October Październik - + November Listopad - + December Grudzień - + Language Język - + Note: this can be overridden when region setting is auto-select Uwaga: może zostać nadpisane jeśli region jest ustawiony na "Wybór automatyczny" - + Japanese (日本語) Japoński (日本語) - + English Angielski (English) - + French (français) Francuzki (français) - + German (Deutsch) Niemiecki (Deutsch) - + Italian (italiano) Włoski (italiano) - + Spanish (español) Hiszpański (español) - + Simplified Chinese (简体中文) Chiński Uproszczony (简体中文) - + Korean (한국어) Koreański (한국어) - + Dutch (Nederlands) Niderlandzki (Nederlands) - + Portuguese (português) Portugalski (português) - + Russian (Русский) Rosyjski (Русский) - + Traditional Chinese (正體中文) Chiński Tradycyjny (正體中文) - + Sound output mode Tryb wyjścia dźwięku - + Mono Mono - + Stereo Stereo - + Surround Surround - + Country Kraj - + Clock Zegar - + System Clock Zegar Systemowy - + Fixed Time Stały Czas - + Startup time Czas Uruchomienia - + yyyy-MM-ddTHH:mm:ss yyyy-MM-ddTHH:mm:ss - + Offset time - + days - + HH:mm:ss - + Initial System Ticks - + Random - + Fixed - + Initial System Ticks Override - + Play Coins: Monety Gry: - + Run System Setup when Home Menu is launched - + Console ID: ID konsoli: - + Regenerate Regeneruj - + 3GX Plugin Loader: - + Enable 3GX plugin loader - + Allow games to change plugin loader state - + Download System Files from Nitendo servers - + Minimal - + Old 3DS - + New 3DS - + JPN - + USA - + EUR - + AUS - + CHN - + KOR - + TWN - + Download - + System settings are available only when game is not running. Ustawienia systemowe są dostępne tylko wtedy, gdy gra nie jest uruchomiona - + Japan Japonia - + Anguilla Anguilla - + Antigua and Barbuda Antigua i Barbuda - + Argentina Argentyna - + Aruba Aruba - + Bahamas Bahamy - + Barbados Barbados - + Belize Belize - + Bolivia Boliwia - + Brazil Brazylia - + British Virgin Islands Brytyjskie Wyspy Dziewicze - + Canada Kanada - + Cayman Islands Kajmany - + Chile Chile - + Colombia Kolumbia - + Costa Rica Kostaryka - + Dominica Dominikana - + Dominican Republic Republika Dominikany - + Ecuador Ekwador - + El Salvador Salwador - + French Guiana Guana Francuska - + Grenada Grenada - + Guadeloupe Gwadelupa - + Guatemala Guatemala - + Guyana Gujana - + Haiti Haiti - + Honduras Honduras - + Jamaica Jamajka - + Martinique Martynika - + Mexico Meksyk - + Montserrat Montserrat - + Netherlands Antilles Antyle Holenderskie - + Nicaragua Nikaragua - + Panama Panama - + Paraguay Portugalia - + Peru Peru - + Saint Kitts and Nevis Saint Kitts i Nevis - + Saint Lucia Saint Lucia - + Saint Vincent and the Grenadines Saint Vincent i Grenadyny - + Suriname Sirunam - + Trinidad and Tobago Trynidad i Tobago - + Turks and Caicos Islands Turks i Caicos - + United States Stany Zjednoczone - + Uruguay Urugwaj - + US Virgin Islands Wyspy Dziewicze Stanów Zjednoczonych - + Venezuela Wenezuela - + Albania Albania - + Australia Australia - + Austria Austria - + Belgium Belgia - + Bosnia and Herzegovina Bośnia i Hercegowina - + Botswana Botswana - + Bulgaria Bułgaria - + Croatia Chorwacja - + Cyprus Cypr - + Czech Republic Republika Czeska - + Denmark Dania - + Estonia Estonia - + Finland Finlandia - + France Francja - + Germany Niemcy - + Greece Grecja - + Hungary Węgry - + Iceland Islandia - + Ireland Irlandia - + Italy Włochy - + Latvia Łotwa - + Lesotho Lesotho - + Liechtenstein Liechtenstein - + Lithuania Litwa - + Luxembourg Luksemburg - + Macedonia Macedonia - + Malta Malta - + Montenegro Montenegro - + Mozambique Mozambik - + Namibia Namibia - + Netherlands Holandia - + New Zealand Nowa Zelandia - + Norway Norwegia - + Poland Polska - + Portugal Portugalia - + Romania Rumunia - + Russia Rosja - + Serbia Serbia - + Slovakia Słowacja - + Slovenia Słowenia - + South Africa Południowa Afryka - + Spain Hiszpania - + Swaziland Suazi - + Sweden Szwecja - + Switzerland Szwajcaria - + Turkey Turcja - + United Kingdom Wielka Brytania - + Zambia Zambia - + Zimbabwe Zimbabwe - + Azerbaijan Azerbejdżan - + Mauritania Mauritania - + Mali Mali - + Niger Nigeria - + Chad Czad - + Sudan Sudan - + Eritrea Erytrea - + Djibouti Dżibuti - + Somalia Somalia - + Andorra Andora - + Gibraltar Gibraltar - + Guernsey Guernsey - + Isle of Man Wyspa Man - + Jersey Jersey - + Monaco Monako - + Taiwan Tajwan - + South Korea Korea Południowa - + Hong Kong Hong Kong - + Macau Makau - + Indonesia Indonezja - + Singapore Singapur - + Thailand Tajlandia - + Philippines Filipiny - + Malaysia Malezja - + China Chiny - + United Arab Emirates Zjednoczone Emiraty Arabskie - + India Indie - + Egypt Egipt - + Oman Oman - + Qatar Katar - + Kuwait Kuwejt - + Saudi Arabia Arabia Saudyjska - + Syria Syria - + Bahrain Bahrajn - + Jordan Jordania - + San Marino San Marino - + Vatican City Watykan - + Bermuda Bermudy - + Download System Files from Nintendo servers - + Citra is missing keys to download system files. <br><a href='https://citra-emu.org/wiki/aes-keys/'><span style="text-decoration: underline; color:#039be5;">How to get keys?</span></a> - - + + Console ID: 0x%1 ID konsoli: 0x%1 - + This will replace your current virtual 3DS with a new one. Your current virtual 3DS will not be recoverable. This might have unexpected effects in games. This might fail, if you use an outdated config savegame. Continue? To zastąpi twojego obecnego wirtualnego 3DS. Odzyskanie twojego obecnego 3DS będzie niemożliwe. To może spowodować niespodziewane efekty w grach. Operacja może się nie powieść jeżeli korzystasz z przestarzałej konfiguracji zapisów gier. Kontynuować? - + Warning Ostrzeżenie - + Downloading files... - + Cancel - - + + Citra - + Downloading system files failed. - + Successfully downloaded system files. @@ -3381,90 +3381,90 @@ Would you like to ignore the error and continue? ConfigureTouchFromButton - + Configure Touchscreen Mappings - + Mapping: - + New Nowy - + Delete Usuń - + Rename Zmień nazwę - + Click the bottom area to add a point, then press a button to bind. Drag points to change position, or double-click table cells to edit values. - + Delete Point - + Button Przycisk - + X X axis - + Y Y axis - + New Profile Nowy Profil - + Enter the name for the new profile. Wprowadź nazwę dla nowego profilu - + Delete Profile Usuń Profil - + Delete profile %1? - + Rename Profile Zmień nazwę Profilu - + New name: Nowa nazwa: - + [press key] @@ -3472,113 +3472,113 @@ Drag points to change position, or double-click table cells to edit values. ConfigureUi - + Form Formularz - + General Ogólne - + Note: Changing language will apply your configuration. - + Interface language: Język Interfejsu - + Theme: Motyw: - + Game List Lista Gier - + Icon Size: Rozmiar Ikony: - - + + None Brak - + Small (24x24) Mała (24x24) - + Large (48x48) Duża (48x48) - + Row 1 Text: - - + + File Name Nazwa Pliku - - + + Full Path Pełna Ścieżka - - + + Title Name (short) - - + + Title ID ID Tytułu - - + + Title Name (long) - + Row 2 Text: - + Hide Titles without Icon - + Single Line Mode - + <System> - + English Angielski (English) @@ -3586,135 +3586,135 @@ Drag points to change position, or double-click table cells to edit values. ConfigureWeb - + Form Formularz - + Citra Web Service Usługa Sieciowa Citra - + By providing your username and token, you agree to allow Citra to collect additional usage data, which may include user identifying information. Poprzez wprowadzenia nazwy użytkownika i tokenu, wyrażasz zgodę na wysłanie dodatkowych danych do Citra. Dane te mogą zawierać informacje identyfikujące użytkownika. - - + + Verify Zweryfikuj - + Sign up Zarejestruj się - + Token: Token: - + Username: Nazwa Użytkownika: - + What is my token? Czym jest mój token? - + Web Service configuration can only be changed when a public room isn't being hosted. - + Telemetry Telemetria - + Share anonymous usage data with the Citra team Udostępnij anonimowe dane użytkowania zespołowi Citra - + Learn more Dowiedz się więcej - + Telemetry ID: ID Telemetrii: - + Regenerate Regeneruj - + Discord Presence Widoczność na Discordzie - + Show Current Game in your Discord Status Pokaż obecnie włączoną grę w statusie na Discrodzie - + <a href='https://citra-emu.org/entry/telemetry-and-why-thats-a-good-thing/'><span style="text-decoration: underline; color:#039be5;">Learn more</span></a> <a href='https://citra-emu.org/entry/telemetry-and-why-thats-a-good-thing/'><span style="text-decoration: underline; color:#039be5;">Dowiedz się więcej</span></a> - + <a href='https://profile.citra-emu.org/'><span style="text-decoration: underline; color:#039be5;">Sign up</span></a> - + <a href='https://citra-emu.org/wiki/citra-web-service/'><span style="text-decoration: underline; color:#039be5;">What is my token?</span></a> <a href='https://citra-emu.org/wiki/citra-web-service/'><span style="text-decoration: underline; color:#039be5;">Czym jest mój token?</span></a> - - + + Unspecified - - + + Telemetry ID: 0x%1 ID Telemetrii: 0x%1 - + Token not verified Token nie zweryfikowany - + Token was not verified. The change to your token has not been saved. - + Verifying... Weryfikowanie... - + Verification failed Weryfikacja nieudana - + Verification failed. Check that you have entered your token correctly, and that your internet connection is working. @@ -3722,47 +3722,47 @@ Drag points to change position, or double-click table cells to edit values. DirectConnect - + Direct Connect Połączenie bezpośrednie - + Server Address - + <html><head/><body><p>Server address of the host</p></body></html> - + Port Port - + <html><head/><body><p>Port number the host is listening on</p></body></html> <html><head/><body><p>Numer portu, na którym nasłuchuje gospodarz</p></body></html> - + 24872 24872 - + Nickname Pseudonim - + Password Hasło - + Connect Połącz @@ -3770,12 +3770,12 @@ Drag points to change position, or double-click table cells to edit values. DirectConnectWindow - + Connecting Łączenie - + Connect Połączono @@ -3783,110 +3783,110 @@ Drag points to change position, or double-click table cells to edit values. DumpingDialog - + Dump Video - + Output - + Format: - - - + + + Options: - - - - + + + + ... - + Path: - + Video - - + + Encoder: - - + + Bitrate: - - + + bps - + Audio - - + + Citra - + Please specify the output path. - + output formats - + video encoders - + audio encoders - + Could not find any available %1. Please check your FFmpeg installation used for compilation. - - - - + + + + %1 (%2) - + Select Video Output Path @@ -3894,417 +3894,417 @@ Please check your FFmpeg installation used for compilation. GMainWindow - + <a href='https://citra-emu.org/entry/telemetry-and-why-thats-a-good-thing/'>Anonymous data is collected</a> to help improve Citra. <br/><br/>Would you like to share your usage data with us? <a href='https://citra-emu.org/entry/telemetry-and-why-thats-a-good-thing/'>Anonimowe dane są zbierane</a> w celu wsparcia rozwoju Citry. <br/><br/>Czy chciałbyś się z nami podzielić danymi użytkowania? - + Telemetry Telemetria - + No Suitable Vulkan Devices Detected - + Vulkan initialization failed during boot.<br/>Your GPU may not support Vulkan 1.1, or you do not have the latest graphics driver. - - + + Current emulation speed. Values higher or lower than 100% indicate emulation is running faster or slower than a 3DS. Obecna szybkość emulacji. Wartości większe lub mniejsze niż 100 % oznaczają, że emulacja jest szybsza lub wolniejsza niż 3DS - - + + How many frames per second the game is currently displaying. This will vary from game to game and scene to scene. Jak wiele klatek na sekundę gra wyświetla w tej chwili. Ta wartość będzie się różniła między grami, jak również między scenami w grze. - - + + Time taken to emulate a 3DS frame, not counting framelimiting or v-sync. For full-speed emulation this should be at most 16.67 ms. Czas potrzebny do emulacji klatki 3DS, nie zawiera limitowania klatek oraz v-sync. Dla pełnej prędkości emulacji, wartość nie powinna przekraczać 16.67 ms. - + Clear Recent Files Wyczyść Ostatnio Używane - + &Continue - + &Pause - + Update Available Aktualizacja dostępna - + An update is available. Would you like to install it now? Aktualizacja jest dostępna. Chciałbyś ją teraz zainstalować? - + No Update Found Nie znaleziono aktualizacji - + No update is found. Nie znaleziono aktualizacji - + Citra is running a game TRANSLATORS: This string is shown to the user to explain why Citra needs to prevent the computer from sleeping - - + + Invalid ROM Format Nieprawidłowy format ROMu - - + + Your ROM format is not supported.<br/>Please follow the guides to redump your <a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>game cartridges</a> or <a href='https://citra-emu.org/wiki/dumping-installed-titles/'>installed titles</a>. Format Twojego ROMu nie jest wspierany.<br/>Wykonaj ROM ponownie korzystając z naszych poradników <a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>gry na kartridżach</a> lub <a href='https://citra-emu.org/wiki/dumping-installed-titles/'>tytuły zainstalowane</a>. - + ROM Corrupted ROM jest uszkodzony - + Your ROM is corrupted. <br/>Please follow the guides to redump your <a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>game cartridges</a> or <a href='https://citra-emu.org/wiki/dumping-installed-titles/'>installed titles</a>. Twój ROM jest uszkodzony.<br/>Wykonaj ROM ponownie korzystając z naszych poradników <a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>gry na kartridżach</a> lub <a href='https://citra-emu.org/wiki/dumping-installed-titles/'>tytuły zainstalowane</a>. - + ROM Encrypted ROM jest zaszyfrowany - + Your ROM is encrypted. <br/>Please follow the guides to redump your <a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>game cartridges</a> or <a href='https://citra-emu.org/wiki/dumping-installed-titles/'>installed titles</a>. Twój ROM jest zaszyfrowany.<br/>Wykonaj ROM ponownie korzystając z naszych poradników <a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>gry na kartridżach</a> lub <a href='https://citra-emu.org/wiki/dumping-installed-titles/'>tytuły zainstalowane</a>. - + Unsupported ROM - + GBA Virtual Console ROMs are not supported by Citra. - + Error while loading ROM! Błąd podczas ładowania ROM'u! - + An unknown error occurred. Please see the log for more details. - + CIA must be installed before usage - + Before using this CIA, you must install it. Do you want to install it now? - - + + Slot %1 - + Slot %1 - %2 %3 - + Error Opening %1 Folder Błąd podczas otwierania folderu %1 - - + + Folder does not exist! Folder nie istnieje! - + Dumping... - - + + Cancel Anuluj - - - - - - - - - + + + + + + + + + Citra Citra - + Could not dump base RomFS. Refer to the log for details. - + Error Opening %1 Błąd podczas otwierania %1 - + Select Directory Wybierz Folder - + Properties - + The game properties could not be loaded. - + 3DS Executable (%1);;All Files (*.*) %1 is an identifier for the 3DS executable file extensions. - + Load File Załaduj Plik - + Load Files Załaduj Pliki - + 3DS Installation File (*.CIA*) Plik Instalacyjny 3DS'a (*.CIA*) - + All Files (*.*) Wszystkie Pliki (*.*) - + %1 has been installed successfully. %1 został poprawnie zainstalowany. - + Unable to open File Nie można otworzyć Pliku - + Could not open %1 Nie można otworzyć %1 - + Installation aborted Instalacja przerwana - + The installation of %1 was aborted. Please see the log for more details Instalacja %1 została przerwana. Sprawdź logi, aby uzyskać więcej informacji. - + Invalid File Niepoprawny Plik - + %1 is not a valid CIA %1 nie jest prawidłowym plikiem CIA - + Encrypted File Plik Zaszyfrowany - + %1 must be decrypted before being used with Citra. A real 3DS is required. %1 musi zostać zdeszyfrowany przed użyciem w Citra. Prawdziwy 3DS jest wymagany. - + Unable to find File - + Could not find %1 - + Uninstalling '%1'... - + Failed to uninstall '%1'. - + Successfully uninstalled '%1'. - + File not found Nie znaleziono pliku - + File "%1" not found Nie znaleziono pliku "%1" - + Missing Citra Account Brakuje konta Citra - + You must link your Citra account to submit test cases.<br/>Go to Emulation &gt; Configure... &gt; Web to do so. Musisz podłączyć Citrę do swojego konta, aby móc zgłosić przypadek testowy.<br/>Przejdź do Emulacja &gt; Skonfiguruj... &gt; Sieć, aby tego dokonać. - + Savestates - + Warning: Savestates are NOT a replacement for in-game saves, and are not meant to be reliable. Use at your own risk! - - - + + + Error opening amiibo data file - + A tag is already in use. - + Game is not looking for amiibos. - + Amiibo File (%1);; All Files (*.*) - + Load Amiibo Załaduj Amiibo - + Unable to open amiibo file "%1" for reading. - + Record Movie Nagraj Film - + Movie recording cancelled. Nagrywanie zostało przerwane. - - + + Movie Saved Zapisano Film - - + + The movie is successfully saved. Film został poprawnie zapisany. - + Invalid Screenshot Directory - + Cannot create specified screenshot directory. Screenshot path is set back to its default value. - + Could not load video dumper - + FFmpeg could not be loaded. Make sure you have a compatible version installed. To install FFmpeg to Citra, press Open and select your FFmpeg directory. @@ -4313,158 +4313,158 @@ To view a guide on how to install FFmpeg, press Help. - + Select FFmpeg Directory - + The provided FFmpeg directory is missing %1. Please make sure the correct directory was selected. - + FFmpeg has been sucessfully installed. - + Installation of FFmpeg failed. Check the log file for details. - + Could not start video dumping.<br>Refer to the log for details. - + Recording %1 - + Playing %1 / %2 - + Movie Finished - + Speed: %1% Prędkość: %1% - + Speed: %1% / %2% Prędkość: %1% / %2% - + Game: %1 FPS Gra: %1 FPS - + Frame: %1 ms Klatka: %1 ms - + VOLUME: MUTE - + VOLUME: %1% Volume percentage (e.g. 50%) - + %1 is missing. Please <a href='https://citra-emu.org/wiki/dumping-system-archives-and-the-shared-fonts-from-a-3ds-console/'>dump your system archives</a>.<br/>Continuing emulation may result in crashes and bugs. Brakuje %1. <a href='https://citra-emu.org/wiki/dumping-system-archives-and-the-shared-fonts-from-a-3ds-console/'>Zgraj swoje archiva systemowe</a>.<br/>Kontynuowanie emulacji może wiązać się z błędami oraz awariami gry. - + A system archive - + System Archive Not Found Archiwum Systemowe nie zostało odnalezione - + System Archive Missing - + Save/load Error - + Fatal Error Błąd Krytyczny - + A fatal error occurred. <a href='https://community.citra-emu.org/t/how-to-upload-the-log-file/296'>Check the log</a> for details.<br/>Continuing emulation may result in crashes and bugs. - + Fatal Error encountered - + Continue Kontynuuj - + Quit Game - + OK - + Would you like to exit now? Czy chcesz teraz wyjść? - + The game is still running. Would you like to stop emulation? Gra jest nadal uruchomiona. Czy chcesz przerwać emulację? - + Playback Completed Odtwarzanie Zakończone - + Movie playback completed. Odtwarzanie filmu zostało zakończone. - + Primary Window - + Secondary Window @@ -4472,22 +4472,22 @@ To view a guide on how to install FFmpeg, press Help. GPUCommandListModel - + Command Name Nazwa Polecenia - + Register Rejestr - + Mask Maska - + New Value Nowa Wartość @@ -4495,23 +4495,23 @@ To view a guide on how to install FFmpeg, press Help. GPUCommandListWidget - + Pica Command List Lista Poleceń Pica - - + + Start Tracing Zacznij Śledzić - + Copy All Skopiuj Wszystko - + Finish Tracing Zakończ Śledzenie @@ -4519,7 +4519,7 @@ To view a guide on how to install FFmpeg, press Help. GPUCommandStreamWidget - + Graphics Debugger Debuger Grafiki @@ -4527,42 +4527,42 @@ To view a guide on how to install FFmpeg, press Help. GRenderWindow - + OpenGL not available! - + OpenGL shared contexts are not supported. - + Error while initializing OpenGL! - + Your GPU may not support OpenGL, or you do not have the latest graphics driver. - + Error while initializing OpenGL 4.3! - + Your GPU may not support OpenGL 4.3, or you do not have the latest graphics driver.<br><br>GL Renderer:<br>%1 - + Error while initializing OpenGL ES 3.2! - + Your GPU may not support OpenGL ES 3.2, or you do not have the latest graphics driver.<br><br>GL Renderer:<br>%1 @@ -4570,193 +4570,193 @@ To view a guide on how to install FFmpeg, press Help. GameList - - + + Compatibility Kompatybilność - - + + Region Region - - + + File type Typ pliku - - + + Size Rozmiar - + Open Save Data Location Otwórz Lokalizację Zapisów Gry - + Open Extra Data Location Otwórz Dodatkową Lokalizację Aplikacji - + Open Application Location Otwórz Lokalizację Aplikacji - + Open Update Data Location Otwórz Lokalizację Aktualizacji - + Open DLC Data Location - + Open Texture Dump Location - + Open Custom Texture Location - + Open Mods Location - + Dump RomFS - + Disk Shader Cache - + Open Shader Cache Location - + Delete OpenGL Shader Cache - + Uninstall - + Everything - + Game - + Update - + DLC - + Navigate to GameDB entry Przejdź do wpisu w bazie gier - + Properties - - - - + + + + Citra - + Are you sure you want to completely uninstall '%1'? This will delete the game if installed, as well as any installed updates or DLC. - - + + %1 (Update) - - + + %1 (DLC) - + Are you sure you want to uninstall '%1'? - + Are you sure you want to uninstall the update for '%1'? - + Are you sure you want to uninstall all DLC for '%1'? - + Scan Subfolders Przeszukaj Podkatalogi - + Remove Game Directory Usuń Katalog Gier - + Move Up - + Move Down - + Open Directory Location Otwórz lokalizację katalogu - + Name Nazwa @@ -4764,78 +4764,78 @@ This will delete the game if installed, as well as any installed updates or DLC. GameListItemCompat - + Perfect Idealna - + Game functions flawless with no audio or graphical glitches, all tested functionality works as intended without any workarounds needed. Gra działa bez zarzutu, bez błędów graficznych lub dźwiękowych. Nie potrzebuje żadnych obejść ani poprawek. - + Great Świetna - + Game functions with minor graphical or audio glitches and is playable from start to finish. May require some workarounds. Gra działa z pomniejszymi błędami dźwiękowymi lub graficznymi, jest grywalna od początku do końca. Może wymagać kilku obejść/poprawek. - + Okay W porządku - + Game functions with major graphical or audio glitches, but game is playable from start to finish with workarounds. Gra działa z większymi błędami dźwiękowymi lub graficznymi, ale jest grywalna od początku do końca. Może wymagać kilku obejść/poprawek. - + Bad Zła - + Game functions, but with major graphical or audio glitches. Unable to progress in specific areas due to glitches even with workarounds. Gra działa z większymi błędami dźwiękowymi lub graficznymi. Niemożliwe jest przejście konkretnych miejsc nawet z obejściami. - + Intro/Menu Intro/Menu - + Game is completely unplayable due to major graphical or audio glitches. Unable to progress past the Start Screen. Gra jest całkowicie niegrywalna z uwagi na poważne błędy graficzne lub dźwiękowe. Działa jedynie ekran startowy. - + Won't Boot Nie uruchamia się - + The game crashes when attempting to startup. Gra wysypuje się przy próbie uruchomienia - + Not Tested Nieprzetestowana - + The game has not yet been tested. Gra nie została jeszcze przetestowana. @@ -4843,7 +4843,7 @@ Screen. GameListPlaceholder - + Double-click to add a new folder to the game list @@ -4851,27 +4851,27 @@ Screen. GameListSearchField - + of z - + result wynik - + results wyniki - + Filter: Filtr: - + Enter pattern to filter Wprowadź wzór filtra @@ -4879,47 +4879,47 @@ Screen. GameRegion - + Japan Japonia - + North America Ameryka Północna - + Europe Europa - + Australia Australia - + China Chiny - + Korea Korea - + Taiwan Tajwan - + Invalid region Nieprawidłowy region - + Region free Bez ograniczenia regionalnego @@ -4927,23 +4927,23 @@ Screen. GraphicsBreakPointsWidget - + Pica Breakpoints Punkty przerwania Pica - - + + Emulation running Emulacja uruchomiona - + Resume Wznów - + Emulation halted at breakpoint Emulacja zatrzymana w punkcie przerwania @@ -4951,146 +4951,146 @@ Screen. GraphicsSurfaceWidget - + Pica Surface Viewer Podgląd Powierzchni Pica - + Color Buffer Bufer Koloru - + Depth Buffer Bufer Głębi - + Stencil Buffer Bufor Szablonu - + Texture 0 Tekstura 0 - + Texture 1 Tekstura 1 - + Texture 2 Tekstura 2 - + Custom Własny - + Unknown Nieznany - + Save Zapisz - + Source: Źródło: - + Physical Address: Adres Fizyczny: - + Width: Szerokość: - + Height: Wysokość: - + Format: Format: - + X: X: - + Y: Y: - + Pixel out of bounds Pixel nie związany - + (unable to access pixel data) (nie można uzyskać dostępu do danych pixali) - + (invalid surface address) (nieprawidłowy adres powierzchni) - + (unknown surface format) (nieznany format powierzchni) - + Portable Network Graphic (*.png) Portable Network Graphic (*.png) - + Binary data (*.bin) Dane Binarne (*.bin) - + Save Surface Zapisz Powierzchnię - - - - + + + + Error Błąd - - + + Failed to open file '%1' - + Failed to save surface data to file '%1' - + Failed to completely write surface data to file. The saved data will likely be corrupt. @@ -5098,42 +5098,42 @@ Screen. GraphicsTracingWidget - + CiTrace Recorder Nagrywarka CiTrace - + Start Recording Zacznij Nagrywanie - + Stop and Save Zatrzymaj i Zapisz - + Abort Recording Przerwij Nagrywanie - + Save CiTrace Zapisz CiTrace - + CiTrace File (*.ctf) CiTrace File (*.ctf) - + CiTracing still active CiTracing jest nadal aktywne - + A CiTrace is still being recorded. Do you want to save it? If not, all recorded data will be discarded. CiTrace nadal nagrywa. Chcesz zapisać? Jeśli nie, wszystkie nagrane dane zostaną utracone. @@ -5141,17 +5141,17 @@ Screen. GraphicsVertexShaderModel - + Offset Offset - + Raw Surowy - + Disassembly Demontaż @@ -5159,127 +5159,127 @@ Screen. GraphicsVertexShaderWidget - + Save Shader Dump Zapisz Zrzut Cieniowania - + Shader Binary (*.shbin) Shader Binary (*.shbin) - + Pica Vertex Shader - + (data only available at vertex shader invocation breakpoints) (dane dostępne tylko podczas wywołań punktów przerwania vertexu cieniowania) - + Dump Zrzut - + Input Data Dane Wejściowe - + Attribute %1 Atrybut %1 - + Cycle Index: Indeks Cyklu: - + SRC1: %1, %2, %3, %4 SRC1: %1, %2, %3, %4 - + SRC2: %1, %2, %3, %4 SRC2: %1, %2, %3, %4 - + SRC3: %1, %2, %3, %4 SRC3: %1, %2, %3, %4 - + DEST_IN: %1, %2, %3, %4 DEST_IN: %1, %2, %3, %4 - + DEST_OUT: %1, %2, %3, %4 DEST_OUT: %1, %2, %3, %4 - + Address Registers: %1, %2 Adresy Rejestrów: %1, %2 - + Compare Result: %1, %2 Porównanie Wyników: %1, %2 - + Static Condition: %1 Warunek Statyczny: %1 - + Dynamic Conditions: %1, %2 Warunki Dynamiczne: %1, %2 - + Loop Parameters: %1 (repeats), %2 (initializer), %3 (increment), %4 Parametry Pętli: %1 (powtórzeń), %2 (inicjacji), %3 (inkrementacji), %4 - + Instruction offset: 0x%1 Przesunięcie Instrukcji: 0x%1 - + -> 0x%2 -> 0x%2 - + (last instruction) (ostatnia instrukcja) @@ -5287,67 +5287,67 @@ Screen. HostRoom - + Create Room Stwórz Pokój - + Room Name Nazwa Pokoju - + Preferred Game Preferowana Gra - + Max Players Maks. Graczy - + Username Nazwa Użytkownika - + (Leave blank for open game) (Pozostaw puste dla otwartej gry) - + Password Hasło - + Port Port - + Room Description Opis Pokoju - + Load Previous Ban List - + Public Publiczny - + Unlisted Niewidoczny - + Host Room Stwórz Pokój @@ -5355,12 +5355,12 @@ Screen. HostRoomWindow - + Error Błąd - + Failed to announce the room to the public lobby. In order to host a room publicly, you must have a valid Citra account configured in Emulation -> Configure -> Web. If you do not want to publish a room in the public lobby, then select Unlisted instead. Debug Message: @@ -5369,47 +5369,47 @@ Debug Message: IPCRecorder - + IPC Recorder Nagrywarka IPC - + Enable Recording Zacznij Nagrywanie - + Filter: Filtr: - + Leave empty to disable filtering - + # # - + Status Stan - + Service - + Function Funkcja - + Clear Wyczyść @@ -5417,47 +5417,47 @@ Debug Message: IPCRecorderWidget - + Invalid Nieprawidłowy - + Sent Wysłane - + Handling - + Success Sukces - + Error Błąd - + HLE Unimplemented HLE nie wprowadzony - + HLE HLE - + LLE LLE - + Unknown Nieznany @@ -5465,7 +5465,7 @@ Debug Message: LLEServiceModulesWidget - + Toggle LLE Service Modules Przełącz Moduł Usług LLE @@ -5473,53 +5473,53 @@ Debug Message: LoadingScreen - + Loading Shaders 387 / 1628 - + Loading Shaders %v out of %m - + Estimated Time 5m 4s - + Loading... Ładowanie... - + Preloading Textures %1 / %2 - + Preparing Shaders %1 / %2 - + Loading Shaders %1 / %2 - + Launching... Uruchamianie... - + Now Loading %1 - + Estimated Time %1 Oszacowany Czas %1 @@ -5527,83 +5527,83 @@ Debug Message: Lobby - + Public Room Browser Przeglądarka Publicznych Pokoi - - + + Nickname Pseudonim - + Filters Filtry - + Search Wyszukaj - + Games I Own Gry, które posiadam - + Hide Empty Rooms - + Hide Full Rooms Ukryj pełne pokoje - + Refresh Lobby Odśwież Lobby - + Password Required to Join Wymagane Hasło, aby Dołączyć - + Password: Hasło: - + Room Name Nazwa Pokoju - + Preferred Game Preferowana Gra - + Host Gospodarz - + Players Graczy - + Refreshing Odświeżanie - + Refresh List Odśwież Listę @@ -5611,362 +5611,362 @@ Debug Message: MainWindow - + Citra Citra - + &File &Plik - + Boot Home Menu - + Recent Files Ostatnio Używane - + Amiibo Amiibo - + &Emulation &Emulacja - + Save State Zapisz Stan - + Load State Wczytaj Stan - + &View &Widok - + Debugging Debugowanie - + Screen Layout Układ Ekranów: - + Multiplayer Multiplayer - + Tools Narzędzia - + Movie Film - + Frame Advance - + &Help &Pomoc - + Load File... Załaduj Plik... - + Install CIA... Instaluj CIA... - + JPN - + USA - + EUR - + AUS - + CHN - + KOR - + TWN - + E&xit &Wyjście - + &Pause &Pauza - + &Stop &Zatrzymaj - + Save Zapisz - + Load Wczytaj - + FAQ FAQ - + About Citra O Citra - + Single Window Mode Tryb Pojedynczego Okna - + Save to Oldest Slot - + Load from Newest Slot - + Configure... Skonfiguruj... - + Display Dock Widget Headers Wyświetl Nagłówki Widgetów. - + Show Filter Bar Pokaż Pasek Filtrowania - + Show Status Bar Pokaż Pasek Statusu - + Create Pica Surface Viewer Stwórz Podgląd Powierzchni Pica - + Record... - + Play... - + Close - + Save without Closing - + Read-Only Mode - + Enable Frame Advancing - + Advance Frame - + Capture Screenshot - + Dump Video - + Browse Public Game Lobby Przeglądaj Publiczne Pokoje - + Create Room Stwórz Pokój - + Leave Room Opóść Pokój - + Direct Connect to Room Bezpośrednie Połączenie z Pokojem - + Show Current Room Pokaż Aktualny Pokój - + Fullscreen Pełny Ekran - + Modify Citra Install Zmodyfikuj instalację Citry - + Opens the maintenance tool to modify your Citra installation Otwiera narzędzie do modyfikacji twojej instalacji Citry - + Default Domyślny - + Single Screen Pojedynczy Ekran - + Large Screen Duży Ekran - + Hybrid Screen - + Side by Side Obok Siebie - + Separate Windows - + Swap Screens Zamień Ekrany - + Rotate Upright - + Check for Updates Sprawdź dostępność Aktualizacji - + Report Compatibility Zgłoś Kompatybilność - + Restart Zrestartuj - + Load... Wczytaj... - + Remove Usuń - + Open Citra Folder Otwórz folder Citra - + Configure Current Game... @@ -5974,7 +5974,7 @@ Debug Message: MicroProfileDialog - + MicroProfile MicroProfile @@ -5982,48 +5982,48 @@ Debug Message: ModerationDialog - + Moderation - + Ban List Lista Banów - - + + Refreshing Odświeżanie - + Unban Odbanuj - + Subject Obiekt - + Type Typ - + Forum Username - + IP Address Adres IP - + Refresh Odśwież @@ -6031,91 +6031,91 @@ Debug Message: MoviePlayDialog - - + + Play Movie - + File: - + ... - + Info - + Game: - + Author: - + Rerecord Count: - + Length: - + Current running game will be stopped. - + <br>Current recording will be discarded. - + Citra TAS Movie (*.ctm) - + Invalid movie file. - + Revision dismatch, playback may desync. - + Indicated length is incorrect, file may be corrupted. - - - - + + + + (unknown) - + Game used in this movie is not in game list. - + (>1 day) @@ -6123,43 +6123,43 @@ Debug Message: MovieRecordDialog - - + + Record Movie - + File: - + ... - + Author: - + Current running game will be restarted. - + <br>Current recording will be discarded. - + Recording will start once you boot a game. - + Citra TAS Movie (*.ctm) @@ -6167,43 +6167,43 @@ Debug Message: MultiplayerState - - + + Current connection status Obecny status połączenia - - + + Not Connected. Click here to find a room! Nie Połączono. Kliknij tutaj, aby znaleźć pokój! - - - + + + Connected Połączono - - + + Not Connected Nie Połączono - + Error Błąd - + Failed to update the room information. Please check your Internet connection and try hosting the room again. Debug Message: - + New Messages Received @@ -6211,22 +6211,22 @@ Debug Message: NetworkMessage - + Leave Room Opóść Pokój - + You are about to close the room. Any network connections will be closed. Zamierzasz zamknąć pokój. Połączenie sieciowe zostanie zamknięte. - + Disconnect Rozłącz - + You are about to leave the room. Any network connections will be closed. Zamierzasz opuścić pokój. Połączenie sieciowe zostanie zamknięte. @@ -6234,110 +6234,110 @@ Debug Message: NetworkMessage::ErrorManager - + Username is not valid. Must be 4 to 20 alphanumeric characters. - + Room name is not valid. Must be 4 to 20 alphanumeric characters. - + Username is already in use or not valid. Please choose another. - + IP is not a valid IPv4 address. - + Port must be a number between 0 to 65535. - + You must choose a Preferred Game to host a room. If you do not have any games in your game list yet, add a game folder by clicking on the plus icon in the game list. - + Unable to find an internet connection. Check your internet settings. - + Unable to connect to the host. Verify that the connection settings are correct. If you still cannot connect, contact the room host and verify that the host is properly configured with the external port forwarded. - + Unable to connect to the room because it is already full. - + Creating a room failed. Please retry. Restarting Citra might be necessary. - + The host of the room has banned you. Speak with the host to unban you or try a different room. - + Version mismatch! Please update to the latest version of Citra. If the problem persists, contact the room host and ask them to update the server. - + Incorrect password. - + An unknown error occurred. If this error continues to occur, please open an issue - + Connection to room lost. Try to reconnect. - + You have been kicked by the room host. - + MAC address is already in use. Please choose another. - + Your Console ID conflicted with someone else's in the room. Please go to Emulation > Configure > System to regenerate your Console ID. - + You do not have enough permission to perform this action. - + The user you are trying to kick/ban could not be found. They may have left the room. - + Error Błąd @@ -6345,37 +6345,37 @@ They may have left the room. OptionSetDialog - + Options - + Unset - + unknown - + %1 &lt;%2> %3 - + Range: %1 - %2 - + custom - + %1 (0x%2) %3 @@ -6383,32 +6383,32 @@ They may have left the room. OptionsDialog - + Options - + Double click to see the description and change the values of the options. - + Specific - + Generic - + Name - + Value @@ -6416,157 +6416,157 @@ They may have left the room. QObject - + Supported image files (%1) Wspierane pliki obrazów (%1) - + Open File Otwórz Plik - + Error Błąd - + Couldn't load the camera Nie udało się załadować kamery - + Couldn't load %1 Nie można załadować %1 - - + + Shift Shift - - + + Ctrl Ctrl - - + + Alt Alt - - - + + + [not set] [nie ustawiono] - - + + Hat %1 %2 Kapelusz %1 %2 - - - - - - + + + + + + Axis %1%2 Osie %1%2 - - + + Button %1 Przycisk %1 - + GC Axis %1%2 - + GC Button %1 - - - + + + [unknown] [nieznany] - + [unused] [nieużywany] - + auto - + true - + false - - + + none - + %1 (0x%2) - + Invalid region Nieprawidłowy region - + Installed Titles Zainstalowane Gry - + System Titles - + Add New Game Directory Dodaj Nowy Katalog Gier - + Not playing a game - + %1 is not playing a game %1 nie gra w grę - + %1 is playing %2 %1 gra w %2 @@ -6574,7 +6574,7 @@ They may have left the room. QtKeyboard - + Software Keyboard Klawiatura Systemowa @@ -6582,27 +6582,27 @@ They may have left the room. QtKeyboardDialog - + Text length is not correct (should be %1 characters) Długość tekstu jest nieprawidłowa (powinno być %1 znaków) - + Text is too long (should be no more than %1 characters) Tekst jest zbyt długi (powinno być nie więcej niż %1 znaków) - + Blank input is not allowed Pole tekstowe nie może być puste - + Empty input is not allowed Pole tekstowe nie może być puste - + Validation error Błąd walidacji @@ -6610,12 +6610,12 @@ They may have left the room. QtMiiSelectorDialog - + Mii Selector - + Standard Mii Standardowe Mii @@ -6623,95 +6623,95 @@ They may have left the room. RecordDialog - + View Record - + Client Klient - - + + Process: - - + + Thread: - - + + Session: Sesja: - + Server Serwer - + General Ogólne - + Client Port: Port Klienta: - + Service: - + Function: Funkcja: - + Command Buffer - + Select: Wybierz: - + Request Untranslated - + Request Translated - + Reply Untranslated - + Reply Translated - + OK OK - + null @@ -6719,37 +6719,37 @@ They may have left the room. RegistersWidget - + Registers Rejestry - + VFP Registers Rejestry VFP - + VFP System Registers Rejestry Systemu VFP - + Vector Length Długość Wektora - + Vector Stride Krok Wektora - + Rounding Mode Tryb Zaokrąglania - + Vector Iteration Count Ilość Iteracji Wektora @@ -6757,7 +6757,7 @@ They may have left the room. SequenceDialog - + Enter a hotkey @@ -6765,7 +6765,7 @@ They may have left the room. WaitTreeEvent - + reset type = %1 typ resetu = %1 @@ -6773,12 +6773,12 @@ They may have left the room. WaitTreeMutex - + locked %1 times by thread: zablokowany %1 razy przez wątek: - + free wolny @@ -6786,7 +6786,7 @@ They may have left the room. WaitTreeMutexList - + holding mutexes trzyma muteks @@ -6794,12 +6794,12 @@ They may have left the room. WaitTreeObjectList - + waiting for all objects oczekiwanie na wszystkie obiekty - + waiting for one of the following objects oczekiwanie na jeden z obiektów @@ -6807,12 +6807,12 @@ They may have left the room. WaitTreeSemaphore - + available count = %1 dostępna ilość = %1 - + max count = %1 maks. ilość = %1 @@ -6820,112 +6820,112 @@ They may have left the room. WaitTreeThread - + running działa - + ready gotowy - + waiting for address 0x%1 oczekiwanie na adres 0x%1 - + sleeping uśpiony - + waiting for IPC response oczekiwanie na odpowiedź IPC - + waiting for objects oczekiwanie na obiekty - + waiting for HLE return oczekiwanie na zwrot HLE - + dormant drzemiący - + dead martwy - + PC = 0x%1 LR = 0x%2 PC = 0x%1 LR = 0x%2 - + default domyślny - + all wszystkie - + AppCore AppCore - + SysCore SysCore - + Unknown processor %1 Nieznany procesor %1 - + object id = %1 id obiektu = %1 - + processor = %1 procesor = %1 - + thread id = %1 id wątku = %1 - + process = %1 (%2) proces = %1 (%2) - + priority = %1(current) / %2(normal) priorytet = %1(obecny) / %2(normalny) - + last running ticks = %1 ostatnie działające cykle = %1 - + not holding mutex nie trzyma muteksu @@ -6933,7 +6933,7 @@ They may have left the room. WaitTreeThreadList - + waited by thread oczekiwany przez wątek @@ -6941,17 +6941,17 @@ They may have left the room. WaitTreeTimer - + reset type = %1 typ resetu = %1 - + initial delay = %1 Początkowe opóźnienie = %1 - + interval delay = %1 Interwał opóźnienia = %1 @@ -6959,27 +6959,27 @@ They may have left the room. WaitTreeWaitObject - + [%1]%2 %3 [%1]%2 %3 - + waited by no thread nieoczekiwany przez wątek - + one shot jeden strzał - + sticky lepki - + pulse puls @@ -6987,7 +6987,7 @@ They may have left the room. WaitTreeWidget - + Wait Tree Kolejka Oczekiwania diff --git a/dist/languages/pt_BR.ts b/dist/languages/pt_BR.ts index 9f69f5e9d..d6aea8210 100644 --- a/dist/languages/pt_BR.ts +++ b/dist/languages/pt_BR.ts @@ -2,17 +2,17 @@ ARMRegisters - + ARM Registers Registradores ARM - + Register Registrador - + Value Valor @@ -20,27 +20,27 @@ AboutDialog - + About Citra Sobre o Citra - - <html><head/><body><p><img src=":/icons/citra.png"/></p></body></html> - <html><head/><body><p><img src=":/icons/citra.png"/></p></body></html> + + <html><head/><body><p><img src=":/icons/lime.png"/></p></body></html> + <html><head/><body><p><img src=":/icons/lime.png"/></p></body></html> - + <html><head/><body><p><span style=" font-size:28pt;">Citra</span></p></body></html> <html><head/><body><p><span style=" font-size:28pt;">Citra</span></p></body></html> - + <html><head/><body><p>%1 | %2-%3 (%4)</p></body></html> <html><head/><body><p>%1 | %2-%3 (%4)</p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -57,12 +57,12 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">Este programa não deve ser utilizado para jogar jogos não obtidos legalmente.</span></p></body></html> - + <html><head/><body><p><a href="https://citra-emu.org/"><span style=" text-decoration: underline; color:#039be5;">Website</span></a> | <a href="https://community.citra-emu.org/"><span style=" text-decoration: underline; color:#039be5;">Forum</span></a> | <a href="https://github.com/citra-emu"><span style=" text-decoration: underline; color:#039be5;">Source Code</span></a> | <a href="https://github.com/citra-emu/citra/graphs/contributors"><span style=" text-decoration: underline; color:#039be5;">Contributors</span></a> | <a href="https://github.com/citra-emu/citra/blob/master/license.txt"><span style=" text-decoration: underline; color:#039be5;">License</span></a></p></body></html> <html><head/><body><p><a href="https://citra-emu.org/"><span style=" text-decoration: underline; color:#039be5;">Página web</span></a> | <a href="https://community.citra-emu.org/"><span style=" text-decoration: underline; color:#039be5;">Fórum</span></a> | <a href="https://github.com/citra-emu"><span style=" text-decoration: underline; color:#039be5;">Código-fonte</span></a> | <a href="https://github.com/citra-emu/citra/graphs/contributors"><span style=" text-decoration: underline; color:#039be5;">Contribuidores</span></a> | <a href="https://github.com/citra-emu/citra/blob/master/license.txt"><span style=" text-decoration: underline; color:#039be5;">Licença</span></a></p></body></html> - + <html><head/><body><p><span style=" font-size:7pt;">&quot;3DS&quot; is a trademark of Nintendo. Citra is not affiliated with Nintendo in any way.</span></p></body></html> <html><head/><body><p><span style=" font-size:7pt;">&quot;3DS&quot; é uma marca da Nintendo. O Citra não é afiliado à Nintendo de nenhuma forma.</span></p></body></html> @@ -70,47 +70,47 @@ p, li { white-space: pre-wrap; } BreakPointModel - + Pica command loaded Comando Pica carregado - + Pica command processed Comando Pica processado - + Incoming primitive batch Recebendo primitive batch - + Finished primitive batch Primitive batch finalizado - + Vertex shader invocation Invocação de vertex shader - + Incoming display transfer Recebendo transferência de display - + GSP command processed Comando GSP processado - + Buffers swapped Buffers trocados - + Unknown debug context event Evento de contexto de depuração desconhecido @@ -118,32 +118,32 @@ p, li { white-space: pre-wrap; } CalibrationConfigurationDialog - + Communicating with the server... Conectando-se ao servidor... - + Cancel Cancelar - + Touch the top left corner <br>of your touchpad. Toque no canto superior esquerdo <br>do seu touchpad. - + Now touch the bottom right corner <br>of your touchpad. Agora toque no canto inferior direito <br>do seu touchpad. - + Configuration completed! Configuração concluída! - + OK OK @@ -151,93 +151,93 @@ p, li { white-space: pre-wrap; } ChatRoom - + Room Window Janela da sala - + Send Chat Message Enviar mensagem no chat - + Send Message Enviar mensagem - + Members Membros - + %1 has joined %1 entrou - + %1 has left %1 saiu - + %1 has been kicked %1 foi expulso(a) - + %1 has been banned %1 foi banido(a) - + %1 has been unbanned O banimento de %1 foi revogado - + View Profile Ver perfil - - + + Block Player Bloquear jogador - + When you block a player, you will no longer receive chat messages from them.<br><br>Are you sure you would like to block %1? Ao bloquear um jogador, você não receberá mais mensagens do mesmo no chat.<br><br>Deseja mesmo bloquear %1? - + Kick Expulsar - + Ban Banir - + Kick Player Expulsar jogador - + Are you sure you would like to <b>kick</b> %1? Deseja mesmo <b>expulsar</b> %1? - + Ban Player Banir jogador - + Are you sure you would like to <b>kick and ban</b> %1? This would ban both their forum username and their IP address. @@ -249,22 +249,22 @@ Esta ação banirá tanto o seu nome de usuário do fórum como o seu endereço ClientRoom - + Room Window Janela da sala - + Room Description Descrição da sala - + Moderation... Moderação... - + Leave Room Sair da sala @@ -272,17 +272,17 @@ Esta ação banirá tanto o seu nome de usuário do fórum como o seu endereço ClientRoomWindow - + Connected Conectado - + Disconnected Desconectado - + %1 (%2/%3 members) - connected %1 (%2/%3 membros) - conectado @@ -290,108 +290,108 @@ Esta ação banirá tanto o seu nome de usuário do fórum como o seu endereço CompatDB - + Report Compatibility Informar compatibilidade - - + + Report Game Compatibility Informar compatibilidade de jogo - + <html><head/><body><p><span style=" font-size:10pt;">Should you choose to submit a test case to the </span><a href="https://citra-emu.org/game/"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">Citra Compatibility List</span></a><span style=" font-size:10pt;">, The following information will be collected and displayed on the site:</span></p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Hardware Information (CPU / GPU / Operating System)</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Which version of Citra you are running</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The connected Citra account</li></ul></body></html> <html><head/><body><p><span style=" font-size:10pt;">Ao enviar um caso de teste à </span><a href="https://citra-emu.org/game/"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">lista de compatibilidade do Citra</span></a><span style=" font-size:10pt;">, as seguintes informações serão recolhidas e mostradas no site:</span></p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Informações de hardware (CPU / GPU/ sistema operacional)</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Qual versão do Citra está utilizando</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">A conta do Citra conectada</li></ul></body></html> - + Perfect Perfeito - + <html><head/><body><p>Game functions flawlessly with no audio or graphical glitches.</p></body></html> <html><head/><body><p>O jogo funciona impecavelmente, sem falhas no áudio ou nos gráficos.</p></body></html> - + Great Ótimo - + <html><head/><body><p>Game functions with minor graphical or audio glitches and is playable from start to finish. May require some workarounds.</p></body></html> <html><head/><body><p>O jogo funciona com leves falhas gráficas ou de áudio e é jogável do início ao fim. Pode exigir algumas soluções alternativas.</p></body></html> - + Okay Razoável - + <html><head/><body><p>Game functions with major graphical or audio glitches, but game is playable from start to finish with workarounds.</p></body></html> <html><head/><body><p>O jogo funciona com grandes falhas gráficas ou de áudio, mas é jogável do início ao fim com o uso de soluções alternativas.</p></body></html> - + Bad Mau - + <html><head/><body><p>Game functions, but with major graphical or audio glitches. Unable to progress in specific areas due to glitches even with workarounds.</p></body></html> <html><head/><body><p>O jogo funciona, só que com problemas significativos nos gráficos ou no áudio. Não é possível progredir em áreas específicas por conta de tais problemas, mesmo com soluções alternativas.</p></body></html> - + Intro/Menu Intro/menu - + <html><head/><body><p>Game is completely unplayable due to major graphical or audio glitches. Unable to progress past the Start Screen.</p></body></html> <html><head/><body><p>É impossível jogar o jogo devido a grandes problemas nos gráficos ou no áudio. Não é possível passar da tela inicial do jogo.</p></body></html> - + Won't Boot Não inicia - + <html><head/><body><p>The game crashes when attempting to startup.</p></body></html> <html><head/><body><p>O jogo trava ou fecha-se abruptamente ao tentar iniciá-lo.</p></body></html> - + <html><head/><body><p>Independent of speed or performance, how well does this game play from start to finish on this version of Citra?</p></body></html> <html><head/><body><p>Sem considerar velocidade e desempenho, quão bem o jogo se comporta, do início ao fim, nesta versão do Citra?</p></body></html> - + Thank you for your submission! Agradecemos o seu relatório! - + Submitting Enviando - + Communication error Erro de comunicação - + An error occurred while sending the Testcase Ocorreu um erro ao enviar o caso de testes - + Next Próximo @@ -399,93 +399,93 @@ Esta ação banirá tanto o seu nome de usuário do fórum como o seu endereço ConfigureAudio - + Output Saída - + Emulation: Emulação: - + HLE (fast) HLE (rápido) - + LLE (accurate) LLE (preciso) - + LLE multi-core LLE multinúcleo - + Output Type Tipo de saída - + Output Device Dispositivo de saída - + This post-processing effect adjusts audio speed to match emulation speed and helps prevent audio stutter. This however increases audio latency. Este efeito de pós-processamento ajusta a velocidade do áudio para acompanhar a velocidade de emulação e ajuda a evitar cortes no áudio. No entanto, isto aumenta a latência do áudio. - + Enable audio stretching Ativar alongamento de áudio - + Use global volume Usar volume global - + Set volume: Definir volume: - + Volume: Volume: - + 0 % 0 % - + Microphone Microfone - + Input Type Tipo de entrada - + Input Device Dispositivo de entrada - - + + Auto Auto - + %1% Volume percentage (e.g. 50%) %1% @@ -494,203 +494,203 @@ Esta ação banirá tanto o seu nome de usuário do fórum como o seu endereço ConfigureCamera - + Form Formulário - + Camera Câmera - - + + Select the camera to configure Selecione a câmera para configurar - + Camera to configure: Câmera a configurar: - + Front Frontal - + Rear Traseira - - + + Select the camera mode (single or double) Selecione o modo de câmera (única ou dupla) - + Camera mode: Modo de câmera: - + Single (2D) Única (2D) - + Double (3D) Dupla (3D) - - + + Select the position of camera to configure Selecione a posição da câmera para configurar - + Camera position: Posição da câmera: - + Left Esquerda - + Right Direita - + Configuration Configuração - - + + Select where the image of the emulated camera comes from. It may be an image or a real camera. Selecione de onde vem a imagem da câmera emulada. Pode ser um arquivo de imagem ou uma câmera real. - + Camera Image Source: Origem da imagem da câmera: - + Blank (blank) Em branco - + Still Image (image) Arquivo de imagem - + System Camera (qt) Câmera do sistema - + File: Arquivo: - + ... ... - - + + Select the system camera to use Selecione o tipo de câmera a ser utilizado - + Camera: Câmera: - + <Default> <Default> - - + + Select the image flip to apply Selecione o tipo de espelhamento a ser aplicado na imagem - + Flip: Espelhar imagem: - + None Não espelhar - + Horizontal Horizontalmente - + Vertical Verticalmente - + Reverse Nos dois sentidos - + Select an image file every time before the camera is loaded Permite selecionar um arquivo de imagem cada vez que a câmera for carregada - + Prompt before load Solicitar imagem antes de carregar - + Preview Pré-visualizar - + Resolution: 512*384 Resolução: 512x384 - + Click to preview Clique para pré-visualizar - + Resolution: %1*%2 Resolução: %1*%2 - + Supported image files (%1) Arquivos de imagem compatíveis (%1) - + Open File Abrir arquivo @@ -698,88 +698,88 @@ Esta ação banirá tanto o seu nome de usuário do fórum como o seu endereço ConfigureCheats - - + + Cheats Trapaças - + Add Cheat Adicionar trapaça - + Available Cheats: Trapaças disponíveis: - + Name Nome - + Type Tipo - + Save Salvar - + Delete Apagar - + Name: Nome - + Notes: Notas: - + Code: Código: - + Would you like to save the current cheat? Deseja salvar a trapaça atual? - - - + + + Save Cheat Salvar trapaça - + Please enter a cheat name. Introduza um nome para a trapaça. - + Please enter the cheat code. Introduza o nome para a trapaça. - + Cheat code line %1 is not valid. Would you like to ignore the error and continue? A linha de trapaça %1 não é válida. Gostaria de ignorar o erro e continuar? - - + + [new cheat] [nova trapaça] @@ -787,127 +787,127 @@ Gostaria de ignorar o erro e continuar? ConfigureDebug - + Form Formulário - + GDB GDB - + Enable GDB Stub Ativar GDB Stub - + Port: Porta: - + Logging Registros de depuração - + Global Log Filter Filtro global de registros - + Show Log Console (Windows Only) Mostrar console de registros (apenas Windows) - + Open Log Location Abrir local dos registros - + CPU CPU - + Use global clock speed Usar velocidade de clock global - + Set clock speed: Definir velocidade do clock - + CPU Clock Speed Velocidade do clock da CPU - + <html><body>Changes the emulated CPU clock frequency.<br>Underclocking can increase performance but may cause the game to freeze.<br>Overclocking may reduce in game lag but also might cause freezes</body></html> <html><body>Altera a frequência do clock da CPU emulada.<br>O underclock pode aumentar o desempenho, mas pode causar congelamentos no jogo.<br>O overclock pode reduzir a latência do jogo, mas também pode causar congelamentos.</body></html> - + <html><head/><body><p>Enables the use of the ARM JIT compiler for emulating the 3DS CPUs. Don't disable unless for debugging purposes</p></body></html> <html><head/><body><p>Permite utilizar o compilador ARM JIT para emular as CPUs do 3DS. Não desativar, a menos que seja para fins de depuração</p></body></html> - + Enable CPU JIT Ativar CPU JIT - + Enable debug renderer Ativar depurador de renderização - + Dump command buffers - + Miscellaneus - + <html><head/><body><p>Introduces a delay to the first ever launched app thread if LLE modules are enabled, to allow them to initialize.</p></body></html> - + Delay app start for LLE module initialization - + <html><head/><body><p>CPU Clock Speed Information<br/>Underclocking can increase performance but may cause the game to freeze.<br/>Overclocking may reduce in game lag but also might cause freezes</p></body></html> <html><head/><body><p>Informação sobre a velocidade do clock da CPU<br/>O underclock pode aumentar o desempenho, mas pode causar congelamentos no jogo.<br/>O overclock pode reduzir a latencia do jogo, mas também pode causar congelamentos</p></body></html> - + Validation layer not available Camada de validação não disponível - + Unable to enable debug renderer because the layer <strong>VK_LAYER_KHRONOS_validation</strong> is missing. Please install the Vulkan SDK or the appropriate package of your distribution Impossível ativar o depurador de renderização porque falta a camada <strong>VK_LAYER_KHRONOS_validation</strong>. Por favor, instale o Vulkan SDK ou o pacote adequado para sua distribuição. - + Command buffer dumping not available - + Unable to enable command buffer dumping because the layer <strong>VK_LAYER_LUNARG_api_dump</strong> is missing. Please install the Vulkan SDK or the appropriate package of your distribution @@ -915,92 +915,92 @@ Gostaria de ignorar o erro e continuar? ConfigureDialog - + Citra Configuration Configurações do Citra - - - + + + General Geral - - - + + + System Sistema - - + + Input Controle - - + + Hotkeys Teclas de atalho - - + + Graphics Gráficos - - + + Enhancements Melhorias - - - + + + Audio Áudio - - + + Camera Câmera - - + + Debug Depuração - - + + Storage Armazenamento - - + + Web Rede - - + + UI Interface - + Controls Controles - + Advanced Avançado @@ -1008,278 +1008,278 @@ Gostaria de ignorar o erro e continuar? ConfigureEnhancements - + Form Formulário - + Renderer Renderizar - + Internal Resolution Resolução interna - + Auto (Window Size) Automático (tamanho da janela) - + Native (400x240) Nativo (400x240) - + 2x Native (800x480) 2x Nativo (800x480) - + 3x Native (1200x720) 3x Nativo (1200x720) - + 4x Native (1600x960) 4x Nativo (1600x960) - + 5x Native (2000x1200) 5x Nativo (2000x1200) - + 6x Native (2400x1440) 6x Nativo (2400x1440) - + 7x Native (2800x1680) 7x Nativo (2800x1680) - + 8x Native (3200x1920) 8x Nativo (3200x1920) - + 9x Native (3600x2160) 9x Nativo (3600x2160) - + 10x Native (4000x2400) 10x Nativo (4000x2400) - + Enable Linear Filtering Ativar filtragem linear - + Post-Processing Shader Shader de pós-processamento - + Texture Filter Filtro de texturas - + None Nenhum - + Anime4K - + Bicubic - + ScaleForce - + xBRZ - + MMPX MMPX - + Stereoscopy Estereoscopia - + Stereoscopic 3D Mode Modo 3D estereoscópico - + Off Não - - + + Side by Side Lado a lado - + Anaglyph Anáglifo - + Interlaced Entrelaçado - + Reverse Interlaced Entrelaçado reverso - + Depth Profundidade - + % % - + Eye to Render in Monoscopic Mode Olho para Renderizar no Modo Monoscópico - + Left Eye (default) Olho esquerdo (padrão) - + Right Eye Olho direito - + Layout Layout - + Screen Layout: Disposição da tela: - + Default Padrão - + Single Screen Tela única - + Large Screen Tela grande - + Separate Windows Janelas separadas - + Hybrid Screen Tela híbrida - + Swap Screens Trocar telas - + Rotate Screens Upright Girar telas na vertical - + Large Screen Proportion: - + Background Color: Cor do fundo: - + Utility Utilidade - + <html><head/><body><p>Replace textures with PNG files.</p><p>Textures are loaded from load/textures/[Title ID]/.</p></body></html> <html><head/><body><p>Substitui as texturas por arquivos PNG.</p><p>As texturas são carregadas a partir de load/textures/[ID do título]/.</p></body></html> - + Use Custom Textures Usar texturas personalizadas - + <html><head/><body><p>Dump textures to PNG files.</p><p>Textures are dumped to dump/textures/[Title ID]/.</p></body></html> <html><head/><body><p>Extrai as texturas em arquivos PNG.</p><p>As texturas são extraídas para dump/textures/[ID do título]/.</p></body></html> - + Dump Textures Extrair texturas - + <html><head/><body><p>Load all custom textures into memory on boot, instead of loading them when the game requires them.</p></body></html> <html><head/><body><p>Carregar todas as texturas personalizadas na memória ao iniciar, em vez de carregá-las apenas quando o jogo exigir.</p></body></html> - + Preload Custom Textures Pré-carregar texturas personalizadas - + <html><head/><body><p>Load custom textures asynchronously with background threads to reduce loading stutter</p></body></html> <html><head/><body><p>Carregue texturas personalizadas de maneira assíncrona com threads em segundo plano para reduzir o stutter do carregamento</p></body></html> - + Async Custom Texture Loading Carregamento Assíncrono de Textura Personalizada @@ -1287,136 +1287,136 @@ Gostaria de ignorar o erro e continuar? ConfigureGeneral - + Form Formulário - + General Geral - + Confirm exit while emulation is running Confirmar saída quando a emulação estiver em execução - + Pause emulation when in background Pausar emulação ao ficar em segundo plano - + Mute audio when in background Silencie ao ficar em segundo plano - + Hide mouse on inactivity Esconder ponteiro do mouse ao ficar inativo - + Enable Gamemode Ativar Gamemode - + Updates Atualizações - + Check for updates on start Procurar atualizações ao iniciar - + Silently auto update after closing Atualizar silenciosamente ao fechar - + Emulation Emulação - + Region: Região: - + Auto-select Seleção automática - + Use global emulation speed Usar velocidade de emulação global - + Set emulation speed: Definir velocidade da emulação: - + Emulation Speed: Velocidade de emulação: - + Screenshots Capturas de tela - + Use global screenshot path Usar caminho global - + Set screenshot path: Definir caminho da captura de tela: - + Save Screenshots To Salvar capturas de tela em - + ... ... - + Reset All Settings Redefinir todos os ajustes - - - - - + + + + + unthrottled sem limitação - + Select Screenshot Directory Selecionar pasta - + Citra Citra - + Are you sure you want to <b>reset your settings</b> and close Citra? Deseja mesmo <b>redefinir as configurações</b> e fechar o Citra? @@ -1424,157 +1424,157 @@ Gostaria de ignorar o erro e continuar? ConfigureGraphics - + Form Formulário - + Graphics Gráficos - + API Settings Configurações da API - + Graphics API API gráfica - + Software Software - + OpenGL OpenGL - + Vulkan Vulkan - + Physical Device Dispositivo Físico - + OpenGL Renderer - + SPIR-V Shader Generation - + Renderer Renderizador - + <html><head/><body><p>Use the selected graphics API to accelerate shader emulation.</p><p>Requires a relatively powerful GPU for better performance.</p></body></html> - + Enable Hardware Shader Ativar shaders via hardware - + <html><head/><body><p>Correctly handle all edge cases in multiplication operation in shaders. </p><p>Some games requires this to be enabled for the hardware shader to render properly.</p><p>However this would reduce performance in most games.</p></body></html> <html><head/><body><p>Manipula corretamente todos os casos extremos de operações de multiplicação em shaders. </p><p>Alguns jogos exigem que isto esteja ativado para que os shaders sejam adequadamente renderizados via hardware.</p><p>No entanto, isso pode reduzir o desempenho na maioria dos jogos.</p></body></html> - + Accurate Multiplication Multiplicação precisa - + <html><head/><body><p>Use the JIT engine instead of the interpreter for software shader emulation. </p><p>Enable this for better performance.</p></body></html> <html><head/><body><p>Utiliza o mecanismo JIT (em vez do interpretador) para emular shaders via software. </p><p>Ative isto para um melhor desempenho.</p></body></html> - + Enable Shader JIT Ativar JIT para shaders - + <html><head/><body><p>Compile shaders using background threads to avoid shader compilation stutter. Expect temporary graphical glitches</p></body></html> - + Enable Async Shader Compilation Ativar Compilação Assíncrona de Shader - + <html><head/><body><p>Perform presentation on separate threads. Improves performance when using Vulkan in most games.</p></body></html> - + Enable Async Presentation Ativar Apresentação Assíncrona - + Advanced Avançado - + <html><head/><body><p>Overrides the sampling filter used by games. This can be useful in certain cases with poorly behaved games when upscaling. If unsure set this to Game Controlled</p></body></html> - + Texture Sampling - + Game Controlled - + Nearest Neighbor - + Linear - + <html><head/><body><p>Reduce stuttering by storing and loading generated shaders to disk.</p></body></html> <html><head/><body><p>Reduz engasgos ao armazenar e carregar no disco os shaders gerados.</p></body></html> - + Use Disk Shader Cache Usar cache de shaders em disco - + VSync prevents the screen from tearing, but some graphics cards have lower performance with VSync enabled. Keep it enabled if you don't notice a performance difference. A sincronização vertical evita que as imagens do jogo pareçam cortadas, porém algumas placas gráficas apresentam redução de desempenho quando esta está ativada. Deixe-a ativada se você não reparar alguma diferença de desempenho. - + Enable VSync Ativar sincronização vertical @@ -1582,63 +1582,63 @@ Gostaria de ignorar o erro e continuar? ConfigureHotkeys - + Hotkey Settings Configurações de teclas de atalho - + Double-click on a binding to change it. Clique duas vezes num atalho para o alterar. - + Clear All Limpar tudo - + Restore Defaults Restaurar predefinições - + Action Ação - + Hotkey Combinação de teclas - - + + Conflicting Key Sequence Conflito de sequência de teclas - + The entered key sequence is already assigned to: %1 A sequência de teclas pressionada já esta atribuída para: %1 - + A 3ds button - + Restore Default Restaurar predefinição - + Clear Limpar - + The default key sequence is already assigned to: %1 A sequência de teclas padrão já esta atribuida para: %1 @@ -1646,307 +1646,307 @@ Gostaria de ignorar o erro e continuar? ConfigureInput - + ConfigureInput Configurar controles - + Profile Perfil - + New Novo - + Delete Apagar - + Rename Renomear - + Face Buttons Botões frontais - + Y: Y: - + X: X: - + B: B: - + A: A: - + Directional Pad Direcionais - - - + + + Up: Cima: - - - + + + Down: Baixo: - - - + + + Left: Esquerda: - - - + + + Right: Direita: - + Misc. Outros - + Start: Start: - + Select: Select: - + Home: Home: - + Power: - + Circle Mod: Circle Mod: - + GPIO14: GPIO14: - + Debug: Depurar: - + Circle Pad Circle Pad - - - + + + Set Analog Stick Definir direcional analógico - - + + Deadzone: 0 Zona morta: 0 - + C-Stick C-Stick - + Shoulder Buttons Botões laterais - + ZR: ZR: - + ZL: ZL: - + L: L: - + R: R: - + Motion / Touch... Movimento/toque... - + Auto Map Mapeamento automático - + Clear All Limpar tudo - + Restore Defaults Restaurar predefinições - - - + + + Clear Limpar - - - + + + [not set] [não definido] - - - + + + Restore Default Restaurar predefinição - - + + Information Informação - + After pressing OK, first move your joystick horizontally, and then vertically. Após pressionar OK, mova o direcional analógico primeiro horizontalmente e depois verticalmente. - - + + Deadzone: %1% Zona morta: %1% - - + + Modifier Scale: %1% Escala do modificador: %1% - + Warning Aviso - + Auto mapping failed. Your controller may not have a corresponding mapping O mapeamento automático falhou. O controle pode não ter um mapeamento correspondente. - + After pressing OK, press any button on your joystick Após clicar em OK, pressione qualquer botão do controle. - + [press key] [pressione uma tecla] - + Error! Erro! - + You're using a key that's already bound. Você está usando uma tecla que já está em uso por outro atalho. - + New Profile Novo perfil - + Enter the name for the new profile. Insira o nome do novo perfil. - + Delete Profile Apagar perfil - + Delete profile %1? Apagar perfil %1? - + Rename Profile Renomear perfil - + New name: Novo nome: - + Duplicate profile name Duplicar nome do perfil - + Profile name already exists. Please choose a different name. Esse nome de perfil já existe. Escolha outro nome. @@ -1954,198 +1954,198 @@ Gostaria de ignorar o erro e continuar? ConfigureMotionTouch - + Configure Motion / Touch Configurar movimento/toque - + Motion Movimento - + Motion Provider: Fonte dos movimentos: - + Sensitivity: Sensibilidade: - + Controller: Controle: - - - - - + + + + + Configure Configurar - + Touch Toque - + Touch Provider: Fonte de toque: - + Calibration: Calibração: - + (100, 50) - (1800, 850) (100, 50) - (1800, 850) - + Use button mapping: Usar mapeamento de botão: - + CemuhookUDP Config Configurações do CemuhookUDP - + You may use any Cemuhook compatible UDP input source to provide motion and touch input. Você pode usar qualquer servidor de entrada UDP compatível com o Cemuhook para fornecer controles de toque e de movimento. - + Server: Servidor: - + Port: Porta: - + Pad: Pad: - + Pad 1 Pad 1 - + Pad 2 Pad 2 - + Pad 3 Pad 3 - + Pad 4 Pad 4 - + Learn More Saiba mais - - + + Test Testar - + Mouse (Right Click) Mouse (botão direito) - - + + CemuhookUDP CemuhookUDP - + SDL SDL - + Emulator Window Janela do emulador - + <a href='https://citra-emu.org/wiki/using-a-controller-or-android-phone-for-motion-or-touch-input'><span style="text-decoration: underline; color:#039be5;">Learn More</span></a> <a href='https://citra-emu.org/wiki/using-a-controller-or-android-phone-for-motion-or-touch-input'><span style="text-decoration: underline; color:#039be5;">Saiba mais</span></a> - + Information Informação - + After pressing OK, press a button on the controller whose motion you want to track. Após pressionar OK, pressione um botão no controle cujo movimento você quer rastrear. - + [press button] [pressione o botão] - + Testing Testando - + Configuring Configurando - + Test Successful Teste concluído com êxito - + Successfully received data from the server. Dados recebidos do servidor com êxito. - + Test Failed Falha no teste - + Could not receive valid data from the server.<br>Please verify that the server is set up correctly and the address and port are correct. Não foi possível receber dados válidos do servidor.<br>Verifique se o servidor foi configurado corretamente e o endereço e porta estão corretos. - + Citra Citra - + UDP Test or calibration configuration is in progress.<br>Please wait for them to finish. O teste UDP ou a configuração de calibração está em curso.<br>Aguarde até a conclusão deles. @@ -2153,97 +2153,97 @@ Gostaria de ignorar o erro e continuar? ConfigurePerGame - + Dialog Diálogo - + Info Informações - + Size Tamanho - + Format Formato - + Name Nome - + Filepath Caminho do arquivo - + Title ID ID do título - + Reset Game Settings Redefinir configurações do jogo - + Use global configuration (%1) Usar configuração global (%1) - + General Geral - + System Sistema - + Enhancements Melhorias - + Graphics Gráficos - + Audio Áudio - + Debug Depuração - + Cheats Trapaças - + Properties Propriedades - + Citra Citra - + Are you sure you want to <b>reset your settings for this game</b>? Deseja mesmo <b>redefinir as configurações para este jogo</b> ? @@ -2251,65 +2251,65 @@ Gostaria de ignorar o erro e continuar? ConfigureStorage - + Form Formulário - + Storage Armazenamento - + Use Virtual SD Usar SD virtual - + Custom Storage Armazenamento personalizado - + Use Custom Storage Usar armazenamento personalizado - + NAND Directory Pasta NAND - - + + Open Abrir - - + + NOTE: This does not move the contents of the previous directory to the new one. NOTA: Isto não moverá o conteúdo da pasta anterior para a nova. - - + + Change Alterar - + SDMC Directory Pasta SDMC - + Select NAND Directory Selecionar pasta NAND - + Select SDMC Directory Selecionar pasta SDMC @@ -2317,1064 +2317,1064 @@ Gostaria de ignorar o erro e continuar? ConfigureSystem - + Form Formulário - + System Settings Configurações do sistema - + Enable New 3DS mode Ativar modo New 3DS - + Use LLE applets (if installed) - + Username Nome de usuário - + Birthday Aniversário - + January Janeiro - + February Fevereiro - + March Março - + April Abril - + May Maio - + June Junho - + July Julho - + August Agosto - + September Setembro - + October Outubro - + November Novembro - + December Dezembro - + Language Idioma - + Note: this can be overridden when region setting is auto-select Nota: isso pode ser ignorado quando a configuração de região for seleção automática - + Japanese (日本語) Japonês (日本語) - + English Inglês (English) - + French (français) Francês (français) - + German (Deutsch) Alemão (Deutsch) - + Italian (italiano) Italiano (italiano) - + Spanish (español) Espanhol (español) - + Simplified Chinese (简体中文) Chinês simplificado (简体中文) - + Korean (한국어) Coreano (한국어) - + Dutch (Nederlands) Neerlandês (Nederlands) - + Portuguese (português) Português - + Russian (Русский) Russo (Русский) - + Traditional Chinese (正體中文) Chinês tradicional (正體中文) - + Sound output mode Modo de saída de som - + Mono Mono - + Stereo Estéreo - + Surround Surround - + Country País - + Clock Relógio - + System Clock Relógio do sistema - + Fixed Time Horário fixo - + Startup time Horário na inicialização - + yyyy-MM-ddTHH:mm:ss yyyy-MM-ddTHH:mm:ss - + Offset time Tempo de deslocamento - + days dias - + HH:mm:ss HH:mm:ss - + Initial System Ticks - + Random - + Fixed - + Initial System Ticks Override - + Play Coins: Moedas de jogo: - + Run System Setup when Home Menu is launched - + Console ID: ID do console: - + Regenerate Gerar um novo - + 3GX Plugin Loader: Carregador do plug-in 3GX: - + Enable 3GX plugin loader Ativar carregador do plug-in 3GX - + Allow games to change plugin loader state Permitir que os jogos mudem o estado do carregador de plug-ins - + Download System Files from Nitendo servers Baixar arquivos do sistema a partir dos servidores da Nintendo - + Minimal Mínimo - + Old 3DS Old 3DS - + New 3DS New 3DS - + JPN JPN - + USA USA - + EUR EUR - + AUS AUS - + CHN CHN - + KOR KOR - + TWN TWN - + Download Baixar - + System settings are available only when game is not running. As configurações do sistema estão disponíveis apenas quando não houver nenhum jogo em execução. - + Japan Japão - + Anguilla Anguila - + Antigua and Barbuda Antígua e Barbuda - + Argentina Argentina - + Aruba Aruba - + Bahamas Bahamas - + Barbados Barbados - + Belize Belize - + Bolivia Bolívia - + Brazil Brasil - + British Virgin Islands Ilhas Virgens Britânicas - + Canada Canadá - + Cayman Islands Ilhas Caimã - + Chile Chile - + Colombia Colômbia - + Costa Rica Costa Rica - + Dominica Dominica - + Dominican Republic República Dominicana - + Ecuador Equador - + El Salvador El Salvador - + French Guiana Guiana Francesa - + Grenada Grenada - + Guadeloupe Guadalupe - + Guatemala Guatemala - + Guyana Guiana - + Haiti Haiti - + Honduras Honduras - + Jamaica Jamaica - + Martinique Martinica - + Mexico México - + Montserrat Montserrat - + Netherlands Antilles Antilhas Neerlandesas - + Nicaragua Nicarágua - + Panama Panamá - + Paraguay Paraguai - + Peru Peru - + Saint Kitts and Nevis São Cristóvão e Névis - + Saint Lucia Santa Lúcia - + Saint Vincent and the Grenadines São Vicente e Granadinas - + Suriname Suriname - + Trinidad and Tobago Trindade e Tobago - + Turks and Caicos Islands Ilhas Turcas e Caicos - + United States Estados Unidos - + Uruguay Uruguai - + US Virgin Islands Ilhas Virgens dos Estados Unidos - + Venezuela Venezuela - + Albania Albânia - + Australia Austrália - + Austria Áustria - + Belgium Bélgica - + Bosnia and Herzegovina Bósnia e Herzegovina - + Botswana Botsuana - + Bulgaria Bulgária - + Croatia Croácia - + Cyprus Chipre - + Czech Republic República Checa - + Denmark Dinamarca - + Estonia Estônia - + Finland Finlândia - + France França - + Germany Alemanha - + Greece Grécia - + Hungary Hungria - + Iceland Islândia - + Ireland Irlanda - + Italy Itália - + Latvia Letônia - + Lesotho Lesoto - + Liechtenstein Liechtenstein - + Lithuania Lituânia - + Luxembourg Luxemburgo - + Macedonia Macedônia - + Malta Malta - + Montenegro Montenegro - + Mozambique Moçambique - + Namibia Namíbia - + Netherlands Países Baixos - + New Zealand Nova Zelândia - + Norway Noruega - + Poland Polônia - + Portugal Portugal - + Romania Romênia - + Russia Rússia - + Serbia Sérvia - + Slovakia Eslováquia - + Slovenia Eslovênia - + South Africa África do Sul - + Spain Espanha - + Swaziland Suazilândia - + Sweden Suécia - + Switzerland Suíça - + Turkey Turquia - + United Kingdom Reino Unido - + Zambia Zâmbia - + Zimbabwe Zimbábue - + Azerbaijan Azerbaijão - + Mauritania Mauritânia - + Mali Mali - + Niger Níger - + Chad Chade - + Sudan Sudão - + Eritrea Eritreia - + Djibouti Jibuti - + Somalia Somália - + Andorra Andorra - + Gibraltar Gibraltar - + Guernsey Guernsey - + Isle of Man Ilha de Man - + Jersey Jersey - + Monaco Mônaco - + Taiwan Taiwan - + South Korea Coreia do Sul - + Hong Kong Hong Kong - + Macau Macau - + Indonesia Indonésia - + Singapore Singapura - + Thailand Tailândia - + Philippines Filipinas - + Malaysia Malásia - + China China - + United Arab Emirates Emirados Árabes Unidos - + India Índia - + Egypt Egito - + Oman Omã - + Qatar Catar - + Kuwait Cuaite - + Saudi Arabia Arábia Saudita - + Syria Síria - + Bahrain Barém - + Jordan Jordânia - + San Marino São Marinho - + Vatican City Cidade do Vaticano - + Bermuda Bermuda - + Download System Files from Nintendo servers Baixar arquivos do sistema a partir dos servidores da Nintendo - + Citra is missing keys to download system files. <br><a href='https://citra-emu.org/wiki/aes-keys/'><span style="text-decoration: underline; color:#039be5;">How to get keys?</span></a> O Citra não possui chaves para baixar arquivos do sistema. <br><a href='https://citra-emu.org/wiki/aes-keys/'><span style="text-decoration: underline; color:#039be5;">Como obter chaves?</span></a> - - + + Console ID: 0x%1 ID do console: 0x%1 - + This will replace your current virtual 3DS with a new one. Your current virtual 3DS will not be recoverable. This might have unexpected effects in games. This might fail, if you use an outdated config savegame. Continue? Isto substituirá o seu 3DS virtual atual por um novo. O seu 3DS virtual atual não será recuperável. Isto pode causar efeitos inesperados em jogos, e pode falhar caso você utilize um jogo salvo com configurações desatualizadas registradas nele. Continuar? - + Warning Alerta - + Downloading files... Baixando arquivos... - + Cancel Cancelar - - + + Citra Citra - + Downloading system files failed. - + Successfully downloaded system files. @@ -3382,91 +3382,91 @@ Gostaria de ignorar o erro e continuar? ConfigureTouchFromButton - + Configure Touchscreen Mappings Configurar mapeamentos da tela de toque - + Mapping: Mapeamento: - + New Novo - + Delete Apagar - + Rename Renomear - + Click the bottom area to add a point, then press a button to bind. Drag points to change position, or double-click table cells to edit values. Clique na área inferior para adicionar um ponto e pressione um botão para vincular. Arraste os pontos para alterar a posição ou clique duas vezes nas células da tabela para editar os valores. - + Delete Point Apagar ponto - + Button Botão - + X X axis X - + Y Y axis Y - + New Profile Novo perfil - + Enter the name for the new profile. Insira o nome do novo perfil. - + Delete Profile Apagar perfil - + Delete profile %1? Apagar perfil %1? - + Rename Profile Renomear perfil - + New name: Novo nome: - + [press key] [pressione uma tecla] @@ -3474,113 +3474,113 @@ Arraste os pontos para alterar a posição ou clique duas vezes nas células da ConfigureUi - + Form Formulário - + General Geral - + Note: Changing language will apply your configuration. Nota: alterar o idioma aplicará as suas configurações. - + Interface language: Idioma da interface: - + Theme: Tema: - + Game List Lista de jogos - + Icon Size: Tamanho do ícone: - - + + None Não mostrar - + Small (24x24) Pequeno (24x24) - + Large (48x48) Grande (48x48) - + Row 1 Text: Texto da 1ª linha: - - + + File Name Nome do arquivo - - + + Full Path Caminho completo - - + + Title Name (short) Nome do título (curto) - - + + Title ID ID do título - - + + Title Name (long) Nome do título (completo) - + Row 2 Text: Texto da 2ª linha: - + Hide Titles without Icon Ocultar títulos sem ícone - + Single Line Mode Modo de linha única - + <System> <Sistema> - + English Inglês (English) @@ -3588,135 +3588,135 @@ Arraste os pontos para alterar a posição ou clique duas vezes nas células da ConfigureWeb - + Form Formulário - + Citra Web Service Citra Web Service - + By providing your username and token, you agree to allow Citra to collect additional usage data, which may include user identifying information. Ao informar o seu usuário e token, você concorda em permitir ao Citra recolher dados de utilização adicionais, que podem incluir informações de identificação de usuário. - - + + Verify Verificar - + Sign up Registrar-se - + Token: Token: - + Username: Nome de usuário - + What is my token? Qual é o meu token? - + Web Service configuration can only be changed when a public room isn't being hosted. As configurações do Web Service não podem ser alteradas quando uma sala pública criada por você estiver em operação. - + Telemetry Telemetria - + Share anonymous usage data with the Citra team Compartilhar anonimamente dados de utilização com a equipe do Citra - + Learn more Saiba mais - + Telemetry ID: ID de telemetria: - + Regenerate Gerar um novo - + Discord Presence Presença no Discord - + Show Current Game in your Discord Status Mostrar o jogo atual no seu perfil do Discord - + <a href='https://citra-emu.org/entry/telemetry-and-why-thats-a-good-thing/'><span style="text-decoration: underline; color:#039be5;">Learn more</span></a> <a href='https://citra-emu.org/entry/telemetry-and-why-thats-a-good-thing/'><span style="text-decoration: underline; color:#039be5;">Saber mais</span></a> - + <a href='https://profile.citra-emu.org/'><span style="text-decoration: underline; color:#039be5;">Sign up</span></a> <a href='https://profile.citra-emu.org/'><span style="text-decoration: underline; color:#039be5;">Registrar-se</span></a> - + <a href='https://citra-emu.org/wiki/citra-web-service/'><span style="text-decoration: underline; color:#039be5;">What is my token?</span></a> <a href='https://citra-emu.org/wiki/citra-web-service/'><span style="text-decoration: underline; color:#039be5;">Qual é o meu token?</span></a> - - + + Unspecified Não especificado - - + + Telemetry ID: 0x%1 ID de telemetria: 0x%1 - + Token not verified Token não verificado - + Token was not verified. The change to your token has not been saved. O token não foi verificado. A alteração no seu token não foi salva. - + Verifying... Verificando... - + Verification failed Falha na verificação - + Verification failed. Check that you have entered your token correctly, and that your internet connection is working. Falha na verificação. Verifique se o token foi inserido corretamente e se a conexão à internet está funcionando. @@ -3724,47 +3724,47 @@ Arraste os pontos para alterar a posição ou clique duas vezes nas células da DirectConnect - + Direct Connect Conectar-se diretamente - + Server Address Endereço do servidor - + <html><head/><body><p>Server address of the host</p></body></html> <html><head/><body><p>Endereço do servidor que fará a hospedagem</p></body></html> - + Port Porta - + <html><head/><body><p>Port number the host is listening on</p></body></html> <html><head/><body><p>O número da porta que o anfitrião está escutando</p></body></html> - + 24872 24872 - + Nickname Apelido - + Password Senha - + Connect Conectar @@ -3772,12 +3772,12 @@ Arraste os pontos para alterar a posição ou clique duas vezes nas células da DirectConnectWindow - + Connecting Conectando - + Connect Conectar @@ -3785,110 +3785,110 @@ Arraste os pontos para alterar a posição ou clique duas vezes nas células da DumpingDialog - + Dump Video - + Output Saída - + Format: Formato: - - - + + + Options: Opções: - - - - + + + + ... - + Path: Caminho: - + Video Vídeo - - + + Encoder: Encoder: - - + + Bitrate: Bitrate: - - + + bps - + Audio - - + + Citra Citra - + Please specify the output path. - + output formats - + video encoders - + audio encoders - + Could not find any available %1. Please check your FFmpeg installation used for compilation. - - - - + + + + %1 (%2) %1 (%2) - + Select Video Output Path @@ -3896,419 +3896,419 @@ Please check your FFmpeg installation used for compilation. GMainWindow - + <a href='https://citra-emu.org/entry/telemetry-and-why-thats-a-good-thing/'>Anonymous data is collected</a> to help improve Citra. <br/><br/>Would you like to share your usage data with us? <a href='https://citra-emu.org/entry/telemetry-and-why-thats-a-good-thing/'>Dados anônimos são recolhidos</a> para ajudar a melhorar o Citra. <br/><br/>Gostaria de compartilhar os seus dados de utilização conosco? - + Telemetry Telemetria - + No Suitable Vulkan Devices Detected - + Vulkan initialization failed during boot.<br/>Your GPU may not support Vulkan 1.1, or you do not have the latest graphics driver. - - + + Current emulation speed. Values higher or lower than 100% indicate emulation is running faster or slower than a 3DS. Velocidade atual de emulação. Valores maiores ou menores que 100% indicam que a emulação está funcionando mais rápida ou lentamente que num 3DS. - - + + How many frames per second the game is currently displaying. This will vary from game to game and scene to scene. Quantos quadros por segundo que o jogo está mostrando atualmente. Pode variar de jogo para jogo e cena para cena. - - + + Time taken to emulate a 3DS frame, not counting framelimiting or v-sync. For full-speed emulation this should be at most 16.67 ms. Tempo levado para emular um quadro do 3DS, sem considerar o limitador de taxa de quadros ou a sincronização vertical. Valores menores ou iguais a 16,67 ms indicam que a emulação está em velocidade plena. - + Clear Recent Files Limpar arquivos recentes - + &Continue &Continuar - + &Pause &Pausar - + Update Available Atualização disponível - + An update is available. Would you like to install it now? Está disponível uma atualização. Deseja instalá-la agora? - + No Update Found Nenhuma atualização encontrada - + No update is found. Nenhuma atualização encontrada - + Citra is running a game TRANSLATORS: This string is shown to the user to explain why Citra needs to prevent the computer from sleeping - - + + Invalid ROM Format Formato de ROM inválido - - + + Your ROM format is not supported.<br/>Please follow the guides to redump your <a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>game cartridges</a> or <a href='https://citra-emu.org/wiki/dumping-installed-titles/'>installed titles</a>. O formato da ROM é incompatível.<br/>Siga os guias para extrair jogos dos <a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>cartuchos de jogo</a> ou <a href='https://citra-emu.org/wiki/dumping-installed-titles/'>títulos instalados</a>. - + ROM Corrupted ROM corrompida - + Your ROM is corrupted. <br/>Please follow the guides to redump your <a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>game cartridges</a> or <a href='https://citra-emu.org/wiki/dumping-installed-titles/'>installed titles</a>. A ROM está corrompida.<br/>Siga os guias para extrair jogos dos <a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>cartuchos de jogo</a> ou <a href='https://citra-emu.org/wiki/dumping-installed-titles/'>títulos instalados</a>. - + ROM Encrypted ROM criptografada - + Your ROM is encrypted. <br/>Please follow the guides to redump your <a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>game cartridges</a> or <a href='https://citra-emu.org/wiki/dumping-installed-titles/'>installed titles</a>. A ROM está criptografada.<br/>Siga os guias para extrair jogos dos <a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>cartuchos de jogo</a> ou <a href='https://citra-emu.org/wiki/dumping-installed-titles/'>títulos instalados</a>. - + Unsupported ROM ROM não compatível - + GBA Virtual Console ROMs are not supported by Citra. - + Error while loading ROM! Erro ao carregar ROM! - + An unknown error occurred. Please see the log for more details. Ocorreu um erro desconhecido. Verifique o registro para mais detalhes. - + CIA must be installed before usage É necessário instalar o CIA antes de usar - + Before using this CIA, you must install it. Do you want to install it now? É necessário instalar este CIA antes de poder usá-lo. Deseja instalá-lo agora? - - + + Slot %1 Espaço %1 - + Slot %1 - %2 %3 - + Error Opening %1 Folder Erro ao abrir a pasta %1 - - + + Folder does not exist! A pasta não existe! - + Dumping... Extraindo... - - + + Cancel Cancelar - - - - - - - - - + + + + + + + + + Citra Citra - + Could not dump base RomFS. Refer to the log for details. Não foi possível extrair o RomFS base. Consulte o registro para ver os detalhes. - + Error Opening %1 Erro ao abrir %1 - + Select Directory Selecionar pasta - + Properties Propriedades - + The game properties could not be loaded. Não foi possível carregar as propriedades do jogo. - + 3DS Executable (%1);;All Files (*.*) %1 is an identifier for the 3DS executable file extensions. Executável do 3DS (%1);;Todos os arquivos (*.*) - + Load File Carregar arquivo - + Load Files Carregar arquivos - + 3DS Installation File (*.CIA*) Arquivo de instalação 3DS (*.CIA*) - + All Files (*.*) Todos os arquivos (*.*) - + %1 has been installed successfully. %1 foi instalado. - + Unable to open File Não foi possível abrir o arquivo - + Could not open %1 Não foi possível abrir %1 - + Installation aborted Instalação cancelada - + The installation of %1 was aborted. Please see the log for more details A instalação de %1 foi interrompida. Consulte o registro para mais detalhes - + Invalid File Arquivo inválido - + %1 is not a valid CIA %1 não é um CIA válido - + Encrypted File Arquivo criptografado - + %1 must be decrypted before being used with Citra. A real 3DS is required. %1 deverá ser descriptografado antes de ser usado no Citra. É necessário um 3DS de verdade. - + Unable to find File Não foi possível localizar o arquivo - + Could not find %1 Não foi possível localizar %1 - + Uninstalling '%1'... - + Failed to uninstall '%1'. - + Successfully uninstalled '%1'. - + File not found Arquivo não encontrado - + File "%1" not found Arquivo "%1" não encontrado - + Missing Citra Account Conta do Citra em falta - + You must link your Citra account to submit test cases.<br/>Go to Emulation &gt; Configure... &gt; Web to do so. É necessário entrar com a conta do Citra para enviar casos de teste.<br/>Para tal, vá para Emulação &gt; Configurar... &gt; Rede. - + Savestates Estados salvos - + Warning: Savestates are NOT a replacement for in-game saves, and are not meant to be reliable. Use at your own risk! - - - + + + Error opening amiibo data file - + A tag is already in use. - + Game is not looking for amiibos. - + Amiibo File (%1);; All Files (*.*) Arquivo do Amiibo (%1);; Todos os arquivos (*.*) - + Load Amiibo Carregar Amiibo - + Unable to open amiibo file "%1" for reading. Não foi possível abrir o arquivo amiibo "%1" para realizar a leitura. - + Record Movie Gravar passos - + Movie recording cancelled. Gravação cancelada. - - + + Movie Saved Gravação salva - - + + The movie is successfully saved. A gravação foi salva. - + Invalid Screenshot Directory Pasta inválida - + Cannot create specified screenshot directory. Screenshot path is set back to its default value. Não é possível criar a pasta especificada. O caminho original foi restabelecido. - + Could not load video dumper - + FFmpeg could not be loaded. Make sure you have a compatible version installed. To install FFmpeg to Citra, press Open and select your FFmpeg directory. @@ -4317,158 +4317,158 @@ To view a guide on how to install FFmpeg, press Help. - + Select FFmpeg Directory - + The provided FFmpeg directory is missing %1. Please make sure the correct directory was selected. - + FFmpeg has been sucessfully installed. - + Installation of FFmpeg failed. Check the log file for details. - + Could not start video dumping.<br>Refer to the log for details. Não foi possível iniciar a extração de vídeo. <br>Consulte o registro para ver os detalhes. - + Recording %1 Gravando %1 - + Playing %1 / %2 Reproduzindo %1 / %2 - + Movie Finished Reprodução concluída - + Speed: %1% Velocidade: %1% - + Speed: %1% / %2% Velocidade: %1% / %2% - + Game: %1 FPS Jogo: %1 FPS - + Frame: %1 ms Quadro: %1 ms - + VOLUME: MUTE VOLUME: SILENCIADO - + VOLUME: %1% Volume percentage (e.g. 50%) VOLUME: %1% - + %1 is missing. Please <a href='https://citra-emu.org/wiki/dumping-system-archives-and-the-shared-fonts-from-a-3ds-console/'>dump your system archives</a>.<br/>Continuing emulation may result in crashes and bugs. %1 está em falta. <a href='https://citra-emu.org/wiki/dumping-system-archives-and-the-shared-fonts-from-a-3ds-console/'>Faça a extração dos arquivos do seu sistema</a>.<br/>Continuar a emulação pode causar travamentos e bugs. - + A system archive Um arquivo do sistema - + System Archive Not Found Arquivo de sistema não encontrado - + System Archive Missing Arquivo de sistema em falta - + Save/load Error Erro ao salvar/carregar - + Fatal Error Erro fatal - + A fatal error occurred. <a href='https://community.citra-emu.org/t/how-to-upload-the-log-file/296'>Check the log</a> for details.<br/>Continuing emulation may result in crashes and bugs. Ocorreu um erro fatal. Para mais detalhes, <a href='https://community.citra-emu.org/t/how-to-upload-the-log-file/296'>consulte o registro</a>. Continuar a emulação pode causar travamentos e bugs. - + Fatal Error encountered Erro fatal encontrado - + Continue Continuar - + Quit Game Sair do jogo - + OK OK - + Would you like to exit now? Deseja sair agora? - + The game is still running. Would you like to stop emulation? O jogo ainda está em execução. Deseja parar a emulação? - + Playback Completed Reprodução concluída - + Movie playback completed. Reprodução dos passos concluída. - + Primary Window Janela Principal - + Secondary Window Janela Secundária @@ -4476,22 +4476,22 @@ To view a guide on how to install FFmpeg, press Help. GPUCommandListModel - + Command Name Nome do comando - + Register Registrador - + Mask Máscara - + New Value Novo valor @@ -4499,23 +4499,23 @@ To view a guide on how to install FFmpeg, press Help. GPUCommandListWidget - + Pica Command List Lista de comandos Pica - - + + Start Tracing Iniciar rastreamento - + Copy All Copiar tudo - + Finish Tracing Finalizar rastreamento @@ -4523,7 +4523,7 @@ To view a guide on how to install FFmpeg, press Help. GPUCommandStreamWidget - + Graphics Debugger Depurador gráfico @@ -4531,42 +4531,42 @@ To view a guide on how to install FFmpeg, press Help. GRenderWindow - + OpenGL not available! OpenGL indisponível! - + OpenGL shared contexts are not supported. Shared contexts do OpenGL não são suportados. - + Error while initializing OpenGL! Erro ao inicializar o OpenGL! - + Your GPU may not support OpenGL, or you do not have the latest graphics driver. Sua GPU pode não suportar OpenGL, ou você não possui o driver gráfico mais recente. - + Error while initializing OpenGL 4.3! Erro ao inicializar OpenGL 4.3! - + Your GPU may not support OpenGL 4.3, or you do not have the latest graphics driver.<br><br>GL Renderer:<br>%1 Sua GPU pode não ser compatível com o OpenGL 4.3 ou você não possui o driver mais recente.<br><br>GL Renderer:<br>%1 - + Error while initializing OpenGL ES 3.2! - + Your GPU may not support OpenGL ES 3.2, or you do not have the latest graphics driver.<br><br>GL Renderer:<br>%1 @@ -4574,134 +4574,134 @@ To view a guide on how to install FFmpeg, press Help. GameList - - + + Compatibility Compatibilidade - - + + Region Região - - + + File type Tipo de arquivo - - + + Size Tamanho - + Open Save Data Location Abrir local dos dados salvos - + Open Extra Data Location Abrir local dos dados extras - + Open Application Location Abrir local do aplicativo - + Open Update Data Location Abrir local dos dados de atualizações - + Open DLC Data Location Abrir pasta de conteúdos adicionais - + Open Texture Dump Location Abrir local de extração das texturas - + Open Custom Texture Location Abrir local de texturas personalizadas - + Open Mods Location Abrir pasta de mods - + Dump RomFS Extrair RomFS - + Disk Shader Cache Cache de shaders em disco - + Open Shader Cache Location Abrir local do cache dos shaders - + Delete OpenGL Shader Cache Apagar cache de shaders do OpenGL - + Uninstall Desinstalar - + Everything Tudo - + Game Jogo - + Update Atualização - + DLC DLC - + Navigate to GameDB entry Abrir artigo do jogo no GameDB - + Properties Propriedades - - - - + + + + Citra Citra - + Are you sure you want to completely uninstall '%1'? This will delete the game if installed, as well as any installed updates or DLC. @@ -4710,59 +4710,59 @@ This will delete the game if installed, as well as any installed updates or DLC. Isso irá deletar o jogo caso ele esteja instalado, assim como qualquer atualização ou DLC instalada. - - + + %1 (Update) %1 (Atualização) - - + + %1 (DLC) %1 (DLC) - + Are you sure you want to uninstall '%1'? Tem certeza que quer desinstalar '%1'? - + Are you sure you want to uninstall the update for '%1'? Tem certeza que deseja desinstalar a atualização para '%1'? - + Are you sure you want to uninstall all DLC for '%1'? - + Scan Subfolders Examinar subpastas - + Remove Game Directory Remover pasta de jogos - + Move Up Mover para cima - + Move Down Mover para baixo - + Open Directory Location Abrir local da pasta - + Name Nome @@ -4770,82 +4770,82 @@ Isso irá deletar o jogo caso ele esteja instalado, assim como qualquer atualiza GameListItemCompat - + Perfect Perfeito - + Game functions flawless with no audio or graphical glitches, all tested functionality works as intended without any workarounds needed. O jogo funciona impecavelmente, sem nenhum problema de áudio ou nos gráficos. Todas as funcionalidades do jogo funcionam como deveriam, sem nenhuma solução alternativa necessária. - + Great Ótimo - + Game functions with minor graphical or audio glitches and is playable from start to finish. May require some workarounds. O jogo funciona com leves falhas gráficas ou de áudio e é jogável do início ao fim. Pode exigir algumas soluções alternativas. - + Okay Bom - + Game functions with major graphical or audio glitches, but game is playable from start to finish with workarounds. O jogo funciona com graves falhas gráficas ou de áudio, mas é jogável do início ao fim com o uso de soluções alternativas. - + Bad Ruim - + Game functions, but with major graphical or audio glitches. Unable to progress in specific areas due to glitches even with workarounds. O jogo funciona, só que com problemas significativos nos gráficos ou no áudio. Não é possível progredir em áreas específicas por conta de tais problemas, mesmo com soluções alternativas. - + Intro/Menu Intro/menu - + Game is completely unplayable due to major graphical or audio glitches. Unable to progress past the Start Screen. É impossível jogar o jogo devido a grandes problemas nos gráficos ou no áudio. Não é possível passar da tela inicial do jogo. - + Won't Boot Não inicia - + The game crashes when attempting to startup. O jogo trava ou fecha-se abruptamente ao tentar iniciá-lo. - + Not Tested Não testado - + The game has not yet been tested. O jogo ainda não foi testado. @@ -4853,7 +4853,7 @@ tela inicial do jogo. GameListPlaceholder - + Double-click to add a new folder to the game list Clique duas vezes para adicionar uma pasta à lista de jogos @@ -4861,27 +4861,27 @@ tela inicial do jogo. GameListSearchField - + of de - + result resultado - + results resultados - + Filter: Filtro: - + Enter pattern to filter Insira o padrão para filtrar @@ -4889,47 +4889,47 @@ tela inicial do jogo. GameRegion - + Japan Japão - + North America América do Norte - + Europe Europa - + Australia Austrália - + China China - + Korea Coreia - + Taiwan Taiwan - + Invalid region Região inválida - + Region free Livre de região @@ -4937,23 +4937,23 @@ tela inicial do jogo. GraphicsBreakPointsWidget - + Pica Breakpoints Pontos de interrupção Pica - - + + Emulation running Emulação em execução - + Resume Retomar - + Emulation halted at breakpoint Emulação interrompida no ponto de interrupção @@ -4961,146 +4961,146 @@ tela inicial do jogo. GraphicsSurfaceWidget - + Pica Surface Viewer Visualizador de superfícies Pica - + Color Buffer Buffer de cor - + Depth Buffer Buffer de profundidade - + Stencil Buffer Stencil Buffer - + Texture 0 Textura 0 - + Texture 1 Textura 1 - + Texture 2 Textura 2 - + Custom Personalizado - + Unknown Desconhecido - + Save Salvar - + Source: Fonte: - + Physical Address: Endereço físico: - + Width: Largura: - + Height: Altura: - + Format: Formato: - + X: X: - + Y: Y: - + Pixel out of bounds Píxel fora dos limites - + (unable to access pixel data) (não foi possível acessar o dado do píxel) - + (invalid surface address) (endereço inválido de superfície) - + (unknown surface format) (formato de superfície desconhecido) - + Portable Network Graphic (*.png) Portable Network Graphic (*.png) - + Binary data (*.bin) Dado binário (*.bin) - + Save Surface Salvar superfície - - - - + + + + Error Erro - - + + Failed to open file '%1' Falha ao abrir o arquivo '%1' - + Failed to save surface data to file '%1' Falha ao salvar os dados de superfície no arquivo '%1' - + Failed to completely write surface data to file. The saved data will likely be corrupt. Falha ao salvar integralmente os dados de superfície no arquivos. Os dados salvos provavelmente estarão corrompidos. @@ -5108,42 +5108,42 @@ tela inicial do jogo. GraphicsTracingWidget - + CiTrace Recorder Gravador CiTrace - + Start Recording Iniciar gravação - + Stop and Save Parar e salvar - + Abort Recording Interromper gravação - + Save CiTrace Salvar CiTrace - + CiTrace File (*.ctf) Arquivo CiTrace (*.ctf) - + CiTracing still active CiTracing ainda ativo - + A CiTrace is still being recorded. Do you want to save it? If not, all recorded data will be discarded. Um CiTrace ainda está sendo gravado. Deseja salvá-lo? Caso contrário, todos os dados gravados serão descartados. @@ -5151,17 +5151,17 @@ tela inicial do jogo. GraphicsVertexShaderModel - + Offset Offset - + Raw Raw - + Disassembly Disassembly @@ -5169,127 +5169,127 @@ tela inicial do jogo. GraphicsVertexShaderWidget - + Save Shader Dump Salvar extração de shader - + Shader Binary (*.shbin) Shader binário (*.shbin) - + Pica Vertex Shader Shader de vértices do Pica - + (data only available at vertex shader invocation breakpoints) (dados apenas disponíveis nos pontos de interrupção de invocação de vertex shaders) - + Dump Extração - + Input Data Dado de entrada - + Attribute %1 Atributo %1 - + Cycle Index: Índice cíclico: - + SRC1: %1, %2, %3, %4 SRC1: %1, %2, %3, %4 - + SRC2: %1, %2, %3, %4 SRC2: %1, %2, %3, %4 - + SRC3: %1, %2, %3, %4 SRC3: %1, %2, %3, %4 - + DEST_IN: %1, %2, %3, %4 DEST_IN: %1, %2, %3, %4 - + DEST_OUT: %1, %2, %3, %4 DEST_OUT: %1, %2, %3, %4 - + Address Registers: %1, %2 Registradores de endereço: %1, %2 - + Compare Result: %1, %2 Comparar resultado: %1, %2 - + Static Condition: %1 Condição estática: %1 - + Dynamic Conditions: %1, %2 Condições dinâmicas: %1, %2 - + Loop Parameters: %1 (repeats), %2 (initializer), %3 (increment), %4 Parâmetros do ciclo: %1 (repetições), %2 (inicializador), %3 (incremento), %4 - + Instruction offset: 0x%1 Offset de instrução: 0x%1 - + -> 0x%2 -> 0x%2 - + (last instruction) (última instrução) @@ -5297,67 +5297,67 @@ tela inicial do jogo. HostRoom - + Create Room Criar sala - + Room Name Nome da sala - + Preferred Game Jogo preferido - + Max Players N.º máximo de jogadores - + Username Nome de usuário - + (Leave blank for open game) (Deixe em branco para deixar a sala aberta) - + Password Senha - + Port Porta - + Room Description Descrição da sala - + Load Previous Ban List Carregar lista de banimentos anteriores - + Public Pública - + Unlisted Não listada - + Host Room Hospedar sala @@ -5365,12 +5365,12 @@ tela inicial do jogo. HostRoomWindow - + Error Erro - + Failed to announce the room to the public lobby. In order to host a room publicly, you must have a valid Citra account configured in Emulation -> Configure -> Web. If you do not want to publish a room in the public lobby, then select Unlisted instead. Debug Message: Falha ao anunciar a sala na sala de espera pública. Para poder hospedar uma sala publicamente, é necessário ter uma conta válida do Citra configurada em Emulação > Configurar... > Rede. Se não quiser publicar uma sala na sala de espera pública, deixe-a como "não listada". @@ -5380,47 +5380,47 @@ Mensagem para depuração: IPCRecorder - + IPC Recorder Gravador IPC - + Enable Recording Ativar gravação - + Filter: Filtrar: - + Leave empty to disable filtering Deixe vazio para não filtrar - + # # - + Status Estado - + Service Serviço - + Function Função - + Clear Limpar @@ -5428,47 +5428,47 @@ Mensagem para depuração: IPCRecorderWidget - + Invalid Inválido - + Sent Enviado - + Handling Tratando - + Success Êxito - + Error Erro - + HLE Unimplemented HLE não implementado - + HLE HLE - + LLE LLE - + Unknown Desconhecido @@ -5476,7 +5476,7 @@ Mensagem para depuração: LLEServiceModulesWidget - + Toggle LLE Service Modules Ativar/desativar módulos de serviço LLE @@ -5484,54 +5484,54 @@ Mensagem para depuração: LoadingScreen - + Loading Shaders 387 / 1628 Carregando shaders 387 / 1628 - + Loading Shaders %v out of %m Carregando shaders %v de %m - + Estimated Time 5m 4s Tempo estimado 5m 4s - + Loading... Carregando... - + Preloading Textures %1 / %2 - + Preparing Shaders %1 / %2 Preparando shaders %1 / %2 - + Loading Shaders %1 / %2 Carregando shaders %1 / %2 - + Launching... Iniciando... - + Now Loading %1 Carregando %1 - + Estimated Time %1 Tempo estimado %1 @@ -5539,83 +5539,83 @@ Mensagem para depuração: Lobby - + Public Room Browser Navegador de salas públicas - - + + Nickname Apelido - + Filters Filtros - + Search Procurar - + Games I Own Jogos que possuo - + Hide Empty Rooms Ocultar salas vazias - + Hide Full Rooms Ocultar salas cheias - + Refresh Lobby Atualizar sala de espera - + Password Required to Join É necessária uma senha para entrar - + Password: Senha: - + Room Name Nome da sala - + Preferred Game Jogo preferido - + Host Anfitrião - + Players Jogadores - + Refreshing Atualizando - + Refresh List Atualizar lista @@ -5623,362 +5623,362 @@ Mensagem para depuração: MainWindow - + Citra Citra - + &File &Arquivo - + Boot Home Menu Iniciar menu Home - + Recent Files Arquivos recentes - + Amiibo Amiibo - + &Emulation &Emulação - + Save State Salvar estado - + Load State Carregar estado - + &View &Exibir - + Debugging Depuração - + Screen Layout Estilo da tela - + Multiplayer Multijogador - + Tools Ferramentas - + Movie Gravações (TAS) - + Frame Advance Avanço manual de quadros - + &Help A&juda - + Load File... Carregar arquivo... - + Install CIA... Instalar CIA... - + JPN JPN - + USA USA - + EUR EUR - + AUS AUS - + CHN CHN - + KOR KOR - + TWN TWN - + E&xit &Sair - + &Pause &Pausar - + &Stop P&arar - + Save Salvar - + Load Carregar - + FAQ Perguntas frequentes - + About Citra Sobre o Citra - + Single Window Mode Modo de janela única - + Save to Oldest Slot Salvar no espaço mais antigo - + Load from Newest Slot Carregar do espaço mais recente - + Configure... Configurar... - + Display Dock Widget Headers Mostrar títulos de widgets afixados - + Show Filter Bar Mostrar barra de filtro - + Show Status Bar Mostrar barra de status - + Create Pica Surface Viewer Criar visualizador de superfícies Pica - + Record... Gravar... - + Play... Reproduzir... - + Close Fechar - + Save without Closing Fechar sem salvar - + Read-Only Mode Modo apenas leitura - + Enable Frame Advancing Ativar avanço manual de quadros - + Advance Frame Avançar quadro - + Capture Screenshot Tirar uma captura de tela - + Dump Video Gravar vídeo - + Browse Public Game Lobby Navegar pelas salas públicas - + Create Room Criar sala - + Leave Room Sair da sala - + Direct Connect to Room Conectar-se diretamente a uma sala - + Show Current Room Mostrar sala atual - + Fullscreen Tela inteira - + Modify Citra Install Modificar instalação do Citra - + Opens the maintenance tool to modify your Citra installation Abre a ferramenta de manutenção para modificar a sua instalação do Citra - + Default Padrão - + Single Screen Tela única - + Large Screen Tela grande - + Hybrid Screen - + Side by Side Lado a lado - + Separate Windows Janelas separadas - + Swap Screens Trocar telas - + Rotate Upright Girar verticalmente - + Check for Updates Procurar atualizações - + Report Compatibility Informar compatibilidade - + Restart Reiniciar - + Load... Carregar... - + Remove Remover - + Open Citra Folder Abrir pasta do Citra - + Configure Current Game... Configurar jogo atual... @@ -5986,7 +5986,7 @@ Mensagem para depuração: MicroProfileDialog - + MicroProfile MicroProfile @@ -5994,48 +5994,48 @@ Mensagem para depuração: ModerationDialog - + Moderation Moderação - + Ban List Lista de banimentos - - + + Refreshing Atualizando - + Unban Revogar banimento - + Subject Alvo - + Type Tipo - + Forum Username Nome de usuário no fórum - + IP Address Endereço IP - + Refresh Atualizar @@ -6043,91 +6043,91 @@ Mensagem para depuração: MoviePlayDialog - - + + Play Movie Reproduzir gravação - + File: Arquivo: - + ... ... - + Info Informação - + Game: Jogo: - + Author: Autor: - + Rerecord Count: Número de regravações: - + Length: Duração: - + Current running game will be stopped. O jogo atualmente em execução será encerrado. - + <br>Current recording will be discarded. <br>A gravação atual será descartada. - + Citra TAS Movie (*.ctm) Gravação TAS do Citra (*.ctm) - + Invalid movie file. Arquivo de gravação inválido. - + Revision dismatch, playback may desync. Há uma diferença de revisões - a reprodução pode dessincronizar. - + Indicated length is incorrect, file may be corrupted. A duração indicada está incorreta - o arquivo pode estar corrompido. - - - - + + + + (unknown) (desconhecido) - + Game used in this movie is not in game list. O jogo usado nesta gravação não está na lista de jogos. - + (>1 day) (>1 dia) @@ -6135,43 +6135,43 @@ Mensagem para depuração: MovieRecordDialog - - + + Record Movie Criar gravação - + File: Arquivo: - + ... ... - + Author: Autor: - + Current running game will be restarted. O jogo atualmente em execução será reiniciado. - + <br>Current recording will be discarded. <br>A gravação atual será descartada. - + Recording will start once you boot a game. A gravação será iniciada assim que você iniciar um jogo. - + Citra TAS Movie (*.ctm) Gravação TAS do Citra (*.ctm) @@ -6179,44 +6179,44 @@ Mensagem para depuração: MultiplayerState - - + + Current connection status Estado atual da conexão - - + + Not Connected. Click here to find a room! Não conectado. Clique aqui para encontrar uma sala! - - - + + + Connected Conectado - - + + Not Connected Não conectado - + Error Erro - + Failed to update the room information. Please check your Internet connection and try hosting the room again. Debug Message: Falha ao atualizar as informações da sala. Verifique a conexão à Internet e tente criar a sala novamente. Mensagem para depuração: - + New Messages Received Novas mensagens recebidas @@ -6224,22 +6224,22 @@ Mensagem para depuração: NetworkMessage - + Leave Room Sair da sala - + You are about to close the room. Any network connections will be closed. Você está prestes a fechar a sala. Quaisquer conexões de rede existentes serão fechadas. - + Disconnect Desconectar - + You are about to leave the room. Any network connections will be closed. Você está prestes a sair da sala. Quaisquer conexões de rede existentes serão fechadas. @@ -6247,110 +6247,110 @@ Mensagem para depuração: NetworkMessage::ErrorManager - + Username is not valid. Must be 4 to 20 alphanumeric characters. - + Room name is not valid. Must be 4 to 20 alphanumeric characters. - + Username is already in use or not valid. Please choose another. - + IP is not a valid IPv4 address. O IP não é um endereço IPv4 válido. - + Port must be a number between 0 to 65535. - + You must choose a Preferred Game to host a room. If you do not have any games in your game list yet, add a game folder by clicking on the plus icon in the game list. - + Unable to find an internet connection. Check your internet settings. - + Unable to connect to the host. Verify that the connection settings are correct. If you still cannot connect, contact the room host and verify that the host is properly configured with the external port forwarded. - + Unable to connect to the room because it is already full. - + Creating a room failed. Please retry. Restarting Citra might be necessary. - + The host of the room has banned you. Speak with the host to unban you or try a different room. - + Version mismatch! Please update to the latest version of Citra. If the problem persists, contact the room host and ask them to update the server. - + Incorrect password. Senha incorreta. - + An unknown error occurred. If this error continues to occur, please open an issue - + Connection to room lost. Try to reconnect. - + You have been kicked by the room host. - + MAC address is already in use. Please choose another. - + Your Console ID conflicted with someone else's in the room. Please go to Emulation > Configure > System to regenerate your Console ID. - + You do not have enough permission to perform this action. - + The user you are trying to kick/ban could not be found. They may have left the room. - + Error Erro @@ -6358,37 +6358,37 @@ They may have left the room. OptionSetDialog - + Options - + Unset - + unknown - + %1 &lt;%2> %3 - + Range: %1 - %2 - + custom personalizado - + %1 (0x%2) %3 @@ -6396,32 +6396,32 @@ They may have left the room. OptionsDialog - + Options - + Double click to see the description and change the values of the options. - + Specific - + Generic - + Name - + Value @@ -6429,157 +6429,157 @@ They may have left the room. QObject - + Supported image files (%1) Arquivos de imagem compatíveis (%1) - + Open File Abrir arquivo - + Error Erro - + Couldn't load the camera Não foi possível carregar a câmera - + Couldn't load %1 Não foi possível carregar %1 - - + + Shift Shift - - + + Ctrl Ctrl - - + + Alt Alt - - - + + + [not set] [não definido] - - + + Hat %1 %2 Hat %1 %2 - - - - - - + + + + + + Axis %1%2 Eixo %1%2 - - + + Button %1 Botão %1 - + GC Axis %1%2 Eixo GC %1%2 - + GC Button %1 Botão GC %1 - - - + + + [unknown] [desconhecido] - + [unused] [não utilizado] - + auto - + true - + false - - + + none - + %1 (0x%2) - + Invalid region Região inválida - + Installed Titles Títulos instalados - + System Titles Títulos do sistema - + Add New Game Directory Adicionar nova pasta de jogos - + Not playing a game Não está jogando - + %1 is not playing a game %1 não está jogando - + %1 is playing %2 %1 está jogando %2 @@ -6587,7 +6587,7 @@ They may have left the room. QtKeyboard - + Software Keyboard Teclado virtual @@ -6595,27 +6595,27 @@ They may have left the room. QtKeyboardDialog - + Text length is not correct (should be %1 characters) O comprimento do texto não está correto (deve ter %1 caracteres) - + Text is too long (should be no more than %1 characters) O texto é muito longo (deve ter no máximo %1 caracteres) - + Blank input is not allowed Não é permitido deixar em branco - + Empty input is not allowed Não é permitido deixar o campo vazio - + Validation error Erro de validação @@ -6623,12 +6623,12 @@ They may have left the room. QtMiiSelectorDialog - + Mii Selector Seletor de Mii - + Standard Mii Mii padrão @@ -6636,95 +6636,95 @@ They may have left the room. RecordDialog - + View Record Ver gravação - + Client Cliente - - + + Process: Processo: - - + + Thread: Thread: - - + + Session: Sessão: - + Server Servidor - + General Geral - + Client Port: Porta do cliente: - + Service: Serviço: - + Function: Função: - + Command Buffer Buffer de comando - + Select: Selecionar: - + Request Untranslated Solicitar não traduzido - + Request Translated Solicitar traduzido - + Reply Untranslated Responder não traduzido - + Reply Translated Responder traduzido - + OK OK - + null null @@ -6732,37 +6732,37 @@ They may have left the room. RegistersWidget - + Registers Registradores - + VFP Registers Registradores VFP - + VFP System Registers Registradores de sistema VFP - + Vector Length Comprimento de vetor - + Vector Stride Passo de vetor - + Rounding Mode Modo de arredondamento - + Vector Iteration Count Contagem de iterações de vetor @@ -6770,7 +6770,7 @@ They may have left the room. SequenceDialog - + Enter a hotkey Insira uma combinação @@ -6778,7 +6778,7 @@ They may have left the room. WaitTreeEvent - + reset type = %1 tipo de reset = %1 @@ -6786,12 +6786,12 @@ They may have left the room. WaitTreeMutex - + locked %1 times by thread: bloqueado %1 vezes pela thread: - + free livre @@ -6799,7 +6799,7 @@ They may have left the room. WaitTreeMutexList - + holding mutexes holding mutexes @@ -6807,12 +6807,12 @@ They may have left the room. WaitTreeObjectList - + waiting for all objects aguardando todos os objetos - + waiting for one of the following objects aguardando um dos seguintes objetos @@ -6820,12 +6820,12 @@ They may have left the room. WaitTreeSemaphore - + available count = %1 contagem disponível = %1 - + max count = %1 contagem máxima = %1 @@ -6833,112 +6833,112 @@ They may have left the room. WaitTreeThread - + running em execução - + ready pronto - + waiting for address 0x%1 aguardando endereço 0x%1 - + sleeping adormecido - + waiting for IPC response aguardando resposta IPC - + waiting for objects aguardando objetos - + waiting for HLE return aguardando retorno HLE - + dormant dormente - + dead morto - + PC = 0x%1 LR = 0x%2 PC = 0x%1 LR = 0x%2 - + default padrão - + all todos - + AppCore AppCore - + SysCore SysCore - + Unknown processor %1 Processador desconhecido %1 - + object id = %1 id do objeto = %1 - + processor = %1 processador = %1 - + thread id = %1 id do thread = %1 - + process = %1 (%2) processo = %1 (%2) - + priority = %1(current) / %2(normal) prioridade = %1(atual) / %2(normal) - + last running ticks = %1 últimos tiques executados = %1 - + not holding mutex not holding mutex @@ -6946,7 +6946,7 @@ They may have left the room. WaitTreeThreadList - + waited by thread aguardado pelo thread @@ -6954,17 +6954,17 @@ They may have left the room. WaitTreeTimer - + reset type = %1 tipo de reset = %1 - + initial delay = %1 atraso inicial = %1 - + interval delay = %1 intervalo de atraso = %1 @@ -6972,27 +6972,27 @@ They may have left the room. WaitTreeWaitObject - + [%1]%2 %3 [%1]%2 %3 - + waited by no thread aguardado por nenhum thread - + one shot one shot - + sticky sticky - + pulse pulso @@ -7000,7 +7000,7 @@ They may have left the room. WaitTreeWidget - + Wait Tree Árvore de espera diff --git a/dist/languages/ro_RO.ts b/dist/languages/ro_RO.ts index d6dbe5b42..d9a229e43 100644 --- a/dist/languages/ro_RO.ts +++ b/dist/languages/ro_RO.ts @@ -2,17 +2,17 @@ ARMRegisters - + ARM Registers Registre ARM - + Register Registru - + Value Valoare @@ -20,27 +20,27 @@ AboutDialog - + About Citra Despre Citra - - <html><head/><body><p><img src=":/icons/citra.png"/></p></body></html> - <html><head/><body><p><img src=":/icons/citra.png"/></p></body></html> + + <html><head/><body><p><img src=":/icons/lime.png"/></p></body></html> + <html><head/><body><p><img src=":/icons/lime.png"/></p></body></html> - + <html><head/><body><p><span style=" font-size:28pt;">Citra</span></p></body></html> <html><head/><body><p><span style=" font-size:28pt;">Citra</span></p></body></html> - + <html><head/><body><p>%1 | %2-%3 (%4)</p></body></html> <html><head/><body><p>%1 | %2-%3 (%4)</p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -57,12 +57,12 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">Acest software nu ar trebui să fie folosit pentru a juca jocuri pe care nu le-ați obținut în mod legal.</span></p></body></html> - + <html><head/><body><p><a href="https://citra-emu.org/"><span style=" text-decoration: underline; color:#039be5;">Website</span></a> | <a href="https://community.citra-emu.org/"><span style=" text-decoration: underline; color:#039be5;">Forum</span></a> | <a href="https://github.com/citra-emu"><span style=" text-decoration: underline; color:#039be5;">Source Code</span></a> | <a href="https://github.com/citra-emu/citra/graphs/contributors"><span style=" text-decoration: underline; color:#039be5;">Contributors</span></a> | <a href="https://github.com/citra-emu/citra/blob/master/license.txt"><span style=" text-decoration: underline; color:#039be5;">License</span></a></p></body></html> <html><head/><body><p><a href="https://citra-emu.org/"><span style=" text-decoration: underline; color:#039be5;">Website</span></a> | <a href="https://community.citra-emu.org/"><span style=" text-decoration: underline; color:#039be5;">Forum</span></a> | <a href="https://github.com/citra-emu"><span style=" text-decoration: underline; color:#039be5;">Cod Sursă</span></a> | <a href="https://github.com/citra-emu/citra/graphs/contributors"><span style=" text-decoration: underline; color:#039be5;">Contribuitori</span></a> | <a href="https://github.com/citra-emu/citra/blob/master/license.txt"><span style=" text-decoration: underline; color:#039be5;">Licență</span></a></p></body></html> - + <html><head/><body><p><span style=" font-size:7pt;">&quot;3DS&quot; is a trademark of Nintendo. Citra is not affiliated with Nintendo in any way.</span></p></body></html> <html><head/><body><p><span style=" font-size:7pt;">&quot;3DS&quot; este o marcă a Nintendo. Citra nu este partener cu Nintendo în niciun caz.</span></p></body></html> @@ -70,47 +70,47 @@ p, li { white-space: pre-wrap; } BreakPointModel - + Pica command loaded Comandă Pica încărcată - + Pica command processed Comandă Pica procesată - + Incoming primitive batch Pornind lot primitiv - + Finished primitive batch Lot primitiv terminat - + Vertex shader invocation Invocare de vertex shader - + Incoming display transfer Pornind transfer de afișaj - + GSP command processed Comandă GSP procesată - + Buffers swapped Buffere schimbate - + Unknown debug context event Eveniment de depanare necunoscut @@ -118,32 +118,32 @@ p, li { white-space: pre-wrap; } CalibrationConfigurationDialog - + Communicating with the server... Comunicând cu serverul... - + Cancel Anulare - + Touch the top left corner <br>of your touchpad. Atingeți colțul din stânga sus <br> al touchpad-ului. - + Now touch the bottom right corner <br>of your touchpad. Acum atingeți colțul din dreapta jos <br> al touchpad-ului. - + Configuration completed! Configurare completată! - + OK OK @@ -151,93 +151,93 @@ p, li { white-space: pre-wrap; } ChatRoom - + Room Window Fereastră de Sală - + Send Chat Message Trimite Mesaj în Chat - + Send Message Trimite Mesaj - + Members Membri - + %1 has joined %1 s-a alăturat - + %1 has left %1 a plecat - + %1 has been kicked %1 a fost dat afară - + %1 has been banned %1 a fost banat - + %1 has been unbanned %1 a fost debanat - + View Profile Vizualizează Profil - - + + Block Player Blochează Jucător - + When you block a player, you will no longer receive chat messages from them.<br><br>Are you sure you would like to block %1? Când blocați un jucător, nu veți mai primi mesaje de chat de la ei.<br><br>Sunteți sigur că doriți să blocați pe %1? - + Kick Dă afară - + Ban Banează - + Kick Player Dă afară pe Jucător - + Are you sure you would like to <b>kick</b> %1? Sunteți sigur că doriți să <b>dați afară</b> pe %1? - + Ban Player Banează Jucător - + Are you sure you would like to <b>kick and ban</b> %1? This would ban both their forum username and their IP address. @@ -249,22 +249,22 @@ Astfel vor fi banați din forum numele lor de utilizator și adresa IP. ClientRoom - + Room Window Fereastră de Sală - + Room Description Descrierea Sălii - + Moderation... Moderare... - + Leave Room Părăsește Sala @@ -272,17 +272,17 @@ Astfel vor fi banați din forum numele lor de utilizator și adresa IP. ClientRoomWindow - + Connected Conectat - + Disconnected Deconectat - + %1 (%2/%3 members) - connected %1 (%2/%3 membri) - conectat @@ -290,108 +290,108 @@ Astfel vor fi banați din forum numele lor de utilizator și adresa IP. CompatDB - + Report Compatibility Raportează Compatibiltate - - + + Report Game Compatibility Raportează Compatibiltatea Jocului - + <html><head/><body><p><span style=" font-size:10pt;">Should you choose to submit a test case to the </span><a href="https://citra-emu.org/game/"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">Citra Compatibility List</span></a><span style=" font-size:10pt;">, The following information will be collected and displayed on the site:</span></p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Hardware Information (CPU / GPU / Operating System)</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Which version of Citra you are running</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The connected Citra account</li></ul></body></html> <html><head/><body><p><span style=" font-size:10pt;">Dacă alegeți să trimiteți o probă la </span><a href="https://citra-emu.org/game/"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">Lista de Compatibilitate de Citra</span></a><span style=" font-size:10pt;">, Următoarea informație va fi colectată și afișată pe pagină:</span></p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Informații despre Hardware (CPU / GPU / Sistem de Operare)</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Ce versiune de Citra folosiți</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Contul conectat la Citra</li></ul></body></html> - + Perfect Perfect - + <html><head/><body><p>Game functions flawlessly with no audio or graphical glitches.</p></body></html> <html><head/><body><p>Jocul funcționează perfect fără probleme audio sau grafice.</p></body></html> - + Great Foarte bine - + <html><head/><body><p>Game functions with minor graphical or audio glitches and is playable from start to finish. May require some workarounds.</p></body></html> <html><head/><body><p>Jocul funcționează cu probleme grafice sau audio minore și poate fi jucat de la început până la sfârșit. Poate necesita unele soluții temporare.</p></body></html> - + Okay Bun - + <html><head/><body><p>Game functions with major graphical or audio glitches, but game is playable from start to finish with workarounds.</p></body></html> <html><head/><body><p>Jocul funcționează cu probleme grafice sau audio majore, dar jocul poate fi jucat de la început până la sfârșit cu soluții temporare.</p></body></html> - + Bad Rău - + <html><head/><body><p>Game functions, but with major graphical or audio glitches. Unable to progress in specific areas due to glitches even with workarounds.</p></body></html> <html><head/><body><p>Jocul funcționează, dar cu probleme grafice sau audio majore. Imposibil de progresat în anumite zone din cauza unor probleme chiar și cu soluții temporare.</p></body></html> - + Intro/Menu Introducere/Meniu - + <html><head/><body><p>Game is completely unplayable due to major graphical or audio glitches. Unable to progress past the Start Screen.</p></body></html> <html><head/><body><p>Jocul nu poate fi jucat din cauza unor probleme grafice sau audio majore. Nu se poate trece dincolo de ecranul de pornire.</p></body></html> - + Won't Boot Nu pornește - + <html><head/><body><p>The game crashes when attempting to startup.</p></body></html> <html><head/><body><p>Jocul se închide atunci când încearcă să pornească.</p></body></html> - + <html><head/><body><p>Independent of speed or performance, how well does this game play from start to finish on this version of Citra?</p></body></html> <html><head/><body><p>Indiferent de viteză sau performanță, cât de bine merge acest joc de la început până la sfârșit pe această versiune de Citra?</p></html> - + Thank you for your submission! Vă mulțumim pentru contribuție! - + Submitting Se trimite - + Communication error Eroare de comunicație - + An error occurred while sending the Testcase A apărut o eroare la trimiterea testului - + Next Următor @@ -399,93 +399,93 @@ Astfel vor fi banați din forum numele lor de utilizator și adresa IP. ConfigureAudio - + Output Ieșire - + Emulation: Emulare: - + HLE (fast) HLE (rapid) - + LLE (accurate) LLE (precis) - + LLE multi-core LLE multiprocesor - + Output Type Tipul de ieșire - + Output Device dispozitiv de ieșire - + This post-processing effect adjusts audio speed to match emulation speed and helps prevent audio stutter. This however increases audio latency. Acest efect de post-procesare ajustează viteza audio pentru a se potrivi la viteza emulatorului și ajută la împiedicarea bâlbâielilor audio. Acest lucru, totuși, mărește latența audio. - + Enable audio stretching Activează întinderea audio - + Use global volume Utilizează volum global - + Set volume: Setează volum - + Volume: Volum: - + 0 % 0 % - + Microphone Microfon - + Input Type Tip de control - + Input Device Control - - + + Auto - + %1% Volume percentage (e.g. 50%) %1% @@ -494,203 +494,203 @@ Astfel vor fi banați din forum numele lor de utilizator și adresa IP. ConfigureCamera - + Form Model - + Camera Cameră - - + + Select the camera to configure Selectați camera pentru a configura - + Camera to configure: Camera pentru configurare: - + Front Față - + Rear Spate - - + + Select the camera mode (single or double) Selectați modul camerei (simplu sau dublu) - + Camera mode: Modul camerei: - + Single (2D) Simplă (2D) - + Double (3D) Dublă (3D) - - + + Select the position of camera to configure Selectați poziția camerei pentru a configura - + Camera position: Poziția camerei - + Left Stânga - + Right Dreapta - + Configuration Configurație - - + + Select where the image of the emulated camera comes from. It may be an image or a real camera. Selectați de unde provine imaginea camerei emulate. Poate fi o imagine sau o cameră reală. - + Camera Image Source: Sursă de Imagine de la Cameră: - + Blank (blank) Gol (negru) - + Still Image (image) Imagine Statică (imagine) - + System Camera (qt) Cameră de Sistem (qt) - + File: Fișier: - + ... ... - - + + Select the system camera to use Selectați camera de sistem pentru a utiliza - + Camera: Cameră: - + <Default> <Default> - - + + Select the image flip to apply Selectați rotația imaginii - + Flip: Rotație: - + None Niciuna - + Horizontal Orizontală - + Vertical Verticală - + Reverse Inversată - + Select an image file every time before the camera is loaded Selectați o imagine de fiecare dată înainte de a încărca camera - + Prompt before load Solicită înainte de încărcare - + Preview Previzualizare - + Resolution: 512*384 Rezoluție: 512*384 - + Click to preview Apăsați pentru previzualizare - + Resolution: %1*%2 Rezoluție: %1*%2 - + Supported image files (%1) Fișiere de imagine suportate (%1) - + Open File Deschidere Fișier @@ -698,88 +698,88 @@ Astfel vor fi banați din forum numele lor de utilizator și adresa IP. ConfigureCheats - - + + Cheats Coduri de Trișat - + Add Cheat Adaugă Cod de Trișat - + Available Cheats: Coduri de Trișat Disponibile: - + Name Nume - + Type Tip - + Save Salvează - + Delete Șterge - + Name: Nume: - + Notes: Note: - + Code: Cod: - + Would you like to save the current cheat? Doriți să salvați codul de trișat actual? - - - + + + Save Cheat Salvează Cod de Trișat - + Please enter a cheat name. Introduceți un nume al codului de trișat. - + Please enter the cheat code. Introduceți codul de trișat. - + Cheat code line %1 is not valid. Would you like to ignore the error and continue? Linia de cod de trișat %1 nu este validă. Doriți să ignorați eroarea și să continuați? - - + + [new cheat] [nou cod de trișat] @@ -787,127 +787,127 @@ Doriți să ignorați eroarea și să continuați? ConfigureDebug - + Form Formular - + GDB GDB - + Enable GDB Stub Activează Stub de GDB - + Port: Port: - + Logging Registru - + Global Log Filter Filtru de Registru Global - + Show Log Console (Windows Only) Afișează Consola de Registru (Numai pentru Windows) - + Open Log Location Deschide Locația Registrului - + CPU CPU - + Use global clock speed Foloseste viteza globală a ceasului - + Set clock speed: Setează viteza ceasului: - + CPU Clock Speed Viteza ceasului CPU - + <html><body>Changes the emulated CPU clock frequency.<br>Underclocking can increase performance but may cause the game to freeze.<br>Overclocking may reduce in game lag but also might cause freezes</body></html> <html><body>Schimbă frecvența ceasului CPU emulat.<br>Underclocking poate crește in performanță, dar poate face jocul sa inghețe.<br>Overclocking poate să reducă lag-ul din joc dar poate face și înghețări ale jocului</body></html> - + <html><head/><body><p>Enables the use of the ARM JIT compiler for emulating the 3DS CPUs. Don't disable unless for debugging purposes</p></body></html> - + Enable CPU JIT Activează CPU JIT - + Enable debug renderer - + Dump command buffers - + Miscellaneus - + <html><head/><body><p>Introduces a delay to the first ever launched app thread if LLE modules are enabled, to allow them to initialize.</p></body></html> - + Delay app start for LLE module initialization - + <html><head/><body><p>CPU Clock Speed Information<br/>Underclocking can increase performance but may cause the game to freeze.<br/>Overclocking may reduce in game lag but also might cause freezes</p></body></html> - + Validation layer not available - + Unable to enable debug renderer because the layer <strong>VK_LAYER_KHRONOS_validation</strong> is missing. Please install the Vulkan SDK or the appropriate package of your distribution - + Command buffer dumping not available - + Unable to enable command buffer dumping because the layer <strong>VK_LAYER_LUNARG_api_dump</strong> is missing. Please install the Vulkan SDK or the appropriate package of your distribution @@ -915,92 +915,92 @@ Doriți să ignorați eroarea și să continuați? ConfigureDialog - + Citra Configuration Configurație Citra - - - + + + General General - - - + + + System Sistem - - + + Input Controale - - + + Hotkeys Taste de Scurtătură - - + + Graphics Grafică - - + + Enhancements - - - + + + Audio Audio - - + + Camera Cameră - - + + Debug Depanare - - + + Storage Stocare - - + + Web Web - - + + UI UI - + Controls Controale - + Advanced Avansat @@ -1008,278 +1008,278 @@ Doriți să ignorați eroarea și să continuați? ConfigureEnhancements - + Form - + Renderer - + Internal Resolution Rezoluție internă - + Auto (Window Size) - + Native (400x240) Nativ (400x240) - + 2x Native (800x480) 2x Nativ (800x480) - + 3x Native (1200x720) 3x Nativ (1200x720) - + 4x Native (1600x960) 4x Nativ (1600x960) - + 5x Native (2000x1200) 5x Nativ (2000x1200) - + 6x Native (2400x1440) 6x Nativ (2400x1440) - + 7x Native (2800x1680) 7x Nativ (2800x1680) - + 8x Native (3200x1920) 8x Nativ (3200x1920) - + 9x Native (3600x2160) 9x Nativ (3600x2160) - + 10x Native (4000x2400) 10x Nativ (4000x2400) - + Enable Linear Filtering - + Post-Processing Shader - + Texture Filter - + None - + Anime4K - + Bicubic - + ScaleForce - + xBRZ - + MMPX - + Stereoscopy - + Stereoscopic 3D Mode - + Off Închis - - + + Side by Side - + Anaglyph - + Interlaced - + Reverse Interlaced - + Depth Adâncime - + % % - + Eye to Render in Monoscopic Mode - + Left Eye (default) - + Right Eye - + Layout - + Screen Layout: - + Default - + Single Screen - + Large Screen - + Separate Windows - + Hybrid Screen - + Swap Screens - + Rotate Screens Upright - + Large Screen Proportion: - + Background Color: Culoare de fundal - + Utility Utilizare - + <html><head/><body><p>Replace textures with PNG files.</p><p>Textures are loaded from load/textures/[Title ID]/.</p></body></html> - + Use Custom Textures - + <html><head/><body><p>Dump textures to PNG files.</p><p>Textures are dumped to dump/textures/[Title ID]/.</p></body></html> - + Dump Textures - + <html><head/><body><p>Load all custom textures into memory on boot, instead of loading them when the game requires them.</p></body></html> - + Preload Custom Textures - + <html><head/><body><p>Load custom textures asynchronously with background threads to reduce loading stutter</p></body></html> - + Async Custom Texture Loading @@ -1287,136 +1287,136 @@ Doriți să ignorați eroarea și să continuați? ConfigureGeneral - + Form Formular - + General General - + Confirm exit while emulation is running Confirmați ieșirea în timp ce emularea rulează - + Pause emulation when in background - + Mute audio when in background - + Hide mouse on inactivity Ascunde mouse-ul atunci când este inactiv - + Enable Gamemode - + Updates Actualizări - + Check for updates on start Caută actualizări la pornire - + Silently auto update after closing Actualizează automatic în mod silențios după închidere - + Emulation Emulare - + Region: Regiune: - + Auto-select Selectează Automat - + Use global emulation speed - + Set emulation speed: - + Emulation Speed: Viteza Emulării: - + Screenshots Capturi de ecran - + Use global screenshot path - + Set screenshot path: - + Save Screenshots To Salvează capturile de ecran în - + ... ... - + Reset All Settings Resetați Toate Setările - - - - - + + + + + unthrottled - + Select Screenshot Directory - + Citra Citra - + Are you sure you want to <b>reset your settings</b> and close Citra? Sunteți sigur că doriți să<b>resetați configurațiile</b>și să închideți Citra? @@ -1424,157 +1424,157 @@ Doriți să ignorați eroarea și să continuați? ConfigureGraphics - + Form Formular - + Graphics - + API Settings - + Graphics API - + Software Software - + OpenGL OpenGL - + Vulkan - + Physical Device - + OpenGL Renderer - + SPIR-V Shader Generation - + Renderer Renderizare - + <html><head/><body><p>Use the selected graphics API to accelerate shader emulation.</p><p>Requires a relatively powerful GPU for better performance.</p></body></html> - + Enable Hardware Shader Activează Hardware Shader - + <html><head/><body><p>Correctly handle all edge cases in multiplication operation in shaders. </p><p>Some games requires this to be enabled for the hardware shader to render properly.</p><p>However this would reduce performance in most games.</p></body></html> <html><head/><body><p>Corectează cu ușurință toate cazurile extreme în procesul de multiplicare de shadere.</p><p>Unele jocuri necesită ca acest lucru să fie activat pentru ca shader-ul hardware-ului să se interpreteze corect.</p><p>Cu toate acestea, acest lucru ar reduce performanța în majoritatea jocurilor.</p></body></html> - + Accurate Multiplication Înmulțire Precisă - + <html><head/><body><p>Use the JIT engine instead of the interpreter for software shader emulation. </p><p>Enable this for better performance.</p></body></html> <html><head/><body><p>Folosește motorul JIT în loc de interpreter pentru emularea de shader de software. </p><p>Activați pentru performantă mai bună.</p></body></html> - + Enable Shader JIT Activează Shader-ul JIT - + <html><head/><body><p>Compile shaders using background threads to avoid shader compilation stutter. Expect temporary graphical glitches</p></body></html> - + Enable Async Shader Compilation - + <html><head/><body><p>Perform presentation on separate threads. Improves performance when using Vulkan in most games.</p></body></html> - + Enable Async Presentation - + Advanced Avansat - + <html><head/><body><p>Overrides the sampling filter used by games. This can be useful in certain cases with poorly behaved games when upscaling. If unsure set this to Game Controlled</p></body></html> - + Texture Sampling - + Game Controlled - + Nearest Neighbor - + Linear - + <html><head/><body><p>Reduce stuttering by storing and loading generated shaders to disk.</p></body></html> - + Use Disk Shader Cache - + VSync prevents the screen from tearing, but some graphics cards have lower performance with VSync enabled. Keep it enabled if you don't notice a performance difference. - + Enable VSync Permite VSync @@ -1582,63 +1582,63 @@ Doriți să ignorați eroarea și să continuați? ConfigureHotkeys - + Hotkey Settings Setări de Taste de Scurtătură - + Double-click on a binding to change it. Faceți dublu click pentru a adăuga un folder nou în lista de jocuri - + Clear All - + Restore Defaults - + Action Acțiuni - + Hotkey Tastă de Scurtătură - - + + Conflicting Key Sequence Secvență de taste deja folosită - + The entered key sequence is already assigned to: %1 - + A 3ds button - + Restore Default - + Clear - + The default key sequence is already assigned to: %1 @@ -1646,307 +1646,307 @@ Doriți să ignorați eroarea și să continuați? ConfigureInput - + ConfigureInput ConfigureInput - + Profile Profil - + New Nou - + Delete Șterge - + Rename Redenumește - + Face Buttons Butoane Frontale - + Y: Y: - + X: X: - + B: B: - + A: A: - + Directional Pad Pad de Control - - - + + + Up: Sus: - - - + + + Down: Jos: - - - + + + Left: Stânga: - - - + + + Right: Dreapta: - + Misc. Diverse - + Start: Start: - + Select: Select: - + Home: Home: - + Power: - + Circle Mod: Circle Mod: - + GPIO14: GPIO14: - + Debug: Depanare: - + Circle Pad Pad Circular - - - + + + Set Analog Stick Setează Stick-ul Analogic - - + + Deadzone: 0 - + C-Stick C-Stick - + Shoulder Buttons Butoane Spate - + ZR: ZR: - + ZL: ZL: - + L: L: - + R: R: - + Motion / Touch... Mișcare / Tactil... - + Auto Map - + Clear All Restabilește Tot - + Restore Defaults Restaurează Setările Implicite - - - + + + Clear Restabilește - - - + + + [not set] [nu este setat] - - - + + + Restore Default Restaurează Setările Implicite - - + + Information Informație - + After pressing OK, first move your joystick horizontally, and then vertically. După ce apăsați OK, mișcați joystick-ul pe orizontală, apoi pe verticală. - - + + Deadzone: %1% - - + + Modifier Scale: %1% - + Warning - + Auto mapping failed. Your controller may not have a corresponding mapping - + After pressing OK, press any button on your joystick - + [press key] [apăsați tasta] - + Error! Eroare! - + You're using a key that's already bound. Utilizați o tastă care este deja asignată. - + New Profile Profil Nou - + Enter the name for the new profile. Introduceți numele profilului nou. - + Delete Profile Șterge Profil - + Delete profile %1? Ștergeți profilul %1? - + Rename Profile Redenumește Profil - + New name: Nume nou: - + Duplicate profile name Duplichează numele de profil - + Profile name already exists. Please choose a different name. Numele de profil există deja. Alegeți un alt nume. @@ -1954,198 +1954,198 @@ Doriți să ignorați eroarea și să continuați? ConfigureMotionTouch - + Configure Motion / Touch Configurare Mișcare / Tactil - + Motion Mișcare - + Motion Provider: Sursă de Mișcare: - + Sensitivity: Sensibilitate: - + Controller: Controller: - - - - - + + + + + Configure Configurare - + Touch Mișcare - + Touch Provider: Sursă de Atingere: - + Calibration: Calibrare: - + (100, 50) - (1800, 850) (100, 50) - (1800, 850) - + Use button mapping: - + CemuhookUDP Config Configurare de CemuhookUDP - + You may use any Cemuhook compatible UDP input source to provide motion and touch input. Puteți folosi orice controller UDP compatibil cu Cemuhook pentru a controla mișcarea și funcțiile tactile. - + Server: Server: - + Port: Port: - + Pad: Controller: - + Pad 1 Controller 1 - + Pad 2 Controller 2 - + Pad 3 Controller 3 - + Pad 4 Controller 4 - + Learn More Mai Multe Informații - - + + Test Test - + Mouse (Right Click) Mouse (Click Dreapta) - - + + CemuhookUDP CemuhookUDP - + SDL - + Emulator Window Fereastră de Emulator - + <a href='https://citra-emu.org/wiki/using-a-controller-or-android-phone-for-motion-or-touch-input'><span style="text-decoration: underline; color:#039be5;">Learn More</span></a> <a href='https://citra-emu.org/wiki/using-a-controller-or-android-phone-for-motion-or-touch-input'><span style="text-decoration: underline; color:#039be5;">Mai Multe Informații</span></a> - + Information Informații - + After pressing OK, press a button on the controller whose motion you want to track. - + [press button] - + Testing Testând - + Configuring Configurând - + Test Successful Testare Reușită - + Successfully received data from the server. Date primite de la server cu succes. - + Test Failed Testare Eșuată - + Could not receive valid data from the server.<br>Please verify that the server is set up correctly and the address and port are correct. Nu s-au putut primi date valide la server.<br>Verificați dacă serverul este configurat în mod corect și dacă adresa și portul sunt corecte. - + Citra Citra - + UDP Test or calibration configuration is in progress.<br>Please wait for them to finish. Proba UDP sau configurarea de calibrare este în curs.<br>Așteptați terminarea acestora. @@ -2153,97 +2153,97 @@ Doriți să ignorați eroarea și să continuați? ConfigurePerGame - + Dialog - + Info - + Size - + Format - + Name Nume - + Filepath - + Title ID - + Reset Game Settings - + Use global configuration (%1) - + General General - + System Sistem - + Enhancements - + Graphics - + Audio Audio - + Debug - + Cheats - + Properties - + Citra Citra - + Are you sure you want to <b>reset your settings for this game</b>? @@ -2251,65 +2251,65 @@ Doriți să ignorați eroarea și să continuați? ConfigureStorage - + Form - + Storage Stocare - + Use Virtual SD - + Custom Storage - + Use Custom Storage - + NAND Directory - - + + Open Deschide - - + + NOTE: This does not move the contents of the previous directory to the new one. - - + + Change Schimbă - + SDMC Directory - + Select NAND Directory - + Select SDMC Directory @@ -2317,1064 +2317,1064 @@ Doriți să ignorați eroarea și să continuați? ConfigureSystem - + Form Model - + System Settings Setări de Sistem - + Enable New 3DS mode - + Use LLE applets (if installed) - + Username Nume de utilizator - + Birthday Zi de naștere - + January Ianuarie - + February Februarie - + March Martie - + April Aprilie - + May Mai - + June Iunie - + July Iulie - + August August - + September Septembrie - + October Octombrie - + November Noiembrie - + December Decembrie - + Language Limbă - + Note: this can be overridden when region setting is auto-select Atenție: Acestea pot fi suprapuse când regiunea este pe selectare automată - + Japanese (日本語) Japoneză (日本語) - + English Engleză - + French (français) Franceză (français) - + German (Deutsch) Germană (Deutsch) - + Italian (italiano) Italiană (italiano) - + Spanish (español) Spaniolă (español) - + Simplified Chinese (简体中文) Chineză simplificată (简体中文) - + Korean (한국어) Coreană (한국어) - + Dutch (Nederlands) Olandeză (Nederlands) - + Portuguese (português) Portugheză (português) - + Russian (Русский) Rusă (Русский) - + Traditional Chinese (正體中文) Chineză tradițională (正體中文) - + Sound output mode Mod ieșire sunet - + Mono Mono - + Stereo Stereo - + Surround Surround - + Country Țară - + Clock Ceas - + System Clock Ceas de Sistem - + Fixed Time Oră Fixă - + Startup time Timp de Pornire - + yyyy-MM-ddTHH:mm:ss aaaa-LL-zzTOO:mm:ss - + Offset time - + days - + HH:mm:ss HH:mm:ss - + Initial System Ticks - + Random - + Fixed - + Initial System Ticks Override - + Play Coins: Monezi de Joc: - + Run System Setup when Home Menu is launched - + Console ID: ID Consolă: - + Regenerate Regenerează - + 3GX Plugin Loader: - + Enable 3GX plugin loader - + Allow games to change plugin loader state - + Download System Files from Nitendo servers - + Minimal - + Old 3DS - + New 3DS - + JPN JPN - + USA SUA - + EUR EUR - + AUS AUS - + CHN CHN - + KOR KOR - + TWN TWN - + Download - + System settings are available only when game is not running. Setările de sistem sunt disponibile doar atunci când jocul este oprit - + Japan Japonia - + Anguilla Anguilla - + Antigua and Barbuda Antigua și Barbuda - + Argentina Argentina - + Aruba Aruba - + Bahamas Bahamas - + Barbados Barbados - + Belize Belize - + Bolivia Bolivia - + Brazil Brazil - + British Virgin Islands Insulele Virgine Britanice - + Canada Canada - + Cayman Islands Insulele Cayman - + Chile Chile - + Colombia Columbia - + Costa Rica Costa Rica - + Dominica Dominica - + Dominican Republic Republica Dominicană - + Ecuador Ecuador - + El Salvador El Salvador - + French Guiana Guyana Franceză - + Grenada Grenada - + Guadeloupe Guadeloupe - + Guatemala Guatemala - + Guyana Guyana - + Haiti Haiti - + Honduras Honduras - + Jamaica Jamaica - + Martinique Martinica - + Mexico Mexic - + Montserrat Montserrat - + Netherlands Antilles Antilele Olandeze - + Nicaragua Nicaragua - + Panama Panama - + Paraguay Paraguay - + Peru Peru - + Saint Kitts and Nevis Sfântul Cristofor și Nevis - + Saint Lucia Sfânta Lucia - + Saint Vincent and the Grenadines Sfântul Vincențiu și Grenadinele - + Suriname Surinam - + Trinidad and Tobago Trinidad și Tobago - + Turks and Caicos Islands Insulele Turks și Caicos - + United States Statele Unite - + Uruguay Uruguay - + US Virgin Islands Insulele Virgine Americane - + Venezuela Venezuela - + Albania Albania - + Australia Australia - + Austria Austria - + Belgium Belgia - + Bosnia and Herzegovina Bosnia și Herțegovina - + Botswana Botswana - + Bulgaria Bulgaria - + Croatia Croația - + Cyprus Cipru - + Czech Republic Republica Cehă - + Denmark Danemarca - + Estonia Estonia - + Finland Finlanda - + France Franța - + Germany Germania - + Greece Grecia - + Hungary Ungaria - + Iceland Islanda - + Ireland Irlanda - + Italy Italia - + Latvia Letonia - + Lesotho Lesotho - + Liechtenstein Liechtenstein - + Lithuania Lituania - + Luxembourg Luxemburg - + Macedonia Macedonia - + Malta Malta - + Montenegro Muntenegru - + Mozambique Mozambic - + Namibia Namibia - + Netherlands Olanda - + New Zealand Noua Zeelandă - + Norway Norvegia - + Poland Polanda - + Portugal Portugalia - + Romania România - + Russia Rusia - + Serbia Serbia - + Slovakia Slovacia - + Slovenia Slovenia - + South Africa Africa de Sud - + Spain Spania - + Swaziland Swaziland - + Sweden Suedia - + Switzerland Elveția - + Turkey Turcia - + United Kingdom Regatul Unit - + Zambia Zambia - + Zimbabwe Zimbabwe - + Azerbaijan Azerbaijan - + Mauritania Mauritania - + Mali Mali - + Niger Niger - + Chad Chad - + Sudan Sudan - + Eritrea Eritrea - + Djibouti Djibouti - + Somalia Somalia - + Andorra Andorra - + Gibraltar Gibraltar - + Guernsey Guernsey - + Isle of Man Insula Man - + Jersey Jersey - + Monaco Monaco - + Taiwan Taiwan - + South Korea Coreea de Sud - + Hong Kong Hong Kong - + Macau Macao - + Indonesia Indonesia - + Singapore Singapore - + Thailand Thailanda - + Philippines Filipine - + Malaysia Malaezia - + China China - + United Arab Emirates Emiratele Arabe Unite - + India India - + Egypt Egipt - + Oman Oman - + Qatar Qatar - + Kuwait Kuwait - + Saudi Arabia Arabia Saudită - + Syria Siria - + Bahrain Bahrain - + Jordan Iordania - + San Marino San Marino - + Vatican City Vatican - + Bermuda Bermude - + Download System Files from Nintendo servers - + Citra is missing keys to download system files. <br><a href='https://citra-emu.org/wiki/aes-keys/'><span style="text-decoration: underline; color:#039be5;">How to get keys?</span></a> - - + + Console ID: 0x%1 ID Consolă: 0x%1 - + This will replace your current virtual 3DS with a new one. Your current virtual 3DS will not be recoverable. This might have unexpected effects in games. This might fail, if you use an outdated config savegame. Continue? Aceasta va înlocui consola virtuală 3DS cu una nouă. Consola virtuală 3DS actuală nu poate fi recuperată. Acest lucru ar putea avea efecte neașteptate în jocuri. Este posibil să eșueze, dacă utilizați o salvare configurată veche. Continuați? - + Warning Atenționare - + Downloading files... - + Cancel - - + + Citra - + Downloading system files failed. - + Successfully downloaded system files. @@ -3382,90 +3382,90 @@ Doriți să ignorați eroarea și să continuați? ConfigureTouchFromButton - + Configure Touchscreen Mappings - + Mapping: - + New Nou - + Delete Șterge - + Rename Redenumește - + Click the bottom area to add a point, then press a button to bind. Drag points to change position, or double-click table cells to edit values. - + Delete Point - + Button Buton - + X X axis X - + Y Y axis Y - + New Profile Profil Nou - + Enter the name for the new profile. Introduceți numele profilului nou. - + Delete Profile Ștergere Profil - + Delete profile %1? Ștergeți profilul %1? - + Rename Profile Redenumire profil - + New name: Nume nou: - + [press key] @@ -3473,113 +3473,113 @@ Drag points to change position, or double-click table cells to edit values. ConfigureUi - + Form Formular - + General General - + Note: Changing language will apply your configuration. Notă: Configurarea va fi aplicată la schimbarea limbii - + Interface language: Limbaj de Interfață: - + Theme: Temă: - + Game List Listă de Jocuri - + Icon Size: Mărime de Icoană: - - + + None Niciuna - + Small (24x24) Mică (24x24) - + Large (48x48) Mare (48x48) - + Row 1 Text: Text din Rând 1: - - + + File Name Nume de Fișier - - + + Full Path Rută Completă - - + + Title Name (short) - - + + Title ID ID de Titlu - - + + Title Name (long) - + Row 2 Text: Text din Rând 2: - + Hide Titles without Icon Ascunde Titluri fără Icoană - + Single Line Mode - + <System> <System> - + English Engleză @@ -3587,135 +3587,135 @@ Drag points to change position, or double-click table cells to edit values. ConfigureWeb - + Form Model - + Citra Web Service Citra Serviciu Web - + By providing your username and token, you agree to allow Citra to collect additional usage data, which may include user identifying information. Furnizând numele de utilizator și token-ul, sunteți de acord să permiți companiei Citra să colecteze date suplimentare de utilizare, care pot include informații de identificare a utilizatorului. - - + + Verify Verificați - + Sign up Înregistrare - + Token: Token: - + Username: Nume de utilizator: - + What is my token? Care este token-ul meu? - + Web Service configuration can only be changed when a public room isn't being hosted. Configurarea de săli publice poate fi modificată doar când o sală publică nu este găzduită. - + Telemetry Telemetrie - + Share anonymous usage data with the Citra team Distribuiți date de utilizare anonime cu echipa Citra - + Learn more Mai multe informații - + Telemetry ID: ID telemetrie: - + Regenerate Regenerează - + Discord Presence Prezență pe Discord - + Show Current Game in your Discord Status Afișează Jocul Prezent pe Statusul Discord - + <a href='https://citra-emu.org/entry/telemetry-and-why-thats-a-good-thing/'><span style="text-decoration: underline; color:#039be5;">Learn more</span></a> <a href='https://citra-emu.org/entry/telemetry-and-why-thats-a-good-thing/'><span style="text-decoration: underline; color:#039be5;">Mai multe informații</span></a> - + <a href='https://profile.citra-emu.org/'><span style="text-decoration: underline; color:#039be5;">Sign up</span></a> <a href='https://profile.citra-emu.org/'><span style="text-decoration: underline; color:#039be5;">Înregistrare</span></a> - + <a href='https://citra-emu.org/wiki/citra-web-service/'><span style="text-decoration: underline; color:#039be5;">What is my token?</span></a> <a href='https://citra-emu.org/wiki/citra-web-service/'><span style="text-decoration: underline; color:#039be5;">Care este token-ul meu?</span></a> - - + + Unspecified Nespecificat - - + + Telemetry ID: 0x%1 ID de Telemetrie: 0x%1 - + Token not verified - + Token was not verified. The change to your token has not been saved. - + Verifying... Verificănd... - + Verification failed Verificare eșuată - + Verification failed. Check that you have entered your token correctly, and that your internet connection is working. @@ -3723,47 +3723,47 @@ Drag points to change position, or double-click table cells to edit values. DirectConnect - + Direct Connect Conexiune Directă - + Server Address - + <html><head/><body><p>Server address of the host</p></body></html> - + Port Port - + <html><head/><body><p>Port number the host is listening on</p></body></html> <html><head/><body><p>Nume de port la care ascultă gazda</p></body></html> - + 24872 24872 - + Nickname Nume de utilizator - + Password Parolă - + Connect Conectare @@ -3771,12 +3771,12 @@ Drag points to change position, or double-click table cells to edit values. DirectConnectWindow - + Connecting Conectând - + Connect Conectare @@ -3784,110 +3784,110 @@ Drag points to change position, or double-click table cells to edit values. DumpingDialog - + Dump Video - + Output - + Format: - - - + + + Options: - - - - + + + + ... - + Path: - + Video - - + + Encoder: - - + + Bitrate: - - + + bps - + Audio - - + + Citra - + Please specify the output path. - + output formats - + video encoders - + audio encoders - + Could not find any available %1. Please check your FFmpeg installation used for compilation. - - - - + + + + %1 (%2) - + Select Video Output Path @@ -3895,417 +3895,417 @@ Please check your FFmpeg installation used for compilation. GMainWindow - + <a href='https://citra-emu.org/entry/telemetry-and-why-thats-a-good-thing/'>Anonymous data is collected</a> to help improve Citra. <br/><br/>Would you like to share your usage data with us? <a href='https://citra-emu.org/entry/telemetry-and-why-thats-a-good-thing/'>Date anonime sunt colectate</a> pentru a ajuta îmbunătățirea lui Citra. <br/><br/> Doriți să partajați uzul de datele cu noi? - + Telemetry Telemetrie - + No Suitable Vulkan Devices Detected - + Vulkan initialization failed during boot.<br/>Your GPU may not support Vulkan 1.1, or you do not have the latest graphics driver. - - + + Current emulation speed. Values higher or lower than 100% indicate emulation is running faster or slower than a 3DS. Viteza actuală de emulare. Valori mai mari sau mai mici de 100% indică cum emularea rulează mai repede sau mai încet decât un 3DS. - - + + How many frames per second the game is currently displaying. This will vary from game to game and scene to scene. Câte cadre pe secundă sunt afișate în prezent. Variază de la joc la joc și de la scenă la scenă. - - + + Time taken to emulate a 3DS frame, not counting framelimiting or v-sync. For full-speed emulation this should be at most 16.67 ms. Timp luat pentru a emula un cadru 3DS, fără a pune în calcul limitarea de cadre sau v-sync. Pentru emulare la viteza maximă, această valoare ar trebui să fie maxim 16.67 ms. - + Clear Recent Files Curăță Fișiere Recente - + &Continue - + &Pause - + Update Available Actualizare disponibilă - + An update is available. Would you like to install it now? O actualizare este disponibilă. Doriți s-o instalați acum? - + No Update Found Nu s-au Găsit Actualizări - + No update is found. Nu s-a găsit nicio actualizare. - + Citra is running a game TRANSLATORS: This string is shown to the user to explain why Citra needs to prevent the computer from sleeping - - + + Invalid ROM Format Format ROM Invalid - - + + Your ROM format is not supported.<br/>Please follow the guides to redump your <a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>game cartridges</a> or <a href='https://citra-emu.org/wiki/dumping-installed-titles/'>installed titles</a>. Formatul de ROM nu este valid.<br/>Vă rugăm să urmați ghidurile pentru a redescărca din<a href='https://citra-emu.org/wiki/dumping-game-cartridges/'> cardurile de joc<a href='https://citra-emu.org/wiki/dumping-installed-titles/'> sau titlurile instalate</a>. - + ROM Corrupted ROM Corupt - + Your ROM is corrupted. <br/>Please follow the guides to redump your <a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>game cartridges</a> or <a href='https://citra-emu.org/wiki/dumping-installed-titles/'>installed titles</a>. ROM-ul este corupt.<br/>Vă rugăm să urmați ghidurile pentru a redescărca din<a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>cardurile de joc</a> sau <a href='https://citra-emu.org/wiki/dumping-installed-titles/'>titlurile instalate</a>. - + ROM Encrypted ROM Criptat - + Your ROM is encrypted. <br/>Please follow the guides to redump your <a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>game cartridges</a> or <a href='https://citra-emu.org/wiki/dumping-installed-titles/'>installed titles</a>. RUOM-ul este criptat.<br/> Vă rugăm să urmați ghidurile pentru a redescărca din<a href='https://citra-emu.org/wiki/dumping-game-cartridges/'> cardurile de joc</a> sau<a href='https://citra-emu.org/wiki/dumping-installed-titles/'> titlurile instalate</a>. - + Unsupported ROM - + GBA Virtual Console ROMs are not supported by Citra. - + Error while loading ROM! Eroare la încărcarea ROM-ului! - + An unknown error occurred. Please see the log for more details. - + CIA must be installed before usage CIA-ul trebuie instalat înainte de uz - + Before using this CIA, you must install it. Do you want to install it now? Înainte de a folosi acest CIA, trebuie să-l instalati. Doriți s-o faceți acum? - - + + Slot %1 - + Slot %1 - %2 %3 - + Error Opening %1 Folder Eroare Deschizând Folderul %1 - - + + Folder does not exist! Folderul nu există! - + Dumping... - - + + Cancel Anulare - - - - - - - - - + + + + + + + + + Citra Citra - + Could not dump base RomFS. Refer to the log for details. - + Error Opening %1 Eroare Deschizând %1 - + Select Directory Selectează Directorul - + Properties - + The game properties could not be loaded. - + 3DS Executable (%1);;All Files (*.*) %1 is an identifier for the 3DS executable file extensions. Executabilă 3DS (%1);;Toate Fișierele (*.*) - + Load File Încarcă Fișier - + Load Files Încarcă Fișiere - + 3DS Installation File (*.CIA*) Fișier de Instalare 3DS (*.CIA*) - + All Files (*.*) Toate Fișierele (*.*) - + %1 has been installed successfully. %1 a fost instalat cu succes. - + Unable to open File Nu s-a putut deschide Fișierul - + Could not open %1 Nu s-a putut deschide %1 - + Installation aborted Instalare anulată - + The installation of %1 was aborted. Please see the log for more details Instalarea lui %1 a fost anulată. Vă rugăm să vedeți log-ul pentru mai multe detalii. - + Invalid File Fișier Invalid - + %1 is not a valid CIA %1 nu este un CIA valid - + Encrypted File Fișier Criptat - + %1 must be decrypted before being used with Citra. A real 3DS is required. %1 trebuie să fie decriptat înainte de a fi folosit cu Citra. Este necesar un 3DS autentic. - + Unable to find File - + Could not find %1 - + Uninstalling '%1'... - + Failed to uninstall '%1'. - + Successfully uninstalled '%1'. - + File not found Fișier negăsit - + File "%1" not found Fișierul "%1" nu a fost găsit - + Missing Citra Account Cont Citra Lipsă - + You must link your Citra account to submit test cases.<br/>Go to Emulation &gt; Configure... &gt; Web to do so. Trebuie să vă conectați contul Citra pentru a trimite cazuri de probe.<br/>Mergeți la Emulare &gt; Configurare... &gt; Web pentru a o face. - + Savestates - + Warning: Savestates are NOT a replacement for in-game saves, and are not meant to be reliable. Use at your own risk! - - - + + + Error opening amiibo data file - + A tag is already in use. - + Game is not looking for amiibos. - + Amiibo File (%1);; All Files (*.*) Fișier Amiibo (%1);; Toate Fișierele (*.*) - + Load Amiibo Încarcă Amiibo - + Unable to open amiibo file "%1" for reading. - + Record Movie Înregistrează Film - + Movie recording cancelled. Înregistrarea filmului a fost anulată. - - + + Movie Saved Film Salvat - - + + The movie is successfully saved. Filmul a fost salvat cu succes. - + Invalid Screenshot Directory - + Cannot create specified screenshot directory. Screenshot path is set back to its default value. - + Could not load video dumper - + FFmpeg could not be loaded. Make sure you have a compatible version installed. To install FFmpeg to Citra, press Open and select your FFmpeg directory. @@ -4314,158 +4314,158 @@ To view a guide on how to install FFmpeg, press Help. - + Select FFmpeg Directory - + The provided FFmpeg directory is missing %1. Please make sure the correct directory was selected. - + FFmpeg has been sucessfully installed. - + Installation of FFmpeg failed. Check the log file for details. - + Could not start video dumping.<br>Refer to the log for details. - + Recording %1 - + Playing %1 / %2 - + Movie Finished - + Speed: %1% Viteză: %1% - + Speed: %1% / %2% Viteză: %1% / %2% - + Game: %1 FPS Joc: %1 FPS - + Frame: %1 ms Cadru: %1 ms - + VOLUME: MUTE - + VOLUME: %1% Volume percentage (e.g. 50%) - + %1 is missing. Please <a href='https://citra-emu.org/wiki/dumping-system-archives-and-the-shared-fonts-from-a-3ds-console/'>dump your system archives</a>.<br/>Continuing emulation may result in crashes and bugs. %1 lipsește. Rugăm <a href='https://citra-emu.org/wiki/dumping-system-archives-and-the-shared-fonts-from-a-3ds-console/'>să descărcați fișierele de sistem</a>.<br/>Continuând emularea poate provoca prăbușiri și erori. - + A system archive - + System Archive Not Found Fișier de Sistem Negăsit - + System Archive Missing - + Save/load Error Eroare la salvare/încărcare - + Fatal Error Eroare Fatală - + A fatal error occurred. <a href='https://community.citra-emu.org/t/how-to-upload-the-log-file/296'>Check the log</a> for details.<br/>Continuing emulation may result in crashes and bugs. - + Fatal Error encountered - + Continue Continuă - + Quit Game - + OK - + Would you like to exit now? Doriți să ieșiți acum? - + The game is still running. Would you like to stop emulation? Jocul încă rulează. Doriți să opriți emularea? - + Playback Completed Redare Finalizată - + Movie playback completed. Redarea filmului a fost finalizată. - + Primary Window - + Secondary Window @@ -4473,22 +4473,22 @@ To view a guide on how to install FFmpeg, press Help. GPUCommandListModel - + Command Name Numele Comenzii - + Register Registru - + Mask Mască - + New Value Nouă Valoare @@ -4496,23 +4496,23 @@ To view a guide on how to install FFmpeg, press Help. GPUCommandListWidget - + Pica Command List Listă de Comenzi Pica - - + + Start Tracing Pornește Urmărirea - + Copy All Copiază Tot - + Finish Tracing Oprește Urmărirea @@ -4520,7 +4520,7 @@ To view a guide on how to install FFmpeg, press Help. GPUCommandStreamWidget - + Graphics Debugger Depanator de Grafice @@ -4528,42 +4528,42 @@ To view a guide on how to install FFmpeg, press Help. GRenderWindow - + OpenGL not available! - + OpenGL shared contexts are not supported. - + Error while initializing OpenGL! - + Your GPU may not support OpenGL, or you do not have the latest graphics driver. - + Error while initializing OpenGL 4.3! - + Your GPU may not support OpenGL 4.3, or you do not have the latest graphics driver.<br><br>GL Renderer:<br>%1 - + Error while initializing OpenGL ES 3.2! - + Your GPU may not support OpenGL ES 3.2, or you do not have the latest graphics driver.<br><br>GL Renderer:<br>%1 @@ -4571,193 +4571,193 @@ To view a guide on how to install FFmpeg, press Help. GameList - - + + Compatibility Compatibilitate - - + + Region Regiune - - + + File type Tip de Fișier - - + + Size Mărime - + Open Save Data Location Deschide locația datelor de salvare - + Open Extra Data Location Deschide locația Datelor Suplimentare - + Open Application Location Deschide locația aplicației - + Open Update Data Location Deschide locația datelor de actualizare - + Open DLC Data Location - + Open Texture Dump Location - + Open Custom Texture Location - + Open Mods Location - + Dump RomFS - + Disk Shader Cache - + Open Shader Cache Location - + Delete OpenGL Shader Cache - + Uninstall - + Everything - + Game - + Update - + DLC - + Navigate to GameDB entry Navighează baza de date a jocului - + Properties - - - - + + + + Citra - + Are you sure you want to completely uninstall '%1'? This will delete the game if installed, as well as any installed updates or DLC. - - + + %1 (Update) - - + + %1 (DLC) - + Are you sure you want to uninstall '%1'? - + Are you sure you want to uninstall the update for '%1'? - + Are you sure you want to uninstall all DLC for '%1'? - + Scan Subfolders Scanează Subfolderele - + Remove Game Directory Șterge Directorul de Jocuri - + Move Up - + Move Down - + Open Directory Location Deschide Locația Directorului - + Name Nume @@ -4765,82 +4765,82 @@ This will delete the game if installed, as well as any installed updates or DLC. GameListItemCompat - + Perfect Perfect - + Game functions flawless with no audio or graphical glitches, all tested functionality works as intended without any workarounds needed. Jocul funcționează perfect, fără probleme audio sau grafice, toate funcționalitățile testate funcționează fără să fie nevoie de vreo soluție temporară. - + Great Grozav - + Game functions with minor graphical or audio glitches and is playable from start to finish. May require some workarounds. Jocul funcționează cu probleme grafice sau audio minore și poate fi jucat de la început până la sfârșit. Poate necesita unele soluții temporare. - + Okay Bun - + Game functions with major graphical or audio glitches, but game is playable from start to finish with workarounds. Jocul funcționează cu probleme grafice sau audio majore, dar poate fi jucat de la început până la sfârșit cu soluții temporare. - + Bad Rău - + Game functions, but with major graphical or audio glitches. Unable to progress in specific areas due to glitches even with workarounds. Jocul funcționează, dar cu probleme grafice sau audio majore. Imposibil de parcurs în anumite zone din cauza unor probleme chiar și cu soluții temporare. - + Intro/Menu Introducere/Meniu - + Game is completely unplayable due to major graphical or audio glitches. Unable to progress past the Start Screen. Jocul nu poate fi jucat din cauza unor probleme grafice sau audio majore. Nu se poate trece dincolo de ecranul de pornire. - + Won't Boot Nu Pornește - + The game crashes when attempting to startup. Jocul se închide atunci când încearcă să pornească. - + Not Tested Netestat - + The game has not yet been tested. Jocul nu a fost încă testat. @@ -4848,7 +4848,7 @@ Screen. GameListPlaceholder - + Double-click to add a new folder to the game list Dați dublu-click pentru a adăuga un nou folder la lista jocurilor @@ -4856,27 +4856,27 @@ Screen. GameListSearchField - + of de - + result rezultat - + results rezultate - + Filter: Filtru: - + Enter pattern to filter Introduceți un tipar de filtrare @@ -4884,47 +4884,47 @@ Screen. GameRegion - + Japan Japonia - + North America America de Nord - + Europe Europa - + Australia Australia - + China China - + Korea Coreea - + Taiwan Taiwan - + Invalid region Regiune invalidă - + Region free @@ -4932,23 +4932,23 @@ Screen. GraphicsBreakPointsWidget - + Pica Breakpoints Pica Breakpoints - - + + Emulation running Emulare în desfășurare - + Resume Continuă - + Emulation halted at breakpoint Emulare oprită la un breakpoint @@ -4956,146 +4956,146 @@ Screen. GraphicsSurfaceWidget - + Pica Surface Viewer Vizualizator de Suprafață de Pica - + Color Buffer Buffer de Culoare - + Depth Buffer Buffer de Adâncime - + Stencil Buffer Buffer de Șablon - + Texture 0 Textura 0 - + Texture 1 Textura 1 - + Texture 2 Textura 2 - + Custom Personalizat - + Unknown Necunoscut - + Save Salvează - + Source: Sursă: - + Physical Address: Adresă Fizică: - + Width: Lungime: - + Height: Înălțime: - + Format: Format: - + X: X: - + Y: Y: - + Pixel out of bounds Pixel în afara limitelor - + (unable to access pixel data) (nu se pot accesa datele de pixeli) - + (invalid surface address) (adresă de suprafață invalidă) - + (unknown surface format) (format de suprafață necunoscut) - + Portable Network Graphic (*.png) Portable Network Graphic (*.png) - + Binary data (*.bin) Fișier Binar (*.bin) - + Save Surface Salvează Suprafață - - - - + + + + Error Eroare - - + + Failed to open file '%1' Nu s-a putut deschide fișierul '%1' - + Failed to save surface data to file '%1' Nu s-a putut salva datele de suprafață spre fișierul '%1' - + Failed to completely write surface data to file. The saved data will likely be corrupt. Nu s-au putut scrie date complete de suprafață pe fișier. Datele salvate vor fi probabil defecte. @@ -5103,42 +5103,42 @@ Screen. GraphicsTracingWidget - + CiTrace Recorder Înregistrator CiTrace - + Start Recording Pornește Înregistrarea - + Stop and Save Oprește și Salvează - + Abort Recording Anulează Înregistrarea - + Save CiTrace Salvează CiTrace - + CiTrace File (*.ctf) Fișier CiTrace (*.ctf) - + CiTracing still active CiTracing este încă activ - + A CiTrace is still being recorded. Do you want to save it? If not, all recorded data will be discarded. Un CiTrace încă se înregistrază. Doriți să-l salvați? Dacă nu, toate datele înregistrate vor fi abandonate. @@ -5146,17 +5146,17 @@ Screen. GraphicsVertexShaderModel - + Offset Offset - + Raw Raw - + Disassembly Dezasamblare @@ -5164,127 +5164,127 @@ Screen. GraphicsVertexShaderWidget - + Save Shader Dump Salvare Descărcare de Shader - + Shader Binary (*.shbin) Shader Binary (*.shbin) - + Pica Vertex Shader - + (data only available at vertex shader invocation breakpoints) (date disponibile doar în punctele de invocare de vertex shader) - + Dump Descarcă - + Input Data Date de Controale - + Attribute %1 Atribut %1 - + Cycle Index: Index de Ciclu: - + SRC1: %1, %2, %3, %4 SRC1: %1, %2, %3, %4 - + SRC2: %1, %2, %3, %4 SRC2: %1, %2, %3, %4 - + SRC3: %1, %2, %3, %4 SRC3: %1, %2, %3, %4 - + DEST_IN: %1, %2, %3, %4 DEST_IN: %1, %2, %3, %4 - + DEST_OUT: %1, %2, %3, %4 DEST_OUT: %1, %2, %3, %4 - + Address Registers: %1, %2 Registre de Adresă: %1, %2 - + Compare Result: %1, %2 Compară Rezultate: %1, %2 - + Static Condition: %1 Condiție Statică: %1 - + Dynamic Conditions: %1, %2 Condiții Dinamice: %1, %2 - + Loop Parameters: %1 (repeats), %2 (initializer), %3 (increment), %4 Parametrii de Buclă: %1 (repetiții), %2 (inițializator), %3 (increment), %4 - + Instruction offset: 0x%1 Offset de instrucțiuni: 0x%1 - + -> 0x%2 -> 0x%2 - + (last instruction) (ultima instrucțiune) @@ -5292,67 +5292,67 @@ Screen. HostRoom - + Create Room Creează o Sală - + Room Name Nume de Sală - + Preferred Game Joc Preferat - + Max Players Capacitate Maximă - + Username Nume de utilizator - + (Leave blank for open game) (Lăsați gol pentru joc deschis) - + Password Parolă - + Port Port - + Room Description Descrierea Sălii - + Load Previous Ban List Încarcă Lista Anterioară de Banați - + Public Public - + Unlisted Privat - + Host Room Creează Sală @@ -5360,12 +5360,12 @@ Screen. HostRoomWindow - + Error Eroare - + Failed to announce the room to the public lobby. In order to host a room publicly, you must have a valid Citra account configured in Emulation -> Configure -> Web. If you do not want to publish a room in the public lobby, then select Unlisted instead. Debug Message: Nu s-a putut anunța sala către lobby-ul public. Pentru a găzdui o cameră în mod public, trebuie să aveți un cont Citra disponibil configurat în Emulare -> Configurare -> Web. Dacă nu doriți să publicați o cameră în lobby-ul public, atunci selectați Privat. @@ -5375,47 +5375,47 @@ Mesaj de Depanare: IPCRecorder - + IPC Recorder - + Enable Recording - + Filter: Filtrați: - + Leave empty to disable filtering - + # # - + Status Status - + Service - + Function - + Clear @@ -5423,47 +5423,47 @@ Mesaj de Depanare: IPCRecorderWidget - + Invalid Invalid - + Sent - + Handling - + Success Succes - + Error Eroare - + HLE Unimplemented - + HLE - + LLE - + Unknown Necunoscut @@ -5471,7 +5471,7 @@ Mesaj de Depanare: LLEServiceModulesWidget - + Toggle LLE Service Modules Comută Module de Serviciu LLE @@ -5479,53 +5479,53 @@ Mesaj de Depanare: LoadingScreen - + Loading Shaders 387 / 1628 - + Loading Shaders %v out of %m - + Estimated Time 5m 4s - + Loading... Se încarcă... - + Preloading Textures %1 / %2 - + Preparing Shaders %1 / %2 - + Loading Shaders %1 / %2 - + Launching... - + Now Loading %1 - + Estimated Time %1 @@ -5533,83 +5533,83 @@ Mesaj de Depanare: Lobby - + Public Room Browser Browser de Săli Publice - - + + Nickname Poreclă - + Filters Filtre - + Search Caută - + Games I Own Jocuri Care Dețin - + Hide Empty Rooms - + Hide Full Rooms Ascunde Săli Pline - + Refresh Lobby Actualizează Lobby - + Password Required to Join Parolă Necesară pentru Alăturare - + Password: Parolă: - + Room Name Nume de Sală - + Preferred Game Joc Preferat - + Host Gazdă - + Players Jucători - + Refreshing Actualizând - + Refresh List Actualizează Lista @@ -5617,362 +5617,362 @@ Mesaj de Depanare: MainWindow - + Citra Citra - + &File &Fișier - + Boot Home Menu - + Recent Files Fișiere Recente - + Amiibo Amiibo - + &Emulation &Emulare - + Save State - + Load State - + &View &Vizionează - + Debugging Depanare - + Screen Layout Aspectul Ecranului - + Multiplayer Multiplayer - + Tools Unelte - + Movie Film - + Frame Advance Avansează Cadrul - + &Help &Ajutor - + Load File... Încarcă fișier... - + Install CIA... Instalează CIA... - + JPN - + USA - + EUR - + AUS - + CHN - + KOR - + TWN - + E&xit I&eși - + &Pause &Întrerupe - + &Stop &Stop - + Save Salvare - + Load - + FAQ FAQ - + About Citra Despre Citra - + Single Window Mode Mod Fereastră Unică - + Save to Oldest Slot - + Load from Newest Slot - + Configure... Configurare... - + Display Dock Widget Headers Afișează Titlurile de la Widget-urile de Dock - + Show Filter Bar Afișează Bara de Filtru - + Show Status Bar Afișează Bara de Stare - + Create Pica Surface Viewer Creează Vizualizator de Suprafață de Pica - + Record... - + Play... - + Close Închide - + Save without Closing Salvează fără a închide - + Read-Only Mode - + Enable Frame Advancing Activează Avans de Cadru - + Advance Frame Avansează Cadru - + Capture Screenshot Fă o Captură de Ecran - + Dump Video - + Browse Public Game Lobby Caută Săli Publice - + Create Room Creează o Sală - + Leave Room Părăsește Sala - + Direct Connect to Room Conexiune Directă spre Sală - + Show Current Room Afișează Sala Curentă - + Fullscreen Ecran Complet - + Modify Citra Install Modifică Instalarea Citra - + Opens the maintenance tool to modify your Citra installation Deschide unealta de mentenanță pentru a vă modifica instalarea Citra. - + Default Implicit - + Single Screen Ecran Simplu - + Large Screen Ecran Larg - + Hybrid Screen - + Side by Side Unul lângă Altul - + Separate Windows - + Swap Screens Schimbă Ecranele - + Rotate Upright - + Check for Updates Verifică Noi Actualizări - + Report Compatibility Raportează Compatibiltate - + Restart Repornește - + Load... Încarcă... - + Remove Elimină - + Open Citra Folder Deschide Folderul Citra - + Configure Current Game... @@ -5980,7 +5980,7 @@ Mesaj de Depanare: MicroProfileDialog - + MicroProfile MicroProfile @@ -5988,48 +5988,48 @@ Mesaj de Depanare: ModerationDialog - + Moderation Moderare - + Ban List Listă de Banați - - + + Refreshing Actualizând - + Unban Debanați - + Subject Subiect - + Type Tip - + Forum Username Nume de utilizator pe Forum - + IP Address Adresă IP - + Refresh Actualizează @@ -6037,91 +6037,91 @@ Mesaj de Depanare: MoviePlayDialog - - + + Play Movie - + File: - + ... ... - + Info Informații - + Game: Joc: - + Author: - + Rerecord Count: - + Length: Lungime: - + Current running game will be stopped. - + <br>Current recording will be discarded. - + Citra TAS Movie (*.ctm) - + Invalid movie file. - + Revision dismatch, playback may desync. - + Indicated length is incorrect, file may be corrupted. - - - - + + + + (unknown) (necunoscut) - + Game used in this movie is not in game list. - + (>1 day) @@ -6129,43 +6129,43 @@ Mesaj de Depanare: MovieRecordDialog - - + + Record Movie - + File: - + ... ... - + Author: - + Current running game will be restarted. - + <br>Current recording will be discarded. - + Recording will start once you boot a game. - + Citra TAS Movie (*.ctm) @@ -6173,44 +6173,44 @@ Mesaj de Depanare: MultiplayerState - - + + Current connection status Starea conexiunii curente - - + + Not Connected. Click here to find a room! Neconectat. Faceți click aici pentru a găsi o sală! - - - + + + Connected Conectat - - + + Not Connected Neconectat - + Error Eroare - + Failed to update the room information. Please check your Internet connection and try hosting the room again. Debug Message: Nu s-a putut actualiza informațiile despre sală. Verificați conexiunea la Internet și încercați să găzduiți sala din nou. Mesaj de depanare: - + New Messages Received Noi Mesaje Primite @@ -6218,22 +6218,22 @@ Mesaj de depanare: NetworkMessage - + Leave Room Părăsește Sala - + You are about to close the room. Any network connections will be closed. Sunteți pe cale să închideți sala. Orice conexiune la rețea va fi închisă. - + Disconnect Deconectare - + You are about to leave the room. Any network connections will be closed. Sunteți pe cale să părăsiți sala. Orice conexiune la rețea va fi închisă. @@ -6241,110 +6241,110 @@ Mesaj de depanare: NetworkMessage::ErrorManager - + Username is not valid. Must be 4 to 20 alphanumeric characters. - + Room name is not valid. Must be 4 to 20 alphanumeric characters. - + Username is already in use or not valid. Please choose another. - + IP is not a valid IPv4 address. - + Port must be a number between 0 to 65535. - + You must choose a Preferred Game to host a room. If you do not have any games in your game list yet, add a game folder by clicking on the plus icon in the game list. - + Unable to find an internet connection. Check your internet settings. - + Unable to connect to the host. Verify that the connection settings are correct. If you still cannot connect, contact the room host and verify that the host is properly configured with the external port forwarded. - + Unable to connect to the room because it is already full. - + Creating a room failed. Please retry. Restarting Citra might be necessary. - + The host of the room has banned you. Speak with the host to unban you or try a different room. - + Version mismatch! Please update to the latest version of Citra. If the problem persists, contact the room host and ask them to update the server. - + Incorrect password. - + An unknown error occurred. If this error continues to occur, please open an issue - + Connection to room lost. Try to reconnect. - + You have been kicked by the room host. - + MAC address is already in use. Please choose another. - + Your Console ID conflicted with someone else's in the room. Please go to Emulation > Configure > System to regenerate your Console ID. - + You do not have enough permission to perform this action. - + The user you are trying to kick/ban could not be found. They may have left the room. - + Error Eroare @@ -6352,37 +6352,37 @@ They may have left the room. OptionSetDialog - + Options - + Unset - + unknown - + %1 &lt;%2> %3 - + Range: %1 - %2 - + custom - + %1 (0x%2) %3 @@ -6390,32 +6390,32 @@ They may have left the room. OptionsDialog - + Options - + Double click to see the description and change the values of the options. - + Specific - + Generic - + Name - + Value @@ -6423,157 +6423,157 @@ They may have left the room. QObject - + Supported image files (%1) Fișiere de imagine suportate (%1) - + Open File Deschidere Fișier - + Error Eroare - + Couldn't load the camera Camera nu s-a putut încărca - + Couldn't load %1 %1 nu s-a putut încărca - - + + Shift Shift - - + + Ctrl Ctrl - - + + Alt Alt - - - + + + [not set] [nestabilit] - - + + Hat %1 %2 Rotație %1 %2 - - - - - - + + + + + + Axis %1%2 Axă %1%2 - - + + Button %1 Buton %1 - + GC Axis %1%2 - + GC Button %1 - - - + + + [unknown] [necunoscut] - + [unused] [nefolosit] - + auto - + true - + false - - + + none - + %1 (0x%2) - + Invalid region Regiune invalidă - + Installed Titles - + System Titles - + Add New Game Directory - + Not playing a game Nu se joacă niciun joc - + %1 is not playing a game %1 nu se joacă niciun joc - + %1 is playing %2 %1 se joacă %2 @@ -6581,7 +6581,7 @@ They may have left the room. QtKeyboard - + Software Keyboard Tastatură de Software @@ -6589,27 +6589,27 @@ They may have left the room. QtKeyboardDialog - + Text length is not correct (should be %1 characters) Text incorect (trebuie să fie %1 caractere) - + Text is too long (should be no more than %1 characters) Text prea lung (nu trebuie să fie mai mare de %1 caractere) - + Blank input is not allowed Nu se poate lăsa alb - + Empty input is not allowed Nu se poate lăsa gol - + Validation error Eroare de validare @@ -6617,12 +6617,12 @@ They may have left the room. QtMiiSelectorDialog - + Mii Selector Selector de Mii - + Standard Mii Mii Standard @@ -6630,95 +6630,95 @@ They may have left the room. RecordDialog - + View Record - + Client - - + + Process: - - + + Thread: - - + + Session: - + Server Server - + General General - + Client Port: - + Service: - + Function: - + Command Buffer - + Select: - + Request Untranslated - + Request Translated - + Reply Untranslated - + Reply Translated - + OK OK - + null @@ -6726,37 +6726,37 @@ They may have left the room. RegistersWidget - + Registers Registre - + VFP Registers Registre VFP - + VFP System Registers Registre de Sistem VFP - + Vector Length Lungime de Vector - + Vector Stride Pas de Vector - + Rounding Mode Mod Aproximat - + Vector Iteration Count Numărătoare de Iterații de Vector @@ -6764,7 +6764,7 @@ They may have left the room. SequenceDialog - + Enter a hotkey Introduceți o tastă de scurtătură @@ -6772,7 +6772,7 @@ They may have left the room. WaitTreeEvent - + reset type = %1 reset type = %1 @@ -6780,12 +6780,12 @@ They may have left the room. WaitTreeMutex - + locked %1 times by thread: locked %1 times by thread: - + free free @@ -6793,7 +6793,7 @@ They may have left the room. WaitTreeMutexList - + holding mutexes holding mutexes @@ -6801,12 +6801,12 @@ They may have left the room. WaitTreeObjectList - + waiting for all objects waiting for all objects - + waiting for one of the following objects waiting for one of the following objects @@ -6814,12 +6814,12 @@ They may have left the room. WaitTreeSemaphore - + available count = %1 available count = %1 - + max count = %1 max count = %1 @@ -6827,112 +6827,112 @@ They may have left the room. WaitTreeThread - + running running - + ready ready - + waiting for address 0x%1 waiting for address 0x%1 - + sleeping sleeping - + waiting for IPC response waiting for IPC response - + waiting for objects waiting for objects - + waiting for HLE return waiting for HLE return - + dormant dormant - + dead dead - + PC = 0x%1 LR = 0x%2 PC = 0x%1 LR = 0x%2 - + default default - + all all - + AppCore AppCore - + SysCore SysCore - + Unknown processor %1 Unknown processor %1 - + object id = %1 - + processor = %1 processor = %1 - + thread id = %1 thread id = %1 - + process = %1 (%2) - + priority = %1(current) / %2(normal) priority = %1(current) / %2(normal) - + last running ticks = %1 last running ticks = %1 - + not holding mutex not holding mutex @@ -6940,7 +6940,7 @@ They may have left the room. WaitTreeThreadList - + waited by thread waited by thread @@ -6948,17 +6948,17 @@ They may have left the room. WaitTreeTimer - + reset type = %1 reset type = %1 - + initial delay = %1 initial delay = %1 - + interval delay = %1 interval delay = %1 @@ -6966,27 +6966,27 @@ They may have left the room. WaitTreeWaitObject - + [%1]%2 %3 [%1]%2 %3 - + waited by no thread waited by no thread - + one shot one shot - + sticky sticky - + pulse pulse @@ -6994,7 +6994,7 @@ They may have left the room. WaitTreeWidget - + Wait Tree Copac de Așteptare diff --git a/dist/languages/ru_RU.ts b/dist/languages/ru_RU.ts index a2f981d02..c4489deed 100644 --- a/dist/languages/ru_RU.ts +++ b/dist/languages/ru_RU.ts @@ -2,17 +2,17 @@ ARMRegisters - + ARM Registers Регистры ARM - + Register Регистр - + Value Значение @@ -20,27 +20,27 @@ AboutDialog - + About Citra О приложении Citra - - <html><head/><body><p><img src=":/icons/citra.png"/></p></body></html> - <html><head/><body><p><img src=":/icons/citra.png"/></p></body></html> + + <html><head/><body><p><img src=":/icons/lime.png"/></p></body></html> + <html><head/><body><p><img src=":/icons/lime.png"/></p></body></html> - + <html><head/><body><p><span style=" font-size:28pt;">Citra</span></p></body></html> <html><head/><body><p><span style=" font-size:28pt;">Citra</span></p></body></html> - + <html><head/><body><p>%1 | %2-%3 (%4)</p></body></html> <html><head/><body><p>%1 | %2-%3 (%4)</p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -57,12 +57,12 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">Это программное обеспечение не должно использоваться для игр, полученных незаконным путём.</span></p></body></html> - + <html><head/><body><p><a href="https://citra-emu.org/"><span style=" text-decoration: underline; color:#039be5;">Website</span></a> | <a href="https://community.citra-emu.org/"><span style=" text-decoration: underline; color:#039be5;">Forum</span></a> | <a href="https://github.com/citra-emu"><span style=" text-decoration: underline; color:#039be5;">Source Code</span></a> | <a href="https://github.com/citra-emu/citra/graphs/contributors"><span style=" text-decoration: underline; color:#039be5;">Contributors</span></a> | <a href="https://github.com/citra-emu/citra/blob/master/license.txt"><span style=" text-decoration: underline; color:#039be5;">License</span></a></p></body></html> <html><head/><body><p><a href="https://citra-emu.org/"><span style=" text-decoration: underline; color:#039be5;">Веб-сайт</span></a> | <a href="https://community.citra-emu.org/"><span style=" text-decoration: underline; color:#039be5;">Форум</span></a> | <a href="https://github.com/citra-emu"><span style=" text-decoration: underline; color:#039be5;">Исходный код</span></a> | <a href="https://github.com/citra-emu/citra/graphs/contributors"><span style=" text-decoration: underline; color:#039be5;">Участники</span></a> | <a href="https://github.com/citra-emu/citra/blob/master/license.txt"><span style=" text-decoration: underline; color:#039be5;">Лицензия</span></a></p></body></html> - + <html><head/><body><p><span style=" font-size:7pt;">&quot;3DS&quot; is a trademark of Nintendo. Citra is not affiliated with Nintendo in any way.</span></p></body></html> <html><head/><body><p><span style=" font-size:7pt;">&quot;3DS&quot; является торговой маркой компании Nintendo, которая никак не связана с Citra.</span></p></body></html> @@ -70,47 +70,47 @@ p, li { white-space: pre-wrap; } BreakPointModel - + Pica command loaded Команда Pica загружена - + Pica command processed Команда Pica выполнена - + Incoming primitive batch Загрузка пакета примитивов - + Finished primitive batch Загрузка пакета примитивов завершена - + Vertex shader invocation Вызов вершинного шейдера - + Incoming display transfer Передача входящего изображения - + GSP command processed Команда GSP обработана - + Buffers swapped Переключение буферов выполнено - + Unknown debug context event Неизвестное событие контекста отладки @@ -118,32 +118,32 @@ p, li { white-space: pre-wrap; } CalibrationConfigurationDialog - + Communicating with the server... Соединение с сервером... - + Cancel Отмена - + Touch the top left corner <br>of your touchpad. Прикоснитесь к верхнему левому углу <br>сенсорной панели. - + Now touch the bottom right corner <br>of your touchpad. Теперь прикоснитесь к нижнему правому<br>углу сенсорной панели. - + Configuration completed! Настройка выполнена! - + OK OK @@ -151,93 +151,93 @@ p, li { white-space: pre-wrap; } ChatRoom - + Room Window Окно комнаты - + Send Chat Message Отправить сообщение в чат - + Send Message Отправить сообщение - + Members Участники - + %1 has joined %1 присоединился - + %1 has left %1 покинул комнату - + %1 has been kicked %1 был выгнан - + %1 has been banned %1 был заблокирован - + %1 has been unbanned %1 был разблокирован - + View Profile Открыть профиль - - + + Block Player Игнорировать игрока - + When you block a player, you will no longer receive chat messages from them.<br><br>Are you sure you would like to block %1? При игнорировании игрока, пользователь прекращает получать от него сообщения в чате.<br><br>Игнорировать %1? - + Kick Выгнать - + Ban Заблокировать - + Kick Player Выгнать игрока - + Are you sure you would like to <b>kick</b> %1? <b>Выгнать</b> %1? - + Ban Player Заблокировать игрока - + Are you sure you would like to <b>kick and ban</b> %1? This would ban both their forum username and their IP address. @@ -249,22 +249,22 @@ This would ban both their forum username and their IP address. ClientRoom - + Room Window Окно комнаты - + Room Description Описание комнаты - + Moderation... Модерация... - + Leave Room Покинуть комнату @@ -272,17 +272,17 @@ This would ban both their forum username and their IP address. ClientRoomWindow - + Connected Подключён - + Disconnected Отключён - + %1 (%2/%3 members) - connected %1 (%2/%3 участников) - подключён @@ -290,109 +290,109 @@ This would ban both their forum username and their IP address. CompatDB - + Report Compatibility Сообщить о совместимости - - + + Report Game Compatibility Сообщить о совместимости игры - + <html><head/><body><p><span style=" font-size:10pt;">Should you choose to submit a test case to the </span><a href="https://citra-emu.org/game/"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">Citra Compatibility List</span></a><span style=" font-size:10pt;">, The following information will be collected and displayed on the site:</span></p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Hardware Information (CPU / GPU / Operating System)</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Which version of Citra you are running</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The connected Citra account</li></ul></body></html> <html><head/><body><p><span style=" font-size:10pt;">При отправке тестового случая в </span><a href="https://citra-emu.org/game/"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">список совместимости Citra</span></a><span style=" font-size:10pt;"> на сайте будет собрана и отображена следующая информация:</span></p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Сведения об оборудовании (ЦП / ГП / операционная система)</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Версия Citra</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Учётная запись Citra</li></ul></body></html> - + Perfect Отлично - + <html><head/><body><p>Game functions flawlessly with no audio or graphical glitches.</p></body></html> <html><head/><body><p>Игра функционирует безотказно, без ошибок звука или графики.</p></body></html> - + Great - + <html><head/><body><p>Game functions with minor graphical or audio glitches and is playable from start to finish. May require some workarounds.</p></body></html> <html><head/><body><p>Игра работает с незначительными ошибками графики или звука, но играть можно от начала до конца. Иногда может возникать необходимость в поиске обходных вариантов решения проблем.</p></body></html> - + Okay Удовлетворительно - + <html><head/><body><p>Game functions with major graphical or audio glitches, but game is playable from start to finish with workarounds.</p></body></html> <html><head/><body><p>Игра работает с серьёзными ошибками графики или звука, но применение обходных вариантов решения проблем позволяет играть от начала до конца.</p></body></html> - + Bad Плохо - + <html><head/><body><p>Game functions, but with major graphical or audio glitches. Unable to progress in specific areas due to glitches even with workarounds.</p></body></html> <html><head/><body><p>Игра работает, но с серьёзными ошибками графики или звука. Прохождение некоторых конкретных мест в игре невозможно даже при использовании обходных вариантов решения проблем.</p></body></html> - + Intro/Menu Вступительный видеоролик/меню - + <html><head/><body><p>Game is completely unplayable due to major graphical or audio glitches. Unable to progress past the Start Screen.</p></body></html> <html><head/><body><p>Играть абсолютно невозможно ввиду наличия серьёзных ошибок графики или звука. Не удаётся пройти дальше начального экрана.</p></body></html> - + Won't Boot Не запускается - + <html><head/><body><p>The game crashes when attempting to startup.</p></body></html> <html><head/><body><p>Игра вылетает во время запуска.</p></body></html> - + <html><head/><body><p>Independent of speed or performance, how well does this game play from start to finish on this version of Citra?</p></body></html> <html><head/><body><p>Насколько хорошо работает данная игра от начала до конца на данной версии Citra независимо от скорости работы или производительности?</p></body></html> - + Thank you for your submission! Благодарим за предоставленную информацию! - + Submitting Отправить - + Communication error Ошибка соединения - + An error occurred while sending the Testcase Во время отправки тестового случая произошла ошибка - + Next Далее @@ -400,93 +400,93 @@ This would ban both their forum username and their IP address. ConfigureAudio - + Output - + Emulation: Эмуляция: - + HLE (fast) HLE (быстрая) - + LLE (accurate) LLE (точная) - + LLE multi-core LLE многоядерная - + Output Type - + Output Device - + This post-processing effect adjusts audio speed to match emulation speed and helps prevent audio stutter. This however increases audio latency. Этот эффект постобработки предотвращает появление прерывистости звука и корректирует скорость воспроизведения так, чтобы она совпадала со скоростью эмуляции. Однако всё это увеличивает звуковую задержку. - + Enable audio stretching Включить растяжение звука - + Use global volume - + Set volume: - + Volume: Громкость: - + 0 % 0 % - + Microphone Микрофон - + Input Type Тип ввода - + Input Device Устройство ввода - - + + Auto - + %1% Volume percentage (e.g. 50%) %1% @@ -495,203 +495,203 @@ This would ban both their forum username and their IP address. ConfigureCamera - + Form Форма - + Camera Камера - - + + Select the camera to configure Выбор камеры для настройки - + Camera to configure: Настраиваемая камера: - + Front Передняя - + Rear Задняя - - + + Select the camera mode (single or double) Выберите режим камеры (одиночная или двойная) - + Camera mode: Режим камеры: - + Single (2D) Одиночная (2D) - + Double (3D) Двойная (3D) - - + + Select the position of camera to configure Выберите позицию настраиваемой камеры - + Camera position: Позиция камеры: - + Left Слева - + Right Справа - + Configuration Настройки - - + + Select where the image of the emulated camera comes from. It may be an image or a real camera. Выберите источник отображения для эмулируемой камеры. Это может быть как картинка, так и настоящая камера. - + Camera Image Source: Источник отображения для камеры: - + Blank (blank) Пусто (пусто) - + Still Image (image) Статичное изображение (изображение) - + System Camera (qt) Системная камера (qt) - + File: Файл: - + ... ... - - + + Select the system camera to use Выберите использование системной камеры - + Camera: Камера: - + <Default> <По умолчанию> - - + + Select the image flip to apply Выберите способ поворота изображения - + Flip: Поворот изображения: - + None Нет - + Horizontal Отразить по горизонтали - + Vertical Отразить по вертикали - + Reverse Развернуть на 180⁰ - + Select an image file every time before the camera is loaded Выбирать изображение перед каждой загрузкой камеры - + Prompt before load Выбор изображения перед загрузкой - + Preview Предварительный просмотр - + Resolution: 512*384 Разрешение: 512*384 - + Click to preview Щёлкните для просмотра - + Resolution: %1*%2 Разрешение: %1*%2 - + Supported image files (%1) Поддерживаемые файлы изображений (%1) - + Open File Открыть файл @@ -699,87 +699,87 @@ This would ban both their forum username and their IP address. ConfigureCheats - - + + Cheats - + Add Cheat - + Available Cheats: - + Name - + Type - + Save - + Delete - + Name: - + Notes: - + Code: - + Would you like to save the current cheat? - - - + + + Save Cheat - + Please enter a cheat name. - + Please enter the cheat code. - + Cheat code line %1 is not valid. Would you like to ignore the error and continue? - - + + [new cheat] @@ -787,127 +787,127 @@ Would you like to ignore the error and continue? ConfigureDebug - + Form Форма - + GDB GDB - + Enable GDB Stub Включить заглушку GDB - + Port: Порт: - + Logging Ведение журнала - + Global Log Filter Глобальный фильтр журнала - + Show Log Console (Windows Only) Показать консоль записей (только для Windows) - + Open Log Location Открыть расположение записей - + CPU - + Use global clock speed - + Set clock speed: - + CPU Clock Speed - + <html><body>Changes the emulated CPU clock frequency.<br>Underclocking can increase performance but may cause the game to freeze.<br>Overclocking may reduce in game lag but also might cause freezes</body></html> - + <html><head/><body><p>Enables the use of the ARM JIT compiler for emulating the 3DS CPUs. Don't disable unless for debugging purposes</p></body></html> - + Enable CPU JIT Включить JIT-компиляцию ЦП - + Enable debug renderer - + Dump command buffers - + Miscellaneus - + <html><head/><body><p>Introduces a delay to the first ever launched app thread if LLE modules are enabled, to allow them to initialize.</p></body></html> - + Delay app start for LLE module initialization - + <html><head/><body><p>CPU Clock Speed Information<br/>Underclocking can increase performance but may cause the game to freeze.<br/>Overclocking may reduce in game lag but also might cause freezes</p></body></html> - + Validation layer not available - + Unable to enable debug renderer because the layer <strong>VK_LAYER_KHRONOS_validation</strong> is missing. Please install the Vulkan SDK or the appropriate package of your distribution - + Command buffer dumping not available - + Unable to enable command buffer dumping because the layer <strong>VK_LAYER_LUNARG_api_dump</strong> is missing. Please install the Vulkan SDK or the appropriate package of your distribution @@ -915,92 +915,92 @@ Would you like to ignore the error and continue? ConfigureDialog - + Citra Configuration Настройки Citra - - - + + + General Общие - - - + + + System Система - - + + Input Ввод - - + + Hotkeys Комбинации клавиш - - + + Graphics Графика - - + + Enhancements Усовершенствования - - - + + + Audio Звук - - + + Camera Камера - - + + Debug Отладка - - + + Storage Хранение - - + + Web Веб - - + + UI Интерфейс - + Controls Управление - + Advanced Дополнительно @@ -1008,278 +1008,278 @@ Would you like to ignore the error and continue? ConfigureEnhancements - + Form - + Renderer - + Internal Resolution - + Auto (Window Size) - + Native (400x240) - + 2x Native (800x480) - + 3x Native (1200x720) - + 4x Native (1600x960) - + 5x Native (2000x1200) - + 6x Native (2400x1440) - + 7x Native (2800x1680) - + 8x Native (3200x1920) - + 9x Native (3600x2160) - + 10x Native (4000x2400) - + Enable Linear Filtering - + Post-Processing Shader - + Texture Filter - + None - + Anime4K - + Bicubic - + ScaleForce - + xBRZ - + MMPX - + Stereoscopy - + Stereoscopic 3D Mode - + Off - - + + Side by Side - + Anaglyph - + Interlaced - + Reverse Interlaced - + Depth - + % - + Eye to Render in Monoscopic Mode - + Left Eye (default) - + Right Eye - + Layout - + Screen Layout: - + Default - + Single Screen - + Large Screen - + Separate Windows - + Hybrid Screen - + Swap Screens - + Rotate Screens Upright - + Large Screen Proportion: - + Background Color: - + Utility - + <html><head/><body><p>Replace textures with PNG files.</p><p>Textures are loaded from load/textures/[Title ID]/.</p></body></html> - + Use Custom Textures - + <html><head/><body><p>Dump textures to PNG files.</p><p>Textures are dumped to dump/textures/[Title ID]/.</p></body></html> - + Dump Textures - + <html><head/><body><p>Load all custom textures into memory on boot, instead of loading them when the game requires them.</p></body></html> - + Preload Custom Textures - + <html><head/><body><p>Load custom textures asynchronously with background threads to reduce loading stutter</p></body></html> - + Async Custom Texture Loading @@ -1287,136 +1287,136 @@ Would you like to ignore the error and continue? ConfigureGeneral - + Form Форма - + General Общие - + Confirm exit while emulation is running Подтверждать выход при работающей эмуляции - + Pause emulation when in background Приостанавливать эмуляцию при работе в фоновом режиме - + Mute audio when in background - + Hide mouse on inactivity Скрывать курсор мыши во время бездействия - + Enable Gamemode - + Updates Обновления - + Check for updates on start Проверять обновления при запуске - + Silently auto update after closing Автоматически обновлять в фоновом режиме после закрытия - + Emulation Эмуляция - + Region: Регион: - + Auto-select Автовыбор - + Use global emulation speed - + Set emulation speed: - + Emulation Speed: Скорость эмуляции: - + Screenshots - + Use global screenshot path - + Set screenshot path: - + Save Screenshots To - + ... - + Reset All Settings Сбросить все настройки - - - - - + + + + + unthrottled нерегулируемый - + Select Screenshot Directory - + Citra Citra - + Are you sure you want to <b>reset your settings</b> and close Citra? <b>Сбросить настройки</b> и закрыть Citra? @@ -1424,157 +1424,157 @@ Would you like to ignore the error and continue? ConfigureGraphics - + Form Форма - + Graphics - + API Settings - + Graphics API - + Software - + OpenGL - + Vulkan - + Physical Device - + OpenGL Renderer - + SPIR-V Shader Generation - + Renderer Отрисовка - + <html><head/><body><p>Use the selected graphics API to accelerate shader emulation.</p><p>Requires a relatively powerful GPU for better performance.</p></body></html> - + Enable Hardware Shader Включить аппаратный шейдер - + <html><head/><body><p>Correctly handle all edge cases in multiplication operation in shaders. </p><p>Some games requires this to be enabled for the hardware shader to render properly.</p><p>However this would reduce performance in most games.</p></body></html> <html><head/><body><p>Корректно обрабатывать все пограничные случаи при умножении в шейдерах. </p><p>В некоторых играх это необходимо для правильной отрисовки с использованием аппаратного шейдера.</p><p>Однако это снижает производительность в большинстве игр.</p></body></html> - + Accurate Multiplication Точное умножение - + <html><head/><body><p>Use the JIT engine instead of the interpreter for software shader emulation. </p><p>Enable this for better performance.</p></body></html> <html><head/><body><p>Использовать движок JIT вместо интерпретатора для программной эмуляции шейдеров. </p><p>Включите для повышения производительности.</p></body></html> - + Enable Shader JIT Включить JIT-компиляцию шейдеров - + <html><head/><body><p>Compile shaders using background threads to avoid shader compilation stutter. Expect temporary graphical glitches</p></body></html> - + Enable Async Shader Compilation - + <html><head/><body><p>Perform presentation on separate threads. Improves performance when using Vulkan in most games.</p></body></html> - + Enable Async Presentation - + Advanced Дополнительно - + <html><head/><body><p>Overrides the sampling filter used by games. This can be useful in certain cases with poorly behaved games when upscaling. If unsure set this to Game Controlled</p></body></html> - + Texture Sampling - + Game Controlled - + Nearest Neighbor - + Linear - + <html><head/><body><p>Reduce stuttering by storing and loading generated shaders to disk.</p></body></html> <html><head/><body><p>Уменьшение прерывистости звука достигается путём сохранения и загрузки сгенерированных шейдеров на диск.</p></body></html> - + Use Disk Shader Cache Использовать кеш шейдеров на диске - + VSync prevents the screen from tearing, but some graphics cards have lower performance with VSync enabled. Keep it enabled if you don't notice a performance difference. VSync предотвращает появление разрывов экрана, но у некоторых графических карт включение опции VSync ухудшает производительность. Если не будет заметного ухудшения производительности, можно оставить её включённой. - + Enable VSync Включить VSync @@ -1582,63 +1582,63 @@ Would you like to ignore the error and continue? ConfigureHotkeys - + Hotkey Settings Настройка комбинаций клавиш - + Double-click on a binding to change it. Щёлкните дважды по комбинации клавиш, чтобы изменить её. - + Clear All - + Restore Defaults - + Action Действие - + Hotkey Комбинация клавиш - - + + Conflicting Key Sequence Конфликтующие комбинации клавиш - + The entered key sequence is already assigned to: %1 - + A 3ds button - + Restore Default - + Clear - + The default key sequence is already assigned to: %1 @@ -1646,307 +1646,307 @@ Would you like to ignore the error and continue? ConfigureInput - + ConfigureInput Конфигурация ввода - + Profile Профиль - + New Новый - + Delete Удалить - + Rename Переименовать - + Face Buttons Кнопки действия - + Y: Y: - + X: X: - + B: B: - + A: A: - + Directional Pad Крестовина - - - + + + Up: Вверх: - - - + + + Down: Вниз: - - - + + + Left: Влево: - - - + + + Right: Вправо: - + Misc. Прочее - + Start: Start: - + Select: Select: - + Home: Home: - + Power: - + Circle Mod: Circle Mod: - + GPIO14: GPIO14: - + Debug: Debug: - + Circle Pad Левый стик - - - + + + Set Analog Stick Задать параметры стика - - + + Deadzone: 0 Мёртвая зона: 0 - + C-Stick Правый стик - + Shoulder Buttons Бамперы и триггеры - + ZR: ZR: - + ZL: ZL: - + L: L: - + R: R: - + Motion / Touch... Движение / Прикосновение... - + Auto Map Автоназначение - + Clear All Очистить всё - + Restore Defaults Сбросить параметры - - - + + + Clear Очистить - - - + + + [not set] [не назначено] - - - + + + Restore Default Сбросить параметр - - + + Information Информация - + After pressing OK, first move your joystick horizontally, and then vertically. После нажатия кнопки OK передвигайте стик сначала в горизонтальном, а затем в вертикальном направлении. - - + + Deadzone: %1% Мёртвая зона: %1% - - + + Modifier Scale: %1% Степень преобразования: %1% - + Warning Предупреждение - + Auto mapping failed. Your controller may not have a corresponding mapping Сбой автоматического назначения. Назначение органов управления контроллера может быть выполнено неверно - + After pressing OK, press any button on your joystick После нажатия кнопки OK, нажмите любую кнопку на джойстике - + [press key] [нажмите кнопку] - + Error! Ошибка! - + You're using a key that's already bound. Вы используете комбинацию, которая уже назначена другому действию. - + New Profile Новый профиль - + Enter the name for the new profile. Введите имя для нового профиля. - + Delete Profile Удаление профиля - + Delete profile %1? Удалить профиль %1? - + Rename Profile Переименовать профиль - + New name: Новое имя: - + Duplicate profile name Существующее имя профиля - + Profile name already exists. Please choose a different name. Профиль с таким именем уже существует. Выберите другое имя. @@ -1954,198 +1954,198 @@ Would you like to ignore the error and continue? ConfigureMotionTouch - + Configure Motion / Touch Настройка движения / прикосновения - + Motion Движение - + Motion Provider: Источник данных о движении: - + Sensitivity: Чувствительность: - + Controller: Контроллер: - - - - - + + + + + Configure Настройка - + Touch Прикосновение - + Touch Provider: Источник данных о прикосновении: - + Calibration: Калибровка: - + (100, 50) - (1800, 850) (100, 50) - (1800, 850) - + Use button mapping: Использовать схему назначений: - + CemuhookUDP Config Настройка CemuhookUDP - + You may use any Cemuhook compatible UDP input source to provide motion and touch input. Можно использовать любой совместимый с Cemuhook источник UDP для движений и прикосновений. - + Server: Сервер: - + Port: Порт: - + Pad: Геймпад: - + Pad 1 Геймпад 1 - + Pad 2 Геймпад 2 - + Pad 3 Геймпад 3 - + Pad 4 Геймпад 4 - + Learn More Дополнительные сведения - - + + Test Проверить - + Mouse (Right Click) Мышь (правый щелчок) - - + + CemuhookUDP CemuhookUDP - + SDL SDL - + Emulator Window Окно эмулятора - + <a href='https://citra-emu.org/wiki/using-a-controller-or-android-phone-for-motion-or-touch-input'><span style="text-decoration: underline; color:#039be5;">Learn More</span></a> <a href='https://citra-emu.org/wiki/using-a-controller-or-android-phone-for-motion-or-touch-input'><span style="text-decoration: underline; color:#039be5;">Дополнительные сведения</span></a> - + Information Информация - + After pressing OK, press a button on the controller whose motion you want to track. После нажатия кнопки ОК, нажмите ту кнопку контроллера, которая будет отслеживаться. - + [press button] [нажмите кнопку] - + Testing Проверка - + Configuring Настройка - + Test Successful Проверка прошла успешно - + Successfully received data from the server. Данные с сервера успешно получены. - + Test Failed Проверка не пройдена - + Could not receive valid data from the server.<br>Please verify that the server is set up correctly and the address and port are correct. Не удалось получить корректные данные от сервера.<br>Убедитесь в правильной настройке сервера, в правильности адреса и порта. - + Citra Citra - + UDP Test or calibration configuration is in progress.<br>Please wait for them to finish. Выполняется проверка UDP или настройка калибровки.<br>Дождитесь окончания. @@ -2153,97 +2153,97 @@ Would you like to ignore the error and continue? ConfigurePerGame - + Dialog - + Info - + Size - + Format - + Name - + Filepath - + Title ID - + Reset Game Settings - + Use global configuration (%1) - + General - + System - + Enhancements - + Graphics - + Audio - + Debug - + Cheats - + Properties - + Citra - + Are you sure you want to <b>reset your settings for this game</b>? @@ -2251,65 +2251,65 @@ Would you like to ignore the error and continue? ConfigureStorage - + Form Форма - + Storage Хранение - + Use Virtual SD Использовать виртуальную SD-карту - + Custom Storage - + Use Custom Storage - + NAND Directory Каталог NAND - - + + Open Открыть - - + + NOTE: This does not move the contents of the previous directory to the new one. - - + + Change Изменить - + SDMC Directory Каталог SDMC - + Select NAND Directory Выберите каталог NAND - + Select SDMC Directory Выберите каталог SDMC @@ -2317,1064 +2317,1064 @@ Would you like to ignore the error and continue? ConfigureSystem - + Form Форма - + System Settings Параметры системы - + Enable New 3DS mode Включить режим New 3DS - + Use LLE applets (if installed) - + Username Имя пользователя - + Birthday Дата рождения - + January Январь - + February Февраль - + March Март - + April Апрель - + May Май - + June Июнь - + July Июль - + August Август - + September Сентябрь - + October Октябрь - + November Ноябрь - + December Декабрь - + Language Язык - + Note: this can be overridden when region setting is auto-select Примечание: этот параметр может быть переопределён, если включён параметр автовыбора региона - + Japanese (日本語) Японский (日本語) - + English Английский (English) - + French (français) Французский (français) - + German (Deutsch) Немецкий (Deutsch) - + Italian (italiano) Итальянский (italiano) - + Spanish (español) Испанский (español) - + Simplified Chinese (简体中文) Упрощённый китайский (简体中文) - + Korean (한국어) Корейский (한국어) - + Dutch (Nederlands) Голландский (Nederlands) - + Portuguese (português) Португальский (português) - + Russian (Русский) Русский - + Traditional Chinese (正體中文) Традиционный китайский (正體中文) - + Sound output mode Режим вывода звука - + Mono Моно - + Stereo Стерео - + Surround Объёмный - + Country Страна - + Clock Часы - + System Clock Системные часы - + Fixed Time Фиксированное время - + Startup time Время запуска - + yyyy-MM-ddTHH:mm:ss dd-MM-yyyyTHH:mm:ss - + Offset time - + days - + HH:mm:ss - + Initial System Ticks - + Random - + Fixed - + Initial System Ticks Override - + Play Coins: Игровые монеты: - + Run System Setup when Home Menu is launched - + Console ID: ID консоли: - + Regenerate Пересоздать - + 3GX Plugin Loader: - + Enable 3GX plugin loader - + Allow games to change plugin loader state - + Download System Files from Nitendo servers - + Minimal - + Old 3DS - + New 3DS - + JPN - + USA - + EUR - + AUS - + CHN - + KOR - + TWN - + Download - + System settings are available only when game is not running. Настройка параметров системы доступна только при незапущенной игре. - + Japan Япония - + Anguilla Ангилья - + Antigua and Barbuda Антигуа и Барбуда - + Argentina Аргентина - + Aruba Аруба - + Bahamas Багамы - + Barbados Барбадос - + Belize Белиз - + Bolivia Боливия - + Brazil Бразилия - + British Virgin Islands Виргинские Острова (Британские) - + Canada Канада - + Cayman Islands Каймановы острова - + Chile Чили - + Colombia Колумбия - + Costa Rica Коста-Рика - + Dominica Доминика - + Dominican Republic Доминиканская Республика - + Ecuador Эквадор - + El Salvador Сальвадор - + French Guiana Французская Гвиана - + Grenada Гренада - + Guadeloupe Гваделупа - + Guatemala Гватемала - + Guyana Гайана - + Haiti Гаити - + Honduras Гондурас - + Jamaica Ямайка - + Martinique Мартиника - + Mexico Мексика - + Montserrat Монтсеррат - + Netherlands Antilles Нидерландские Антильские острова - + Nicaragua Никарагуа - + Panama Панама - + Paraguay Парагвай - + Peru Перу - + Saint Kitts and Nevis Сент-Китс и Невис - + Saint Lucia Сент-Люсия - + Saint Vincent and the Grenadines Сент-Винсент и Гренадины - + Suriname Суринам - + Trinidad and Tobago Тринидад и Тобаго - + Turks and Caicos Islands Теркс и Кайкос - + United States Соединённые Штаты Америки - + Uruguay Уругвай - + US Virgin Islands Виргинские Острова (США) - + Venezuela Венесуэла - + Albania Албания - + Australia Австралия - + Austria Австрия - + Belgium Бельгия - + Bosnia and Herzegovina Босния и Герцеговина - + Botswana Ботсвана - + Bulgaria Болгария - + Croatia Хорватия - + Cyprus Кипр - + Czech Republic Чехия - + Denmark Дания - + Estonia Эстония - + Finland Финляндия - + France Франция - + Germany Германия - + Greece Греция - + Hungary Венгрия - + Iceland Исландия - + Ireland Ирландия - + Italy Италия - + Latvia Латвия - + Lesotho Лесото - + Liechtenstein Лихтенштейн - + Lithuania Литва - + Luxembourg Люксембург - + Macedonia Северная Македония - + Malta Мальта - + Montenegro Черногория - + Mozambique Мозамбик - + Namibia Намибия - + Netherlands Нидерланды - + New Zealand Новая Зеландия - + Norway Норвегия - + Poland Польша - + Portugal Португалия - + Romania Румыния - + Russia Россия - + Serbia Сербия - + Slovakia Словакия - + Slovenia Словения - + South Africa Южная Африка - + Spain Испания - + Swaziland Свазиленд - + Sweden Швеция - + Switzerland Швейцария - + Turkey Турция - + United Kingdom Великобритания - + Zambia Замбия - + Zimbabwe Зимбабве - + Azerbaijan Азербайджан - + Mauritania Мавритания - + Mali Мали - + Niger Нигер - + Chad Чад - + Sudan Судан - + Eritrea Эритрея - + Djibouti Джибути - + Somalia Сомали - + Andorra Андорра - + Gibraltar Гибралтар - + Guernsey Гернси - + Isle of Man Остров Мэн - + Jersey Джерси - + Monaco Монако - + Taiwan Тайвань - + South Korea Южная Корея - + Hong Kong Гонконг - + Macau Макао - + Indonesia Индонезия - + Singapore Сингапур - + Thailand Таиланд - + Philippines Филиппины - + Malaysia Малайзия - + China Китай - + United Arab Emirates Объединённые Арабские Эмираты - + India Индия - + Egypt Египет - + Oman Оман - + Qatar Катар - + Kuwait Кувейт - + Saudi Arabia Саудовская Аравия - + Syria Сирия - + Bahrain Бахрейн - + Jordan Иордания - + San Marino Сан-Марино - + Vatican City Ватикан - + Bermuda Бермуды - + Download System Files from Nintendo servers - + Citra is missing keys to download system files. <br><a href='https://citra-emu.org/wiki/aes-keys/'><span style="text-decoration: underline; color:#039be5;">How to get keys?</span></a> - - + + Console ID: 0x%1 ID консоли: 0x%1 - + This will replace your current virtual 3DS with a new one. Your current virtual 3DS will not be recoverable. This might have unexpected effects in games. This might fail, if you use an outdated config savegame. Continue? Будет произведена замена текущего виртуального 3DS на новый. Восстановить текущий виртуальный 3DS будет невозможно. Это может привести к непредвиденным последствиям в играх. При использовании файла сохранения с устаревшей конфигурацией может произойти сбой. Продолжить? - + Warning Предупреждение - + Downloading files... - + Cancel - - + + Citra - + Downloading system files failed. - + Successfully downloaded system files. @@ -3382,32 +3382,32 @@ Would you like to ignore the error and continue? ConfigureTouchFromButton - + Configure Touchscreen Mappings Назначение соответствий органам управления сенсорной панели - + Mapping: Схема соответствий: - + New Создать - + Delete Удалить - + Rename Переименовать - + Click the bottom area to add a point, then press a button to bind. Drag points to change position, or double-click table cells to edit values. Чтобы добавить точку, щёлкните по нижней части панели, а затем @@ -3416,59 +3416,59 @@ Drag points to change position, or double-click table cells to edit values. - + Delete Point Удалить точку - + Button Кнопка - + X X axis - + Y Y axis - + New Profile Новый профиль - + Enter the name for the new profile. Введите имя нового профиля. - + Delete Profile Удалить профиль - + Delete profile %1? Удалить профиль %1? - + Rename Profile Переименовать профиль - + New name: Новое имя: - + [press key] [нажмите клавишу] @@ -3476,113 +3476,113 @@ Drag points to change position, or double-click table cells to edit values. ConfigureUi - + Form Форма - + General Общие - + Note: Changing language will apply your configuration. Примечание: при смене языка ваши настройки будут применены. - + Interface language: Язык интерфейса: - + Theme: Тема: - + Game List Список игр - + Icon Size: Размер значков: - - + + None Отсутствует - + Small (24x24) Маленькие (24x24) - + Large (48x48) Большие (48x48) - + Row 1 Text: Текст на 1-й строке: - - + + File Name Имя файла - - + + Full Path Полный путь - - + + Title Name (short) Название игры (краткое) - - + + Title ID ID названия игры - - + + Title Name (long) Название игры (длинное) - + Row 2 Text: Текст на 2-й строке: - + Hide Titles without Icon Скрывать названия игр без значков - + Single Line Mode Однострочный режим - + <System> <Системный> - + English Английский @@ -3590,136 +3590,136 @@ Drag points to change position, or double-click table cells to edit values. ConfigureWeb - + Form Форма - + Citra Web Service Веб-сервис Citra - + By providing your username and token, you agree to allow Citra to collect additional usage data, which may include user identifying information. Отправка имени пользователя и токена означает согласие на сбор приложением Citra дополнительных данных об использовании, которые могут включать сведения, идентифицирующие пользователя. - - + + Verify Подтвердить - + Sign up Регистрация - + Token: Токен: - + Username: Имя пользователя: - + What is my token? Что такое токен? - + Web Service configuration can only be changed when a public room isn't being hosted. Настройки веб-сервиса можно изменять только в том случае, если на компьютере не размещается публичная комната чата. - + Telemetry Телеметрия - + Share anonymous usage data with the Citra team Поделиться анонимными данными использования с командой Citra - + Learn more Дополнительная информация - + Telemetry ID: ID телеметрии: - + Regenerate Пересоздать - + Discord Presence Интеграция с Discord - + Show Current Game in your Discord Status Показывать текущую игру в статусе Discord - + <a href='https://citra-emu.org/entry/telemetry-and-why-thats-a-good-thing/'><span style="text-decoration: underline; color:#039be5;">Learn more</span></a> <a href='https://citra-emu.org/entry/telemetry-and-why-thats-a-good-thing/'><span style="text-decoration: underline; color:#039be5;">Дополнительная информация</span></a> - + <a href='https://profile.citra-emu.org/'><span style="text-decoration: underline; color:#039be5;">Sign up</span></a> <a href='https://profile.citra-emu.org/'><span style="text-decoration: underline; color:#039be5;">Зарегистрироваться</span></a> - + <a href='https://citra-emu.org/wiki/citra-web-service/'><span style="text-decoration: underline; color:#039be5;">What is my token?</span></a> <a href='https://citra-emu.org/wiki/citra-web-service/'><span style="text-decoration: underline; color:#039be5;">Что такое токен?</span></a> - - + + Unspecified Не указано - - + + Telemetry ID: 0x%1 ID телеметрии: 0x%1 - + Token not verified Токен не проверен - + Token was not verified. The change to your token has not been saved. Токен не был проверен. Изменения к токену сохранены не были. - + Verifying... Проверка... - + Verification failed Сбой проверки - + Verification failed. Check that you have entered your token correctly, and that your internet connection is working. Сбой проверки. Убедитесь в том, что токен введён верно и подключение к Интернету работает. @@ -3727,47 +3727,47 @@ Drag points to change position, or double-click table cells to edit values. DirectConnect - + Direct Connect Прямое подключение - + Server Address - + <html><head/><body><p>Server address of the host</p></body></html> - + Port Порт - + <html><head/><body><p>Port number the host is listening on</p></body></html> <html><head/><body><p>Номер порта, который прослушивает сервер</p></body></html> - + 24872 24872 - + Nickname Псевдоним - + Password Пароль - + Connect Подключиться @@ -3775,12 +3775,12 @@ Drag points to change position, or double-click table cells to edit values. DirectConnectWindow - + Connecting Подключение - + Connect Подключиться @@ -3788,110 +3788,110 @@ Drag points to change position, or double-click table cells to edit values. DumpingDialog - + Dump Video - + Output - + Format: - - - + + + Options: - - - - + + + + ... - + Path: - + Video - - + + Encoder: - - + + Bitrate: - - + + bps - + Audio - - + + Citra - + Please specify the output path. - + output formats - + video encoders - + audio encoders - + Could not find any available %1. Please check your FFmpeg installation used for compilation. - - - - + + + + %1 (%2) - + Select Video Output Path @@ -3899,418 +3899,418 @@ Please check your FFmpeg installation used for compilation. GMainWindow - + <a href='https://citra-emu.org/entry/telemetry-and-why-thats-a-good-thing/'>Anonymous data is collected</a> to help improve Citra. <br/><br/>Would you like to share your usage data with us? Для оказания помощи в улучшении приложения Citra <a href='https://citra-emu.org/entry/telemetry-and-why-thats-a-good-thing/'>проводится сбор анонимных данных</a>. <br/><br/>Поделиться данными об использовании? - + Telemetry Телеметрия - + No Suitable Vulkan Devices Detected - + Vulkan initialization failed during boot.<br/>Your GPU may not support Vulkan 1.1, or you do not have the latest graphics driver. - - + + Current emulation speed. Values higher or lower than 100% indicate emulation is running faster or slower than a 3DS. Текущая скорость эмуляции. Значения выше или ниже 100% указывают на то, что эмуляция работает быстрее или медленнее, чем в 3DS. - - + + How many frames per second the game is currently displaying. This will vary from game to game and scene to scene. Текущая частота кадров в секунду в игре. Эта величина будет меняться от игры к игре и от сцены к сцене. - - + + Time taken to emulate a 3DS frame, not counting framelimiting or v-sync. For full-speed emulation this should be at most 16.67 ms. Время, затрачиваемое на эмуляцию кадра 3DS, без учёта ограничения кадров или вертикальной синхронизации. Для полноскоростной эмуляции это значение должно быть не более 16,67 мс. - + Clear Recent Files Очистить последние файлы - + &Continue - + &Pause - + Update Available Доступно обновление - + An update is available. Would you like to install it now? Доступно обновление. Установить его сейчас? - + No Update Found Обновления не найдены - + No update is found. Обновления не найдены. - + Citra is running a game TRANSLATORS: This string is shown to the user to explain why Citra needs to prevent the computer from sleeping - - + + Invalid ROM Format Недопустимый формат образа ПЗУ - - + + Your ROM format is not supported.<br/>Please follow the guides to redump your <a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>game cartridges</a> or <a href='https://citra-emu.org/wiki/dumping-installed-titles/'>installed titles</a>. Данный формат образа ПЗУ не поддерживается.<br/>Следуйте инструкциям для создания нового дампа <a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>игровых картриджей</a> или <a href='https://citra-emu.org/wiki/dumping-installed-titles/'>установленных игр</a>. - + ROM Corrupted Образ ПЗУ повреждён - + Your ROM is corrupted. <br/>Please follow the guides to redump your <a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>game cartridges</a> or <a href='https://citra-emu.org/wiki/dumping-installed-titles/'>installed titles</a>. Образ ПЗУ повреждён. <br/>Следуйте инструкциям для создания нового дампа <a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>игровых картриджей</a> или <a href='https://citra-emu.org/wiki/dumping-installed-titles/'>установленных игр</a>. - + ROM Encrypted Образ ПЗУ зашифрован - + Your ROM is encrypted. <br/>Please follow the guides to redump your <a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>game cartridges</a> or <a href='https://citra-emu.org/wiki/dumping-installed-titles/'>installed titles</a>. Образ ПЗУ зашифрован. <br/>Следуйте инструкциям для создания нового дампа <a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>игровых картриджей</a> или <a href='https://citra-emu.org/wiki/dumping-installed-titles/'>установленных игр</a>. - + Unsupported ROM - + GBA Virtual Console ROMs are not supported by Citra. - + Error while loading ROM! Ошибка при загрузке образа ПЗУ! - + An unknown error occurred. Please see the log for more details. Произошла неизвестная ошибка. Подробную информацию см. в журнале. - + CIA must be installed before usage Перед использованием необходимо установить CIA-файл - + Before using this CIA, you must install it. Do you want to install it now? Перед использованием этого CIA-файла, необходимо его установить. Установить сейчас? - - + + Slot %1 Ячейка %1 - + Slot %1 - %2 %3 - + Error Opening %1 Folder Ошибка открытия папки %1 - - + + Folder does not exist! Папка не существует! - + Dumping... Создание дампа... - - + + Cancel Отмена - - - - - - - - - + + + + + + + + + Citra Citra - + Could not dump base RomFS. Refer to the log for details. Не удалось создать дамп base RomFS. Подробную информацию см. в журнале. - + Error Opening %1 Ошибка при открытии %1 - + Select Directory Выбрать каталог - + Properties - + The game properties could not be loaded. - + 3DS Executable (%1);;All Files (*.*) %1 is an identifier for the 3DS executable file extensions. Исполняемый файл 3DS (%1);;Все файлы (*.*) - + Load File Загрузка файла - + Load Files Загрузка файлов - + 3DS Installation File (*.CIA*) Установочный файл 3DS (*.CIA*) - + All Files (*.*) Все файлы (*.*) - + %1 has been installed successfully. %1 был успешно установлен. - + Unable to open File Не удалось открыть файл - + Could not open %1 Не удалось открыть %1 - + Installation aborted Установка прервана - + The installation of %1 was aborted. Please see the log for more details Установка %1 была прервана. Более подробную информацию см. в журнале. - + Invalid File Недопустимый файл - + %1 is not a valid CIA %1 — недопустимый CIA-файл - + Encrypted File Зашифрованный файл - + %1 must be decrypted before being used with Citra. A real 3DS is required. Перед тем, как использовать %1 с приложением Citra, его необходимо расшифровать. Требуется реальное устройство 3DS. - + Unable to find File - + Could not find %1 - + Uninstalling '%1'... - + Failed to uninstall '%1'. - + Successfully uninstalled '%1'. - + File not found Файл не найден - + File "%1" not found Файл «%1» не найден - + Missing Citra Account Учётная запись Citra не найдена - + You must link your Citra account to submit test cases.<br/>Go to Emulation &gt; Configure... &gt; Web to do so. Для отправки тестовых случаев необходимо выполнить привязку учётной записи Citra.<br/>Это можно сделать в меню «Эмуляция &gt; Настроить... &gt; Веб». - + Savestates - + Warning: Savestates are NOT a replacement for in-game saves, and are not meant to be reliable. Use at your own risk! - - - + + + Error opening amiibo data file - + A tag is already in use. - + Game is not looking for amiibos. - + Amiibo File (%1);; All Files (*.*) Файл Amiibo (%1);; Все файлы (*.*) - + Load Amiibo Загрузка Amiibo - + Unable to open amiibo file "%1" for reading. - + Record Movie Запись видеоролика - + Movie recording cancelled. Запись видеоролика отменена. - - + + Movie Saved Сохранение видеоролика - - + + The movie is successfully saved. Видеоролик сохранён успешно. - + Invalid Screenshot Directory - + Cannot create specified screenshot directory. Screenshot path is set back to its default value. - + Could not load video dumper - + FFmpeg could not be loaded. Make sure you have a compatible version installed. To install FFmpeg to Citra, press Open and select your FFmpeg directory. @@ -4319,158 +4319,158 @@ To view a guide on how to install FFmpeg, press Help. - + Select FFmpeg Directory - + The provided FFmpeg directory is missing %1. Please make sure the correct directory was selected. - + FFmpeg has been sucessfully installed. - + Installation of FFmpeg failed. Check the log file for details. - + Could not start video dumping.<br>Refer to the log for details. Не удалось начать запись видео.<br>Подробную информацию см. в журнале. - + Recording %1 - + Playing %1 / %2 - + Movie Finished - + Speed: %1% Скорость: %1% - + Speed: %1% / %2% Скорость: %1% / %2% - + Game: %1 FPS Игра: %1 FPS - + Frame: %1 ms Кадр: %1 мс - + VOLUME: MUTE - + VOLUME: %1% Volume percentage (e.g. 50%) - + %1 is missing. Please <a href='https://citra-emu.org/wiki/dumping-system-archives-and-the-shared-fonts-from-a-3ds-console/'>dump your system archives</a>.<br/>Continuing emulation may result in crashes and bugs. %1 отсутствует. <a href='https://citra-emu.org/wiki/dumping-system-archives-and-the-shared-fonts-from-a-3ds-console/'>Создайте дамп системных архивов</a>.<br/>Дальнейшая работа эмуляции может сопровождаться ошибками и сбоями. - + A system archive Системный архив - + System Archive Not Found Системный архив не найден - + System Archive Missing Не удалось найти системный архив - + Save/load Error Ошибка сохранения/загрузки - + Fatal Error Неустранимая ошибка - + A fatal error occurred. <a href='https://community.citra-emu.org/t/how-to-upload-the-log-file/296'>Check the log</a> for details.<br/>Continuing emulation may result in crashes and bugs. Произошла неустранимая ошибка. Подробную информацию <a href='https://community.citra-emu.org/t/how-to-upload-the-log-file/296'>см. в журнале</a>. <br/>Дальнейшая работы эмуляции может сопровождаться ошибками и сбоями. - + Fatal Error encountered Произошла неустранимая ошибка - + Continue Продолжить - + Quit Game - + OK - + Would you like to exit now? Выйти сейчас? - + The game is still running. Would you like to stop emulation? Работа игры продолжается. Остановить эмуляцию? - + Playback Completed Воспроизведение завершено - + Movie playback completed. Воспроизведение видеоролика завершено. - + Primary Window - + Secondary Window @@ -4478,22 +4478,22 @@ To view a guide on how to install FFmpeg, press Help. GPUCommandListModel - + Command Name Имя команды - + Register Регистр - + Mask Маска - + New Value Новое значение @@ -4501,23 +4501,23 @@ To view a guide on how to install FFmpeg, press Help. GPUCommandListWidget - + Pica Command List Список команд Pica - - + + Start Tracing Начать трассировку - + Copy All Копировать всё - + Finish Tracing Закончить трассировку @@ -4525,7 +4525,7 @@ To view a guide on how to install FFmpeg, press Help. GPUCommandStreamWidget - + Graphics Debugger Графический отладчик @@ -4533,42 +4533,42 @@ To view a guide on how to install FFmpeg, press Help. GRenderWindow - + OpenGL not available! - + OpenGL shared contexts are not supported. - + Error while initializing OpenGL! - + Your GPU may not support OpenGL, or you do not have the latest graphics driver. - + Error while initializing OpenGL 4.3! - + Your GPU may not support OpenGL 4.3, or you do not have the latest graphics driver.<br><br>GL Renderer:<br>%1 - + Error while initializing OpenGL ES 3.2! - + Your GPU may not support OpenGL ES 3.2, or you do not have the latest graphics driver.<br><br>GL Renderer:<br>%1 @@ -4576,193 +4576,193 @@ To view a guide on how to install FFmpeg, press Help. GameList - - + + Compatibility Совместимость - - + + Region Регион - - + + File type Тип файла - - + + Size Размер - + Open Save Data Location Открыть папку размещения данных сохранения игры - + Open Extra Data Location Открыть папку размещения дополнительных данных - + Open Application Location Открыть папку размещения приложения - + Open Update Data Location Открыть папку размещения данных обновления - + Open DLC Data Location - + Open Texture Dump Location Открыть папку размещения дампа текстуры - + Open Custom Texture Location Открыть папку размещения настраиваемой текстуры - + Open Mods Location Открыть папку размещения модификаторов - + Dump RomFS Создать дамп RomFS - + Disk Shader Cache - + Open Shader Cache Location - + Delete OpenGL Shader Cache - + Uninstall - + Everything - + Game - + Update - + DLC - + Navigate to GameDB entry Перейти к записи в GameDB - + Properties - - - - + + + + Citra - + Are you sure you want to completely uninstall '%1'? This will delete the game if installed, as well as any installed updates or DLC. - - + + %1 (Update) - - + + %1 (DLC) - + Are you sure you want to uninstall '%1'? - + Are you sure you want to uninstall the update for '%1'? - + Are you sure you want to uninstall all DLC for '%1'? - + Scan Subfolders Сканировать подпапки - + Remove Game Directory Удалить каталог с играми - + Move Up - + Move Down - + Open Directory Location Открыть расположение каталога - + Name Имя @@ -4770,82 +4770,82 @@ This will delete the game if installed, as well as any installed updates or DLC. GameListItemCompat - + Perfect Отлично - + Game functions flawless with no audio or graphical glitches, all tested functionality works as intended without any workarounds needed. Игра функционирует безотказно без ошибок звука или графики. Весь тестируемый функционал работает правильно без необходимости в использовании обходных вариантов решения проблем. - + Great Хорошо - + Game functions with minor graphical or audio glitches and is playable from start to finish. May require some workarounds. Игра работает с незначительными ошибками графики или звука, но играть можно от начала до конца. Иногда может возникать необходимость в поиске обходных вариантов решения проблем. - + Okay Удовлетворительно - + Game functions with major graphical or audio glitches, but game is playable from start to finish with workarounds. Игра работает с серьёзными ошибками графики или звука, но применение обходных вариантов решения проблем позволяет играть от начала до конца. - + Bad Плохо - + Game functions, but with major graphical or audio glitches. Unable to progress in specific areas due to glitches even with workarounds. Игра работает, но с серьёзными ошибками графики или звука. Прохождение некоторых конкретных мест в игре невозможно даже при использовании обходных вариантов решения проблем. - + Intro/Menu Вступительный видеоролик/меню - + Game is completely unplayable due to major graphical or audio glitches. Unable to progress past the Start Screen. Играть абсолютно невозможно ввиду наличия серьёзных ошибок графики или звука. Не удаётся пройти дальше начального экрана. - + Won't Boot Не запускается - + The game crashes when attempting to startup. Игра вылетает во время запуска. - + Not Tested Не проверялась - + The game has not yet been tested. Эта игра ещё не проверялась. @@ -4853,7 +4853,7 @@ Screen. GameListPlaceholder - + Double-click to add a new folder to the game list Щёлкните дважды для добавления новой папки в список игр @@ -4861,27 +4861,27 @@ Screen. GameListSearchField - + of из - + result результат - + results результатов - + Filter: Фильтр: - + Enter pattern to filter Введите шаблон для фильтрации @@ -4889,47 +4889,47 @@ Screen. GameRegion - + Japan Япония - + North America Северная Америка - + Europe Евпропа - + Australia Австралия - + China Китай - + Korea Корея - + Taiwan Тайвань - + Invalid region Недопустимый регион - + Region free Без указания региона @@ -4937,23 +4937,23 @@ Screen. GraphicsBreakPointsWidget - + Pica Breakpoints Точки прерывания Pica - - + + Emulation running Эмуляция запущена - + Resume Продолжить - + Emulation halted at breakpoint Эмуляция остановлена ​​в точке прерывания @@ -4961,146 +4961,146 @@ Screen. GraphicsSurfaceWidget - + Pica Surface Viewer Просмотр поверхностей Pica - + Color Buffer Буфер цвета - + Depth Buffer Буфер глубины - + Stencil Buffer Буфер трафарета - + Texture 0 Текстура 0 - + Texture 1 Текстура 1 - + Texture 2 Текстура 2 - + Custom Другое - + Unknown Неизвестный - + Save Сохранить - + Source: Источник: - + Physical Address: Физический адрес: - + Width: Ширина: - + Height: Высота: - + Format: Формат: - + X: X: - + Y: Y: - + Pixel out of bounds Пиксел за гранью - + (unable to access pixel data) (не удалось получить доступ к данным о пикселах) - + (invalid surface address) (неверный адрес поверхности) - + (unknown surface format) (неизвестный формат поверхности) - + Portable Network Graphic (*.png) Изображение PNG (*.png) - + Binary data (*.bin) Двоичные данные (*.bin) - + Save Surface Сохранить поверхность - - - - + + + + Error Ошибка - - + + Failed to open file '%1' Не удалось открыть файл '%1' - + Failed to save surface data to file '%1' Не удалось сохранить данные поверхности в файл '%1' - + Failed to completely write surface data to file. The saved data will likely be corrupt. Не удалось полностью записать данные о поверхности в файл. Сохранённые данные, вероятно, повреждены. @@ -5108,42 +5108,42 @@ Screen. GraphicsTracingWidget - + CiTrace Recorder Средство записи CiTrace - + Start Recording Начать запись - + Stop and Save Остановить и сохранить - + Abort Recording Прервать запись - + Save CiTrace Сохранить CiTrace - + CiTrace File (*.ctf) Файл CiTrace (*.ctf) - + CiTracing still active CiTracing в работе - + A CiTrace is still being recorded. Do you want to save it? If not, all recorded data will be discarded. CiTrace записывается. Сохранить его? В противном случае все записанные данные будут удалены. @@ -5151,17 +5151,17 @@ Screen. GraphicsVertexShaderModel - + Offset Смещение - + Raw Без обработки - + Disassembly Дизассемблирование @@ -5169,127 +5169,127 @@ Screen. GraphicsVertexShaderWidget - + Save Shader Dump Сохранить дамп шейдера - + Shader Binary (*.shbin) Двоичный файл шейдера (*.shbin) - + Pica Vertex Shader Вершинный шейдер Pica - + (data only available at vertex shader invocation breakpoints) (данные доступны только в контрольных точках вызова вершинного шейдера) - + Dump Дамп - + Input Data Входные данные - + Attribute %1 Атрибут %1 - + Cycle Index: Индекс цикла: - + SRC1: %1, %2, %3, %4 SRC1: %1, %2, %3, %4 - + SRC2: %1, %2, %3, %4 SRC2: %1, %2, %3, %4 - + SRC3: %1, %2, %3, %4 SRC3: %1, %2, %3, %4 - + DEST_IN: %1, %2, %3, %4 DEST_IN: %1, %2, %3, %4 - + DEST_OUT: %1, %2, %3, %4 DEST_OUT: %1, %2, %3, %4 - + Address Registers: %1, %2 Адресные регистры: %1, %2 - + Compare Result: %1, %2 Сравнить результат: %1, %2 - + Static Condition: %1 Статическое состояние: %1 - + Dynamic Conditions: %1, %2 Динамические состояния: %1, %2 - + Loop Parameters: %1 (repeats), %2 (initializer), %3 (increment), %4 Параметры цикла: %1 (повторов), %2 (инициализатор), %3 (приращение), %4 - + Instruction offset: 0x%1 Смещение инструкции: 0x%1 - + -> 0x%2 -> 0x%2 - + (last instruction) (последняя инструкция) @@ -5297,67 +5297,67 @@ Screen. HostRoom - + Create Room Создать комнату - + Room Name Название комнаты - + Preferred Game Предпочитаемая игра - + Max Players Максимум игроков - + Username Имя пользователя - + (Leave blank for open game) (Оставьте поле пустым для открытой игры) - + Password Пароль - + Port Порт - + Room Description Описание комнаты - + Load Previous Ban List Загрузить составленный ранее список заблокированных участников - + Public Публичная - + Unlisted Непубличная - + Host Room Разместить комнату @@ -5365,12 +5365,12 @@ Screen. HostRoomWindow - + Error Ошибка - + Failed to announce the room to the public lobby. In order to host a room publicly, you must have a valid Citra account configured in Emulation -> Configure -> Web. If you do not want to publish a room in the public lobby, then select Unlisted instead. Debug Message: Не удалось объявить комнату в публичном лобби. Для публичного размещения комнаты необходимо иметь действительную учётную запись Citra, которую можно настроить в меню «Эмуляция -> Настроить -> Веб». Если требуется сделать так, чтобы комната не публиковалась в публичном лобби, выберите «Непубличная». @@ -5380,47 +5380,47 @@ Debug Message: IPCRecorder - + IPC Recorder Регистратор событий межпроцессорного взаимодействия - + Enable Recording Включить регистрацию событий - + Filter: Фильтр: - + Leave empty to disable filtering Для отключения фильтра оставить поле пустым - + # - + Status Состояние - + Service Служба - + Function Функция - + Clear Очистить @@ -5428,47 +5428,47 @@ Debug Message: IPCRecorderWidget - + Invalid Недопустимый - + Sent Отправлен - + Handling Обрабатывается - + Success Выполнен - + Error Ошибка - + HLE Unimplemented HLE не реализовано - + HLE HLE - + LLE LLE - + Unknown Неизвестный @@ -5476,7 +5476,7 @@ Debug Message: LLEServiceModulesWidget - + Toggle LLE Service Modules Вкл./выкл. модули сервисов LLE @@ -5484,54 +5484,54 @@ Debug Message: LoadingScreen - + Loading Shaders 387 / 1628 Загрузка шейдеров 387 / 1628 - + Loading Shaders %v out of %m Загрузка шейдеров %v из %m - + Estimated Time 5m 4s Оставшееся время 5 мин 4 сек - + Loading... Загрузка... - + Preloading Textures %1 / %2 - + Preparing Shaders %1 / %2 Подготовка шейдеров %1 / %2 - + Loading Shaders %1 / %2 Загрузка шейдеров %1 / %2 - + Launching... Запуск... - + Now Loading %1 Выполняется загрузка %1 - + Estimated Time %1 Оставшееся время %1 @@ -5539,83 +5539,83 @@ Debug Message: Lobby - + Public Room Browser Просмотр публичных комнат - - + + Nickname Псевдоним - + Filters Фильтры - + Search Поиск - + Games I Own Игры в наличии - + Hide Empty Rooms - + Hide Full Rooms Только неполные комнаты - + Refresh Lobby Обновить лобби - + Password Required to Join Для входа требуется пароль - + Password: Пароль: - + Room Name Название комнаты - + Preferred Game Предпочитаемая игра - + Host Хост - + Players Игроки - + Refreshing Обновление - + Refresh List Обновить список @@ -5623,362 +5623,362 @@ Debug Message: MainWindow - + Citra Citra - + &File &Файл - + Boot Home Menu - + Recent Files Последние файлы - + Amiibo Amiibo - + &Emulation &Эмуляция - + Save State Сохранить состояние - + Load State Загрузить состояние - + &View &Вид - + Debugging Отладка - + Screen Layout Компоновка экрана - + Multiplayer Мультиплеер - + Tools Инструменты - + Movie Видеоролик - + Frame Advance Покадровое воспроизведение - + &Help &Помощь - + Load File... Загрузить файл... - + Install CIA... Установить CIA... - + JPN - + USA - + EUR - + AUS - + CHN - + KOR - + TWN - + E&xit В&ыход - + &Pause &Пауза - + &Stop &Стоп - + Save Сохранить - + Load Загрузить - + FAQ FAQ - + About Citra О приложении Citra - + Single Window Mode Режим одного окна - + Save to Oldest Slot Сохранить в самую раннюю ячейку - + Load from Newest Slot Загрузить из самой последней ячейки - + Configure... Настроить... - + Display Dock Widget Headers Отображать заголовки закреплённых виджетов - + Show Filter Bar Показывать панель фильтров - + Show Status Bar Показывать строку состояния - + Create Pica Surface Viewer Создать просмотрщик поверхностей Pica - + Record... - + Play... - + Close - + Save without Closing - + Read-Only Mode - + Enable Frame Advancing Включить покадровое воспроизведение - + Advance Frame Следующий кадр - + Capture Screenshot Сделать снимок экрана - + Dump Video Создать дамп видео - + Browse Public Game Lobby Обзор лобби публичных игр - + Create Room Создать комнату - + Leave Room Покинуть комнату - + Direct Connect to Room Прямое подключение к комнате - + Show Current Room Показать текущую комнату - + Fullscreen Полный экран - + Modify Citra Install Изменить установку Citra - + Opens the maintenance tool to modify your Citra installation Открывает средство поддержки для внесения изменений в установку Citra - + Default По умолчанию - + Single Screen Один экран - + Large Screen Большой экран - + Hybrid Screen - + Side by Side Рядом - + Separate Windows - + Swap Screens Смена экранов - + Rotate Upright Повернуть вертикально - + Check for Updates Проверить наличие обновлений - + Report Compatibility Сообщить о совместимости - + Restart Перезапустить - + Load... Загрузить... - + Remove Удалить - + Open Citra Folder Открыть папку Citra - + Configure Current Game... @@ -5986,7 +5986,7 @@ Debug Message: MicroProfileDialog - + MicroProfile MicroProfile @@ -5994,48 +5994,48 @@ Debug Message: ModerationDialog - + Moderation Модерация - + Ban List Список заблокированных участников - - + + Refreshing Обновление - + Unban Разблокировать - + Subject Тема - + Type Тип - + Forum Username Имя пользователя на форуме - + IP Address IP-адрес - + Refresh Обновить @@ -6043,91 +6043,91 @@ Debug Message: MoviePlayDialog - - + + Play Movie - + File: - + ... - + Info - + Game: - + Author: - + Rerecord Count: - + Length: - + Current running game will be stopped. - + <br>Current recording will be discarded. - + Citra TAS Movie (*.ctm) - + Invalid movie file. - + Revision dismatch, playback may desync. - + Indicated length is incorrect, file may be corrupted. - - - - + + + + (unknown) - + Game used in this movie is not in game list. - + (>1 day) @@ -6135,43 +6135,43 @@ Debug Message: MovieRecordDialog - - + + Record Movie - + File: - + ... - + Author: - + Current running game will be restarted. - + <br>Current recording will be discarded. - + Recording will start once you boot a game. - + Citra TAS Movie (*.ctm) @@ -6179,44 +6179,44 @@ Debug Message: MultiplayerState - - + + Current connection status Текущий статус подключения - - + + Not Connected. Click here to find a room! Не подключён. Кликните здесь, чтобы найти комнату! - - - + + + Connected Подключён - - + + Not Connected Не подключён - + Error Ошибка - + Failed to update the room information. Please check your Internet connection and try hosting the room again. Debug Message: Не удалось обновить информацию о комнате. Проверьте соединение с Интернетом и попытайтесь разместить комнату ещё раз. Отладочное сообщение: - + New Messages Received Получены новые сообщения @@ -6224,22 +6224,22 @@ Debug Message: NetworkMessage - + Leave Room Покинуть комнату - + You are about to close the room. Any network connections will be closed. Предпринята попытка закрыть комнату. Все сетевые соединения будут закрыты. - + Disconnect Отключиться - + You are about to leave the room. Any network connections will be closed. Предпринята попытка покинуть комнату. Все сетевые соединения будут закрыты. @@ -6247,110 +6247,110 @@ Debug Message: NetworkMessage::ErrorManager - + Username is not valid. Must be 4 to 20 alphanumeric characters. - + Room name is not valid. Must be 4 to 20 alphanumeric characters. - + Username is already in use or not valid. Please choose another. - + IP is not a valid IPv4 address. - + Port must be a number between 0 to 65535. - + You must choose a Preferred Game to host a room. If you do not have any games in your game list yet, add a game folder by clicking on the plus icon in the game list. - + Unable to find an internet connection. Check your internet settings. - + Unable to connect to the host. Verify that the connection settings are correct. If you still cannot connect, contact the room host and verify that the host is properly configured with the external port forwarded. - + Unable to connect to the room because it is already full. - + Creating a room failed. Please retry. Restarting Citra might be necessary. - + The host of the room has banned you. Speak with the host to unban you or try a different room. - + Version mismatch! Please update to the latest version of Citra. If the problem persists, contact the room host and ask them to update the server. - + Incorrect password. - + An unknown error occurred. If this error continues to occur, please open an issue - + Connection to room lost. Try to reconnect. - + You have been kicked by the room host. - + MAC address is already in use. Please choose another. - + Your Console ID conflicted with someone else's in the room. Please go to Emulation > Configure > System to regenerate your Console ID. - + You do not have enough permission to perform this action. - + The user you are trying to kick/ban could not be found. They may have left the room. - + Error Ошибка @@ -6358,37 +6358,37 @@ They may have left the room. OptionSetDialog - + Options - + Unset - + unknown - + %1 &lt;%2> %3 - + Range: %1 - %2 - + custom - + %1 (0x%2) %3 @@ -6396,32 +6396,32 @@ They may have left the room. OptionsDialog - + Options - + Double click to see the description and change the values of the options. - + Specific - + Generic - + Name - + Value @@ -6429,157 +6429,157 @@ They may have left the room. QObject - + Supported image files (%1) Поддерживаемые файлы изображений (%1) - + Open File Открыть файл - + Error Ошибка - + Couldn't load the camera Не удалось загрузить камеру - + Couldn't load %1 Не удалось загрузить %1 - - + + Shift Shift - - + + Ctrl Ctrl - - + + Alt Alt - - - + + + [not set] [не задано] - - + + Hat %1 %2 Миниджойстик %1 %2 - - - - - - + + + + + + Axis %1%2 Ось %1%2 - - + + Button %1 Кнопка %1 - + GC Axis %1%2 Ось GC %1%2 - + GC Button %1 Кнопка GC %1 - - - + + + [unknown] [Неизвестно] - + [unused] [не используется] - + auto - + true - + false - - + + none - + %1 (0x%2) - + Invalid region Недопустимый регион - + Installed Titles Названия установленных игр - + System Titles Названия предустановленных игр - + Add New Game Directory Добавить новый каталог с играми - + Not playing a game Не играет - + %1 is not playing a game %1 не играет - + %1 is playing %2 %1 играет в %2 @@ -6587,7 +6587,7 @@ They may have left the room. QtKeyboard - + Software Keyboard Экранная клавиатура @@ -6595,27 +6595,27 @@ They may have left the room. QtKeyboardDialog - + Text length is not correct (should be %1 characters) Некорректная длина текста (текст должен состоять из %1 символов) - + Text is too long (should be no more than %1 characters) Текст слишком длинный (длина текста не должна превышать %1 символов) - + Blank input is not allowed Пустой ввод недопустим - + Empty input is not allowed Пустой ввод недопустим - + Validation error Ошибка проверки @@ -6623,12 +6623,12 @@ They may have left the room. QtMiiSelectorDialog - + Mii Selector Выбор Mii - + Standard Mii Стандартный Mii @@ -6636,95 +6636,95 @@ They may have left the room. RecordDialog - + View Record Просмотр записи - + Client Клиент - - + + Process: Процесс: - - + + Thread: Поток: - - + + Session: Сессия: - + Server Сервер - + General Общие - + Client Port: Порт клиента: - + Service: Сервис: - + Function: Функция: - + Command Buffer Буфер команд - + Select: Выбрать: - + Request Untranslated Неоттранслированный запрос - + Request Translated Оттранслированный запрос - + Reply Untranslated Неоттранслированный ответ - + Reply Translated Оттранслированный ответ - + OK OK - + null пустое значение @@ -6732,37 +6732,37 @@ They may have left the room. RegistersWidget - + Registers Регистры - + VFP Registers Регистры VFP - + VFP System Registers Системные регистры VFP - + Vector Length Длина вектора - + Vector Stride Векторный шаг - + Rounding Mode Режим округления - + Vector Iteration Count Количество векторных итераций @@ -6770,7 +6770,7 @@ They may have left the room. SequenceDialog - + Enter a hotkey Введите комбинацию клавиш @@ -6778,7 +6778,7 @@ They may have left the room. WaitTreeEvent - + reset type = %1 тип сброса = %1 @@ -6786,12 +6786,12 @@ They may have left the room. WaitTreeMutex - + locked %1 times by thread: заблокировано %1 раз по потоку: - + free свободно @@ -6799,7 +6799,7 @@ They may have left the room. WaitTreeMutexList - + holding mutexes удержание мьютексов @@ -6807,12 +6807,12 @@ They may have left the room. WaitTreeObjectList - + waiting for all objects ожидание всех объектов - + waiting for one of the following objects ожидание одного из следующих объектов @@ -6820,12 +6820,12 @@ They may have left the room. WaitTreeSemaphore - + available count = %1 доступно = %1 - + max count = %1 максимально = %1 @@ -6833,112 +6833,112 @@ They may have left the room. WaitTreeThread - + running выполняется - + ready готов - + waiting for address 0x%1 ожидает адрес 0x%1 - + sleeping спит - + waiting for IPC response ожидает ответ IPC - + waiting for objects ожидает объекты - + waiting for HLE return ожидает возвращение HLE - + dormant неактивен - + dead мёртвый - + PC = 0x%1 LR = 0x%2 PC = 0x%1 LR = 0x%2 - + default по умолчанию - + all все - + AppCore AppCore - + SysCore SysCore - + Unknown processor %1 Неизвестный процессор %1 - + object id = %1 id объекта = %1 - + processor = %1 процессор = %1 - + thread id = %1 id потока = %1 - + process = %1 (%2) процесс = %1 (%2) - + priority = %1(current) / %2(normal) приоритет = %1(текущий) / %2(нормальный) - + last running ticks = %1 последние рабочие такты = %1 - + not holding mutex не удерживать мьютекс @@ -6946,7 +6946,7 @@ They may have left the room. WaitTreeThreadList - + waited by thread ожидается потоком @@ -6954,17 +6954,17 @@ They may have left the room. WaitTreeTimer - + reset type = %1 тип сброса = %1 - + initial delay = %1 начальная задержка = %1 - + interval delay = %1 задержка интервала = %1 @@ -6972,27 +6972,27 @@ They may have left the room. WaitTreeWaitObject - + [%1]%2 %3 [%1]%2 %3 - + waited by no thread не ожидается потоком - + one shot один выстрел - + sticky липкий - + pulse пульс @@ -7000,7 +7000,7 @@ They may have left the room. WaitTreeWidget - + Wait Tree Дерево цепочки ожидания diff --git a/dist/languages/tr_TR.ts b/dist/languages/tr_TR.ts index af5538d49..3ff61ed58 100644 --- a/dist/languages/tr_TR.ts +++ b/dist/languages/tr_TR.ts @@ -2,17 +2,17 @@ ARMRegisters - + ARM Registers ARM Registers - + Register Register - + Value Value @@ -20,27 +20,27 @@ AboutDialog - + About Citra Citra Hakkında - - <html><head/><body><p><img src=":/icons/citra.png"/></p></body></html> - <html><head/><body><p><img src=":/icons/citra.png"/></p></body></html> + + <html><head/><body><p><img src=":/icons/lime.png"/></p></body></html> + <html><head/><body><p><img src=":/icons/lime.png"/></p></body></html> - + <html><head/><body><p><span style=" font-size:28pt;">Citra</span></p></body></html> <html><head/><body><p><span style=" font-size:28pt;">Citra</span></p></body></html> - + <html><head/><body><p>%1 | %2-%3 (%4)</p></body></html> <html><head/><body><p>%1 | %2-%3 (%4)</p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -57,12 +57,12 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">Bu yazılım yasal olarak elde edilmemiş oyunları oynamakta kullanılmamalıdır.</span></p></body></html> - + <html><head/><body><p><a href="https://citra-emu.org/"><span style=" text-decoration: underline; color:#039be5;">Website</span></a> | <a href="https://community.citra-emu.org/"><span style=" text-decoration: underline; color:#039be5;">Forum</span></a> | <a href="https://github.com/citra-emu"><span style=" text-decoration: underline; color:#039be5;">Source Code</span></a> | <a href="https://github.com/citra-emu/citra/graphs/contributors"><span style=" text-decoration: underline; color:#039be5;">Contributors</span></a> | <a href="https://github.com/citra-emu/citra/blob/master/license.txt"><span style=" text-decoration: underline; color:#039be5;">License</span></a></p></body></html> <html><head/><body><p><a href="https://citra-emu.org/"><span style=" text-decoration: underline; color:#039be5;">Web Sitesi</span></a> | <a href="https://community.citra-emu.org/"><span style=" text-decoration: underline; color:#039be5;">Forum</span></a> | <a href="https://github.com/citra-emu"><span style=" text-decoration: underline; color:#039be5;">Kaynak Kodu</span></a> | <a href="https://github.com/citra-emu/citra/graphs/contributors"><span style=" text-decoration: underline; color:#039be5;">Katkıda Bulunanlar</span></a> | <a href="https://github.com/citra-emu/citra/blob/master/license.txt"><span style=" text-decoration: underline; color:#039be5;">Lisans</span></a></p></body></html> - + <html><head/><body><p><span style=" font-size:7pt;">&quot;3DS&quot; is a trademark of Nintendo. Citra is not affiliated with Nintendo in any way.</span></p></body></html> <html><head/><body><p><span style=" font-size:7pt;">&quot;3DS&quot; Nintendo'nun ticari markasıdır. Citra, Nintendo'ya herhangi bir şekilde bağlı değildir.</span></p></body></html> @@ -70,47 +70,47 @@ p, li { white-space: pre-wrap; } BreakPointModel - + Pica command loaded Pica command loaded - + Pica command processed Pica command processed - + Incoming primitive batch Incoming primitive batch - + Finished primitive batch Finished primitive batch - + Vertex shader invocation Vertex shader invocation - + Incoming display transfer Incoming display transfer - + GSP command processed GSP command processed - + Buffers swapped Buffers swapped - + Unknown debug context event Bilinmeyen hata ayıklama olayı @@ -118,32 +118,32 @@ p, li { white-space: pre-wrap; } CalibrationConfigurationDialog - + Communicating with the server... Sunucu ile iletişim kuruluyor... - + Cancel İptal et - + Touch the top left corner <br>of your touchpad. Dokunmatik ekranın sol üst<br> köşesine basın. - + Now touch the bottom right corner <br>of your touchpad. Şimdi de dokunmatik ekranın sağ alt<br> köşesine basın. - + Configuration completed! Yapılandırma tamamlandı! - + OK Tamam @@ -151,93 +151,93 @@ p, li { white-space: pre-wrap; } ChatRoom - + Room Window Oda Penceresi - + Send Chat Message Sohbet Mesajı Gönder - + Send Message Mesaj Gönder - + Members Üyeler - + %1 has joined %1 katıldı - + %1 has left %1 ayrıldı - + %1 has been kicked %1 atıldı - + %1 has been banned %1 yasaklandı - + %1 has been unbanned %1 'in yasağı kaldırıldı - + View Profile Profili Görüntüle - - + + Block Player Kullanıcıyı Engelle - + When you block a player, you will no longer receive chat messages from them.<br><br>Are you sure you would like to block %1? Bir kullanıcıyı engellediğinizde ondan sohbet mesajları alamazsınız.<br><br>%1 kullanıcısını engellemek istediğinize emin misiniz? - + Kick At - + Ban Yasakla - + Kick Player Oyuncu At - + Are you sure you would like to <b>kick</b> %1? %1'i <b>atmak</b> istediğinden emin misin? - + Ban Player Oyuncu Yasakla - + Are you sure you would like to <b>kick and ban</b> %1? This would ban both their forum username and their IP address. @@ -249,22 +249,22 @@ Bu onun hem forum kullanıcı adını hemde IP adresini yasaklar. ClientRoom - + Room Window Oda Penceresi - + Room Description Oda Açıklaması - + Moderation... Moderasyon... - + Leave Room Odadan Ayrıl @@ -272,17 +272,17 @@ Bu onun hem forum kullanıcı adını hemde IP adresini yasaklar. ClientRoomWindow - + Connected Bağlanıldı - + Disconnected Bağlantı Kesildi - + %1 (%2/%3 members) - connected %1 (%2/%3 kullanıcı) - bağlandı @@ -290,108 +290,108 @@ Bu onun hem forum kullanıcı adını hemde IP adresini yasaklar. CompatDB - + Report Compatibility Uyumluluk Bildir - - + + Report Game Compatibility Oyun Uyumluluğu Bildir - + <html><head/><body><p><span style=" font-size:10pt;">Should you choose to submit a test case to the </span><a href="https://citra-emu.org/game/"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">Citra Compatibility List</span></a><span style=" font-size:10pt;">, The following information will be collected and displayed on the site:</span></p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Hardware Information (CPU / GPU / Operating System)</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Which version of Citra you are running</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The connected Citra account</li></ul></body></html> <html><head/><body><p><span style=" font-size:10pt;">Eğer </span><a href="https://citra-emu.org/game/"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">Citra Uyumluluk Listesi'ne</span></a><span style=" font-size:10pt;"> test çalışması göndermek isterseniz, belirtilen bilgiler toplanacak ve sitede gösterilecektir:</span></p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Donanım Bilgisi(CPU/GPU/İşletim Sistemi)</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Hangi Citra versiyonunun kullanıldığı</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Bağlı Citra hesabı</li></ul></body></html> - + Perfect Mükemmel - + <html><head/><body><p>Game functions flawlessly with no audio or graphical glitches.</p></body></html> <html><head/><body><p>Oyun grafik veya ses hataları olmadan sorunsuz çalışıyor.</p></body></html> - + Great Çok İyi - + <html><head/><body><p>Game functions with minor graphical or audio glitches and is playable from start to finish. May require some workarounds.</p></body></html> <html><head/><body><p>Oyun küçük grafik veya ses hatalarıyla çalışıyor ve baştan sona kadar oynanabilir. Bazı geçici çözümler gerektirebilir.</p></body></html> - + Okay Yeterli - + <html><head/><body><p>Game functions with major graphical or audio glitches, but game is playable from start to finish with workarounds.</p></body></html> <html><head/><body><p>Oyun büyük grafik veya ses hatalarıyla çalışıyor fakat geçici çözümler ile baştan sona kadar oynanabilir.</p></body></html> - + Bad Kötü - + <html><head/><body><p>Game functions, but with major graphical or audio glitches. Unable to progress in specific areas due to glitches even with workarounds.</p></body></html> <html><head/><body><p>Oyun çalışıyor fakat büyük grafik veya ses hatalarına sahip. Geçici çözümlerle bile belirli alanlar geçilemiyor.</p></body></html> - + Intro/Menu İntro/Menü - + <html><head/><body><p>Game is completely unplayable due to major graphical or audio glitches. Unable to progress past the Start Screen.</p></body></html> <html><head/><body><p>Oyun grafik ve ses hatalarından dolayı oynanılamıyor. Başlangıç ekranını geçemiyorsunuz.</p></body></html> - + Won't Boot Açılmıyor - + <html><head/><body><p>The game crashes when attempting to startup.</p></body></html> <html><head/><body><p>Oyun açılmaya çalışıldığında çöküyor.</p></body></html> - + <html><head/><body><p>Independent of speed or performance, how well does this game play from start to finish on this version of Citra?</p></body></html> <html><head/><body><p>Hız ve performanstan bağımsız olarak, bu oyun baştan sona Citra'nın bu versiyonunda ne kadar iyi oynanıyor?</p></body></html> - + Thank you for your submission! Gönderiniz için teşekkürler! - + Submitting Gönderilliyor - + Communication error Bağlantı hatası - + An error occurred while sending the Testcase Testcase'i gönderirken bir hata oluştu - + Next Sıradaki @@ -399,93 +399,93 @@ Bu onun hem forum kullanıcı adını hemde IP adresini yasaklar. ConfigureAudio - + Output Çıkış - + Emulation: Emülasyon - + HLE (fast) HLE (hızlı) - + LLE (accurate) LLE (hatasız) - + LLE multi-core LLE çoklu-çekirdek - + Output Type Çıkış Türü - + Output Device Çıkış Aygıtı - + This post-processing effect adjusts audio speed to match emulation speed and helps prevent audio stutter. This however increases audio latency. Bu post-processing efekti ses hızını emülasyon hızına eşleşmesi için ayarlar ve ses takılmasını önlemeye yardımcı olur. Ancak bu ses gecikmesini arttırır. - + Enable audio stretching Ses gerdirmeyi etkinleştir - + Use global volume Evrensel sesi kullan - + Set volume: Sesi ayarla: - + Volume: Ses: - + 0 % 0 % - + Microphone Mikrofon - + Input Type Giriş Tipi - + Input Device Giriş Aygıtı - - + + Auto - + %1% Volume percentage (e.g. 50%) %1% @@ -494,203 +494,203 @@ Bu onun hem forum kullanıcı adını hemde IP adresini yasaklar. ConfigureCamera - + Form Form - + Camera Kamera - - + + Select the camera to configure Yapılandırılacak kamerayı seçin - + Camera to configure: Yapılandırılacak kamera: - + Front Ön - + Rear Arka - - + + Select the camera mode (single or double) Kamera modunu seçin (tek veya çift) - + Camera mode: Kamera modu: - + Single (2D) Tek (2D) - + Double (3D) Çift (3D) - - + + Select the position of camera to configure Yapılandırılacak kamera konumunu seçin - + Camera position: Kamera konumu: - + Left Sol - + Right Sağ - + Configuration Yapılandırma - - + + Select where the image of the emulated camera comes from. It may be an image or a real camera. Emülasyon yapılmış kameranın görüntüsünün nereden geldiğini seçin. Bir resim veya gerçek bir kamera olabilir. - + Camera Image Source: Kamera Görüntü Kaynağı: - + Blank (blank) Boş (boş) - + Still Image (image) Hareketsiz Görüntü (görüntü) - + System Camera (qt) Sistem Kamerası (qt) - + File: Dosya: - + ... ... - - + + Select the system camera to use Kullanılacak sistem kamerasını seçin - + Camera: Kamera: - + <Default> <Default> - - + + Select the image flip to apply Uygulanacak görüntü çevirmeyi seçin - + Flip: Çevir: - + None Hiçbiri - + Horizontal Yatay - + Vertical Dikey - + Reverse Ters - + Select an image file every time before the camera is loaded Kamera yüklenmeden önce her zaman bir görüntü dosyası seçilsin - + Prompt before load Yüklemeden önce sor - + Preview Önizleme - + Resolution: 512*384 Çözünürlük: 512*384 - + Click to preview Önizlemek için tıklayın - + Resolution: %1*%2 Çözünürlük: %1*%2 - + Supported image files (%1) Desteklenen görüntü dosyaları (%1) - + Open File Dosya Aç @@ -698,87 +698,87 @@ Bu onun hem forum kullanıcı adını hemde IP adresini yasaklar. ConfigureCheats - - + + Cheats Hileler - + Add Cheat Hile Ekle - + Available Cheats: Kullanılabilen Hileler: - + Name - + Type - + Save - + Delete - + Name: - + Notes: - + Code: - + Would you like to save the current cheat? - - - + + + Save Cheat - + Please enter a cheat name. - + Please enter the cheat code. - + Cheat code line %1 is not valid. Would you like to ignore the error and continue? - - + + [new cheat] @@ -786,127 +786,127 @@ Would you like to ignore the error and continue? ConfigureDebug - + Form Form - + GDB GDB - + Enable GDB Stub GDB Stub'ı etkinleştir - + Port: Port: - + Logging Kütük tutma - + Global Log Filter Evrensel Kütük Filtresi - + Show Log Console (Windows Only) Kütük Konsolunu Göster(Sadece Windows) - + Open Log Location Kütük Konumunu Aç - + CPU - + Use global clock speed - + Set clock speed: - + CPU Clock Speed - + <html><body>Changes the emulated CPU clock frequency.<br>Underclocking can increase performance but may cause the game to freeze.<br>Overclocking may reduce in game lag but also might cause freezes</body></html> - + <html><head/><body><p>Enables the use of the ARM JIT compiler for emulating the 3DS CPUs. Don't disable unless for debugging purposes</p></body></html> - + Enable CPU JIT CPU JIT'i aktif et - + Enable debug renderer - + Dump command buffers - + Miscellaneus - + <html><head/><body><p>Introduces a delay to the first ever launched app thread if LLE modules are enabled, to allow them to initialize.</p></body></html> - + Delay app start for LLE module initialization - + <html><head/><body><p>CPU Clock Speed Information<br/>Underclocking can increase performance but may cause the game to freeze.<br/>Overclocking may reduce in game lag but also might cause freezes</p></body></html> - + Validation layer not available - + Unable to enable debug renderer because the layer <strong>VK_LAYER_KHRONOS_validation</strong> is missing. Please install the Vulkan SDK or the appropriate package of your distribution - + Command buffer dumping not available - + Unable to enable command buffer dumping because the layer <strong>VK_LAYER_LUNARG_api_dump</strong> is missing. Please install the Vulkan SDK or the appropriate package of your distribution @@ -914,92 +914,92 @@ Would you like to ignore the error and continue? ConfigureDialog - + Citra Configuration Citra Yapılandırması - - - + + + General Genel - - - + + + System Sistem - - + + Input Girdi - - + + Hotkeys Kısayollar - - + + Graphics Grafikler - - + + Enhancements İyileştirmeler - - - + + + Audio Ses - - + + Camera Kamera - - + + Debug Hata Ayıklama - - + + Storage - - + + Web - - + + UI Arayüz - + Controls Kontroller - + Advanced Gelişmiş @@ -1007,278 +1007,278 @@ Would you like to ignore the error and continue? ConfigureEnhancements - + Form - + Renderer - + Internal Resolution - + Auto (Window Size) - + Native (400x240) - + 2x Native (800x480) - + 3x Native (1200x720) - + 4x Native (1600x960) - + 5x Native (2000x1200) - + 6x Native (2400x1440) - + 7x Native (2800x1680) - + 8x Native (3200x1920) - + 9x Native (3600x2160) - + 10x Native (4000x2400) - + Enable Linear Filtering - + Post-Processing Shader - + Texture Filter - + None - + Anime4K - + Bicubic - + ScaleForce - + xBRZ - + MMPX - + Stereoscopy - + Stereoscopic 3D Mode - + Off - - + + Side by Side - + Anaglyph - + Interlaced - + Reverse Interlaced - + Depth - + % - + Eye to Render in Monoscopic Mode - + Left Eye (default) - + Right Eye - + Layout - + Screen Layout: - + Default - + Single Screen - + Large Screen - + Separate Windows - + Hybrid Screen - + Swap Screens - + Rotate Screens Upright - + Large Screen Proportion: - + Background Color: - + Utility - + <html><head/><body><p>Replace textures with PNG files.</p><p>Textures are loaded from load/textures/[Title ID]/.</p></body></html> - + Use Custom Textures - + <html><head/><body><p>Dump textures to PNG files.</p><p>Textures are dumped to dump/textures/[Title ID]/.</p></body></html> - + Dump Textures - + <html><head/><body><p>Load all custom textures into memory on boot, instead of loading them when the game requires them.</p></body></html> - + Preload Custom Textures - + <html><head/><body><p>Load custom textures asynchronously with background threads to reduce loading stutter</p></body></html> - + Async Custom Texture Loading @@ -1286,136 +1286,136 @@ Would you like to ignore the error and continue? ConfigureGeneral - + Form Form - + General Genel - + Confirm exit while emulation is running Emülasyon devam ederken çıkışı onaylayın - + Pause emulation when in background Arkaplandayken emülasyonu durdur - + Mute audio when in background - + Hide mouse on inactivity Hareketsizlik durumunda fareyi gizle - + Enable Gamemode - + Updates Güncellemeler - + Check for updates on start Açılışta güncellemeleri kontrol et - + Silently auto update after closing Kapandıktan sonra arkaplanda otomatik güncelle - + Emulation Emülasyon - + Region: Bölge: - + Auto-select Otomatik seç - + Use global emulation speed - + Set emulation speed: - + Emulation Speed: - + Screenshots - + Use global screenshot path - + Set screenshot path: - + Save Screenshots To - + ... - + Reset All Settings Tüm Ayarları Sıfırla - - - - - + + + + + unthrottled - + Select Screenshot Directory - + Citra Citra - + Are you sure you want to <b>reset your settings</b> and close Citra? <b>Ayarlarınızı sıfırlayıp</b> Citra'yı kapatmak istediğinize emin misiniz? @@ -1423,157 +1423,157 @@ Would you like to ignore the error and continue? ConfigureGraphics - + Form Form - + Graphics - + API Settings - + Graphics API - + Software - + OpenGL - + Vulkan - + Physical Device - + OpenGL Renderer - + SPIR-V Shader Generation - + Renderer İşleyici - + <html><head/><body><p>Use the selected graphics API to accelerate shader emulation.</p><p>Requires a relatively powerful GPU for better performance.</p></body></html> - + Enable Hardware Shader Donanımsal Shader'ı Etkinleştir - + <html><head/><body><p>Correctly handle all edge cases in multiplication operation in shaders. </p><p>Some games requires this to be enabled for the hardware shader to render properly.</p><p>However this would reduce performance in most games.</p></body></html> <html><head/><body><p>Shader'larda çoğaltma işleminde tüm kenarlar doğru şekilde işlenilsin. </p><p>Bazı oyunlar donanımsal shader'ın düzgün işleyebilmesi için bunun etkin olmasını gerektirir. </p><p>Ancak bu çoğu oyunda performansı düşürür.</p></body></html> - + Accurate Multiplication İsabetli Çoğaltma - + <html><head/><body><p>Use the JIT engine instead of the interpreter for software shader emulation. </p><p>Enable this for better performance.</p></body></html> <html><head/><body><p>Yazılımsal Shader emülasyonu için yorumlayıcı yerine JIT motoru kullanılsın. </p><p>Daha iyi performans için bunu etkinleştirin.</p></body></html> - + Enable Shader JIT Shader JIT'i etkinleştir - + <html><head/><body><p>Compile shaders using background threads to avoid shader compilation stutter. Expect temporary graphical glitches</p></body></html> - + Enable Async Shader Compilation - + <html><head/><body><p>Perform presentation on separate threads. Improves performance when using Vulkan in most games.</p></body></html> - + Enable Async Presentation - + Advanced Gelişmiş - + <html><head/><body><p>Overrides the sampling filter used by games. This can be useful in certain cases with poorly behaved games when upscaling. If unsure set this to Game Controlled</p></body></html> - + Texture Sampling - + Game Controlled - + Nearest Neighbor - + Linear - + <html><head/><body><p>Reduce stuttering by storing and loading generated shaders to disk.</p></body></html> - + Use Disk Shader Cache - + VSync prevents the screen from tearing, but some graphics cards have lower performance with VSync enabled. Keep it enabled if you don't notice a performance difference. VSync ekran yırtılmasını engeller, fakat bazı görüntü kartları VSync etkinken daha az performans sergileyebilir. Eğer performans değişikliği hissetmiyorsanız açık bırakın. - + Enable VSync VSync Etkin @@ -1581,63 +1581,63 @@ Would you like to ignore the error and continue? ConfigureHotkeys - + Hotkey Settings Kısayol Ayarları - + Double-click on a binding to change it. Tuşları değiştirmek için çift tıklayın. - + Clear All - + Restore Defaults - + Action Davranış - + Hotkey Kısayol - - + + Conflicting Key Sequence Çelişen Tuş Dizisi - + The entered key sequence is already assigned to: %1 - + A 3ds button - + Restore Default - + Clear - + The default key sequence is already assigned to: %1 @@ -1645,307 +1645,307 @@ Would you like to ignore the error and continue? ConfigureInput - + ConfigureInput ConfigureInput - + Profile Profil - + New Yeni - + Delete Sil - + Rename Yeniden Adlandır - + Face Buttons Ön Tuşlar - + Y: Y: - + X: X: - + B: B: - + A: A: - + Directional Pad Yön Tuşları - - - + + + Up: Yukarı: - - - + + + Down: Aşağı: - - - + + + Left: Sol: - - - + + + Right: Sağ: - + Misc. Çeşitli - + Start: Start: - + Select: Select: - + Home: Home: - + Power: - + Circle Mod: Circle Mod: - + GPIO14: GPIO14: - + Debug: Ayıklama: - + Circle Pad Circle Pad - - - + + + Set Analog Stick Analog Çubuğunu Ayarla - - + + Deadzone: 0 - + C-Stick C-Stick - + Shoulder Buttons Omuz Tuşları - + ZR: ZR: - + ZL: ZL: - + L: L: - + R: R: - + Motion / Touch... Hareket / Dokunma... - + Auto Map - + Clear All Hepsini Temizle - + Restore Defaults Varsayılanlara Dön - - - + + + Clear Temizle - - - + + + [not set] [ayarlanmadı] - - - + + + Restore Default Varsayılan Ayarlara Döndür - - + + Information Bilgi - + After pressing OK, first move your joystick horizontally, and then vertically. Tamam'a bastıktan sonra oyun kolunu ilk önce yatay, sonra da dikey olarak oynatın - - + + Deadzone: %1% - - + + Modifier Scale: %1% - + Warning - + Auto mapping failed. Your controller may not have a corresponding mapping - + After pressing OK, press any button on your joystick - + [press key] [tuşa bas] - + Error! Hata! - + You're using a key that's already bound. Tuş zaten kullanımda. - + New Profile Yeni Profil - + Enter the name for the new profile. Yeni profil için bir ad girin: - + Delete Profile Profili Sil - + Delete profile %1? %1 profilini sil? - + Rename Profile Profili Yeniden Adlandır - + New name: Yeni adı: - + Duplicate profile name Kopyalanmış profil adı - + Profile name already exists. Please choose a different name. Profil adı zaten var. Lütfen farklı bir ad seçin. @@ -1953,198 +1953,198 @@ Would you like to ignore the error and continue? ConfigureMotionTouch - + Configure Motion / Touch Hareket / Dokunma Ayarları - + Motion Hareket - + Motion Provider: Hareket Aracı: - + Sensitivity: Hassasiyet: - + Controller: - - - - - + + + + + Configure Yapılandır - + Touch Dokunma - + Touch Provider: Dokunma Aracı: - + Calibration: Kalibrasyon: - + (100, 50) - (1800, 850) (100, 50) - (1800, 850) - + Use button mapping: - + CemuhookUDP Config CemuhookUDP Ayarları - + You may use any Cemuhook compatible UDP input source to provide motion and touch input. Hareket ve dokunma girişi sağlamak için herhangi bir Cemuhook uyumlu UDP giriş kaynağı kullanabilirsiniz. - + Server: Sunucu: - + Port: Port: - + Pad: Pad: - + Pad 1 Kumanda 1 - + Pad 2 Kumanda 2 - + Pad 3 Kumanda 3 - + Pad 4 Kumanda 4 - + Learn More Daha fazla bilgi edinin - - + + Test Test - + Mouse (Right Click) Fare (Sağ Tıklama) - - + + CemuhookUDP CemuhookUDP - + SDL - + Emulator Window Emülasyon Penceresi - + <a href='https://citra-emu.org/wiki/using-a-controller-or-android-phone-for-motion-or-touch-input'><span style="text-decoration: underline; color:#039be5;">Learn More</span></a> <a href='https://citra-emu.org/wiki/using-a-controller-or-android-phone-for-motion-or-touch-input'><span style="text-decoration: underline; color:#039be5;">Daha fazla bilgi edinin</span></a> - + Information - + After pressing OK, press a button on the controller whose motion you want to track. - + [press button] - + Testing Test Ediliyor - + Configuring Ayarlanıyor - + Test Successful Test Başarılı - + Successfully received data from the server. Veri sunucudan başarıyla alındı. - + Test Failed Test Başarısız - + Could not receive valid data from the server.<br>Please verify that the server is set up correctly and the address and port are correct. Sunucudan geçerli veri alınamıyor.<br>Lütfen sunucunun düzgün kurulduğundan, adres ve portun doğru girildiğinden emin olun. - + Citra Citra - + UDP Test or calibration configuration is in progress.<br>Please wait for them to finish. UDP Testi ya da kalibrasyonu hala devam ediyor.<br> Lütfen bitmesini bekleyin. @@ -2152,97 +2152,97 @@ Would you like to ignore the error and continue? ConfigurePerGame - + Dialog - + Info - + Size - + Format - + Name - + Filepath - + Title ID - + Reset Game Settings - + Use global configuration (%1) - + General - + System - + Enhancements - + Graphics - + Audio - + Debug - + Cheats - + Properties - + Citra - + Are you sure you want to <b>reset your settings for this game</b>? @@ -2250,65 +2250,65 @@ Would you like to ignore the error and continue? ConfigureStorage - + Form - + Storage - + Use Virtual SD - + Custom Storage - + Use Custom Storage - + NAND Directory - - + + Open - - + + NOTE: This does not move the contents of the previous directory to the new one. - - + + Change - + SDMC Directory - + Select NAND Directory - + Select SDMC Directory @@ -2316,1064 +2316,1064 @@ Would you like to ignore the error and continue? ConfigureSystem - + Form Form - + System Settings Sistem Ayarları - + Enable New 3DS mode Yeni 3DS kipini etkinleştir - + Use LLE applets (if installed) - + Username Kullanıcı Adı - + Birthday Doğum Günü - + January Ocak - + February Şubat - + March Mart - + April Nisan - + May Mayıs - + June Haziran - + July Temmuz - + August Ağustos - + September Eylül - + October Ekim - + November Kasım - + December Aralık - + Language Dil - + Note: this can be overridden when region setting is auto-select Not: Bölge ayarı otomatik seç ise bu geçersiz kılınabilir. - + Japanese (日本語) Japonca (日本語) - + English İngilizce - + French (français) Fransızca (français) - + German (Deutsch) Almanca (Deutsch) - + Italian (italiano) İtalyanca (italiano) - + Spanish (español) İspanyolca (español) - + Simplified Chinese (简体中文) Basitleştirilmiş Çince (简体中文) - + Korean (한국어) Korece (한국어) - + Dutch (Nederlands) Felemenkçe (Nederlands) - + Portuguese (português) Portekizce (português) - + Russian (Русский) Rusça (Русский) - + Traditional Chinese (正體中文) Geleneksel Çince (正體中文) - + Sound output mode Ses Çıkış Modu - + Mono Mono - + Stereo Stereo - + Surround Surround - + Country Ülke - + Clock Saat - + System Clock Sistem Saati - + Fixed Time Sabit Zaman - + Startup time Başlangıç Zamanı - + yyyy-MM-ddTHH:mm:ss yyyy-AA-ggSS:dd:ss - + Offset time - + days - + HH:mm:ss - + Initial System Ticks - + Random - + Fixed - + Initial System Ticks Override - + Play Coins: Oyun Paraları - + Run System Setup when Home Menu is launched - + Console ID: Konsol ID: - + Regenerate Yeniden Oluştur - + 3GX Plugin Loader: - + Enable 3GX plugin loader - + Allow games to change plugin loader state - + Download System Files from Nitendo servers - + Minimal - + Old 3DS - + New 3DS - + JPN - + USA - + EUR - + AUS - + CHN - + KOR - + TWN - + Download - + System settings are available only when game is not running. Sistem ayarlarına sadece oyun çalışmıyorken erişilebilir. - + Japan Japonya - + Anguilla Anguilla - + Antigua and Barbuda Antigua ve Barbuda - + Argentina Arjantin - + Aruba Aruba - + Bahamas Bahamalar - + Barbados Barbados - + Belize Belize - + Bolivia Bolivya - + Brazil Brezilya - + British Virgin Islands İngiliz Virjin Adaları - + Canada Kanada - + Cayman Islands Cayman Adaları - + Chile Şili - + Colombia Kolombiya - + Costa Rica Kosta Rika - + Dominica Dominik - + Dominican Republic Dominik Cumhuriyeti - + Ecuador Ekvador - + El Salvador El Salvador - + French Guiana Fransız Guyanası - + Grenada Grenada - + Guadeloupe Guadeloupe - + Guatemala Guatemala - + Guyana Guyana - + Haiti Haiti - + Honduras Honduras - + Jamaica Jamaika - + Martinique Martinik - + Mexico Meksika - + Montserrat Montserrat - + Netherlands Antilles Hollanda Antilleri - + Nicaragua Nikaragua - + Panama Panama - + Paraguay Paraguay - + Peru Peru - + Saint Kitts and Nevis Saint Kitts ve Nevis - + Saint Lucia Saint Lucia - + Saint Vincent and the Grenadines Saint Vincent ve Grenadines - + Suriname Surinam - + Trinidad and Tobago Trinidad ve Tobago - + Turks and Caicos Islands Turks ve Caicos Adaları - + United States Amerika Birleşik Devletleri - + Uruguay Uruguay - + US Virgin Islands Amerika Birleşik Devletleri Virjin Adaları - + Venezuela Venezuela - + Albania Arnavutluk - + Australia Avustralya - + Austria Avusturya - + Belgium Belçika - + Bosnia and Herzegovina Bosna Hersek - + Botswana Botsvana - + Bulgaria Bulgaristan - + Croatia Hırvatistan - + Cyprus Kıbrıs - + Czech Republic Çek Cumhuriyeti - + Denmark Danimarka - + Estonia Estonya - + Finland Finlandiya - + France Fransa - + Germany Almanya - + Greece Yunanistan - + Hungary Macaristan - + Iceland İzlanda - + Ireland İrlanda - + Italy İtalya - + Latvia Letonya - + Lesotho Lesotho - + Liechtenstein Lihtenştayn - + Lithuania Litvanya - + Luxembourg Lüksemburg - + Macedonia Makedonya - + Malta Malta - + Montenegro Karadağ - + Mozambique Mozambik - + Namibia Namibya - + Netherlands Hollanda - + New Zealand Yeni Zelanda - + Norway Norveç - + Poland Polonya - + Portugal Portekiz - + Romania Romanya - + Russia Rusya - + Serbia Sırbistan - + Slovakia Slovakya - + Slovenia Slovenya - + South Africa Güney Afrika - + Spain İspanya - + Swaziland Svaziland - + Sweden İsveç - + Switzerland İsviçre - + Turkey Türkiye - + United Kingdom Birleşik Krallık - + Zambia Zambiya - + Zimbabwe Zimbabve - + Azerbaijan Azerbeycan - + Mauritania Moritanya - + Mali Mali - + Niger Nijer - + Chad Çad - + Sudan Sudan - + Eritrea Eritre - + Djibouti Cibuti - + Somalia Somali - + Andorra Andorra - + Gibraltar Cebelitarık - + Guernsey Guernsey - + Isle of Man Man Adası - + Jersey Jersey - + Monaco Monako - + Taiwan Tayvan - + South Korea Güney Kore - + Hong Kong Hong Kong - + Macau Makao - + Indonesia Endonezya - + Singapore Singapur - + Thailand Tayland - + Philippines Filipinler - + Malaysia Malezya - + China Çin - + United Arab Emirates Birleşik Arap Emirlikleri - + India Hindistan - + Egypt Mısır - + Oman Umman - + Qatar Katar - + Kuwait Kuveyt - + Saudi Arabia Suudi Arabistan - + Syria Suriye - + Bahrain Bahreyn - + Jordan Ürdün - + San Marino San Marino - + Vatican City Vatikan - + Bermuda Bermuda - + Download System Files from Nintendo servers - + Citra is missing keys to download system files. <br><a href='https://citra-emu.org/wiki/aes-keys/'><span style="text-decoration: underline; color:#039be5;">How to get keys?</span></a> - - + + Console ID: 0x%1 Konsol ID: 0x%1 - + This will replace your current virtual 3DS with a new one. Your current virtual 3DS will not be recoverable. This might have unexpected effects in games. This might fail, if you use an outdated config savegame. Continue? Bu mevcut sanal 3DS'nizi yenisiyle değiştirecektir. Mevcut sanal 3DS'niz geri alınamayacaktır. Bu oyunlarda beklenmedik etkilere sebep olabilir. Eğer eski yapılandırmalı oyun kayıtı kullanırsanız bu başarısız olabilir. Devam edilsin mi? - + Warning Uyarı - + Downloading files... - + Cancel - - + + Citra - + Downloading system files failed. - + Successfully downloaded system files. @@ -3381,90 +3381,90 @@ Would you like to ignore the error and continue? ConfigureTouchFromButton - + Configure Touchscreen Mappings - + Mapping: - + New Yeni - + Delete Sil - + Rename Yeniden Adlandır - + Click the bottom area to add a point, then press a button to bind. Drag points to change position, or double-click table cells to edit values. - + Delete Point Noktayı Sil - + Button Tuş - + X X axis - + Y Y axis - + New Profile Yeni Profil - + Enter the name for the new profile. Yeni profil için bir ad girin. - + Delete Profile Profili Sil - + Delete profile %1? Profil %1 silinsin mi? - + Rename Profile Profili Yeniden Adlandır - + New name: Yeni adı: - + [press key] [tuşa bas] @@ -3472,113 +3472,113 @@ Drag points to change position, or double-click table cells to edit values. ConfigureUi - + Form Form - + General Genel - + Note: Changing language will apply your configuration. Not: Dili değiştirmek ayarlarınızı uygulayacaktır. - + Interface language: Arayüz dili: - + Theme: Tema: - + Game List Oyun Listesi - + Icon Size: İkon Boyutu: - - + + None Yok - + Small (24x24) Küçük (24x24) - + Large (48x48) Büyük (48x48) - + Row 1 Text: Satır 1 Metni: - - + + File Name Dosya İsmi - - + + Full Path Dosya Konumu - - + + Title Name (short) Başlık İsmi (kısa) - - + + Title ID Oyun No - - + + Title Name (long) Başlık İsmi (uzun) - + Row 2 Text: Satır 2 Metni: - + Hide Titles without Icon İkonu Olmayan Oyunları Gizle - + Single Line Mode Tek Satır Modu - + <System> <System> - + English İngilizce @@ -3586,135 +3586,135 @@ Drag points to change position, or double-click table cells to edit values. ConfigureWeb - + Form Form - + Citra Web Service Citra Ağ Servisi - + By providing your username and token, you agree to allow Citra to collect additional usage data, which may include user identifying information. Kullanıcı adınızı ve tokeninizi sağlayarak Citra'nın ek kullanım verilerini toplamasına izin vermeyi kabul ediyorsunuz, bu kullanıcı tanımlayıcı bilgileri de içerebilir. - - + + Verify Doğrula - + Sign up Kaydol - + Token: Token: - + Username: Kullanıcı Adı: - + What is my token? Tokenim nedir? - + Web Service configuration can only be changed when a public room isn't being hosted. Web servisi yapılandırması yalnızca Herkese Açık Oda sunulmadığı sürece değiştirilebilir. - + Telemetry Telemetri - + Share anonymous usage data with the Citra team Citra ekibiyle anonim kullanım verilerini paylaş - + Learn more Daha fazla bilgi edinin - + Telemetry ID: Telemetri ID: - + Regenerate Yeniden Oluştur - + Discord Presence Discord Görünümü - + Show Current Game in your Discord Status Şu Anki Oyunu Discord Durumunda Göster - + <a href='https://citra-emu.org/entry/telemetry-and-why-thats-a-good-thing/'><span style="text-decoration: underline; color:#039be5;">Learn more</span></a> <a href='https://citra-emu.org/entry/telemetry-and-why-thats-a-good-thing/'><span style="text-decoration: underline; color:#039be5;">Daha fazla bilgi edinin</span></a> - + <a href='https://profile.citra-emu.org/'><span style="text-decoration: underline; color:#039be5;">Sign up</span></a> <a href='https://profile.citra-emu.org/'><span style="text-decoration: underline; color:#039be5;">Kaydol</span></a> - + <a href='https://citra-emu.org/wiki/citra-web-service/'><span style="text-decoration: underline; color:#039be5;">What is my token?</span></a> <a href='https://citra-emu.org/wiki/citra-web-service/'><span style="text-decoration: underline; color:#039be5;">Tokenim nedir?</span></a> - - + + Unspecified Belirtilmemiş - - + + Telemetry ID: 0x%1 Telemetri ID: 0x%1 - + Token not verified Token doğrulanmadı - + Token was not verified. The change to your token has not been saved. Token doğrulanmadı. Token'inizdeki değişiklikler kaydedilmeyecektir. - + Verifying... Doğrulanıyor... - + Verification failed Doğrulama başarısız oldu - + Verification failed. Check that you have entered your token correctly, and that your internet connection is working. Doğrulama başarısız oldu. Token'inizi doğru girdiğinizden ve internet bağlantınızın çalıştığından emin olun. @@ -3722,47 +3722,47 @@ Drag points to change position, or double-click table cells to edit values. DirectConnect - + Direct Connect Direkt Bağlantı - + Server Address - + <html><head/><body><p>Server address of the host</p></body></html> - + Port Port - + <html><head/><body><p>Port number the host is listening on</p></body></html> <html><head/><body><p>Sunucunun dinlediği port numarası</p></body></html> - + 24872 24872 - + Nickname Takma ad - + Password Şifre - + Connect Bağlan @@ -3770,12 +3770,12 @@ Drag points to change position, or double-click table cells to edit values. DirectConnectWindow - + Connecting Bağlanılıyor - + Connect Bağlan @@ -3783,110 +3783,110 @@ Drag points to change position, or double-click table cells to edit values. DumpingDialog - + Dump Video - + Output - + Format: - - - + + + Options: - - - - + + + + ... - + Path: - + Video - - + + Encoder: - - + + Bitrate: - - + + bps - + Audio - - + + Citra - + Please specify the output path. - + output formats - + video encoders - + audio encoders - + Could not find any available %1. Please check your FFmpeg installation used for compilation. - - - - + + + + %1 (%2) - + Select Video Output Path @@ -3894,417 +3894,417 @@ Please check your FFmpeg installation used for compilation. GMainWindow - + <a href='https://citra-emu.org/entry/telemetry-and-why-thats-a-good-thing/'>Anonymous data is collected</a> to help improve Citra. <br/><br/>Would you like to share your usage data with us? <a href='https://citra-emu.org/entry/telemetry-and-why-thats-a-good-thing/'>Citrayı geliştirmeye yardımcı olmak için</a> anonim veri toplandı. <br/><br/>Kullanım verinizi bizimle paylaşmak ister misiniz? - + Telemetry Telemetri - + No Suitable Vulkan Devices Detected - + Vulkan initialization failed during boot.<br/>Your GPU may not support Vulkan 1.1, or you do not have the latest graphics driver. - - + + Current emulation speed. Values higher or lower than 100% indicate emulation is running faster or slower than a 3DS. Geçerli emülasyon hızı. 100%'den az veya çok olan değerler emülasyonun bir 3DS'den daha yavaş veya daha hızlı çalıştığını gösterir. - - + + How many frames per second the game is currently displaying. This will vary from game to game and scene to scene. Oyunun şu anda saniye başına kaç kare gösterdiği. Bu oyundan oyuna ve sahneden sahneye farklılık gösterebilir. - - + + Time taken to emulate a 3DS frame, not counting framelimiting or v-sync. For full-speed emulation this should be at most 16.67 ms. Bir 3DS karesini emüle etmekte geçen zaman, karelimitleme ve v-sync hariç. Tam hız emülasyon için bu en çok 16,67 ms. olmalı. - + Clear Recent Files Son Dosyaları Temizle - + &Continue - + &Pause - + Update Available Güncelleme Mevcut - + An update is available. Would you like to install it now? Bir güncelleme mevcut. Şimdi yüklemek ister misiniz? - + No Update Found Güncelleme Bulunamadı - + No update is found. Güncelleme bulunamadı. - + Citra is running a game TRANSLATORS: This string is shown to the user to explain why Citra needs to prevent the computer from sleeping - - + + Invalid ROM Format Geçersiz Dosya Biçimi - - + + Your ROM format is not supported.<br/>Please follow the guides to redump your <a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>game cartridges</a> or <a href='https://citra-emu.org/wiki/dumping-installed-titles/'>installed titles</a>. Oyun dosyanızın biçimi desteklenmiyor. <br/>Lütfen <a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>oyun kartuşlarınızı</a> veya <a href='https://citra-emu.org/wiki/dumping-installed-titles/'>yüklenmiş oyunlarınızı</a> yeniden dump etmek için rehberleri takip ediniz. - + ROM Corrupted Dosya Bozulmuş - + Your ROM is corrupted. <br/>Please follow the guides to redump your <a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>game cartridges</a> or <a href='https://citra-emu.org/wiki/dumping-installed-titles/'>installed titles</a>. Oyun dosyanız bozuk. <br/>Lütfen <a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>oyun kartuşlarınızı</a> veya <a href='https://citra-emu.org/wiki/dumping-installed-titles/'>yüklenmiş oyunlarınızı</a> yeniden dump etmek için rehberleri takip ediniz. - + ROM Encrypted Dosya Şifreli - + Your ROM is encrypted. <br/>Please follow the guides to redump your <a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>game cartridges</a> or <a href='https://citra-emu.org/wiki/dumping-installed-titles/'>installed titles</a>. Oyun dosyanız şifreli.<br/>Lütfen <a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>oyun kartuşlarınızı</a> veya <a href='https://citra-emu.org/wiki/dumping-installed-titles/'>yüklenmiş oyunlarınızı</a> yeniden dump etmek için rehberleri takip ediniz. - + Unsupported ROM - + GBA Virtual Console ROMs are not supported by Citra. - + Error while loading ROM! ROM yüklenirken hata oluştu! - + An unknown error occurred. Please see the log for more details. - + CIA must be installed before usage CIA dosyası kullanılmadan önce yüklenmelidir - + Before using this CIA, you must install it. Do you want to install it now? Bu CIA dosyasını kullanmadan önce yüklemeniz gerekir. Şimdi yüklemek ister misiniz? - - + + Slot %1 Slot %1 - + Slot %1 - %2 %3 - + Error Opening %1 Folder %1 Klasörü Açılırken Hata Oluştu - - + + Folder does not exist! Klasör mevcut değil! - + Dumping... Dump ediliyor... - - + + Cancel İptal et - - - - - - - - - + + + + + + + + + Citra Citra - + Could not dump base RomFS. Refer to the log for details. Temel RomFS dump edilemedi. Detaylar için kütük dosyasına bakınız. - + Error Opening %1 %1 Açılırken Hata Oluştu - + Select Directory Dizin Seç - + Properties - + The game properties could not be loaded. - + 3DS Executable (%1);;All Files (*.*) %1 is an identifier for the 3DS executable file extensions. 3DS Çalıştırılabiliri (%1);; Bütün Dosyalar (*.*) - + Load File Dosya Yükle - + Load Files Dosyaları Yükle - + 3DS Installation File (*.CIA*) 3DS Kurulum Dosyası (*.CIA*) - + All Files (*.*) Tüm Dosyalar (*.*) - + %1 has been installed successfully. %1 başarıyla yüklendi. - + Unable to open File Dosya açılamıyor - + Could not open %1 %1 açılamıyor - + Installation aborted Yükleme iptal edildi - + The installation of %1 was aborted. Please see the log for more details %1'in yüklemesi iptal edildi. Daha fazla detay için lütfen kütüğe bakınız. - + Invalid File Geçersiz Dosya - + %1 is not a valid CIA %1 geçerli bir CIA dosyası değil - + Encrypted File Şifrelenmiş Dosya - + %1 must be decrypted before being used with Citra. A real 3DS is required. %1 Citra ile kullanılmadan önce deşifre edilmelidir. Gerçek bir 3DS gereklidir. - + Unable to find File - + Could not find %1 - + Uninstalling '%1'... - + Failed to uninstall '%1'. - + Successfully uninstalled '%1'. - + File not found Dosya bulunamadı - + File "%1" not found "%1" Dosyası bulunamadı - + Missing Citra Account Citra Hesabı Eksik - + You must link your Citra account to submit test cases.<br/>Go to Emulation &gt; Configure... &gt; Web to do so. Testlerinizi göndermek için Citra hesabınızla giriş yapmalısınız.<br/>Bunu yapmak için &gt; Yapılandır... &gt; Ağ kısmına gidin. - + Savestates - + Warning: Savestates are NOT a replacement for in-game saves, and are not meant to be reliable. Use at your own risk! - - - + + + Error opening amiibo data file - + A tag is already in use. - + Game is not looking for amiibos. - + Amiibo File (%1);; All Files (*.*) Amiibo Dosyası (%1);; Tüm Dosyalar (*.*) - + Load Amiibo Amiibo Yükle - + Unable to open amiibo file "%1" for reading. - + Record Movie Klip Kaydet - + Movie recording cancelled. Klip kaydı iptal edildi. - - + + Movie Saved Klip Kaydedildi - - + + The movie is successfully saved. Klip başarıyla kayıt edildi. - + Invalid Screenshot Directory - + Cannot create specified screenshot directory. Screenshot path is set back to its default value. - + Could not load video dumper - + FFmpeg could not be loaded. Make sure you have a compatible version installed. To install FFmpeg to Citra, press Open and select your FFmpeg directory. @@ -4313,158 +4313,158 @@ To view a guide on how to install FFmpeg, press Help. - + Select FFmpeg Directory - + The provided FFmpeg directory is missing %1. Please make sure the correct directory was selected. - + FFmpeg has been sucessfully installed. - + Installation of FFmpeg failed. Check the log file for details. - + Could not start video dumping.<br>Refer to the log for details. Video dump'u başlatılamadı. <br>Detaylar için kütük dosyasına bakınız. - + Recording %1 - + Playing %1 / %2 - + Movie Finished - + Speed: %1% Hız: %1% - + Speed: %1% / %2% Hız: %1% / %2% - + Game: %1 FPS Oyun: %1 FPS - + Frame: %1 ms Kare: %1 ms - + VOLUME: MUTE - + VOLUME: %1% Volume percentage (e.g. 50%) - + %1 is missing. Please <a href='https://citra-emu.org/wiki/dumping-system-archives-and-the-shared-fonts-from-a-3ds-console/'>dump your system archives</a>.<br/>Continuing emulation may result in crashes and bugs. %1 eksik. Lütfen <a href='https://citra-emu.org/wiki/dumping-system-archives-and-the-shared-fonts-from-a-3ds-console/'>sistem arşivinizi dump edin</a>.<br/>Emülasyona devam etmek çökmelerle ve hatalarla sonuçlanabilir. - + A system archive Bir sistem arşivi - + System Archive Not Found Sistem Arşivi Bulunamadı - + System Archive Missing Sistem Arşivi Eksik - + Save/load Error Kaydetme/yükleme Hatası - + Fatal Error Önemli Hata - + A fatal error occurred. <a href='https://community.citra-emu.org/t/how-to-upload-the-log-file/296'>Check the log</a> for details.<br/>Continuing emulation may result in crashes and bugs. - + Fatal Error encountered Kritik hatayla karşılaşıldı - + Continue Devam - + Quit Game - + OK - + Would you like to exit now? Çıkmak istediğinize emin misiniz? - + The game is still running. Would you like to stop emulation? Oyun hala çalışıyor. Emülasyonu durdurmak istiyor musunuz? - + Playback Completed Oynatma Tamamlandı - + Movie playback completed. Klip oynatması tamamlandı. - + Primary Window - + Secondary Window @@ -4472,22 +4472,22 @@ To view a guide on how to install FFmpeg, press Help. GPUCommandListModel - + Command Name Command Name - + Register Register - + Mask Mask - + New Value New Value @@ -4495,23 +4495,23 @@ To view a guide on how to install FFmpeg, press Help. GPUCommandListWidget - + Pica Command List Pica Command List - - + + Start Tracing Start Tracing - + Copy All Copy All - + Finish Tracing Finish Tracing @@ -4519,7 +4519,7 @@ To view a guide on how to install FFmpeg, press Help. GPUCommandStreamWidget - + Graphics Debugger Graphics Debugger @@ -4527,42 +4527,42 @@ To view a guide on how to install FFmpeg, press Help. GRenderWindow - + OpenGL not available! - + OpenGL shared contexts are not supported. - + Error while initializing OpenGL! - + Your GPU may not support OpenGL, or you do not have the latest graphics driver. - + Error while initializing OpenGL 4.3! - + Your GPU may not support OpenGL 4.3, or you do not have the latest graphics driver.<br><br>GL Renderer:<br>%1 - + Error while initializing OpenGL ES 3.2! - + Your GPU may not support OpenGL ES 3.2, or you do not have the latest graphics driver.<br><br>GL Renderer:<br>%1 @@ -4570,193 +4570,193 @@ To view a guide on how to install FFmpeg, press Help. GameList - - + + Compatibility Uyumluluk - - + + Region Bölge - - + + File type Dosya türü - - + + Size Boyut - + Open Save Data Location Kayıt Dosyası Konumunu Aç - + Open Extra Data Location İlave Veri Konumunu Aç - + Open Application Location Uygulama Konumunu Aç - + Open Update Data Location Güncelleme Dosyası Konumunu Aç - + Open DLC Data Location - + Open Texture Dump Location Texture Dump Konumunu Aç - + Open Custom Texture Location Custom Texture Konumunu Aç - + Open Mods Location Mods Konumunu Aç - + Dump RomFS RomFS Dump - + Disk Shader Cache - + Open Shader Cache Location - + Delete OpenGL Shader Cache - + Uninstall - + Everything - + Game - + Update - + DLC - + Navigate to GameDB entry Oyun Veritabanı Girdisine Git - + Properties - - - - + + + + Citra - + Are you sure you want to completely uninstall '%1'? This will delete the game if installed, as well as any installed updates or DLC. - - + + %1 (Update) - - + + %1 (DLC) - + Are you sure you want to uninstall '%1'? - + Are you sure you want to uninstall the update for '%1'? - + Are you sure you want to uninstall all DLC for '%1'? - + Scan Subfolders Alt Dizinleri Tara - + Remove Game Directory Oyun Dizinini Kaldır - + Move Up - + Move Down - + Open Directory Location Dizinin Bulunduğu Yeri Aç - + Name İsim @@ -4764,12 +4764,12 @@ This will delete the game if installed, as well as any installed updates or DLC. GameListItemCompat - + Perfect Mükemmel - + Game functions flawless with no audio or graphical glitches, all tested functionality works as intended without any workarounds needed. Oyun grafik veya ses hataları olmadan sorunsuz çalışıyor, tüm test edilmiş özellikler @@ -4777,12 +4777,12 @@ geçici çözümler gerektirmeden beklendiği gibi çalışıyor. - + Great Çok İyi - + Game functions with minor graphical or audio glitches and is playable from start to finish. May require some workarounds. Oyun küçük grafik veya ses hatalarıyla çalışıyor ve baştan sona kadar oynanabilir. Bazı @@ -4790,12 +4790,12 @@ geçici çözümler gerektirebilir. - + Okay Yeterli - + Game functions with major graphical or audio glitches, but game is playable from start to finish with workarounds. Oyun büyük grafik veya ses hatalarıyla çalışıyor fakat geçici çözümler ile baştan sona @@ -4803,12 +4803,12 @@ kadar oynanabilir. - + Bad Kötü - + Game functions, but with major graphical or audio glitches. Unable to progress in specific areas due to glitches even with workarounds. Oyun çalışıyor fakat büyük grafik veya ses hatalarına sahip. Geçici çözümlerle bile @@ -4816,33 +4816,33 @@ hatalardan dolayı bazı alanlar geçilemiyor. - + Intro/Menu Giriş/Menü - + Game is completely unplayable due to major graphical or audio glitches. Unable to progress past the Start Screen. Büyük grafik ve ses sorunlardan dolayı oyun oynanamaz durumda. Başlangıç ekranından ileriye geçilmiyor. - + Won't Boot Açılmıyor - + The game crashes when attempting to startup. Oyun açılmaya çalışıldığında çöküyor. - + Not Tested Test Edilmedi - + The game has not yet been tested. Bu oyun henüz test edilmedi. @@ -4850,7 +4850,7 @@ Screen. GameListPlaceholder - + Double-click to add a new folder to the game list Oyun listenize yeni bir klasör eklemek için çift tıklayın @@ -4858,27 +4858,27 @@ Screen. GameListSearchField - + of 'nun - + result sonuç - + results sonuçlar - + Filter: Filtre: - + Enter pattern to filter Filtrelenecek düzeni girin @@ -4886,47 +4886,47 @@ Screen. GameRegion - + Japan Japonya - + North America Kuzey Amerika - + Europe Avrupa - + Australia Avustralya - + China Çin - + Korea Kore - + Taiwan Tayvan - + Invalid region Geçersiz Bölge - + Region free Bölge kilitsiz @@ -4934,23 +4934,23 @@ Screen. GraphicsBreakPointsWidget - + Pica Breakpoints Pica Breakpoints - - + + Emulation running Emulation running - + Resume Resume - + Emulation halted at breakpoint Emulation halted at breakpoint @@ -4958,146 +4958,146 @@ Screen. GraphicsSurfaceWidget - + Pica Surface Viewer Pica Surface Viewer - + Color Buffer Color Buffer - + Depth Buffer Depth Buffer - + Stencil Buffer Stencil Buffer - + Texture 0 Texture 0 - + Texture 1 Texture 1 - + Texture 2 Texture 2 - + Custom Custom - + Unknown Unknown - + Save Save - + Source: Source: - + Physical Address: Physical Address: - + Width: Width: - + Height: Height: - + Format: Format: - + X: X: - + Y: Y: - + Pixel out of bounds Pixel out of bounds - + (unable to access pixel data) (unable to access pixel data) - + (invalid surface address) (invalid surface address) - + (unknown surface format) (unknown surface format) - + Portable Network Graphic (*.png) Portable Network Graphic (*.png) - + Binary data (*.bin) Binary data (*.bin) - + Save Surface Save Surface - - - - + + + + Error Hata - - + + Failed to open file '%1' '%1' dosyası açılamadı - + Failed to save surface data to file '%1' Yüzey verisi '%1' dosyasına kaydedilemedi - + Failed to completely write surface data to file. The saved data will likely be corrupt. Yüzey verisini tamamen dosyaya yazma işlemi başarısız oldu. Kaydedilen veri muhtemelen bozuldu. @@ -5105,42 +5105,42 @@ Screen. GraphicsTracingWidget - + CiTrace Recorder CiTrace Recorder - + Start Recording Start Recording - + Stop and Save Stop and Save - + Abort Recording Abort Recording - + Save CiTrace Save CiTrace - + CiTrace File (*.ctf) CiTrace File (*.ctf) - + CiTracing still active CiTracing still active - + A CiTrace is still being recorded. Do you want to save it? If not, all recorded data will be discarded. A CiTrace is still being recorded. Do you want to save it? If not, all recorded data will be discarded. @@ -5148,17 +5148,17 @@ Screen. GraphicsVertexShaderModel - + Offset Offset - + Raw Raw - + Disassembly Disassembly @@ -5166,127 +5166,127 @@ Screen. GraphicsVertexShaderWidget - + Save Shader Dump Save Shader Dump - + Shader Binary (*.shbin) Shader Binary (*.shbin) - + Pica Vertex Shader Pica Vertex Shader - + (data only available at vertex shader invocation breakpoints) (data only available at vertex shader invocation breakpoints) - + Dump Dump - + Input Data Input Data - + Attribute %1 Attribute %1 - + Cycle Index: Cycle Index: - + SRC1: %1, %2, %3, %4 SRC1: %1, %2, %3, %4 - + SRC2: %1, %2, %3, %4 SRC2: %1, %2, %3, %4 - + SRC3: %1, %2, %3, %4 SRC3: %1, %2, %3, %4 - + DEST_IN: %1, %2, %3, %4 DEST_IN: %1, %2, %3, %4 - + DEST_OUT: %1, %2, %3, %4 DEST_OUT: %1, %2, %3, %4 - + Address Registers: %1, %2 Address Registers: %1, %2 - + Compare Result: %1, %2 Compare Result: %1, %2 - + Static Condition: %1 Static Condition: %1 - + Dynamic Conditions: %1, %2 Dynamic Conditions: %1, %2 - + Loop Parameters: %1 (repeats), %2 (initializer), %3 (increment), %4 Loop Parameters: %1 (repeats), %2 (initializer), %3 (increment), %4 - + Instruction offset: 0x%1 Instruction offset: 0x%1 - + -> 0x%2 -> 0x%2 - + (last instruction) (last instruction) @@ -5294,67 +5294,67 @@ Screen. HostRoom - + Create Room Oda Oluştur - + Room Name Oda İsmi - + Preferred Game Öncelikli Oyun - + Max Players Max Oyuncu - + Username Kullanıcı Adı - + (Leave blank for open game) (Herkese açık oyun için boş bırakın) - + Password Şifre - + Port Port - + Room Description Oda Açıklaması - + Load Previous Ban List Önceki Yasak Listesini Yükle - + Public Herkese Açık - + Unlisted Liste dışı - + Host Room Oda Oluştur @@ -5362,12 +5362,12 @@ Screen. HostRoomWindow - + Error Hata - + Failed to announce the room to the public lobby. In order to host a room publicly, you must have a valid Citra account configured in Emulation -> Configure -> Web. If you do not want to publish a room in the public lobby, then select Unlisted instead. Debug Message: Oda Herkese Açık Lobi'ye bildirilemedi. Bir odayı herkese açık halde sunmak için, Emülasyon-> Yapılandır-> Ağ ekranında tanımlı ve geçerli bir Citra hesabınız olması gerekmektedir. Eğer herkese açık lobi'de bir oda açmak istemiyorsanız, Liste Dışı seçin. @@ -5377,47 +5377,47 @@ Ayıklama Mesajı: IPCRecorder - + IPC Recorder IPC Recorder - + Enable Recording Kaydetmeyi Etkinleştir - + Filter: Filtre: - + Leave empty to disable filtering Filtrelemeyi devre dışı bırakmak için boş bırakın - + # # - + Status Durum - + Service Servis - + Function İşlev - + Clear Temizle @@ -5425,47 +5425,47 @@ Ayıklama Mesajı: IPCRecorderWidget - + Invalid Geçersiz - + Sent Yollanan - + Handling İşleniyor - + Success Başarılı - + Error Hata - + HLE Unimplemented HLE Uygulanmamış - + HLE HLE - + LLE LLE - + Unknown Bilinmeyen @@ -5473,7 +5473,7 @@ Ayıklama Mesajı: LLEServiceModulesWidget - + Toggle LLE Service Modules LLE Servisi Modüllerini Aç/Kapa @@ -5481,53 +5481,53 @@ Ayıklama Mesajı: LoadingScreen - + Loading Shaders 387 / 1628 Shader'lar Yükleniyor 387 / 1628 - + Loading Shaders %v out of %m Shader'lar Yükleniyor %m üzerinden %v - + Estimated Time 5m 4s Tahmini Zaman 5m 4s - + Loading... Yükleniyor... - + Preloading Textures %1 / %2 - + Preparing Shaders %1 / %2 Shader'lar Hazırlanıyor %1 / %2 - + Loading Shaders %1 / %2 Shader'lar Yükleniyor %1 / %2 - + Launching... Başlatılıyor... - + Now Loading %1 Şimdi Yükleniyor %1 - + Estimated Time %1 Tahmini Süre %1 @@ -5535,83 +5535,83 @@ Ayıklama Mesajı: Lobby - + Public Room Browser Herkese Açık Oda Tarayıcısı - - + + Nickname Takma ad - + Filters Filtreler - + Search Arama - + Games I Own Sahip Olduğum Oyunlar - + Hide Empty Rooms - + Hide Full Rooms Dolu Odaları Gizle - + Refresh Lobby Lobiyi Yenile - + Password Required to Join Katılmak İçin Şifre Gerekiyor - + Password: Şifre: - + Room Name Oda İsmi - + Preferred Game Öncelikli Oyun - + Host Sunucu - + Players Oyuncular - + Refreshing Yenileniyor - + Refresh List Listeyi Yenile @@ -5619,362 +5619,362 @@ Ayıklama Mesajı: MainWindow - + Citra Citra - + &File &Dosya - + Boot Home Menu - + Recent Files Son Kullanılan Dosyalar - + Amiibo Amiibo - + &Emulation &Emülasyon - + Save State Durumu kaydet - + Load State Durumu Yükle - + &View &Görünüm - + Debugging Hata Ayıklama - + Screen Layout Ekran Düzeni - + Multiplayer Çok Oyunculu - + Tools Araçlar - + Movie Fil - + Frame Advance Kare İlerlemesi - + &Help &Yardım - + Load File... Dosya Yükle... - + Install CIA... CIA Yükle... - + JPN - + USA - + EUR - + AUS - + CHN - + KOR - + TWN - + E&xit &Çıkış - + &Pause &Duraklat - + &Stop Du&rdur - + Save Kaydet - + Load Yükle - + FAQ S.S.S - + About Citra Citra Hakkında - + Single Window Mode Tek Pencere Modu - + Save to Oldest Slot En Eski Yuvaya Kaydet - + Load from Newest Slot En Yeni Yuvadan Yükle - + Configure... Yapılandır... - + Display Dock Widget Headers Dock Widget'ı Başlıklarını Göster - + Show Filter Bar Filtre Çubuğunu Göster - + Show Status Bar Durum Çubuğunu Göster - + Create Pica Surface Viewer Create Pica Surface Viewer - + Record... - + Play... - + Close - + Save without Closing - + Read-Only Mode - + Enable Frame Advancing Kare İlerlemesini Etkinleştir - + Advance Frame Kare İlerlet - + Capture Screenshot Ekran Görüntüsünü Kaydet - + Dump Video Video Dump - + Browse Public Game Lobby Herkese Açık Oyun Lobisi Ara - + Create Room Oda Oluştur - + Leave Room Odadan Ayrıl - + Direct Connect to Room Odaya Doğrudan Bağlan - + Show Current Room Mevcut Odayı Göster - + Fullscreen Tam ekran - + Modify Citra Install Citra Kurulumunu Değiştir - + Opens the maintenance tool to modify your Citra installation Citra kurulumunu değiştirmek için bakım aracını açar - + Default Varsayılan - + Single Screen Tek Ekran - + Large Screen Büyük Ekran - + Hybrid Screen - + Side by Side Yan Yana - + Separate Windows - + Swap Screens Ekranları değiştir - + Rotate Upright Yukarı doğru Döndür - + Check for Updates Güncellemeleri Kontrol Et - + Report Compatibility Uyumluluk Bildir - + Restart Yeniden Başlat - + Load... Yükle... - + Remove Kaldır - + Open Citra Folder Citra Klasörünü Aç - + Configure Current Game... @@ -5982,7 +5982,7 @@ Ayıklama Mesajı: MicroProfileDialog - + MicroProfile MicroProfile @@ -5990,48 +5990,48 @@ Ayıklama Mesajı: ModerationDialog - + Moderation Moderasyon - + Ban List Yasak Listesi - - + + Refreshing Yenileniyor - + Unban Yasağı Kaldır - + Subject Konu - + Type Tür - + Forum Username Forum Kullanıcı Adı - + IP Address IP Adresi - + Refresh Yenile @@ -6039,91 +6039,91 @@ Ayıklama Mesajı: MoviePlayDialog - - + + Play Movie - + File: - + ... - + Info - + Game: - + Author: - + Rerecord Count: - + Length: - + Current running game will be stopped. - + <br>Current recording will be discarded. - + Citra TAS Movie (*.ctm) - + Invalid movie file. - + Revision dismatch, playback may desync. - + Indicated length is incorrect, file may be corrupted. - - - - + + + + (unknown) - + Game used in this movie is not in game list. - + (>1 day) @@ -6131,43 +6131,43 @@ Ayıklama Mesajı: MovieRecordDialog - - + + Record Movie - + File: - + ... - + Author: - + Current running game will be restarted. - + <br>Current recording will be discarded. - + Recording will start once you boot a game. - + Citra TAS Movie (*.ctm) @@ -6175,44 +6175,44 @@ Ayıklama Mesajı: MultiplayerState - - + + Current connection status Mevcut bağlantı durumu - - + + Not Connected. Click here to find a room! Bağlı Değil. Oda bulmak için buraya tıklayın! - - - + + + Connected Bağlanıldı - - + + Not Connected Bağlı Değil - + Error Hata - + Failed to update the room information. Please check your Internet connection and try hosting the room again. Debug Message: Oda bilgisi güncellemesi başarısız oldu. Lütfen internet bağlantınızı kontrol edin ve odayı oluşturmayı tekrar deneyin. Ayıklama Mesajı: - + New Messages Received Yeni Mesajlar Alındı @@ -6220,22 +6220,22 @@ Ayıklama Mesajı: NetworkMessage - + Leave Room Odadan Ayrıl - + You are about to close the room. Any network connections will be closed. Odayı kapatmak üzeresiniz. Tüm ağ bağlantıları kapanacaktır. - + Disconnect Bağlantıyı kes - + You are about to leave the room. Any network connections will be closed. Odadan çıkmak üzeresiniz. Tüm ağ bağlantıları kapanacaktır. @@ -6243,110 +6243,110 @@ Ayıklama Mesajı: NetworkMessage::ErrorManager - + Username is not valid. Must be 4 to 20 alphanumeric characters. - + Room name is not valid. Must be 4 to 20 alphanumeric characters. - + Username is already in use or not valid. Please choose another. - + IP is not a valid IPv4 address. - + Port must be a number between 0 to 65535. - + You must choose a Preferred Game to host a room. If you do not have any games in your game list yet, add a game folder by clicking on the plus icon in the game list. - + Unable to find an internet connection. Check your internet settings. - + Unable to connect to the host. Verify that the connection settings are correct. If you still cannot connect, contact the room host and verify that the host is properly configured with the external port forwarded. - + Unable to connect to the room because it is already full. - + Creating a room failed. Please retry. Restarting Citra might be necessary. - + The host of the room has banned you. Speak with the host to unban you or try a different room. - + Version mismatch! Please update to the latest version of Citra. If the problem persists, contact the room host and ask them to update the server. - + Incorrect password. - + An unknown error occurred. If this error continues to occur, please open an issue - + Connection to room lost. Try to reconnect. - + You have been kicked by the room host. - + MAC address is already in use. Please choose another. - + Your Console ID conflicted with someone else's in the room. Please go to Emulation > Configure > System to regenerate your Console ID. - + You do not have enough permission to perform this action. - + The user you are trying to kick/ban could not be found. They may have left the room. - + Error Hata @@ -6354,37 +6354,37 @@ They may have left the room. OptionSetDialog - + Options - + Unset - + unknown - + %1 &lt;%2> %3 - + Range: %1 - %2 - + custom - + %1 (0x%2) %3 @@ -6392,32 +6392,32 @@ They may have left the room. OptionsDialog - + Options - + Double click to see the description and change the values of the options. - + Specific - + Generic - + Name - + Value @@ -6425,157 +6425,157 @@ They may have left the room. QObject - + Supported image files (%1) Desteklenen görüntü dosyaları (%1) - + Open File Dosya Aç - + Error Hata - + Couldn't load the camera Kamera yüklenemedi - + Couldn't load %1 %1 yüklenemedi - - + + Shift Shift - - + + Ctrl Ctrl - - + + Alt Alt - - - + + + [not set] [ayarlanmadı] - - + + Hat %1 %2 Şaft %1 %2 - - - - - - + + + + + + Axis %1%2 %1%2 Ekseni - - + + Button %1 Tuş %1 - + GC Axis %1%2 - + GC Button %1 - - - + + + [unknown] [bilinmiyor] - + [unused] [kullanılmıyor] - + auto - + true - + false - - + + none - + %1 (0x%2) - + Invalid region Geçersiz Bölge - + Installed Titles Yüklü Başlıklar - + System Titles Sistem Başlıkları - + Add New Game Directory Yeni Oyun Klasörü Ekle - + Not playing a game Bir oyun oynamıyor - + %1 is not playing a game %1 bir oyun oynamıyor - + %1 is playing %2 %1 %2 oynuyor @@ -6583,7 +6583,7 @@ They may have left the room. QtKeyboard - + Software Keyboard Sanal Klavye @@ -6591,27 +6591,27 @@ They may have left the room. QtKeyboardDialog - + Text length is not correct (should be %1 characters) Metin uzunluğu uygun değil (%1 karakter olmalı) - + Text is too long (should be no more than %1 characters) Metin çok uzun (%1 karakterden daha uzun olmamalı) - + Blank input is not allowed Boş girdiye izin verilmiyor. - + Empty input is not allowed Boş girdiye izin verilmiyor. - + Validation error Doğrulama hatası @@ -6619,12 +6619,12 @@ They may have left the room. QtMiiSelectorDialog - + Mii Selector Mii Seçici - + Standard Mii Standart Mii @@ -6632,95 +6632,95 @@ They may have left the room. RecordDialog - + View Record Kayıt İncele - + Client Kullanıcı - - + + Process: İşle: - - + + Thread: Konu: - - + + Session: Oturum: - + Server Sunucu: - + General Genel - + Client Port: Kullanıcı Portu: - + Service: Servis: - + Function: Fonksiyon: - + Command Buffer Komut aralığı - + Select: Seçiniz: - + Request Untranslated İstek Çevirilmemiş - + Request Translated İstek Çevrilmiş - + Reply Untranslated Yanıt Çevilmemiş - + Reply Translated Yanıt Çevrilmiş - + OK Tamam - + null boş @@ -6728,37 +6728,37 @@ They may have left the room. RegistersWidget - + Registers Registers - + VFP Registers VFP Registers - + VFP System Registers VFP System Registers - + Vector Length Vector Length - + Vector Stride Vector Stride - + Rounding Mode Rounding Mode - + Vector Iteration Count Vector Iteration Count @@ -6766,7 +6766,7 @@ They may have left the room. SequenceDialog - + Enter a hotkey Bir kısayol girin @@ -6774,7 +6774,7 @@ They may have left the room. WaitTreeEvent - + reset type = %1 reset type = %1 @@ -6782,12 +6782,12 @@ They may have left the room. WaitTreeMutex - + locked %1 times by thread: locked %1 times by thread: - + free free @@ -6795,7 +6795,7 @@ They may have left the room. WaitTreeMutexList - + holding mutexes holding mutexes @@ -6803,12 +6803,12 @@ They may have left the room. WaitTreeObjectList - + waiting for all objects waiting for all objects - + waiting for one of the following objects waiting for one of the following objects @@ -6816,12 +6816,12 @@ They may have left the room. WaitTreeSemaphore - + available count = %1 available count = %1 - + max count = %1 max count = %1 @@ -6829,112 +6829,112 @@ They may have left the room. WaitTreeThread - + running running - + ready ready - + waiting for address 0x%1 waiting for address 0x%1 - + sleeping sleeping - + waiting for IPC response waiting for IPC response - + waiting for objects waiting for objects - + waiting for HLE return waiting for HLE return - + dormant dormant - + dead dead - + PC = 0x%1 LR = 0x%2 PC = 0x%1 LR = 0x%2 - + default default - + all all - + AppCore AppCore - + SysCore SysCore - + Unknown processor %1 Unknown processor %1 - + object id = %1 - + processor = %1 processor = %1 - + thread id = %1 thread id = %1 - + process = %1 (%2) - + priority = %1(current) / %2(normal) priority = %1(current) / %2(normal) - + last running ticks = %1 last running ticks = %1 - + not holding mutex not holding mutex @@ -6942,7 +6942,7 @@ They may have left the room. WaitTreeThreadList - + waited by thread waited by thread @@ -6950,17 +6950,17 @@ They may have left the room. WaitTreeTimer - + reset type = %1 reset type = %1 - + initial delay = %1 initial delay = %1 - + interval delay = %1 interval delay = %1 @@ -6968,27 +6968,27 @@ They may have left the room. WaitTreeWaitObject - + [%1]%2 %3 [%1]%2 %3 - + waited by no thread waited by no thread - + one shot one shot - + sticky sticky - + pulse pulse @@ -6996,7 +6996,7 @@ They may have left the room. WaitTreeWidget - + Wait Tree Wait Tree diff --git a/dist/languages/vi_VN.ts b/dist/languages/vi_VN.ts index f2d2b2767..060857944 100644 --- a/dist/languages/vi_VN.ts +++ b/dist/languages/vi_VN.ts @@ -2,17 +2,17 @@ ARMRegisters - + ARM Registers Các thanh ghi ARM - + Register Thanh ghi - + Value Giá trị @@ -20,27 +20,27 @@ AboutDialog - + About Citra Về Citra - - <html><head/><body><p><img src=":/icons/citra.png"/></p></body></html> - <html><head/><body><p><img src=":/icons/citra.png"/></p></body></html> + + <html><head/><body><p><img src=":/icons/lime.png"/></p></body></html> + <html><head/><body><p><img src=":/icons/lime.png"/></p></body></html> - + <html><head/><body><p><span style=" font-size:28pt;">Citra</span></p></body></html> <html><head/><body><p><span style=" font-size:28pt;">Citra</span></p></body></html> - + <html><head/><body><p>%1 | %2-%3 (%4)</p></body></html> <html><head/><body><p>%1 | %2-%3 (%4)</p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -57,12 +57,12 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">Phần mềm này không nên dùng để chơi các game mà bạn không sở hữu hợp pháp.</span></p></body></html> - + <html><head/><body><p><a href="https://citra-emu.org/"><span style=" text-decoration: underline; color:#039be5;">Website</span></a> | <a href="https://community.citra-emu.org/"><span style=" text-decoration: underline; color:#039be5;">Forum</span></a> | <a href="https://github.com/citra-emu"><span style=" text-decoration: underline; color:#039be5;">Source Code</span></a> | <a href="https://github.com/citra-emu/citra/graphs/contributors"><span style=" text-decoration: underline; color:#039be5;">Contributors</span></a> | <a href="https://github.com/citra-emu/citra/blob/master/license.txt"><span style=" text-decoration: underline; color:#039be5;">License</span></a></p></body></html> <html><head/><body><p><a href="https://citra-emu.org/"><span style=" text-decoration: underline; color:#039be5;">Trang web</span></a> | <a href="https://community.citra-emu.org/"><span style=" text-decoration: underline; color:#039be5;">Diễn đàn</span></a> | <a href="https://github.com/citra-emu"><span style=" text-decoration: underline; color:#039be5;">Mã nguồn</span></a> | <a href="https://github.com/citra-emu/citra/graphs/contributors"><span style=" text-decoration: underline; color:#039be5;">Người đóng góp</span></a> | <a href="https://github.com/citra-emu/citra/blob/master/license.txt"><span style=" text-decoration: underline; color:#039be5;">Giấy phép</span></a></p></body></html> - + <html><head/><body><p><span style=" font-size:7pt;">&quot;3DS&quot; is a trademark of Nintendo. Citra is not affiliated with Nintendo in any way.</span></p></body></html> <html><head/><body><p><span style=" font-size:7pt;">&quot;3DS&quot; là thương hiệu của Nintendo. Citra không hề có liên kết nào với Nintendo.</span></p></body></html> @@ -70,47 +70,47 @@ p, li { white-space: pre-wrap; } BreakPointModel - + Pica command loaded Đã khởi động lệnh Pica - + Pica command processed Đã xử lý lệnh Pica - + Incoming primitive batch Đã nhận được dữ liệu nguyên thủy mới - + Finished primitive batch Dữ liệu nguyên thủy đã được xử lý - + Vertex shader invocation Gọi lệnh Vertex Shader - + Incoming display transfer Đang chuyển giao hiển thị - + GSP command processed Đã xử lý lệnh GSP - + Buffers swapped Đã chuyển đổi bộ đệm - + Unknown debug context event @@ -118,32 +118,32 @@ p, li { white-space: pre-wrap; } CalibrationConfigurationDialog - + Communicating with the server... Đang kết nối với máy chủ... - + Cancel Bỏ qua - + Touch the top left corner <br>of your touchpad. Chạm vào góc trên trái <br>bảng cảm biến. - + Now touch the bottom right corner <br>of your touchpad. Giờ chạm vào góc dưới phải <br>bảng cảm biến. - + Configuration completed! Thiết lập hoàn tất! - + OK OK @@ -151,93 +151,93 @@ p, li { white-space: pre-wrap; } ChatRoom - + Room Window Phòng - + Send Chat Message Gửi tin nhắn - + Send Message Gửi tin - + Members Thành viên - + %1 has joined %1 đã tham gia - + %1 has left %1 đã rời khỏi - + %1 has been kicked %1 đã bị kick. - + %1 has been banned %1 đã bị cấm. - + %1 has been unbanned %1 đã được bỏ lệnh cấm. - + View Profile Xem hồ sơ - - + + Block Player Chặn người chơi - + When you block a player, you will no longer receive chat messages from them.<br><br>Are you sure you would like to block %1? Khi bạn chặn người chơi khác, bạn sẽ không thể nhận được các tin nhắn từ họ.<br><br>Bạn có chắc muốn chặn người chơi %1? - + Kick Kick - + Ban Chặn - + Kick Player Kick người chơi - + Are you sure you would like to <b>kick</b> %1? Bạn có chắc muốn <b>kick</b> %1? - + Ban Player Chặn người chơi - + Are you sure you would like to <b>kick and ban</b> %1? This would ban both their forum username and their IP address. @@ -249,22 +249,22 @@ This would ban both their forum username and their IP address. ClientRoom - + Room Window Cửa sổ Phòng kết nối - + Room Description Mô tả phòng - + Moderation... Quản trị... - + Leave Room Rời phòng @@ -272,17 +272,17 @@ This would ban both their forum username and their IP address. ClientRoomWindow - + Connected Đã kết nối - + Disconnected Đã ngắt kết ngối - + %1 (%2/%3 members) - connected %1 (%2/%3 thành viên) - đã kết nối @@ -290,108 +290,108 @@ This would ban both their forum username and their IP address. CompatDB - + Report Compatibility Gửi báo cáo tính tương thích - - + + Report Game Compatibility Gửi báo cáo về độ tương thích của game - + <html><head/><body><p><span style=" font-size:10pt;">Should you choose to submit a test case to the </span><a href="https://citra-emu.org/game/"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">Citra Compatibility List</span></a><span style=" font-size:10pt;">, The following information will be collected and displayed on the site:</span></p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Hardware Information (CPU / GPU / Operating System)</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Which version of Citra you are running</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The connected Citra account</li></ul></body></html> <html><head/><body><p><span style=" font-size:10pt;">Bạn nên chọn để gửi một mẫu thử mới vào </span><a href="https://citra-emu.org/game/"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;"> Danh sách tương thích của Citra </span></a><span style=" font-size:10pt;">, Các thông tin sau sẽ được tập hợp và hiển thị trên trang:</span></p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Thông tin phần cứng (CPU / GPU / Hệ điều hành)</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Bạn đang sử dụng phiên bản Citra nào? </li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Tài khoản Citra đã liên kết</li></ul></body></html> - + Perfect Hoàn mỹ - + <html><head/><body><p>Game functions flawlessly with no audio or graphical glitches.</p></body></html> <html><head/><body><p>Trò chơi mượt mà và không xuất hiện bất kỳ lỗi nào.</p></body></html> - + Great - + <html><head/><body><p>Game functions with minor graphical or audio glitches and is playable from start to finish. May require some workarounds.</p></body></html> <html><head/><body><p>Trò chơi chơi được toàn bộ song đôi phần vẫn còn lỗi hoặc giật vài chỗ. Cần được nghiên cứu thêm.</p></body></html> - + Okay Tạm ổn - + <html><head/><body><p>Game functions with major graphical or audio glitches, but game is playable from start to finish with workarounds.</p></body></html> <html><head/><body><p>Chạy game tồn đọng rất nhiều lỗi và giật, dù có thể chơi được từ đầu đến cuối.</p></body></html> - + Bad Kém - + <html><head/><body><p>Game functions, but with major graphical or audio glitches. Unable to progress in specific areas due to glitches even with workarounds.</p></body></html> <html><head/><body><p>Game chơi xảy ra rất nhiều lỗi, nhiều phần trong trò chơi không thể đạt được do lỗi cần được nghiên cứu thêm.</p></body></html> - + Intro/Menu Rất tệ - + <html><head/><body><p>Game is completely unplayable due to major graphical or audio glitches. Unable to progress past the Start Screen.</p></body></html> <html><head/><body><p>Hoàn toàn không thể chơi được game do lỗi đồ họa. Không thể qua được khâu Bắt đầu game.</p></body></html> - + Won't Boot Không thể chơi - + <html><head/><body><p>The game crashes when attempting to startup.</p></body></html> <html><head/><body><p>Ngay khi mở game đã bị văng.</p></body></html> - + <html><head/><body><p>Independent of speed or performance, how well does this game play from start to finish on this version of Citra?</p></body></html> <html><head/><body><p>Tiến hành chấm điểm về độ tối ưu, bạn chơi game này từ đầu đến cuối với Citra và cảm thấy thế nào?</p></body></html> - + Thank you for your submission! Rất cảm ơn bạn đã phản hồi! - + Submitting Đang gửi - + Communication error Lỗi kết nối - + An error occurred while sending the Testcase - + Next Kế tiếp @@ -399,93 +399,93 @@ This would ban both their forum username and their IP address. ConfigureAudio - + Output - + Emulation: Giả lập: - + HLE (fast) HLE (nhanh) - + LLE (accurate) LLE (chính xác) - + LLE multi-core LLE đa nhân - + Output Type - + Output Device - + This post-processing effect adjusts audio speed to match emulation speed and helps prevent audio stutter. This however increases audio latency. Hiệu ứng hậu xử lý giúp tăng tốc âm giúp phù hợp với tốc độ giả lập và cải thiện âm thanh, giúp hạn chế âm rè. Song điều này có thể tăng độ trễ âm. - + Enable audio stretching Bật chế độ giãn âm - + Use global volume - + Set volume: - + Volume: Âm lượng: - + 0 % 0 % - + Microphone Microphone - + Input Type Loại đầu vào - + Input Device Thiết bị đầu vào - - + + Auto - + %1% Volume percentage (e.g. 50%) %1% @@ -494,203 +494,203 @@ This would ban both their forum username and their IP address. ConfigureCamera - + Form Định dạng<br> - + Camera Máy ảnh - - + + Select the camera to configure Chọn máy ảnh để cấu hình - + Camera to configure: Cấu hình máy ảnh: - + Front Trước - + Rear Sau - - + + Select the camera mode (single or double) Chọn chế độ Máy ảnh (đơn hoặc đôi) - + Camera mode: Chế độ máy ảnh: - + Single (2D) Đơn (2D) - + Double (3D) Đôi (3D) - - + + Select the position of camera to configure Chọn vị trí máy ảnh để cấu hình - + Camera position: Vị trí máy ảnh: - + Left Trái - + Right Phải - + Configuration Thiết lập - - + + Select where the image of the emulated camera comes from. It may be an image or a real camera. Chọn nguồn ảnh mà giả lập sẽ nhận từ máy ảnh. Nó có thể là tệp tin hoặc một đầu ra Camera. - + Camera Image Source: Nguồn máy ảnh: - + Blank (blank) Trống (Không có gì) - + Still Image (image) Tệp tin (Hình ảnh) - + System Camera (qt) Máy ảnh (Webcam) - + File: Tệp tin: - + ... ... - - + + Select the system camera to use Chọn đầu ra camera để sử dụng - + Camera: Máy ảnh - + <Default> <Default> - - + + Select the image flip to apply Chọn chiều lật ảnh để áp dụng - + Flip: Lật ảnh: - + None Không - + Horizontal Lật theo chiều ngang - + Vertical Lật theo chiều dọc - + Reverse Đảo vị trí - + Select an image file every time before the camera is loaded Chọn tệp tin mỗi khi có yêu cầu kết nối máy ảnh - + Prompt before load Hỏi trước khi giả lập máy ảnh - + Preview Xem trước - + Resolution: 512*384 Độ phân giải: 512*384 - + Click to preview Nhấp chọn để xem trước - + Resolution: %1*%2 - + Supported image files (%1) Các tệp ảnh được hỗ trợ (%1) - + Open File Mở tệp tin @@ -698,87 +698,87 @@ This would ban both their forum username and their IP address. ConfigureCheats - - + + Cheats - + Add Cheat - + Available Cheats: - + Name - + Type - + Save - + Delete - + Name: - + Notes: - + Code: - + Would you like to save the current cheat? - - - + + + Save Cheat - + Please enter a cheat name. - + Please enter the cheat code. - + Cheat code line %1 is not valid. Would you like to ignore the error and continue? - - + + [new cheat] @@ -786,127 +786,127 @@ Would you like to ignore the error and continue? ConfigureDebug - + Form Định dạng - + GDB GDB - + Enable GDB Stub Bật GDB Stub - + Port: Cổng: - + Logging Nhật ký - + Global Log Filter Bộ lọc nhật ký - + Show Log Console (Windows Only) Hiển thị Log Console (Chỉ dành cho Windows) - + Open Log Location Mở vị trí nhật ký - + CPU - + Use global clock speed - + Set clock speed: - + CPU Clock Speed - + <html><body>Changes the emulated CPU clock frequency.<br>Underclocking can increase performance but may cause the game to freeze.<br>Overclocking may reduce in game lag but also might cause freezes</body></html> - + <html><head/><body><p>Enables the use of the ARM JIT compiler for emulating the 3DS CPUs. Don't disable unless for debugging purposes</p></body></html> - + Enable CPU JIT Bật CPU JIT - + Enable debug renderer - + Dump command buffers - + Miscellaneus - + <html><head/><body><p>Introduces a delay to the first ever launched app thread if LLE modules are enabled, to allow them to initialize.</p></body></html> - + Delay app start for LLE module initialization - + <html><head/><body><p>CPU Clock Speed Information<br/>Underclocking can increase performance but may cause the game to freeze.<br/>Overclocking may reduce in game lag but also might cause freezes</p></body></html> - + Validation layer not available - + Unable to enable debug renderer because the layer <strong>VK_LAYER_KHRONOS_validation</strong> is missing. Please install the Vulkan SDK or the appropriate package of your distribution - + Command buffer dumping not available - + Unable to enable command buffer dumping because the layer <strong>VK_LAYER_LUNARG_api_dump</strong> is missing. Please install the Vulkan SDK or the appropriate package of your distribution @@ -914,92 +914,92 @@ Would you like to ignore the error and continue? ConfigureDialog - + Citra Configuration Thiết lập Citra - - - + + + General Chung - - - + + + System Hệ thống - - + + Input Phím - - + + Hotkeys Phím tắt - - + + Graphics Đồ họa - - + + Enhancements - - - + + + Audio Âm thanh - - + + Camera Máy ảnh - - + + Debug Gỡ lỗi - - + + Storage - - + + Web Trang web - - + + UI Giao diện người dùng - + Controls Điều khiển - + Advanced Nâng cao @@ -1007,278 +1007,278 @@ Would you like to ignore the error and continue? ConfigureEnhancements - + Form - + Renderer - + Internal Resolution - + Auto (Window Size) - + Native (400x240) - + 2x Native (800x480) - + 3x Native (1200x720) - + 4x Native (1600x960) - + 5x Native (2000x1200) - + 6x Native (2400x1440) - + 7x Native (2800x1680) - + 8x Native (3200x1920) - + 9x Native (3600x2160) - + 10x Native (4000x2400) - + Enable Linear Filtering - + Post-Processing Shader - + Texture Filter - + None - + Anime4K - + Bicubic - + ScaleForce - + xBRZ - + MMPX - + Stereoscopy - + Stereoscopic 3D Mode - + Off - - + + Side by Side - + Anaglyph - + Interlaced - + Reverse Interlaced - + Depth - + % - + Eye to Render in Monoscopic Mode - + Left Eye (default) - + Right Eye - + Layout - + Screen Layout: - + Default - + Single Screen - + Large Screen - + Separate Windows - + Hybrid Screen - + Swap Screens - + Rotate Screens Upright - + Large Screen Proportion: - + Background Color: - + Utility - + <html><head/><body><p>Replace textures with PNG files.</p><p>Textures are loaded from load/textures/[Title ID]/.</p></body></html> - + Use Custom Textures - + <html><head/><body><p>Dump textures to PNG files.</p><p>Textures are dumped to dump/textures/[Title ID]/.</p></body></html> - + Dump Textures Trích xuất textures - + <html><head/><body><p>Load all custom textures into memory on boot, instead of loading them when the game requires them.</p></body></html> - + Preload Custom Textures - + <html><head/><body><p>Load custom textures asynchronously with background threads to reduce loading stutter</p></body></html> - + Async Custom Texture Loading @@ -1286,136 +1286,136 @@ Would you like to ignore the error and continue? ConfigureGeneral - + Form Định dạng - + General Chung - + Confirm exit while emulation is running Xác nhận thoát khi đang chạy giả lập - + Pause emulation when in background Tạm ngưng giả lập khi chạy dưới nền - + Mute audio when in background - + Hide mouse on inactivity - + Enable Gamemode - + Updates Cập nhật - + Check for updates on start Kiểm tra cập nhật khi khởi chạy - + Silently auto update after closing Tự động cập nhật ngầm sau khi tắt - + Emulation Giả lập - + Region: Khu vực: - + Auto-select Tự động chọn - + Use global emulation speed - + Set emulation speed: - + Emulation Speed: - + Screenshots - + Use global screenshot path - + Set screenshot path: - + Save Screenshots To - + ... - + Reset All Settings Đặt lại tất cả cài đặt - - - - - + + + + + unthrottled - + Select Screenshot Directory - + Citra Citra - + Are you sure you want to <b>reset your settings</b> and close Citra? Bạn có chắc muốn <b>đặt lại cài đặt</b> và đóng Citra? @@ -1423,157 +1423,157 @@ Would you like to ignore the error and continue? ConfigureGraphics - + Form Định dạng - + Graphics - + API Settings Cài đặt API - + Graphics API - + Software - + OpenGL - + Vulkan - + Physical Device - + OpenGL Renderer - + SPIR-V Shader Generation - + Renderer Bộ diễn dịch đồ họa - + <html><head/><body><p>Use the selected graphics API to accelerate shader emulation.</p><p>Requires a relatively powerful GPU for better performance.</p></body></html> - + Enable Hardware Shader Bật Hardware Shader - + <html><head/><body><p>Correctly handle all edge cases in multiplication operation in shaders. </p><p>Some games requires this to be enabled for the hardware shader to render properly.</p><p>However this would reduce performance in most games.</p></body></html> <html><head/><body><p>Xử lý chính xác các trường hợp góc cạnh khi tính toán đổ bóng. </p><p>Một số trò chơi cần bật chức năng này để phần cứng biên dịch đồ họa cho chính xác.</p><p>Song có thể sẽ giảm hiệu suất khung hình trong hầu hết các trò chơi.</p></body></html> - + Accurate Multiplication Accurate Multiplication - + <html><head/><body><p>Use the JIT engine instead of the interpreter for software shader emulation. </p><p>Enable this for better performance.</p></body></html> <html><head/><body><p>Dùng động cơ JIT thay vì dùng trình giả lập đổ bóng. </p><p>Bật chức năng này sẽ cải thiện hiệu suất đáng kể.</p></body></html> - + Enable Shader JIT Bật xử lý đổ bóng bằng JIT - + <html><head/><body><p>Compile shaders using background threads to avoid shader compilation stutter. Expect temporary graphical glitches</p></body></html> - + Enable Async Shader Compilation - + <html><head/><body><p>Perform presentation on separate threads. Improves performance when using Vulkan in most games.</p></body></html> - + Enable Async Presentation - + Advanced Nâng cao - + <html><head/><body><p>Overrides the sampling filter used by games. This can be useful in certain cases with poorly behaved games when upscaling. If unsure set this to Game Controlled</p></body></html> - + Texture Sampling - + Game Controlled - + Nearest Neighbor - + Linear - + <html><head/><body><p>Reduce stuttering by storing and loading generated shaders to disk.</p></body></html> - + Use Disk Shader Cache - + VSync prevents the screen from tearing, but some graphics cards have lower performance with VSync enabled. Keep it enabled if you don't notice a performance difference. VSync giúp giảm thiểu hiện tượng tải chia cắt hình ảnh hiển thị trên màn hình, một số các phần cứng độ họa sẽ chạy hiệu suất thấp khi bật VSync. Bật VSync nếu bạn không thấy ảnh hưởng gì. - + Enable VSync Bật VSync @@ -1581,63 +1581,63 @@ Would you like to ignore the error and continue? ConfigureHotkeys - + Hotkey Settings Thiết lập phím tắt - + Double-click on a binding to change it. Nhấp đôi chuột vị trí ràng buộc để thay đổi - + Clear All - + Restore Defaults - + Action Hành động - + Hotkey Phím tắt - - + + Conflicting Key Sequence Tập phím bị mâu thuẫn - + The entered key sequence is already assigned to: %1 - + A 3ds button - + Restore Default - + Clear - + The default key sequence is already assigned to: %1 @@ -1645,307 +1645,307 @@ Would you like to ignore the error and continue? ConfigureInput - + ConfigureInput ConfigureInput - + Profile Hồ sơ - + New Mới - + Delete Xoá - + Rename Đổi tên - + Face Buttons Các phím thao tác chính - + Y: Y: - + X: X: - + B: B: - + A: A: - + Directional Pad Phím điều hướng - - - + + + Up: Lên: - - - + + + Down: Xuống: - - - + + + Left: Trái: - - - + + + Right: Phải: - + Misc. Khác. - + Start: Start: - + Select: Select: - + Home: Home: - + Power: - + Circle Mod: Circle Mod: - + GPIO14: GPIO14: - + Debug: Gỡ lỗi: - + Circle Pad Phím điều hướng tay cầm - - - + + + Set Analog Stick Thiết lập Cần Analog - - + + Deadzone: 0 - + C-Stick C-Stick - + Shoulder Buttons Phím LR - + ZR: ZR: - + ZL: ZL: - + L: L: - + R: R: - + Motion / Touch... Chuyển động / Cảm ứng... - + Auto Map - + Clear All Xoá hết - + Restore Defaults Khôi phục mặc định - - - + + + Clear Xoá - - - + + + [not set] [chưa đặt] - - - + + + Restore Default Khôi phục mặc định - - + + Information Thông tin - + After pressing OK, first move your joystick horizontally, and then vertically. Sau khi nhấn OK, di chuyển cần điều khiển theo chiều ngang, sau đó theo chiều dọc. - - + + Deadzone: %1% - - + + Modifier Scale: %1% - + Warning - + Auto mapping failed. Your controller may not have a corresponding mapping - + After pressing OK, press any button on your joystick Sau khi nhấn OK, nhấn nút bất kỳ trên cần điều khiển của bạn - + [press key] [nhấn phím] - + Error! Lỗi! - + You're using a key that's already bound. Bạn đang sử dụng một phím đã được thiết lập. - + New Profile Hồ sơ mới - + Enter the name for the new profile. Nhập tên cho hồ sơ mới - + Delete Profile Xoá hồ sơ - + Delete profile %1? Xoá hồ sơ %1? - + Rename Profile Đổi tên hồ sơ - + New name: Tên mới: - + Duplicate profile name Tên hồ sơ bị trùng - + Profile name already exists. Please choose a different name. Hồ sơ người dùng này đã được sử dụng. Vui lòng chọn tên khác. @@ -1953,198 +1953,198 @@ Would you like to ignore the error and continue? ConfigureMotionTouch - + Configure Motion / Touch Cấu hình Chuyển động / Chạm - + Motion Chuyển động - + Motion Provider: Nguồn chuyển động - + Sensitivity: Độ nhạy: - + Controller: - - - - - + + + + + Configure Cấu hình - + Touch Chạm - + Touch Provider: Nguồn cảm ứng: - + Calibration: Hiệu chuẩn: - + (100, 50) - (1800, 850) - + Use button mapping: - + CemuhookUDP Config Thiết lập Cemuhook UDP - + You may use any Cemuhook compatible UDP input source to provide motion and touch input. Bạn có thể dùng bất cứ bản Cemuhook nào tương thích với đầu vào UDP để cung cấp đầu vào chuyển động và cảm ứng. - + Server: Máy chủ: - + Port: Cổng: - + Pad: Tay cầm: - + Pad 1 Tay cầm 1 - + Pad 2 Tay cầm 2 - + Pad 3 Tay cầm 3 - + Pad 4 Tay cầm 4 - + Learn More Tìm hiểu thêm - - + + Test Kiểm tra - + Mouse (Right Click) Chuột (Nhấp phải) - - + + CemuhookUDP CemuhookUDP - + SDL - + Emulator Window Cửa sổ giả lập - + <a href='https://citra-emu.org/wiki/using-a-controller-or-android-phone-for-motion-or-touch-input'><span style="text-decoration: underline; color:#039be5;">Learn More</span></a> <a href='https://citra-emu.org/wiki/using-a-controller-or-android-phone-for-motion-or-touch-input'><span style="text-decoration: underline; color:#039be5;">Tìm hiểu thêm</span></a> - + Information - + After pressing OK, press a button on the controller whose motion you want to track. Sau khi nhấn OK, hãy nhấn một nút trên tay cầm mà bạn muốn theo dõi chuyển động của nó. - + [press button] - + Testing Đang kiểm tra - + Configuring Thiết lập - + Test Successful Kiểm tra thành công - + Successfully received data from the server. Đã nhận dữ liệu từ máy chủ thành công. - + Test Failed Kiểm thử thất bại - + Could not receive valid data from the server.<br>Please verify that the server is set up correctly and the address and port are correct. Không thể nhận dữ liệu nào từ máy chủ.<br>Vui lòng kiểm tra máy chủ đã được thiết đặt đúng, kiểm tra địa chỉ và cổng kết nối là chính xác. - + Citra Citra - + UDP Test or calibration configuration is in progress.<br>Please wait for them to finish. Kiểm tra UDP hoặc quá trình đang hiệu chuẩn.<br>Vui lòng đợi quá trình này hoàn tất. @@ -2152,97 +2152,97 @@ Would you like to ignore the error and continue? ConfigurePerGame - + Dialog - + Info - + Size - + Format - + Name - + Filepath - + Title ID - + Reset Game Settings Đặt lại cài đặt game - + Use global configuration (%1) - + General - + System Hệ thống - + Enhancements - + Graphics - + Audio - + Debug - + Cheats - + Properties - + Citra - + Are you sure you want to <b>reset your settings for this game</b>? Bạn có chắc muốn <b>đặt lại cài đặt cho game này</b>? @@ -2250,65 +2250,65 @@ Would you like to ignore the error and continue? ConfigureStorage - + Form - + Storage - + Use Virtual SD - + Custom Storage - + Use Custom Storage - + NAND Directory - - + + Open - - + + NOTE: This does not move the contents of the previous directory to the new one. - - + + Change - + SDMC Directory - + Select NAND Directory - + Select SDMC Directory @@ -2316,1064 +2316,1064 @@ Would you like to ignore the error and continue? ConfigureSystem - + Form Form - + System Settings Cài đặt hệ thống - + Enable New 3DS mode - + Use LLE applets (if installed) - + Username Tên người dùng - + Birthday Sinh nhật - + January Tháng 1 - + February Tháng 2 - + March Tháng 3 - + April Tháng 4 - + May Tháng 5 - + June Tháng 6 - + July Tháng 7 - + August Tháng 8 - + September Tháng 9 - + October Tháng 10 - + November Tháng 11 - + December Tháng 12 - + Language Ngôn ngữ - + Note: this can be overridden when region setting is auto-select Lưu ý: tùy chọn này có thể bị thay thế khi thiết lập vùng đặt ở chế độ tự động - + Japanese (日本語) Tiếng Nhật (日本語) - + English Tiếng Anh (English) - + French (français) Tiếng Pháp (Français) - + German (Deutsch) Tiếng Đức (Deutsch) - + Italian (italiano) Tiếng Ý (Italiano) - + Spanish (español) Tiếng Tây Ban Nha (Español) - + Simplified Chinese (简体中文) Tiếng Hoa (Giản Thể) - + Korean (한국어) Tiếng Hàn (한국어) - + Dutch (Nederlands) Tiếng Hà Lan (Dutch) - + Portuguese (português) Tiếng Bồ Đào Nha (Português) - + Russian (Русский) Tiếng Nga (Pу́сский язы́к) - + Traditional Chinese (正體中文) Tiếng Hoa (Phồn Thể) - + Sound output mode Chế độ đầu ra âm thanh - + Mono Đơn âm - + Stereo Đa âm - + Surround Âm thanh vòm - + Country Quốc gia - + Clock Đồng hồ - + System Clock Đồng hồ hệ thống - + Fixed Time Giờ cố định - + Startup time Giờ bắt đầu - + yyyy-MM-ddTHH:mm:ss yyyy-MM-ddTHH:mm:ss - + Offset time - + days - + HH:mm:ss - + Initial System Ticks - + Random - + Fixed - + Initial System Ticks Override - + Play Coins: - + Run System Setup when Home Menu is launched - + Console ID: ID Máy: - + Regenerate Tạo mới - + 3GX Plugin Loader: - + Enable 3GX plugin loader - + Allow games to change plugin loader state - + Download System Files from Nitendo servers Tải tập tin hệ thống từ máy chủ Nitendo - + Minimal - + Old 3DS - + New 3DS - + JPN - + USA - + EUR - + AUS - + CHN - + KOR - + TWN - + Download - + System settings are available only when game is not running. Chỉ có thể thay đổi thiết lập hệ thống khi đang không chơi game. - + Japan Nhật Bản - + Anguilla Anguilla - + Antigua and Barbuda Antigua và Barbuda - + Argentina Argentina - + Aruba Aruba - + Bahamas Bahamas - + Barbados Barbados - + Belize Belize - + Bolivia Bolivia - + Brazil Brazil - + British Virgin Islands Quần đảo Virgin thuộc Anh - + Canada Canada - + Cayman Islands Quần đảo Cayman - + Chile Chile - + Colombia Colombia - + Costa Rica Costa Rica - + Dominica Dominica - + Dominican Republic Cộng hòa Dominica - + Ecuador Ecuador - + El Salvador El Salvador - + French Guiana Guyan thuộc Pháp - + Grenada Grenada - + Guadeloupe Guadeloupe - + Guatemala Guatemala - + Guyana Guyana - + Haiti Haiti - + Honduras Honduras - + Jamaica Jamaica - + Martinique Martinique - + Mexico Mexico - + Montserrat Montserrat - + Netherlands Antilles Antille thuộc Hà Lan - + Nicaragua Nicaragua - + Panama Panama - + Paraguay Paraguay - + Peru Peru - + Saint Kitts and Nevis Saint Kitts và Nevis - + Saint Lucia Saint Lucia - + Saint Vincent and the Grenadines Saint Vincent và Grenadines - + Suriname Suriname - + Trinidad and Tobago Trinidad và Tobago - + Turks and Caicos Islands Quần đảo Turks và Caicos - + United States Hoa Kỳ - + Uruguay Uruguay - + US Virgin Islands Quần đảo Virgin thuộc Mỹ - + Venezuela Venezuela - + Albania Albania - + Australia Úc - + Austria Áo - + Belgium Bỉ - + Bosnia and Herzegovina Bosnia và Herzegovina - + Botswana Botswana - + Bulgaria Bulgaria - + Croatia Croatia - + Cyprus Đảo Síp - + Czech Republic Cộng hòa Séc - + Denmark Đan Mạch - + Estonia Estonia - + Finland Phần Lan - + France Pháp - + Germany Đức - + Greece Hy Lạp - + Hungary Hungary - + Iceland Iceland - + Ireland Ireland - + Italy Ý - + Latvia Latvia - + Lesotho Lesotho - + Liechtenstein Liechtenstein - + Lithuania Litva - + Luxembourg Luxembourg - + Macedonia Macedonia - + Malta Malta - + Montenegro Montenegro - + Mozambique Mozambique - + Namibia Namibia - + Netherlands Hà Lan - + New Zealand New Zealand - + Norway Na Uy - + Poland Ba Lan - + Portugal Bồ Đào Nha - + Romania Romania - + Russia Nga - + Serbia Serbia - + Slovakia Slovakia - + Slovenia Slovenia - + South Africa Nam Phi - + Spain Tây Ban Nha - + Swaziland Swaziland - + Sweden Thụy Điển - + Switzerland Thụy Sĩ - + Turkey Thổ Nhĩ Kỳ - + United Kingdom Vương quốc Anh - + Zambia Zambia - + Zimbabwe Zimbabwe - + Azerbaijan Azerbaijan - + Mauritania Mauritania - + Mali Mali - + Niger Niger - + Chad Chad - + Sudan Sudan - + Eritrea Eritrea - + Djibouti Djibouti - + Somalia Somalia - + Andorra Andorra - + Gibraltar Gibraltar - + Guernsey Guernsey - + Isle of Man Đảo Man - + Jersey Jersey - + Monaco Monaco - + Taiwan Đài Loan - + South Korea Hàn Quốc - + Hong Kong Hồng Kông - + Macau Ma Cao - + Indonesia Indonesia - + Singapore Singapore - + Thailand Thái Lan - + Philippines Philippines - + Malaysia Malaysia - + China Trung Quốc - + United Arab Emirates Các tiểu vương quốc Ả Rập thống nhất - + India Ấn Độ - + Egypt Ai Cập - + Oman Oman - + Qatar Qatar - + Kuwait Kuwait - + Saudi Arabia Ả-rập Xê-út - + Syria Syria - + Bahrain Bahrain - + Jordan Jordan - + San Marino San Marino - + Vatican City Vatican - + Bermuda Bermuda - + Download System Files from Nintendo servers Tải tập tin hệ thống từ máy chủ Nintendo - + Citra is missing keys to download system files. <br><a href='https://citra-emu.org/wiki/aes-keys/'><span style="text-decoration: underline; color:#039be5;">How to get keys?</span></a> - - + + Console ID: 0x%1 Tên Máy: 0x%1 - + This will replace your current virtual 3DS with a new one. Your current virtual 3DS will not be recoverable. This might have unexpected effects in games. This might fail, if you use an outdated config savegame. Continue? Điều này có thể khiến máy ảo 3DS của bạn thay thế bởi một chiếc máy mới. Điều này không thể hoàn tác. Một số game có thể bị ảnh hưởng bởi điều này. Và có thể xảy ra lỗi nếu bạn đang dùng thiết lập lưu game cũ. Tiếp tục? - + Warning Cảnh báo - + Downloading files... - + Cancel - - + + Citra - + Downloading system files failed. Tải tập tin hệ thống thất bại. - + Successfully downloaded system files. Tải tập tin hệ thống thành công. @@ -3381,90 +3381,90 @@ Would you like to ignore the error and continue? ConfigureTouchFromButton - + Configure Touchscreen Mappings Cấu hình ánh xạ màn hình cảm ứng - + Mapping: - + New - + Delete - + Rename - + Click the bottom area to add a point, then press a button to bind. Drag points to change position, or double-click table cells to edit values. - + Delete Point - + Button - + X X axis - + Y Y axis - + New Profile - + Enter the name for the new profile. - + Delete Profile - + Delete profile %1? - + Rename Profile - + New name: - + [press key] @@ -3472,113 +3472,113 @@ Drag points to change position, or double-click table cells to edit values. ConfigureUi - + Form - + General Chung - + Note: Changing language will apply your configuration. Nhắc nhở: Thay đổi ngôn ngữ sẽ áp dụng các thiết lập hiện hành. - + Interface language: Ngôn ngữ giao diện: - + Theme: Giao diện: - + Game List Danh sách game - + Icon Size: Kích cỡ Icon: - - + + None Không có - + Small (24x24) Nhỏ (24x24) - + Large (48x48) Lớn (48x48) - + Row 1 Text: Nội dung dòng 1: - - + + File Name Tên tập tin - - + + Full Path Đường dẫn đầy đủ - - + + Title Name (short) Tiêu đề (ngắn) - - + + Title ID ID tiêu đề - - + + Title Name (long) Tiêu đề (dài) - + Row 2 Text: Nội dung dòng 2: - + Hide Titles without Icon Ẩn tiêu đề giữ Icon - + Single Line Mode Chế độ đơn dòng - + <System> <System> - + English Tiếng Anh @@ -3586,135 +3586,135 @@ Drag points to change position, or double-click table cells to edit values. ConfigureWeb - + Form Định dạng - + Citra Web Service Dịch vụ Web Citra - + By providing your username and token, you agree to allow Citra to collect additional usage data, which may include user identifying information. Bằng việc cung cấp tên tài khoản và token, bạn đã cho phép Citra thu thập các thông tin liên quan đến giả lập, cũng như bao gồm các thông tin định danh người dùng. - - + + Verify Xác thực - + Sign up Đăng ký - + Token: Token: - + Username: Tên người dùng: - + What is my token? Token của tôi là gì? - + Web Service configuration can only be changed when a public room isn't being hosted. Thiết lập cho Dịch vụ web chỉ thay đổi được khi đang không tổ chức phòng công khai nào. - + Telemetry Theo dõi từ xa - + Share anonymous usage data with the Citra team Gửi các dữ liệu sử dụng nặc danh cho đội ngũ Citra - + Learn more Tìm hiểu thêm - + Telemetry ID: Mã theo dõi: - + Regenerate Tạo mới - + Discord Presence - + Show Current Game in your Discord Status Hiển thị game đang chơi trên trạng thái Discord - + <a href='https://citra-emu.org/entry/telemetry-and-why-thats-a-good-thing/'><span style="text-decoration: underline; color:#039be5;">Learn more</span></a> <a href='https://citra-emu.org/entry/telemetry-and-why-thats-a-good-thing/'><span style="text-decoration: underline; color:#039be5;">Tìm hiểu thêm</span></a> - + <a href='https://profile.citra-emu.org/'><span style="text-decoration: underline; color:#039be5;">Sign up</span></a> <a href='https://profile.citra-emu.org/'><span style="text-decoration: underline; color:#039be5;">Đăng ký</span></a> - + <a href='https://citra-emu.org/wiki/citra-web-service/'><span style="text-decoration: underline; color:#039be5;">What is my token?</span></a> <a href='https://citra-emu.org/wiki/citra-web-service/'><span style="text-decoration: underline; color:#039be5;">Token là gì?</span></a> - - + + Unspecified Chưa định nghĩa - - + + Telemetry ID: 0x%1 Mã theo dõi: 0x%1 - + Token not verified Token không được xác thực - + Token was not verified. The change to your token has not been saved. Token này chưa được xác thực. Thay đổi về token chưa được lưu. - + Verifying... Đang xác thực... - + Verification failed Xác thực thất bại - + Verification failed. Check that you have entered your token correctly, and that your internet connection is working. Xác thực thất bại. Vui lòng kiểm tra token đã nhập vào là đúng, và hiện thiết bị đang kết nối đến mạng. @@ -3722,47 +3722,47 @@ Drag points to change position, or double-click table cells to edit values. DirectConnect - + Direct Connect Kết nối trực tiếp - + Server Address - + <html><head/><body><p>Server address of the host</p></body></html> - + Port Cổng - + <html><head/><body><p>Port number the host is listening on</p></body></html> <html><head/><body><p>Máy chủ này đang lắng nghe trên cổng</p></body></html> - + 24872 24872 - + Nickname Nickname - + Password Mật khẩu - + Connect Kết nối @@ -3770,12 +3770,12 @@ Drag points to change position, or double-click table cells to edit values. DirectConnectWindow - + Connecting Đang kết nối - + Connect Kết nối @@ -3783,110 +3783,110 @@ Drag points to change position, or double-click table cells to edit values. DumpingDialog - + Dump Video Trích xuất video - + Output - + Format: - - - + + + Options: - - - - + + + + ... - + Path: - + Video - - + + Encoder: - - + + Bitrate: - - + + bps - + Audio - - + + Citra - + Please specify the output path. - + output formats - + video encoders - + audio encoders - + Could not find any available %1. Please check your FFmpeg installation used for compilation. - - - - + + + + %1 (%2) - + Select Video Output Path @@ -3894,418 +3894,418 @@ Please check your FFmpeg installation used for compilation. GMainWindow - + <a href='https://citra-emu.org/entry/telemetry-and-why-thats-a-good-thing/'>Anonymous data is collected</a> to help improve Citra. <br/><br/>Would you like to share your usage data with us? <a href='https://citra-emu.org/entry/telemetry-and-why-thats-a-good-thing/'>Dữ liệu ẩn danh được thu thập</a> để giúp cải thiện Citra. <br/><br/>Bạn có muốn chia sẻ dữ liệu của bạn với chúng tôi? - + Telemetry Theo dõi từ xa - + No Suitable Vulkan Devices Detected - + Vulkan initialization failed during boot.<br/>Your GPU may not support Vulkan 1.1, or you do not have the latest graphics driver. - - + + Current emulation speed. Values higher or lower than 100% indicate emulation is running faster or slower than a 3DS. Tốc độ giả lập hiện tại. Giá trị cao hoặc thấp hơn 100% thể hiện giả lập đang chạy nhanh hay chậm hơn một chiếc máy 3DS thực sự. - - + + How many frames per second the game is currently displaying. This will vary from game to game and scene to scene. Tốc độ khung hình thực trong game. Nó sẽ thay đổi tùy game và tùy màn chơi. - - + + Time taken to emulate a 3DS frame, not counting framelimiting or v-sync. For full-speed emulation this should be at most 16.67 ms. Thời gian để giả lập một khung hình của máy 3DS, không gồm giới hạn khung hay v-sync Một giả lập tốt nhất sẽ tiệm cận 16.67 ms. - + Clear Recent Files Xóa danh sách tệp gần đây - + &Continue - + &Pause - + Update Available Cập nhật khả dụng - + An update is available. Would you like to install it now? Một bản cập nhật mới đã sẵn sàng. Bạn có muốn cài đặt ngay bây giờ không? - + No Update Found Chưa tìm thấy bản cập nhật mới - + No update is found. Chưa tìm thấy bản cập nhật mới - + Citra is running a game TRANSLATORS: This string is shown to the user to explain why Citra needs to prevent the computer from sleeping - - + + Invalid ROM Format Định dạng ROM không hợp lệ - - + + Your ROM format is not supported.<br/>Please follow the guides to redump your <a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>game cartridges</a> or <a href='https://citra-emu.org/wiki/dumping-installed-titles/'>installed titles</a>. Định dạng ROM của bạn không được hỗ trợ.<br/>Vui lòng làm theo hướng dẫn để trích xuất dữ liệu từ<a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>thẻ game</a> hoặc <a href='https://citra-emu.org/wiki/dumping-installed-titles/'>titles đã cài đặt</a>. - + ROM Corrupted ROM hỏng - + Your ROM is corrupted. <br/>Please follow the guides to redump your <a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>game cartridges</a> or <a href='https://citra-emu.org/wiki/dumping-installed-titles/'>installed titles</a>. ROM của bạn đã bị hỏng. <br/>Vui lòng thực hiện theo hướng dẫn đển trích xuát dữ liệu từ <a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>thẻ game</a> hoặc <a href='https://citra-emu.org/wiki/dumping-installed-titles/'>game eShop</a>. - + ROM Encrypted ROM được mã hóa - + Your ROM is encrypted. <br/>Please follow the guides to redump your <a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>game cartridges</a> or <a href='https://citra-emu.org/wiki/dumping-installed-titles/'>installed titles</a>. ROM của bạn được mã hóa. <br/>Vui lòng thực hiện theo hướng dẫn để trích xuất dữ liệu từ <a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>thẻ game</a> hoặc <a href='https://citra-emu.org/wiki/dumping-installed-titles/'>game eShop</a>. - + Unsupported ROM - + GBA Virtual Console ROMs are not supported by Citra. - + Error while loading ROM! Lỗi xuất hiện khi tải ROM! - + An unknown error occurred. Please see the log for more details. - + CIA must be installed before usage CIA cần được cài đặt trước khi dùng - + Before using this CIA, you must install it. Do you want to install it now? Trước khi sử dụng CIA, bạn cần cài đặt nó. Bạn có muốn cài đặt nó ngay không? - - + + Slot %1 - + Slot %1 - %2 %3 - + Error Opening %1 Folder Lỗi khi mở thư mục %1 - - + + Folder does not exist! Thư mục này không tồn tại! - + Dumping... Đang trích xuất... - - + + Cancel - - - - - - - - - + + + + + + + + + Citra Citra - + Could not dump base RomFS. Refer to the log for details. Không thể trích xuất base RomFS. Kiểm tra log để biết thêm chi tiết. - + Error Opening %1 Lỗi khi mở %1 - + Select Directory Chọn thư mục - + Properties - + The game properties could not be loaded. - + 3DS Executable (%1);;All Files (*.*) %1 is an identifier for the 3DS executable file extensions. - + Load File Mở tệp tin - + Load Files Mở các tệp tin - + 3DS Installation File (*.CIA*) Tệp cài đặt 3DS (*.CIA*) - + All Files (*.*) Tất cả tệp tin (*.*) - + %1 has been installed successfully. %1 đã được cài đặt thành công. - + Unable to open File Không thể mở tệp tin - + Could not open %1 Không thể mở %1 - + Installation aborted Việc cài đặt đã bị hoãn - + The installation of %1 was aborted. Please see the log for more details Việc cài đặt %1 đã bị hoãn. Vui lòng xem bản ghi nhật ký để biết thêm chi tiết. - + Invalid File Tệp tin không hợp lệ - + %1 is not a valid CIA %1 không phải là một tệp CIA hợp lệ - + Encrypted File Tệp đã bị mã hóa - + %1 must be decrypted before being used with Citra. A real 3DS is required. %1 cần được giải nén trước khi dùng với Citra. Điều này cần đến một máy 3DS thực sự. - + Unable to find File - + Could not find %1 - + Uninstalling '%1'... - + Failed to uninstall '%1'. - + Successfully uninstalled '%1'. - + File not found Không tìm thấy tệp - + File "%1" not found Không tìm thấy tệp tin "%1" - + Missing Citra Account Mất tài khoản Citra - + You must link your Citra account to submit test cases.<br/>Go to Emulation &gt; Configure... &gt; Web to do so. Bạn phải kết nối với tài khoản Citra của bạn để gửi mẫu thử.<br/>Vào Giả lập &gt; Cấu hình... &gt; Web để kết nối. - + Savestates - + Warning: Savestates are NOT a replacement for in-game saves, and are not meant to be reliable. Use at your own risk! - - - + + + Error opening amiibo data file - + A tag is already in use. - + Game is not looking for amiibos. Game hiện không tìm kiếm amiibos. - + Amiibo File (%1);; All Files (*.*) Tệp Amiibo (%1);; Tất cả tệp (*.*) - + Load Amiibo Tải Amiibo - + Unable to open amiibo file "%1" for reading. - + Record Movie Quay phim - + Movie recording cancelled. Ghi hình đã bị hủy. - - + + Movie Saved Đã lưu phim. - - + + The movie is successfully saved. Phim đã được lưu lại thành công. - + Invalid Screenshot Directory - + Cannot create specified screenshot directory. Screenshot path is set back to its default value. - + Could not load video dumper - + FFmpeg could not be loaded. Make sure you have a compatible version installed. To install FFmpeg to Citra, press Open and select your FFmpeg directory. @@ -4314,158 +4314,158 @@ To view a guide on how to install FFmpeg, press Help. - + Select FFmpeg Directory - + The provided FFmpeg directory is missing %1. Please make sure the correct directory was selected. - + FFmpeg has been sucessfully installed. - + Installation of FFmpeg failed. Check the log file for details. - + Could not start video dumping.<br>Refer to the log for details. Không thể bắt đầu trích xuất video.<br>Kiểm tra log để biết thêm chi tiết. - + Recording %1 - + Playing %1 / %2 - + Movie Finished - + Speed: %1% Tốc độ: %1% - + Speed: %1% / %2% Tốc độ: %1% / %2% - + Game: %1 FPS Game: %1 FPS - + Frame: %1 ms Khung: %1 ms - + VOLUME: MUTE - + VOLUME: %1% Volume percentage (e.g. 50%) - + %1 is missing. Please <a href='https://citra-emu.org/wiki/dumping-system-archives-and-the-shared-fonts-from-a-3ds-console/'>dump your system archives</a>.<br/>Continuing emulation may result in crashes and bugs. %1 bị thiếu. Vui lòng <a href='https://citra-emu.org/wiki/dumping-system-archives-and-the-shared-fonts-from-a-3ds-console/'>trích xuất các tệp hệ thống của bạn</a>.<br/>Nếu chạy tiếp giả lập có thể gặp sự cố hoặc lỗi. - + A system archive Một tập tin hệ thống - + System Archive Not Found Không tìm thấy tập tin hệ thống - + System Archive Missing Thiếu tập tin hệ thống - + Save/load Error - + Fatal Error Lỗi nghiêm trọng - + A fatal error occurred. <a href='https://community.citra-emu.org/t/how-to-upload-the-log-file/296'>Check the log</a> for details.<br/>Continuing emulation may result in crashes and bugs. - + Fatal Error encountered - + Continue Tiếp tục - + Quit Game - + OK OK - + Would you like to exit now? Bạn có muốn thoát ngay bây giờ không? - + The game is still running. Would you like to stop emulation? Trò chơi vẫn đang chạy. Bạn có muốn dừng không? - + Playback Completed Phát lại hoàn tất - + Movie playback completed. Phát lại phim hoàn tất. - + Primary Window - + Secondary Window @@ -4473,22 +4473,22 @@ To view a guide on how to install FFmpeg, press Help. GPUCommandListModel - + Command Name Tên câu lệnh - + Register Đăng ký - + Mask Mask - + New Value Giá trị mới @@ -4496,23 +4496,23 @@ To view a guide on how to install FFmpeg, press Help. GPUCommandListWidget - + Pica Command List Danh sách tập lệnh - - + + Start Tracing Bắt đầu truy vết - + Copy All Chép toàn bộ - + Finish Tracing Kết thúc truy vết @@ -4520,7 +4520,7 @@ To view a guide on how to install FFmpeg, press Help. GPUCommandStreamWidget - + Graphics Debugger Trình sửa lỗi đồ họa @@ -4528,42 +4528,42 @@ To view a guide on how to install FFmpeg, press Help. GRenderWindow - + OpenGL not available! - + OpenGL shared contexts are not supported. - + Error while initializing OpenGL! - + Your GPU may not support OpenGL, or you do not have the latest graphics driver. - + Error while initializing OpenGL 4.3! - + Your GPU may not support OpenGL 4.3, or you do not have the latest graphics driver.<br><br>GL Renderer:<br>%1 - + Error while initializing OpenGL ES 3.2! - + Your GPU may not support OpenGL ES 3.2, or you do not have the latest graphics driver.<br><br>GL Renderer:<br>%1 @@ -4571,193 +4571,193 @@ To view a guide on how to install FFmpeg, press Help. GameList - - + + Compatibility Tính tương thích - - + + Region Khu vực - - + + File type Loại tệp tin - - + + Size Kích thước - + Open Save Data Location Mở thư mục lưu game - + Open Extra Data Location - + Open Application Location Mở thư mục ứng dụng - + Open Update Data Location Mở thư mục dữ liệu cập nhật - + Open DLC Data Location - + Open Texture Dump Location Mở vị trí trích xuất texture - + Open Custom Texture Location - + Open Mods Location - + Dump RomFS Trích xuất RomFS - + Disk Shader Cache - + Open Shader Cache Location - + Delete OpenGL Shader Cache - + Uninstall - + Everything - + Game - + Update - + DLC - + Navigate to GameDB entry Điều hướng đến GameDB - + Properties - - - - + + + + Citra - + Are you sure you want to completely uninstall '%1'? This will delete the game if installed, as well as any installed updates or DLC. - - + + %1 (Update) - - + + %1 (DLC) - + Are you sure you want to uninstall '%1'? - + Are you sure you want to uninstall the update for '%1'? - + Are you sure you want to uninstall all DLC for '%1'? - + Scan Subfolders Quét thư mục con - + Remove Game Directory Loại bỏ thư mục chứa game - + Move Up - + Move Down - + Open Directory Location Mở thư mục - + Name Tên @@ -4765,80 +4765,80 @@ This will delete the game if installed, as well as any installed updates or DLC. GameListItemCompat - + Perfect Hoàn mỹ - + Game functions flawless with no audio or graphical glitches, all tested functionality works as intended without any workarounds needed. Các chức năng trong game hoạt động trơn tru và không có lỗi nào về âm thanh hay đồ họa. Mọi thành phần hoạt động như mong đợi không lỗi. - + Great Tuyệt vời - + Game functions with minor graphical or audio glitches and is playable from start to finish. May require some workarounds. Các chức năng trong game chạy với vài lỗi nhỏ nhưng có thể chơi được. Có thể cần vài bước thiết lập thêm. - + Okay Ổn - + Game functions with major graphical or audio glitches, but game is playable from start to finish with workarounds. Các chức năng game xuất hiện nhiều lỗi lớn về đồ họa và âm thanh, nhưng có thể chơi được khi thử thiết lập tinh chỉnh hợp lý. - + Bad Kém - + Game functions, but with major graphical or audio glitches. Unable to progress in specific areas due to glitches even with workarounds. - Game chạy được song với lỗi lớn về đồ họa hoặc âm thanh. Không thể chơi đến một tiến độ nhất định vì lỗi + Game chạy được song với lỗi lớn về đồ họa hoặc âm thanh. Không thể chơi đến một tiến độ nhất định vì lỗi kể cả khi tinh chỉnh hay tìm cách tránh. - + Intro/Menu Intro/Menu - + Game is completely unplayable due to major graphical or audio glitches. Unable to progress past the Start Screen. Không thể chơi được do lỗi lớn về âm thanh hoặc đồ họa. Không thể qua được mục Bắt đầu hay giới thiệu. - + Won't Boot Không mở được - + The game crashes when attempting to startup. Trò chơi bị văng ngay khi thử mở. - + Not Tested Chưa thử - + The game has not yet been tested. Chưa có dữ liệu hoặc trò chơi chưa được đánh giá. @@ -4846,7 +4846,7 @@ Screen. GameListPlaceholder - + Double-click to add a new folder to the game list Nhấp đôi chuột để thêm thư mục mới vào danh sách trò chơi @@ -4854,27 +4854,27 @@ Screen. GameListSearchField - + of của - + result kết quả - + results kết quả - + Filter: Bộ lọc: - + Enter pattern to filter Nhập mẫu ký tự để lọc @@ -4882,47 +4882,47 @@ Screen. GameRegion - + Japan - + North America - + Europe - + Australia - + China - + Korea - + Taiwan - + Invalid region - + Region free @@ -4930,23 +4930,23 @@ Screen. GraphicsBreakPointsWidget - + Pica Breakpoints Điểm ngắt - - + + Emulation running Giả lập đang chạy - + Resume Tiếp tục - + Emulation halted at breakpoint Giả lập bị tạm dừng tại điểm ngắt @@ -4954,146 +4954,146 @@ Screen. GraphicsSurfaceWidget - + Pica Surface Viewer Trình xem mặt bằng Pica - + Color Buffer Bộ đệm màu - + Depth Buffer Depth Buffer - + Stencil Buffer Stencil Buffer - + Texture 0 Texture 0 - + Texture 1 Texture 1 - + Texture 2 Texture 2 - + Custom Tự chọn - + Unknown Không rõ - + Save Lưu - + Source: Nguồn: - + Physical Address: Địa chỉ vật lý: - + Width: Độ rộng: - + Height: Chiều cao: - + Format: Định dạng: - + X: X: - + Y: Y: - + Pixel out of bounds Điểm ảnh nằm ngoài - + (unable to access pixel data) (không thể truy cập dữ liệu điểm ảnh) - + (invalid surface address) (địa chỉ mặt hình không hợp lệ) - + (unknown surface format) (định dạng mặt hình không rõ) - + Portable Network Graphic (*.png) Portable Network Graphic (*.png) - + Binary data (*.bin) Dữ liệu nhị phân (*.bin) - + Save Surface Lưu mặt bằng - - - - + + + + Error Lỗi - - + + Failed to open file '%1' Mở tệp '%1' thất bại - + Failed to save surface data to file '%1' Thất bại khi lưu dữ liệu bề mặt vào tệp '%1' - + Failed to completely write surface data to file. The saved data will likely be corrupt. Không thể ghi dữ liệu bề mặt vào tệp tin. Dữ liệu đã lưu có thể sẽ bị hỏng. @@ -5101,42 +5101,42 @@ Screen. GraphicsTracingWidget - + CiTrace Recorder CiTrace Recorder - + Start Recording Bắt đầu ghi hình - + Stop and Save Dừng và lưu - + Abort Recording Hoãn ghi hình - + Save CiTrace Lưu CiTrace - + CiTrace File (*.ctf) CiTrace File (*.ctf) - + CiTracing still active CiTracing vẫn đang kích hoạt - + A CiTrace is still being recorded. Do you want to save it? If not, all recorded data will be discarded. Giám sát CiTrace vẫn đang được ghi. Bạn có muốn lưu lại? Nếu không, dữ liệu theo dõi sẽ bị hủy bỏ. @@ -5144,17 +5144,17 @@ Screen. GraphicsVertexShaderModel - + Offset Offset - + Raw Raw - + Disassembly Disassembly @@ -5162,127 +5162,127 @@ Screen. GraphicsVertexShaderWidget - + Save Shader Dump Lưu trích xuất shader - + Shader Binary (*.shbin) Shader Binary (*.shbin) - + Pica Vertex Shader - + (data only available at vertex shader invocation breakpoints) (dữ liệu chỉ bắt đầu từ các breakpoint của vertex shader) - + Dump Trích xuất - + Input Data Dữ liệu vào - + Attribute %1 Attribute %1 - + Cycle Index: Cycle Index: - + SRC1: %1, %2, %3, %4 SRC1: %1, %2, %3, %4 - + SRC2: %1, %2, %3, %4 SRC2: %1, %2, %3, %4 - + SRC3: %1, %2, %3, %4 SRC3: %1, %2, %3, %4 - + DEST_IN: %1, %2, %3, %4 DEST_IN: %1, %2, %3, %4 - + DEST_OUT: %1, %2, %3, %4 DEST_OUT: %1, %2, %3, %4 - + Address Registers: %1, %2 Địa chỉ đăng ký: %1, %2 - + Compare Result: %1, %2 So sánh kết quả: %1, %2 - + Static Condition: %1 Điều kiện cứng: %1 - + Dynamic Conditions: %1, %2 Điều kiện biến: %1, %2 - + Loop Parameters: %1 (repeats), %2 (initializer), %3 (increment), %4 Các tham số lặp: %1 (số lần lặp), %2 (biến khởi tạo), %3 (độ tăng), %4 - + Instruction offset: 0x%1 Instruction offset: 0x%1 - + -> 0x%2 -> 0x%2 - + (last instruction) (chỉ thị cuối cùng) @@ -5290,67 +5290,67 @@ Screen. HostRoom - + Create Room Tạo phòng - + Room Name Tên phòng - + Preferred Game Game khuyến nghị - + Max Players Số người tối đa - + Username Tên người dùng - + (Leave blank for open game) (Bỏ trống nếu phòng không có mật khẩu) - + Password Mật khẩu - + Port Cổng - + Room Description Mô tả phòng - + Load Previous Ban List Tải danh sách chặn trước đó - + Public Công khai - + Unlisted Ẩn danh - + Host Room Tạo phòng @@ -5358,12 +5358,12 @@ Screen. HostRoomWindow - + Error Lỗi - + Failed to announce the room to the public lobby. In order to host a room publicly, you must have a valid Citra account configured in Emulation -> Configure -> Web. If you do not want to publish a room in the public lobby, then select Unlisted instead. Debug Message: Công bố phòng công khai trong sảnh thất bại. Để tổ chức phòng công khai, bạn cần phải có một tài khoản Citra hợp lệ tại Giả lập -> Cấu hình -> Web. Nếu không muốn công khai phòng trong sảnh, hãy chọn mục Không công khai. @@ -5373,47 +5373,47 @@ Tin nhắn gỡ lỗi: IPCRecorder - + IPC Recorder - + Enable Recording Mở ghi hình - + Filter: Bộ lọc: - + Leave empty to disable filtering Để trống để vô hiệu bộ lọc - + # # - + Status Trạng thái - + Service Dịch vụ - + Function Chức năng - + Clear Xóa trắng @@ -5421,47 +5421,47 @@ Tin nhắn gỡ lỗi: IPCRecorderWidget - + Invalid Không hợp lệ - + Sent Đã gửi - + Handling - + Success Thành công - + Error Lỗi - + HLE Unimplemented - + HLE HLE - + LLE LLE - + Unknown Không rõ @@ -5469,7 +5469,7 @@ Tin nhắn gỡ lỗi: LLEServiceModulesWidget - + Toggle LLE Service Modules Bật / Tắt các Module Dịch vụ LLE @@ -5477,53 +5477,53 @@ Tin nhắn gỡ lỗi: LoadingScreen - + Loading Shaders 387 / 1628 - + Loading Shaders %v out of %m - + Estimated Time 5m 4s - + Loading... Đang tải... - + Preloading Textures %1 / %2 - + Preparing Shaders %1 / %2 - + Loading Shaders %1 / %2 - + Launching... - + Now Loading %1 - + Estimated Time %1 @@ -5531,83 +5531,83 @@ Tin nhắn gỡ lỗi: Lobby - + Public Room Browser Tìm phòng - - + + Nickname Nickname - + Filters Bộ lọc - + Search Tìm - + Games I Own Game tôi có - + Hide Empty Rooms - + Hide Full Rooms Ẩn các phòng đã đầy - + Refresh Lobby Làm mới - + Password Required to Join Yêu cầu có mật khẩu để vào - + Password: Mật khẩu phòng: - + Room Name Tên phòng - + Preferred Game Game khuyến nghị - + Host Host - + Players Số người - + Refreshing Đang tải - + Refresh List Làm mới @@ -5615,362 +5615,362 @@ Tin nhắn gỡ lỗi: MainWindow - + Citra Citra - + &File &Tệp tin - + Boot Home Menu - + Recent Files Tệp tin gần đây - + Amiibo Amiibo - + &Emulation &Giả lập - + Save State - + Load State - + &View &Hiển thị - + Debugging Đang sửa lỗi - + Screen Layout Bố trí màn hình - + Multiplayer Multiplayer - + Tools Công cụ - + Movie Phim - + Frame Advance - + &Help &Trợ giúp - + Load File... Mở tệp tin... - + Install CIA... Cài đặt CIA... - + JPN - + USA - + EUR - + AUS - + CHN - + KOR - + TWN - + E&xit Thoát (&X) - + &Pause Tạm &dừng - + &Stop &Dừng - + Save - + Load - + FAQ FAQ - + About Citra Về Citra - + Single Window Mode Chế độ đơn cửa sổ - + Save to Oldest Slot - + Load from Newest Slot - + Configure... Cấu hình... - + Display Dock Widget Headers Hiển thị thanh Dock - + Show Filter Bar Hiển thị thanh tìm kiếm - + Show Status Bar Hiển thị trạng thái - + Create Pica Surface Viewer Tạo trình xem mặt bằng Pica - + Record... - + Play... - + Close - + Save without Closing - + Read-Only Mode - + Enable Frame Advancing - + Advance Frame - + Capture Screenshot Chụp màn hình - + Dump Video Trích xuất video - + Browse Public Game Lobby Tìm phòng kết nối - + Create Room Tạo phòng - + Leave Room Rời phòng - + Direct Connect to Room Kết nối trực tiếp đến phòng - + Show Current Room Xem phòng hiện tại - + Fullscreen Toàn màn hình - + Modify Citra Install Thay đổi cài đặt Citra - + Opens the maintenance tool to modify your Citra installation Mở công cụ bảo trì để thay đổi cài đặt của Citra - + Default Mặc định - + Single Screen Đơn màn hình - + Large Screen Màn hình lớn - + Hybrid Screen - + Side by Side Nằm kề nhau - + Separate Windows - + Swap Screens Đổi vị trí màn hình - + Rotate Upright - + Check for Updates Kiểm tra cập nhật - + Report Compatibility Gửi báo cáo tính tương thích - + Restart Khởi động lại - + Load... Tải... - + Remove Xóa - + Open Citra Folder Mở thư mục Citra - + Configure Current Game... Cấu hình game hiện tại... @@ -5978,7 +5978,7 @@ Tin nhắn gỡ lỗi: MicroProfileDialog - + MicroProfile MicroProfile @@ -5986,48 +5986,48 @@ Tin nhắn gỡ lỗi: ModerationDialog - + Moderation Quản trị - + Ban List Danh sách chặn - - + + Refreshing Đang làm mới - + Unban Bỏ chặn - + Subject Chủ đề - + Type Loại - + Forum Username Tài khoản diễn đàn - + IP Address Địa chỉ IP - + Refresh Làm mới @@ -6035,91 +6035,91 @@ Tin nhắn gỡ lỗi: MoviePlayDialog - - + + Play Movie - + File: - + ... - + Info - + Game: - + Author: - + Rerecord Count: - + Length: - + Current running game will be stopped. - + <br>Current recording will be discarded. - + Citra TAS Movie (*.ctm) - + Invalid movie file. - + Revision dismatch, playback may desync. - + Indicated length is incorrect, file may be corrupted. - - - - + + + + (unknown) - + Game used in this movie is not in game list. - + (>1 day) @@ -6127,43 +6127,43 @@ Tin nhắn gỡ lỗi: MovieRecordDialog - - + + Record Movie - + File: - + ... - + Author: - + Current running game will be restarted. - + <br>Current recording will be discarded. - + Recording will start once you boot a game. - + Citra TAS Movie (*.ctm) @@ -6171,44 +6171,44 @@ Tin nhắn gỡ lỗi: MultiplayerState - - + + Current connection status Trạng thái kết nối hiện tại - - + + Not Connected. Click here to find a room! Chưa kết nối. Nhấp vào đây để tìm phòng! - - - + + + Connected Đã kết nối - - + + Not Connected Chưa kết nối - + Error Lỗi - + Failed to update the room information. Please check your Internet connection and try hosting the room again. Debug Message: Cập nhật thông tin phòng thất bại. Vui lòng kiểm tra kết nối mạng và thử khởi tạo lại. Debug Message: - + New Messages Received Đã nhận được tin mới @@ -6216,22 +6216,22 @@ Debug Message: NetworkMessage - + Leave Room Rời phòng - + You are about to close the room. Any network connections will be closed. Bạn đang chuẩn bị đóng phòng. Các kết nối đến phòng này cũng sẽ bị đóng theo. - + Disconnect Ngắt kết nối - + You are about to leave the room. Any network connections will be closed. Bạn đang chuẩn bị rời phòng. Các kết nối liên quan sẽ bị đóng. @@ -6239,110 +6239,110 @@ Debug Message: NetworkMessage::ErrorManager - + Username is not valid. Must be 4 to 20 alphanumeric characters. - + Room name is not valid. Must be 4 to 20 alphanumeric characters. - + Username is already in use or not valid. Please choose another. - + IP is not a valid IPv4 address. - + Port must be a number between 0 to 65535. - + You must choose a Preferred Game to host a room. If you do not have any games in your game list yet, add a game folder by clicking on the plus icon in the game list. - + Unable to find an internet connection. Check your internet settings. - + Unable to connect to the host. Verify that the connection settings are correct. If you still cannot connect, contact the room host and verify that the host is properly configured with the external port forwarded. - + Unable to connect to the room because it is already full. - + Creating a room failed. Please retry. Restarting Citra might be necessary. - + The host of the room has banned you. Speak with the host to unban you or try a different room. - + Version mismatch! Please update to the latest version of Citra. If the problem persists, contact the room host and ask them to update the server. - + Incorrect password. - + An unknown error occurred. If this error continues to occur, please open an issue - + Connection to room lost. Try to reconnect. - + You have been kicked by the room host. - + MAC address is already in use. Please choose another. - + Your Console ID conflicted with someone else's in the room. Please go to Emulation > Configure > System to regenerate your Console ID. - + You do not have enough permission to perform this action. - + The user you are trying to kick/ban could not be found. They may have left the room. - + Error @@ -6350,37 +6350,37 @@ They may have left the room. OptionSetDialog - + Options - + Unset - + unknown - + %1 &lt;%2> %3 - + Range: %1 - %2 - + custom - + %1 (0x%2) %3 @@ -6388,32 +6388,32 @@ They may have left the room. OptionsDialog - + Options - + Double click to see the description and change the values of the options. - + Specific - + Generic - + Name - + Value @@ -6421,157 +6421,157 @@ They may have left the room. QObject - + Supported image files (%1) Các tệp ảnh được hỗ trợ (%1) - + Open File Mở tệp tin - + Error Lỗi - + Couldn't load the camera Không thể tải máy ảnh - + Couldn't load %1 Không thể mở %1 - - + + Shift Shift - - + + Ctrl Ctrl - - + + Alt Alt - - - + + + [not set] [chưa cài đặt] - - + + Hat %1 %2 - - - - - - + + + + + + Axis %1%2 - - + + Button %1 - + GC Axis %1%2 - + GC Button %1 - - - + + + [unknown] [không rõ] - + [unused] [chưa được dùng] - + auto - + true - + false - - + + none - + %1 (0x%2) - + Invalid region Vùng không hợp lệ - + Installed Titles Các tiêu đề đã cài - + System Titles Các tiêu đề hệ thống - + Add New Game Directory Thêm thư mục chứa game mới - + Not playing a game Đang không chơi game - + %1 is not playing a game %1 đang không chơi game - + %1 is playing %2 %1 đang chơi %2 @@ -6579,7 +6579,7 @@ They may have left the room. QtKeyboard - + Software Keyboard Bàn phím mềm @@ -6587,27 +6587,27 @@ They may have left the room. QtKeyboardDialog - + Text length is not correct (should be %1 characters) Độ dài đoạn văn bản không đúng (phải là %1 ký tự) - + Text is too long (should be no more than %1 characters) Văn bản quá dài (tối đa %1 ký tự) - + Blank input is not allowed Không được phép nhập khoảng trắng - + Empty input is not allowed Không được để trống - + Validation error Lỗi xác nhận @@ -6615,12 +6615,12 @@ They may have left the room. QtMiiSelectorDialog - + Mii Selector - + Standard Mii @@ -6628,95 +6628,95 @@ They may have left the room. RecordDialog - + View Record Xem bản ghi - + Client - - + + Process: - - + + Thread: - - + + Session: - + Server Máy chủ - + General Chung - + Client Port: Cổng mạng: - + Service: Dịch vụ: - + Function: Chức năng: - + Command Buffer - + Select: - + Request Untranslated - + Request Translated - + Reply Untranslated - + Reply Translated - + OK OK - + null null @@ -6724,37 +6724,37 @@ They may have left the room. RegistersWidget - + Registers Đăng ký - + VFP Registers VFP Registers - + VFP System Registers VFP System Registers - + Vector Length Độ dài vector - + Vector Stride Bước đi vector - + Rounding Mode Rounding Mode - + Vector Iteration Count Số lần lặp vector @@ -6762,7 +6762,7 @@ They may have left the room. SequenceDialog - + Enter a hotkey Nhập một phím tắt @@ -6770,7 +6770,7 @@ They may have left the room. WaitTreeEvent - + reset type = %1 reset type = %1 @@ -6778,12 +6778,12 @@ They may have left the room. WaitTreeMutex - + locked %1 times by thread: bị khóa %1 lần bởi luồng: - + free giải phóng @@ -6791,7 +6791,7 @@ They may have left the room. WaitTreeMutexList - + holding mutexes giữ các mutex @@ -6799,12 +6799,12 @@ They may have left the room. WaitTreeObjectList - + waiting for all objects đang đợi các đối tượng - + waiting for one of the following objects đang đợi một trong các đối tượng sau @@ -6812,12 +6812,12 @@ They may have left the room. WaitTreeSemaphore - + available count = %1 sẵn có = %1 - + max count = %1 tối đa = %1 @@ -6825,112 +6825,112 @@ They may have left the room. WaitTreeThread - + running đang chạy - + ready sẵn sàng - + waiting for address 0x%1 đang đợi địa chỉ 0x%1 - + sleeping đang ngủ - + waiting for IPC response đang đợi phản hồi IPC - + waiting for objects đang đợi các đối tượng - + waiting for HLE return đang đợi HLE return - + dormant không hoạt động - + dead đã chết - + PC = 0x%1 LR = 0x%2 PC = 0x%1 LR = 0x%2 - + default mặc định - + all tất cả - + AppCore AppCore - + SysCore SysCore - + Unknown processor %1 Không xác định vi xử lý %1 - + object id = %1 - + processor = %1 vi xử lý = %1 - + thread id = %1 id luồng = %1 - + process = %1 (%2) - + priority = %1(current) / %2(normal) ưu tiên = %1(current) / %2(normal) - + last running ticks = %1 tick chạy cuối cùng = %1 - + not holding mutex không giữ mutex @@ -6938,7 +6938,7 @@ They may have left the room. WaitTreeThreadList - + waited by thread được đợi bởi luồng @@ -6946,17 +6946,17 @@ They may have left the room. WaitTreeTimer - + reset type = %1 kiểu reset = %1 - + initial delay = %1 độ trễ ban đầu = %1 - + interval delay = %1 độ trễ trong = %1 @@ -6964,27 +6964,27 @@ They may have left the room. WaitTreeWaitObject - + [%1]%2 %3 [%1]%2 %3 - + waited by no thread không có luồng nào chờ - + one shot one shot - + sticky sticky - + pulse pulse @@ -6992,7 +6992,7 @@ They may have left the room. WaitTreeWidget - + Wait Tree Wait Tree diff --git a/dist/languages/zh_CN.ts b/dist/languages/zh_CN.ts index bd513f7cd..885b304c3 100644 --- a/dist/languages/zh_CN.ts +++ b/dist/languages/zh_CN.ts @@ -2,17 +2,17 @@ ARMRegisters - + ARM Registers ARM 寄存器 - + Register 寄存器 - + Value @@ -20,27 +20,27 @@ AboutDialog - + About Citra 关于 Citra - - <html><head/><body><p><img src=":/icons/citra.png"/></p></body></html> - <html><head/><body><p><img src=":/icons/citra.png"/></p></body></html> + + <html><head/><body><p><img src=":/icons/lime.png"/></p></body></html> + <html><head/><body><p><img src=":/icons/lime.png"/></p></body></html> - + <html><head/><body><p><span style=" font-size:28pt;">Citra</span></p></body></html> <html><head/><body><p><span style=" font-size:28pt;">Citra</span></p></body></html> - + <html><head/><body><p>%1 | %2-%3 (%4)</p></body></html> <html><head/><body><p>%1 | %2-%3 (%4)</p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -57,12 +57,12 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">这个软件不应该用来运行非法取得的游戏。</span></p></body></html> - + <html><head/><body><p><a href="https://citra-emu.org/"><span style=" text-decoration: underline; color:#039be5;">Website</span></a> | <a href="https://community.citra-emu.org/"><span style=" text-decoration: underline; color:#039be5;">Forum</span></a> | <a href="https://github.com/citra-emu"><span style=" text-decoration: underline; color:#039be5;">Source Code</span></a> | <a href="https://github.com/citra-emu/citra/graphs/contributors"><span style=" text-decoration: underline; color:#039be5;">Contributors</span></a> | <a href="https://github.com/citra-emu/citra/blob/master/license.txt"><span style=" text-decoration: underline; color:#039be5;">License</span></a></p></body></html> <html><head/><body><p><a href="https://citra-emu.org/"><span style=" text-decoration: underline; color:#039be5;">网站</span></a> | <a href="https://community.citra-emu.org/"><span style=" text-decoration: underline; color:#039be5;">论坛</span></a> | <a href="https://github.com/citra-emu"><span style=" text-decoration: underline; color:#039be5;">源代码</span></a> | <a href="https://github.com/citra-emu/citra/graphs/contributors"><span style=" text-decoration: underline; color:#039be5;">贡献者</span></a> | <a href="https://github.com/citra-emu/citra/blob/master/license.txt"><span style=" text-decoration: underline; color:#039be5;">许可证</span></a></p></body></html> - + <html><head/><body><p><span style=" font-size:7pt;">&quot;3DS&quot; is a trademark of Nintendo. Citra is not affiliated with Nintendo in any way.</span></p></body></html> <html><head/><body><p><span style=" font-size:7pt;">“3DS”是任天堂的商标。Citra 与任天堂没有任何关系。</span></p></body></html> @@ -70,47 +70,47 @@ p, li { white-space: pre-wrap; } BreakPointModel - + Pica command loaded 已加载 Pica 命令 - + Pica command processed 已处理 Pica 命令 - + Incoming primitive batch 正传入的原始批处理任务 - + Finished primitive batch 已完成的原始批处理任务 - + Vertex shader invocation 顶点着色器调用 - + Incoming display transfer 正传入的显示调用 - + GSP command processed 已处理的 GSP 命令 - + Buffers swapped 交换缓冲区 - + Unknown debug context event 未知调试上下文的事件 @@ -118,32 +118,32 @@ p, li { white-space: pre-wrap; } CalibrationConfigurationDialog - + Communicating with the server... 正在连接服务器...... - + Cancel 取消 - + Touch the top left corner <br>of your touchpad. 触摸你的触摸板<br>的左上角。 - + Now touch the bottom right corner <br>of your touchpad. 触摸你的触摸板<br>的右下角。 - + Configuration completed! 配置完成! - + OK 确定 @@ -151,93 +151,93 @@ p, li { white-space: pre-wrap; } ChatRoom - + Room Window 房间窗口 - + Send Chat Message 发送聊天消息 - + Send Message 发送信息 - + Members 成员 - + %1 has joined %1 已进入 - + %1 has left %1 已离开 - + %1 has been kicked %1 已被踢出房间 - + %1 has been banned %1 已被封禁 - + %1 has been unbanned %1 已被解封 - + View Profile 查看个人资料 - - + + Block Player 屏蔽玩家 - + When you block a player, you will no longer receive chat messages from them.<br><br>Are you sure you would like to block %1? 屏蔽玩家后,你将不会收到其发送的聊天信息。<br><br>确定要屏蔽 %1 吗? - + Kick 踢出房间 - + Ban 封禁 - + Kick Player 踢出玩家 - + Are you sure you would like to <b>kick</b> %1? 你确定要<b>踢出</b> %1 吗? - + Ban Player 封禁玩家 - + Are you sure you would like to <b>kick and ban</b> %1? This would ban both their forum username and their IP address. @@ -249,22 +249,22 @@ This would ban both their forum username and their IP address. ClientRoom - + Room Window 房间窗口 - + Room Description 房间说明 - + Moderation... 管理... - + Leave Room 离开房间 @@ -272,17 +272,17 @@ This would ban both their forum username and their IP address. ClientRoomWindow - + Connected 已连接 - + Disconnected 已断开连接 - + %1 (%2/%3 members) - connected %1 (%2/%3 人) 已连接 @@ -290,108 +290,108 @@ This would ban both their forum username and their IP address. CompatDB - + Report Compatibility 报告兼容性 - - + + Report Game Compatibility 报告游戏兼容性 - + <html><head/><body><p><span style=" font-size:10pt;">Should you choose to submit a test case to the </span><a href="https://citra-emu.org/game/"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">Citra Compatibility List</span></a><span style=" font-size:10pt;">, The following information will be collected and displayed on the site:</span></p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Hardware Information (CPU / GPU / Operating System)</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Which version of Citra you are running</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The connected Citra account</li></ul></body></html> <html><head/><body><p><span style=" font-size:10pt;">如果您选择向</span><a href="https://citra-emu.org/game/"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">Citra 兼容性列表</span></a><span style=" font-size:10pt;">提交项目的话,以下信息将会被收集并显示在网站上:</span></p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">设备硬件信息 (CPU / GPU / 操作系统)</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">您正在使用的 Citra 版本</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">已关联的 Citra 帐户信息</li></ul></body></html> - + Perfect 完美 - + <html><head/><body><p>Game functions flawlessly with no audio or graphical glitches.</p></body></html> <html><head/><body><p>游戏功能完美,没有音频或图形问题。</p></body></html> - + Great 良好 - + <html><head/><body><p>Game functions with minor graphical or audio glitches and is playable from start to finish. May require some workarounds.</p></body></html> <html><head/><body><p>游戏运行时会有非常轻微的图像或音频问题,但是能从头玩到尾。可能需要一些技巧才能完成游戏。</p></body></html> - + Okay 一般 - + <html><head/><body><p>Game functions with major graphical or audio glitches, but game is playable from start to finish with workarounds.</p></body></html> <html><head/><body><p>游戏运行时会有很多图像或音频错误,但是在使用一些特殊技巧之后能完整地完成游戏。</p></body></html> - + Bad 较差 - + <html><head/><body><p>Game functions, but with major graphical or audio glitches. Unable to progress in specific areas due to glitches even with workarounds.</p></body></html> <html><head/><body><p>游戏能运行,但是会有大量图像或音频错误。即使使用一些技巧也无法通过游戏的某些区域。</p></body></html> - + Intro/Menu 开场 / 菜单 - + <html><head/><body><p>Game is completely unplayable due to major graphical or audio glitches. Unable to progress past the Start Screen.</p></body></html> <html><head/><body><p>游戏完全没法玩,图像或音频有重大错误。通过开场菜单后无法继续。</p></body></html> - + Won't Boot 无法打开 - + <html><head/><body><p>The game crashes when attempting to startup.</p></body></html> <html><head/><body><p>在启动游戏时直接崩溃了。</p></body></html> - + <html><head/><body><p>Independent of speed or performance, how well does this game play from start to finish on this version of Citra?</p></body></html> <html><head/><body><p>在不考虑速度或帧率的情况下,使用此版本 Citra 玩这款游戏的情况如何?</p></body></html> - + Thank you for your submission! 感谢您向我们提交信息! - + Submitting 提交中 - + Communication error 网络错误 - + An error occurred while sending the Testcase 在提交测试用例时发生错误。 - + Next 下一步 @@ -399,93 +399,93 @@ This would ban both their forum username and their IP address. ConfigureAudio - + Output 输出 - + Emulation: 模拟: - + HLE (fast) HLE (快速) - + LLE (accurate) LLE (精确) - + LLE multi-core LLE 多核心 - + Output Type 输出类型 - + Output Device 输出设备 - + This post-processing effect adjusts audio speed to match emulation speed and helps prevent audio stutter. This however increases audio latency. 这种后处理效果可以调整音频速度以匹配模拟速度,并有助于防止音频断断续续。 但是会增加音频延迟。 - + Enable audio stretching 启动音频拉伸 - + Use global volume 使用全局音量 - + Set volume: 音量: - + Volume: 音量: - + 0 % 0 % - + Microphone 麦克风 - + Input Type 输入类型 - + Input Device 输入设备 - - + + Auto 自动 - + %1% Volume percentage (e.g. 50%) %1% @@ -494,203 +494,203 @@ This would ban both their forum username and their IP address. ConfigureCamera - + Form 格式 - + Camera 摄像头 - - + + Select the camera to configure 选择需要配置的摄像头 - + Camera to configure: 要配置的摄像头: - + Front 前置摄像头 - + Rear 后置摄像头 - - + + Select the camera mode (single or double) 选择后置摄像头模式 (2D 或 3D) - + Camera mode: 摄像头模式: - + Single (2D) 单摄像头 (2D) - + Double (3D) 双摄像头 (3D) - - + + Select the position of camera to configure 选择需要配置的摄像头的位置 - + Camera position: 摄像头位置: - + Left 左侧 - + Right 右侧 - + Configuration 配置 - - + + Select where the image of the emulated camera comes from. It may be an image or a real camera. 选择虚拟摄像头图像的来源。这可以是一张图片或一个真实的摄像头。 - + Camera Image Source: 摄像头图像来源: - + Blank (blank) 空白 (blank) - + Still Image (image) 静止图像 (image) - + System Camera (qt) 系统摄像头 (qt) - + File: 图像文件: - + ... ... - - + + Select the system camera to use 选择要使用的系统摄像头 - + Camera: 摄像头: - + <Default> <默认> - - + + Select the image flip to apply 选择图像翻转方式 - + Flip: 翻转: - + None - + Horizontal 水平 - + Vertical 垂直 - + Reverse 反向 - + Select an image file every time before the camera is loaded 在每次加载摄像头之前选择一个图像文件。 - + Prompt before load 在摄像头加载前提示选择图像 - + Preview 预览 - + Resolution: 512*384 分辨率: 512*384 - + Click to preview 点击来预览 - + Resolution: %1*%2 分辨率: %1*%2 - + Supported image files (%1) 支持的图像文件格式 (%1) - + Open File 打开文件 @@ -698,88 +698,88 @@ This would ban both their forum username and their IP address. ConfigureCheats - - + + Cheats 金手指 - + Add Cheat 添加金手指 - + Available Cheats: 可用金手指: - + Name 名称 - + Type 类型 - + Save 保存 - + Delete 删除 - + Name: 名称: - + Notes: 注释: - + Code: 代码: - + Would you like to save the current cheat? 您要保存当前这条金手指吗? - - - + + + Save Cheat 保存金手指 - + Please enter a cheat name. 请为您的金手指输入名称。 - + Please enter the cheat code. 请输入金手指代码。 - + Cheat code line %1 is not valid. Would you like to ignore the error and continue? 金手指代码的第 %1 行是无效的。 您希望忽略错误并且继续吗? - - + + [new cheat] [新金手指] @@ -787,127 +787,127 @@ Would you like to ignore the error and continue? ConfigureDebug - + Form 格式 - + GDB GDB - + Enable GDB Stub 开启 GDB 调试 - + Port: 端口: - + Logging 日志 - + Global Log Filter 全局日志过滤器 - + Show Log Console (Windows Only) 显示日志窗口(仅限 Windows) - + Open Log Location 打开日志位置 - + CPU CPU - + Use global clock speed 使用全局时钟速度 - + Set clock speed: 时钟速度: - + CPU Clock Speed CPU 时钟频率 - + <html><body>Changes the emulated CPU clock frequency.<br>Underclocking can increase performance but may cause the game to freeze.<br>Overclocking may reduce in game lag but also might cause freezes</body></html> <html><body>更改模拟的 CPU 时钟频率。<br>调低频率会提高性能但可能导致游戏崩溃。<br>调高频率可能会减少游戏延迟,但也可能导致崩溃。</body></html> - + <html><head/><body><p>Enables the use of the ARM JIT compiler for emulating the 3DS CPUs. Don't disable unless for debugging purposes</p></body></html> <html><head/><body><p>使用 ARM JIT 编译器来模拟 3DS 的 CPU。除非需要进行调试,否则不要禁用此项</p></body></html> - + Enable CPU JIT 开启 CPU JIT - + Enable debug renderer 启用调试渲染器 - + Dump command buffers 转储命令缓冲区 - + Miscellaneus 杂项 - + <html><head/><body><p>Introduces a delay to the first ever launched app thread if LLE modules are enabled, to allow them to initialize.</p></body></html> <html><head/><body><p>启用 LLE 模块后,对第一个启动的应用线程引入延迟,以允许 LLE 模块初始化。</p></body></html> - + Delay app start for LLE module initialization 延迟启动应用以初始化 LLE 模块 - + <html><head/><body><p>CPU Clock Speed Information<br/>Underclocking can increase performance but may cause the game to freeze.<br/>Overclocking may reduce in game lag but also might cause freezes</p></body></html> <html><head/><body><p>CPU 时钟频率信息<br/>调低频率会提高性能但可能导致游戏崩溃。<br/>调高频率可能会减少游戏延迟,但也可能导致崩溃。</p></body></html> - + Validation layer not available Vulkan 验证层不可用 - + Unable to enable debug renderer because the layer <strong>VK_LAYER_KHRONOS_validation</strong> is missing. Please install the Vulkan SDK or the appropriate package of your distribution 无法启用调试渲染器,因为缺少验证层 <strong>VK_LAYER_KHRONOS_validation</strong>。请安装 Vulkan SDK 或相应的分发包 - + Command buffer dumping not available 命令缓冲区转储不可用 - + Unable to enable command buffer dumping because the layer <strong>VK_LAYER_LUNARG_api_dump</strong> is missing. Please install the Vulkan SDK or the appropriate package of your distribution 无法启用命令缓冲区转储,因为缺少验证层 <strong>VK_LAYER_LUNARG_api_dump</strong>。请安装 Vulkan SDK 或相应的分发包 @@ -915,92 +915,92 @@ Would you like to ignore the error and continue? ConfigureDialog - + Citra Configuration Citra 设置 - - - + + + General 通用 - - - + + + System 系统 - - + + Input 输入 - - + + Hotkeys 热键 - - + + Graphics 图形 - - + + Enhancements 增强性功能 - - - + + + Audio 声音 - - + + Camera 摄像头 - - + + Debug 调试 - - + + Storage 存储 - - + + Web 网络 - - + + UI 界面 - + Controls 控制 - + Advanced 高级选项 @@ -1008,278 +1008,278 @@ Would you like to ignore the error and continue? ConfigureEnhancements - + Form 类型 - + Renderer 渲染器 - + Internal Resolution 内部分辨率 - + Auto (Window Size) 自动 (窗口大小) - + Native (400x240) 原生 (400x240) - + 2x Native (800x480) 2倍 (800x480) - + 3x Native (1200x720) 3倍 (1200x720) - + 4x Native (1600x960) 4倍 (1600x960) - + 5x Native (2000x1200) 5倍 (2000x1200) - + 6x Native (2400x1440) 6倍 (2400x1440) - + 7x Native (2800x1680) 7倍 (2800x1680) - + 8x Native (3200x1920) 8倍 (3200x1920) - + 9x Native (3600x2160) 9倍 (3600x2160) - + 10x Native (4000x2400) 10倍 (4000x2400) - + Enable Linear Filtering 启用线性过滤 - + Post-Processing Shader 后期处理着色器 - + Texture Filter 纹理滤镜 - + None - + Anime4K Anime4K - + Bicubic 双三线过滤 - + ScaleForce 强制缩放 - + xBRZ xBRZ - + MMPX MMPX - + Stereoscopy 画面立体 - + Stereoscopic 3D Mode 立体 3D 模式 - + Off 关闭 - - + + Side by Side 并排屏幕 - + Anaglyph 立体图形 - + Interlaced 交错 - + Reverse Interlaced 逆向交错 - + Depth 画面深度 - + % % - + Eye to Render in Monoscopic Mode 单眼成像模式的渲染视野 - + Left Eye (default) 左视野 (默认) - + Right Eye 右视野 - + Layout 布局 - + Screen Layout: 屏幕布局: - + Default 默认 - + Single Screen 单屏 - + Large Screen 大屏 - + Separate Windows 分离窗口 - + Hybrid Screen 混合式屏幕 - + Swap Screens 交换上下屏 - + Rotate Screens Upright 垂直式画面旋转 - + Large Screen Proportion: 大屏比例: - + Background Color: 背景颜色: - + Utility 工具 - + <html><head/><body><p>Replace textures with PNG files.</p><p>Textures are loaded from load/textures/[Title ID]/.</p></body></html> <html><head/><body><p>使用 PNG 文件进行纹理的替换。</p><p>将于 load/textures/[Title ID]/ 目录下加载纹理文件。</p></body></html> - + Use Custom Textures 使用自定义纹理 - + <html><head/><body><p>Dump textures to PNG files.</p><p>Textures are dumped to dump/textures/[Title ID]/.</p></body></html> <html><head/><body><p>将纹理转储为 PNG 文件。</p><p>转储的文件保存于 dump/textures/[Title ID]/ 目录下。</p></body></html> - + Dump Textures 转储纹理文件 - + <html><head/><body><p>Load all custom textures into memory on boot, instead of loading them when the game requires them.</p></body></html> <html><head/><body><p>游戏启动时将所有的自定义纹理加载到内存中,而不是在需要时才进行加载。</p></body></html> - + Preload Custom Textures 预加载自定义纹理 - + <html><head/><body><p>Load custom textures asynchronously with background threads to reduce loading stutter</p></body></html> <html><head/><body><p>在后台线程中异步加载自定义纹理,以减少加载带来的卡顿</p></body></html> - + Async Custom Texture Loading 异步加载自定义纹理 @@ -1287,136 +1287,136 @@ Would you like to ignore the error and continue? ConfigureGeneral - + Form 格式 - + General 通用 - + Confirm exit while emulation is running 在游戏运行时退出需要确认 - + Pause emulation when in background 模拟器位于后台时暂停模拟 - + Mute audio when in background 模拟器位于后台时静音 - + Hide mouse on inactivity 自动隐藏鼠标光标 - + Enable Gamemode 启用游戏模式 - + Updates 更新 - + Check for updates on start 启动时检查更新 - + Silently auto update after closing 关闭后静默自动更新 - + Emulation 模拟 - + Region: 地区: - + Auto-select 自动选择 - + Use global emulation speed 使用全局模拟速度 - + Set emulation speed: 模拟速度: - + Emulation Speed: 模拟速度: - + Screenshots 截图 - + Use global screenshot path 使用全局截图保存位置 - + Set screenshot path: 截图保存位置: - + Save Screenshots To 将截图保存至 - + ... - + Reset All Settings 重置所有设置 - - - - - + + + + + unthrottled 无限制 - + Select Screenshot Directory 选择截图保存目录 - + Citra Citra - + Are you sure you want to <b>reset your settings</b> and close Citra? 你确定要<b>重置所有设置</b>并关闭 Citra 吗? @@ -1424,157 +1424,157 @@ Would you like to ignore the error and continue? ConfigureGraphics - + Form 格式 - + Graphics 图形 - + API Settings API 设置 - + Graphics API 图形 API - + Software 软件 - + OpenGL OpenGL - + Vulkan Vulkan - + Physical Device 实体设备 - + OpenGL Renderer OpenGL 渲染器 - + SPIR-V Shader Generation SPIR-V 着色器 - + Renderer 渲染器 - + <html><head/><body><p>Use the selected graphics API to accelerate shader emulation.</p><p>Requires a relatively powerful GPU for better performance.</p></body></html> <html><head/><body><p>使用选定的图形 API 加速着色器的模拟。</p><p>需要较强的 GPU 以获得更好的性能。</p></body></html> - + Enable Hardware Shader 开启硬件着色器 - + <html><head/><body><p>Correctly handle all edge cases in multiplication operation in shaders. </p><p>Some games requires this to be enabled for the hardware shader to render properly.</p><p>However this would reduce performance in most games.</p></body></html> <html><head/><body><p>在着色器中,正确处理乘法运算的所有边缘情况。</p><p>有些游戏需要开启这个选项才能正确渲染。</p><p>然而,这会降低大多数游戏的性能。</p></body></html> - + Accurate Multiplication 精确乘法运算 - + <html><head/><body><p>Use the JIT engine instead of the interpreter for software shader emulation. </p><p>Enable this for better performance.</p></body></html> <html><head/><body><p>使用 JIT 引擎代替解释器进行软件着色器模拟。</p><p>启用此功能以获得更好的性能。</p></body></html> - + Enable Shader JIT 开启着色器 JIT - + <html><head/><body><p>Compile shaders using background threads to avoid shader compilation stutter. Expect temporary graphical glitches</p></body></html> <html><head/><body><p>使用后台线程编译着色器以减少卡顿。可能会出现短暂的图形问题</p></body></html> - + Enable Async Shader Compilation 启用异步着色器编译 - + <html><head/><body><p>Perform presentation on separate threads. Improves performance when using Vulkan in most games.</p></body></html> <html><head/><body><p>在单独的线程上执行着色器提交。提升大多数游戏使用 Vulkan 时的性能。</p></body></html> - + Enable Async Presentation 启用异步着色器提交 - + Advanced 高级选项 - + <html><head/><body><p>Overrides the sampling filter used by games. This can be useful in certain cases with poorly behaved games when upscaling. If unsure set this to Game Controlled</p></body></html> <html><head/><body><p>覆盖游戏所使用的采样过滤器。这在高分辨率的情况下提升某些表现不佳的游戏画质时可能很有用。如不确定,请将其设置为“由游戏控制”</p></body></html> - + Texture Sampling 纹理采样 - + Game Controlled 由游戏控制 - + Nearest Neighbor 近邻取样 - + Linear 线性过滤 - + <html><head/><body><p>Reduce stuttering by storing and loading generated shaders to disk.</p></body></html> <html><head/><body><p>将着色器缓存到硬盘并通过加载这些缓存减少游戏的卡顿。</p></body></html> - + Use Disk Shader Cache 启用磁盘着色器缓存 - + VSync prevents the screen from tearing, but some graphics cards have lower performance with VSync enabled. Keep it enabled if you don't notice a performance difference. 垂直同步可防止画面产生撕裂感。但启用垂直同步后,某些设备性能可能会有所降低。如果您没有感到性能差异,请保持启用状态。 - + Enable VSync 启用垂直同步 @@ -1582,63 +1582,63 @@ Would you like to ignore the error and continue? ConfigureHotkeys - + Hotkey Settings 热键设置 - + Double-click on a binding to change it. 双击已绑定的项目以改变设定。 - + Clear All 全部清除 - + Restore Defaults 恢复默认设置 - + Action 作用 - + Hotkey 热键 - - + + Conflicting Key Sequence 按键冲突 - + The entered key sequence is already assigned to: %1 您当前输入的按键已被用于: %1 - + A 3ds button 3ds 按键 - + Restore Default 恢复默认 - + Clear 清除 - + The default key sequence is already assigned to: %1 默认的按键已被用于: %1 @@ -1646,307 +1646,307 @@ Would you like to ignore the error and continue? ConfigureInput - + ConfigureInput 输入设置 - + Profile 自定义设置 - + New 新建 - + Delete 删除 - + Rename 重命名 - + Face Buttons 主要按键 - + Y: Y: - + X: X: - + B: B: - + A: A: - + Directional Pad 十字方向键 - - - + + + Up: 上: - - - + + + Down: 下: - - - + + + Left: 左: - - - + + + Right: 右: - + Misc. 杂项 - + Start: 开始: - + Select: 选择: - + Home: Home: - + Power: 电源键: - + Circle Mod: 轻推摇杆: - + GPIO14: GPIO14: - + Debug: 调试: - + Circle Pad 方向摇杆 - - - + + + Set Analog Stick 设置摇杆 - - + + Deadzone: 0 摇杆死区: 0 - + C-Stick C 摇杆 - + Shoulder Buttons 肩部按键 - + ZR: ZR: - + ZL: ZL: - + L: L: - + R: R: - + Motion / Touch... 体感 / 触摸... - + Auto Map 自动映射 - + Clear All 全部清除 - + Restore Defaults 恢复默认设置 - - - + + + Clear 清除 - - - + + + [not set] [未设置] - - - + + + Restore Default 恢复默认 - - + + Information 信息 - + After pressing OK, first move your joystick horizontally, and then vertically. 在按下确定后,首先水平移动你的手柄,然后垂直移动它。 - - + + Deadzone: %1% 摇杆死区: %1% - - + + Modifier Scale: %1% 摇杆灵敏度: %1% - + Warning 警告 - + Auto mapping failed. Your controller may not have a corresponding mapping 自动映射失败。可能没有与您的手柄相对应的映射方案。 - + After pressing OK, press any button on your joystick 请点击此对话框的“确定”键,然后按下您手柄上的任意按键。 - + [press key] [请按一个键] - + Error! 错误! - + You're using a key that's already bound. 您正在使用的按键已经被其他操作绑定。 - + New Profile 保存自定义设置 - + Enter the name for the new profile. 为新的自定义设置命名 - + Delete Profile 删除自定义设置 - + Delete profile %1? 真的要删除自定义设置 %1 吗? - + Rename Profile 重命名自定义设置 - + New name: 新名称: - + Duplicate profile name 重复的自定义设置名称 - + Profile name already exists. Please choose a different name. 该自定义设置名称已存在。请选择一个其他名称进行命名。 @@ -1954,198 +1954,198 @@ Would you like to ignore the error and continue? ConfigureMotionTouch - + Configure Motion / Touch 体感 / 触摸设置 - + Motion 体感 - + Motion Provider: 体感输入: - + Sensitivity: 灵敏度: - + Controller: 控制器: - - - - - + + + + + Configure 设置 - + Touch 触摸 - + Touch Provider: 触摸输入: - + Calibration: 校准: - + (100, 50) - (1800, 850) (100, 50) - (1800, 850) - + Use button mapping: 按键映射: - + CemuhookUDP Config CemuhookUDP 设置 - + You may use any Cemuhook compatible UDP input source to provide motion and touch input. 您可以使用任何与 Cemuhook 兼容的 UDP 输入源来提供体感和触摸输入。 - + Server: 服务器: - + Port: 端口: - + Pad: Pad: - + Pad 1 Pad 1 - + Pad 2 Pad 2 - + Pad 3 Pad 3 - + Pad 4 Pad 4 - + Learn More 了解更多 - - + + Test 测试 - + Mouse (Right Click) 鼠标(右键) - - + + CemuhookUDP CemuhookUDP - + SDL SDL - + Emulator Window 模拟器窗口 - + <a href='https://citra-emu.org/wiki/using-a-controller-or-android-phone-for-motion-or-touch-input'><span style="text-decoration: underline; color:#039be5;">Learn More</span></a> <a href='https://citra-emu.org/wiki/using-a-controller-or-android-phone-for-motion-or-touch-input'><span style="text-decoration: underline; color:#039be5;">了解更多</span></a> - + Information 信息 - + After pressing OK, press a button on the controller whose motion you want to track. 按下确定后,在您想要使用体感的控制器上按下一个键。 - + [press button] [请按一个键] - + Testing 测试中 - + Configuring 设置中 - + Test Successful 测试成功 - + Successfully received data from the server. 已成功从服务器接收数据。 - + Test Failed 测试失败 - + Could not receive valid data from the server.<br>Please verify that the server is set up correctly and the address and port are correct. 无法从服务器接收数据。<br>请验证服务器是否正在运行,以及地址和端口是否配置正确。 - + Citra Citra - + UDP Test or calibration configuration is in progress.<br>Please wait for them to finish. UDP 测试或触摸校准正在进行中。<br>请等待它们完成。 @@ -2153,97 +2153,97 @@ Would you like to ignore the error and continue? ConfigurePerGame - + Dialog 对话框 - + Info 信息 - + Size 大小 - + Format 格式 - + Name 名称 - + Filepath 文件路径 - + Title ID 游戏 ID - + Reset Game Settings 重置游戏设置 - + Use global configuration (%1) 使用全局设置 (%1) - + General 通用 - + System 系统 - + Enhancements 功能增强 - + Graphics 图形 - + Audio 声音 - + Debug 调试 - + Cheats 金手指 - + Properties 属性 - + Citra Citra - + Are you sure you want to <b>reset your settings for this game</b>? 您确定要<b>重置此游戏的设置吗</b>? @@ -2251,65 +2251,65 @@ Would you like to ignore the error and continue? ConfigureStorage - + Form 类型 - + Storage 存储 - + Use Virtual SD 启用虚拟 SD 卡 - + Custom Storage 自定义存储目录 - + Use Custom Storage 使用自定义存储目录 - + NAND Directory NAND 目录 - - + + Open 打开 - - + + NOTE: This does not move the contents of the previous directory to the new one. 请注意!这不会将先前目录中的内容移动到新目录中。 - - + + Change 更改 - + SDMC Directory SD 卡目录 - + Select NAND Directory 选择 NAND 目录 - + Select SDMC Directory 选择 SD 卡目录 @@ -2317,1064 +2317,1064 @@ Would you like to ignore the error and continue? ConfigureSystem - + Form 格式 - + System Settings 系统设置 - + Enable New 3DS mode 启用 New 3DS 模式 - + Use LLE applets (if installed) 使用 LLE 小程序 (若已安装) - + Username 用户名 - + Birthday 生日 - + January 一月 - + February 二月 - + March 三月 - + April 四月 - + May 五月 - + June 六月 - + July 七月 - + August 八月 - + September 九月 - + October 十月 - + November 十一月 - + December 十二月 - + Language 语言 - + Note: this can be overridden when region setting is auto-select 注意:当“地区”设置是“自动选择”时,此设置可能会被覆盖。 - + Japanese (日本語) 日语 (日本語) - + English 英语 - + French (français) 法语 (Français) - + German (Deutsch) 德语 (Deutsch) - + Italian (italiano) 意大利语 (Italiano) - + Spanish (español) 西班牙语 (Español) - + Simplified Chinese (简体中文) 简体中文 (简体中文) - + Korean (한국어) 朝鲜语 (한국어) - + Dutch (Nederlands) 荷兰语 (Nederlands) - + Portuguese (português) 葡萄牙语 (Português) - + Russian (Русский) 俄语 (Русский) - + Traditional Chinese (正體中文) 繁体中文 (正體中文) - + Sound output mode 声音输出模式 - + Mono 单声道 - + Stereo 立体声 - + Surround 环绕声 - + Country 国家 - + Clock 时钟 - + System Clock 系统时钟 - + Fixed Time 固定时间 - + Startup time 启动时间 - + yyyy-MM-ddTHH:mm:ss yyyy-MM-ddTHH:mm:ss - + Offset time 偏移时间 - + days - + HH:mm:ss HH:mm:ss - + Initial System Ticks 初始系统定时器 - + Random 随机 - + Fixed 固定值 - + Initial System Ticks Override 覆盖初始系统定时器 - + Play Coins: 游戏币: - + Run System Setup when Home Menu is launched 启动 Home 菜单时运行系统设置 - + Console ID: 设备 ID: - + Regenerate 重置 ID - + 3GX Plugin Loader: 3GX 插件加载器: - + Enable 3GX plugin loader 启用 3GX 插件加载器 - + Allow games to change plugin loader state 允许游戏更改插件加载器状态 - + Download System Files from Nitendo servers 从任天堂服务器下载系统文件 - + Minimal 最小化 - + Old 3DS 老版 3DS - + New 3DS 新版 3DS - + JPN 日本 - + USA 北美 - + EUR 欧洲 - + AUS 澳大利亚 - + CHN 中国大陆(神游) - + KOR 韩国 - + TWN 港澳台 - + Download 下载 - + System settings are available only when game is not running. 只有当游戏不在运行时,系统设置才可用。 - + Japan 日本 - + Anguilla 安圭拉 - + Antigua and Barbuda 安提瓜和巴布达 - + Argentina 阿根廷 - + Aruba 阿鲁巴 - + Bahamas 巴哈马国 - + Barbados 巴巴多斯 - + Belize 伯利兹 - + Bolivia 玻利维亚 - + Brazil 巴西 - + British Virgin Islands 英属维尔京群岛 - + Canada 加拿大 - + Cayman Islands 开曼群岛 - + Chile 智利 - + Colombia 哥伦比亚 - + Costa Rica 哥斯达黎加 - + Dominica 多米尼克 - + Dominican Republic 多米尼加 - + Ecuador 厄瓜多尔 - + El Salvador 萨尔瓦多 - + French Guiana 法属圭亚那 - + Grenada 格林纳达 - + Guadeloupe 瓜德罗普岛 - + Guatemala 危地马拉 - + Guyana 圭亚那 - + Haiti 海地 - + Honduras 洪都拉斯 - + Jamaica 牙买加 - + Martinique 马提尼克 - + Mexico 墨西哥 - + Montserrat 蒙特塞拉特 - + Netherlands Antilles 荷属安的列斯群岛 - + Nicaragua 尼加拉瓜 - + Panama 巴拿马 - + Paraguay 巴拉圭 - + Peru 秘鲁 - + Saint Kitts and Nevis 圣基茨和尼维斯 - + Saint Lucia 圣卢西亚 - + Saint Vincent and the Grenadines 圣文森特和格林纳丁斯 - + Suriname 苏里南 - + Trinidad and Tobago 特立尼达和多巴哥 - + Turks and Caicos Islands 特克斯和凯科斯群岛 - + United States 美国 - + Uruguay 乌拉圭 - + US Virgin Islands 美属维尔京群岛 - + Venezuela 委内瑞拉 - + Albania 阿尔巴尼亚 - + Australia 澳大利亚 - + Austria 奥地利 - + Belgium 比利时 - + Bosnia and Herzegovina 波斯尼亚和黑塞哥维那 - + Botswana 博茨瓦纳 - + Bulgaria 保加利亚 - + Croatia 克罗地亚 - + Cyprus 塞浦路斯 - + Czech Republic 捷克 - + Denmark 丹麦 - + Estonia 爱沙尼亚 - + Finland 芬兰 - + France 法国 - + Germany 德国 - + Greece 希腊 - + Hungary 匈牙利 - + Iceland 冰岛 - + Ireland 爱尔兰 - + Italy 意大利 - + Latvia 拉脱维亚 - + Lesotho 莱索托 - + Liechtenstein 列支敦士登 - + Lithuania 立陶宛 - + Luxembourg 卢森堡 - + Macedonia 马其顿 - + Malta 马耳他 - + Montenegro 黑山 - + Mozambique 莫桑比克 - + Namibia 纳米比亚 - + Netherlands 荷兰 - + New Zealand 新西兰 - + Norway 挪威 - + Poland 波兰 - + Portugal 葡萄牙 - + Romania 罗马尼亚 - + Russia 俄罗斯 - + Serbia 塞尔维亚 - + Slovakia 斯洛伐克 - + Slovenia 斯洛文尼亚 - + South Africa 南非 - + Spain 西班牙 - + Swaziland 斯威士兰 - + Sweden 瑞典 - + Switzerland 瑞士 - + Turkey 土耳其 - + United Kingdom 英国 - + Zambia 赞比亚 - + Zimbabwe 津巴布韦 - + Azerbaijan 阿塞拜疆 - + Mauritania 毛里塔尼亚 - + Mali 马里 - + Niger 尼日尔 - + Chad 乍得 - + Sudan 苏丹 - + Eritrea 厄立特里亚 - + Djibouti 吉布提 - + Somalia 索马里 - + Andorra 安道尔 - + Gibraltar 直布罗陀 - + Guernsey 根西岛 - + Isle of Man 马恩岛 - + Jersey 泽西岛 - + Monaco 摩纳哥 - + Taiwan 中国•台湾 - + South Korea 韩国 - + Hong Kong 中国•香港 - + Macau 中国•澳门 - + Indonesia 印度尼西亚 - + Singapore 新加坡 - + Thailand 泰国 - + Philippines 菲律宾 - + Malaysia 马来西亚 - + China 中国 - + United Arab Emirates 阿联酋 - + India 印度 - + Egypt 埃及 - + Oman 阿曼 - + Qatar 卡塔尔 - + Kuwait 科威特 - + Saudi Arabia 沙特阿拉伯 - + Syria 叙利亚 - + Bahrain 巴林 - + Jordan 约旦 - + San Marino 圣马力诺 - + Vatican City 梵蒂冈城 - + Bermuda 百慕大群岛 - + Download System Files from Nintendo servers 从任天堂服务器下载系统文件 - + Citra is missing keys to download system files. <br><a href='https://citra-emu.org/wiki/aes-keys/'><span style="text-decoration: underline; color:#039be5;">How to get keys?</span></a> Citra 需要密钥才能下载系统文件。<br><a href='https://citra-emu.org/wiki/aes-keys/'><span style="text-decoration: underline; color:#039be5;">如何获取密钥?</span></a> - - + + Console ID: 0x%1 设备 ID: 0x%1 - + This will replace your current virtual 3DS with a new one. Your current virtual 3DS will not be recoverable. This might have unexpected effects in games. This might fail, if you use an outdated config savegame. Continue? 这将使用一个新的虚拟 3DS 取代你当前的虚拟 3DS。您当前的虚拟 3DS 将无法恢复。在部分游戏中可能会出现意外效果。如果你使用一个过时的配置存档这可能会失败。确定要继续吗? - + Warning 警告 - + Downloading files... 下载中... - + Cancel 取消 - - + + Citra Citra - + Downloading system files failed. 下载系统文件失败。 - + Successfully downloaded system files. 系统文件已下载成功。 @@ -3382,91 +3382,91 @@ Would you like to ignore the error and continue? ConfigureTouchFromButton - + Configure Touchscreen Mappings 配置触摸屏按键映射 - + Mapping: 映射: - + New 新建 - + Delete 删除 - + Rename 重命名 - + Click the bottom area to add a point, then press a button to bind. Drag points to change position, or double-click table cells to edit values. 单击屏幕底部区域添加点位,然后按下按键进行绑定。 拖动点位以改变位置,或双击列表项更改绑定。 - + Delete Point 删除点位 - + Button 按键 - + X X axis X - + Y Y axis Y - + New Profile 保存自定义设置 - + Enter the name for the new profile. 为新的自定义设置命名。 - + Delete Profile 删除自定义设置 - + Delete profile %1? 真的要删除自定义设置 %1 吗? - + Rename Profile 重命名自定义设置 - + New name: 新名称: - + [press key] [请按一个键] @@ -3474,113 +3474,113 @@ Drag points to change position, or double-click table cells to edit values. ConfigureUi - + Form Form - + General 通用 - + Note: Changing language will apply your configuration. 注意: 切换语言将应用您的配置。 - + Interface language: 界面语言: - + Theme: 主题: - + Game List 游戏列表 - + Icon Size: 图标大小: - - + + None - + Small (24x24) 小 (24x24) - + Large (48x48) 大 (48x48) - + Row 1 Text: 第1行: - - + + File Name 文件名 - - + + Full Path 文件路径 - - + + Title Name (short) 游戏名称 (简称) - - + + Title ID 游戏 ID - - + + Title Name (long) 游戏名称 (全称) - + Row 2 Text: 第2行: - + Hide Titles without Icon 隐藏没有图标的游戏 - + Single Line Mode 单行模式 - + <System> <系统> - + English 英语 @@ -3588,135 +3588,135 @@ Drag points to change position, or double-click table cells to edit values. ConfigureWeb - + Form 格式 - + Citra Web Service Citra 网络服务 - + By providing your username and token, you agree to allow Citra to collect additional usage data, which may include user identifying information. 提供您的用户名和令牌意味着您同意让 Citra 收集额外的使用数据,其中可能包括用户识别信息。 - - + + Verify 验证 - + Sign up 注册 - + Token: 令牌: - + Username: 用户名: - + What is my token? 我的令牌是? - + Web Service configuration can only be changed when a public room isn't being hosted. 您只能在公共房间未被创建时更改网络服务设置。 - + Telemetry 使用数据共享 - + Share anonymous usage data with the Citra team 与 Citra 团队共享匿名使用数据 - + Learn more 了解更多 - + Telemetry ID: 数据 ID: - + Regenerate 重新生成 - + Discord Presence Discord 状态 - + Show Current Game in your Discord Status 在您的 Discord 状态中显示当前游戏 - + <a href='https://citra-emu.org/entry/telemetry-and-why-thats-a-good-thing/'><span style="text-decoration: underline; color:#039be5;">Learn more</span></a> <a href='https://citra-emu.org/entry/telemetry-and-why-thats-a-good-thing/'><span style="text-decoration: underline; color:#039be5;">了解更多</span></a> - + <a href='https://profile.citra-emu.org/'><span style="text-decoration: underline; color:#039be5;">Sign up</span></a> <a href='https://profile.citra-emu.org/'><span style="text-decoration: underline; color:#039be5;">注册</span></a> - + <a href='https://citra-emu.org/wiki/citra-web-service/'><span style="text-decoration: underline; color:#039be5;">What is my token?</span></a> <a href='https://citra-emu.org/wiki/citra-web-service/'><span style="text-decoration: underline; color:#039be5;">我的令牌是?</span></a> - - + + Unspecified 未指定 - - + + Telemetry ID: 0x%1 数据 ID: 0x%1 - + Token not verified 您的令牌未被验证 - + Token was not verified. The change to your token has not been saved. 令牌未验证。您对令牌的更改未被保存。 - + Verifying... 验证中... - + Verification failed 验证失败 - + Verification failed. Check that you have entered your token correctly, and that your internet connection is working. 验证失败。请检查您输入的令牌并确保您的网络连接正常。 @@ -3724,47 +3724,47 @@ Drag points to change position, or double-click table cells to edit values. DirectConnect - + Direct Connect 直接连接 - + Server Address 服务器地址 - + <html><head/><body><p>Server address of the host</p></body></html> <html><head/><body><p>主机服务器地址</p></body></html> - + Port 端口 - + <html><head/><body><p>Port number the host is listening on</p></body></html> <html><head/><body><p>主机侦听端口</p></body></html> - + 24872 24872 - + Nickname 名称 - + Password 密码 - + Connect 连接 @@ -3772,12 +3772,12 @@ Drag points to change position, or double-click table cells to edit values. DirectConnectWindow - + Connecting 连接中 - + Connect 连接 @@ -3785,111 +3785,111 @@ Drag points to change position, or double-click table cells to edit values. DumpingDialog - + Dump Video 转储屏幕录像 - + Output 输出 - + Format: 格式: - - - + + + Options: 选项: - - - - + + + + ... ... - + Path: 路径: - + Video 视频 - - + + Encoder: 编码器: - - + + Bitrate: 比特率: - - + + bps bps - + Audio 音频 - - + + Citra Citra - + Please specify the output path. 请指定输出路径。 - + output formats 输出格式 - + video encoders 视频编码器 - + audio encoders 音频编码器 - + Could not find any available %1. Please check your FFmpeg installation used for compilation. 未找到可用 %1 。 请检查用于编码的 FFmpeg 是否编译并安装。 - - - - + + + + %1 (%2) %1 (%2) - + Select Video Output Path 选择视频输出路径 @@ -3897,342 +3897,342 @@ Please check your FFmpeg installation used for compilation. GMainWindow - + <a href='https://citra-emu.org/entry/telemetry-and-why-thats-a-good-thing/'>Anonymous data is collected</a> to help improve Citra. <br/><br/>Would you like to share your usage data with us? <a href='https://citra-emu.org/entry/telemetry-and-why-thats-a-good-thing/'>我们收集匿名数据</a>来帮助改进 Citra 。<br/><br/>您愿意和我们分享你的使用数据吗? - + Telemetry 使用数据共享 - + No Suitable Vulkan Devices Detected 未检测到可用的 Vulkan 设备 - + Vulkan initialization failed during boot.<br/>Your GPU may not support Vulkan 1.1, or you do not have the latest graphics driver. Vulkan 初始化失败。<br/>您的 GPU 可能不支持 Vulkan 1.1,或者您没有安装最新的图形驱动程序。 - - + + Current emulation speed. Values higher or lower than 100% indicate emulation is running faster or slower than a 3DS. 当前模拟速度。高于或低于 100% 的值表示模拟正在运行得比实际 3DS 更快或更慢。 - - + + How many frames per second the game is currently displaying. This will vary from game to game and scene to scene. 游戏当前运行的帧率。这将因游戏和场景的不同而有所不同。 - - + + Time taken to emulate a 3DS frame, not counting framelimiting or v-sync. For full-speed emulation this should be at most 16.67 ms. 在不计算速度限制和垂直同步的情况下,模拟一个 3DS 帧的实际时间。若要进行全速模拟,这个数值不应超过 16.67 毫秒。 - + Clear Recent Files 清除最近文件 - + &Continue 继续 (&C) - + &Pause 暂停 (&P) - + Update Available 更新可用 - + An update is available. Would you like to install it now? 有更新可用。您想现在安装吗? - + No Update Found 没有发现更新 - + No update is found. 没有找到更新。 - + Citra is running a game TRANSLATORS: This string is shown to the user to explain why Citra needs to prevent the computer from sleeping Citra 正在运行游戏 - - + + Invalid ROM Format 无效 ROM 格式 - - + + Your ROM format is not supported.<br/>Please follow the guides to redump your <a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>game cartridges</a> or <a href='https://citra-emu.org/wiki/dumping-installed-titles/'>installed titles</a>. 您的 ROM 格式不受支持。<br/>请按照 wiki 文章来重新转储您的<a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>游戏卡带</a>或<a href='https://citra-emu.org/wiki/dumping-installed-titles/'>已安装的游戏</a>。 - + ROM Corrupted ROM 损坏 - + Your ROM is corrupted. <br/>Please follow the guides to redump your <a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>game cartridges</a> or <a href='https://citra-emu.org/wiki/dumping-installed-titles/'>installed titles</a>. 您的 ROM 已损坏。<br/> 请按照 wiki 文章来重新转储您的<a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>游戏卡带</a>或<a href='https://citra-emu.org/wiki/dumping-installed-titles/'>已安装的游戏</a>。 - + ROM Encrypted 加密 ROM - + Your ROM is encrypted. <br/>Please follow the guides to redump your <a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>game cartridges</a> or <a href='https://citra-emu.org/wiki/dumping-installed-titles/'>installed titles</a>. 您的 ROM 是加密的。<br/> 请按照 wiki 文章重新转储您的<a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>游戏卡带</a>或<a href='https://citra-emu.org/wiki/dumping-installed-titles/'>已安装的游戏</a>。 - + Unsupported ROM 不支持的 ROM - + GBA Virtual Console ROMs are not supported by Citra. Citra 不支持 GBA 虚拟主机 ROM。 - + Error while loading ROM! 加载 ROM 时出错! - + An unknown error occurred. Please see the log for more details. 发生了一个未知错误。详情请参阅日志。 - + CIA must be installed before usage CIA 文件必须安装后才能使用 - + Before using this CIA, you must install it. Do you want to install it now? 在使用这个 CIA 文件前,您必须先进行安装。您希望现在就安装它吗? - - + + Slot %1 插槽 %1 - + Slot %1 - %2 %3 插槽 %1 - %2 %3 - + Error Opening %1 Folder 无法打开 %1 文件夹 - - + + Folder does not exist! 文件夹不存在! - + Dumping... 转储中... - - + + Cancel 取消 - - - - - - - - - + + + + + + + + + Citra Citra - + Could not dump base RomFS. Refer to the log for details. 无法转储 RomFS 。 有关详细信息,请参考日志文件。 - + Error Opening %1 无法打开 %1 - + Select Directory 选择目录 - + Properties 属性 - + The game properties could not be loaded. 无法加载游戏属性。 - + 3DS Executable (%1);;All Files (*.*) %1 is an identifier for the 3DS executable file extensions. 3DS 可执行文件 (%1);;所有文件 (*.*) - + Load File 加载文件 - + Load Files 加载多个文件 - + 3DS Installation File (*.CIA*) 3DS 安装文件 (*.CIA*) - + All Files (*.*) 所有文件 (*.*) - + %1 has been installed successfully. %1 已成功安装。 - + Unable to open File 无法打开文件 - + Could not open %1 无法打开 %1 - + Installation aborted 安装失败 - + The installation of %1 was aborted. Please see the log for more details %1 的安装过程失败。详情请参看日志 - + Invalid File 文件无效 - + %1 is not a valid CIA %1 不是有效的 CIA 文件 - + Encrypted File 文件已加密 - + %1 must be decrypted before being used with Citra. A real 3DS is required. %1 需要解密才能被 Citra 识别。解密过程需要一台实体 3DS 游戏机。 - + Unable to find File 无法找到文件 - + Could not find %1 找不到 %1 - + Uninstalling '%1'... 正在卸载“ %1 ”... - + Failed to uninstall '%1'. 卸载“ %1 ”失败。 - + Successfully uninstalled '%1'. “ %1 ”卸载成功。 - + File not found 找不到文件 - + File "%1" not found 文件 "%1" 未找到 - + Missing Citra Account 未设置 Citra 帐户 - + You must link your Citra account to submit test cases.<br/>Go to Emulation &gt; Configure... &gt; Web to do so. 您必须设置您的 Citra 帐户来提交测试用例。<br/>请前往模拟 > 设置… > 网络进行设置。 - + Savestates 保存状态 - + Warning: Savestates are NOT a replacement for in-game saves, and are not meant to be reliable. Use at your own risk! @@ -4241,76 +4241,76 @@ Use at your own risk! 您必须自行承担使用风险。 - - - + + + Error opening amiibo data file 打开 Amiibo 数据文件时出错 - + A tag is already in use. 当前已有 Amiibo 标签在使用中。 - + Game is not looking for amiibos. 游戏未在寻找 Amiibo。 - + Amiibo File (%1);; All Files (*.*) Amiibo 文件 (%1);;所有文件 (*.*) - + Load Amiibo 加载 Amiibo - + Unable to open amiibo file "%1" for reading. 无法打开 Amiibo 文件 %1 。 - + Record Movie 录制影像 - + Movie recording cancelled. 影像录制已取消。 - - + + Movie Saved 影像已保存 - - + + The movie is successfully saved. 影像已成功保存。 - + Invalid Screenshot Directory 无效的截图保存目录 - + Cannot create specified screenshot directory. Screenshot path is set back to its default value. 无法创建指定的截图保存目录。截图保存路径将重设为默认值。 - + Could not load video dumper 无法加载视频转储器 - + FFmpeg could not be loaded. Make sure you have a compatible version installed. To install FFmpeg to Citra, press Open and select your FFmpeg directory. @@ -4323,158 +4323,158 @@ To view a guide on how to install FFmpeg, press Help. 要查看安装 FFmpeg 的指南,请点击帮助按钮。 - + Select FFmpeg Directory 选择 FFmpeg 目录 - + The provided FFmpeg directory is missing %1. Please make sure the correct directory was selected. 选择的 FFmpeg 目录中缺少 %1 。请确保选择了正确的目录。 - + FFmpeg has been sucessfully installed. FFmpeg 已成功安装。 - + Installation of FFmpeg failed. Check the log file for details. 安装 FFmpeg 失败。详情请参阅日志文件。 - + Could not start video dumping.<br>Refer to the log for details. 无法转储屏幕录像。<br>有关详细信息,请参考日志文件。 - + Recording %1 录制中 %1 - + Playing %1 / %2 播放中 %1 / %2 - + Movie Finished 录像播放完毕 - + Speed: %1% 速度: %1% - + Speed: %1% / %2% 速度: %1% / %2% - + Game: %1 FPS FPS: %1 - + Frame: %1 ms 帧延迟:%1 毫秒 - + VOLUME: MUTE 音量: 静音 - + VOLUME: %1% Volume percentage (e.g. 50%) 音量: %1% - + %1 is missing. Please <a href='https://citra-emu.org/wiki/dumping-system-archives-and-the-shared-fonts-from-a-3ds-console/'>dump your system archives</a>.<br/>Continuing emulation may result in crashes and bugs. 未找到 %1。 请<a href='https://citra-emu.org/wiki/dumping-system-archives-and-the-shared-fonts-from-a-3ds-console/'>转储您的系统档案</a>。<br/>继续进行模拟可能会导致崩溃和错误。 - + A system archive 系统档案 - + System Archive Not Found 未找到系统档案 - + System Archive Missing 系统档案丢失 - + Save/load Error 保存/读取出现错误 - + Fatal Error 致命错误 - + A fatal error occurred. <a href='https://community.citra-emu.org/t/how-to-upload-the-log-file/296'>Check the log</a> for details.<br/>Continuing emulation may result in crashes and bugs. 发生了致命错误。请<a href='https://community.citra-emu.org/t/how-to-upload-the-log-file/296'>参阅日志</a>了解详细信息。<br/>继续进行模拟可能会导致崩溃和错误。 - + Fatal Error encountered 发生致命错误 - + Continue 继续 - + Quit Game 退出游戏 - + OK 确定 - + Would you like to exit now? 您现在要退出么? - + The game is still running. Would you like to stop emulation? 游戏仍在运行。您想停止模拟吗? - + Playback Completed 播放完成 - + Movie playback completed. 影像播放完成。 - + Primary Window 主窗口 - + Secondary Window 次级窗口 @@ -4482,22 +4482,22 @@ To view a guide on how to install FFmpeg, press Help. GPUCommandListModel - + Command Name 命令名称 - + Register 寄存器 - + Mask 掩码 - + New Value 新参数 @@ -4505,23 +4505,23 @@ To view a guide on how to install FFmpeg, press Help. GPUCommandListWidget - + Pica Command List Pica 命令列表 - - + + Start Tracing 开始追踪 - + Copy All 复制所有 - + Finish Tracing 结束追踪 @@ -4529,7 +4529,7 @@ To view a guide on how to install FFmpeg, press Help. GPUCommandStreamWidget - + Graphics Debugger 图形调试工具 @@ -4537,42 +4537,42 @@ To view a guide on how to install FFmpeg, press Help. GRenderWindow - + OpenGL not available! OpenGL 不可用! - + OpenGL shared contexts are not supported. 不支持 OpenGL 共享上下文。 - + Error while initializing OpenGL! 初始化 OpenGL 时出错! - + Your GPU may not support OpenGL, or you do not have the latest graphics driver. 您的 GPU 可能不支持 OpenGL,或没有安装最新的显卡驱动程序。 - + Error while initializing OpenGL 4.3! 初始化 OpenGL 4.3 时出错! - + Your GPU may not support OpenGL 4.3, or you do not have the latest graphics driver.<br><br>GL Renderer:<br>%1 您的 GPU 可能不支持 OpenGL 4.3,或没有安装最新的显卡驱动程序。<br><br>GL 渲染器:<br>%1 - + Error while initializing OpenGL ES 3.2! 初始化 OpenGL ES 3.2 时出错! - + Your GPU may not support OpenGL ES 3.2, or you do not have the latest graphics driver.<br><br>GL Renderer:<br>%1 您的 GPU 可能不支持 OpenGL ES 3.2,或没有安装最新的 GPU 驱动程序。<br><br>GL 渲染器: <br>%1 @@ -4580,134 +4580,134 @@ To view a guide on how to install FFmpeg, press Help. GameList - - + + Compatibility 兼容性 - - + + Region 地区 - - + + File type 文件类型 - - + + Size 大小 - + Open Save Data Location 打开存档位置 - + Open Extra Data Location 打开附加存档数据位置 - + Open Application Location 打开应用程序位置 - + Open Update Data Location 打开更新数据位置 - + Open DLC Data Location 打开 DLC 数据位置 - + Open Texture Dump Location 打开纹理文件转储位置 - + Open Custom Texture Location 打开自定义纹理文件位置 - + Open Mods Location 打开 Mod 位置 - + Dump RomFS 转储 RomFS - + Disk Shader Cache 磁盘着色器缓存 - + Open Shader Cache Location 打开着色器缓存位置 - + Delete OpenGL Shader Cache 删除 OpenGL 着色器缓存 - + Uninstall 卸载 - + Everything 所有内容 - + Game 游戏 - + Update 更新补丁 - + DLC DLC - + Navigate to GameDB entry 查看兼容性报告 - + Properties 属性 - - - - + + + + Citra Citra - + Are you sure you want to completely uninstall '%1'? This will delete the game if installed, as well as any installed updates or DLC. @@ -4716,59 +4716,59 @@ This will delete the game if installed, as well as any installed updates or DLC. 这将删除游戏、已安装的更新补丁和 DLC。 - - + + %1 (Update) %1 (更新补丁) - - + + %1 (DLC) %1 (DLC) - + Are you sure you want to uninstall '%1'? 您确定要卸载“ %1 ”吗? - + Are you sure you want to uninstall the update for '%1'? 您确定要卸载“ %1 ”的更新补丁吗? - + Are you sure you want to uninstall all DLC for '%1'? 您确定要卸载“ %1 ”的所有 DLC 吗? - + Scan Subfolders 扫描子文件夹 - + Remove Game Directory 删除游戏目录 - + Move Up 向上移动 - + Move Down 向下移动 - + Open Directory Location 打开目录位置 - + Name 名称 @@ -4776,77 +4776,77 @@ This will delete the game if installed, as well as any installed updates or DLC. GameListItemCompat - + Perfect 完美 - + Game functions flawless with no audio or graphical glitches, all tested functionality works as intended without any workarounds needed. 游戏功能完美,没有音频或图形问题。所有测试的功能均能工作,不需要任何特殊技巧去完成游戏。 - + Great 良好 - + Game functions with minor graphical or audio glitches and is playable from start to finish. May require some workarounds. 游戏运行时会有非常轻微的图像或音频问题,但是能从头玩到尾。可能需要一些技巧才能完成游戏。 - + Okay 一般 - + Game functions with major graphical or audio glitches, but game is playable from start to finish with workarounds. 游戏运行时会有很多图像或音频错误,但是在使用一些特殊技巧之后能完整地完成游戏。 - + Bad 较差 - + Game functions, but with major graphical or audio glitches. Unable to progress in specific areas due to glitches even with workarounds. 游戏能运行,但是会有大量图像或音频错误。即使使用一些技巧仍无法通过游戏的某些区域。 - + Intro/Menu 开场 / 菜单 - + Game is completely unplayable due to major graphical or audio glitches. Unable to progress past the Start Screen. 游戏完全没法玩,图像或音频有重大错误。通过开场菜单后无法继续。 - + Won't Boot 无法打开 - + The game crashes when attempting to startup. 在启动游戏时直接崩溃了。 - + Not Tested 未测试 - + The game has not yet been tested. 游戏尚未经过测试。 @@ -4854,7 +4854,7 @@ Screen. GameListPlaceholder - + Double-click to add a new folder to the game list 双击添加游戏文件夹 @@ -4862,27 +4862,27 @@ Screen. GameListSearchField - + of / - + result 结果 - + results 结果 - + Filter: 搜索: - + Enter pattern to filter 搜索游戏 @@ -4890,47 +4890,47 @@ Screen. GameRegion - + Japan 日本 - + North America 北美洲 - + Europe 欧洲 - + Australia 澳大利亚 - + China 中国 - + Korea 韩国 - + Taiwan 中国•台湾 - + Invalid region 无效的地区 - + Region free 不锁区 @@ -4938,23 +4938,23 @@ Screen. GraphicsBreakPointsWidget - + Pica Breakpoints Pica 断点 - - + + Emulation running 模拟正在运行 - + Resume 继续 - + Emulation halted at breakpoint 模拟停止在断点处 @@ -4962,146 +4962,146 @@ Screen. GraphicsSurfaceWidget - + Pica Surface Viewer Pica 表面浏览器 - + Color Buffer 彩色缓冲器 - + Depth Buffer 深度缓冲器 - + Stencil Buffer 模板缓冲器 - + Texture 0 贴图 0 - + Texture 1 贴图 1 - + Texture 2 贴图 2 - + Custom 自定义 - + Unknown 未知 - + Save 保存 - + Source: 来源: - + Physical Address: 物理地址: - + Width: 宽度: - + Height: 高度: - + Format: 格式: - + X: X: - + Y: Y: - + Pixel out of bounds 像素越界 - + (unable to access pixel data) (无法访问像素数据) - + (invalid surface address) (非法表层地址) - + (unknown surface format) (未知表层格式) - + Portable Network Graphic (*.png) 便携式网络图形 (*.png) - + Binary data (*.bin) 二进制文件 (*.bin) - + Save Surface 保存表层 - - - - + + + + Error 错误 - - + + Failed to open file '%1' 打开文件 ‘ %1 ’ 失败 - + Failed to save surface data to file '%1' 未能将表层数据保存到文件 ‘ %1 ’ 中 - + Failed to completely write surface data to file. The saved data will likely be corrupt. 未能完全地将表层数据保存到文件中。保存的数据可能已经损坏。 @@ -5109,42 +5109,42 @@ Screen. GraphicsTracingWidget - + CiTrace Recorder CiTrace 录制器 - + Start Recording 开始录制 - + Stop and Save 停止并保存 - + Abort Recording 停止录制 - + Save CiTrace 保存 CiTrace - + CiTrace File (*.ctf) CiTrace 文件 (*.ctf) - + CiTracing still active CiTrace 仍在运行 - + A CiTrace is still being recorded. Do you want to save it? If not, all recorded data will be discarded. 当前正在记录 CiTrace。您想保存它吗?如果不保存,所有记录的数据将丢失。 @@ -5152,17 +5152,17 @@ Screen. GraphicsVertexShaderModel - + Offset 偏移 - + Raw 原内容 - + Disassembly 反汇编 @@ -5170,127 +5170,127 @@ Screen. GraphicsVertexShaderWidget - + Save Shader Dump 保存着色器转储 - + Shader Binary (*.shbin) 着色器二进制文件 (*.shbin) - + Pica Vertex Shader Pica 顶点着色器 - + (data only available at vertex shader invocation breakpoints) (数据仅在顶点着色器调用断点时可用) - + Dump 转储 - + Input Data 输入数据 - + Attribute %1 属性 %1 - + Cycle Index: 循环索引: - + SRC1: %1, %2, %3, %4 SRC1: %1, %2, %3, %4 - + SRC2: %1, %2, %3, %4 SRC2: %1, %2, %3, %4 - + SRC3: %1, %2, %3, %4 SRC3: %1, %2, %3, %4 - + DEST_IN: %1, %2, %3, %4 DEST_IN: %1, %2, %3, %4 - + DEST_OUT: %1, %2, %3, %4 DEST_OUT: %1, %2, %3, %4 - + Address Registers: %1, %2 地址寄存器:%1, %2 - + Compare Result: %1, %2 比较结果:%1, %2 - + Static Condition: %1 静态状态:%1 - + Dynamic Conditions: %1, %2 动态状态:%1, %2 - + Loop Parameters: %1 (repeats), %2 (initializer), %3 (increment), %4 循环参数:%1(循环),%2(初始值),%3(增量),%4 - + Instruction offset: 0x%1 指令偏移量:0x%1 - + -> 0x%2 -> 0x%2 - + (last instruction) (最后指令) @@ -5298,67 +5298,67 @@ Screen. HostRoom - + Create Room 创建房间 - + Room Name 房间名称 - + Preferred Game 首选游戏 - + Max Players 最大玩家数 - + Username 用户名 - + (Leave blank for open game) (无密码请留白) - + Password 密码 - + Port 端口 - + Room Description 房间说明 - + Load Previous Ban List 加载前一次的封禁列表 - + Public 公开 - + Unlisted 私有 - + Host Room 创建房间 @@ -5366,12 +5366,12 @@ Screen. HostRoomWindow - + Error 错误 - + Failed to announce the room to the public lobby. In order to host a room publicly, you must have a valid Citra account configured in Emulation -> Configure -> Web. If you do not want to publish a room in the public lobby, then select Unlisted instead. Debug Message: 未能创建公开房间。您必须在模拟 - > 设置 - > 网络中配置有效的 Citra 账户。如果您不希望您的房间在公共游戏大厅中显示,请选择“私有”。 @@ -5381,47 +5381,47 @@ Debug Message: IPCRecorder - + IPC Recorder IPC 录制器 - + Enable Recording 启用录制 - + Filter: 过滤器: - + Leave empty to disable filtering 取消勾选以禁用过滤 - + # # - + Status 状态 - + Service 服务 - + Function 作用 - + Clear 清除 @@ -5429,47 +5429,47 @@ Debug Message: IPCRecorderWidget - + Invalid 无效 - + Sent 发送 - + Handling 处理中 - + Success 成功 - + Error 错误 - + HLE Unimplemented 未使用 HLE - + HLE HLE - + LLE LLE - + Unknown 未知 @@ -5477,7 +5477,7 @@ Debug Message: LLEServiceModulesWidget - + Toggle LLE Service Modules LLE 服务模块设置 @@ -5485,54 +5485,54 @@ Debug Message: LoadingScreen - + Loading Shaders 387 / 1628 正在加载着色器... 387 / 1628 - + Loading Shaders %v out of %m 正在加载着色器... %v / %m - + Estimated Time 5m 4s 所需时间: 5 分 4 秒 - + Loading... 正在加载... - + Preloading Textures %1 / %2 正在预加载纹理... %1 / %2 - + Preparing Shaders %1 / %2 正在准备着色器... %1 / %2 - + Loading Shaders %1 / %2 正在加载着色器... %1 / %2 - + Launching... 载入中... - + Now Loading %1 正在加载 %1 - + Estimated Time %1 所需时间: %1 @@ -5540,83 +5540,83 @@ Debug Message: Lobby - + Public Room Browser 公共房间列表 - - + + Nickname 昵称 - + Filters 过滤器 - + Search 搜索 - + Games I Own 仅显示拥有的游戏 - + Hide Empty Rooms 隐藏空房间 - + Hide Full Rooms 隐藏满员房间 - + Refresh Lobby 刷新大厅 - + Password Required to Join 需要密码 - + Password: 密码: - + Room Name 房间名称 - + Preferred Game 首选游戏 - + Host 创建者 - + Players 玩家 - + Refreshing 正在刷新 - + Refresh List 刷新列表 @@ -5624,362 +5624,362 @@ Debug Message: MainWindow - + Citra Citra - + &File 文件(&F) - + Boot Home Menu 启动 Home 菜单 - + Recent Files 最近文件 - + Amiibo Amiibo - + &Emulation 模拟(&E) - + Save State 保存存档 - + Load State 读取存档 - + &View 视图(&V) - + Debugging 调试 - + Screen Layout 屏幕布局 - + Multiplayer 多人游戏 - + Tools 工具 - + Movie 影像 - + Frame Advance 逐帧播放 - + &Help 帮助 (&H) - + Load File... 加载文件… - + Install CIA... 安装 CIA… - + JPN 日本 - + USA 北美 - + EUR 欧洲 - + AUS 澳大利亚 - + CHN 中国大陆 - + KOR 韩国 - + TWN 港澳台 - + E&xit 退出 (&X) - + &Pause 暂停 (&P) - + &Stop 停止 (&S) - + Save 保存 - + Load 读取 - + FAQ 常见问题 - + About Citra 关于 Citra - + Single Window Mode 单窗口模式 - + Save to Oldest Slot 覆盖保存到最旧存档 - + Load from Newest Slot 读取最新存档 - + Configure... 设置… - + Display Dock Widget Headers 显示停靠小部件的标题 - + Show Filter Bar 显示搜索栏 - + Show Status Bar 显示状态栏 - + Create Pica Surface Viewer 新建 Pica 表面浏览器 - + Record... 录制... - + Play... 播放... - + Close 关闭 - + Save without Closing 保存并不关闭 - + Read-Only Mode 只读模式 - + Enable Frame Advancing 逐帧播放 - + Advance Frame 播放下一帧 - + Capture Screenshot 捕获截图 - + Dump Video 转储屏幕录像 - + Browse Public Game Lobby 浏览公共游戏大厅 - + Create Room 创建房间 - + Leave Room 离开房间 - + Direct Connect to Room 直接连接到房间 - + Show Current Room 显示当前房间 - + Fullscreen 全屏 - + Modify Citra Install 更改 Citra 安装 - + Opens the maintenance tool to modify your Citra installation 打开维护工具修改 Citra 安装 - + Default 默认 - + Single Screen 单屏 - + Large Screen 大屏 - + Hybrid Screen 混合式屏幕 - + Side by Side 横屏 - + Separate Windows 分离窗口 - + Swap Screens 交换上下屏 - + Rotate Upright 垂直式画面旋转 - + Check for Updates 检查更新 - + Report Compatibility 报告兼容性 - + Restart 重新启动 - + Load... 加载... - + Remove 移除 - + Open Citra Folder 打开 Citra 文件夹 - + Configure Current Game... 配置当前游戏… @@ -5987,7 +5987,7 @@ Debug Message: MicroProfileDialog - + MicroProfile MicroProfile @@ -5995,48 +5995,48 @@ Debug Message: ModerationDialog - + Moderation 管理 - + Ban List 封禁列表 - - + + Refreshing 正在刷新 - + Unban 解封 - + Subject 项目 - + Type 类型 - + Forum Username Citra 用户名 - + IP Address IP 地址 - + Refresh 刷新 @@ -6044,91 +6044,91 @@ Debug Message: MoviePlayDialog - - + + Play Movie 播放录像 - + File: 录像文件: - + ... ... - + Info 信息 - + Game: 游戏: - + Author: 作者: - + Rerecord Count: 重录次数: - + Length: 长度: - + Current running game will be stopped. 当前的游戏将停止运行。 - + <br>Current recording will be discarded. <br>当前录制的内容将被丢弃。 - + Citra TAS Movie (*.ctm) Citra TAS 录像 (*.ctm) - + Invalid movie file. 无效的录像文件。 - + Revision dismatch, playback may desync. 修改的内容不匹配,回放可能不同步。 - + Indicated length is incorrect, file may be corrupted. 录像的长度不正确,文件可能已损坏。 - - - - + + + + (unknown) (未知) - + Game used in this movie is not in game list. 该录像所使用的游戏不在游戏列表中。 - + (>1 day) (>1 天) @@ -6136,43 +6136,43 @@ Debug Message: MovieRecordDialog - - + + Record Movie 录制影像 - + File: 录像文件: - + ... ... - + Author: 作者: - + Current running game will be restarted. 当前运行的游戏将重新启动。 - + <br>Current recording will be discarded. <br>当前录制的内容将被丢弃。 - + Recording will start once you boot a game. 一旦启动游戏,录制就会开始。 - + Citra TAS Movie (*.ctm) Citra TAS 录像 (*.ctm) @@ -6180,44 +6180,44 @@ Debug Message: MultiplayerState - - + + Current connection status 当前连接状态 - - + + Not Connected. Click here to find a room! 未连接。点击此处查找一个房间! - - - + + + Connected 已连接 - - + + Not Connected 未连接 - + Error 错误 - + Failed to update the room information. Please check your Internet connection and try hosting the room again. Debug Message: 房间信息更新失败。请检查您的网络连接,再尝试重新创建房间。 调试信息: - + New Messages Received 收到新消息 @@ -6225,22 +6225,22 @@ Debug Message: NetworkMessage - + Leave Room 离开房间 - + You are about to close the room. Any network connections will be closed. 您正准备关闭房间。所有的网络连接将会被关闭。 - + Disconnect 断开 - + You are about to leave the room. Any network connections will be closed. 您正准备离开房间。所有的网络连接将会被关闭。 @@ -6248,92 +6248,92 @@ Debug Message: NetworkMessage::ErrorManager - + Username is not valid. Must be 4 to 20 alphanumeric characters. 用户名无效。必须是 4 至 20 个字母或数字的组合。 - + Room name is not valid. Must be 4 to 20 alphanumeric characters. 房间名称无效。必须是 4 至 20 个字母或数字的组合。 - + Username is already in use or not valid. Please choose another. 用户名已存在或无效。请重新选择。 - + IP is not a valid IPv4 address. 这不是一个有效的 IPv4 地址。 - + Port must be a number between 0 to 65535. 端口必须是介于 0 到 65535 之间的数字。 - + You must choose a Preferred Game to host a room. If you do not have any games in your game list yet, add a game folder by clicking on the plus icon in the game list. 您必须选择一个首选游戏来创建房间。如果您的游戏列表中还没有任何游戏,请单击游戏列表中的加号图标添加游戏文件夹。 - + Unable to find an internet connection. Check your internet settings. 无法连接到互联网。请检查你的网络设置。 - + Unable to connect to the host. Verify that the connection settings are correct. If you still cannot connect, contact the room host and verify that the host is properly configured with the external port forwarded. 无法连接到服务器。请检查连接设置是否正确。如果您还是不能连接,请联系房主,核实服务器是否正确配置了外部端口转发。 - + Unable to connect to the room because it is already full. 此房间已满,无法连接。 - + Creating a room failed. Please retry. Restarting Citra might be necessary. 创建房间失败,请重试。如果仍然失败,请尝试重新启动 Citra。 - + The host of the room has banned you. Speak with the host to unban you or try a different room. 这个房间的房主把你封禁了。请联系房主取消封禁或尝试加入别的房间。 - + Version mismatch! Please update to the latest version of Citra. If the problem persists, contact the room host and ask them to update the server. 版本不匹配!请更新到最新版本的 Citra。如果问题仍然存在,请联系房主更新服务器。 - + Incorrect password. 密码错误。 - + An unknown error occurred. If this error continues to occur, please open an issue 发生了一个未知错误。 如果这个错误继续发生,请到 Github 上创建 Issue。 - + Connection to room lost. Try to reconnect. 与房间的连接断开。请尝试重新连接。 - + You have been kicked by the room host. 你已被房主踢出房间。 - + MAC address is already in use. Please choose another. MAC 地址已被使用。请选择其他 MAC 地址。 - + Your Console ID conflicted with someone else's in the room. Please go to Emulation > Configure > System to regenerate your Console ID. @@ -6342,19 +6342,19 @@ Please go to Emulation > Configure > System to regenerate your Console ID. 请到模拟 > 设置... > 系统重新生成设备 ID。 - + You do not have enough permission to perform this action. 你没有权限进行该操作。 - + The user you are trying to kick/ban could not be found. They may have left the room. 未找到你想要踢出/封禁的用户。 该用户可能已离开房间。 - + Error 错误 @@ -6362,37 +6362,37 @@ They may have left the room. OptionSetDialog - + Options 选项 - + Unset 未设置 - + unknown 未知 - + %1 &lt;%2> %3 %1 &lt;%2> %3 - + Range: %1 - %2 范围: %1 - %2 - + custom 自定义 - + %1 (0x%2) %3 %1 (0x%2) %3 @@ -6400,32 +6400,32 @@ They may have left the room. OptionsDialog - + Options 选项 - + Double click to see the description and change the values of the options. 双击以查看描述并更改选项的值。 - + Specific 简略信息 - + Generic 详细信息 - + Name 名称 - + Value @@ -6433,157 +6433,157 @@ They may have left the room. QObject - + Supported image files (%1) 所有支持的图片文件 (%1) - + Open File 打开文件 - + Error 错误 - + Couldn't load the camera 摄像头加载失败 - + Couldn't load %1 %1 加载失败 - - + + Shift Shift - - + + Ctrl Ctrl - - + + Alt Alt - - - + + + [not set] [未设置] - - + + Hat %1 %2 方向键 %1 %2 - - - - - - + + + + + + Axis %1%2 轴 %1%2 - - + + Button %1 按键 %1 - + GC Axis %1%2 GC 轴 %1%2 - + GC Button %1 GC 按键 %1 - - - + + + [unknown] [未知] - + [unused] [未使用] - + auto 自动 - + true - + false - - + + none - + %1 (0x%2) %1 (0x%2) - + Invalid region 无效的地区 - + Installed Titles 已安装的项目 - + System Titles 系统项目 - + Add New Game Directory 添加游戏目录 - + Not playing a game 不在玩游戏 - + %1 is not playing a game %1 不在玩游戏 - + %1 is playing %2 %1 在玩 %2 @@ -6591,7 +6591,7 @@ They may have left the room. QtKeyboard - + Software Keyboard 软件键盘 @@ -6599,27 +6599,27 @@ They may have left the room. QtKeyboardDialog - + Text length is not correct (should be %1 characters) 文本长度不正确(应为 %1 个字符) - + Text is too long (should be no more than %1 characters) 输入文本过长(不应超过 %1 个字符) - + Blank input is not allowed 不允许空白输入 - + Empty input is not allowed 请输入字符 - + Validation error 验证错误 @@ -6627,12 +6627,12 @@ They may have left the room. QtMiiSelectorDialog - + Mii Selector Mii 选择器 - + Standard Mii 标准 Mii @@ -6640,95 +6640,95 @@ They may have left the room. RecordDialog - + View Record 查看录制内容 - + Client 客户端 - - + + Process: 进程: - - + + Thread: 线程: - - + + Session: 会话: - + Server 服务器 - + General 通用 - + Client Port: 客户端端口: - + Service: 服务: - + Function: 作用: - + Command Buffer 命令缓冲区 - + Select: 选择: - + Request Untranslated 请求未被转换 - + Request Translated 请求已转换 - + Reply Untranslated 回复未被转换 - + Reply Translated 回复已转换 - + OK 确定 - + null @@ -6736,37 +6736,37 @@ They may have left the room. RegistersWidget - + Registers 寄存器 - + VFP Registers VFP 寄存器 - + VFP System Registers VFP 系统寄存器 - + Vector Length 矢量长度 - + Vector Stride 矢量步长 - + Rounding Mode 舍入模式 - + Vector Iteration Count 矢量迭代计数 @@ -6774,7 +6774,7 @@ They may have left the room. SequenceDialog - + Enter a hotkey 键入热键 @@ -6782,7 +6782,7 @@ They may have left the room. WaitTreeEvent - + reset type = %1 复位类型 %1 @@ -6790,12 +6790,12 @@ They may have left the room. WaitTreeMutex - + locked %1 times by thread: 线程被锁定了 %1 次: - + free 空闲 @@ -6803,7 +6803,7 @@ They may have left the room. WaitTreeMutexList - + holding mutexes 持有互斥锁 @@ -6811,12 +6811,12 @@ They may have left the room. WaitTreeObjectList - + waiting for all objects 等待所有对象 - + waiting for one of the following objects 等待下面的对象之一 @@ -6824,12 +6824,12 @@ They may have left the room. WaitTreeSemaphore - + available count = %1 可用数 = %1 - + max count = %1 最大数 = %1 @@ -6837,112 +6837,112 @@ They may have left the room. WaitTreeThread - + running 运行中 - + ready 就绪 - + waiting for address 0x%1 等待地址 0x%1 - + sleeping 睡眠 - + waiting for IPC response 等待 IPC 响应 - + waiting for objects 等待对象 - + waiting for HLE return 等待 HLE 返回 - + dormant 休眠 - + dead 死亡 - + PC = 0x%1 LR = 0x%2 PC = 0x%1 LR = 0x%2 - + default 默认 - + all 所有 - + AppCore 软件核心 - + SysCore 系统核心 - + Unknown processor %1 未知处理器 %1 - + object id = %1 对象 ID = %1 - + processor = %1 处理器 = %1 - + thread id = %1 线程 ID = %1 - + process = %1 (%2) 进程 = %1 (%2) - + priority = %1(current) / %2(normal) 优先级 = %1 (实时) / %2 (正常) - + last running ticks = %1 最后运行频率 = %1 - + not holding mutex 未持有互斥锁 @@ -6950,7 +6950,7 @@ They may have left the room. WaitTreeThreadList - + waited by thread 等待线程 @@ -6958,17 +6958,17 @@ They may have left the room. WaitTreeTimer - + reset type = %1 复位类型 = %1 - + initial delay = %1 初始延迟 = %1 - + interval delay = %1 区间延迟 = %1 @@ -6976,27 +6976,27 @@ They may have left the room. WaitTreeWaitObject - + [%1]%2 %3 [%1]%2 %3 - + waited by no thread 没有等待的线程 - + one shot 单次 - + sticky 粘性 - + pulse 脉冲 @@ -7004,7 +7004,7 @@ They may have left the room. WaitTreeWidget - + Wait Tree 等待树 diff --git a/dist/languages/zh_TW.ts b/dist/languages/zh_TW.ts index 6456d35a5..466f8070d 100644 --- a/dist/languages/zh_TW.ts +++ b/dist/languages/zh_TW.ts @@ -2,17 +2,17 @@ ARMRegisters - + ARM Registers ARM 暫存器 - + Register 暫存器 - + Value 數值 @@ -20,27 +20,27 @@ AboutDialog - + About Citra 關於 Citra - - <html><head/><body><p><img src=":/icons/citra.png"/></p></body></html> - <html><head/><body><p><img src=":/icons/citra.png"/></p></body></html> + + <html><head/><body><p><img src=":/icons/lime.png"/></p></body></html> + <html><head/><body><p><img src=":/icons/lime.png"/></p></body></html> - + <html><head/><body><p><span style=" font-size:28pt;">Citra</span></p></body></html> <html><head/><body><p><span style=" font-size:28pt;">Citra</span></p></body></html> - + <html><head/><body><p>%1 | %2-%3 (%4)</p></body></html> <html><head/><body><p>%1 | %2-%3 (%4)</p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -57,12 +57,12 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">本軟體不應該用來執行非法取得的遊戲。</span></p></body></html> - + <html><head/><body><p><a href="https://citra-emu.org/"><span style=" text-decoration: underline; color:#039be5;">Website</span></a> | <a href="https://community.citra-emu.org/"><span style=" text-decoration: underline; color:#039be5;">Forum</span></a> | <a href="https://github.com/citra-emu"><span style=" text-decoration: underline; color:#039be5;">Source Code</span></a> | <a href="https://github.com/citra-emu/citra/graphs/contributors"><span style=" text-decoration: underline; color:#039be5;">Contributors</span></a> | <a href="https://github.com/citra-emu/citra/blob/master/license.txt"><span style=" text-decoration: underline; color:#039be5;">License</span></a></p></body></html> <html><head/><body><p><a href="https://citra-emu.org/"><span style=" text-decoration: underline; color:#039be5;">網站</span></a> | <a href="https://community.citra-emu.org/"><span style=" text-decoration: underline; color:#039be5;">論壇</span></a> | <a href="https://github.com/citra-emu"><span style=" text-decoration: underline; color:#039be5;">原始碼</span></a> | <a href="https://github.com/citra-emu/citra/graphs/contributors"><span style=" text-decoration: underline; color:#039be5;">貢獻者</span></a> | <a href="https://github.com/citra-emu/citra/blob/master/license.txt"><span style=" text-decoration: underline; color:#039be5;">授權許可</span></a></p></body></html> - + <html><head/><body><p><span style=" font-size:7pt;">&quot;3DS&quot; is a trademark of Nintendo. Citra is not affiliated with Nintendo in any way.</span></p></body></html> <html><head/><body><p><span style=" font-size:7pt;">「3DS」是任天堂的商標,Citra 與任天堂沒有任何關係。</span></p></body></html> @@ -70,47 +70,47 @@ p, li { white-space: pre-wrap; } BreakPointModel - + Pica command loaded 已讀取 Pica 命令 - + Pica command processed 已處理 Pica 命令 - + Incoming primitive batch 原始批次任務傳入 - + Finished primitive batch 原始批次任務結束 - + Vertex shader invocation 頂點著色器調用 - + Incoming display transfer 畫面轉移傳入 - + GSP command processed 已處理 GSP 命令 - + Buffers swapped 已交換緩衝 - + Unknown debug context event 內容未知的除錯事件 @@ -118,32 +118,32 @@ p, li { white-space: pre-wrap; } CalibrationConfigurationDialog - + Communicating with the server... 與伺服器連線中… - + Cancel 取消 - + Touch the top left corner <br>of your touchpad. 請點擊觸控板的左上角。 - + Now touch the bottom right corner <br>of your touchpad. 接下來請點擊觸控板的右下角。 - + Configuration completed! 設定完成! - + OK 確定 @@ -151,93 +151,93 @@ p, li { white-space: pre-wrap; } ChatRoom - + Room Window 房間視窗 - + Send Chat Message 傳送聊天訊息 - + Send Message 傳送訊息 - + Members 成員 - + %1 has joined 「%1」進入房間 - + %1 has left 「%1」離開房間 - + %1 has been kicked 已將「%1」踢出房間 - + %1 has been banned 已阻擋「%1 」 - + %1 has been unbanned 已解除阻擋「%1 」 - + View Profile 檢視個人檔案 - - + + Block Player 遮蔽玩家 - + When you block a player, you will no longer receive chat messages from them.<br><br>Are you sure you would like to block %1? 遮蔽玩家後,您將不會收到他傳送的聊天訊息。<br><br>您確定要遮蔽「%1」嗎? - + Kick 踢出玩家 - + Ban 阻擋玩家 - + Kick Player 踢出玩家 - + Are you sure you would like to <b>kick</b> %1? 您確定要<b>踢出</b>「%1」嗎? - + Ban Player 阻擋玩家 - + Are you sure you would like to <b>kick and ban</b> %1? This would ban both their forum username and their IP address. @@ -249,22 +249,22 @@ This would ban both their forum username and their IP address. ClientRoom - + Room Window 房間視窗 - + Room Description 房間敘述 - + Moderation... 管理 - + Leave Room 離開房間 @@ -272,17 +272,17 @@ This would ban both their forum username and their IP address. ClientRoomWindow - + Connected 已連線 - + Disconnected 已斷線 - + %1 (%2/%3 members) - connected %1(%2/%3 人)- 已連線 @@ -290,108 +290,108 @@ This would ban both their forum username and their IP address. CompatDB - + Report Compatibility 回報遊戲相容性 - - + + Report Game Compatibility 回報遊戲的執行狀況 - + <html><head/><body><p><span style=" font-size:10pt;">Should you choose to submit a test case to the </span><a href="https://citra-emu.org/game/"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">Citra Compatibility List</span></a><span style=" font-size:10pt;">, The following information will be collected and displayed on the site:</span></p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Hardware Information (CPU / GPU / Operating System)</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Which version of Citra you are running</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The connected Citra account</li></ul></body></html> <html><head/><body><p><span style=" font-size:10pt;">如果您提交測試樣本到 </span><a href="https://citra-emu.org/game/"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">Citra 相容性列表</span></a><span style=" font-size:10pt;">,將會收集以下資訊並顯示在網站上:</span></p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">硬體資訊(CPU、GPU、作業系統)</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">目前使用的 Citra 版本</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">已連結的 Citra 帳號</li></ul></body></html> - + Perfect 完美 - + <html><head/><body><p>Game functions flawlessly with no audio or graphical glitches.</p></body></html> <html><head/><body><p>遊戲完美執行,沒有音效或圖形錯誤。</p></body></html> - + Great 良好 - + <html><head/><body><p>Game functions with minor graphical or audio glitches and is playable from start to finish. May require some workarounds.</p></body></html> <html><head/><body><p>遊戲執行時有一點圖形或音效錯誤,但可以從開始玩到結局。可能需要一些替代方案。</p></body></html> - + Okay 普通 - + <html><head/><body><p>Game functions with major graphical or audio glitches, but game is playable from start to finish with workarounds.</p></body></html> <html><head/><body><p>遊戲執行時有許多圖形或音效錯誤,但可以用替代方案從開始玩到結局。</p></body></html> - + Bad 不好 - + <html><head/><body><p>Game functions, but with major graphical or audio glitches. Unable to progress in specific areas due to glitches even with workarounds.</p></body></html> <html><head/><body><p>遊戲可以執行,但有許多圖形或音效錯誤,且沒有替代方案能通過出現錯誤的地方。</p></body></html> - + Intro/Menu 片頭/選單 - + <html><head/><body><p>Game is completely unplayable due to major graphical or audio glitches. Unable to progress past the Start Screen.</p></body></html> <html><head/><body><p>遊戲因為許多圖形或音效的錯誤完全不能執行,且進入片頭或選單後當機。</p></body></html> - + Won't Boot 無法啟動 - + <html><head/><body><p>The game crashes when attempting to startup.</p></body></html> <html><head/><body><p>遊戲啟動時當機。</p></body></html> - + <html><head/><body><p>Independent of speed or performance, how well does this game play from start to finish on this version of Citra?</p></body></html> <html><head/><body><p>不考慮速度或效能,使用目前版號的 Citra 在這個遊戲開始玩到結局的執行效果如何?</p></body></html> - + Thank you for your submission! 感謝您的回報! - + Submitting 提交中 - + Communication error 連線錯誤 - + An error occurred while sending the Testcase 在提交測試用例時發生錯誤。 - + Next 下一步 @@ -399,93 +399,93 @@ This would ban both their forum username and their IP address. ConfigureAudio - + Output 輸出 - + Emulation: 模擬 - + HLE (fast) HLE(快速) - + LLE (accurate) LLE(精準) - + LLE multi-core LLE 多核心 - + Output Type 輸出類型 - + Output Device 輸出設備 - + This post-processing effect adjusts audio speed to match emulation speed and helps prevent audio stutter. This however increases audio latency. 讓音訊速度與遊戲的模擬速度透過後處理效果同步,這有助於防止音訊斷斷續續,但是也增加了音訊延遲。 - + Enable audio stretching 啟用音訊延展 - + Use global volume 使用全局音量 - + Set volume: 音量: - + Volume: 音量 - + 0 % 0 % - + Microphone 麥克風 - + Input Type 輸入類型 - + Input Device 輸入裝置 - - + + Auto - + %1% Volume percentage (e.g. 50%) %1% @@ -494,203 +494,203 @@ This would ban both their forum username and their IP address. ConfigureCamera - + Form Form - + Camera 相機 - - + + Select the camera to configure 選擇前後鏡頭 - + Camera to configure: 設定的鏡頭: - + Front 前鏡頭 - + Rear 後鏡頭 - - + + Select the camera mode (single or double) 選擇 2D 或 3D 模式 - + Camera mode: 相機模式: - + Single (2D) 單鏡頭 (2D) - + Double (3D) 雙鏡頭 (3D) - - + + Select the position of camera to configure 選擇左右鏡頭 - + Camera position: 鏡頭位置: - + Left 左側 - + Right 右側 - + Configuration 設定 - - + + Select where the image of the emulated camera comes from. It may be an image or a real camera. 選擇相機畫面的來源,可以使用圖片或電腦相機。 - + Camera Image Source: 相機畫面來源: - + Blank (blank) - + Still Image (image) 靜態圖片 - + System Camera (qt) 電腦相機 (Qt) - + File: 檔案: - + ... - - + + Select the system camera to use 選擇電腦相機 - + Camera: 相機: - + <Default> < 預設 > - - + + Select the image flip to apply 選擇圖片翻轉方式 - + Flip: 翻轉圖片: - + None 不翻轉 - + Horizontal 左右翻轉 - + Vertical 上下翻轉 - + Reverse 九十度旋轉 - + Select an image file every time before the camera is loaded 在每次讀取相機前選擇圖片 - + Prompt before load 在每次讀取相機前選擇圖片 - + Preview 預覽 - + Resolution: 512*384 解析度:512*384 - + Click to preview 預覽 - + Resolution: %1*%2 分辨率:%1*%2 - + Supported image files (%1) 支援的圖片格式 (%1) - + Open File 開啟檔案 @@ -698,88 +698,88 @@ This would ban both their forum username and their IP address. ConfigureCheats - - + + Cheats 金手指 - + Add Cheat 添加金手指 - + Available Cheats: 可用金手指: - + Name 名稱 - + Type 類型 - + Save 保存 - + Delete 刪除 - + Name: 名稱: - + Notes: 註釋: - + Code: 代碼: - + Would you like to save the current cheat? 您要保存當前這條金手指嗎? - - - + + + Save Cheat 保存金手指 - + Please enter a cheat name. 請為您的金手指輸入名稱。 - + Please enter the cheat code. 請輸入金手指代碼。 - + Cheat code line %1 is not valid. Would you like to ignore the error and continue? 金手指代碼的第 %1 行無效。 您希望忽略錯誤並且繼續嗎? - - + + [new cheat] [ 新的金手指 ] @@ -787,127 +787,127 @@ Would you like to ignore the error and continue? ConfigureDebug - + Form Form - + GDB GDB - + Enable GDB Stub 啟用 GDB 短截 - + Port: 連接埠: - + Logging 記錄 - + Global Log Filter 日誌篩選 - + Show Log Console (Windows Only) 顯示日誌視窗(僅限 Windows) - + Open Log Location 開啟日誌位置 - + CPU CPU - + Use global clock speed 使用全局模擬速度 - + Set clock speed: 設置模擬速度: - + CPU Clock Speed 模擬速度: - + <html><body>Changes the emulated CPU clock frequency.<br>Underclocking can increase performance but may cause the game to freeze.<br>Overclocking may reduce in game lag but also might cause freezes</body></html> <html><body>更改模擬的 CPU 時鐘頻率。 <br>調低頻率會提高性能但可能導致遊戲卡頓。 <br>調高頻率可能會減少游戲延遲,但也可能導致卡頓。 </body></html> - + <html><head/><body><p>Enables the use of the ARM JIT compiler for emulating the 3DS CPUs. Don't disable unless for debugging purposes</p></body></html> <html><head/><body><p>使用 ARM JIT 編譯器來模擬 3DS 的 CPU。除非需要進行調試,否則不要禁用此項</p></body></html> - + Enable CPU JIT 啟用 CPU 即時編譯 - + Enable debug renderer 啟用調試渲染器 - + Dump command buffers - + Miscellaneus - + <html><head/><body><p>Introduces a delay to the first ever launched app thread if LLE modules are enabled, to allow them to initialize.</p></body></html> - + Delay app start for LLE module initialization - + <html><head/><body><p>CPU Clock Speed Information<br/>Underclocking can increase performance but may cause the game to freeze.<br/>Overclocking may reduce in game lag but also might cause freezes</p></body></html> <html><head/><body><p>CPU 時鐘頻率信息<br/>調低頻率會提高性能但可能導致遊戲卡頓。 <br/>調高頻率可能會減少游戲延遲,但也可能導致卡頓。 </p></body></html> - + Validation layer not available - + Unable to enable debug renderer because the layer <strong>VK_LAYER_KHRONOS_validation</strong> is missing. Please install the Vulkan SDK or the appropriate package of your distribution - + Command buffer dumping not available - + Unable to enable command buffer dumping because the layer <strong>VK_LAYER_LUNARG_api_dump</strong> is missing. Please install the Vulkan SDK or the appropriate package of your distribution @@ -915,92 +915,92 @@ Would you like to ignore the error and continue? ConfigureDialog - + Citra Configuration Citra 設定 - - - + + + General 一般 - - - + + + System 系統 - - + + Input 輸入 - - + + Hotkeys 熱鍵 - - + + Graphics 圖形 - - + + Enhancements 增強性功能 - - - + + + Audio 音效 - - + + Camera 相機 - - + + Debug 除錯 - - + + Storage 存儲 - - + + Web 網路 - - + + UI 介面 - + Controls 控制 - + Advanced 高級選項 @@ -1008,278 +1008,278 @@ Would you like to ignore the error and continue? ConfigureEnhancements - + Form 類型 - + Renderer 渲染器 - + Internal Resolution 內部分辨率 - + Auto (Window Size) 自動 (窗口大小) - + Native (400x240) 原始 (400x240) - + 2x Native (800x480) 2倍 (800x480) - + 3x Native (1200x720) 3倍 (1200x720) - + 4x Native (1600x960) 4倍 (1600x960) - + 5x Native (2000x1200) 5倍 (2000x1200) - + 6x Native (2400x1440) 6倍 (2400x1440) - + 7x Native (2800x1680) 7倍 (2800x1680) - + 8x Native (3200x1920) 8倍 (3200x1920) - + 9x Native (3600x2160) 9倍 (3600x2160) - + 10x Native (4000x2400) 10倍 (4000x2400) - + Enable Linear Filtering 啟用線性過濾 - + Post-Processing Shader 後期處理著色器 - + Texture Filter 紋理濾鏡 - + None - + Anime4K Anime4K - + Bicubic 雙三線過濾 - + ScaleForce 強制縮放 - + xBRZ xBRZ - + MMPX MMPX - + Stereoscopy 畫面立體 - + Stereoscopic 3D Mode 立體 3D 模式 - + Off 關閉 - - + + Side by Side 並排屏幕 - + Anaglyph 立體圖形 - + Interlaced 交錯 - + Reverse Interlaced 逆向交錯 - + Depth 畫面深度 - + % % - + Eye to Render in Monoscopic Mode 單眼成像模式的渲染視野 - + Left Eye (default) 左視野 (默認) - + Right Eye 右視野 - + Layout 佈局 - + Screen Layout: 屏幕佈局: - + Default 默認 - + Single Screen 單屏 - + Large Screen 大屏 - + Separate Windows 分離窗口 - + Hybrid Screen 混合式屏幕 - + Swap Screens 交換上下屏 - + Rotate Screens Upright 垂直式畫面旋轉 - + Large Screen Proportion: 大屏比例: - + Background Color: 背景顏色: - + Utility 工具 - + <html><head/><body><p>Replace textures with PNG files.</p><p>Textures are loaded from load/textures/[Title ID]/.</p></body></html> <html><head/><body><p>使用 PNG 文件進行紋理的替換。 </p><p>將於 load/textures/[Title ID]/ 目錄下加載紋理文件。 </p></body></html> - + Use Custom Textures 使用自定義紋理 - + <html><head/><body><p>Dump textures to PNG files.</p><p>Textures are dumped to dump/textures/[Title ID]/.</p></body></html> <html><head/><body><p>使用 PNG 文件進行紋理的替換。 </p><p>將於 load/textures/[Title ID]/ 目錄下加載紋理文件。 </p></body></html> - + Dump Textures 轉儲紋理文件 - + <html><head/><body><p>Load all custom textures into memory on boot, instead of loading them when the game requires them.</p></body></html> <html><head/><body><p>遊戲啟動時將所有的自定義紋理加載到內存中,而不是在需要時才進行加載。 </p></body></html> - + Preload Custom Textures 預加載自定義紋理 - + <html><head/><body><p>Load custom textures asynchronously with background threads to reduce loading stutter</p></body></html> <html><head/><body><p>在後台線程中異步加載自定義紋理,以減少加載帶來的卡頓</p></body></html> - + Async Custom Texture Loading 異步加載自定義紋理 @@ -1287,136 +1287,136 @@ Would you like to ignore the error and continue? ConfigureGeneral - + Form Form - + General 一般 - + Confirm exit while emulation is running 在遊戲執行中離開時確認 - + Pause emulation when in background 模擬器位於後台時暫停模擬 - + Mute audio when in background - + Hide mouse on inactivity 自動隱藏鼠標光標 - + Enable Gamemode - + Updates 更新 - + Check for updates on start 啟動時檢查更新 - + Silently auto update after closing 關閉後在背景自動更新 - + Emulation 模擬 - + Region: 地區: - + Auto-select 自動選擇 - + Use global emulation speed 使用全局模擬速度 - + Set emulation speed: 設置模擬速度: - + Emulation Speed: 模擬速度: - + Screenshots 截圖 - + Use global screenshot path 使用全局截圖保存位置 - + Set screenshot path: 截圖保存位置: - + Save Screenshots To 將截圖保存至 - + ... - + Reset All Settings 全部重設 - - - - - + + + + + unthrottled 無限制 - + Select Screenshot Directory 選擇截圖保存目錄 - + Citra Citra - + Are you sure you want to <b>reset your settings</b> and close Citra? 您確定要重設<b>所有設定</b>並關閉 Citra 嗎? @@ -1424,157 +1424,157 @@ Would you like to ignore the error and continue? ConfigureGraphics - + Form Form - + Graphics 圖形 - + API Settings API 設置 - + Graphics API 圖形 API - + Software 軟件 - + OpenGL OpenGL - + Vulkan - + Physical Device - + OpenGL Renderer - + SPIR-V Shader Generation - + Renderer 繪製 - + <html><head/><body><p>Use the selected graphics API to accelerate shader emulation.</p><p>Requires a relatively powerful GPU for better performance.</p></body></html> - + Enable Hardware Shader 啟用硬體著色 - + <html><head/><body><p>Correctly handle all edge cases in multiplication operation in shaders. </p><p>Some games requires this to be enabled for the hardware shader to render properly.</p><p>However this would reduce performance in most games.</p></body></html> <html><head/><body><p>在著色時正確控制所有圖形增值的邊緣樣本,因為 3DS 的 GPU 增值不同於 OpenGL 裡的 GLSL 增值,所以做了一些負面更動讓如 Intel 等的內顯在執行 GLSL 增值能像 3DS 的 GPU。</p><p>部分遊戲需要啟用才能正確著色。</p><p>會些許降低遊戲的速度。</p></body></html> - + Accurate Multiplication 精準著色增值 - + <html><head/><body><p>Use the JIT engine instead of the interpreter for software shader emulation. </p><p>Enable this for better performance.</p></body></html> <html><head/><body><p>使用即時編譯(JIT)引擎取代解譯器進行軟體著色模擬。</p><p>可提高遊戲速度。</p></body></html> - + Enable Shader JIT 啟用 JIT 著色 - + <html><head/><body><p>Compile shaders using background threads to avoid shader compilation stutter. Expect temporary graphical glitches</p></body></html> - + Enable Async Shader Compilation - + <html><head/><body><p>Perform presentation on separate threads. Improves performance when using Vulkan in most games.</p></body></html> - + Enable Async Presentation - + Advanced 高級選項 - + <html><head/><body><p>Overrides the sampling filter used by games. This can be useful in certain cases with poorly behaved games when upscaling. If unsure set this to Game Controlled</p></body></html> - + Texture Sampling - + Game Controlled - + Nearest Neighbor - + Linear - + <html><head/><body><p>Reduce stuttering by storing and loading generated shaders to disk.</p></body></html> <html><head/><body><p>將著色器緩存到硬盤並通過加載這些緩存減少游戲的卡頓。 </p></body></html> - + Use Disk Shader Cache 啟用磁盤著色器緩存 - + VSync prevents the screen from tearing, but some graphics cards have lower performance with VSync enabled. Keep it enabled if you don't notice a performance difference. 垂直同步可防止畫面產生撕裂感。但啟用垂直同步後,某些設備性能可能會有所降低。如果您沒有感到性能差異,請保持啟用狀態。 - + Enable VSync @@ -1582,63 +1582,63 @@ Would you like to ignore the error and continue? ConfigureHotkeys - + Hotkey Settings 熱鍵設定 - + Double-click on a binding to change it. 請雙擊列表中的項目以更改設定 - + Clear All - + Restore Defaults - + Action 動作 - + Hotkey 熱鍵 - - + + Conflicting Key Sequence 按鍵排序衝突 - + The entered key sequence is already assigned to: %1 - + A 3ds button - + Restore Default - + Clear - + The default key sequence is already assigned to: %1 @@ -1646,307 +1646,307 @@ Would you like to ignore the error and continue? ConfigureInput - + ConfigureInput ConfigureInput - + Profile 設定檔 - + New 建立 - + Delete 删除 - + Rename 重新命名 - + Face Buttons 主要按鈕 - + Y: Y: - + X: X: - + B: B: - + A: A: - + Directional Pad 十字鍵 - - - + + + Up: 上: - - - + + + Down: 下: - - - + + + Left: 左: - - - + + + Right: 右: - + Misc. 其他 - + Start: 開始: - + Select: 選擇: - + Home: 主畫面: - + Power: - + Circle Mod: 輕推搖桿: - + GPIO14: GPIO14: - + Debug: 除錯: - + Circle Pad 主搖桿 - - - + + + Set Analog Stick 設定類比搖桿 - - + + Deadzone: 0 - + C-Stick 微型搖桿 - + Shoulder Buttons 上側按鈕 - + ZR: ZR: - + ZL: ZL: - + L: L: - + R: R: - + Motion / Touch... 體感 / 觸控… - + Auto Map - + Clear All 全部清除 - + Restore Defaults 還原預設 - - - + + + Clear 清除 - - - + + + [not set] [ 無設定 ] - - - + + + Restore Default 還原成預設值 - - + + Information 說明 - + After pressing OK, first move your joystick horizontally, and then vertically. 按下確定後,水平移動手把,然後再垂直移動手把。 - - + + Deadzone: %1% - - + + Modifier Scale: %1% - + Warning - + Auto mapping failed. Your controller may not have a corresponding mapping - + After pressing OK, press any button on your joystick - + [press key] [ 請輸入按鍵 ] - + Error! 錯誤! - + You're using a key that's already bound. 這個按鍵已被其他動作使用。 - + New Profile 建立設定檔 - + Enter the name for the new profile. 請輸入新的設定檔名稱。 - + Delete Profile 删除設定檔 - + Delete profile %1? 删除設定檔「%1」? - + Rename Profile 重新命名設定檔 - + New name: 新名稱: - + Duplicate profile name 設定檔名稱重複 - + Profile name already exists. Please choose a different name. 設定檔名稱已存在,請選擇其他名稱。 @@ -1954,198 +1954,198 @@ Would you like to ignore the error and continue? ConfigureMotionTouch - + Configure Motion / Touch 體感和觸控設定 - + Motion 體感 - + Motion Provider: 體感供應: - + Sensitivity: 靈敏度: - + Controller: - - - - - + + + + + Configure 設定 - + Touch 觸控 - + Touch Provider: 觸控供應: - + Calibration: 校正: - + (100, 50) - (1800, 850) (100, 50) - (1800, 850) - + Use button mapping: - + CemuhookUDP Config CemuhookUDP 設定 - + You may use any Cemuhook compatible UDP input source to provide motion and touch input. 您可以使用任何 Cemuhook 相容的 UDP 輸入來源以提供體感和觸控輸入。 - + Server: 伺服器: - + Port: 連接埠: - + Pad: 手把: - + Pad 1 手把 1 - + Pad 2 手把 2 - + Pad 3 手把 3 - + Pad 4 手把 4 - + Learn More 了解更多 - - + + Test 測試 - + Mouse (Right Click) 滑鼠右鍵 - - + + CemuhookUDP CemuhookUDP - + SDL - + Emulator Window 模擬器視窗 - + <a href='https://citra-emu.org/wiki/using-a-controller-or-android-phone-for-motion-or-touch-input'><span style="text-decoration: underline; color:#039be5;">Learn More</span></a> <a href='https://citra-emu.org/wiki/using-a-controller-or-android-phone-for-motion-or-touch-input'><span style="text-decoration: underline; color:#039be5;">了解更多</span></a> - + Information - + After pressing OK, press a button on the controller whose motion you want to track. - + [press button] - + Testing 測試中 - + Configuring 設定中 - + Test Successful 測試成功 - + Successfully received data from the server. 已成功從伺服器接收資料。 - + Test Failed 測試失敗 - + Could not receive valid data from the server.<br>Please verify that the server is set up correctly and the address and port are correct. 無法從伺服器接收有效資料。<br>請檢查伺服器,並確認地址和連接埠輸入正確。 - + Citra Citra - + UDP Test or calibration configuration is in progress.<br>Please wait for them to finish. 正在進行 UDP 測試或校正。<br>請等候其完成。 @@ -2153,97 +2153,97 @@ Would you like to ignore the error and continue? ConfigurePerGame - + Dialog - + Info - + Size - + Format - + Name - + Filepath - + Title ID - + Reset Game Settings - + Use global configuration (%1) - + General - + System - + Enhancements - + Graphics - + Audio - + Debug - + Cheats - + Properties - + Citra - + Are you sure you want to <b>reset your settings for this game</b>? @@ -2251,65 +2251,65 @@ Would you like to ignore the error and continue? ConfigureStorage - + Form - + Storage - + Use Virtual SD - + Custom Storage - + Use Custom Storage - + NAND Directory - - + + Open - - + + NOTE: This does not move the contents of the previous directory to the new one. - - + + Change - + SDMC Directory - + Select NAND Directory - + Select SDMC Directory @@ -2317,1064 +2317,1064 @@ Would you like to ignore the error and continue? ConfigureSystem - + Form Form - + System Settings 系統設定 - + Enable New 3DS mode - + Use LLE applets (if installed) - + Username 使用者名稱 - + Birthday 生日 - + January 一月 - + February 二月 - + March 三月 - + April 四月 - + May 五月 - + June 六月 - + July 七月 - + August 八月 - + September 九月 - + October 十月 - + November 十一月 - + December 十二月 - + Language 語言 - + Note: this can be overridden when region setting is auto-select 注意:當「地區」設定是自動時,會覆寫這個設定。 - + Japanese (日本語) 日文 (日本語) - + English 英文 (English) - + French (français) 法文 (français) - + German (Deutsch) 德文 (Deutsch) - + Italian (italiano) 義大利文 (Italiano) - + Spanish (español) 西班牙文 (Español) - + Simplified Chinese (简体中文) 簡體中文 (简体中文) - + Korean (한국어) 韓文 (한국어) - + Dutch (Nederlands) 荷蘭文 (Nederlands) - + Portuguese (português) 葡萄牙文 (Português) - + Russian (Русский) 俄文 (Русский) - + Traditional Chinese (正體中文) 正體中文 (正體中文) - + Sound output mode 聲音輸出模式 - + Mono 單聲道 - + Stereo 立體聲 - + Surround 環繞 - + Country 國家 - + Clock 時鐘 - + System Clock 系統時鐘 - + Fixed Time 固定時間 - + Startup time 每次開始的時間 - + yyyy-MM-ddTHH:mm:ss yyyy-MM-ddTHH:mm:ss - + Offset time - + days - + HH:mm:ss - + Initial System Ticks - + Random - + Fixed - + Initial System Ticks Override - + Play Coins: 遊戲代幣 - + Run System Setup when Home Menu is launched - + Console ID: 裝置 ID: - + Regenerate 更換 ID - + 3GX Plugin Loader: - + Enable 3GX plugin loader - + Allow games to change plugin loader state - + Download System Files from Nitendo servers - + Minimal - + Old 3DS - + New 3DS - + JPN - + USA - + EUR - + AUS - + CHN - + KOR - + TWN - + Download - + System settings are available only when game is not running. 遊戲執行時不能更改系統設定。 - + Japan 日本 - + Anguilla 安圭拉 - + Antigua and Barbuda 安地卡及巴布達 - + Argentina 阿根廷 - + Aruba 阿魯巴 - + Bahamas 巴哈馬 - + Barbados 巴貝多 - + Belize 貝里斯 - + Bolivia 玻利維亞 - + Brazil 巴西 - + British Virgin Islands 維京群島 - + Canada 加拿大 - + Cayman Islands 開曼群島 - + Chile 智利 - + Colombia 哥倫比亞 - + Costa Rica 哥斯大黎加 - + Dominica 多米尼克 - + Dominican Republic 多明尼加 - + Ecuador 厄瓜多 - + El Salvador 薩爾瓦多 - + French Guiana 圭亞那 - + Grenada 格瑞那達 - + Guadeloupe 瓜德羅普 - + Guatemala 瓜地馬拉 - + Guyana 蓋亞那 - + Haiti 海地 - + Honduras 宏都拉斯 - + Jamaica 牙買加 - + Martinique 馬丁尼克 - + Mexico 墨西哥 - + Montserrat 蒙哲臘 - + Netherlands Antilles 安地列斯群島 - + Nicaragua 尼加拉瓜 - + Panama 巴拿馬 - + Paraguay 巴拉圭 - + Peru 秘魯 - + Saint Kitts and Nevis 聖克里斯多福及尼維斯 - + Saint Lucia 聖露西亞 - + Saint Vincent and the Grenadines 聖文森及格瑞那丁 - + Suriname 蘇利南 - + Trinidad and Tobago 千里達及托巴哥 - + Turks and Caicos Islands 土克凱可群島 - + United States 美國 - + Uruguay 烏拉圭 - + US Virgin Islands 美屬維京群島 - + Venezuela 委内瑞拉 - + Albania 阿爾巴尼亞 - + Australia 澳洲 - + Austria 奧地利 - + Belgium 比利時 - + Bosnia and Herzegovina 波士尼亞與赫塞哥維納 - + Botswana 波札那 - + Bulgaria 保加利亞 - + Croatia 克羅埃西亞 - + Cyprus 賽普勒斯 - + Czech Republic 捷克 - + Denmark 丹麥 - + Estonia 愛沙尼亞 - + Finland 芬蘭 - + France 法國 - + Germany 德國 - + Greece 希臘 - + Hungary 匈牙利 - + Iceland 冰島 - + Ireland 愛爾蘭 - + Italy 義大利 - + Latvia 拉脫維亞 - + Lesotho 賴索托 - + Liechtenstein 列支敦斯登 - + Lithuania 立陶宛 - + Luxembourg 盧森堡 - + Macedonia 馬其頓 - + Malta 馬爾他 - + Montenegro 蒙特內哥羅 - + Mozambique 莫三比克 - + Namibia 納米比亞 - + Netherlands 荷蘭 - + New Zealand 紐西蘭 - + Norway 挪威 - + Poland 波蘭 - + Portugal 葡萄牙 - + Romania 羅馬尼亞 - + Russia 俄羅斯 - + Serbia 塞爾維亞 - + Slovakia 斯洛伐克 - + Slovenia 斯洛維尼亞 - + South Africa 南非 - + Spain 西班牙 - + Swaziland 史瓦帝尼 - + Sweden 瑞典 - + Switzerland 瑞士 - + Turkey 土耳其 - + United Kingdom 英國 - + Zambia 尚比亞 - + Zimbabwe 辛巴威 - + Azerbaijan 亞塞拜然 - + Mauritania 茅利塔尼亞 - + Mali 馬利 - + Niger 尼日 - + Chad 查德 - + Sudan 蘇丹 - + Eritrea 厄利垂亞 - + Djibouti 吉布地 - + Somalia 索馬利亞 - + Andorra 安道爾 - + Gibraltar 直布羅陀 - + Guernsey 耿西 - + Isle of Man 曼島 - + Jersey 澤西 - + Monaco 摩納哥 - + Taiwan 台灣 - + South Korea 南韓 - + Hong Kong 香港 - + Macau 澳門 - + Indonesia 印尼 - + Singapore 新加坡 - + Thailand 泰國 - + Philippines 菲律賓 - + Malaysia 馬來西亞 - + China 中國 - + United Arab Emirates 阿聯 - + India 印度 - + Egypt 埃及 - + Oman 阿曼 - + Qatar 卡達 - + Kuwait 科威特 - + Saudi Arabia 沙烏地阿拉伯 - + Syria 敘利亞 - + Bahrain 巴林 - + Jordan 約旦 - + San Marino 聖馬利諾 - + Vatican City 梵蒂岡 - + Bermuda 百慕達 - + Download System Files from Nintendo servers - + Citra is missing keys to download system files. <br><a href='https://citra-emu.org/wiki/aes-keys/'><span style="text-decoration: underline; color:#039be5;">How to get keys?</span></a> - - + + Console ID: 0x%1 裝置 ID:0x%1 - + This will replace your current virtual 3DS with a new one. Your current virtual 3DS will not be recoverable. This might have unexpected effects in games. This might fail, if you use an outdated config savegame. Continue? 更換 ID 等同於更換一台 3DS,產生新 ID 後將無法還原目前 ID,且可能造成部分遊戲出現錯誤。如果您的遊戲存檔使用過期設定,可能造成這個動作失敗。確定繼續嗎? - + Warning 警告 - + Downloading files... - + Cancel - - + + Citra - + Downloading system files failed. - + Successfully downloaded system files. @@ -3382,90 +3382,90 @@ Would you like to ignore the error and continue? ConfigureTouchFromButton - + Configure Touchscreen Mappings - + Mapping: - + New - + Delete - + Rename - + Click the bottom area to add a point, then press a button to bind. Drag points to change position, or double-click table cells to edit values. - + Delete Point - + Button - + X X axis - + Y Y axis - + New Profile - + Enter the name for the new profile. - + Delete Profile - + Delete profile %1? - + Rename Profile - + New name: - + [press key] @@ -3473,113 +3473,113 @@ Drag points to change position, or double-click table cells to edit values. ConfigureUi - + Form Form - + General 一般 - + Note: Changing language will apply your configuration. 注意:切換語言的同時將會套用其他設定。 - + Interface language: 介面語言: - + Theme: 主題: - + Game List 遊戲列表 - + Icon Size: 圖示大小: - - + + None - + Small (24x24) 小(24 X 24) - + Large (48x48) 大(48 X 48) - + Row 1 Text: 第一行: - - + + File Name 檔案名稱 - - + + Full Path 完整路徑 - - + + Title Name (short) - - + + Title ID 遊戲 ID - - + + Title Name (long) - + Row 2 Text: 第二行: - + Hide Titles without Icon 隱藏不能執行的遊戲 - + Single Line Mode - + <System> < 系統 > - + English English @@ -3587,135 +3587,135 @@ Drag points to change position, or double-click table cells to edit values. ConfigureWeb - + Form Form - + Citra Web Service Citra 網路服務 - + By providing your username and token, you agree to allow Citra to collect additional usage data, which may include user identifying information. 提供使用者名稱和權杖,即代表您同意讓 Citra 收集額外的使用資料,其中可能包含使用者辨識資訊。 - - + + Verify 驗證 - + Sign up 註冊 - + Token: 權杖: - + Username: 使用者名稱: - + What is my token? 什麼是 Citra 權杖? - + Web Service configuration can only be changed when a public room isn't being hosted. 您不能在公共房間建立時更改網路服務設定。 - + Telemetry 遠端遙測 - + Share anonymous usage data with the Citra team 分享匿名使用資料給 Citra 團隊 - + Learn more 了解更多 - + Telemetry ID: 遙測 ID: - + Regenerate 更換 ID - + Discord Presence Discord 狀態 - + Show Current Game in your Discord Status 在 Discord 狀態中顯示正在玩的遊戲 - + <a href='https://citra-emu.org/entry/telemetry-and-why-thats-a-good-thing/'><span style="text-decoration: underline; color:#039be5;">Learn more</span></a> <a href='https://citra-emu.org/entry/telemetry-and-why-thats-a-good-thing/'><span style="text-decoration: underline; color:#039be5;">了解更多</span></a> - + <a href='https://profile.citra-emu.org/'><span style="text-decoration: underline; color:#039be5;">Sign up</span></a> <a href='https://profile.citra-emu.org/'><span style="text-decoration: underline; color:#039be5;">註冊</span></a> - + <a href='https://citra-emu.org/wiki/citra-web-service/'><span style="text-decoration: underline; color:#039be5;">What is my token?</span></a> <a href='https://citra-emu.org/wiki/citra-web-service/'><span style="text-decoration: underline; color:#039be5;">什麼是 Citra 權杖?</span></a> - - + + Unspecified - - + + Telemetry ID: 0x%1 遙測 ID:0x%1 - + Token not verified - + Token was not verified. The change to your token has not been saved. - + Verifying... 驗證中… - + Verification failed 驗證失敗 - + Verification failed. Check that you have entered your token correctly, and that your internet connection is working. @@ -3723,47 +3723,47 @@ Drag points to change position, or double-click table cells to edit values. DirectConnect - + Direct Connect 連線到特定房間 - + Server Address - + <html><head/><body><p>Server address of the host</p></body></html> - + Port 連接埠 - + <html><head/><body><p>Port number the host is listening on</p></body></html> <html><head/><body><p>主機監聽的連接埠</p></body></html> - + 24872 24872 - + Nickname 暱稱 - + Password 密碼 - + Connect 連線 @@ -3771,12 +3771,12 @@ Drag points to change position, or double-click table cells to edit values. DirectConnectWindow - + Connecting 連線中 - + Connect 連線 @@ -3784,110 +3784,110 @@ Drag points to change position, or double-click table cells to edit values. DumpingDialog - + Dump Video - + Output - + Format: - - - + + + Options: - - - - + + + + ... - + Path: - + Video - - + + Encoder: - - + + Bitrate: - - + + bps - + Audio - - + + Citra - + Please specify the output path. - + output formats - + video encoders - + audio encoders - + Could not find any available %1. Please check your FFmpeg installation used for compilation. - - - - + + + + %1 (%2) - + Select Video Output Path @@ -3895,419 +3895,419 @@ Please check your FFmpeg installation used for compilation. GMainWindow - + <a href='https://citra-emu.org/entry/telemetry-and-why-thats-a-good-thing/'>Anonymous data is collected</a> to help improve Citra. <br/><br/>Would you like to share your usage data with us? <a href='https://citra-emu.org/entry/telemetry-and-why-thats-a-good-thing/'>收集匿名的使用資料</a>可以用來改善 Citra。<br/><br/>您同意將您的使用資料分享給 Citra 嗎? - + Telemetry 遠端遙測 - + No Suitable Vulkan Devices Detected - + Vulkan initialization failed during boot.<br/>Your GPU may not support Vulkan 1.1, or you do not have the latest graphics driver. - - + + Current emulation speed. Values higher or lower than 100% indicate emulation is running faster or slower than a 3DS. 目前模擬速度, 「高於/低於」100% 代表模擬速度比 3DS 實機「更快/更慢」。 - - + + How many frames per second the game is currently displaying. This will vary from game to game and scene to scene. 遊戲目前的 FPS,不同的遊戲和場景會有不同數值。 - - + + Time taken to emulate a 3DS frame, not counting framelimiting or v-sync. For full-speed emulation this should be at most 16.67 ms. 不計算影格限制或垂直同步時, 模擬一個 3DS 影格所花的時間。全速模擬時,這個數值最多應為 16.67 毫秒。 - + Clear Recent Files 清除檔案使用紀錄 - + &Continue - + &Pause - + Update Available 有新的版本 - + An update is available. Would you like to install it now? Citra 有新的版本,您要馬上安裝嗎? - + No Update Found 找不到新的版本 - + No update is found. 找不到新版的 Citra。 - + Citra is running a game TRANSLATORS: This string is shown to the user to explain why Citra needs to prevent the computer from sleeping - - + + Invalid ROM Format 不支援的 ROM 格式 - - + + Your ROM format is not supported.<br/>Please follow the guides to redump your <a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>game cartridges</a> or <a href='https://citra-emu.org/wiki/dumping-installed-titles/'>installed titles</a>. Citra 不支援這個 ROM 的格式,常見的可執行格式為 .3ds、.cci…等。<br/>請參考以下 wiki 網頁重新取得 ROM:<a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>傾印遊戲卡帶</a>或<a href='https://citra-emu.org/wiki/dumping-installed-titles/'>傾印已安裝的遊戲</a>。 - + ROM Corrupted ROM 不完整 - + Your ROM is corrupted. <br/>Please follow the guides to redump your <a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>game cartridges</a> or <a href='https://citra-emu.org/wiki/dumping-installed-titles/'>installed titles</a>. 這個 ROM 檔案不完整。<br/>請參考以下 wiki 網頁重新取得 ROM:<a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>傾印遊戲卡帶</a>或<a href='https://citra-emu.org/wiki/dumping-installed-titles/'>傾印已安裝的遊戲</a>。 - + ROM Encrypted ROM 未解密 - + Your ROM is encrypted. <br/>Please follow the guides to redump your <a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>game cartridges</a> or <a href='https://citra-emu.org/wiki/dumping-installed-titles/'>installed titles</a>. 這個遊戲沒有解密,Citra 只能執行已解密的遊戲。正規的解密方式需要 3DS 實機。<br/>請參考以下 wiki 網頁重新取得 ROM:<a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>傾印遊戲卡帶</a>或<a href='https://citra-emu.org/wiki/dumping-installed-titles/'>傾印已安裝的遊戲</a>。 - + Unsupported ROM - + GBA Virtual Console ROMs are not supported by Citra. - + Error while loading ROM! 讀取 ROM 時出現錯誤! - + An unknown error occurred. Please see the log for more details. - + CIA must be installed before usage CIA 檔案必須先安裝 - + Before using this CIA, you must install it. Do you want to install it now? CIA 檔案必須先安裝才能夠執行。您現在要安裝這個檔案嗎? - - + + Slot %1 - + Slot %1 - %2 %3 - + Error Opening %1 Folder 開啟 %1 資料夾時錯誤 - - + + Folder does not exist! 資料夾不存在! - + Dumping... - - + + Cancel - - - - - - - - - + + + + + + + + + Citra Citra - + Could not dump base RomFS. Refer to the log for details. - + Error Opening %1 開啟 %1 時錯誤 - + Select Directory 選擇目錄 - + Properties - + The game properties could not be loaded. - + 3DS Executable (%1);;All Files (*.*) %1 is an identifier for the 3DS executable file extensions. 3DS 可執行檔案 (%1);;所有檔案 (*.*) - + Load File 讀取檔案 - + Load Files 讀取多個檔案 - + 3DS Installation File (*.CIA*) 3DS 安裝檔 (*.CIA) - + All Files (*.*) 所有檔案 (*.*) - + %1 has been installed successfully. 已成功安裝 %1。 - + Unable to open File 無法開啟檔案 - + Could not open %1 無法開啟 %1 - + Installation aborted 安裝中斷 - + The installation of %1 was aborted. Please see the log for more details 安裝 %1 時中斷,請參閱日誌了解細節。 - + Invalid File 無效的檔案 - + %1 is not a valid CIA %1 不是有效的 CIA 檔案 - + Encrypted File 檔案未解密 - + %1 must be decrypted before being used with Citra. A real 3DS is required. %1 需要先解密才能在 Citra 執行,正規的解密方式需要 3DS 實機。 - + Unable to find File - + Could not find %1 - + Uninstalling '%1'... - + Failed to uninstall '%1'. - + Successfully uninstalled '%1'. - + File not found 找不到檔案 - + File "%1" not found 找不到「%1」 - + Missing Citra Account 找不到 Citra 帳號 - + You must link your Citra account to submit test cases.<br/>Go to Emulation &gt; Configure... &gt; Web to do so. 提交遊戲相容性測試樣本前,必須連結您的 Citra 帳號。<br/>請點擊介面上方:模擬 > 設定…,然後在「網路」標籤頁中連結您的帳號。 - + Savestates - + Warning: Savestates are NOT a replacement for in-game saves, and are not meant to be reliable. Use at your own risk! - - - + + + Error opening amiibo data file - + A tag is already in use. - + Game is not looking for amiibos. - + Amiibo File (%1);; All Files (*.*) Amiibo 檔案 (%1);;所有檔案 (*.*) - + Load Amiibo 讀取 Amiibo - + Unable to open amiibo file "%1" for reading. - + Record Movie 錄影 - + Movie recording cancelled. 錄影已取消。 - - + + Movie Saved 已儲存影片 - - + + The movie is successfully saved. 影片儲存成功。 - + Invalid Screenshot Directory - + Cannot create specified screenshot directory. Screenshot path is set back to its default value. - + Could not load video dumper - + FFmpeg could not be loaded. Make sure you have a compatible version installed. To install FFmpeg to Citra, press Open and select your FFmpeg directory. @@ -4316,158 +4316,158 @@ To view a guide on how to install FFmpeg, press Help. - + Select FFmpeg Directory - + The provided FFmpeg directory is missing %1. Please make sure the correct directory was selected. - + FFmpeg has been sucessfully installed. - + Installation of FFmpeg failed. Check the log file for details. - + Could not start video dumping.<br>Refer to the log for details. - + Recording %1 - + Playing %1 / %2 - + Movie Finished - + Speed: %1% 速度:%1% - + Speed: %1% / %2% 速度:%1% / %2% - + Game: %1 FPS FPS:%1 - + Frame: %1 ms 影格:%1 ms - + VOLUME: MUTE - + VOLUME: %1% Volume percentage (e.g. 50%) - + %1 is missing. Please <a href='https://citra-emu.org/wiki/dumping-system-archives-and-the-shared-fonts-from-a-3ds-console/'>dump your system archives</a>.<br/>Continuing emulation may result in crashes and bugs. 找不到系統檔「%1」,您讀取的遊戲需要<a href='https://citra-emu.org/wiki/dumping-system-archives-and-the-shared-fonts-from-a-3ds-console/'> 3DS 實機傾印的系統檔案</a>才能執行。<br/>繼續模擬可能造成當機、存檔不完整或其他錯誤。 - + A system archive - + System Archive Not Found 找不到系統檔案 - + System Archive Missing - + Save/load Error - + Fatal Error 嚴重錯誤 - + A fatal error occurred. <a href='https://community.citra-emu.org/t/how-to-upload-the-log-file/296'>Check the log</a> for details.<br/>Continuing emulation may result in crashes and bugs. - + Fatal Error encountered - + Continue 繼續 - + Quit Game - + OK - + Would you like to exit now? 您確定要離開嗎? - + The game is still running. Would you like to stop emulation? 遊戲還在執行中,您確定要中斷嗎? - + Playback Completed 播放完成 - + Movie playback completed. 影片已結束播放。 - + Primary Window - + Secondary Window @@ -4475,22 +4475,22 @@ To view a guide on how to install FFmpeg, press Help. GPUCommandListModel - + Command Name 命令名稱 - + Register 暫存器 - + Mask 遮罩 - + New Value 新數值 @@ -4498,23 +4498,23 @@ To view a guide on how to install FFmpeg, press Help. GPUCommandListWidget - + Pica Command List Pica 命令列表 - - + + Start Tracing 開始追蹤 - + Copy All 全部複製 - + Finish Tracing 結束追蹤 @@ -4522,7 +4522,7 @@ To view a guide on how to install FFmpeg, press Help. GPUCommandStreamWidget - + Graphics Debugger 圖形除錯器 @@ -4530,42 +4530,42 @@ To view a guide on how to install FFmpeg, press Help. GRenderWindow - + OpenGL not available! - + OpenGL shared contexts are not supported. - + Error while initializing OpenGL! - + Your GPU may not support OpenGL, or you do not have the latest graphics driver. - + Error while initializing OpenGL 4.3! - + Your GPU may not support OpenGL 4.3, or you do not have the latest graphics driver.<br><br>GL Renderer:<br>%1 - + Error while initializing OpenGL ES 3.2! - + Your GPU may not support OpenGL ES 3.2, or you do not have the latest graphics driver.<br><br>GL Renderer:<br>%1 @@ -4573,193 +4573,193 @@ To view a guide on how to install FFmpeg, press Help. GameList - - + + Compatibility 相容性 - - + + Region 地區 - - + + File type 檔案類型 - - + + Size 大小 - + Open Save Data Location 開啟存檔位置 - + Open Extra Data Location 開啟其他資料檔位置 - + Open Application Location 開啟應用程式位置 - + Open Update Data Location 開啟更新檔位置 - + Open DLC Data Location - + Open Texture Dump Location - + Open Custom Texture Location - + Open Mods Location - + Dump RomFS - + Disk Shader Cache - + Open Shader Cache Location - + Delete OpenGL Shader Cache - + Uninstall - + Everything - + Game - + Update - + DLC - + Navigate to GameDB entry 開啟遊戲相容性網頁 - + Properties - - - - + + + + Citra - + Are you sure you want to completely uninstall '%1'? This will delete the game if installed, as well as any installed updates or DLC. - - + + %1 (Update) - - + + %1 (DLC) - + Are you sure you want to uninstall '%1'? - + Are you sure you want to uninstall the update for '%1'? - + Are you sure you want to uninstall all DLC for '%1'? - + Scan Subfolders 掃描子資料夾 - + Remove Game Directory 在列表中移除此路徑 - + Move Up - + Move Down - + Open Directory Location 開啟資料夾位置 - + Name 名稱 @@ -4767,82 +4767,82 @@ This will delete the game if installed, as well as any installed updates or DLC. GameListItemCompat - + Perfect 完美 - + Game functions flawless with no audio or graphical glitches, all tested functionality works as intended without any workarounds needed. 遊戲完美執行,沒有音效或圖形錯誤。 所有已測試的功能都正常運作,不需替代方案完成遊戲。 - + Great 良好 - + Game functions with minor graphical or audio glitches and is playable from start to finish. May require some workarounds. 遊戲執行時有一點圖形或音效錯誤,但可以從開始玩到結局。 可能需要一些替代方案。 - + Okay 普通 - + Game functions with major graphical or audio glitches, but game is playable from start to finish with workarounds. 遊戲執行時有許多圖形或音效錯誤, 但可以用替代方案從開始玩到結局。 - + Bad 不好 - + Game functions, but with major graphical or audio glitches. Unable to progress in specific areas due to glitches even with workarounds. 遊戲可以執行,但有許多圖形或音效錯誤, 且沒有替代方案能通過出現錯誤的地方。 - + Intro/Menu 片頭/選單 - + Game is completely unplayable due to major graphical or audio glitches. Unable to progress past the Start Screen. 遊戲因為許多圖形或音效的錯誤完全不能執行, 且進入片頭或選單後當機。 - + Won't Boot 無法啟動 - + The game crashes when attempting to startup. 遊戲啟動時當機。 - + Not Tested 未測試 - + The game has not yet been tested. 遊戲尚未收集到測試樣本。 @@ -4850,7 +4850,7 @@ Screen. GameListPlaceholder - + Double-click to add a new folder to the game list @@ -4858,27 +4858,27 @@ Screen. GameListSearchField - + of / - + result 項符合 - + results 項符合 - + Filter: 項目篩選 - + Enter pattern to filter 輸入項目關鍵字 @@ -4886,47 +4886,47 @@ Screen. GameRegion - + Japan - + North America - + Europe - + Australia - + China - + Korea - + Taiwan - + Invalid region - + Region free @@ -4934,23 +4934,23 @@ Screen. GraphicsBreakPointsWidget - + Pica Breakpoints Pica 斷點 - - + + Emulation running 正在模擬 - + Resume 繼續 - + Emulation halted at breakpoint 模擬停止在斷點 @@ -4958,146 +4958,146 @@ Screen. GraphicsSurfaceWidget - + Pica Surface Viewer Pica 表層檢視器 - + Color Buffer 色彩緩衝 - + Depth Buffer 深度緩衝 - + Stencil Buffer 模板緩衝 - + Texture 0 材質 0 - + Texture 1 材質 1 - + Texture 2 材質 2 - + Custom 自訂 - + Unknown 未知 - + Save 儲存 - + Source: 來源: - + Physical Address: 物理位址: - + Width: 寬: - + Height: 高: - + Format: 格式: - + X: X: - + Y: Y: - + Pixel out of bounds 像素超出邊界 - + (unable to access pixel data) (無法存取像素資料) - + (invalid surface address) (無效的表層位址) - + (unknown surface format) (未知的表層格式) - + Portable Network Graphic (*.png) 可攜式網路圖形 (*.png) - + Binary data (*.bin) 二進制檔案 (*.bin) - + Save Surface 儲存表層 - - - - + + + + Error 錯誤 - - + + Failed to open file '%1' 檔案「%1」開啟失敗 - + Failed to save surface data to file '%1' 無法將表層資料儲存到檔案「%1」 - + Failed to completely write surface data to file. The saved data will likely be corrupt. 無法完整寫入表層資料到檔案,儲存的資料可能會不完整。 @@ -5105,42 +5105,42 @@ Screen. GraphicsTracingWidget - + CiTrace Recorder CiTrace 記錄工具 - + Start Recording 開始記錄 - + Stop and Save 停止並儲存 - + Abort Recording 中斷記錄 - + Save CiTrace 儲存 CiTrace - + CiTrace File (*.ctf) CiTrace 檔案 (*.ctf) - + CiTracing still active CiTrace 仍在記錄中 - + A CiTrace is still being recorded. Do you want to save it? If not, all recorded data will be discarded. CiTrace 仍在記錄中,您要儲存嗎?如果沒有儲存,將會遺棄所有記錄的資料。 @@ -5148,17 +5148,17 @@ Screen. GraphicsVertexShaderModel - + Offset 偏置 - + Raw 原始 - + Disassembly 反組譯 @@ -5166,127 +5166,127 @@ Screen. GraphicsVertexShaderWidget - + Save Shader Dump 儲存著色器傾印 - + Shader Binary (*.shbin) 著色器二進制檔案 (*.shbin) - + Pica Vertex Shader Pica 頂點著色器 - + (data only available at vertex shader invocation breakpoints) (頂點著色器調用斷點時才可使用資料) - + Dump 傾印 - + Input Data 輸入資料 - + Attribute %1 屬性 %1 - + Cycle Index: 循環指標: - + SRC1: %1, %2, %3, %4 來源一:%1, %2, %3, %4 - + SRC2: %1, %2, %3, %4 來源二:%1, %2, %3, %4 - + SRC3: %1, %2, %3, %4 來源三:%1, %2, %3, %4 - + DEST_IN: %1, %2, %3, %4 目標在內:%1, %2, %3, %4 - + DEST_OUT: %1, %2, %3, %4 目標在外:%1, %2, %3, %4 - + Address Registers: %1, %2 位址暫存器:%1, %2 - + Compare Result: %1, %2 比較結果:%1, %2 - + Static Condition: %1 靜態:%1 - + Dynamic Conditions: %1, %2 動態:%1, %2 - + Loop Parameters: %1 (repeats), %2 (initializer), %3 (increment), %4 迴圈參數:%1(重複)、%2(初始)、%3(增量)、%4 - + Instruction offset: 0x%1 指令偏置:0x%1 - + -> 0x%2 -> 0x%2 - + (last instruction) (上一個指令) @@ -5294,67 +5294,67 @@ Screen. HostRoom - + Create Room 建立房間 - + Room Name 房間名稱 - + Preferred Game 首選遊戲 - + Max Players 玩家最大數量 - + Username 使用者名稱 - + (Leave blank for open game) (空白表示無密碼) - + Password 密碼 - + Port 連接埠 - + Room Description 房間敘述 - + Load Previous Ban List 載入先前的阻擋列表 - + Public 公開 - + Unlisted 不列出 - + Host Room 建立房間 @@ -5362,12 +5362,12 @@ Screen. HostRoomWindow - + Error 錯誤 - + Failed to announce the room to the public lobby. In order to host a room publicly, you must have a valid Citra account configured in Emulation -> Configure -> Web. If you do not want to publish a room in the public lobby, then select Unlisted instead. Debug Message: 無法發布公共房間,您必須先在設定介面的「網路」標籤頁中設定有效的 Citra 帳號。如果您不希望在公共房間列表中顯示您的房間,請在下方選擇「不列出」。 @@ -5377,47 +5377,47 @@ Debug Message: IPCRecorder - + IPC Recorder - + Enable Recording - + Filter: - + Leave empty to disable filtering - + # - + Status - + Service - + Function - + Clear @@ -5425,47 +5425,47 @@ Debug Message: IPCRecorderWidget - + Invalid - + Sent - + Handling - + Success - + Error - + HLE Unimplemented - + HLE - + LLE - + Unknown @@ -5473,7 +5473,7 @@ Debug Message: LLEServiceModulesWidget - + Toggle LLE Service Modules 開關 LLE 服務模組 @@ -5481,53 +5481,53 @@ Debug Message: LoadingScreen - + Loading Shaders 387 / 1628 - + Loading Shaders %v out of %m - + Estimated Time 5m 4s - + Loading... - + Preloading Textures %1 / %2 - + Preparing Shaders %1 / %2 - + Loading Shaders %1 / %2 - + Launching... - + Now Loading %1 - + Estimated Time %1 @@ -5535,83 +5535,83 @@ Debug Message: Lobby - + Public Room Browser 公共房間 - - + + Nickname 暱稱 - + Filters 篩選 - + Search 搜尋 - + Games I Own 只顯示擁有的遊戲 - + Hide Empty Rooms - + Hide Full Rooms 隱藏已滿的房間 - + Refresh Lobby 重新整理 - + Password Required to Join 需要密碼 - + Password: 密碼: - + Room Name 房間名稱 - + Preferred Game 首選遊戲 - + Host 建立者 - + Players 玩家數 - + Refreshing 正在重新整理 - + Refresh List 重新整理 @@ -5619,362 +5619,362 @@ Debug Message: MainWindow - + Citra Citra - + &File 檔案 (&F) - + Boot Home Menu - + Recent Files 最近開啟的檔案 - + Amiibo Amiibo - + &Emulation 模擬 (&E) - + Save State - + Load State - + &View 檢視 (&V) - + Debugging 除錯 - + Screen Layout 螢幕布局 - + Multiplayer 多人連線 (&M) - + Tools 工具 - + Movie 影片 - + Frame Advance 步進選項 - + &Help 說明 (&H) - + Load File... 讀取檔案… - + Install CIA... 安裝 CIA… - + JPN - + USA - + EUR - + AUS - + CHN - + KOR - + TWN - + E&xit 離開 (&X) - + &Pause 暫停 (&P) - + &Stop 停止 (&S) - + Save - + Load - + FAQ 常見問題 - + About Citra 關於 Citra - + Single Window Mode 統一視窗 - + Save to Oldest Slot - + Load from Newest Slot - + Configure... 設定… - + Display Dock Widget Headers 顯示小工具的標題 - + Show Filter Bar 顯示項目篩選列 - + Show Status Bar 顯示狀態列 - + Create Pica Surface Viewer 建立 Pica 表層檢視器 - + Record... - + Play... - + Close - + Save without Closing - + Read-Only Mode - + Enable Frame Advancing 啟用步進 - + Advance Frame 步進 - + Capture Screenshot 畫面擷取 - + Dump Video - + Browse Public Game Lobby 瀏覽公共房間 - + Create Room 建立房間 - + Leave Room 離開房間 - + Direct Connect to Room 連線到特定房間 - + Show Current Room 顯示目前房間 - + Fullscreen 全螢幕 - + Modify Citra Install 更改 Citra 安裝細節 - + Opens the maintenance tool to modify your Citra installation 開啟管理工具更改 Citra 的安裝細節 - + Default 預設 - + Single Screen 單一畫面 - + Large Screen 大畫面 - + Hybrid Screen - + Side by Side 並排 - + Separate Windows - + Swap Screens 交換上下畫面 - + Rotate Upright - + Check for Updates 檢查更新 - + Report Compatibility 回報遊戲相容性 - + Restart 重新開始 - + Load... 讀取… - + Remove 移除 - + Open Citra Folder 開啟 Citra 資料夾 - + Configure Current Game... @@ -5982,7 +5982,7 @@ Debug Message: MicroProfileDialog - + MicroProfile MicroProfile @@ -5990,48 +5990,48 @@ Debug Message: ModerationDialog - + Moderation 管理 - + Ban List 阻擋列表 - - + + Refreshing 正在重新整理 - + Unban 解除阻擋 - + Subject 對象 - + Type 類型 - + Forum Username 論壇名稱 - + IP Address IP 位址 - + Refresh 重新整理 @@ -6039,91 +6039,91 @@ Debug Message: MoviePlayDialog - - + + Play Movie - + File: - + ... - + Info - + Game: - + Author: - + Rerecord Count: - + Length: - + Current running game will be stopped. - + <br>Current recording will be discarded. - + Citra TAS Movie (*.ctm) - + Invalid movie file. - + Revision dismatch, playback may desync. - + Indicated length is incorrect, file may be corrupted. - - - - + + + + (unknown) - + Game used in this movie is not in game list. - + (>1 day) @@ -6131,43 +6131,43 @@ Debug Message: MovieRecordDialog - - + + Record Movie - + File: - + ... - + Author: - + Current running game will be restarted. - + <br>Current recording will be discarded. - + Recording will start once you boot a game. - + Citra TAS Movie (*.ctm) @@ -6175,44 +6175,44 @@ Debug Message: MultiplayerState - - + + Current connection status 目前連線狀態 - - + + Not Connected. Click here to find a room! 沒有連線,請點擊這裡尋找房間! - - - + + + Connected 已連線 - - + + Not Connected 未連線 - + Error 錯誤 - + Failed to update the room information. Please check your Internet connection and try hosting the room again. Debug Message: 無法更新房間資訊。請檢查您的網路連線再重新建立房間。 除錯訊息: - + New Messages Received 您有新訊息 @@ -6220,22 +6220,22 @@ Debug Message: NetworkMessage - + Leave Room 離開房間 - + You are about to close the room. Any network connections will be closed. 您關閉房間後,所有網路連線也將會關閉。 - + Disconnect 斷線 - + You are about to leave the room. Any network connections will be closed. 您離開房間後,所有網路連線也將會關閉。 @@ -6243,110 +6243,110 @@ Debug Message: NetworkMessage::ErrorManager - + Username is not valid. Must be 4 to 20 alphanumeric characters. - + Room name is not valid. Must be 4 to 20 alphanumeric characters. - + Username is already in use or not valid. Please choose another. - + IP is not a valid IPv4 address. - + Port must be a number between 0 to 65535. - + You must choose a Preferred Game to host a room. If you do not have any games in your game list yet, add a game folder by clicking on the plus icon in the game list. - + Unable to find an internet connection. Check your internet settings. - + Unable to connect to the host. Verify that the connection settings are correct. If you still cannot connect, contact the room host and verify that the host is properly configured with the external port forwarded. - + Unable to connect to the room because it is already full. - + Creating a room failed. Please retry. Restarting Citra might be necessary. - + The host of the room has banned you. Speak with the host to unban you or try a different room. - + Version mismatch! Please update to the latest version of Citra. If the problem persists, contact the room host and ask them to update the server. - + Incorrect password. - + An unknown error occurred. If this error continues to occur, please open an issue - + Connection to room lost. Try to reconnect. - + You have been kicked by the room host. - + MAC address is already in use. Please choose another. - + Your Console ID conflicted with someone else's in the room. Please go to Emulation > Configure > System to regenerate your Console ID. - + You do not have enough permission to perform this action. - + The user you are trying to kick/ban could not be found. They may have left the room. - + Error @@ -6354,37 +6354,37 @@ They may have left the room. OptionSetDialog - + Options - + Unset - + unknown - + %1 &lt;%2> %3 - + Range: %1 - %2 - + custom - + %1 (0x%2) %3 @@ -6392,32 +6392,32 @@ They may have left the room. OptionsDialog - + Options - + Double click to see the description and change the values of the options. - + Specific - + Generic - + Name - + Value @@ -6425,157 +6425,157 @@ They may have left the room. QObject - + Supported image files (%1) 支援的圖片檔案 (%1) - + Open File 開啟檔案 - + Error 錯誤 - + Couldn't load the camera 無法讀取相機 - + Couldn't load %1 無法讀取 %1 - - + + Shift Shift - - + + Ctrl Ctrl - - + + Alt Alt - - - + + + [not set] [ 無設定 ] - - + + Hat %1 %2 方向鍵 %1:%2 - - - - - - + + + + + + Axis %1%2 軸 %1%2 - - + + Button %1 按鈕 %1 - + GC Axis %1%2 - + GC Button %1 - - - + + + [unknown] [ 未知 ] - + [unused] [ 未使用 ] - + auto - + true - + false - - + + none - + %1 (0x%2) - + Invalid region 無效的地區 - + Installed Titles - + System Titles - + Add New Game Directory - + Not playing a game 沒有在玩遊戲 - + %1 is not playing a game %1 沒有玩遊戲 - + %1 is playing %2 %1 正在玩 %2 @@ -6583,7 +6583,7 @@ They may have left the room. QtKeyboard - + Software Keyboard 虛擬鍵盤 @@ -6591,27 +6591,27 @@ They may have left the room. QtKeyboardDialog - + Text length is not correct (should be %1 characters) 字數錯誤,必須是 %1 個字 - + Text is too long (should be no more than %1 characters) 字數過多,必須小於或等於 %1 個字 - + Blank input is not allowed 不能輸入空格 - + Empty input is not allowed 不允許無字元輸入 - + Validation error 驗證錯誤 @@ -6619,12 +6619,12 @@ They may have left the room. QtMiiSelectorDialog - + Mii Selector 選擇 Mii 分身 - + Standard Mii 標準 @@ -6632,95 +6632,95 @@ They may have left the room. RecordDialog - + View Record - + Client - - + + Process: - - + + Thread: - - + + Session: - + Server - + General - + Client Port: - + Service: - + Function: - + Command Buffer - + Select: - + Request Untranslated - + Request Translated - + Reply Untranslated - + Reply Translated - + OK - + null @@ -6728,37 +6728,37 @@ They may have left the room. RegistersWidget - + Registers 暫存器 - + VFP Registers VFP 暫存器 - + VFP System Registers VFP 系統暫存器 - + Vector Length 向量長度 - + Vector Stride 向量跨步 - + Rounding Mode 進位模式 - + Vector Iteration Count 向量疊代計數 @@ -6766,7 +6766,7 @@ They may have left the room. SequenceDialog - + Enter a hotkey 請輸入熱鍵 @@ -6774,7 +6774,7 @@ They may have left the room. WaitTreeEvent - + reset type = %1 重設類型 = %1 @@ -6782,12 +6782,12 @@ They may have left the room. WaitTreeMutex - + locked %1 times by thread: 執行緒鎖定了 %1 次: - + free 不受限 @@ -6795,7 +6795,7 @@ They may have left the room. WaitTreeMutexList - + holding mutexes 持有互斥 @@ -6803,12 +6803,12 @@ They may have left the room. WaitTreeObjectList - + waiting for all objects 等待所有物件 - + waiting for one of the following objects 等待以下物件之一 @@ -6816,12 +6816,12 @@ They may have left the room. WaitTreeSemaphore - + available count = %1 可用計數 = %1 - + max count = %1 最大計數 = %1 @@ -6829,112 +6829,112 @@ They may have left the room. WaitTreeThread - + running 執行中 - + ready 已就緒 - + waiting for address 0x%1 等待位址 0x%1 - + sleeping 睡眠中 - + waiting for IPC response 等待 IPC 回應 - + waiting for objects 等待物件 - + waiting for HLE return 等待 HLE 回傳 - + dormant 休眠 - + dead 終止 - + PC = 0x%1 LR = 0x%2 PC = 0x%1 LR = 0x%2 - + default 預設 - + all 所有 - + AppCore 軟體核心 - + SysCore 系統核心 - + Unknown processor %1 未知的處理器 %1 - + object id = %1 - + processor = %1 處理器 = %1 - + thread id = %1 執行緒 ID = %1 - + process = %1 (%2) - + priority = %1(current) / %2(normal) 優先 = %1(目前)/ %2(正常) - + last running ticks = %1 上次執行時脈 = %1 - + not holding mutex 不持有互斥 @@ -6942,7 +6942,7 @@ They may have left the room. WaitTreeThreadList - + waited by thread 被執行緒等待 @@ -6950,17 +6950,17 @@ They may have left the room. WaitTreeTimer - + reset type = %1 重設類型 = %1 - + initial delay = %1 初始延遲 = %1 - + interval delay = %1 區間延遲 = %1 @@ -6968,27 +6968,27 @@ They may have left the room. WaitTreeWaitObject - + [%1]%2 %3 [%1]%2 %3 - + waited by no thread 沒有執行緒等待 - + one shot 一次性 - + sticky 持續 - + pulse 規律 @@ -6996,7 +6996,7 @@ They may have left the room. WaitTreeWidget - + Wait Tree 樹狀等待 diff --git a/dist/citra-qt.6 b/dist/lime-qt.6 similarity index 63% rename from dist/citra-qt.6 rename to dist/lime-qt.6 index d09e96b5d..cb32c4867 100644 --- a/dist/citra-qt.6 +++ b/dist/lime-qt.6 @@ -1,16 +1,16 @@ .Dd November 22 2016 -.Dt citra-qt 6 +.Dt lime-qt 6 .Os .Sh NAME -.Nm Citra-Qt +.Nm Lime-Qt .Nd Nintendo 3DS Emulator/Debugger (Qt) .Sh SYNOPSIS -.Nm citra-qt +.Nm lime-qt .Op Ar file .Sh DESCRIPTION -Citra is an experimental open-source Nintendo 3DS emulator/debugger. +Lime is an experimental open-source Nintendo 3DS emulator/debugger. .Pp -.Nm citra-qt +.Nm lime-qt is the Qt implementation. .Sh FILES .Bl -tag -width Ds @@ -22,19 +22,19 @@ Configuration files. .Sh AUTHORS This document is made available to you under the CC-BY license. .Pp -Citra is made by a team of volunteers. These contributors are listed - at <\fBhttps://github.com/citra-emu/citra/contributors\fR>. +Lime is made by a team of volunteers. These contributors are listed + at <\https://github.com/Lime3DS/Lime3DS/contributors\fR>. .Pp .Sh SEE ALSO .Bl -tag -width Ds -.It Xr citra 6 +.It Xr lime 6 The SDL frontend of the application .El .Pp Resources are available for this project: .Bl -tag -width Ds -.It <\fBhttps://citra-emu.org\fR> +.It <\fBhttps://lime3ds.github.io\fR> The main homepage of the project. -.It <\fBhttps://github.com/citra-emu/citra\fR> +.It <\fBhttps://github.com/Lime3DS/Lime3DS\fR> The main source code repository for the Citra emulator. .Pp diff --git a/dist/citra-qt.desktop b/dist/lime-qt.desktop similarity index 89% rename from dist/citra-qt.desktop rename to dist/lime-qt.desktop index d86e12cf2..291907376 100644 --- a/dist/citra-qt.desktop +++ b/dist/lime-qt.desktop @@ -6,9 +6,9 @@ GenericName=3DS Emulator GenericName[fr]=Émulateur 3DS Comment=Nintendo 3DS video game console emulator Comment[fr]=Émulateur de console de jeu Nintendo 3DS -Icon=citra -TryExec=citra-qt -Exec=citra-qt %f +Icon=lime +TryExec=lime-qt +Exec=lime-qt %f Categories=Game;Emulator;Qt; MimeType=application/x-ctr-3dsx;application/x-ctr-cci;application/x-ctr-cia;application/x-ctr-cxi; Keywords=3DS;Nintendo; diff --git a/dist/citra-room.desktop b/dist/lime-room.desktop similarity index 75% rename from dist/citra-room.desktop rename to dist/lime-room.desktop index 033e6f797..f4a6b207c 100644 --- a/dist/citra-room.desktop +++ b/dist/lime-room.desktop @@ -3,8 +3,8 @@ Version=1.0 Type=Application Name=Lime3DS Room Comment=Multiplayer room host for Lime3DS -Icon=citra -TryExec=citra-room -Exec=citra-room %f +Icon=lime +TryExec=lime-room +Exec=lime-room %f Categories=Game;Emulator; Keywords=3DS;Nintendo diff --git a/dist/citra.6 b/dist/lime.6 similarity index 61% rename from dist/citra.6 rename to dist/lime.6 index 72483b1dd..82bd2d15d 100644 --- a/dist/citra.6 +++ b/dist/lime.6 @@ -1,11 +1,11 @@ .Dd November 22 2016 -.Dt citra 6 +.Dt lime 6 .Os .Sh NAME -.Nm Citra +.Nm Lime .Nd Nintendo 3DS Emulator/Debugger (SDL) .Sh SYNOPSIS -.Nm citra +.Nm lime .Op Ar options .Op Ar file .Sh OPTIONS @@ -17,33 +17,33 @@ Shows syntax help and exits .It Fl v , Fl Fl version Describes the installed version and exits .Sh DESCRIPTION -Citra is an experimental open-source Nintendo 3DS emulator/debugger. +Lime is an experimental open-source Nintendo 3DS emulator/debugger. .Pp -.Nm citra +.Nm lime is the Simple DirectMedia Layer (SDL) implementation. .Sh FILES .Bl -tag -width Ds -.It Pa $XDG_DATA_HOME/citra-emu +.It Pa $XDG_DATA_HOME/lime-emu Emulator storage. -.It Pa $XDG_CONFIG_HOME/citra-emu +.It Pa $XDG_CONFIG_HOME/lime-emu Configuration files. .El .Sh AUTHORS This document is made available to you under the CC-BY license. .Pp -Citra is made by a team of volunteers. These contributors are listed - at <\fBhttps://github.com/citra-emu/citra/contributors\fR>. +Lime is made by a team of volunteers. These contributors are listed + at <\fBhttps://github.com/lime-emu/lime/contributors\fR>. .Pp .Sh SEE ALSO .Bl -tag -width Ds -.It Xr citra-qt 6 +.It Xr lime-qt 6 The Qt frontend of the application .El .Pp Resources are available for this project: .Bl -tag -width Ds -.It <\fBhttps://citra-emu.org\fR> +.It <\fBhttps://lime-emu.org\fR> The main homepage of the project. -.It <\fBhttps://github.com/citra-emu/citra\fR> -The main source code repository for the Citra emulator. +.It <\fBhttps://github.com/lime-emu/lime\fR> +The main source code repository for the Lime emulator. .Pp diff --git a/dist/citra.desktop b/dist/lime.desktop similarity index 90% rename from dist/citra.desktop rename to dist/lime.desktop index 046266e72..eb372be45 100644 --- a/dist/citra.desktop +++ b/dist/lime.desktop @@ -6,9 +6,9 @@ GenericName=3DS Emulator GenericName[fr]=Émulateur 3DS Comment=Nintendo 3DS video game console emulator Comment[fr]=Émulateur de console de jeu Nintendo 3DS -Icon=citra -TryExec=citra -Exec=citra %f +Icon=lime +TryExec=lime +Exec=lime %f Categories=Game;Emulator; MimeType=application/x-ctr-3dsx;application/x-ctr-cci;application/x-ctr-cia;application/x-ctr-cxi; Keywords=3DS;Nintendo; diff --git a/dist/citra.ico b/dist/lime.ico similarity index 100% rename from dist/citra.ico rename to dist/lime.ico diff --git a/dist/citra.manifest b/dist/lime.manifest similarity index 100% rename from dist/citra.manifest rename to dist/lime.manifest diff --git a/dist/citra.png b/dist/lime.png similarity index 100% rename from dist/citra.png rename to dist/lime.png diff --git a/dist/citra.svg b/dist/lime.svg similarity index 100% rename from dist/citra.svg rename to dist/lime.svg diff --git a/dist/citra.xml b/dist/lime.xml similarity index 95% rename from dist/citra.xml rename to dist/lime.xml index 6d47c8760..09fd53b8b 100644 --- a/dist/citra.xml +++ b/dist/lime.xml @@ -4,7 +4,7 @@ Nintendo 3DS homebrew executable Exécutable non-officiel pour Nintendo 3DS  3DSX - + @@ -14,7 +14,7 @@ Image de cartouche Nintendo 3DS CCI CTR Cart Image - + @@ -25,7 +25,7 @@ Exécutable Nintendo 3DS CXI CTR eXecutable Image - + @@ -35,7 +35,7 @@ Archive installable Nintendo 3DS CIA CTR Importable Archive - + diff --git a/dist/qt_themes/default/default.qrc b/dist/qt_themes/default/default.qrc index 6da475316..c59831641 100644 --- a/dist/qt_themes/default/default.qrc +++ b/dist/qt_themes/default/default.qrc @@ -13,7 +13,7 @@ icons/48x48/no_avatar.png icons/48x48/plus.png icons/48x48/sd_card.png - icons/256x256/citra.png + icons/256x256/lime.png icons/256x256/plus_folder.png diff --git a/dist/qt_themes/default/icons/256x256/citra.png b/dist/qt_themes/default/icons/256x256/lime.png similarity index 100% rename from dist/qt_themes/default/icons/256x256/citra.png rename to dist/qt_themes/default/icons/256x256/lime.png diff --git a/externals/boost b/externals/boost index 3c27c785a..80f97ea03 160000 --- a/externals/boost +++ b/externals/boost @@ -1 +1 @@ -Subproject commit 3c27c785ad0f8a742af02e620dc225673f3a12d8 +Subproject commit 80f97ea03b5412baddaba8bef1222b112076c997 diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 461cd57e6..58759df08 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -181,11 +181,11 @@ if (ENABLE_TESTS) endif() if (ENABLE_SDL2 AND ENABLE_SDL2_FRONTEND) - add_subdirectory(citra) + add_subdirectory(lime) endif() if (ENABLE_QT) - add_subdirectory(citra_qt) + add_subdirectory(lime_qt) endif() if (ENABLE_DEDICATED_ROOM) @@ -194,7 +194,7 @@ endif() if (ANDROID) add_subdirectory(android/app/src/main/jni) - target_include_directories(citra-android PRIVATE android/app/src/main) + target_include_directories(lime-android PRIVATE android/app/src/main) endif() if (ENABLE_WEB_SERVICE) diff --git a/src/android/app/build.gradle.kts b/src/android/app/build.gradle.kts index b1289ec3d..53d71fbb0 100644 --- a/src/android/app/build.gradle.kts +++ b/src/android/app/build.gradle.kts @@ -26,7 +26,7 @@ val downloadedJniLibsPath = "${buildDir}/downloadedJniLibs" @Suppress("UnstableApiUsage") android { - namespace = "org.citra.citra_emu" + namespace = "io.github.lime3ds" compileSdkVersion = "android-34" ndkVersion = "26.1.10909125" @@ -61,7 +61,7 @@ android { defaultConfig { // TODO If this is ever modified, change application_id in strings.xml - applicationId = "org.citra.citra_emu" + applicationId = "io.github.lime3ds" minSdk = 28 targetSdk = 34 versionCode = autoVersion diff --git a/src/android/app/src/main/AndroidManifest.xml b/src/android/app/src/main/AndroidManifest.xml index b9190ad6b..3daaa19cf 100644 --- a/src/android/app/src/main/AndroidManifest.xml +++ b/src/android/app/src/main/AndroidManifest.xml @@ -33,7 +33,7 @@ @@ -59,13 +59,13 @@ @@ -80,12 +80,12 @@ - + diff --git a/src/android/app/src/main/java/org/citra/citra_emu/CitraApplication.kt b/src/android/app/src/main/java/org/citra/citra_emu/CitraApplication.kt index 75a88baf1..86c33c8c3 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/CitraApplication.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/CitraApplication.kt @@ -2,7 +2,7 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu +package io.github.lime3ds import android.annotation.SuppressLint import android.app.Application @@ -10,12 +10,12 @@ import android.app.NotificationChannel import android.app.NotificationManager import android.content.Context import android.os.Build -import org.citra.citra_emu.utils.DirectoryInitialization -import org.citra.citra_emu.utils.DocumentsTree -import org.citra.citra_emu.utils.GpuDriverHelper -import org.citra.citra_emu.utils.PermissionsHandler -import org.citra.citra_emu.utils.Log -import org.citra.citra_emu.utils.MemoryUtil +import io.github.lime3ds.utils.DirectoryInitialization +import io.github.lime3ds.utils.DocumentsTree +import io.github.lime3ds.utils.GpuDriverHelper +import io.github.lime3ds.utils.PermissionsHandler +import io.github.lime3ds.utils.Log +import io.github.lime3ds.utils.MemoryUtil class CitraApplication : Application() { private fun createNotificationChannel() { diff --git a/src/android/app/src/main/java/org/citra/citra_emu/NativeLibrary.kt b/src/android/app/src/main/java/org/citra/citra_emu/NativeLibrary.kt index bfbe658f8..7c8300023 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/NativeLibrary.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/NativeLibrary.kt @@ -2,7 +2,7 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu +package io.github.lime3ds import android.Manifest.permission import android.app.Dialog @@ -20,10 +20,10 @@ import androidx.annotation.Keep import androidx.core.content.ContextCompat import androidx.fragment.app.DialogFragment import com.google.android.material.dialog.MaterialAlertDialogBuilder -import org.citra.citra_emu.activities.EmulationActivity -import org.citra.citra_emu.utils.EmulationMenuSettings -import org.citra.citra_emu.utils.FileUtil -import org.citra.citra_emu.utils.Log +import io.github.lime3ds.activities.EmulationActivity +import io.github.lime3ds.utils.EmulationMenuSettings +import io.github.lime3ds.utils.FileUtil +import io.github.lime3ds.utils.Log import java.lang.ref.WeakReference import java.util.Date @@ -44,7 +44,7 @@ object NativeLibrary { init { try { - System.loadLibrary("citra-android") + System.loadLibrary("lime-android") } catch (ex: UnsatisfiedLinkError) { Log.error("[NativeLibrary] $ex") } diff --git a/src/android/app/src/main/java/org/citra/citra_emu/activities/EmulationActivity.kt b/src/android/app/src/main/java/org/citra/citra_emu/activities/EmulationActivity.kt index a911b0c31..f72347394 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/activities/EmulationActivity.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/activities/EmulationActivity.kt @@ -2,7 +2,7 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.activities +package io.github.lime3ds.activities import android.Manifest.permission import android.annotation.SuppressLint @@ -25,24 +25,24 @@ import androidx.core.view.WindowInsetsCompat import androidx.core.view.WindowInsetsControllerCompat import androidx.navigation.fragment.NavHostFragment import androidx.preference.PreferenceManager -import org.citra.citra_emu.CitraApplication -import org.citra.citra_emu.NativeLibrary -import org.citra.citra_emu.R -import org.citra.citra_emu.camera.StillImageCameraHelper.OnFilePickerResult -import org.citra.citra_emu.contracts.OpenFileResultContract -import org.citra.citra_emu.databinding.ActivityEmulationBinding -import org.citra.citra_emu.display.ScreenAdjustmentUtil -import org.citra.citra_emu.features.hotkeys.HotkeyUtility -import org.citra.citra_emu.features.settings.model.SettingsViewModel -import org.citra.citra_emu.features.settings.model.view.InputBindingSetting -import org.citra.citra_emu.fragments.MessageDialogFragment -import org.citra.citra_emu.utils.ControllerMappingHelper -import org.citra.citra_emu.utils.FileBrowserHelper -import org.citra.citra_emu.utils.ForegroundService -import org.citra.citra_emu.utils.EmulationLifecycleUtil -import org.citra.citra_emu.utils.EmulationMenuSettings -import org.citra.citra_emu.utils.ThemeUtil -import org.citra.citra_emu.viewmodel.EmulationViewModel +import io.github.lime3ds.CitraApplication +import io.github.lime3ds.NativeLibrary +import io.github.lime3ds.R +import io.github.lime3ds.camera.StillImageCameraHelper.OnFilePickerResult +import io.github.lime3ds.contracts.OpenFileResultContract +import io.github.lime3ds.databinding.ActivityEmulationBinding +import io.github.lime3ds.display.ScreenAdjustmentUtil +import io.github.lime3ds.features.hotkeys.HotkeyUtility +import io.github.lime3ds.features.settings.model.SettingsViewModel +import io.github.lime3ds.features.settings.model.view.InputBindingSetting +import io.github.lime3ds.fragments.MessageDialogFragment +import io.github.lime3ds.utils.ControllerMappingHelper +import io.github.lime3ds.utils.FileBrowserHelper +import io.github.lime3ds.utils.ForegroundService +import io.github.lime3ds.utils.EmulationLifecycleUtil +import io.github.lime3ds.utils.EmulationMenuSettings +import io.github.lime3ds.utils.ThemeUtil +import io.github.lime3ds.viewmodel.EmulationViewModel class EmulationActivity : AppCompatActivity() { private val preferences: SharedPreferences diff --git a/src/android/app/src/main/java/org/citra/citra_emu/adapters/DriverAdapter.kt b/src/android/app/src/main/java/org/citra/citra_emu/adapters/DriverAdapter.kt index 835c01524..b58b9cf06 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/adapters/DriverAdapter.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/adapters/DriverAdapter.kt @@ -2,7 +2,7 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.adapters +package io.github.lime3ds.adapters import android.net.Uri import android.text.TextUtils @@ -13,11 +13,11 @@ import androidx.recyclerview.widget.AsyncDifferConfig import androidx.recyclerview.widget.DiffUtil import androidx.recyclerview.widget.ListAdapter import androidx.recyclerview.widget.RecyclerView -import org.citra.citra_emu.R -import org.citra.citra_emu.databinding.CardDriverOptionBinding -import org.citra.citra_emu.utils.GpuDriverMetadata -import org.citra.citra_emu.viewmodel.DriverViewModel -import org.citra.citra_emu.utils.GpuDriverHelper +import io.github.lime3ds.R +import io.github.lime3ds.databinding.CardDriverOptionBinding +import io.github.lime3ds.utils.GpuDriverMetadata +import io.github.lime3ds.viewmodel.DriverViewModel +import io.github.lime3ds.utils.GpuDriverHelper class DriverAdapter(private val driverViewModel: DriverViewModel) : ListAdapter, DriverAdapter.DriverViewHolder>( diff --git a/src/android/app/src/main/java/org/citra/citra_emu/adapters/GameAdapter.kt b/src/android/app/src/main/java/org/citra/citra_emu/adapters/GameAdapter.kt index cc0a2b750..377707ffb 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/adapters/GameAdapter.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/adapters/GameAdapter.kt @@ -2,7 +2,7 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.adapters +package io.github.lime3ds.adapters import android.net.Uri import android.os.SystemClock @@ -23,15 +23,15 @@ import androidx.recyclerview.widget.ListAdapter import androidx.recyclerview.widget.RecyclerView import com.google.android.material.color.MaterialColors import com.google.android.material.dialog.MaterialAlertDialogBuilder -import org.citra.citra_emu.HomeNavigationDirections -import org.citra.citra_emu.CitraApplication -import org.citra.citra_emu.R -import org.citra.citra_emu.adapters.GameAdapter.GameViewHolder -import org.citra.citra_emu.databinding.CardGameBinding -import org.citra.citra_emu.features.cheats.ui.CheatsFragmentDirections -import org.citra.citra_emu.model.Game -import org.citra.citra_emu.utils.GameIconUtils -import org.citra.citra_emu.viewmodel.GamesViewModel +import io.github.lime3ds.HomeNavigationDirections +import io.github.lime3ds.CitraApplication +import io.github.lime3ds.R +import io.github.lime3ds.adapters.GameAdapter.GameViewHolder +import io.github.lime3ds.databinding.CardGameBinding +import io.github.lime3ds.features.cheats.ui.CheatsFragmentDirections +import io.github.lime3ds.model.Game +import io.github.lime3ds.utils.GameIconUtils +import io.github.lime3ds.viewmodel.GamesViewModel class GameAdapter(private val activity: AppCompatActivity) : ListAdapter(AsyncDifferConfig.Builder(DiffCallback()).build()), diff --git a/src/android/app/src/main/java/org/citra/citra_emu/adapters/HomeSettingAdapter.kt b/src/android/app/src/main/java/org/citra/citra_emu/adapters/HomeSettingAdapter.kt index f90c65e77..4e8e347eb 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/adapters/HomeSettingAdapter.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/adapters/HomeSettingAdapter.kt @@ -2,7 +2,7 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.adapters +package io.github.lime3ds.adapters import android.text.TextUtils import android.view.LayoutInflater @@ -19,11 +19,11 @@ import androidx.lifecycle.repeatOnLifecycle import androidx.recyclerview.widget.RecyclerView import kotlinx.coroutines.flow.collect import kotlinx.coroutines.launch -import org.citra.citra_emu.R -import org.citra.citra_emu.databinding.CardHomeOptionBinding -import org.citra.citra_emu.fragments.MessageDialogFragment -import org.citra.citra_emu.model.HomeSetting -import org.citra.citra_emu.viewmodel.GamesViewModel +import io.github.lime3ds.R +import io.github.lime3ds.databinding.CardHomeOptionBinding +import io.github.lime3ds.fragments.MessageDialogFragment +import io.github.lime3ds.model.HomeSetting +import io.github.lime3ds.viewmodel.GamesViewModel class HomeSettingAdapter( private val activity: AppCompatActivity, diff --git a/src/android/app/src/main/java/org/citra/citra_emu/adapters/LicenseAdapter.kt b/src/android/app/src/main/java/org/citra/citra_emu/adapters/LicenseAdapter.kt index dd3f4debe..8a68d3211 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/adapters/LicenseAdapter.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/adapters/LicenseAdapter.kt @@ -2,7 +2,7 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.adapters +package io.github.lime3ds.adapters import android.view.LayoutInflater import android.view.View @@ -10,10 +10,10 @@ import android.view.ViewGroup import androidx.appcompat.app.AppCompatActivity import androidx.recyclerview.widget.RecyclerView import androidx.recyclerview.widget.RecyclerView.ViewHolder -import org.citra.citra_emu.CitraApplication -import org.citra.citra_emu.databinding.ListItemSettingBinding -import org.citra.citra_emu.fragments.LicenseBottomSheetDialogFragment -import org.citra.citra_emu.model.License +import io.github.lime3ds.CitraApplication +import io.github.lime3ds.databinding.ListItemSettingBinding +import io.github.lime3ds.fragments.LicenseBottomSheetDialogFragment +import io.github.lime3ds.model.License class LicenseAdapter(private val activity: AppCompatActivity, var licenses: List) : RecyclerView.Adapter(), diff --git a/src/android/app/src/main/java/org/citra/citra_emu/adapters/SetupAdapter.kt b/src/android/app/src/main/java/org/citra/citra_emu/adapters/SetupAdapter.kt index b6917b072..66684b849 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/adapters/SetupAdapter.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/adapters/SetupAdapter.kt @@ -2,7 +2,7 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.adapters +package io.github.lime3ds.adapters import android.text.Html import android.text.method.LinkMovementMethod @@ -13,11 +13,11 @@ import androidx.appcompat.app.AppCompatActivity import androidx.core.content.res.ResourcesCompat import androidx.recyclerview.widget.RecyclerView import com.google.android.material.button.MaterialButton -import org.citra.citra_emu.databinding.PageSetupBinding -import org.citra.citra_emu.model.SetupCallback -import org.citra.citra_emu.model.SetupPage -import org.citra.citra_emu.model.StepState -import org.citra.citra_emu.utils.ViewUtils +import io.github.lime3ds.databinding.PageSetupBinding +import io.github.lime3ds.model.SetupCallback +import io.github.lime3ds.model.SetupPage +import io.github.lime3ds.model.StepState +import io.github.lime3ds.utils.ViewUtils class SetupAdapter(val activity: AppCompatActivity, val pages: List) : RecyclerView.Adapter() { diff --git a/src/android/app/src/main/java/org/citra/citra_emu/applets/MiiSelector.kt b/src/android/app/src/main/java/org/citra/citra_emu/applets/MiiSelector.kt index e7dbfbf66..e409f59e7 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/applets/MiiSelector.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/applets/MiiSelector.kt @@ -2,11 +2,11 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.applets +package io.github.lime3ds.applets import androidx.annotation.Keep -import org.citra.citra_emu.NativeLibrary -import org.citra.citra_emu.fragments.MiiSelectorDialogFragment +import io.github.lime3ds.NativeLibrary +import io.github.lime3ds.fragments.MiiSelectorDialogFragment import java.io.Serializable @Keep diff --git a/src/android/app/src/main/java/org/citra/citra_emu/applets/SoftwareKeyboard.kt b/src/android/app/src/main/java/org/citra/citra_emu/applets/SoftwareKeyboard.kt index f334366eb..8ebccbf01 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/applets/SoftwareKeyboard.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/applets/SoftwareKeyboard.kt @@ -2,17 +2,17 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.applets +package io.github.lime3ds.applets import android.text.InputFilter import android.text.Spanned import androidx.annotation.Keep -import org.citra.citra_emu.CitraApplication.Companion.appContext -import org.citra.citra_emu.NativeLibrary -import org.citra.citra_emu.R -import org.citra.citra_emu.fragments.KeyboardDialogFragment -import org.citra.citra_emu.fragments.MessageDialogFragment -import org.citra.citra_emu.utils.Log +import io.github.lime3ds.CitraApplication.Companion.appContext +import io.github.lime3ds.NativeLibrary +import io.github.lime3ds.R +import io.github.lime3ds.fragments.KeyboardDialogFragment +import io.github.lime3ds.fragments.MessageDialogFragment +import io.github.lime3ds.utils.Log import java.io.Serializable @Keep diff --git a/src/android/app/src/main/java/org/citra/citra_emu/camera/StillImageCameraHelper.kt b/src/android/app/src/main/java/org/citra/citra_emu/camera/StillImageCameraHelper.kt index c1d45e3af..7bc3d1451 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/camera/StillImageCameraHelper.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/camera/StillImageCameraHelper.kt @@ -2,7 +2,7 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.camera +package io.github.lime3ds.camera import android.graphics.Bitmap import androidx.activity.result.PickVisualMediaRequest @@ -12,8 +12,8 @@ import androidx.core.graphics.drawable.toBitmap import coil.executeBlocking import coil.imageLoader import coil.request.ImageRequest -import org.citra.citra_emu.CitraApplication -import org.citra.citra_emu.NativeLibrary +import io.github.lime3ds.CitraApplication +import io.github.lime3ds.NativeLibrary // Used in native code. object StillImageCameraHelper { diff --git a/src/android/app/src/main/java/org/citra/citra_emu/contracts/OpenFileResultContract.kt b/src/android/app/src/main/java/org/citra/citra_emu/contracts/OpenFileResultContract.kt index 401518093..433c98f33 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/contracts/OpenFileResultContract.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/contracts/OpenFileResultContract.kt @@ -2,7 +2,7 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.contracts +package io.github.lime3ds.contracts import android.content.Context import android.content.Intent diff --git a/src/android/app/src/main/java/org/citra/citra_emu/display/ScreenAdjustmentUtil.kt b/src/android/app/src/main/java/org/citra/citra_emu/display/ScreenAdjustmentUtil.kt index e56007cc8..19d2db22a 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/display/ScreenAdjustmentUtil.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/display/ScreenAdjustmentUtil.kt @@ -2,15 +2,15 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.display +package io.github.lime3ds.display import android.view.WindowManager -import org.citra.citra_emu.NativeLibrary -import org.citra.citra_emu.features.settings.model.BooleanSetting -import org.citra.citra_emu.features.settings.model.IntSetting -import org.citra.citra_emu.features.settings.model.Settings -import org.citra.citra_emu.features.settings.utils.SettingsFile -import org.citra.citra_emu.utils.EmulationMenuSettings +import io.github.lime3ds.NativeLibrary +import io.github.lime3ds.features.settings.model.BooleanSetting +import io.github.lime3ds.features.settings.model.IntSetting +import io.github.lime3ds.features.settings.model.Settings +import io.github.lime3ds.features.settings.utils.SettingsFile +import io.github.lime3ds.utils.EmulationMenuSettings class ScreenAdjustmentUtil(private val windowManager: WindowManager, private val settings: Settings) { diff --git a/src/android/app/src/main/java/org/citra/citra_emu/display/ScreenLayout.kt b/src/android/app/src/main/java/org/citra/citra_emu/display/ScreenLayout.kt index 85fdc28b5..3617825e4 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/display/ScreenLayout.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/display/ScreenLayout.kt @@ -2,7 +2,7 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.display +package io.github.lime3ds.display enum class ScreenLayout(val int: Int) { // These must match what is defined in src/common/settings.h diff --git a/src/android/app/src/main/java/org/citra/citra_emu/features/cheats/model/Cheat.kt b/src/android/app/src/main/java/org/citra/citra_emu/features/cheats/model/Cheat.kt index 36a508f54..83e67da87 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/features/cheats/model/Cheat.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/features/cheats/model/Cheat.kt @@ -2,7 +2,7 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.features.cheats.model +package io.github.lime3ds.features.cheats.model import androidx.annotation.Keep diff --git a/src/android/app/src/main/java/org/citra/citra_emu/features/cheats/model/CheatEngine.kt b/src/android/app/src/main/java/org/citra/citra_emu/features/cheats/model/CheatEngine.kt index 2fef03beb..d6003d6f7 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/features/cheats/model/CheatEngine.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/features/cheats/model/CheatEngine.kt @@ -2,7 +2,7 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.features.cheats.model +package io.github.lime3ds.features.cheats.model import androidx.annotation.Keep diff --git a/src/android/app/src/main/java/org/citra/citra_emu/features/cheats/model/CheatsViewModel.kt b/src/android/app/src/main/java/org/citra/citra_emu/features/cheats/model/CheatsViewModel.kt index e794fe588..b3a867451 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/features/cheats/model/CheatsViewModel.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/features/cheats/model/CheatsViewModel.kt @@ -2,7 +2,7 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.features.cheats.model +package io.github.lime3ds.features.cheats.model import androidx.lifecycle.ViewModel import kotlinx.coroutines.flow.MutableStateFlow diff --git a/src/android/app/src/main/java/org/citra/citra_emu/features/cheats/ui/CheatDetailsFragment.kt b/src/android/app/src/main/java/org/citra/citra_emu/features/cheats/ui/CheatDetailsFragment.kt index 2357335a9..374959e0d 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/features/cheats/ui/CheatDetailsFragment.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/features/cheats/ui/CheatDetailsFragment.kt @@ -2,7 +2,7 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.features.cheats.ui +package io.github.lime3ds.features.cheats.ui import android.annotation.SuppressLint import android.content.DialogInterface @@ -21,10 +21,10 @@ import androidx.lifecycle.repeatOnLifecycle import com.google.android.material.dialog.MaterialAlertDialogBuilder import kotlinx.coroutines.flow.collect import kotlinx.coroutines.launch -import org.citra.citra_emu.R -import org.citra.citra_emu.databinding.FragmentCheatDetailsBinding -import org.citra.citra_emu.features.cheats.model.Cheat -import org.citra.citra_emu.features.cheats.model.CheatsViewModel +import io.github.lime3ds.R +import io.github.lime3ds.databinding.FragmentCheatDetailsBinding +import io.github.lime3ds.features.cheats.model.Cheat +import io.github.lime3ds.features.cheats.model.CheatsViewModel class CheatDetailsFragment : Fragment() { private val cheatsViewModel: CheatsViewModel by activityViewModels() diff --git a/src/android/app/src/main/java/org/citra/citra_emu/features/cheats/ui/CheatListFragment.kt b/src/android/app/src/main/java/org/citra/citra_emu/features/cheats/ui/CheatListFragment.kt index c71ba99fa..81d05589e 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/features/cheats/ui/CheatListFragment.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/features/cheats/ui/CheatListFragment.kt @@ -2,7 +2,7 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.features.cheats.ui +package io.github.lime3ds.features.cheats.ui import android.annotation.SuppressLint import android.os.Bundle @@ -23,10 +23,10 @@ import androidx.recyclerview.widget.LinearLayoutManager import com.google.android.material.divider.MaterialDividerItemDecoration import kotlinx.coroutines.flow.collect import kotlinx.coroutines.launch -import org.citra.citra_emu.R -import org.citra.citra_emu.databinding.FragmentCheatListBinding -import org.citra.citra_emu.features.cheats.model.CheatsViewModel -import org.citra.citra_emu.ui.main.MainActivity +import io.github.lime3ds.R +import io.github.lime3ds.databinding.FragmentCheatListBinding +import io.github.lime3ds.features.cheats.model.CheatsViewModel +import io.github.lime3ds.ui.main.MainActivity class CheatListFragment : Fragment() { private var _binding: FragmentCheatListBinding? = null diff --git a/src/android/app/src/main/java/org/citra/citra_emu/features/cheats/ui/CheatsActivity.kt b/src/android/app/src/main/java/org/citra/citra_emu/features/cheats/ui/CheatsActivity.kt index f66a8d373..8d1b9ef58 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/features/cheats/ui/CheatsActivity.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/features/cheats/ui/CheatsActivity.kt @@ -2,7 +2,7 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.features.cheats.ui +package io.github.lime3ds.features.cheats.ui import android.os.Bundle import android.view.View @@ -12,10 +12,10 @@ import androidx.appcompat.app.AppCompatActivity import androidx.core.view.WindowCompat import androidx.navigation.fragment.NavHostFragment import com.google.android.material.color.MaterialColors -import org.citra.citra_emu.R -import org.citra.citra_emu.databinding.ActivityCheatsBinding -import org.citra.citra_emu.utils.InsetsHelper -import org.citra.citra_emu.utils.ThemeUtil +import io.github.lime3ds.R +import io.github.lime3ds.databinding.ActivityCheatsBinding +import io.github.lime3ds.utils.InsetsHelper +import io.github.lime3ds.utils.ThemeUtil class CheatsActivity : AppCompatActivity() { private lateinit var binding: ActivityCheatsBinding diff --git a/src/android/app/src/main/java/org/citra/citra_emu/features/cheats/ui/CheatsAdapter.kt b/src/android/app/src/main/java/org/citra/citra_emu/features/cheats/ui/CheatsAdapter.kt index 960b14f1d..c6c28d15f 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/features/cheats/ui/CheatsAdapter.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/features/cheats/ui/CheatsAdapter.kt @@ -2,7 +2,7 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.features.cheats.ui +package io.github.lime3ds.features.cheats.ui import android.view.LayoutInflater import android.view.View @@ -11,9 +11,9 @@ import android.widget.CompoundButton import androidx.fragment.app.FragmentActivity import androidx.lifecycle.ViewModelProvider import androidx.recyclerview.widget.RecyclerView -import org.citra.citra_emu.databinding.ListItemCheatBinding -import org.citra.citra_emu.features.cheats.model.Cheat -import org.citra.citra_emu.features.cheats.model.CheatsViewModel +import io.github.lime3ds.databinding.ListItemCheatBinding +import io.github.lime3ds.features.cheats.model.Cheat +import io.github.lime3ds.features.cheats.model.CheatsViewModel class CheatsAdapter( private val activity: FragmentActivity, diff --git a/src/android/app/src/main/java/org/citra/citra_emu/features/cheats/ui/CheatsFragment.kt b/src/android/app/src/main/java/org/citra/citra_emu/features/cheats/ui/CheatsFragment.kt index 0c446cfd8..127a68b65 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/features/cheats/ui/CheatsFragment.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/features/cheats/ui/CheatsFragment.kt @@ -2,7 +2,7 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.features.cheats.ui +package io.github.lime3ds.features.cheats.ui import android.annotation.SuppressLint import android.os.Build @@ -25,12 +25,12 @@ import androidx.slidingpanelayout.widget.SlidingPaneLayout import com.google.android.material.transition.MaterialSharedAxis import kotlinx.coroutines.flow.collect import kotlinx.coroutines.launch -import org.citra.citra_emu.databinding.FragmentCheatsBinding -import org.citra.citra_emu.features.cheats.model.Cheat -import org.citra.citra_emu.features.cheats.model.CheatsViewModel -import org.citra.citra_emu.ui.TwoPaneOnBackPressedCallback -import org.citra.citra_emu.ui.main.MainActivity -import org.citra.citra_emu.viewmodel.HomeViewModel +import io.github.lime3ds.databinding.FragmentCheatsBinding +import io.github.lime3ds.features.cheats.model.Cheat +import io.github.lime3ds.features.cheats.model.CheatsViewModel +import io.github.lime3ds.ui.TwoPaneOnBackPressedCallback +import io.github.lime3ds.ui.main.MainActivity +import io.github.lime3ds.viewmodel.HomeViewModel class CheatsFragment : Fragment(), SlidingPaneLayout.PanelSlideListener { private var cheatListLastFocus: View? = null diff --git a/src/android/app/src/main/java/org/citra/citra_emu/features/hotkeys/Hotkey.kt b/src/android/app/src/main/java/org/citra/citra_emu/features/hotkeys/Hotkey.kt index b19cb03da..f8c49721a 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/features/hotkeys/Hotkey.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/features/hotkeys/Hotkey.kt @@ -2,7 +2,7 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.features.hotkeys +package io.github.lime3ds.features.hotkeys enum class Hotkey(val button: Int) { SWAP_SCREEN(10001), diff --git a/src/android/app/src/main/java/org/citra/citra_emu/features/hotkeys/HotkeyUtility.kt b/src/android/app/src/main/java/org/citra/citra_emu/features/hotkeys/HotkeyUtility.kt index 830b57b29..ed607a5a8 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/features/hotkeys/HotkeyUtility.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/features/hotkeys/HotkeyUtility.kt @@ -2,10 +2,10 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.features.hotkeys +package io.github.lime3ds.features.hotkeys -import org.citra.citra_emu.utils.EmulationLifecycleUtil -import org.citra.citra_emu.display.ScreenAdjustmentUtil +import io.github.lime3ds.utils.EmulationLifecycleUtil +import io.github.lime3ds.display.ScreenAdjustmentUtil class HotkeyUtility(private val screenAdjustmentUtil: ScreenAdjustmentUtil) { diff --git a/src/android/app/src/main/java/org/citra/citra_emu/features/settings/model/AbstractBooleanSetting.kt b/src/android/app/src/main/java/org/citra/citra_emu/features/settings/model/AbstractBooleanSetting.kt index e60b1ca36..222fb77c7 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/features/settings/model/AbstractBooleanSetting.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/features/settings/model/AbstractBooleanSetting.kt @@ -2,7 +2,7 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.features.settings.model +package io.github.lime3ds.features.settings.model interface AbstractBooleanSetting : AbstractSetting { var boolean: Boolean diff --git a/src/android/app/src/main/java/org/citra/citra_emu/features/settings/model/AbstractFloatSetting.kt b/src/android/app/src/main/java/org/citra/citra_emu/features/settings/model/AbstractFloatSetting.kt index c3b2c8e2e..0c2779d56 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/features/settings/model/AbstractFloatSetting.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/features/settings/model/AbstractFloatSetting.kt @@ -2,7 +2,7 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.features.settings.model +package io.github.lime3ds.features.settings.model interface AbstractFloatSetting : AbstractSetting { var float: Float diff --git a/src/android/app/src/main/java/org/citra/citra_emu/features/settings/model/AbstractIntSetting.kt b/src/android/app/src/main/java/org/citra/citra_emu/features/settings/model/AbstractIntSetting.kt index 7c3660854..d5133eaba 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/features/settings/model/AbstractIntSetting.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/features/settings/model/AbstractIntSetting.kt @@ -2,7 +2,7 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.features.settings.model +package io.github.lime3ds.features.settings.model interface AbstractIntSetting : AbstractSetting { var int: Int diff --git a/src/android/app/src/main/java/org/citra/citra_emu/features/settings/model/AbstractSetting.kt b/src/android/app/src/main/java/org/citra/citra_emu/features/settings/model/AbstractSetting.kt index 54af79efb..8bcffabfd 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/features/settings/model/AbstractSetting.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/features/settings/model/AbstractSetting.kt @@ -2,7 +2,7 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.features.settings.model +package io.github.lime3ds.features.settings.model interface AbstractSetting { val key: String? diff --git a/src/android/app/src/main/java/org/citra/citra_emu/features/settings/model/AbstractShortSetting.kt b/src/android/app/src/main/java/org/citra/citra_emu/features/settings/model/AbstractShortSetting.kt index 9fafc5410..1d53a36e8 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/features/settings/model/AbstractShortSetting.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/features/settings/model/AbstractShortSetting.kt @@ -2,7 +2,7 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.features.settings.model +package io.github.lime3ds.features.settings.model interface AbstractShortSetting : AbstractSetting { var short: Short diff --git a/src/android/app/src/main/java/org/citra/citra_emu/features/settings/model/AbstractStringSetting.kt b/src/android/app/src/main/java/org/citra/citra_emu/features/settings/model/AbstractStringSetting.kt index 41ecc5038..6ee3fd1b0 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/features/settings/model/AbstractStringSetting.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/features/settings/model/AbstractStringSetting.kt @@ -2,7 +2,7 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.features.settings.model +package io.github.lime3ds.features.settings.model interface AbstractStringSetting : AbstractSetting { var string: String diff --git a/src/android/app/src/main/java/org/citra/citra_emu/features/settings/model/BooleanSetting.kt b/src/android/app/src/main/java/org/citra/citra_emu/features/settings/model/BooleanSetting.kt index 0a1cf915a..82d76338d 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/features/settings/model/BooleanSetting.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/features/settings/model/BooleanSetting.kt @@ -2,7 +2,7 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.features.settings.model +package io.github.lime3ds.features.settings.model enum class BooleanSetting( override val key: String, diff --git a/src/android/app/src/main/java/org/citra/citra_emu/features/settings/model/FloatSetting.kt b/src/android/app/src/main/java/org/citra/citra_emu/features/settings/model/FloatSetting.kt index 81c5dbbf8..e93536147 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/features/settings/model/FloatSetting.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/features/settings/model/FloatSetting.kt @@ -2,7 +2,7 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.features.settings.model +package io.github.lime3ds.features.settings.model enum class FloatSetting( override val key: String, diff --git a/src/android/app/src/main/java/org/citra/citra_emu/features/settings/model/IntSetting.kt b/src/android/app/src/main/java/org/citra/citra_emu/features/settings/model/IntSetting.kt index b2c378397..2a2de3639 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/features/settings/model/IntSetting.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/features/settings/model/IntSetting.kt @@ -2,7 +2,7 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.features.settings.model +package io.github.lime3ds.features.settings.model enum class IntSetting( override val key: String, diff --git a/src/android/app/src/main/java/org/citra/citra_emu/features/settings/model/ScaledFloatSetting.kt b/src/android/app/src/main/java/org/citra/citra_emu/features/settings/model/ScaledFloatSetting.kt index 21629f7b0..2ebc99dce 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/features/settings/model/ScaledFloatSetting.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/features/settings/model/ScaledFloatSetting.kt @@ -2,7 +2,7 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.features.settings.model +package io.github.lime3ds.features.settings.model enum class ScaledFloatSetting( override val key: String, diff --git a/src/android/app/src/main/java/org/citra/citra_emu/features/settings/model/SettingSection.kt b/src/android/app/src/main/java/org/citra/citra_emu/features/settings/model/SettingSection.kt index 02c5fa2d5..9c47f8ba7 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/features/settings/model/SettingSection.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/features/settings/model/SettingSection.kt @@ -2,7 +2,7 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.features.settings.model +package io.github.lime3ds.features.settings.model /** * A semantically-related group of Settings objects. These Settings are diff --git a/src/android/app/src/main/java/org/citra/citra_emu/features/settings/model/Settings.kt b/src/android/app/src/main/java/org/citra/citra_emu/features/settings/model/Settings.kt index d94489021..e8f35ab3d 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/features/settings/model/Settings.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/features/settings/model/Settings.kt @@ -2,13 +2,13 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.features.settings.model +package io.github.lime3ds.features.settings.model import android.text.TextUtils -import org.citra.citra_emu.CitraApplication -import org.citra.citra_emu.R -import org.citra.citra_emu.features.settings.ui.SettingsActivityView -import org.citra.citra_emu.features.settings.utils.SettingsFile +import io.github.lime3ds.CitraApplication +import io.github.lime3ds.R +import io.github.lime3ds.features.settings.ui.SettingsActivityView +import io.github.lime3ds.features.settings.utils.SettingsFile import java.util.TreeMap class Settings { diff --git a/src/android/app/src/main/java/org/citra/citra_emu/features/settings/model/SettingsViewModel.kt b/src/android/app/src/main/java/org/citra/citra_emu/features/settings/model/SettingsViewModel.kt index 3f9b4ad1f..ed85570fb 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/features/settings/model/SettingsViewModel.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/features/settings/model/SettingsViewModel.kt @@ -2,7 +2,7 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.features.settings.model +package io.github.lime3ds.features.settings.model import androidx.lifecycle.ViewModel diff --git a/src/android/app/src/main/java/org/citra/citra_emu/features/settings/model/StringSetting.kt b/src/android/app/src/main/java/org/citra/citra_emu/features/settings/model/StringSetting.kt index 87b425f5b..5f49403b8 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/features/settings/model/StringSetting.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/features/settings/model/StringSetting.kt @@ -2,7 +2,7 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.features.settings.model +package io.github.lime3ds.features.settings.model enum class StringSetting( override val key: String, diff --git a/src/android/app/src/main/java/org/citra/citra_emu/features/settings/model/view/DateTimeSetting.kt b/src/android/app/src/main/java/org/citra/citra_emu/features/settings/model/view/DateTimeSetting.kt index 6332e0e31..f73288634 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/features/settings/model/view/DateTimeSetting.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/features/settings/model/view/DateTimeSetting.kt @@ -2,10 +2,10 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.features.settings.model.view +package io.github.lime3ds.features.settings.model.view -import org.citra.citra_emu.features.settings.model.AbstractSetting -import org.citra.citra_emu.features.settings.model.AbstractStringSetting +import io.github.lime3ds.features.settings.model.AbstractSetting +import io.github.lime3ds.features.settings.model.AbstractStringSetting class DateTimeSetting( setting: AbstractSetting?, diff --git a/src/android/app/src/main/java/org/citra/citra_emu/features/settings/model/view/HeaderSetting.kt b/src/android/app/src/main/java/org/citra/citra_emu/features/settings/model/view/HeaderSetting.kt index e99b842f9..b1a66d1f9 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/features/settings/model/view/HeaderSetting.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/features/settings/model/view/HeaderSetting.kt @@ -2,7 +2,7 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.features.settings.model.view +package io.github.lime3ds.features.settings.model.view class HeaderSetting(titleId: Int) : SettingsItem(null, titleId, 0) { override val type = TYPE_HEADER diff --git a/src/android/app/src/main/java/org/citra/citra_emu/features/settings/model/view/InputBindingSetting.kt b/src/android/app/src/main/java/org/citra/citra_emu/features/settings/model/view/InputBindingSetting.kt index 55b454093..7d1d64943 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/features/settings/model/view/InputBindingSetting.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/features/settings/model/view/InputBindingSetting.kt @@ -2,7 +2,7 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.features.settings.model.view +package io.github.lime3ds.features.settings.model.view import android.content.Context import android.content.SharedPreferences @@ -11,12 +11,12 @@ import android.view.InputDevice.MotionRange import android.view.KeyEvent import android.widget.Toast import androidx.preference.PreferenceManager -import org.citra.citra_emu.CitraApplication -import org.citra.citra_emu.NativeLibrary -import org.citra.citra_emu.R -import org.citra.citra_emu.features.hotkeys.Hotkey -import org.citra.citra_emu.features.settings.model.AbstractSetting -import org.citra.citra_emu.features.settings.model.Settings +import io.github.lime3ds.CitraApplication +import io.github.lime3ds.NativeLibrary +import io.github.lime3ds.R +import io.github.lime3ds.features.hotkeys.Hotkey +import io.github.lime3ds.features.settings.model.AbstractSetting +import io.github.lime3ds.features.settings.model.Settings class InputBindingSetting( val abstractSetting: AbstractSetting, diff --git a/src/android/app/src/main/java/org/citra/citra_emu/features/settings/model/view/RunnableSetting.kt b/src/android/app/src/main/java/org/citra/citra_emu/features/settings/model/view/RunnableSetting.kt index 8a237a14e..4649c7b9a 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/features/settings/model/view/RunnableSetting.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/features/settings/model/view/RunnableSetting.kt @@ -2,7 +2,7 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.features.settings.model.view +package io.github.lime3ds.features.settings.model.view class RunnableSetting( titleId: Int, diff --git a/src/android/app/src/main/java/org/citra/citra_emu/features/settings/model/view/SettingsItem.kt b/src/android/app/src/main/java/org/citra/citra_emu/features/settings/model/view/SettingsItem.kt index 5f6b4b70c..bd1d53885 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/features/settings/model/view/SettingsItem.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/features/settings/model/view/SettingsItem.kt @@ -2,10 +2,10 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.features.settings.model.view +package io.github.lime3ds.features.settings.model.view -import org.citra.citra_emu.NativeLibrary -import org.citra.citra_emu.features.settings.model.AbstractSetting +import io.github.lime3ds.NativeLibrary +import io.github.lime3ds.features.settings.model.AbstractSetting /** * ViewModel abstraction for an Item in the RecyclerView powering SettingsFragments. diff --git a/src/android/app/src/main/java/org/citra/citra_emu/features/settings/model/view/SingleChoiceSetting.kt b/src/android/app/src/main/java/org/citra/citra_emu/features/settings/model/view/SingleChoiceSetting.kt index f3e316dea..8f2048e43 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/features/settings/model/view/SingleChoiceSetting.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/features/settings/model/view/SingleChoiceSetting.kt @@ -2,11 +2,11 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.features.settings.model.view +package io.github.lime3ds.features.settings.model.view -import org.citra.citra_emu.features.settings.model.AbstractIntSetting -import org.citra.citra_emu.features.settings.model.AbstractSetting -import org.citra.citra_emu.features.settings.model.AbstractShortSetting +import io.github.lime3ds.features.settings.model.AbstractIntSetting +import io.github.lime3ds.features.settings.model.AbstractSetting +import io.github.lime3ds.features.settings.model.AbstractShortSetting class SingleChoiceSetting( setting: AbstractSetting?, diff --git a/src/android/app/src/main/java/org/citra/citra_emu/features/settings/model/view/SliderSetting.kt b/src/android/app/src/main/java/org/citra/citra_emu/features/settings/model/view/SliderSetting.kt index 1227bf46d..3fe6459f6 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/features/settings/model/view/SliderSetting.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/features/settings/model/view/SliderSetting.kt @@ -2,14 +2,14 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.features.settings.model.view +package io.github.lime3ds.features.settings.model.view -import org.citra.citra_emu.features.settings.model.AbstractFloatSetting -import org.citra.citra_emu.features.settings.model.AbstractIntSetting -import org.citra.citra_emu.features.settings.model.AbstractSetting -import org.citra.citra_emu.features.settings.model.FloatSetting -import org.citra.citra_emu.features.settings.model.ScaledFloatSetting -import org.citra.citra_emu.utils.Log +import io.github.lime3ds.features.settings.model.AbstractFloatSetting +import io.github.lime3ds.features.settings.model.AbstractIntSetting +import io.github.lime3ds.features.settings.model.AbstractSetting +import io.github.lime3ds.features.settings.model.FloatSetting +import io.github.lime3ds.features.settings.model.ScaledFloatSetting +import io.github.lime3ds.utils.Log import kotlin.math.roundToInt class SliderSetting( diff --git a/src/android/app/src/main/java/org/citra/citra_emu/features/settings/model/view/StringInputSetting.kt b/src/android/app/src/main/java/org/citra/citra_emu/features/settings/model/view/StringInputSetting.kt index ebbe1a675..d0971c0e9 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/features/settings/model/view/StringInputSetting.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/features/settings/model/view/StringInputSetting.kt @@ -2,10 +2,10 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.features.settings.model.view +package io.github.lime3ds.features.settings.model.view -import org.citra.citra_emu.features.settings.model.AbstractSetting -import org.citra.citra_emu.features.settings.model.AbstractStringSetting +import io.github.lime3ds.features.settings.model.AbstractSetting +import io.github.lime3ds.features.settings.model.AbstractStringSetting class StringInputSetting( setting: AbstractSetting?, diff --git a/src/android/app/src/main/java/org/citra/citra_emu/features/settings/model/view/StringSingleChoiceSetting.kt b/src/android/app/src/main/java/org/citra/citra_emu/features/settings/model/view/StringSingleChoiceSetting.kt index 17e1ae72c..116032b09 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/features/settings/model/view/StringSingleChoiceSetting.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/features/settings/model/view/StringSingleChoiceSetting.kt @@ -2,11 +2,11 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.features.settings.model.view +package io.github.lime3ds.features.settings.model.view -import org.citra.citra_emu.features.settings.model.AbstractSetting -import org.citra.citra_emu.features.settings.model.AbstractShortSetting -import org.citra.citra_emu.features.settings.model.AbstractStringSetting +import io.github.lime3ds.features.settings.model.AbstractSetting +import io.github.lime3ds.features.settings.model.AbstractShortSetting +import io.github.lime3ds.features.settings.model.AbstractStringSetting class StringSingleChoiceSetting( setting: AbstractSetting?, diff --git a/src/android/app/src/main/java/org/citra/citra_emu/features/settings/model/view/SubmenuSetting.kt b/src/android/app/src/main/java/org/citra/citra_emu/features/settings/model/view/SubmenuSetting.kt index 08e1c6047..b24add2a2 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/features/settings/model/view/SubmenuSetting.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/features/settings/model/view/SubmenuSetting.kt @@ -2,7 +2,7 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.features.settings.model.view +package io.github.lime3ds.features.settings.model.view class SubmenuSetting( titleId: Int, diff --git a/src/android/app/src/main/java/org/citra/citra_emu/features/settings/model/view/SwitchSetting.kt b/src/android/app/src/main/java/org/citra/citra_emu/features/settings/model/view/SwitchSetting.kt index a1d27849d..90ec5d3bf 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/features/settings/model/view/SwitchSetting.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/features/settings/model/view/SwitchSetting.kt @@ -2,11 +2,11 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.features.settings.model.view +package io.github.lime3ds.features.settings.model.view -import org.citra.citra_emu.features.settings.model.AbstractBooleanSetting -import org.citra.citra_emu.features.settings.model.AbstractIntSetting -import org.citra.citra_emu.features.settings.model.AbstractSetting +import io.github.lime3ds.features.settings.model.AbstractBooleanSetting +import io.github.lime3ds.features.settings.model.AbstractIntSetting +import io.github.lime3ds.features.settings.model.AbstractSetting class SwitchSetting( setting: AbstractSetting, diff --git a/src/android/app/src/main/java/org/citra/citra_emu/features/settings/ui/SettingsActivity.kt b/src/android/app/src/main/java/org/citra/citra_emu/features/settings/ui/SettingsActivity.kt index 18b708131..7e0a71d9d 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/features/settings/ui/SettingsActivity.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/features/settings/ui/SettingsActivity.kt @@ -2,7 +2,7 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.features.settings.ui +package io.github.lime3ds.features.settings.ui import android.content.Context import android.content.Intent @@ -21,23 +21,23 @@ import androidx.core.view.WindowInsetsCompat import androidx.core.view.updatePadding import androidx.preference.PreferenceManager import com.google.android.material.color.MaterialColors -import org.citra.citra_emu.CitraApplication -import org.citra.citra_emu.NativeLibrary -import org.citra.citra_emu.R -import org.citra.citra_emu.databinding.ActivitySettingsBinding +import io.github.lime3ds.CitraApplication +import io.github.lime3ds.NativeLibrary +import io.github.lime3ds.R +import io.github.lime3ds.databinding.ActivitySettingsBinding import java.io.IOException -import org.citra.citra_emu.features.settings.model.BooleanSetting -import org.citra.citra_emu.features.settings.model.FloatSetting -import org.citra.citra_emu.features.settings.model.IntSetting -import org.citra.citra_emu.features.settings.model.ScaledFloatSetting -import org.citra.citra_emu.features.settings.model.Settings -import org.citra.citra_emu.features.settings.model.SettingsViewModel -import org.citra.citra_emu.features.settings.model.StringSetting -import org.citra.citra_emu.features.settings.utils.SettingsFile -import org.citra.citra_emu.utils.SystemSaveGame -import org.citra.citra_emu.utils.DirectoryInitialization -import org.citra.citra_emu.utils.InsetsHelper -import org.citra.citra_emu.utils.ThemeUtil +import io.github.lime3ds.features.settings.model.BooleanSetting +import io.github.lime3ds.features.settings.model.FloatSetting +import io.github.lime3ds.features.settings.model.IntSetting +import io.github.lime3ds.features.settings.model.ScaledFloatSetting +import io.github.lime3ds.features.settings.model.Settings +import io.github.lime3ds.features.settings.model.SettingsViewModel +import io.github.lime3ds.features.settings.model.StringSetting +import io.github.lime3ds.features.settings.utils.SettingsFile +import io.github.lime3ds.utils.SystemSaveGame +import io.github.lime3ds.utils.DirectoryInitialization +import io.github.lime3ds.utils.InsetsHelper +import io.github.lime3ds.utils.ThemeUtil class SettingsActivity : AppCompatActivity(), SettingsActivityView { private val presenter = SettingsActivityPresenter(this) diff --git a/src/android/app/src/main/java/org/citra/citra_emu/features/settings/ui/SettingsActivityPresenter.kt b/src/android/app/src/main/java/org/citra/citra_emu/features/settings/ui/SettingsActivityPresenter.kt index ae3653109..7dd3f2672 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/features/settings/ui/SettingsActivityPresenter.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/features/settings/ui/SettingsActivityPresenter.kt @@ -2,15 +2,15 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.features.settings.ui +package io.github.lime3ds.features.settings.ui import android.os.Bundle import android.text.TextUtils -import org.citra.citra_emu.NativeLibrary -import org.citra.citra_emu.features.settings.model.Settings -import org.citra.citra_emu.utils.SystemSaveGame -import org.citra.citra_emu.utils.DirectoryInitialization -import org.citra.citra_emu.utils.Log +import io.github.lime3ds.NativeLibrary +import io.github.lime3ds.features.settings.model.Settings +import io.github.lime3ds.utils.SystemSaveGame +import io.github.lime3ds.utils.DirectoryInitialization +import io.github.lime3ds.utils.Log class SettingsActivityPresenter(private val activityView: SettingsActivityView) { val settings: Settings get() = activityView.settings diff --git a/src/android/app/src/main/java/org/citra/citra_emu/features/settings/ui/SettingsActivityView.kt b/src/android/app/src/main/java/org/citra/citra_emu/features/settings/ui/SettingsActivityView.kt index 126a010f0..365c7da98 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/features/settings/ui/SettingsActivityView.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/features/settings/ui/SettingsActivityView.kt @@ -2,9 +2,9 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.features.settings.ui +package io.github.lime3ds.features.settings.ui -import org.citra.citra_emu.features.settings.model.Settings +import io.github.lime3ds.features.settings.model.Settings /** * Abstraction for the Activity that manages SettingsFragments. diff --git a/src/android/app/src/main/java/org/citra/citra_emu/features/settings/ui/SettingsAdapter.kt b/src/android/app/src/main/java/org/citra/citra_emu/features/settings/ui/SettingsAdapter.kt index 9f314c6dc..afd0389d1 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/features/settings/ui/SettingsAdapter.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/features/settings/ui/SettingsAdapter.kt @@ -2,7 +2,7 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.features.settings.ui +package io.github.lime3ds.features.settings.ui import android.annotation.SuppressLint import android.content.Context @@ -24,42 +24,42 @@ import com.google.android.material.dialog.MaterialAlertDialogBuilder import com.google.android.material.slider.Slider import com.google.android.material.timepicker.MaterialTimePicker import com.google.android.material.timepicker.TimeFormat -import org.citra.citra_emu.R -import org.citra.citra_emu.databinding.DialogSliderBinding -import org.citra.citra_emu.databinding.DialogSoftwareKeyboardBinding -import org.citra.citra_emu.databinding.ListItemSettingBinding -import org.citra.citra_emu.databinding.ListItemSettingSwitchBinding -import org.citra.citra_emu.databinding.ListItemSettingsHeaderBinding -import org.citra.citra_emu.features.settings.model.AbstractBooleanSetting -import org.citra.citra_emu.features.settings.model.AbstractFloatSetting -import org.citra.citra_emu.features.settings.model.AbstractIntSetting -import org.citra.citra_emu.features.settings.model.AbstractSetting -import org.citra.citra_emu.features.settings.model.AbstractStringSetting -import org.citra.citra_emu.features.settings.model.FloatSetting -import org.citra.citra_emu.features.settings.model.ScaledFloatSetting -import org.citra.citra_emu.features.settings.model.AbstractShortSetting -import org.citra.citra_emu.features.settings.model.view.DateTimeSetting -import org.citra.citra_emu.features.settings.model.view.InputBindingSetting -import org.citra.citra_emu.features.settings.model.view.SettingsItem -import org.citra.citra_emu.features.settings.model.view.SingleChoiceSetting -import org.citra.citra_emu.features.settings.model.view.SliderSetting -import org.citra.citra_emu.features.settings.model.view.StringInputSetting -import org.citra.citra_emu.features.settings.model.view.StringSingleChoiceSetting -import org.citra.citra_emu.features.settings.model.view.SubmenuSetting -import org.citra.citra_emu.features.settings.model.view.SwitchSetting -import org.citra.citra_emu.features.settings.ui.viewholder.DateTimeViewHolder -import org.citra.citra_emu.features.settings.ui.viewholder.HeaderViewHolder -import org.citra.citra_emu.features.settings.ui.viewholder.InputBindingSettingViewHolder -import org.citra.citra_emu.features.settings.ui.viewholder.RunnableViewHolder -import org.citra.citra_emu.features.settings.ui.viewholder.SettingViewHolder -import org.citra.citra_emu.features.settings.ui.viewholder.SingleChoiceViewHolder -import org.citra.citra_emu.features.settings.ui.viewholder.SliderViewHolder -import org.citra.citra_emu.features.settings.ui.viewholder.StringInputViewHolder -import org.citra.citra_emu.features.settings.ui.viewholder.SubmenuViewHolder -import org.citra.citra_emu.features.settings.ui.viewholder.SwitchSettingViewHolder -import org.citra.citra_emu.fragments.MessageDialogFragment -import org.citra.citra_emu.fragments.MotionBottomSheetDialogFragment -import org.citra.citra_emu.utils.SystemSaveGame +import io.github.lime3ds.R +import io.github.lime3ds.databinding.DialogSliderBinding +import io.github.lime3ds.databinding.DialogSoftwareKeyboardBinding +import io.github.lime3ds.databinding.ListItemSettingBinding +import io.github.lime3ds.databinding.ListItemSettingSwitchBinding +import io.github.lime3ds.databinding.ListItemSettingsHeaderBinding +import io.github.lime3ds.features.settings.model.AbstractBooleanSetting +import io.github.lime3ds.features.settings.model.AbstractFloatSetting +import io.github.lime3ds.features.settings.model.AbstractIntSetting +import io.github.lime3ds.features.settings.model.AbstractSetting +import io.github.lime3ds.features.settings.model.AbstractStringSetting +import io.github.lime3ds.features.settings.model.FloatSetting +import io.github.lime3ds.features.settings.model.ScaledFloatSetting +import io.github.lime3ds.features.settings.model.AbstractShortSetting +import io.github.lime3ds.features.settings.model.view.DateTimeSetting +import io.github.lime3ds.features.settings.model.view.InputBindingSetting +import io.github.lime3ds.features.settings.model.view.SettingsItem +import io.github.lime3ds.features.settings.model.view.SingleChoiceSetting +import io.github.lime3ds.features.settings.model.view.SliderSetting +import io.github.lime3ds.features.settings.model.view.StringInputSetting +import io.github.lime3ds.features.settings.model.view.StringSingleChoiceSetting +import io.github.lime3ds.features.settings.model.view.SubmenuSetting +import io.github.lime3ds.features.settings.model.view.SwitchSetting +import io.github.lime3ds.features.settings.ui.viewholder.DateTimeViewHolder +import io.github.lime3ds.features.settings.ui.viewholder.HeaderViewHolder +import io.github.lime3ds.features.settings.ui.viewholder.InputBindingSettingViewHolder +import io.github.lime3ds.features.settings.ui.viewholder.RunnableViewHolder +import io.github.lime3ds.features.settings.ui.viewholder.SettingViewHolder +import io.github.lime3ds.features.settings.ui.viewholder.SingleChoiceViewHolder +import io.github.lime3ds.features.settings.ui.viewholder.SliderViewHolder +import io.github.lime3ds.features.settings.ui.viewholder.StringInputViewHolder +import io.github.lime3ds.features.settings.ui.viewholder.SubmenuViewHolder +import io.github.lime3ds.features.settings.ui.viewholder.SwitchSettingViewHolder +import io.github.lime3ds.fragments.MessageDialogFragment +import io.github.lime3ds.fragments.MotionBottomSheetDialogFragment +import io.github.lime3ds.utils.SystemSaveGame import java.lang.IllegalStateException import java.lang.NumberFormatException import java.text.SimpleDateFormat diff --git a/src/android/app/src/main/java/org/citra/citra_emu/features/settings/ui/SettingsFragment.kt b/src/android/app/src/main/java/org/citra/citra_emu/features/settings/ui/SettingsFragment.kt index 77458cd54..d8f376f83 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/features/settings/ui/SettingsFragment.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/features/settings/ui/SettingsFragment.kt @@ -2,7 +2,7 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.features.settings.ui +package io.github.lime3ds.features.settings.ui import android.content.Context import android.os.Bundle @@ -15,9 +15,9 @@ import androidx.core.view.updatePadding import androidx.fragment.app.Fragment import androidx.recyclerview.widget.LinearLayoutManager import com.google.android.material.divider.MaterialDividerItemDecoration -import org.citra.citra_emu.databinding.FragmentSettingsBinding -import org.citra.citra_emu.features.settings.model.AbstractSetting -import org.citra.citra_emu.features.settings.model.view.SettingsItem +import io.github.lime3ds.databinding.FragmentSettingsBinding +import io.github.lime3ds.features.settings.model.AbstractSetting +import io.github.lime3ds.features.settings.model.view.SettingsItem class SettingsFragment : Fragment(), SettingsFragmentView { override var activityView: SettingsActivityView? = null diff --git a/src/android/app/src/main/java/org/citra/citra_emu/features/settings/ui/SettingsFragmentPresenter.kt b/src/android/app/src/main/java/org/citra/citra_emu/features/settings/ui/SettingsFragmentPresenter.kt index 9f504e603..7d397e6fc 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/features/settings/ui/SettingsFragmentPresenter.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/features/settings/ui/SettingsFragmentPresenter.kt @@ -2,7 +2,7 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.features.settings.ui +package io.github.lime3ds.features.settings.ui import android.content.Context import android.content.SharedPreferences @@ -12,35 +12,35 @@ import android.hardware.camera2.CameraManager import android.os.Build import android.text.TextUtils import androidx.preference.PreferenceManager -import org.citra.citra_emu.CitraApplication -import org.citra.citra_emu.R -import org.citra.citra_emu.features.settings.model.AbstractBooleanSetting -import org.citra.citra_emu.features.settings.model.AbstractIntSetting -import org.citra.citra_emu.features.settings.model.AbstractSetting -import org.citra.citra_emu.features.settings.model.AbstractStringSetting -import org.citra.citra_emu.features.settings.model.BooleanSetting -import org.citra.citra_emu.features.settings.model.IntSetting -import org.citra.citra_emu.features.settings.model.ScaledFloatSetting -import org.citra.citra_emu.features.settings.model.Settings -import org.citra.citra_emu.features.settings.model.StringSetting -import org.citra.citra_emu.features.settings.model.AbstractShortSetting -import org.citra.citra_emu.features.settings.model.view.DateTimeSetting -import org.citra.citra_emu.features.settings.model.view.HeaderSetting -import org.citra.citra_emu.features.settings.model.view.InputBindingSetting -import org.citra.citra_emu.features.settings.model.view.RunnableSetting -import org.citra.citra_emu.features.settings.model.view.SettingsItem -import org.citra.citra_emu.features.settings.model.view.SingleChoiceSetting -import org.citra.citra_emu.features.settings.model.view.SliderSetting -import org.citra.citra_emu.features.settings.model.view.StringInputSetting -import org.citra.citra_emu.features.settings.model.view.StringSingleChoiceSetting -import org.citra.citra_emu.features.settings.model.view.SubmenuSetting -import org.citra.citra_emu.features.settings.model.view.SwitchSetting -import org.citra.citra_emu.features.settings.utils.SettingsFile -import org.citra.citra_emu.fragments.ResetSettingsDialogFragment -import org.citra.citra_emu.utils.BirthdayMonth -import org.citra.citra_emu.utils.Log -import org.citra.citra_emu.utils.SystemSaveGame -import org.citra.citra_emu.utils.ThemeUtil +import io.github.lime3ds.CitraApplication +import io.github.lime3ds.R +import io.github.lime3ds.features.settings.model.AbstractBooleanSetting +import io.github.lime3ds.features.settings.model.AbstractIntSetting +import io.github.lime3ds.features.settings.model.AbstractSetting +import io.github.lime3ds.features.settings.model.AbstractStringSetting +import io.github.lime3ds.features.settings.model.BooleanSetting +import io.github.lime3ds.features.settings.model.IntSetting +import io.github.lime3ds.features.settings.model.ScaledFloatSetting +import io.github.lime3ds.features.settings.model.Settings +import io.github.lime3ds.features.settings.model.StringSetting +import io.github.lime3ds.features.settings.model.AbstractShortSetting +import io.github.lime3ds.features.settings.model.view.DateTimeSetting +import io.github.lime3ds.features.settings.model.view.HeaderSetting +import io.github.lime3ds.features.settings.model.view.InputBindingSetting +import io.github.lime3ds.features.settings.model.view.RunnableSetting +import io.github.lime3ds.features.settings.model.view.SettingsItem +import io.github.lime3ds.features.settings.model.view.SingleChoiceSetting +import io.github.lime3ds.features.settings.model.view.SliderSetting +import io.github.lime3ds.features.settings.model.view.StringInputSetting +import io.github.lime3ds.features.settings.model.view.StringSingleChoiceSetting +import io.github.lime3ds.features.settings.model.view.SubmenuSetting +import io.github.lime3ds.features.settings.model.view.SwitchSetting +import io.github.lime3ds.features.settings.utils.SettingsFile +import io.github.lime3ds.fragments.ResetSettingsDialogFragment +import io.github.lime3ds.utils.BirthdayMonth +import io.github.lime3ds.utils.Log +import io.github.lime3ds.utils.SystemSaveGame +import io.github.lime3ds.utils.ThemeUtil class SettingsFragmentPresenter(private val fragmentView: SettingsFragmentView) { private var menuTag: String? = null diff --git a/src/android/app/src/main/java/org/citra/citra_emu/features/settings/ui/SettingsFragmentView.kt b/src/android/app/src/main/java/org/citra/citra_emu/features/settings/ui/SettingsFragmentView.kt index e1bb25230..48c780c8b 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/features/settings/ui/SettingsFragmentView.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/features/settings/ui/SettingsFragmentView.kt @@ -2,10 +2,10 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.features.settings.ui +package io.github.lime3ds.features.settings.ui -import org.citra.citra_emu.features.settings.model.AbstractSetting -import org.citra.citra_emu.features.settings.model.view.SettingsItem +import io.github.lime3ds.features.settings.model.AbstractSetting +import io.github.lime3ds.features.settings.model.view.SettingsItem /** * Abstraction for a screen showing a list of settings. Instances of diff --git a/src/android/app/src/main/java/org/citra/citra_emu/features/settings/ui/viewholder/DateTimeViewHolder.kt b/src/android/app/src/main/java/org/citra/citra_emu/features/settings/ui/viewholder/DateTimeViewHolder.kt index 6e06e7a01..bee126ac8 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/features/settings/ui/viewholder/DateTimeViewHolder.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/features/settings/ui/viewholder/DateTimeViewHolder.kt @@ -2,19 +2,19 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.features.settings.ui.viewholder +package io.github.lime3ds.features.settings.ui.viewholder import android.annotation.SuppressLint import android.view.View -import org.citra.citra_emu.databinding.ListItemSettingBinding +import io.github.lime3ds.databinding.ListItemSettingBinding import java.time.Instant import java.time.ZoneId import java.time.ZonedDateTime import java.time.format.DateTimeFormatter import java.time.format.FormatStyle -import org.citra.citra_emu.features.settings.model.view.DateTimeSetting -import org.citra.citra_emu.features.settings.model.view.SettingsItem -import org.citra.citra_emu.features.settings.ui.SettingsAdapter +import io.github.lime3ds.features.settings.model.view.DateTimeSetting +import io.github.lime3ds.features.settings.model.view.SettingsItem +import io.github.lime3ds.features.settings.ui.SettingsAdapter import java.text.SimpleDateFormat class DateTimeViewHolder(val binding: ListItemSettingBinding, adapter: SettingsAdapter) : diff --git a/src/android/app/src/main/java/org/citra/citra_emu/features/settings/ui/viewholder/HeaderViewHolder.kt b/src/android/app/src/main/java/org/citra/citra_emu/features/settings/ui/viewholder/HeaderViewHolder.kt index 617348c89..5b12db486 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/features/settings/ui/viewholder/HeaderViewHolder.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/features/settings/ui/viewholder/HeaderViewHolder.kt @@ -2,12 +2,12 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.features.settings.ui.viewholder +package io.github.lime3ds.features.settings.ui.viewholder import android.view.View -import org.citra.citra_emu.databinding.ListItemSettingsHeaderBinding -import org.citra.citra_emu.features.settings.model.view.SettingsItem -import org.citra.citra_emu.features.settings.ui.SettingsAdapter +import io.github.lime3ds.databinding.ListItemSettingsHeaderBinding +import io.github.lime3ds.features.settings.model.view.SettingsItem +import io.github.lime3ds.features.settings.ui.SettingsAdapter class HeaderViewHolder(val binding: ListItemSettingsHeaderBinding, adapter: SettingsAdapter) : SettingViewHolder(binding.root, adapter) { diff --git a/src/android/app/src/main/java/org/citra/citra_emu/features/settings/ui/viewholder/InputBindingSettingViewHolder.kt b/src/android/app/src/main/java/org/citra/citra_emu/features/settings/ui/viewholder/InputBindingSettingViewHolder.kt index 9d2dc15af..89336988d 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/features/settings/ui/viewholder/InputBindingSettingViewHolder.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/features/settings/ui/viewholder/InputBindingSettingViewHolder.kt @@ -2,15 +2,15 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.features.settings.ui.viewholder +package io.github.lime3ds.features.settings.ui.viewholder import android.view.View import androidx.preference.PreferenceManager -import org.citra.citra_emu.CitraApplication -import org.citra.citra_emu.databinding.ListItemSettingBinding -import org.citra.citra_emu.features.settings.model.view.InputBindingSetting -import org.citra.citra_emu.features.settings.model.view.SettingsItem -import org.citra.citra_emu.features.settings.ui.SettingsAdapter +import io.github.lime3ds.CitraApplication +import io.github.lime3ds.databinding.ListItemSettingBinding +import io.github.lime3ds.features.settings.model.view.InputBindingSetting +import io.github.lime3ds.features.settings.model.view.SettingsItem +import io.github.lime3ds.features.settings.ui.SettingsAdapter class InputBindingSettingViewHolder(val binding: ListItemSettingBinding, adapter: SettingsAdapter) : SettingViewHolder(binding.root, adapter) { diff --git a/src/android/app/src/main/java/org/citra/citra_emu/features/settings/ui/viewholder/RunnableViewHolder.kt b/src/android/app/src/main/java/org/citra/citra_emu/features/settings/ui/viewholder/RunnableViewHolder.kt index ac0c60a90..6a8ba59b5 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/features/settings/ui/viewholder/RunnableViewHolder.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/features/settings/ui/viewholder/RunnableViewHolder.kt @@ -2,14 +2,14 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.features.settings.ui.viewholder +package io.github.lime3ds.features.settings.ui.viewholder import android.view.View -import org.citra.citra_emu.NativeLibrary -import org.citra.citra_emu.databinding.ListItemSettingBinding -import org.citra.citra_emu.features.settings.model.view.RunnableSetting -import org.citra.citra_emu.features.settings.model.view.SettingsItem -import org.citra.citra_emu.features.settings.ui.SettingsAdapter +import io.github.lime3ds.NativeLibrary +import io.github.lime3ds.databinding.ListItemSettingBinding +import io.github.lime3ds.features.settings.model.view.RunnableSetting +import io.github.lime3ds.features.settings.model.view.SettingsItem +import io.github.lime3ds.features.settings.ui.SettingsAdapter class RunnableViewHolder(val binding: ListItemSettingBinding, adapter: SettingsAdapter) : SettingViewHolder(binding.root, adapter) { diff --git a/src/android/app/src/main/java/org/citra/citra_emu/features/settings/ui/viewholder/SettingViewHolder.kt b/src/android/app/src/main/java/org/citra/citra_emu/features/settings/ui/viewholder/SettingViewHolder.kt index 5b4d39cf4..10926c8e2 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/features/settings/ui/viewholder/SettingViewHolder.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/features/settings/ui/viewholder/SettingViewHolder.kt @@ -2,12 +2,12 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.features.settings.ui.viewholder +package io.github.lime3ds.features.settings.ui.viewholder import android.view.View import androidx.recyclerview.widget.RecyclerView -import org.citra.citra_emu.features.settings.model.view.SettingsItem -import org.citra.citra_emu.features.settings.ui.SettingsAdapter +import io.github.lime3ds.features.settings.model.view.SettingsItem +import io.github.lime3ds.features.settings.ui.SettingsAdapter abstract class SettingViewHolder(itemView: View, protected val adapter: SettingsAdapter) : RecyclerView.ViewHolder(itemView), View.OnClickListener, View.OnLongClickListener { diff --git a/src/android/app/src/main/java/org/citra/citra_emu/features/settings/ui/viewholder/SingleChoiceViewHolder.kt b/src/android/app/src/main/java/org/citra/citra_emu/features/settings/ui/viewholder/SingleChoiceViewHolder.kt index e5e6d5df6..169e6ed71 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/features/settings/ui/viewholder/SingleChoiceViewHolder.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/features/settings/ui/viewholder/SingleChoiceViewHolder.kt @@ -2,14 +2,14 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.features.settings.ui.viewholder +package io.github.lime3ds.features.settings.ui.viewholder import android.view.View -import org.citra.citra_emu.databinding.ListItemSettingBinding -import org.citra.citra_emu.features.settings.model.view.SettingsItem -import org.citra.citra_emu.features.settings.model.view.SingleChoiceSetting -import org.citra.citra_emu.features.settings.model.view.StringSingleChoiceSetting -import org.citra.citra_emu.features.settings.ui.SettingsAdapter +import io.github.lime3ds.databinding.ListItemSettingBinding +import io.github.lime3ds.features.settings.model.view.SettingsItem +import io.github.lime3ds.features.settings.model.view.SingleChoiceSetting +import io.github.lime3ds.features.settings.model.view.StringSingleChoiceSetting +import io.github.lime3ds.features.settings.ui.SettingsAdapter class SingleChoiceViewHolder(val binding: ListItemSettingBinding, adapter: SettingsAdapter) : SettingViewHolder(binding.root, adapter) { diff --git a/src/android/app/src/main/java/org/citra/citra_emu/features/settings/ui/viewholder/SliderViewHolder.kt b/src/android/app/src/main/java/org/citra/citra_emu/features/settings/ui/viewholder/SliderViewHolder.kt index e5817adc7..4f31dfaef 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/features/settings/ui/viewholder/SliderViewHolder.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/features/settings/ui/viewholder/SliderViewHolder.kt @@ -2,17 +2,17 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.features.settings.ui.viewholder +package io.github.lime3ds.features.settings.ui.viewholder import android.view.View -import org.citra.citra_emu.databinding.ListItemSettingBinding -import org.citra.citra_emu.features.settings.model.AbstractFloatSetting -import org.citra.citra_emu.features.settings.model.AbstractIntSetting -import org.citra.citra_emu.features.settings.model.FloatSetting -import org.citra.citra_emu.features.settings.model.ScaledFloatSetting -import org.citra.citra_emu.features.settings.model.view.SettingsItem -import org.citra.citra_emu.features.settings.model.view.SliderSetting -import org.citra.citra_emu.features.settings.ui.SettingsAdapter +import io.github.lime3ds.databinding.ListItemSettingBinding +import io.github.lime3ds.features.settings.model.AbstractFloatSetting +import io.github.lime3ds.features.settings.model.AbstractIntSetting +import io.github.lime3ds.features.settings.model.FloatSetting +import io.github.lime3ds.features.settings.model.ScaledFloatSetting +import io.github.lime3ds.features.settings.model.view.SettingsItem +import io.github.lime3ds.features.settings.model.view.SliderSetting +import io.github.lime3ds.features.settings.ui.SettingsAdapter class SliderViewHolder(val binding: ListItemSettingBinding, adapter: SettingsAdapter) : SettingViewHolder(binding.root, adapter) { diff --git a/src/android/app/src/main/java/org/citra/citra_emu/features/settings/ui/viewholder/StringInputViewHolder.kt b/src/android/app/src/main/java/org/citra/citra_emu/features/settings/ui/viewholder/StringInputViewHolder.kt index b3140f39e..8f87c15a9 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/features/settings/ui/viewholder/StringInputViewHolder.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/features/settings/ui/viewholder/StringInputViewHolder.kt @@ -2,13 +2,13 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.features.settings.ui.viewholder +package io.github.lime3ds.features.settings.ui.viewholder import android.view.View -import org.citra.citra_emu.databinding.ListItemSettingBinding -import org.citra.citra_emu.features.settings.model.view.SettingsItem -import org.citra.citra_emu.features.settings.model.view.StringInputSetting -import org.citra.citra_emu.features.settings.ui.SettingsAdapter +import io.github.lime3ds.databinding.ListItemSettingBinding +import io.github.lime3ds.features.settings.model.view.SettingsItem +import io.github.lime3ds.features.settings.model.view.StringInputSetting +import io.github.lime3ds.features.settings.ui.SettingsAdapter class StringInputViewHolder(val binding: ListItemSettingBinding, adapter: SettingsAdapter) : SettingViewHolder(binding.root, adapter) { diff --git a/src/android/app/src/main/java/org/citra/citra_emu/features/settings/ui/viewholder/SubmenuViewHolder.kt b/src/android/app/src/main/java/org/citra/citra_emu/features/settings/ui/viewholder/SubmenuViewHolder.kt index 3098abbff..a3eaad96e 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/features/settings/ui/viewholder/SubmenuViewHolder.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/features/settings/ui/viewholder/SubmenuViewHolder.kt @@ -2,13 +2,13 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.features.settings.ui.viewholder +package io.github.lime3ds.features.settings.ui.viewholder import android.view.View -import org.citra.citra_emu.databinding.ListItemSettingBinding -import org.citra.citra_emu.features.settings.model.view.SettingsItem -import org.citra.citra_emu.features.settings.model.view.SubmenuSetting -import org.citra.citra_emu.features.settings.ui.SettingsAdapter +import io.github.lime3ds.databinding.ListItemSettingBinding +import io.github.lime3ds.features.settings.model.view.SettingsItem +import io.github.lime3ds.features.settings.model.view.SubmenuSetting +import io.github.lime3ds.features.settings.ui.SettingsAdapter class SubmenuViewHolder(val binding: ListItemSettingBinding, adapter: SettingsAdapter) : SettingViewHolder(binding.root, adapter) { diff --git a/src/android/app/src/main/java/org/citra/citra_emu/features/settings/ui/viewholder/SwitchSettingViewHolder.kt b/src/android/app/src/main/java/org/citra/citra_emu/features/settings/ui/viewholder/SwitchSettingViewHolder.kt index bd5ecc2eb..b026d76e0 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/features/settings/ui/viewholder/SwitchSettingViewHolder.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/features/settings/ui/viewholder/SwitchSettingViewHolder.kt @@ -2,14 +2,14 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.features.settings.ui.viewholder +package io.github.lime3ds.features.settings.ui.viewholder import android.view.View import android.widget.CompoundButton -import org.citra.citra_emu.databinding.ListItemSettingSwitchBinding -import org.citra.citra_emu.features.settings.model.view.SettingsItem -import org.citra.citra_emu.features.settings.model.view.SwitchSetting -import org.citra.citra_emu.features.settings.ui.SettingsAdapter +import io.github.lime3ds.databinding.ListItemSettingSwitchBinding +import io.github.lime3ds.features.settings.model.view.SettingsItem +import io.github.lime3ds.features.settings.model.view.SwitchSetting +import io.github.lime3ds.features.settings.ui.SettingsAdapter class SwitchSettingViewHolder(val binding: ListItemSettingSwitchBinding, adapter: SettingsAdapter) : SettingViewHolder(binding.root, adapter) { diff --git a/src/android/app/src/main/java/org/citra/citra_emu/features/settings/utils/SettingsFile.kt b/src/android/app/src/main/java/org/citra/citra_emu/features/settings/utils/SettingsFile.kt index dec3e4e0a..1c02047c1 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/features/settings/utils/SettingsFile.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/features/settings/utils/SettingsFile.kt @@ -2,25 +2,25 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.features.settings.utils +package io.github.lime3ds.features.settings.utils import android.content.Context import android.net.Uri import androidx.documentfile.provider.DocumentFile -import org.citra.citra_emu.CitraApplication -import org.citra.citra_emu.R -import org.citra.citra_emu.features.settings.model.AbstractSetting -import org.citra.citra_emu.features.settings.model.BooleanSetting -import org.citra.citra_emu.features.settings.model.FloatSetting -import org.citra.citra_emu.features.settings.model.IntSetting -import org.citra.citra_emu.features.settings.model.ScaledFloatSetting -import org.citra.citra_emu.features.settings.model.SettingSection -import org.citra.citra_emu.features.settings.model.Settings.SettingsSectionMap -import org.citra.citra_emu.features.settings.model.StringSetting -import org.citra.citra_emu.features.settings.ui.SettingsActivityView -import org.citra.citra_emu.utils.BiMap -import org.citra.citra_emu.utils.DirectoryInitialization.userDirectory -import org.citra.citra_emu.utils.Log +import io.github.lime3ds.CitraApplication +import io.github.lime3ds.R +import io.github.lime3ds.features.settings.model.AbstractSetting +import io.github.lime3ds.features.settings.model.BooleanSetting +import io.github.lime3ds.features.settings.model.FloatSetting +import io.github.lime3ds.features.settings.model.IntSetting +import io.github.lime3ds.features.settings.model.ScaledFloatSetting +import io.github.lime3ds.features.settings.model.SettingSection +import io.github.lime3ds.features.settings.model.Settings.SettingsSectionMap +import io.github.lime3ds.features.settings.model.StringSetting +import io.github.lime3ds.features.settings.ui.SettingsActivityView +import io.github.lime3ds.utils.BiMap +import io.github.lime3ds.utils.DirectoryInitialization.userDirectory +import io.github.lime3ds.utils.Log import org.ini4j.Wini import java.io.BufferedReader import java.io.FileNotFoundException diff --git a/src/android/app/src/main/java/org/citra/citra_emu/fragments/AboutFragment.kt b/src/android/app/src/main/java/org/citra/citra_emu/fragments/AboutFragment.kt index 3943aa23d..f2d49461d 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/fragments/AboutFragment.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/fragments/AboutFragment.kt @@ -2,7 +2,7 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.fragments +package io.github.lime3ds.fragments import android.content.ClipData import android.content.ClipboardManager @@ -23,10 +23,10 @@ import androidx.fragment.app.Fragment import androidx.fragment.app.activityViewModels import androidx.navigation.findNavController import com.google.android.material.transition.MaterialSharedAxis -import org.citra.citra_emu.BuildConfig -import org.citra.citra_emu.R -import org.citra.citra_emu.databinding.FragmentAboutBinding -import org.citra.citra_emu.viewmodel.HomeViewModel +import io.github.lime3ds.BuildConfig +import io.github.lime3ds.R +import io.github.lime3ds.databinding.FragmentAboutBinding +import io.github.lime3ds.viewmodel.HomeViewModel class AboutFragment : Fragment() { private var _binding: FragmentAboutBinding? = null diff --git a/src/android/app/src/main/java/org/citra/citra_emu/fragments/CitraDirectoryDialogFragment.kt b/src/android/app/src/main/java/org/citra/citra_emu/fragments/CitraDirectoryDialogFragment.kt index aa2a0716f..49db104cb 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/fragments/CitraDirectoryDialogFragment.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/fragments/CitraDirectoryDialogFragment.kt @@ -2,7 +2,7 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.fragments +package io.github.lime3ds.fragments import android.app.Dialog import android.content.DialogInterface @@ -14,11 +14,11 @@ import androidx.fragment.app.FragmentActivity import androidx.fragment.app.activityViewModels import androidx.lifecycle.ViewModelProvider import com.google.android.material.dialog.MaterialAlertDialogBuilder -import org.citra.citra_emu.R -import org.citra.citra_emu.databinding.DialogCitraDirectoryBinding -import org.citra.citra_emu.ui.main.MainActivity -import org.citra.citra_emu.utils.PermissionsHandler -import org.citra.citra_emu.viewmodel.HomeViewModel +import io.github.lime3ds.R +import io.github.lime3ds.databinding.DialogCitraDirectoryBinding +import io.github.lime3ds.ui.main.MainActivity +import io.github.lime3ds.utils.PermissionsHandler +import io.github.lime3ds.viewmodel.HomeViewModel class CitraDirectoryDialogFragment : DialogFragment() { private lateinit var binding: DialogCitraDirectoryBinding diff --git a/src/android/app/src/main/java/org/citra/citra_emu/fragments/CopyDirProgressDialogFragment.kt b/src/android/app/src/main/java/org/citra/citra_emu/fragments/CopyDirProgressDialogFragment.kt index 7fd92f979..89ce0a6fe 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/fragments/CopyDirProgressDialogFragment.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/fragments/CopyDirProgressDialogFragment.kt @@ -2,7 +2,7 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.fragments +package io.github.lime3ds.fragments import android.app.Dialog import android.net.Uri @@ -23,14 +23,14 @@ import kotlinx.coroutines.Dispatchers import kotlinx.coroutines.flow.collectLatest import kotlinx.coroutines.launch import kotlinx.coroutines.withContext -import org.citra.citra_emu.CitraApplication -import org.citra.citra_emu.R -import org.citra.citra_emu.databinding.DialogCopyDirBinding -import org.citra.citra_emu.model.SetupCallback -import org.citra.citra_emu.utils.CitraDirectoryHelper -import org.citra.citra_emu.utils.FileUtil -import org.citra.citra_emu.utils.PermissionsHandler -import org.citra.citra_emu.viewmodel.HomeViewModel +import io.github.lime3ds.CitraApplication +import io.github.lime3ds.R +import io.github.lime3ds.databinding.DialogCopyDirBinding +import io.github.lime3ds.model.SetupCallback +import io.github.lime3ds.utils.CitraDirectoryHelper +import io.github.lime3ds.utils.FileUtil +import io.github.lime3ds.utils.PermissionsHandler +import io.github.lime3ds.viewmodel.HomeViewModel class CopyDirProgressDialog : DialogFragment() { private var _binding: DialogCopyDirBinding? = null diff --git a/src/android/app/src/main/java/org/citra/citra_emu/fragments/DownloadSystemFilesDialogFragment.kt b/src/android/app/src/main/java/org/citra/citra_emu/fragments/DownloadSystemFilesDialogFragment.kt index 3f5abfd14..b82b65bd1 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/fragments/DownloadSystemFilesDialogFragment.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/fragments/DownloadSystemFilesDialogFragment.kt @@ -2,7 +2,7 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.fragments +package io.github.lime3ds.fragments import android.app.Dialog import android.os.Bundle @@ -19,11 +19,11 @@ import com.google.android.material.dialog.MaterialAlertDialogBuilder import kotlinx.coroutines.flow.collect import kotlinx.coroutines.flow.collectLatest import kotlinx.coroutines.launch -import org.citra.citra_emu.NativeLibrary.InstallStatus -import org.citra.citra_emu.R -import org.citra.citra_emu.databinding.DialogProgressBarBinding -import org.citra.citra_emu.viewmodel.GamesViewModel -import org.citra.citra_emu.viewmodel.SystemFilesViewModel +import io.github.lime3ds.NativeLibrary.InstallStatus +import io.github.lime3ds.R +import io.github.lime3ds.databinding.DialogProgressBarBinding +import io.github.lime3ds.viewmodel.GamesViewModel +import io.github.lime3ds.viewmodel.SystemFilesViewModel class DownloadSystemFilesDialogFragment : DialogFragment() { private var _binding: DialogProgressBarBinding? = null diff --git a/src/android/app/src/main/java/org/citra/citra_emu/fragments/DriverManagerFragment.kt b/src/android/app/src/main/java/org/citra/citra_emu/fragments/DriverManagerFragment.kt index 016ba34ae..8f344cdb5 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/fragments/DriverManagerFragment.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/fragments/DriverManagerFragment.kt @@ -2,7 +2,7 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.fragments +package io.github.lime3ds.fragments import android.os.Bundle import android.view.LayoutInflater @@ -21,14 +21,14 @@ import androidx.recyclerview.widget.GridLayoutManager import com.google.android.material.transition.MaterialSharedAxis import kotlinx.coroutines.flow.collectLatest import kotlinx.coroutines.launch -import org.citra.citra_emu.R -import org.citra.citra_emu.adapters.DriverAdapter -import org.citra.citra_emu.databinding.FragmentDriverManagerBinding -import org.citra.citra_emu.utils.FileUtil.asDocumentFile -import org.citra.citra_emu.utils.FileUtil.inputStream -import org.citra.citra_emu.utils.GpuDriverHelper -import org.citra.citra_emu.viewmodel.HomeViewModel -import org.citra.citra_emu.viewmodel.DriverViewModel +import io.github.lime3ds.R +import io.github.lime3ds.adapters.DriverAdapter +import io.github.lime3ds.databinding.FragmentDriverManagerBinding +import io.github.lime3ds.utils.FileUtil.asDocumentFile +import io.github.lime3ds.utils.FileUtil.inputStream +import io.github.lime3ds.utils.GpuDriverHelper +import io.github.lime3ds.viewmodel.HomeViewModel +import io.github.lime3ds.viewmodel.DriverViewModel import java.io.IOException class DriverManagerFragment : Fragment() { diff --git a/src/android/app/src/main/java/org/citra/citra_emu/fragments/DriversLoadingDialogFragment.kt b/src/android/app/src/main/java/org/citra/citra_emu/fragments/DriversLoadingDialogFragment.kt index 8a6ff5c57..86b63c38b 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/fragments/DriversLoadingDialogFragment.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/fragments/DriversLoadingDialogFragment.kt @@ -2,7 +2,7 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.fragments +package io.github.lime3ds.fragments import android.app.Dialog import android.os.Bundle @@ -16,9 +16,9 @@ import androidx.lifecycle.lifecycleScope import androidx.lifecycle.repeatOnLifecycle import com.google.android.material.dialog.MaterialAlertDialogBuilder import kotlinx.coroutines.launch -import org.citra.citra_emu.R -import org.citra.citra_emu.databinding.DialogProgressBarBinding -import org.citra.citra_emu.viewmodel.DriverViewModel +import io.github.lime3ds.R +import io.github.lime3ds.databinding.DialogProgressBarBinding +import io.github.lime3ds.viewmodel.DriverViewModel class DriversLoadingDialogFragment : DialogFragment() { private val driverViewModel: DriverViewModel by activityViewModels() diff --git a/src/android/app/src/main/java/org/citra/citra_emu/fragments/EmulationFragment.kt b/src/android/app/src/main/java/org/citra/citra_emu/fragments/EmulationFragment.kt index eeff4ff1b..d7de4ae7c 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/fragments/EmulationFragment.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/fragments/EmulationFragment.kt @@ -2,7 +2,7 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.fragments +package io.github.lime3ds.fragments import android.annotation.SuppressLint import android.content.Context @@ -43,30 +43,30 @@ import com.google.android.material.dialog.MaterialAlertDialogBuilder import com.google.android.material.slider.Slider import kotlinx.coroutines.flow.collectLatest import kotlinx.coroutines.launch -import org.citra.citra_emu.CitraApplication -import org.citra.citra_emu.EmulationNavigationDirections -import org.citra.citra_emu.NativeLibrary -import org.citra.citra_emu.R -import org.citra.citra_emu.activities.EmulationActivity -import org.citra.citra_emu.databinding.DialogCheckboxBinding -import org.citra.citra_emu.databinding.DialogSliderBinding -import org.citra.citra_emu.databinding.FragmentEmulationBinding -import org.citra.citra_emu.display.ScreenAdjustmentUtil -import org.citra.citra_emu.display.ScreenLayout -import org.citra.citra_emu.features.settings.model.SettingsViewModel -import org.citra.citra_emu.features.settings.ui.SettingsActivity -import org.citra.citra_emu.features.settings.utils.SettingsFile -import org.citra.citra_emu.model.Game -import org.citra.citra_emu.utils.DirectoryInitialization -import org.citra.citra_emu.utils.DirectoryInitialization.DirectoryInitializationState -import org.citra.citra_emu.utils.EmulationMenuSettings -import org.citra.citra_emu.utils.FileUtil -import org.citra.citra_emu.utils.GameHelper -import org.citra.citra_emu.utils.GameIconUtils -import org.citra.citra_emu.utils.EmulationLifecycleUtil -import org.citra.citra_emu.utils.Log -import org.citra.citra_emu.utils.ViewUtils -import org.citra.citra_emu.viewmodel.EmulationViewModel +import io.github.lime3ds.CitraApplication +import io.github.lime3ds.EmulationNavigationDirections +import io.github.lime3ds.NativeLibrary +import io.github.lime3ds.R +import io.github.lime3ds.activities.EmulationActivity +import io.github.lime3ds.databinding.DialogCheckboxBinding +import io.github.lime3ds.databinding.DialogSliderBinding +import io.github.lime3ds.databinding.FragmentEmulationBinding +import io.github.lime3ds.display.ScreenAdjustmentUtil +import io.github.lime3ds.display.ScreenLayout +import io.github.lime3ds.features.settings.model.SettingsViewModel +import io.github.lime3ds.features.settings.ui.SettingsActivity +import io.github.lime3ds.features.settings.utils.SettingsFile +import io.github.lime3ds.model.Game +import io.github.lime3ds.utils.DirectoryInitialization +import io.github.lime3ds.utils.DirectoryInitialization.DirectoryInitializationState +import io.github.lime3ds.utils.EmulationMenuSettings +import io.github.lime3ds.utils.FileUtil +import io.github.lime3ds.utils.GameHelper +import io.github.lime3ds.utils.GameIconUtils +import io.github.lime3ds.utils.EmulationLifecycleUtil +import io.github.lime3ds.utils.Log +import io.github.lime3ds.utils.ViewUtils +import io.github.lime3ds.viewmodel.EmulationViewModel class EmulationFragment : Fragment(), SurfaceHolder.Callback, Choreographer.FrameCallback { private val preferences: SharedPreferences diff --git a/src/android/app/src/main/java/org/citra/citra_emu/fragments/GamesFragment.kt b/src/android/app/src/main/java/org/citra/citra_emu/fragments/GamesFragment.kt index 4c93bef97..3e9bd8a49 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/fragments/GamesFragment.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/fragments/GamesFragment.kt @@ -2,7 +2,7 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.fragments +package io.github.lime3ds.fragments import android.annotation.SuppressLint import android.os.Bundle @@ -25,14 +25,14 @@ import com.google.android.material.color.MaterialColors import com.google.android.material.transition.MaterialFadeThrough import kotlinx.coroutines.flow.collectLatest import kotlinx.coroutines.launch -import org.citra.citra_emu.CitraApplication -import org.citra.citra_emu.R -import org.citra.citra_emu.adapters.GameAdapter -import org.citra.citra_emu.databinding.FragmentGamesBinding -import org.citra.citra_emu.features.settings.model.Settings -import org.citra.citra_emu.model.Game -import org.citra.citra_emu.viewmodel.GamesViewModel -import org.citra.citra_emu.viewmodel.HomeViewModel +import io.github.lime3ds.CitraApplication +import io.github.lime3ds.R +import io.github.lime3ds.adapters.GameAdapter +import io.github.lime3ds.databinding.FragmentGamesBinding +import io.github.lime3ds.features.settings.model.Settings +import io.github.lime3ds.model.Game +import io.github.lime3ds.viewmodel.GamesViewModel +import io.github.lime3ds.viewmodel.HomeViewModel class GamesFragment : Fragment() { private var _binding: FragmentGamesBinding? = null diff --git a/src/android/app/src/main/java/org/citra/citra_emu/fragments/HomeSettingsFragment.kt b/src/android/app/src/main/java/org/citra/citra_emu/fragments/HomeSettingsFragment.kt index b19fdd7b9..761ea6eda 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/fragments/HomeSettingsFragment.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/fragments/HomeSettingsFragment.kt @@ -2,7 +2,7 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.fragments +package io.github.lime3ds.fragments import android.content.Intent import android.os.Bundle @@ -24,21 +24,21 @@ import androidx.navigation.fragment.findNavController import androidx.preference.PreferenceManager import androidx.recyclerview.widget.GridLayoutManager import com.google.android.material.transition.MaterialSharedAxis -import org.citra.citra_emu.CitraApplication -import org.citra.citra_emu.R -import org.citra.citra_emu.adapters.HomeSettingAdapter -import org.citra.citra_emu.databinding.FragmentHomeSettingsBinding -import org.citra.citra_emu.features.settings.model.Settings -import org.citra.citra_emu.features.settings.ui.SettingsActivity -import org.citra.citra_emu.features.settings.utils.SettingsFile -import org.citra.citra_emu.model.HomeSetting -import org.citra.citra_emu.ui.main.MainActivity -import org.citra.citra_emu.utils.GameHelper -import org.citra.citra_emu.utils.PermissionsHandler -import org.citra.citra_emu.viewmodel.HomeViewModel -import org.citra.citra_emu.utils.GpuDriverHelper -import org.citra.citra_emu.utils.Log -import org.citra.citra_emu.viewmodel.DriverViewModel +import io.github.lime3ds.CitraApplication +import io.github.lime3ds.R +import io.github.lime3ds.adapters.HomeSettingAdapter +import io.github.lime3ds.databinding.FragmentHomeSettingsBinding +import io.github.lime3ds.features.settings.model.Settings +import io.github.lime3ds.features.settings.ui.SettingsActivity +import io.github.lime3ds.features.settings.utils.SettingsFile +import io.github.lime3ds.model.HomeSetting +import io.github.lime3ds.ui.main.MainActivity +import io.github.lime3ds.utils.GameHelper +import io.github.lime3ds.utils.PermissionsHandler +import io.github.lime3ds.viewmodel.HomeViewModel +import io.github.lime3ds.utils.GpuDriverHelper +import io.github.lime3ds.utils.Log +import io.github.lime3ds.viewmodel.DriverViewModel class HomeSettingsFragment : Fragment() { private var _binding: FragmentHomeSettingsBinding? = null diff --git a/src/android/app/src/main/java/org/citra/citra_emu/fragments/IndeterminateProgressDialogFragment.kt b/src/android/app/src/main/java/org/citra/citra_emu/fragments/IndeterminateProgressDialogFragment.kt index 31b01e636..28fa020e1 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/fragments/IndeterminateProgressDialogFragment.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/fragments/IndeterminateProgressDialogFragment.kt @@ -2,7 +2,7 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.fragments +package io.github.lime3ds.fragments import android.app.Dialog import android.os.Bundle @@ -20,9 +20,9 @@ import androidx.lifecycle.lifecycleScope import androidx.lifecycle.repeatOnLifecycle import com.google.android.material.dialog.MaterialAlertDialogBuilder import kotlinx.coroutines.launch -import org.citra.citra_emu.R -import org.citra.citra_emu.databinding.DialogProgressBarBinding -import org.citra.citra_emu.viewmodel.TaskViewModel +import io.github.lime3ds.R +import io.github.lime3ds.databinding.DialogProgressBarBinding +import io.github.lime3ds.viewmodel.TaskViewModel class IndeterminateProgressDialogFragment : DialogFragment() { private val taskViewModel: TaskViewModel by activityViewModels() diff --git a/src/android/app/src/main/java/org/citra/citra_emu/fragments/KeyboardDialogFragment.kt b/src/android/app/src/main/java/org/citra/citra_emu/fragments/KeyboardDialogFragment.kt index b4f581441..2823bfea0 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/fragments/KeyboardDialogFragment.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/fragments/KeyboardDialogFragment.kt @@ -2,7 +2,7 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.fragments +package io.github.lime3ds.fragments import android.app.Dialog import android.content.DialogInterface @@ -10,10 +10,10 @@ import android.os.Bundle import android.text.InputFilter import androidx.fragment.app.DialogFragment import com.google.android.material.dialog.MaterialAlertDialogBuilder -import org.citra.citra_emu.R -import org.citra.citra_emu.applets.SoftwareKeyboard -import org.citra.citra_emu.databinding.DialogSoftwareKeyboardBinding -import org.citra.citra_emu.utils.SerializableHelper.serializable +import io.github.lime3ds.R +import io.github.lime3ds.applets.SoftwareKeyboard +import io.github.lime3ds.databinding.DialogSoftwareKeyboardBinding +import io.github.lime3ds.utils.SerializableHelper.serializable class KeyboardDialogFragment : DialogFragment() { private lateinit var config: SoftwareKeyboard.KeyboardConfig diff --git a/src/android/app/src/main/java/org/citra/citra_emu/fragments/LicenseBottomSheetDialogFragment.kt b/src/android/app/src/main/java/org/citra/citra_emu/fragments/LicenseBottomSheetDialogFragment.kt index 9cbea1b9b..58d2c7fc1 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/fragments/LicenseBottomSheetDialogFragment.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/fragments/LicenseBottomSheetDialogFragment.kt @@ -2,7 +2,7 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.fragments +package io.github.lime3ds.fragments import android.os.Bundle import android.view.LayoutInflater @@ -10,9 +10,9 @@ import android.view.View import android.view.ViewGroup import com.google.android.material.bottomsheet.BottomSheetBehavior import com.google.android.material.bottomsheet.BottomSheetDialogFragment -import org.citra.citra_emu.databinding.DialogLicenseBinding -import org.citra.citra_emu.model.License -import org.citra.citra_emu.utils.SerializableHelper.parcelable +import io.github.lime3ds.databinding.DialogLicenseBinding +import io.github.lime3ds.model.License +import io.github.lime3ds.utils.SerializableHelper.parcelable class LicenseBottomSheetDialogFragment : BottomSheetDialogFragment() { private var _binding: DialogLicenseBinding? = null diff --git a/src/android/app/src/main/java/org/citra/citra_emu/fragments/LicensesFragment.kt b/src/android/app/src/main/java/org/citra/citra_emu/fragments/LicensesFragment.kt index a8f767907..1c1c548b5 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/fragments/LicensesFragment.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/fragments/LicensesFragment.kt @@ -2,7 +2,7 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.fragments +package io.github.lime3ds.fragments import android.os.Bundle import android.view.LayoutInflater @@ -18,11 +18,11 @@ import androidx.fragment.app.activityViewModels import androidx.navigation.findNavController import androidx.recyclerview.widget.LinearLayoutManager import com.google.android.material.transition.MaterialSharedAxis -import org.citra.citra_emu.R -import org.citra.citra_emu.adapters.LicenseAdapter -import org.citra.citra_emu.databinding.FragmentLicensesBinding -import org.citra.citra_emu.model.License -import org.citra.citra_emu.viewmodel.HomeViewModel +import io.github.lime3ds.R +import io.github.lime3ds.adapters.LicenseAdapter +import io.github.lime3ds.databinding.FragmentLicensesBinding +import io.github.lime3ds.model.License +import io.github.lime3ds.viewmodel.HomeViewModel class LicensesFragment : Fragment() { private var _binding: FragmentLicensesBinding? = null diff --git a/src/android/app/src/main/java/org/citra/citra_emu/fragments/MessageDialogFragment.kt b/src/android/app/src/main/java/org/citra/citra_emu/fragments/MessageDialogFragment.kt index 93113a1ff..0b58b9c2e 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/fragments/MessageDialogFragment.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/fragments/MessageDialogFragment.kt @@ -2,7 +2,7 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.fragments +package io.github.lime3ds.fragments import android.app.Dialog import android.content.Intent @@ -10,7 +10,7 @@ import android.net.Uri import android.os.Bundle import androidx.fragment.app.DialogFragment import com.google.android.material.dialog.MaterialAlertDialogBuilder -import org.citra.citra_emu.R +import io.github.lime3ds.R class MessageDialogFragment : DialogFragment() { override fun onCreateDialog(savedInstanceState: Bundle?): Dialog { diff --git a/src/android/app/src/main/java/org/citra/citra_emu/fragments/MiiSelectorDialogFragment.kt b/src/android/app/src/main/java/org/citra/citra_emu/fragments/MiiSelectorDialogFragment.kt index fa1e1ae99..e56e5a2cc 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/fragments/MiiSelectorDialogFragment.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/fragments/MiiSelectorDialogFragment.kt @@ -2,16 +2,16 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.fragments +package io.github.lime3ds.fragments import android.app.Dialog import android.content.DialogInterface import android.os.Bundle import androidx.fragment.app.DialogFragment import com.google.android.material.dialog.MaterialAlertDialogBuilder -import org.citra.citra_emu.R -import org.citra.citra_emu.applets.MiiSelector -import org.citra.citra_emu.utils.SerializableHelper.serializable +import io.github.lime3ds.R +import io.github.lime3ds.applets.MiiSelector +import io.github.lime3ds.utils.SerializableHelper.serializable class MiiSelectorDialogFragment : DialogFragment() { override fun onCreateDialog(savedInstanceState: Bundle?): Dialog { diff --git a/src/android/app/src/main/java/org/citra/citra_emu/fragments/MotionBottomSheetDialogFragment.kt b/src/android/app/src/main/java/org/citra/citra_emu/fragments/MotionBottomSheetDialogFragment.kt index cf42bed12..3c026784c 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/fragments/MotionBottomSheetDialogFragment.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/fragments/MotionBottomSheetDialogFragment.kt @@ -2,7 +2,7 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.fragments +package io.github.lime3ds.fragments import android.content.DialogInterface import android.os.Bundle @@ -14,10 +14,10 @@ import android.view.View import android.view.ViewGroup import com.google.android.material.bottomsheet.BottomSheetBehavior import com.google.android.material.bottomsheet.BottomSheetDialogFragment -import org.citra.citra_emu.R -import org.citra.citra_emu.databinding.DialogInputBinding -import org.citra.citra_emu.features.settings.model.view.InputBindingSetting -import org.citra.citra_emu.utils.Log +import io.github.lime3ds.R +import io.github.lime3ds.databinding.DialogInputBinding +import io.github.lime3ds.features.settings.model.view.InputBindingSetting +import io.github.lime3ds.utils.Log import kotlin.math.abs class MotionBottomSheetDialogFragment : BottomSheetDialogFragment() { diff --git a/src/android/app/src/main/java/org/citra/citra_emu/fragments/ResetSettingsDialogFragment.kt b/src/android/app/src/main/java/org/citra/citra_emu/fragments/ResetSettingsDialogFragment.kt index d4e4dec65..956e891d2 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/fragments/ResetSettingsDialogFragment.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/fragments/ResetSettingsDialogFragment.kt @@ -2,14 +2,14 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.fragments +package io.github.lime3ds.fragments import android.app.Dialog import android.os.Bundle import androidx.fragment.app.DialogFragment import com.google.android.material.dialog.MaterialAlertDialogBuilder -import org.citra.citra_emu.R -import org.citra.citra_emu.features.settings.ui.SettingsActivity +import io.github.lime3ds.R +import io.github.lime3ds.features.settings.ui.SettingsActivity class ResetSettingsDialogFragment : DialogFragment() { override fun onCreateDialog(savedInstanceState: Bundle?): Dialog { diff --git a/src/android/app/src/main/java/org/citra/citra_emu/fragments/SearchFragment.kt b/src/android/app/src/main/java/org/citra/citra_emu/fragments/SearchFragment.kt index a38dd1471..f98199654 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/fragments/SearchFragment.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/fragments/SearchFragment.kt @@ -2,7 +2,7 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.fragments +package io.github.lime3ds.fragments import android.annotation.SuppressLint import android.content.Context @@ -27,13 +27,13 @@ import androidx.recyclerview.widget.GridLayoutManager import info.debatty.java.stringsimilarity.Jaccard import info.debatty.java.stringsimilarity.JaroWinkler import kotlinx.coroutines.launch -import org.citra.citra_emu.CitraApplication -import org.citra.citra_emu.R -import org.citra.citra_emu.adapters.GameAdapter -import org.citra.citra_emu.databinding.FragmentSearchBinding -import org.citra.citra_emu.model.Game -import org.citra.citra_emu.viewmodel.GamesViewModel -import org.citra.citra_emu.viewmodel.HomeViewModel +import io.github.lime3ds.CitraApplication +import io.github.lime3ds.R +import io.github.lime3ds.adapters.GameAdapter +import io.github.lime3ds.databinding.FragmentSearchBinding +import io.github.lime3ds.model.Game +import io.github.lime3ds.viewmodel.GamesViewModel +import io.github.lime3ds.viewmodel.HomeViewModel import java.time.temporal.ChronoField import java.util.Locale diff --git a/src/android/app/src/main/java/org/citra/citra_emu/fragments/SelectUserDirectoryDialogFragment.kt b/src/android/app/src/main/java/org/citra/citra_emu/fragments/SelectUserDirectoryDialogFragment.kt index 12fbbee1e..582900edd 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/fragments/SelectUserDirectoryDialogFragment.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/fragments/SelectUserDirectoryDialogFragment.kt @@ -2,7 +2,7 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.fragments +package io.github.lime3ds.fragments import android.app.Dialog import android.content.DialogInterface @@ -11,9 +11,9 @@ import androidx.fragment.app.DialogFragment import androidx.fragment.app.FragmentActivity import androidx.lifecycle.ViewModelProvider import com.google.android.material.dialog.MaterialAlertDialogBuilder -import org.citra.citra_emu.R -import org.citra.citra_emu.ui.main.MainActivity -import org.citra.citra_emu.viewmodel.HomeViewModel +import io.github.lime3ds.R +import io.github.lime3ds.ui.main.MainActivity +import io.github.lime3ds.viewmodel.HomeViewModel class SelectUserDirectoryDialogFragment : DialogFragment() { private lateinit var mainActivity: MainActivity diff --git a/src/android/app/src/main/java/org/citra/citra_emu/fragments/SetupFragment.kt b/src/android/app/src/main/java/org/citra/citra_emu/fragments/SetupFragment.kt index 18d94b512..f5ca0403a 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/fragments/SetupFragment.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/fragments/SetupFragment.kt @@ -2,7 +2,7 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.fragments +package io.github.lime3ds.fragments import android.Manifest import android.content.Intent @@ -30,21 +30,21 @@ import androidx.preference.PreferenceManager import androidx.viewpager2.widget.ViewPager2.OnPageChangeCallback import com.google.android.material.snackbar.Snackbar import com.google.android.material.transition.MaterialFadeThrough -import org.citra.citra_emu.CitraApplication -import org.citra.citra_emu.R -import org.citra.citra_emu.adapters.SetupAdapter -import org.citra.citra_emu.databinding.FragmentSetupBinding -import org.citra.citra_emu.features.settings.model.Settings -import org.citra.citra_emu.model.SetupCallback -import org.citra.citra_emu.model.SetupPage -import org.citra.citra_emu.model.StepState -import org.citra.citra_emu.ui.main.MainActivity -import org.citra.citra_emu.utils.CitraDirectoryHelper -import org.citra.citra_emu.utils.GameHelper -import org.citra.citra_emu.utils.PermissionsHandler -import org.citra.citra_emu.utils.ViewUtils -import org.citra.citra_emu.viewmodel.GamesViewModel -import org.citra.citra_emu.viewmodel.HomeViewModel +import io.github.lime3ds.CitraApplication +import io.github.lime3ds.R +import io.github.lime3ds.adapters.SetupAdapter +import io.github.lime3ds.databinding.FragmentSetupBinding +import io.github.lime3ds.features.settings.model.Settings +import io.github.lime3ds.model.SetupCallback +import io.github.lime3ds.model.SetupPage +import io.github.lime3ds.model.StepState +import io.github.lime3ds.ui.main.MainActivity +import io.github.lime3ds.utils.CitraDirectoryHelper +import io.github.lime3ds.utils.GameHelper +import io.github.lime3ds.utils.PermissionsHandler +import io.github.lime3ds.utils.ViewUtils +import io.github.lime3ds.viewmodel.GamesViewModel +import io.github.lime3ds.viewmodel.HomeViewModel class SetupFragment : Fragment() { private var _binding: FragmentSetupBinding? = null diff --git a/src/android/app/src/main/java/org/citra/citra_emu/fragments/SetupWarningDialogFragment.kt b/src/android/app/src/main/java/org/citra/citra_emu/fragments/SetupWarningDialogFragment.kt index 20a1e0baf..7c603652e 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/fragments/SetupWarningDialogFragment.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/fragments/SetupWarningDialogFragment.kt @@ -2,7 +2,7 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.fragments +package io.github.lime3ds.fragments import android.app.Dialog import android.content.DialogInterface @@ -11,7 +11,7 @@ import android.net.Uri import android.os.Bundle import androidx.fragment.app.DialogFragment import com.google.android.material.dialog.MaterialAlertDialogBuilder -import org.citra.citra_emu.R +import io.github.lime3ds.R class SetupWarningDialogFragment : DialogFragment() { private var titleId: Int = 0 diff --git a/src/android/app/src/main/java/org/citra/citra_emu/fragments/SystemFilesFragment.kt b/src/android/app/src/main/java/org/citra/citra_emu/fragments/SystemFilesFragment.kt index 586823424..77bdb21cf 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/fragments/SystemFilesFragment.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/fragments/SystemFilesFragment.kt @@ -2,7 +2,7 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.fragments +package io.github.lime3ds.fragments import android.content.res.Resources import android.os.Bundle @@ -26,18 +26,18 @@ import androidx.preference.PreferenceManager import com.google.android.material.textfield.MaterialAutoCompleteTextView import com.google.android.material.transition.MaterialSharedAxis import kotlinx.coroutines.launch -import org.citra.citra_emu.CitraApplication -import org.citra.citra_emu.HomeNavigationDirections -import org.citra.citra_emu.NativeLibrary -import org.citra.citra_emu.R -import org.citra.citra_emu.activities.EmulationActivity -import org.citra.citra_emu.databinding.FragmentSystemFilesBinding -import org.citra.citra_emu.features.settings.model.Settings -import org.citra.citra_emu.model.Game -import org.citra.citra_emu.utils.SystemSaveGame -import org.citra.citra_emu.viewmodel.GamesViewModel -import org.citra.citra_emu.viewmodel.HomeViewModel -import org.citra.citra_emu.viewmodel.SystemFilesViewModel +import io.github.lime3ds.CitraApplication +import io.github.lime3ds.HomeNavigationDirections +import io.github.lime3ds.NativeLibrary +import io.github.lime3ds.R +import io.github.lime3ds.activities.EmulationActivity +import io.github.lime3ds.databinding.FragmentSystemFilesBinding +import io.github.lime3ds.features.settings.model.Settings +import io.github.lime3ds.model.Game +import io.github.lime3ds.utils.SystemSaveGame +import io.github.lime3ds.viewmodel.GamesViewModel +import io.github.lime3ds.viewmodel.HomeViewModel +import io.github.lime3ds.viewmodel.SystemFilesViewModel class SystemFilesFragment : Fragment() { private var _binding: FragmentSystemFilesBinding? = null diff --git a/src/android/app/src/main/java/org/citra/citra_emu/model/CheapDocument.kt b/src/android/app/src/main/java/org/citra/citra_emu/model/CheapDocument.kt index d3a9490d8..2eedce54a 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/model/CheapDocument.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/model/CheapDocument.kt @@ -2,7 +2,7 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.model +package io.github.lime3ds.model import android.net.Uri import android.provider.DocumentsContract diff --git a/src/android/app/src/main/java/org/citra/citra_emu/model/Game.kt b/src/android/app/src/main/java/org/citra/citra_emu/model/Game.kt index d26d730d0..eea6fba72 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/model/Game.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/model/Game.kt @@ -2,7 +2,7 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.model +package io.github.lime3ds.model import android.os.Parcelable import java.util.HashSet diff --git a/src/android/app/src/main/java/org/citra/citra_emu/model/GameInfo.kt b/src/android/app/src/main/java/org/citra/citra_emu/model/GameInfo.kt index de2c1860c..3b4410439 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/model/GameInfo.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/model/GameInfo.kt @@ -2,7 +2,7 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.model +package io.github.lime3ds.model import androidx.annotation.Keep import java.io.IOException diff --git a/src/android/app/src/main/java/org/citra/citra_emu/model/HomeSetting.kt b/src/android/app/src/main/java/org/citra/citra_emu/model/HomeSetting.kt index 70a45c0ed..871ed8140 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/model/HomeSetting.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/model/HomeSetting.kt @@ -2,7 +2,7 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.model +package io.github.lime3ds.model import kotlinx.coroutines.flow.MutableStateFlow import kotlinx.coroutines.flow.StateFlow diff --git a/src/android/app/src/main/java/org/citra/citra_emu/model/License.kt b/src/android/app/src/main/java/org/citra/citra_emu/model/License.kt index b4115afe5..22cf3bc6c 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/model/License.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/model/License.kt @@ -2,7 +2,7 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.model +package io.github.lime3ds.model import android.os.Parcelable import androidx.annotation.StringRes diff --git a/src/android/app/src/main/java/org/citra/citra_emu/model/SetupPage.kt b/src/android/app/src/main/java/org/citra/citra_emu/model/SetupPage.kt index c45f05cf8..cfe2409d1 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/model/SetupPage.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/model/SetupPage.kt @@ -2,7 +2,7 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.model +package io.github.lime3ds.model data class SetupPage( val iconId: Int, diff --git a/src/android/app/src/main/java/org/citra/citra_emu/overlay/InputOverlay.kt b/src/android/app/src/main/java/org/citra/citra_emu/overlay/InputOverlay.kt index deb718c7e..a452403b6 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/overlay/InputOverlay.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/overlay/InputOverlay.kt @@ -2,7 +2,7 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.overlay +package io.github.lime3ds.overlay import android.app.Activity import android.content.Context @@ -21,10 +21,10 @@ import android.view.View import android.view.View.OnTouchListener import androidx.core.content.ContextCompat import androidx.preference.PreferenceManager -import org.citra.citra_emu.CitraApplication -import org.citra.citra_emu.NativeLibrary -import org.citra.citra_emu.R -import org.citra.citra_emu.utils.EmulationMenuSettings +import io.github.lime3ds.CitraApplication +import io.github.lime3ds.NativeLibrary +import io.github.lime3ds.R +import io.github.lime3ds.utils.EmulationMenuSettings import java.lang.NullPointerException import kotlin.math.min diff --git a/src/android/app/src/main/java/org/citra/citra_emu/overlay/InputOverlayDrawableButton.kt b/src/android/app/src/main/java/org/citra/citra_emu/overlay/InputOverlayDrawableButton.kt index 5f83fa776..26f2f7323 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/overlay/InputOverlayDrawableButton.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/overlay/InputOverlayDrawableButton.kt @@ -2,7 +2,7 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.overlay +package io.github.lime3ds.overlay import android.content.res.Resources import android.graphics.Bitmap @@ -10,7 +10,7 @@ import android.graphics.Canvas import android.graphics.Rect import android.graphics.drawable.BitmapDrawable import android.view.MotionEvent -import org.citra.citra_emu.NativeLibrary +import io.github.lime3ds.NativeLibrary /** * Custom [BitmapDrawable] that is capable diff --git a/src/android/app/src/main/java/org/citra/citra_emu/overlay/InputOverlayDrawableDpad.kt b/src/android/app/src/main/java/org/citra/citra_emu/overlay/InputOverlayDrawableDpad.kt index f7a5a3fe5..ef043ea5d 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/overlay/InputOverlayDrawableDpad.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/overlay/InputOverlayDrawableDpad.kt @@ -2,7 +2,7 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.overlay +package io.github.lime3ds.overlay import android.content.res.Resources import android.graphics.Bitmap @@ -10,7 +10,7 @@ import android.graphics.Canvas import android.graphics.Rect import android.graphics.drawable.BitmapDrawable import android.view.MotionEvent -import org.citra.citra_emu.NativeLibrary +import io.github.lime3ds.NativeLibrary /** * Custom [BitmapDrawable] that is capable diff --git a/src/android/app/src/main/java/org/citra/citra_emu/overlay/InputOverlayDrawableJoystick.kt b/src/android/app/src/main/java/org/citra/citra_emu/overlay/InputOverlayDrawableJoystick.kt index f521077a4..2fed6864e 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/overlay/InputOverlayDrawableJoystick.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/overlay/InputOverlayDrawableJoystick.kt @@ -2,7 +2,7 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.overlay +package io.github.lime3ds.overlay import android.content.res.Resources import android.graphics.Bitmap @@ -10,8 +10,8 @@ import android.graphics.Canvas import android.graphics.Rect import android.graphics.drawable.BitmapDrawable import android.view.MotionEvent -import org.citra.citra_emu.NativeLibrary -import org.citra.citra_emu.utils.EmulationMenuSettings +import io.github.lime3ds.NativeLibrary +import io.github.lime3ds.utils.EmulationMenuSettings import kotlin.math.atan2 import kotlin.math.cos import kotlin.math.sin diff --git a/src/android/app/src/main/java/org/citra/citra_emu/ui/TwoPaneOnBackPressedCallback.kt b/src/android/app/src/main/java/org/citra/citra_emu/ui/TwoPaneOnBackPressedCallback.kt index 5174e679a..de07acdcd 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/ui/TwoPaneOnBackPressedCallback.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/ui/TwoPaneOnBackPressedCallback.kt @@ -2,7 +2,7 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.ui +package io.github.lime3ds.ui import android.content.Context import android.view.View diff --git a/src/android/app/src/main/java/org/citra/citra_emu/ui/main/MainActivity.kt b/src/android/app/src/main/java/org/citra/citra_emu/ui/main/MainActivity.kt index c2aa87de4..93a8f214a 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/ui/main/MainActivity.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/ui/main/MainActivity.kt @@ -2,7 +2,7 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.ui.main +package io.github.lime3ds.ui.main import android.content.Intent import android.net.Uri @@ -36,24 +36,24 @@ import com.google.android.material.color.MaterialColors import com.google.android.material.navigation.NavigationBarView import kotlinx.coroutines.flow.collect import kotlinx.coroutines.launch -import org.citra.citra_emu.R -import org.citra.citra_emu.activities.EmulationActivity -import org.citra.citra_emu.contracts.OpenFileResultContract -import org.citra.citra_emu.databinding.ActivityMainBinding -import org.citra.citra_emu.features.settings.model.Settings -import org.citra.citra_emu.features.settings.model.SettingsViewModel -import org.citra.citra_emu.features.settings.ui.SettingsActivity -import org.citra.citra_emu.features.settings.utils.SettingsFile -import org.citra.citra_emu.fragments.SelectUserDirectoryDialogFragment -import org.citra.citra_emu.utils.CiaInstallWorker -import org.citra.citra_emu.utils.CitraDirectoryHelper -import org.citra.citra_emu.utils.DirectoryInitialization -import org.citra.citra_emu.utils.FileBrowserHelper -import org.citra.citra_emu.utils.InsetsHelper -import org.citra.citra_emu.utils.PermissionsHandler -import org.citra.citra_emu.utils.ThemeUtil -import org.citra.citra_emu.viewmodel.GamesViewModel -import org.citra.citra_emu.viewmodel.HomeViewModel +import io.github.lime3ds.R +import io.github.lime3ds.activities.EmulationActivity +import io.github.lime3ds.contracts.OpenFileResultContract +import io.github.lime3ds.databinding.ActivityMainBinding +import io.github.lime3ds.features.settings.model.Settings +import io.github.lime3ds.features.settings.model.SettingsViewModel +import io.github.lime3ds.features.settings.ui.SettingsActivity +import io.github.lime3ds.features.settings.utils.SettingsFile +import io.github.lime3ds.fragments.SelectUserDirectoryDialogFragment +import io.github.lime3ds.utils.CiaInstallWorker +import io.github.lime3ds.utils.CitraDirectoryHelper +import io.github.lime3ds.utils.DirectoryInitialization +import io.github.lime3ds.utils.FileBrowserHelper +import io.github.lime3ds.utils.InsetsHelper +import io.github.lime3ds.utils.PermissionsHandler +import io.github.lime3ds.utils.ThemeUtil +import io.github.lime3ds.viewmodel.GamesViewModel +import io.github.lime3ds.viewmodel.HomeViewModel class MainActivity : AppCompatActivity(), ThemeProvider { private lateinit var binding: ActivityMainBinding diff --git a/src/android/app/src/main/java/org/citra/citra_emu/ui/main/ThemeProvider.kt b/src/android/app/src/main/java/org/citra/citra_emu/ui/main/ThemeProvider.kt index 87bca2ce2..9521989a2 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/ui/main/ThemeProvider.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/ui/main/ThemeProvider.kt @@ -2,7 +2,7 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.ui.main +package io.github.lime3ds.ui.main interface ThemeProvider { /** diff --git a/src/android/app/src/main/java/org/citra/citra_emu/utils/BiMap.kt b/src/android/app/src/main/java/org/citra/citra_emu/utils/BiMap.kt index e444233ee..f78706651 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/utils/BiMap.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/utils/BiMap.kt @@ -2,7 +2,7 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.utils +package io.github.lime3ds.utils class BiMap { private val forward: MutableMap = HashMap() diff --git a/src/android/app/src/main/java/org/citra/citra_emu/utils/CiaInstallWorker.kt b/src/android/app/src/main/java/org/citra/citra_emu/utils/CiaInstallWorker.kt index dfb10d310..34c034580 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/utils/CiaInstallWorker.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/utils/CiaInstallWorker.kt @@ -2,7 +2,7 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.utils +package io.github.lime3ds.utils import android.app.NotificationManager import android.content.Context @@ -12,15 +12,15 @@ import androidx.core.app.NotificationCompat import androidx.work.ForegroundInfo import androidx.work.Worker import androidx.work.WorkerParameters -import org.citra.citra_emu.NativeLibrary.InstallStatus -import org.citra.citra_emu.R -import org.citra.citra_emu.utils.FileUtil.getFilename +import io.github.lime3ds.NativeLibrary.InstallStatus +import io.github.lime3ds.R +import io.github.lime3ds.utils.FileUtil.getFilename class CiaInstallWorker( val context: Context, params: WorkerParameters ) : Worker(context, params) { - private val GROUP_KEY_CIA_INSTALL_STATUS = "org.citra.citra_emu.CIA_INSTALL_STATUS" + private val GROUP_KEY_CIA_INSTALL_STATUS = "io.github.lime3ds.CIA_INSTALL_STATUS" private var lastNotifiedTime: Long = 0 private val SUMMARY_NOTIFICATION_ID = 0xC1A0000 private val PROGRESS_NOTIFICATION_ID = SUMMARY_NOTIFICATION_ID + 1 diff --git a/src/android/app/src/main/java/org/citra/citra_emu/utils/CitraDirectoryHelper.kt b/src/android/app/src/main/java/org/citra/citra_emu/utils/CitraDirectoryHelper.kt index 0b6c91a98..e62006f79 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/utils/CitraDirectoryHelper.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/utils/CitraDirectoryHelper.kt @@ -2,16 +2,16 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.utils +package io.github.lime3ds.utils import android.content.Intent import android.net.Uri import androidx.fragment.app.FragmentActivity import androidx.lifecycle.ViewModelProvider -import org.citra.citra_emu.fragments.CitraDirectoryDialogFragment -import org.citra.citra_emu.fragments.CopyDirProgressDialog -import org.citra.citra_emu.model.SetupCallback -import org.citra.citra_emu.viewmodel.HomeViewModel +import io.github.lime3ds.fragments.CitraDirectoryDialogFragment +import io.github.lime3ds.fragments.CopyDirProgressDialog +import io.github.lime3ds.model.SetupCallback +import io.github.lime3ds.viewmodel.HomeViewModel /** * Citra directory initialization ui flow controller. diff --git a/src/android/app/src/main/java/org/citra/citra_emu/utils/ControllerMappingHelper.kt b/src/android/app/src/main/java/org/citra/citra_emu/utils/ControllerMappingHelper.kt index 7bba904b5..4fe86636d 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/utils/ControllerMappingHelper.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/utils/ControllerMappingHelper.kt @@ -2,7 +2,7 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.utils +package io.github.lime3ds.utils import android.view.InputDevice import android.view.KeyEvent diff --git a/src/android/app/src/main/java/org/citra/citra_emu/utils/DirectoryInitialization.kt b/src/android/app/src/main/java/org/citra/citra_emu/utils/DirectoryInitialization.kt index c48f9d22e..519e8ae3c 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/utils/DirectoryInitialization.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/utils/DirectoryInitialization.kt @@ -2,15 +2,15 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.utils +package io.github.lime3ds.utils import android.content.Context import android.net.Uri import androidx.preference.PreferenceManager -import org.citra.citra_emu.BuildConfig -import org.citra.citra_emu.CitraApplication -import org.citra.citra_emu.NativeLibrary -import org.citra.citra_emu.utils.PermissionsHandler.hasWriteAccess +import io.github.lime3ds.BuildConfig +import io.github.lime3ds.CitraApplication +import io.github.lime3ds.NativeLibrary +import io.github.lime3ds.utils.PermissionsHandler.hasWriteAccess import java.io.File import java.io.FileOutputStream import java.io.IOException diff --git a/src/android/app/src/main/java/org/citra/citra_emu/utils/DiskShaderCacheProgress.kt b/src/android/app/src/main/java/org/citra/citra_emu/utils/DiskShaderCacheProgress.kt index a34924a9a..17988d82e 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/utils/DiskShaderCacheProgress.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/utils/DiskShaderCacheProgress.kt @@ -2,14 +2,14 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.utils +package io.github.lime3ds.utils import androidx.annotation.Keep import androidx.lifecycle.ViewModelProvider -import org.citra.citra_emu.NativeLibrary -import org.citra.citra_emu.R -import org.citra.citra_emu.activities.EmulationActivity -import org.citra.citra_emu.viewmodel.EmulationViewModel +import io.github.lime3ds.NativeLibrary +import io.github.lime3ds.R +import io.github.lime3ds.activities.EmulationActivity +import io.github.lime3ds.viewmodel.EmulationViewModel @Keep object DiskShaderCacheProgress { diff --git a/src/android/app/src/main/java/org/citra/citra_emu/utils/DocumentsTree.kt b/src/android/app/src/main/java/org/citra/citra_emu/utils/DocumentsTree.kt index f2512f148..b4d732b79 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/utils/DocumentsTree.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/utils/DocumentsTree.kt @@ -2,13 +2,13 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.utils +package io.github.lime3ds.utils import android.net.Uri import android.provider.DocumentsContract import androidx.documentfile.provider.DocumentFile -import org.citra.citra_emu.CitraApplication -import org.citra.citra_emu.model.CheapDocument +import io.github.lime3ds.CitraApplication +import io.github.lime3ds.model.CheapDocument import java.net.URLDecoder import java.util.StringTokenizer import java.util.concurrent.ConcurrentHashMap diff --git a/src/android/app/src/main/java/org/citra/citra_emu/utils/EmulationLifecycleUtil.kt b/src/android/app/src/main/java/org/citra/citra_emu/utils/EmulationLifecycleUtil.kt index 8f3b5dc07..8d8f177c1 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/utils/EmulationLifecycleUtil.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/utils/EmulationLifecycleUtil.kt @@ -2,7 +2,7 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.utils +package io.github.lime3ds.utils object EmulationLifecycleUtil { private var shutdownHooks: MutableList = ArrayList() diff --git a/src/android/app/src/main/java/org/citra/citra_emu/utils/EmulationMenuSettings.kt b/src/android/app/src/main/java/org/citra/citra_emu/utils/EmulationMenuSettings.kt index 05804551e..02189e621 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/utils/EmulationMenuSettings.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/utils/EmulationMenuSettings.kt @@ -2,12 +2,12 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.utils +package io.github.lime3ds.utils import androidx.drawerlayout.widget.DrawerLayout import androidx.preference.PreferenceManager -import org.citra.citra_emu.CitraApplication -import org.citra.citra_emu.display.ScreenLayout +import io.github.lime3ds.CitraApplication +import io.github.lime3ds.display.ScreenLayout object EmulationMenuSettings { private val preferences = diff --git a/src/android/app/src/main/java/org/citra/citra_emu/utils/FileBrowserHelper.kt b/src/android/app/src/main/java/org/citra/citra_emu/utils/FileBrowserHelper.kt index 423507173..4d7163199 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/utils/FileBrowserHelper.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/utils/FileBrowserHelper.kt @@ -2,7 +2,7 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.utils +package io.github.lime3ds.utils import android.content.Context import android.content.Intent diff --git a/src/android/app/src/main/java/org/citra/citra_emu/utils/FileUtil.kt b/src/android/app/src/main/java/org/citra/citra_emu/utils/FileUtil.kt index 402a23857..fc1fa937e 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/utils/FileUtil.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/utils/FileUtil.kt @@ -2,7 +2,7 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.utils +package io.github.lime3ds.utils import okio.ByteString.Companion.readByteString import android.content.Context @@ -12,8 +12,8 @@ import android.provider.DocumentsContract import android.system.Os import android.util.Pair import androidx.documentfile.provider.DocumentFile -import org.citra.citra_emu.CitraApplication -import org.citra.citra_emu.model.CheapDocument +import io.github.lime3ds.CitraApplication +import io.github.lime3ds.model.CheapDocument import java.io.BufferedInputStream import java.io.File import java.io.FileOutputStream diff --git a/src/android/app/src/main/java/org/citra/citra_emu/utils/ForegroundService.kt b/src/android/app/src/main/java/org/citra/citra_emu/utils/ForegroundService.kt index 2d7f2368c..6940c08fd 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/utils/ForegroundService.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/utils/ForegroundService.kt @@ -2,7 +2,7 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.utils +package io.github.lime3ds.utils import android.app.PendingIntent import android.app.Service @@ -10,8 +10,8 @@ import android.content.Intent import android.os.IBinder import androidx.core.app.NotificationCompat import androidx.core.app.NotificationManagerCompat -import org.citra.citra_emu.R -import org.citra.citra_emu.activities.EmulationActivity +import io.github.lime3ds.R +import io.github.lime3ds.activities.EmulationActivity /** * A service that shows a permanent notification in the background to avoid the app getting diff --git a/src/android/app/src/main/java/org/citra/citra_emu/utils/GameHelper.kt b/src/android/app/src/main/java/org/citra/citra_emu/utils/GameHelper.kt index 9ad2e88ff..1c220976e 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/utils/GameHelper.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/utils/GameHelper.kt @@ -2,18 +2,18 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.utils +package io.github.lime3ds.utils import android.content.SharedPreferences import android.net.Uri import androidx.preference.PreferenceManager import kotlinx.serialization.encodeToString import kotlinx.serialization.json.Json -import org.citra.citra_emu.CitraApplication -import org.citra.citra_emu.NativeLibrary -import org.citra.citra_emu.model.CheapDocument -import org.citra.citra_emu.model.Game -import org.citra.citra_emu.model.GameInfo +import io.github.lime3ds.CitraApplication +import io.github.lime3ds.NativeLibrary +import io.github.lime3ds.model.CheapDocument +import io.github.lime3ds.model.Game +import io.github.lime3ds.model.GameInfo import java.io.IOException object GameHelper { diff --git a/src/android/app/src/main/java/org/citra/citra_emu/utils/GameIconUtils.kt b/src/android/app/src/main/java/org/citra/citra_emu/utils/GameIconUtils.kt index 6ba803ca8..e8b3325c2 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/utils/GameIconUtils.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/utils/GameIconUtils.kt @@ -2,7 +2,7 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.utils +package io.github.lime3ds.utils import android.graphics.Bitmap import android.widget.ImageView @@ -18,8 +18,8 @@ import coil.memory.MemoryCache import coil.request.ImageRequest import coil.request.Options import coil.transform.RoundedCornersTransformation -import org.citra.citra_emu.R -import org.citra.citra_emu.model.Game +import io.github.lime3ds.R +import io.github.lime3ds.model.Game import java.nio.IntBuffer class GameIconFetcher( diff --git a/src/android/app/src/main/java/org/citra/citra_emu/utils/GpuDriverHelper.kt b/src/android/app/src/main/java/org/citra/citra_emu/utils/GpuDriverHelper.kt index 8ed7cd2e1..fe5c0b889 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/utils/GpuDriverHelper.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/utils/GpuDriverHelper.kt @@ -2,15 +2,15 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.utils +package io.github.lime3ds.utils import android.net.Uri import android.os.Build import androidx.documentfile.provider.DocumentFile -import org.citra.citra_emu.CitraApplication -import org.citra.citra_emu.NativeLibrary -import org.citra.citra_emu.utils.FileUtil.asDocumentFile -import org.citra.citra_emu.utils.FileUtil.inputStream +import io.github.lime3ds.CitraApplication +import io.github.lime3ds.NativeLibrary +import io.github.lime3ds.utils.FileUtil.asDocumentFile +import io.github.lime3ds.utils.FileUtil.inputStream import java.io.BufferedInputStream import java.io.File import java.io.IOException diff --git a/src/android/app/src/main/java/org/citra/citra_emu/utils/GpuDriverMetadata.kt b/src/android/app/src/main/java/org/citra/citra_emu/utils/GpuDriverMetadata.kt index 2da0ccf92..f0a3a0e85 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/utils/GpuDriverMetadata.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/utils/GpuDriverMetadata.kt @@ -2,7 +2,7 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.utils +package io.github.lime3ds.utils import java.io.IOException import org.json.JSONException diff --git a/src/android/app/src/main/java/org/citra/citra_emu/utils/InsetsHelper.kt b/src/android/app/src/main/java/org/citra/citra_emu/utils/InsetsHelper.kt index 96ea234e6..0f5205b3d 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/utils/InsetsHelper.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/utils/InsetsHelper.kt @@ -2,7 +2,7 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.utils +package io.github.lime3ds.utils import android.annotation.SuppressLint import android.content.Context diff --git a/src/android/app/src/main/java/org/citra/citra_emu/utils/Log.kt b/src/android/app/src/main/java/org/citra/citra_emu/utils/Log.kt index f691d51b0..aefaad1e2 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/utils/Log.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/utils/Log.kt @@ -2,7 +2,7 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.utils +package io.github.lime3ds.utils object Log { // Tracks whether we should share the old log or the current log diff --git a/src/android/app/src/main/java/org/citra/citra_emu/utils/MemoryUtil.kt b/src/android/app/src/main/java/org/citra/citra_emu/utils/MemoryUtil.kt index 4bf1d88c7..ab4abdea1 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/utils/MemoryUtil.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/utils/MemoryUtil.kt @@ -1,13 +1,13 @@ // SPDX-FileCopyrightText: 2023 yuzu Emulator Project // SPDX-License-Identifier: GPL-2.0-or-later -package org.citra.citra_emu.utils +package io.github.lime3ds.utils import android.app.ActivityManager import android.content.Context import android.os.Build -import org.citra.citra_emu.CitraApplication -import org.citra.citra_emu.R +import io.github.lime3ds.CitraApplication +import io.github.lime3ds.R import java.util.Locale import kotlin.math.ceil diff --git a/src/android/app/src/main/java/org/citra/citra_emu/utils/PermissionsHandler.kt b/src/android/app/src/main/java/org/citra/citra_emu/utils/PermissionsHandler.kt index 913780964..3c7e8f463 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/utils/PermissionsHandler.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/utils/PermissionsHandler.kt @@ -2,7 +2,7 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.utils +package io.github.lime3ds.utils import android.content.Context import android.content.Intent @@ -10,7 +10,7 @@ import android.content.SharedPreferences import android.net.Uri import androidx.preference.PreferenceManager import androidx.documentfile.provider.DocumentFile -import org.citra.citra_emu.CitraApplication +import io.github.lime3ds.CitraApplication object PermissionsHandler { const val CITRA_DIRECTORY = "CITRA_DIRECTORY" diff --git a/src/android/app/src/main/java/org/citra/citra_emu/utils/SerializableHelper.kt b/src/android/app/src/main/java/org/citra/citra_emu/utils/SerializableHelper.kt index 400162659..97bc3d81c 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/utils/SerializableHelper.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/utils/SerializableHelper.kt @@ -2,7 +2,7 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.utils +package io.github.lime3ds.utils import android.content.Intent import android.os.Build diff --git a/src/android/app/src/main/java/org/citra/citra_emu/utils/SystemSaveGame.kt b/src/android/app/src/main/java/org/citra/citra_emu/utils/SystemSaveGame.kt index f451762d7..a53800a19 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/utils/SystemSaveGame.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/utils/SystemSaveGame.kt @@ -2,7 +2,7 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.utils +package io.github.lime3ds.utils object SystemSaveGame { external fun save() diff --git a/src/android/app/src/main/java/org/citra/citra_emu/utils/ThemeUtil.kt b/src/android/app/src/main/java/org/citra/citra_emu/utils/ThemeUtil.kt index 69758a322..6d3256382 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/utils/ThemeUtil.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/utils/ThemeUtil.kt @@ -2,7 +2,7 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.utils +package io.github.lime3ds.utils import android.content.SharedPreferences import android.content.res.Configuration @@ -13,10 +13,10 @@ import androidx.appcompat.app.AppCompatDelegate import androidx.core.view.WindowCompat import androidx.core.view.WindowInsetsControllerCompat import androidx.preference.PreferenceManager -import org.citra.citra_emu.CitraApplication -import org.citra.citra_emu.R -import org.citra.citra_emu.features.settings.model.Settings -import org.citra.citra_emu.ui.main.ThemeProvider +import io.github.lime3ds.CitraApplication +import io.github.lime3ds.R +import io.github.lime3ds.features.settings.model.Settings +import io.github.lime3ds.ui.main.ThemeProvider import kotlin.math.roundToInt object ThemeUtil { diff --git a/src/android/app/src/main/java/org/citra/citra_emu/utils/ViewUtils.kt b/src/android/app/src/main/java/org/citra/citra_emu/utils/ViewUtils.kt index 7eed05f72..d81ed3415 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/utils/ViewUtils.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/utils/ViewUtils.kt @@ -2,7 +2,7 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.utils +package io.github.lime3ds.utils import android.view.View diff --git a/src/android/app/src/main/java/org/citra/citra_emu/viewmodel/DriverViewModel.kt b/src/android/app/src/main/java/org/citra/citra_emu/viewmodel/DriverViewModel.kt index 44fb8e8c4..bdd834e84 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/viewmodel/DriverViewModel.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/viewmodel/DriverViewModel.kt @@ -2,7 +2,7 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.viewmodel +package io.github.lime3ds.viewmodel import android.net.Uri import androidx.lifecycle.ViewModel @@ -13,11 +13,11 @@ import kotlinx.coroutines.flow.StateFlow import kotlinx.coroutines.flow.asStateFlow import kotlinx.coroutines.launch import kotlinx.coroutines.withContext -import org.citra.citra_emu.CitraApplication -import org.citra.citra_emu.R -import org.citra.citra_emu.utils.FileUtil.asDocumentFile -import org.citra.citra_emu.utils.GpuDriverMetadata -import org.citra.citra_emu.utils.GpuDriverHelper +import io.github.lime3ds.CitraApplication +import io.github.lime3ds.R +import io.github.lime3ds.utils.FileUtil.asDocumentFile +import io.github.lime3ds.utils.GpuDriverMetadata +import io.github.lime3ds.utils.GpuDriverHelper class DriverViewModel : ViewModel() { val areDriversLoading get() = _areDriversLoading.asStateFlow() diff --git a/src/android/app/src/main/java/org/citra/citra_emu/viewmodel/EmulationViewModel.kt b/src/android/app/src/main/java/org/citra/citra_emu/viewmodel/EmulationViewModel.kt index 3a5571e9b..f515b190d 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/viewmodel/EmulationViewModel.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/viewmodel/EmulationViewModel.kt @@ -2,7 +2,7 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.viewmodel +package io.github.lime3ds.viewmodel import androidx.lifecycle.ViewModel import kotlinx.coroutines.flow.MutableStateFlow diff --git a/src/android/app/src/main/java/org/citra/citra_emu/viewmodel/GamesViewModel.kt b/src/android/app/src/main/java/org/citra/citra_emu/viewmodel/GamesViewModel.kt index 0f7ed4291..86778234b 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/viewmodel/GamesViewModel.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/viewmodel/GamesViewModel.kt @@ -2,7 +2,7 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.viewmodel +package io.github.lime3ds.viewmodel import android.net.Uri import androidx.documentfile.provider.DocumentFile @@ -17,9 +17,9 @@ import kotlinx.coroutines.launch import kotlinx.coroutines.withContext import kotlinx.serialization.decodeFromString import kotlinx.serialization.json.Json -import org.citra.citra_emu.CitraApplication -import org.citra.citra_emu.model.Game -import org.citra.citra_emu.utils.GameHelper +import io.github.lime3ds.CitraApplication +import io.github.lime3ds.model.Game +import io.github.lime3ds.utils.GameHelper class GamesViewModel : ViewModel() { val games get() = _games.asStateFlow() diff --git a/src/android/app/src/main/java/org/citra/citra_emu/viewmodel/HomeViewModel.kt b/src/android/app/src/main/java/org/citra/citra_emu/viewmodel/HomeViewModel.kt index 32b2449fb..c7aa83cec 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/viewmodel/HomeViewModel.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/viewmodel/HomeViewModel.kt @@ -2,7 +2,7 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.viewmodel +package io.github.lime3ds.viewmodel import android.content.res.Resources import android.net.Uri @@ -12,11 +12,11 @@ import androidx.lifecycle.ViewModelProvider import androidx.preference.PreferenceManager import kotlinx.coroutines.flow.MutableStateFlow import kotlinx.coroutines.flow.asStateFlow -import org.citra.citra_emu.CitraApplication -import org.citra.citra_emu.R -import org.citra.citra_emu.fragments.CitraDirectoryDialogFragment -import org.citra.citra_emu.utils.GameHelper -import org.citra.citra_emu.utils.PermissionsHandler +import io.github.lime3ds.CitraApplication +import io.github.lime3ds.R +import io.github.lime3ds.fragments.CitraDirectoryDialogFragment +import io.github.lime3ds.utils.GameHelper +import io.github.lime3ds.utils.PermissionsHandler class HomeViewModel : ViewModel() { val navigationVisible get() = _navigationVisible.asStateFlow() diff --git a/src/android/app/src/main/java/org/citra/citra_emu/viewmodel/SystemFilesViewModel.kt b/src/android/app/src/main/java/org/citra/citra_emu/viewmodel/SystemFilesViewModel.kt index d4f654d5c..1b0b34c96 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/viewmodel/SystemFilesViewModel.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/viewmodel/SystemFilesViewModel.kt @@ -2,7 +2,7 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.viewmodel +package io.github.lime3ds.viewmodel import androidx.lifecycle.ViewModel import kotlinx.coroutines.CoroutineScope @@ -14,9 +14,9 @@ import kotlinx.coroutines.flow.MutableStateFlow import kotlinx.coroutines.flow.asStateFlow import kotlinx.coroutines.launch import kotlinx.coroutines.yield -import org.citra.citra_emu.NativeLibrary -import org.citra.citra_emu.NativeLibrary.InstallStatus -import org.citra.citra_emu.utils.Log +import io.github.lime3ds.NativeLibrary +import io.github.lime3ds.NativeLibrary.InstallStatus +import io.github.lime3ds.utils.Log import java.util.concurrent.atomic.AtomicInteger import kotlin.coroutines.CoroutineContext import kotlin.math.min diff --git a/src/android/app/src/main/java/org/citra/citra_emu/viewmodel/TaskViewModel.kt b/src/android/app/src/main/java/org/citra/citra_emu/viewmodel/TaskViewModel.kt index 54999e4c3..3b2919903 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/viewmodel/TaskViewModel.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/viewmodel/TaskViewModel.kt @@ -2,7 +2,7 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -package org.citra.citra_emu.viewmodel +package io.github.lime3ds.viewmodel import androidx.lifecycle.ViewModel import androidx.lifecycle.viewModelScope diff --git a/src/android/app/src/main/jni/CMakeLists.txt b/src/android/app/src/main/jni/CMakeLists.txt index 233d568ed..5d727c92c 100644 --- a/src/android/app/src/main/jni/CMakeLists.txt +++ b/src/android/app/src/main/jni/CMakeLists.txt @@ -1,4 +1,4 @@ -add_library(citra-android SHARED +add_library(lime-android SHARED android_common/android_common.cpp android_common/android_common.h applets/mii_selector.cpp @@ -31,24 +31,24 @@ add_library(citra-android SHARED native_log.cpp ) -target_link_libraries(citra-android PRIVATE audio_core citra_common citra_core input_common network) -target_link_libraries(citra-android PRIVATE android camera2ndk inih jnigraphics log mediandk yuv) +target_link_libraries(lime-android PRIVATE audio_core lime_common lime_core input_common network) +target_link_libraries(lime-android PRIVATE android camera2ndk inih jnigraphics log mediandk yuv) if (ENABLE_OPENGL) - target_sources(citra-android PRIVATE + target_sources(lime-android PRIVATE emu_window/emu_window_gl.cpp emu_window/emu_window_gl.h ) - target_link_libraries(citra-android PRIVATE EGL glad) + target_link_libraries(lime-android PRIVATE EGL glad) endif() if (ENABLE_VULKAN) - target_sources(citra-android PRIVATE + target_sources(lime-android PRIVATE emu_window/emu_window_vk.cpp emu_window/emu_window_vk.h ) if ("arm64" IN_LIST ARCHITECTURE) - target_link_libraries(citra-android PRIVATE adrenotools) + target_link_libraries(lime-android PRIVATE adrenotools) endif() endif() -set(CPACK_PACKAGE_EXECUTABLES ${CPACK_PACKAGE_EXECUTABLES} citra-android) +set(CPACK_PACKAGE_EXECUTABLES ${CPACK_PACKAGE_EXECUTABLES} lime-android) diff --git a/src/android/app/src/main/jni/ndk_motion.cpp b/src/android/app/src/main/jni/ndk_motion.cpp index 9f4d9b9d2..e134fb0c0 100644 --- a/src/android/app/src/main/jni/ndk_motion.cpp +++ b/src/android/app/src/main/jni/ndk_motion.cpp @@ -62,7 +62,7 @@ class NDKMotion final : public Input::MotionDevice { } void Construct() { - sensor_manager = ASensorManager_getInstanceForPackage("org.citra.citra_emu"); + sensor_manager = ASensorManager_getInstanceForPackage("io.github.lime3ds"); looper = ALooper_prepare(ALOOPER_PREPARE_ALLOW_NON_CALLBACKS); if (!sensor_manager || !looper) { LOG_CRITICAL(Input, "Could not retrieve sensor manager"); diff --git a/src/android/app/src/main/res/layout/fragment_cheats.xml b/src/android/app/src/main/res/layout/fragment_cheats.xml index ddc709f4c..79909cc33 100644 --- a/src/android/app/src/main/res/layout/fragment_cheats.xml +++ b/src/android/app/src/main/res/layout/fragment_cheats.xml @@ -9,7 +9,7 @@ - + tools:context="io.github.lime3ds.activities.EmulationActivity"> @@ -72,12 +72,12 @@ diff --git a/src/audio_core/CMakeLists.txt b/src/audio_core/CMakeLists.txt index a000e1fc1..ab00c8067 100644 --- a/src/audio_core/CMakeLists.txt +++ b/src/audio_core/CMakeLists.txt @@ -43,7 +43,7 @@ add_library(audio_core STATIC create_target_directory_groups(audio_core) -target_link_libraries(audio_core PUBLIC citra_common citra_core) +target_link_libraries(audio_core PUBLIC lime_common lime_core) target_link_libraries(audio_core PRIVATE faad2 SoundTouch teakra) if(ENABLE_SDL2) diff --git a/src/common/CMakeLists.txt b/src/common/CMakeLists.txt index f8c953a60..8b76c5c90 100644 --- a/src/common/CMakeLists.txt +++ b/src/common/CMakeLists.txt @@ -52,7 +52,7 @@ add_custom_command(OUTPUT scm_rev.cpp "${CMAKE_SOURCE_DIR}/CMakeModules/GenerateSCMRev.cmake" ) -add_library(citra_common STATIC +add_library(lime_common STATIC aarch64/cpu_detect.cpp aarch64/cpu_detect.h aarch64/oaknut_abi.h @@ -153,23 +153,23 @@ add_library(citra_common STATIC ) if (UNIX AND NOT APPLE) - target_sources(citra_common PRIVATE + target_sources(lime_common PRIVATE linux/gamemode.cpp linux/gamemode.h ) - target_link_libraries(citra_common PRIVATE gamemode) + target_link_libraries(lime_common PRIVATE gamemode) endif() if (APPLE) - target_sources(citra_common PUBLIC + target_sources(lime_common PUBLIC apple_authorization.h apple_authorization.cpp ) endif() if (MSVC) - target_compile_options(citra_common PRIVATE + target_compile_options(lime_common PRIVATE /W4 /we4242 # 'identifier': conversion from 'type1' to 'type2', possible loss of data @@ -177,30 +177,30 @@ if (MSVC) /we4800 # Implicit conversion from 'type' to bool. Possible information loss ) else() - target_compile_options(citra_common PRIVATE + target_compile_options(lime_common PRIVATE $<$:-fsized-deallocation> ) endif() -create_target_directory_groups(citra_common) +create_target_directory_groups(lime_common) -target_link_libraries(citra_common PUBLIC fmt library-headers microprofile Boost::boost Boost::serialization Boost::iostreams) -target_link_libraries(citra_common PRIVATE zstd) +target_link_libraries(lime_common PUBLIC fmt library-headers microprofile Boost::boost Boost::serialization Boost::iostreams) +target_link_libraries(lime_common PRIVATE zstd) if ("x86_64" IN_LIST ARCHITECTURE) - target_link_libraries(citra_common PRIVATE xbyak) + target_link_libraries(lime_common PRIVATE xbyak) endif() if ("arm64" IN_LIST ARCHITECTURE) - target_link_libraries(citra_common PRIVATE oaknut) + target_link_libraries(lime_common PRIVATE oaknut) endif() if (CITRA_USE_PRECOMPILED_HEADERS) - target_precompile_headers(citra_common PRIVATE precompiled_headers.h) + target_precompile_headers(lime_common PRIVATE precompiled_headers.h) endif() find_library(BACKTRACE_LIBRARY backtrace) if (BACKTRACE_LIBRARY AND ${CMAKE_SYSTEM_NAME} STREQUAL "Linux" AND CMAKE_CXX_COMPILER_ID STREQUAL GNU) - target_link_libraries(citra_common PRIVATE ${BACKTRACE_LIBRARY} dl) - target_compile_definitions(citra_common PRIVATE CITRA_LINUX_GCC_BACKTRACE) + target_link_libraries(lime_common PRIVATE ${BACKTRACE_LIBRARY} dl) + target_compile_definitions(lime_common PRIVATE CITRA_LINUX_GCC_BACKTRACE) endif() diff --git a/src/core/CMakeLists.txt b/src/core/CMakeLists.txt index cf29c05a8..6d41290b5 100644 --- a/src/core/CMakeLists.txt +++ b/src/core/CMakeLists.txt @@ -1,4 +1,4 @@ -add_library(citra_core STATIC +add_library(lime_core STATIC 3ds.h arm/arm_interface.h arm/dyncom/arm_dyncom.cpp @@ -474,19 +474,19 @@ add_library(citra_core STATIC tracer/recorder.h ) -create_target_directory_groups(citra_core) +create_target_directory_groups(lime_core) -target_link_libraries(citra_core PUBLIC citra_common PRIVATE audio_core network video_core) -target_link_libraries(citra_core PRIVATE Boost::boost Boost::serialization Boost::iostreams httplib) -target_link_libraries(citra_core PUBLIC dds-ktx PRIVATE cryptopp fmt lodepng open_source_archives) +target_link_libraries(lime_core PUBLIC lime_common PRIVATE audio_core network video_core) +target_link_libraries(lime_core PRIVATE Boost::boost Boost::serialization Boost::iostreams httplib) +target_link_libraries(lime_core PUBLIC dds-ktx PRIVATE cryptopp fmt lodepng open_source_archives) if (ENABLE_WEB_SERVICE) - target_link_libraries(citra_core PRIVATE web_service) + target_link_libraries(lime_core PRIVATE web_service) endif() if (ENABLE_SCRIPTING) - target_compile_definitions(citra_core PUBLIC -DENABLE_SCRIPTING) - target_sources(citra_core PRIVATE + target_compile_definitions(lime_core PUBLIC -DENABLE_SCRIPTING) + target_sources(lime_core PRIVATE rpc/packet.cpp rpc/packet.h rpc/rpc_server.cpp @@ -499,7 +499,7 @@ if (ENABLE_SCRIPTING) endif() if ("x86_64" IN_LIST ARCHITECTURE OR "arm64" IN_LIST ARCHITECTURE) - target_sources(citra_core PRIVATE + target_sources(lime_core PRIVATE arm/dynarmic/arm_dynarmic.cpp arm/dynarmic/arm_dynarmic.h arm/dynarmic/arm_dynarmic_cp15.cpp @@ -509,9 +509,9 @@ if ("x86_64" IN_LIST ARCHITECTURE OR "arm64" IN_LIST ARCHITECTURE) arm/dynarmic/arm_tick_counts.cpp arm/dynarmic/arm_tick_counts.h ) - target_link_libraries(citra_core PRIVATE dynarmic) + target_link_libraries(lime_core PRIVATE dynarmic) endif() if (CITRA_USE_PRECOMPILED_HEADERS) - target_precompile_headers(citra_core PRIVATE precompiled_headers.h) + target_precompile_headers(lime_core PRIVATE precompiled_headers.h) endif() diff --git a/src/dedicated_room/CMakeLists.txt b/src/dedicated_room/CMakeLists.txt index 8209f47eb..d796403f9 100644 --- a/src/dedicated_room/CMakeLists.txt +++ b/src/dedicated_room/CMakeLists.txt @@ -1,34 +1,34 @@ set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${PROJECT_SOURCE_DIR}/CMakeModules) -add_executable(citra-room +add_executable(lime-room precompiled_headers.h - citra-room.cpp - citra-room.rc + lime-room.cpp + lime-room.rc ) -create_target_directory_groups(citra-room) +create_target_directory_groups(lime-room) -target_link_libraries(citra-room PRIVATE citra_common network) +target_link_libraries(lime-room PRIVATE lime_common network) if (ENABLE_WEB_SERVICE) - target_link_libraries(citra-room PRIVATE web_service) + target_link_libraries(lime-room PRIVATE web_service) endif() -target_link_libraries(citra-room PRIVATE cryptopp) +target_link_libraries(lime-room PRIVATE cryptopp) if (MSVC) - target_link_libraries(citra-room PRIVATE getopt) + target_link_libraries(lime-room PRIVATE getopt) endif() -target_link_libraries(citra-room PRIVATE ${PLATFORM_LIBRARIES} Threads::Threads) +target_link_libraries(lime-room PRIVATE ${PLATFORM_LIBRARIES} Threads::Threads) if(UNIX AND NOT APPLE) - install(TARGETS citra-room RUNTIME DESTINATION "${CMAKE_INSTALL_PREFIX}/bin") + install(TARGETS lime-room RUNTIME DESTINATION "${CMAKE_INSTALL_PREFIX}/bin") endif() if (CITRA_USE_PRECOMPILED_HEADERS) - target_precompile_headers(citra-room PRIVATE precompiled_headers.h) + target_precompile_headers(lime-room PRIVATE precompiled_headers.h) endif() # Bundle in-place on MSVC so dependencies can be resolved by builds. if (MSVC) include(BundleTarget) - bundle_target_in_place(citra-room) + bundle_target_in_place(lime-room) endif() diff --git a/src/dedicated_room/citra-room.cpp b/src/dedicated_room/lime-room.cpp similarity index 99% rename from src/dedicated_room/citra-room.cpp rename to src/dedicated_room/lime-room.cpp index 3d5f32a9b..bd05cc50d 100644 --- a/src/dedicated_room/citra-room.cpp +++ b/src/dedicated_room/lime-room.cpp @@ -66,7 +66,7 @@ static void PrintVersion() { << " Libnetwork: " << Network::network_version << std::endl; } -/// The magic text at the beginning of a citra-room ban list file. +/// The magic text at the beginning of a lime-room ban list file. static constexpr char BanListMagic[] = "CitraRoom-BanList-1"; static constexpr char token_delimiter{':'}; @@ -169,7 +169,7 @@ int main(int argc, char** argv) { std::string token; std::string web_api_url; std::string ban_list_file; - std::string log_file = "citra-room.log"; + std::string log_file = "lime-room.log"; u64 preferred_game_id = 0; u16 port = Network::DefaultRoomPort; u32 max_members = 16; diff --git a/src/citra/citra.rc b/src/dedicated_room/lime-room.rc similarity index 68% rename from src/citra/citra.rc rename to src/dedicated_room/lime-room.rc index 2c6bcd589..2a707cbd1 100644 --- a/src/citra/citra.rc +++ b/src/dedicated_room/lime-room.rc @@ -6,7 +6,7 @@ // Icon with lowest ID value placed first to ensure application icon // remains consistent on all systems. -CITRA_ICON ICON "../../dist/citra.ico" +CITRA_ICON ICON "../../dist/lime.ico" ///////////////////////////////////////////////////////////////////////////// @@ -14,4 +14,4 @@ CITRA_ICON ICON "../../dist/citra.ico" // RT_MANIFEST // -0 RT_MANIFEST "../../dist/citra.manifest" +0 RT_MANIFEST "../../dist/lime.manifest" diff --git a/src/input_common/CMakeLists.txt b/src/input_common/CMakeLists.txt index 70d36cbfd..7c76b16b6 100644 --- a/src/input_common/CMakeLists.txt +++ b/src/input_common/CMakeLists.txt @@ -42,7 +42,7 @@ if(ENABLE_LIBUSB) endif() create_target_directory_groups(input_common) -target_link_libraries(input_common PUBLIC citra_core PRIVATE citra_common ${Boost_LIBRARIES}) +target_link_libraries(input_common PUBLIC lime_core PRIVATE lime_common ${Boost_LIBRARIES}) if (CITRA_USE_PRECOMPILED_HEADERS) target_precompile_headers(input_common PRIVATE precompiled_headers.h) diff --git a/src/citra/CMakeLists.txt b/src/lime/CMakeLists.txt similarity index 55% rename from src/citra/CMakeLists.txt rename to src/lime/CMakeLists.txt index 42de087c7..f27b72d96 100644 --- a/src/citra/CMakeLists.txt +++ b/src/lime/CMakeLists.txt @@ -1,8 +1,8 @@ set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${PROJECT_SOURCE_DIR}/CMakeModules) -add_executable(citra - citra.cpp - citra.rc +add_executable(lime + lime.cpp + lime.rc config.cpp config.h default_ini.h @@ -13,47 +13,47 @@ add_executable(citra ) if (ENABLE_SOFTWARE_RENDERER) - target_sources(citra PRIVATE + target_sources(lime PRIVATE emu_window/emu_window_sdl2_sw.cpp emu_window/emu_window_sdl2_sw.h ) endif() if (ENABLE_OPENGL) - target_sources(citra PRIVATE + target_sources(lime PRIVATE emu_window/emu_window_sdl2_gl.cpp emu_window/emu_window_sdl2_gl.h ) endif() if (ENABLE_VULKAN) - target_sources(citra PRIVATE + target_sources(lime PRIVATE emu_window/emu_window_sdl2_vk.cpp emu_window/emu_window_sdl2_vk.h ) endif() -create_target_directory_groups(citra) +create_target_directory_groups(lime) -target_link_libraries(citra PRIVATE citra_common citra_core input_common network) -target_link_libraries(citra PRIVATE inih) +target_link_libraries(lime PRIVATE lime_common lime_core input_common network) +target_link_libraries(lime PRIVATE inih) if (MSVC) - target_link_libraries(citra PRIVATE getopt) + target_link_libraries(lime PRIVATE getopt) endif() -target_link_libraries(citra PRIVATE ${PLATFORM_LIBRARIES} SDL2::SDL2 Threads::Threads) +target_link_libraries(lime PRIVATE ${PLATFORM_LIBRARIES} SDL2::SDL2 Threads::Threads) if (ENABLE_OPENGL) - target_link_libraries(citra PRIVATE glad) + target_link_libraries(lime PRIVATE glad) endif() if(UNIX AND NOT APPLE) - install(TARGETS citra RUNTIME DESTINATION "${CMAKE_INSTALL_PREFIX}/bin") + install(TARGETS lime RUNTIME DESTINATION "${CMAKE_INSTALL_PREFIX}/bin") endif() if (CITRA_USE_PRECOMPILED_HEADERS) - target_precompile_headers(citra PRIVATE precompiled_headers.h) + target_precompile_headers(lime PRIVATE precompiled_headers.h) endif() # Bundle in-place on MSVC so dependencies can be resolved by builds. if (MSVC) include(BundleTarget) - bundle_target_in_place(citra) + bundle_target_in_place(lime) endif() diff --git a/src/citra/config.cpp b/src/lime/config.cpp similarity index 99% rename from src/citra/config.cpp rename to src/lime/config.cpp index baf5bbded..cfd0f57b9 100644 --- a/src/citra/config.cpp +++ b/src/lime/config.cpp @@ -8,8 +8,6 @@ #include #include #include -#include "citra/config.h" -#include "citra/default_ini.h" #include "common/file_util.h" #include "common/logging/backend.h" #include "common/logging/log.h" @@ -17,6 +15,8 @@ #include "core/hle/service/service.h" #include "input_common/main.h" #include "input_common/udp/client.h" +#include "lime/config.h" +#include "lime/default_ini.h" #include "network/network_settings.h" Config::Config() { diff --git a/src/citra/config.h b/src/lime/config.h similarity index 100% rename from src/citra/config.h rename to src/lime/config.h diff --git a/src/citra/default_ini.h b/src/lime/default_ini.h similarity index 100% rename from src/citra/default_ini.h rename to src/lime/default_ini.h diff --git a/src/citra/emu_window/emu_window_sdl2.cpp b/src/lime/emu_window/emu_window_sdl2.cpp similarity index 99% rename from src/citra/emu_window/emu_window_sdl2.cpp rename to src/lime/emu_window/emu_window_sdl2.cpp index 36c2f7fc7..a0c78751d 100644 --- a/src/citra/emu_window/emu_window_sdl2.cpp +++ b/src/lime/emu_window/emu_window_sdl2.cpp @@ -7,13 +7,13 @@ #include #define SDL_MAIN_HANDLED #include -#include "citra/emu_window/emu_window_sdl2.h" #include "common/logging/log.h" #include "common/scm_rev.h" #include "core/core.h" #include "input_common/keyboard.h" #include "input_common/main.h" #include "input_common/motion_emu.h" +#include "lime/emu_window/emu_window_sdl2.h" #include "network/network.h" void EmuWindow_SDL2::OnMouseMotion(s32 x, s32 y) { diff --git a/src/citra/emu_window/emu_window_sdl2.h b/src/lime/emu_window/emu_window_sdl2.h similarity index 100% rename from src/citra/emu_window/emu_window_sdl2.h rename to src/lime/emu_window/emu_window_sdl2.h diff --git a/src/citra/emu_window/emu_window_sdl2_gl.cpp b/src/lime/emu_window/emu_window_sdl2_gl.cpp similarity index 99% rename from src/citra/emu_window/emu_window_sdl2_gl.cpp rename to src/lime/emu_window/emu_window_sdl2_gl.cpp index c72c16bf6..e621b992f 100644 --- a/src/citra/emu_window/emu_window_sdl2_gl.cpp +++ b/src/lime/emu_window/emu_window_sdl2_gl.cpp @@ -8,10 +8,10 @@ #define SDL_MAIN_HANDLED #include #include -#include "citra/emu_window/emu_window_sdl2_gl.h" #include "common/scm_rev.h" #include "common/settings.h" #include "core/core.h" +#include "lime/emu_window/emu_window_sdl2_gl.h" #include "video_core/gpu.h" #include "video_core/renderer_base.h" diff --git a/src/citra/emu_window/emu_window_sdl2_gl.h b/src/lime/emu_window/emu_window_sdl2_gl.h similarity index 95% rename from src/citra/emu_window/emu_window_sdl2_gl.h rename to src/lime/emu_window/emu_window_sdl2_gl.h index 4a4d70601..c1339a049 100644 --- a/src/citra/emu_window/emu_window_sdl2_gl.h +++ b/src/lime/emu_window/emu_window_sdl2_gl.h @@ -5,7 +5,7 @@ #pragma once #include -#include "citra/emu_window/emu_window_sdl2.h" +#include "lime/emu_window/emu_window_sdl2.h" struct SDL_Window; diff --git a/src/citra/emu_window/emu_window_sdl2_sw.cpp b/src/lime/emu_window/emu_window_sdl2_sw.cpp similarity index 98% rename from src/citra/emu_window/emu_window_sdl2_sw.cpp rename to src/lime/emu_window/emu_window_sdl2_sw.cpp index cdf60da79..a09ff707d 100644 --- a/src/citra/emu_window/emu_window_sdl2_sw.cpp +++ b/src/lime/emu_window/emu_window_sdl2_sw.cpp @@ -8,11 +8,11 @@ #define SDL_MAIN_HANDLED #include #include -#include "citra/emu_window/emu_window_sdl2_sw.h" #include "common/scm_rev.h" #include "common/settings.h" #include "core/core.h" #include "core/frontend/emu_window.h" +#include "lime/emu_window/emu_window_sdl2_sw.h" #include "video_core/gpu.h" #include "video_core/renderer_software/renderer_software.h" diff --git a/src/citra/emu_window/emu_window_sdl2_sw.h b/src/lime/emu_window/emu_window_sdl2_sw.h similarity index 95% rename from src/citra/emu_window/emu_window_sdl2_sw.h rename to src/lime/emu_window/emu_window_sdl2_sw.h index 22fcd3bd2..0bb4e5bc6 100644 --- a/src/citra/emu_window/emu_window_sdl2_sw.h +++ b/src/lime/emu_window/emu_window_sdl2_sw.h @@ -5,7 +5,7 @@ #pragma once #include -#include "citra/emu_window/emu_window_sdl2.h" +#include "lime/emu_window/emu_window_sdl2.h" struct SDL_Renderer; struct SDL_Surface; diff --git a/src/citra/emu_window/emu_window_sdl2_vk.cpp b/src/lime/emu_window/emu_window_sdl2_vk.cpp similarity index 98% rename from src/citra/emu_window/emu_window_sdl2_vk.cpp rename to src/lime/emu_window/emu_window_sdl2_vk.cpp index 47e10dc38..252e50753 100644 --- a/src/citra/emu_window/emu_window_sdl2_vk.cpp +++ b/src/lime/emu_window/emu_window_sdl2_vk.cpp @@ -8,10 +8,10 @@ #include #include #include -#include "citra/emu_window/emu_window_sdl2_vk.h" #include "common/logging/log.h" #include "common/scm_rev.h" #include "core/frontend/emu_window.h" +#include "lime/emu_window/emu_window_sdl2_vk.h" class DummyContext : public Frontend::GraphicsContext {}; diff --git a/src/citra/emu_window/emu_window_sdl2_vk.h b/src/lime/emu_window/emu_window_sdl2_vk.h similarity index 91% rename from src/citra/emu_window/emu_window_sdl2_vk.h rename to src/lime/emu_window/emu_window_sdl2_vk.h index be1cd1352..586ae7534 100644 --- a/src/citra/emu_window/emu_window_sdl2_vk.h +++ b/src/lime/emu_window/emu_window_sdl2_vk.h @@ -5,7 +5,7 @@ #pragma once #include -#include "citra/emu_window/emu_window_sdl2.h" +#include "lime/emu_window/emu_window_sdl2.h" namespace Frontend { class GraphicsContext; diff --git a/src/citra/citra.cpp b/src/lime/lime.cpp similarity index 98% rename from src/citra/citra.cpp rename to src/lime/lime.cpp index 99fb285f0..b2e837723 100644 --- a/src/citra/citra.cpp +++ b/src/lime/lime.cpp @@ -11,16 +11,16 @@ // This needs to be included before getopt.h because the latter #defines symbols used by it #include "common/microprofile.h" -#include "citra/config.h" -#include "citra/emu_window/emu_window_sdl2.h" +#include "lime/config.h" +#include "lime/emu_window/emu_window_sdl2.h" #ifdef ENABLE_OPENGL -#include "citra/emu_window/emu_window_sdl2_gl.h" +#include "lime/emu_window/emu_window_sdl2_gl.h" #endif #ifdef ENABLE_SOFTWARE_RENDERER -#include "citra/emu_window/emu_window_sdl2_sw.h" +#include "lime/emu_window/emu_window_sdl2_sw.h" #endif #ifdef ENABLE_VULKAN -#include "citra/emu_window/emu_window_sdl2_vk.h" +#include "lime/emu_window/emu_window_sdl2_vk.h" #endif #include "common/common_paths.h" #include "common/detached_tasks.h" diff --git a/src/dedicated_room/citra-room.rc b/src/lime/lime.rc similarity index 68% rename from src/dedicated_room/citra-room.rc rename to src/lime/lime.rc index 2c6bcd589..2a707cbd1 100644 --- a/src/dedicated_room/citra-room.rc +++ b/src/lime/lime.rc @@ -6,7 +6,7 @@ // Icon with lowest ID value placed first to ensure application icon // remains consistent on all systems. -CITRA_ICON ICON "../../dist/citra.ico" +CITRA_ICON ICON "../../dist/lime.ico" ///////////////////////////////////////////////////////////////////////////// @@ -14,4 +14,4 @@ CITRA_ICON ICON "../../dist/citra.ico" // RT_MANIFEST // -0 RT_MANIFEST "../../dist/citra.manifest" +0 RT_MANIFEST "../../dist/lime.manifest" diff --git a/src/citra/precompiled_headers.h b/src/lime/precompiled_headers.h similarity index 100% rename from src/citra/precompiled_headers.h rename to src/lime/precompiled_headers.h diff --git a/src/citra/resource.h b/src/lime/resource.h similarity index 100% rename from src/citra/resource.h rename to src/lime/resource.h diff --git a/src/citra_qt/CMakeLists.txt b/src/lime_qt/CMakeLists.txt similarity index 82% rename from src/citra_qt/CMakeLists.txt rename to src/lime_qt/CMakeLists.txt index b17a143d3..312729d65 100644 --- a/src/citra_qt/CMakeLists.txt +++ b/src/lime_qt/CMakeLists.txt @@ -7,7 +7,7 @@ if (POLICY CMP0071) cmake_policy(SET CMP0071 NEW) endif() -add_executable(citra-qt +add_executable(lime-qt aboutdialog.cpp aboutdialog.h aboutdialog.ui @@ -27,7 +27,7 @@ add_executable(citra-qt camera/qt_camera_base.h camera/qt_multimedia_camera.cpp camera/qt_multimedia_camera.h - citra-qt.rc + lime-qt.rc compatdb.cpp compatdb.h compatdb.ui @@ -196,12 +196,12 @@ file(GLOB_RECURSE ICONS ${PROJECT_SOURCE_DIR}/dist/icons/*) file(GLOB_RECURSE THEMES ${PROJECT_SOURCE_DIR}/dist/qt_themes/*) if (ENABLE_QT_UPDATER) - target_sources(citra-qt PRIVATE + target_sources(lime-qt PRIVATE updater/updater.cpp updater/updater.h updater/updater_p.h ) - target_compile_definitions(citra-qt PUBLIC ENABLE_QT_UPDATER) + target_compile_definitions(lime-qt PUBLIC ENABLE_QT_UPDATER) endif() if (ENABLE_QT_TRANSLATION) @@ -210,9 +210,9 @@ if (ENABLE_QT_TRANSLATION) # Update source TS file if enabled if (GENERATE_QT_TRANSLATION) - get_target_property(QT_SRCS citra-qt SOURCES) - get_target_property(QT_INCLUDES citra-qt INCLUDE_DIRECTORIES) - qt_add_lupdate(citra-qt TS_FILES ${CITRA_QT_LANGUAGES}/en.ts + get_target_property(QT_SRCS lime-qt SOURCES) + get_target_property(QT_INCLUDES lime-qt INCLUDE_DIRECTORIES) + qt_add_lupdate(lime-qt TS_FILES ${CITRA_QT_LANGUAGES}/en.ts SOURCES ${QT_SRCS} ${UIS} INCLUDE_DIRECTORIES ${QT_INCLUDES} NO_GLOBAL_TARGET) @@ -224,7 +224,7 @@ if (ENABLE_QT_TRANSLATION) list(REMOVE_ITEM LANGUAGES_TS ${CITRA_QT_LANGUAGES}/en.ts) # Compile TS files to QM files - qt_add_lrelease(citra-qt TS_FILES ${LANGUAGES_TS} NO_GLOBAL_TARGET QM_FILES_OUTPUT_VARIABLE LANGUAGES_QM) + qt_add_lrelease(lime-qt TS_FILES ${LANGUAGES_TS} NO_GLOBAL_TARGET QM_FILES_OUTPUT_VARIABLE LANGUAGES_QM) # Build a QRC file from the QM file list set(LANGUAGES_QRC ${CMAKE_CURRENT_BINARY_DIR}/languages.qrc) @@ -241,7 +241,7 @@ else() set(LANGUAGES) endif() -target_sources(citra-qt +target_sources(lime-qt PRIVATE ${COMPAT_LIST} ${ICONS} @@ -252,15 +252,15 @@ target_sources(citra-qt if (APPLE) set(DIST_DIR "../../dist/apple") set(APPLE_RESOURCES - "${DIST_DIR}/citra.icns" + "${DIST_DIR}/lime.icns" "${DIST_DIR}/LaunchScreen.storyboard" "${DIST_DIR}/launch_logo.png" ) - target_sources(citra-qt PRIVATE ${APPLE_RESOURCES}) + target_sources(lime-qt PRIVATE ${APPLE_RESOURCES}) # Define app bundle metadata. include(GenerateBuildInfo) - set_target_properties(citra-qt PROPERTIES + set_target_properties(lime-qt PROPERTIES MACOSX_BUNDLE TRUE MACOSX_BUNDLE_INFO_PLIST "${DIST_DIR}/Info.plist.in" MACOSX_BUNDLE_BUNDLE_NAME "Citra" @@ -268,12 +268,12 @@ if (APPLE) MACOSX_BUNDLE_BUNDLE_VERSION "${BUILD_VERSION}" MACOSX_BUNDLE_SHORT_VERSION_STRING "${BUILD_FULLNAME}" MACOSX_BUNDLE_LONG_VERSION_STRING "${BUILD_FULLNAME}" - MACOSX_BUNDLE_ICON_FILE "citra.icns" + MACOSX_BUNDLE_ICON_FILE "lime.icns" RESOURCE "${APPLE_RESOURCES}" ) if (IOS) - set_target_properties(citra-qt PROPERTIES + set_target_properties(lime-qt PROPERTIES # Have Xcode copy and sign MoltenVK into app bundle. XCODE_EMBED_FRAMEWORKS "${MOLTENVK_LIBRARY}" XCODE_EMBED_FRAMEWORKS_CODE_SIGN_ON_COPY YES @@ -284,42 +284,42 @@ if (APPLE) endif() elseif(WIN32) # compile as a win32 gui application instead of a console application - target_link_libraries(citra-qt PRIVATE Qt6::EntryPointImplementation) + target_link_libraries(lime-qt PRIVATE Qt6::EntryPointImplementation) if(MSVC) - set_target_properties(citra-qt PROPERTIES LINK_FLAGS_RELEASE "/SUBSYSTEM:WINDOWS") + set_target_properties(lime-qt PROPERTIES LINK_FLAGS_RELEASE "/SUBSYSTEM:WINDOWS") elseif(MINGW) - set_target_properties(citra-qt PROPERTIES LINK_FLAGS_RELEASE "-mwindows") + set_target_properties(lime-qt PROPERTIES LINK_FLAGS_RELEASE "-mwindows") endif() endif() if(ENABLE_SDL2) - target_link_libraries(citra-qt PRIVATE SDL2::SDL2) - target_compile_definitions(citra-qt PRIVATE HAVE_SDL2) + target_link_libraries(lime-qt PRIVATE SDL2::SDL2) + target_compile_definitions(lime-qt PRIVATE HAVE_SDL2) endif() -create_target_directory_groups(citra-qt) +create_target_directory_groups(lime-qt) -target_link_libraries(citra-qt PRIVATE audio_core citra_common citra_core input_common network video_core) -target_link_libraries(citra-qt PRIVATE Boost::boost nihstro-headers Qt6::Widgets Qt6::Multimedia Qt6::Concurrent) -target_link_libraries(citra-qt PRIVATE ${PLATFORM_LIBRARIES} Threads::Threads) +target_link_libraries(lime-qt PRIVATE audio_core lime_common lime_core input_common network video_core) +target_link_libraries(lime-qt PRIVATE Boost::boost nihstro-headers Qt6::Widgets Qt6::Multimedia Qt6::Concurrent) +target_link_libraries(lime-qt PRIVATE ${PLATFORM_LIBRARIES} Threads::Threads) if (ENABLE_OPENGL) - target_link_libraries(citra-qt PRIVATE glad) + target_link_libraries(lime-qt PRIVATE glad) endif() if (ENABLE_VULKAN) - target_link_libraries(citra-qt PRIVATE vulkan-headers) + target_link_libraries(lime-qt PRIVATE vulkan-headers) endif() if (NOT WIN32) - target_include_directories(citra-qt PRIVATE ${Qt6Gui_PRIVATE_INCLUDE_DIRS}) + target_include_directories(lime-qt PRIVATE ${Qt6Gui_PRIVATE_INCLUDE_DIRS}) endif() if (UNIX AND NOT APPLE) - target_link_libraries(citra-qt PRIVATE Qt6::DBus gamemode) + target_link_libraries(lime-qt PRIVATE Qt6::DBus gamemode) endif() -target_compile_definitions(citra-qt PRIVATE +target_compile_definitions(lime-qt PRIVATE # Use QStringBuilder for string concatenation to reduce # the overall number of temporary strings created. -DQT_USE_QSTRINGBUILDER @@ -339,32 +339,32 @@ target_compile_definitions(citra-qt PRIVATE ) if (CITRA_ENABLE_COMPATIBILITY_REPORTING) - target_compile_definitions(citra-qt PRIVATE -DCITRA_ENABLE_COMPATIBILITY_REPORTING) + target_compile_definitions(lime-qt PRIVATE -DCITRA_ENABLE_COMPATIBILITY_REPORTING) endif() if (USE_DISCORD_PRESENCE) - target_sources(citra-qt PUBLIC + target_sources(lime-qt PUBLIC discord_impl.cpp discord_impl.h ) - target_link_libraries(citra-qt PRIVATE discord-rpc) - target_compile_definitions(citra-qt PRIVATE -DUSE_DISCORD_PRESENCE) + target_link_libraries(lime-qt PRIVATE discord-rpc) + target_compile_definitions(lime-qt PRIVATE -DUSE_DISCORD_PRESENCE) endif() if (ENABLE_WEB_SERVICE) - target_link_libraries(citra-qt PRIVATE web_service) + target_link_libraries(lime-qt PRIVATE web_service) endif() if(UNIX AND NOT APPLE) - install(TARGETS citra-qt RUNTIME DESTINATION "${CMAKE_INSTALL_PREFIX}/bin") + install(TARGETS lime-qt RUNTIME DESTINATION "${CMAKE_INSTALL_PREFIX}/bin") endif() if (CITRA_USE_PRECOMPILED_HEADERS) - target_precompile_headers(citra-qt PRIVATE precompiled_headers.h) + target_precompile_headers(lime-qt PRIVATE precompiled_headers.h) endif() # Bundle in-place on MSVC so dependencies can be resolved by builds. if (MSVC) include(BundleTarget) - bundle_target_in_place(citra-qt) + bundle_target_in_place(lime-qt) endif() diff --git a/src/citra_qt/aboutdialog.cpp b/src/lime_qt/aboutdialog.cpp similarity index 100% rename from src/citra_qt/aboutdialog.cpp rename to src/lime_qt/aboutdialog.cpp diff --git a/src/citra_qt/aboutdialog.h b/src/lime_qt/aboutdialog.h similarity index 100% rename from src/citra_qt/aboutdialog.h rename to src/lime_qt/aboutdialog.h diff --git a/src/citra_qt/aboutdialog.ui b/src/lime_qt/aboutdialog.ui similarity index 98% rename from src/citra_qt/aboutdialog.ui rename to src/lime_qt/aboutdialog.ui index 491fe8801..7a75f00e6 100644 --- a/src/citra_qt/aboutdialog.ui +++ b/src/lime_qt/aboutdialog.ui @@ -27,7 +27,7 @@ - <html><head/><body><p><img src=":/icons/citra.png"/></p></body></html> + <html><head/><body><p><img src=":/icons/lime.png"/></p></body></html> diff --git a/src/citra_qt/applets/mii_selector.cpp b/src/lime_qt/applets/mii_selector.cpp similarity index 98% rename from src/citra_qt/applets/mii_selector.cpp rename to src/lime_qt/applets/mii_selector.cpp index 199b3f924..4c0383d0b 100644 --- a/src/citra_qt/applets/mii_selector.cpp +++ b/src/lime_qt/applets/mii_selector.cpp @@ -7,8 +7,8 @@ #include #include #include -#include "citra_qt/applets/mii_selector.h" #include "common/string_util.h" +#include "lime_qt/applets/mii_selector.h" QtMiiSelectorDialog::QtMiiSelectorDialog(QWidget* parent, QtMiiSelector* mii_selector_) : QDialog(parent), mii_selector(mii_selector_) { diff --git a/src/citra_qt/applets/mii_selector.h b/src/lime_qt/applets/mii_selector.h similarity index 100% rename from src/citra_qt/applets/mii_selector.h rename to src/lime_qt/applets/mii_selector.h diff --git a/src/citra_qt/applets/swkbd.cpp b/src/lime_qt/applets/swkbd.cpp similarity index 99% rename from src/citra_qt/applets/swkbd.cpp rename to src/lime_qt/applets/swkbd.cpp index 44e6c5738..c9d48af5e 100644 --- a/src/citra_qt/applets/swkbd.cpp +++ b/src/lime_qt/applets/swkbd.cpp @@ -9,7 +9,7 @@ #include #include #include -#include "citra_qt/applets/swkbd.h" +#include "lime_qt/applets/swkbd.h" QtKeyboardValidator::QtKeyboardValidator(QtKeyboard* keyboard_) : keyboard(keyboard_) {} diff --git a/src/citra_qt/applets/swkbd.h b/src/lime_qt/applets/swkbd.h similarity index 100% rename from src/citra_qt/applets/swkbd.h rename to src/lime_qt/applets/swkbd.h diff --git a/src/citra_qt/bootmanager.cpp b/src/lime_qt/bootmanager.cpp similarity index 99% rename from src/citra_qt/bootmanager.cpp rename to src/lime_qt/bootmanager.cpp index 8f63f6713..6fc0798c0 100644 --- a/src/citra_qt/bootmanager.cpp +++ b/src/lime_qt/bootmanager.cpp @@ -8,8 +8,6 @@ #include #include #include -#include "citra_qt/bootmanager.h" -#include "citra_qt/main.h" #include "common/color.h" #include "common/microprofile.h" #include "common/scm_rev.h" @@ -21,6 +19,8 @@ #include "input_common/keyboard.h" #include "input_common/main.h" #include "input_common/motion_emu.h" +#include "lime_qt/bootmanager.h" +#include "lime_qt/main.h" #include "video_core/custom_textures/custom_tex_manager.h" #include "video_core/gpu.h" #include "video_core/renderer_base.h" diff --git a/src/citra_qt/bootmanager.h b/src/lime_qt/bootmanager.h similarity index 100% rename from src/citra_qt/bootmanager.h rename to src/lime_qt/bootmanager.h diff --git a/src/citra_qt/camera/camera_util.cpp b/src/lime_qt/camera/camera_util.cpp similarity index 99% rename from src/citra_qt/camera/camera_util.cpp rename to src/lime_qt/camera/camera_util.cpp index 878ac910c..73db33216 100644 --- a/src/citra_qt/camera/camera_util.cpp +++ b/src/lime_qt/camera/camera_util.cpp @@ -6,7 +6,7 @@ #include #include #include -#include "citra_qt/camera/camera_util.h" +#include "lime_qt/camera/camera_util.h" namespace CameraUtil { diff --git a/src/citra_qt/camera/camera_util.h b/src/lime_qt/camera/camera_util.h similarity index 100% rename from src/citra_qt/camera/camera_util.h rename to src/lime_qt/camera/camera_util.h diff --git a/src/citra_qt/camera/qt_camera_base.cpp b/src/lime_qt/camera/qt_camera_base.cpp similarity index 96% rename from src/citra_qt/camera/qt_camera_base.cpp rename to src/lime_qt/camera/qt_camera_base.cpp index 6956bdee0..55ebc44c6 100644 --- a/src/citra_qt/camera/qt_camera_base.cpp +++ b/src/lime_qt/camera/qt_camera_base.cpp @@ -3,10 +3,10 @@ // Refer to the license.txt file included. #include -#include "citra_qt/camera/camera_util.h" -#include "citra_qt/camera/qt_camera_base.h" #include "common/logging/log.h" #include "core/hle/service/cam/cam.h" +#include "lime_qt/camera/camera_util.h" +#include "lime_qt/camera/qt_camera_base.h" namespace Camera { diff --git a/src/citra_qt/camera/qt_camera_base.h b/src/lime_qt/camera/qt_camera_base.h similarity index 91% rename from src/citra_qt/camera/qt_camera_base.h rename to src/lime_qt/camera/qt_camera_base.h index 6c6095a28..b69937a0f 100644 --- a/src/citra_qt/camera/qt_camera_base.h +++ b/src/lime_qt/camera/qt_camera_base.h @@ -9,7 +9,7 @@ namespace Camera { -// Base class for camera interfaces of citra_qt +// Base class for camera interfaces of lime_qt class QtCameraInterface : public CameraInterface { public: QtCameraInterface(const Service::CAM::Flip& flip); @@ -27,7 +27,7 @@ private: bool basic_flip_horizontal, basic_flip_vertical; }; -// Base class for camera factories of citra_qt +// Base class for camera factories of lime_qt class QtCameraFactory : public CameraFactory { std::unique_ptr CreatePreview(const std::string& config, int width, int height, const Service::CAM::Flip& flip) override; diff --git a/src/citra_qt/camera/qt_multimedia_camera.cpp b/src/lime_qt/camera/qt_multimedia_camera.cpp similarity index 97% rename from src/citra_qt/camera/qt_multimedia_camera.cpp rename to src/lime_qt/camera/qt_multimedia_camera.cpp index 47b9f0f26..9725089b4 100644 --- a/src/citra_qt/camera/qt_multimedia_camera.cpp +++ b/src/lime_qt/camera/qt_multimedia_camera.cpp @@ -6,8 +6,8 @@ #include #include #include -#include "citra_qt/camera/qt_multimedia_camera.h" -#include "citra_qt/main.h" +#include "lime_qt/camera/qt_multimedia_camera.h" +#include "lime_qt/main.h" #if defined(__APPLE__) #include "common/apple_authorization.h" diff --git a/src/citra_qt/camera/qt_multimedia_camera.h b/src/lime_qt/camera/qt_multimedia_camera.h similarity index 97% rename from src/citra_qt/camera/qt_multimedia_camera.h rename to src/lime_qt/camera/qt_multimedia_camera.h index 44acb7bbd..fc0e99a19 100644 --- a/src/citra_qt/camera/qt_multimedia_camera.h +++ b/src/lime_qt/camera/qt_multimedia_camera.h @@ -10,9 +10,9 @@ #include #include #include -#include "citra_qt/camera/camera_util.h" -#include "citra_qt/camera/qt_camera_base.h" #include "core/frontend/camera/interface.h" +#include "lime_qt/camera/camera_util.h" +#include "lime_qt/camera/qt_camera_base.h" namespace Camera { diff --git a/src/citra_qt/camera/still_image_camera.cpp b/src/lime_qt/camera/still_image_camera.cpp similarity index 98% rename from src/citra_qt/camera/still_image_camera.cpp rename to src/lime_qt/camera/still_image_camera.cpp index cd1b6713d..a90290f89 100644 --- a/src/citra_qt/camera/still_image_camera.cpp +++ b/src/lime_qt/camera/still_image_camera.cpp @@ -6,8 +6,8 @@ #include #include #include -#include "citra_qt/camera/still_image_camera.h" #include "common/logging/log.h" +#include "lime_qt/camera/still_image_camera.h" namespace Camera { diff --git a/src/citra_qt/camera/still_image_camera.h b/src/lime_qt/camera/still_image_camera.h similarity index 93% rename from src/citra_qt/camera/still_image_camera.h rename to src/lime_qt/camera/still_image_camera.h index 19ca044f0..357da26db 100644 --- a/src/citra_qt/camera/still_image_camera.h +++ b/src/lime_qt/camera/still_image_camera.h @@ -6,9 +6,9 @@ #include #include -#include "citra_qt/camera/camera_util.h" -#include "citra_qt/camera/qt_camera_base.h" #include "core/frontend/camera/interface.h" +#include "lime_qt/camera/camera_util.h" +#include "lime_qt/camera/qt_camera_base.h" namespace Camera { diff --git a/src/citra_qt/compatdb.cpp b/src/lime_qt/compatdb.cpp similarity index 99% rename from src/citra_qt/compatdb.cpp rename to src/lime_qt/compatdb.cpp index ca8f5870a..fe51b264a 100644 --- a/src/citra_qt/compatdb.cpp +++ b/src/lime_qt/compatdb.cpp @@ -6,10 +6,10 @@ #include #include #include -#include "citra_qt/compatdb.h" #include "common/telemetry.h" #include "core/core.h" #include "core/telemetry_session.h" +#include "lime_qt/compatdb.h" #include "ui_compatdb.h" CompatDB::CompatDB(Core::TelemetrySession& telemetry_session_, QWidget* parent) diff --git a/src/citra_qt/compatdb.h b/src/lime_qt/compatdb.h similarity index 100% rename from src/citra_qt/compatdb.h rename to src/lime_qt/compatdb.h diff --git a/src/citra_qt/compatdb.ui b/src/lime_qt/compatdb.ui similarity index 100% rename from src/citra_qt/compatdb.ui rename to src/lime_qt/compatdb.ui diff --git a/src/citra_qt/compatibility_list.cpp b/src/lime_qt/compatibility_list.cpp similarity index 93% rename from src/citra_qt/compatibility_list.cpp rename to src/lime_qt/compatibility_list.cpp index 92e729dee..37ed48544 100644 --- a/src/citra_qt/compatibility_list.cpp +++ b/src/lime_qt/compatibility_list.cpp @@ -4,7 +4,7 @@ #include #include -#include "citra_qt/compatibility_list.h" +#include "lime_qt/compatibility_list.h" CompatibilityList::const_iterator FindMatchingCompatibilityEntry( const CompatibilityList& compatibility_list, u64 program_id) { diff --git a/src/citra_qt/compatibility_list.h b/src/lime_qt/compatibility_list.h similarity index 100% rename from src/citra_qt/compatibility_list.h rename to src/lime_qt/compatibility_list.h diff --git a/src/citra_qt/configuration/config.cpp b/src/lime_qt/configuration/config.cpp similarity index 99% rename from src/citra_qt/configuration/config.cpp rename to src/lime_qt/configuration/config.cpp index 54c8c4f4b..424cdb37d 100644 --- a/src/citra_qt/configuration/config.cpp +++ b/src/lime_qt/configuration/config.cpp @@ -6,12 +6,12 @@ #include #include #include -#include "citra_qt/configuration/config.h" #include "common/file_util.h" #include "common/settings.h" #include "core/hle/service/service.h" #include "input_common/main.h" #include "input_common/udp/client.h" +#include "lime_qt/configuration/config.h" #include "network/network.h" #include "network/network_settings.h" diff --git a/src/citra_qt/configuration/config.h b/src/lime_qt/configuration/config.h similarity index 99% rename from src/citra_qt/configuration/config.h rename to src/lime_qt/configuration/config.h index 521c6baf9..5bb8ef3d9 100644 --- a/src/citra_qt/configuration/config.h +++ b/src/lime_qt/configuration/config.h @@ -8,8 +8,8 @@ #include #include #include -#include "citra_qt/uisettings.h" #include "common/settings.h" +#include "lime_qt/uisettings.h" class QSettings; diff --git a/src/citra_qt/configuration/configuration_shared.cpp b/src/lime_qt/configuration/configuration_shared.cpp similarity index 97% rename from src/citra_qt/configuration/configuration_shared.cpp rename to src/lime_qt/configuration/configuration_shared.cpp index e5039256a..819642a02 100644 --- a/src/citra_qt/configuration/configuration_shared.cpp +++ b/src/lime_qt/configuration/configuration_shared.cpp @@ -5,9 +5,9 @@ #include #include #include -#include "citra_qt/configuration/configuration_shared.h" -#include "citra_qt/configuration/configure_per_game.h" #include "common/settings.h" +#include "lime_qt/configuration/configuration_shared.h" +#include "lime_qt/configuration/configure_per_game.h" void ConfigurationShared::ApplyPerGameSetting(Settings::SwitchableSetting* setting, const QCheckBox* checkbox, diff --git a/src/citra_qt/configuration/configuration_shared.h b/src/lime_qt/configuration/configuration_shared.h similarity index 100% rename from src/citra_qt/configuration/configuration_shared.h rename to src/lime_qt/configuration/configuration_shared.h diff --git a/src/citra_qt/configuration/configure.ui b/src/lime_qt/configuration/configure.ui similarity index 100% rename from src/citra_qt/configuration/configure.ui rename to src/lime_qt/configuration/configure.ui diff --git a/src/citra_qt/configuration/configure_audio.cpp b/src/lime_qt/configuration/configure_audio.cpp similarity index 98% rename from src/citra_qt/configuration/configure_audio.cpp rename to src/lime_qt/configuration/configure_audio.cpp index bf301d41e..64b4bc1e4 100644 --- a/src/citra_qt/configuration/configure_audio.cpp +++ b/src/lime_qt/configuration/configure_audio.cpp @@ -7,9 +7,9 @@ #include "audio_core/input_details.h" #include "audio_core/sink.h" #include "audio_core/sink_details.h" -#include "citra_qt/configuration/configuration_shared.h" -#include "citra_qt/configuration/configure_audio.h" #include "common/settings.h" +#include "lime_qt/configuration/configuration_shared.h" +#include "lime_qt/configuration/configure_audio.h" #include "ui_configure_audio.h" #if defined(__APPLE__) diff --git a/src/citra_qt/configuration/configure_audio.h b/src/lime_qt/configuration/configure_audio.h similarity index 100% rename from src/citra_qt/configuration/configure_audio.h rename to src/lime_qt/configuration/configure_audio.h diff --git a/src/citra_qt/configuration/configure_audio.ui b/src/lime_qt/configuration/configure_audio.ui similarity index 100% rename from src/citra_qt/configuration/configure_audio.ui rename to src/lime_qt/configuration/configure_audio.ui diff --git a/src/citra_qt/configuration/configure_camera.cpp b/src/lime_qt/configuration/configure_camera.cpp similarity index 99% rename from src/citra_qt/configuration/configure_camera.cpp rename to src/lime_qt/configuration/configure_camera.cpp index 08368fe5c..79a54e7b0 100644 --- a/src/citra_qt/configuration/configure_camera.cpp +++ b/src/lime_qt/configuration/configure_camera.cpp @@ -9,10 +9,10 @@ #include #include #include -#include "citra_qt/configuration/configure_camera.h" #include "common/settings.h" #include "core/frontend/camera/factory.h" #include "core/hle/service/cam/cam.h" +#include "lime_qt/configuration/configure_camera.h" #include "ui_configure_camera.h" #if defined(__APPLE__) diff --git a/src/citra_qt/configuration/configure_camera.h b/src/lime_qt/configuration/configure_camera.h similarity index 100% rename from src/citra_qt/configuration/configure_camera.h rename to src/lime_qt/configuration/configure_camera.h diff --git a/src/citra_qt/configuration/configure_camera.ui b/src/lime_qt/configuration/configure_camera.ui similarity index 100% rename from src/citra_qt/configuration/configure_camera.ui rename to src/lime_qt/configuration/configure_camera.ui diff --git a/src/citra_qt/configuration/configure_cheats.cpp b/src/lime_qt/configuration/configure_cheats.cpp similarity index 100% rename from src/citra_qt/configuration/configure_cheats.cpp rename to src/lime_qt/configuration/configure_cheats.cpp diff --git a/src/citra_qt/configuration/configure_cheats.h b/src/lime_qt/configuration/configure_cheats.h similarity index 100% rename from src/citra_qt/configuration/configure_cheats.h rename to src/lime_qt/configuration/configure_cheats.h diff --git a/src/citra_qt/configuration/configure_cheats.ui b/src/lime_qt/configuration/configure_cheats.ui similarity index 100% rename from src/citra_qt/configuration/configure_cheats.ui rename to src/lime_qt/configuration/configure_cheats.ui diff --git a/src/citra_qt/configuration/configure_debug.cpp b/src/lime_qt/configuration/configure_debug.cpp similarity index 97% rename from src/citra_qt/configuration/configure_debug.cpp rename to src/lime_qt/configuration/configure_debug.cpp index 2386e2049..b3c038b43 100644 --- a/src/citra_qt/configuration/configure_debug.cpp +++ b/src/lime_qt/configuration/configure_debug.cpp @@ -5,13 +5,13 @@ #include #include #include -#include "citra_qt/configuration/configuration_shared.h" -#include "citra_qt/configuration/configure_debug.h" -#include "citra_qt/debugger/console.h" -#include "citra_qt/uisettings.h" #include "common/file_util.h" #include "common/logging/backend.h" #include "common/settings.h" +#include "lime_qt/configuration/configuration_shared.h" +#include "lime_qt/configuration/configure_debug.h" +#include "lime_qt/debugger/console.h" +#include "lime_qt/uisettings.h" #include "ui_configure_debug.h" #ifdef ENABLE_VULKAN #include "video_core/renderer_vulkan/vk_instance.h" diff --git a/src/citra_qt/configuration/configure_debug.h b/src/lime_qt/configuration/configure_debug.h similarity index 100% rename from src/citra_qt/configuration/configure_debug.h rename to src/lime_qt/configuration/configure_debug.h diff --git a/src/citra_qt/configuration/configure_debug.ui b/src/lime_qt/configuration/configure_debug.ui similarity index 100% rename from src/citra_qt/configuration/configure_debug.ui rename to src/lime_qt/configuration/configure_debug.ui diff --git a/src/citra_qt/configuration/configure_dialog.cpp b/src/lime_qt/configuration/configure_dialog.cpp similarity index 91% rename from src/citra_qt/configuration/configure_dialog.cpp rename to src/lime_qt/configuration/configure_dialog.cpp index 1644b657a..4e967ebb0 100644 --- a/src/citra_qt/configuration/configure_dialog.cpp +++ b/src/lime_qt/configuration/configure_dialog.cpp @@ -4,22 +4,22 @@ #include #include -#include "citra_qt/configuration/configure_audio.h" -#include "citra_qt/configuration/configure_camera.h" -#include "citra_qt/configuration/configure_debug.h" -#include "citra_qt/configuration/configure_dialog.h" -#include "citra_qt/configuration/configure_enhancements.h" -#include "citra_qt/configuration/configure_general.h" -#include "citra_qt/configuration/configure_graphics.h" -#include "citra_qt/configuration/configure_hotkeys.h" -#include "citra_qt/configuration/configure_input.h" -#include "citra_qt/configuration/configure_storage.h" -#include "citra_qt/configuration/configure_system.h" -#include "citra_qt/configuration/configure_ui.h" -#include "citra_qt/configuration/configure_web.h" -#include "citra_qt/hotkeys.h" #include "common/settings.h" #include "core/core.h" +#include "lime_qt/configuration/configure_audio.h" +#include "lime_qt/configuration/configure_camera.h" +#include "lime_qt/configuration/configure_debug.h" +#include "lime_qt/configuration/configure_dialog.h" +#include "lime_qt/configuration/configure_enhancements.h" +#include "lime_qt/configuration/configure_general.h" +#include "lime_qt/configuration/configure_graphics.h" +#include "lime_qt/configuration/configure_hotkeys.h" +#include "lime_qt/configuration/configure_input.h" +#include "lime_qt/configuration/configure_storage.h" +#include "lime_qt/configuration/configure_system.h" +#include "lime_qt/configuration/configure_ui.h" +#include "lime_qt/configuration/configure_web.h" +#include "lime_qt/hotkeys.h" #include "ui_configure.h" ConfigureDialog::ConfigureDialog(QWidget* parent, HotkeyRegistry& registry_, Core::System& system_, diff --git a/src/citra_qt/configuration/configure_dialog.h b/src/lime_qt/configuration/configure_dialog.h similarity index 100% rename from src/citra_qt/configuration/configure_dialog.h rename to src/lime_qt/configuration/configure_dialog.h diff --git a/src/citra_qt/configuration/configure_enhancements.cpp b/src/lime_qt/configuration/configure_enhancements.cpp similarity index 99% rename from src/citra_qt/configuration/configure_enhancements.cpp rename to src/lime_qt/configuration/configure_enhancements.cpp index e1a831eee..0d7162595 100644 --- a/src/citra_qt/configuration/configure_enhancements.cpp +++ b/src/lime_qt/configuration/configure_enhancements.cpp @@ -3,9 +3,9 @@ // Refer to the license.txt file included. #include -#include "citra_qt/configuration/configuration_shared.h" -#include "citra_qt/configuration/configure_enhancements.h" #include "common/settings.h" +#include "lime_qt/configuration/configuration_shared.h" +#include "lime_qt/configuration/configure_enhancements.h" #include "ui_configure_enhancements.h" #ifdef ENABLE_OPENGL #include "video_core/renderer_opengl/post_processing_opengl.h" diff --git a/src/citra_qt/configuration/configure_enhancements.h b/src/lime_qt/configuration/configure_enhancements.h similarity index 100% rename from src/citra_qt/configuration/configure_enhancements.h rename to src/lime_qt/configuration/configure_enhancements.h diff --git a/src/citra_qt/configuration/configure_enhancements.ui b/src/lime_qt/configuration/configure_enhancements.ui similarity index 100% rename from src/citra_qt/configuration/configure_enhancements.ui rename to src/lime_qt/configuration/configure_enhancements.ui diff --git a/src/citra_qt/configuration/configure_general.cpp b/src/lime_qt/configuration/configure_general.cpp similarity index 98% rename from src/citra_qt/configuration/configure_general.cpp rename to src/lime_qt/configuration/configure_general.cpp index a402523bf..370f05d02 100644 --- a/src/citra_qt/configuration/configure_general.cpp +++ b/src/lime_qt/configuration/configure_general.cpp @@ -6,11 +6,11 @@ #include #include #include -#include "citra_qt/configuration/configuration_shared.h" -#include "citra_qt/configuration/configure_general.h" -#include "citra_qt/uisettings.h" #include "common/file_util.h" #include "common/settings.h" +#include "lime_qt/configuration/configuration_shared.h" +#include "lime_qt/configuration/configure_general.h" +#include "lime_qt/uisettings.h" #include "ui_configure_general.h" // The QSlider doesn't have an easy way to set a custom step amount, diff --git a/src/citra_qt/configuration/configure_general.h b/src/lime_qt/configuration/configure_general.h similarity index 100% rename from src/citra_qt/configuration/configure_general.h rename to src/lime_qt/configuration/configure_general.h diff --git a/src/citra_qt/configuration/configure_general.ui b/src/lime_qt/configuration/configure_general.ui similarity index 100% rename from src/citra_qt/configuration/configure_general.ui rename to src/lime_qt/configuration/configure_general.ui diff --git a/src/citra_qt/configuration/configure_graphics.cpp b/src/lime_qt/configuration/configure_graphics.cpp similarity index 99% rename from src/citra_qt/configuration/configure_graphics.cpp rename to src/lime_qt/configuration/configure_graphics.cpp index 80c2d138d..ac440ab80 100644 --- a/src/citra_qt/configuration/configure_graphics.cpp +++ b/src/lime_qt/configuration/configure_graphics.cpp @@ -4,9 +4,9 @@ #include #include -#include "citra_qt/configuration/configuration_shared.h" -#include "citra_qt/configuration/configure_graphics.h" #include "common/settings.h" +#include "lime_qt/configuration/configuration_shared.h" +#include "lime_qt/configuration/configure_graphics.h" #include "ui_configure_graphics.h" #ifdef ENABLE_VULKAN #include "video_core/renderer_vulkan/vk_instance.h" diff --git a/src/citra_qt/configuration/configure_graphics.h b/src/lime_qt/configuration/configure_graphics.h similarity index 100% rename from src/citra_qt/configuration/configure_graphics.h rename to src/lime_qt/configuration/configure_graphics.h diff --git a/src/citra_qt/configuration/configure_graphics.ui b/src/lime_qt/configuration/configure_graphics.ui similarity index 100% rename from src/citra_qt/configuration/configure_graphics.ui rename to src/lime_qt/configuration/configure_graphics.ui diff --git a/src/citra_qt/configuration/configure_hotkeys.cpp b/src/lime_qt/configuration/configure_hotkeys.cpp similarity index 97% rename from src/citra_qt/configuration/configure_hotkeys.cpp rename to src/lime_qt/configuration/configure_hotkeys.cpp index b07370528..a65969c21 100644 --- a/src/citra_qt/configuration/configure_hotkeys.cpp +++ b/src/lime_qt/configuration/configure_hotkeys.cpp @@ -5,10 +5,10 @@ #include #include #include -#include "citra_qt/configuration/config.h" -#include "citra_qt/configuration/configure_hotkeys.h" -#include "citra_qt/hotkeys.h" -#include "citra_qt/util/sequence_dialog/sequence_dialog.h" +#include "lime_qt/configuration/config.h" +#include "lime_qt/configuration/configure_hotkeys.h" +#include "lime_qt/hotkeys.h" +#include "lime_qt/util/sequence_dialog/sequence_dialog.h" #include "ui_configure_hotkeys.h" constexpr int name_column = 0; diff --git a/src/citra_qt/configuration/configure_hotkeys.h b/src/lime_qt/configuration/configure_hotkeys.h similarity index 100% rename from src/citra_qt/configuration/configure_hotkeys.h rename to src/lime_qt/configuration/configure_hotkeys.h diff --git a/src/citra_qt/configuration/configure_hotkeys.ui b/src/lime_qt/configuration/configure_hotkeys.ui similarity index 100% rename from src/citra_qt/configuration/configure_hotkeys.ui rename to src/lime_qt/configuration/configure_hotkeys.ui diff --git a/src/citra_qt/configuration/configure_input.cpp b/src/lime_qt/configuration/configure_input.cpp similarity index 99% rename from src/citra_qt/configuration/configure_input.cpp rename to src/lime_qt/configuration/configure_input.cpp index da98da0d0..754bd3999 100644 --- a/src/citra_qt/configuration/configure_input.cpp +++ b/src/lime_qt/configuration/configure_input.cpp @@ -12,10 +12,10 @@ #include #include #include -#include "citra_qt/configuration/config.h" -#include "citra_qt/configuration/configure_input.h" -#include "citra_qt/configuration/configure_motion_touch.h" #include "common/param_package.h" +#include "lime_qt/configuration/config.h" +#include "lime_qt/configuration/configure_input.h" +#include "lime_qt/configuration/configure_motion_touch.h" #include "ui_configure_input.h" const std::array diff --git a/src/citra_qt/configuration/configure_input.h b/src/lime_qt/configuration/configure_input.h similarity index 100% rename from src/citra_qt/configuration/configure_input.h rename to src/lime_qt/configuration/configure_input.h diff --git a/src/citra_qt/configuration/configure_input.ui b/src/lime_qt/configuration/configure_input.ui similarity index 100% rename from src/citra_qt/configuration/configure_input.ui rename to src/lime_qt/configuration/configure_input.ui diff --git a/src/citra_qt/configuration/configure_motion_touch.cpp b/src/lime_qt/configuration/configure_motion_touch.cpp similarity index 99% rename from src/citra_qt/configuration/configure_motion_touch.cpp rename to src/lime_qt/configuration/configure_motion_touch.cpp index 3bfbba71d..5feca6009 100644 --- a/src/citra_qt/configuration/configure_motion_touch.cpp +++ b/src/lime_qt/configuration/configure_motion_touch.cpp @@ -9,10 +9,10 @@ #include #include #include -#include "citra_qt/configuration/configure_motion_touch.h" -#include "citra_qt/configuration/configure_touch_from_button.h" #include "common/logging/log.h" #include "input_common/main.h" +#include "lime_qt/configuration/configure_motion_touch.h" +#include "lime_qt/configuration/configure_touch_from_button.h" #include "ui_configure_motion_touch.h" CalibrationConfigurationDialog::CalibrationConfigurationDialog(QWidget* parent, diff --git a/src/citra_qt/configuration/configure_motion_touch.h b/src/lime_qt/configuration/configure_motion_touch.h similarity index 100% rename from src/citra_qt/configuration/configure_motion_touch.h rename to src/lime_qt/configuration/configure_motion_touch.h diff --git a/src/citra_qt/configuration/configure_motion_touch.ui b/src/lime_qt/configuration/configure_motion_touch.ui similarity index 100% rename from src/citra_qt/configuration/configure_motion_touch.ui rename to src/lime_qt/configuration/configure_motion_touch.ui diff --git a/src/citra_qt/configuration/configure_per_game.cpp b/src/lime_qt/configuration/configure_per_game.cpp similarity index 92% rename from src/citra_qt/configuration/configure_per_game.cpp rename to src/lime_qt/configuration/configure_per_game.cpp index c11847a0d..c77c185ac 100644 --- a/src/citra_qt/configuration/configure_per_game.cpp +++ b/src/lime_qt/configuration/configure_per_game.cpp @@ -7,20 +7,20 @@ #include #include #include -#include "citra_qt/configuration/config.h" -#include "citra_qt/configuration/configure_audio.h" -#include "citra_qt/configuration/configure_cheats.h" -#include "citra_qt/configuration/configure_debug.h" -#include "citra_qt/configuration/configure_enhancements.h" -#include "citra_qt/configuration/configure_general.h" -#include "citra_qt/configuration/configure_graphics.h" -#include "citra_qt/configuration/configure_per_game.h" -#include "citra_qt/configuration/configure_system.h" -#include "citra_qt/util/util.h" #include "common/file_util.h" #include "core/core.h" #include "core/loader/loader.h" #include "core/loader/smdh.h" +#include "lime_qt/configuration/config.h" +#include "lime_qt/configuration/configure_audio.h" +#include "lime_qt/configuration/configure_cheats.h" +#include "lime_qt/configuration/configure_debug.h" +#include "lime_qt/configuration/configure_enhancements.h" +#include "lime_qt/configuration/configure_general.h" +#include "lime_qt/configuration/configure_graphics.h" +#include "lime_qt/configuration/configure_per_game.h" +#include "lime_qt/configuration/configure_system.h" +#include "lime_qt/util/util.h" #include "ui_configure_per_game.h" ConfigurePerGame::ConfigurePerGame(QWidget* parent, u64 title_id_, const QString& file_name, diff --git a/src/citra_qt/configuration/configure_per_game.h b/src/lime_qt/configuration/configure_per_game.h similarity index 97% rename from src/citra_qt/configuration/configure_per_game.h rename to src/lime_qt/configuration/configure_per_game.h index 8f8c757fd..358eaeef5 100644 --- a/src/citra_qt/configuration/configure_per_game.h +++ b/src/lime_qt/configuration/configure_per_game.h @@ -9,7 +9,7 @@ #include #include #include -#include "citra_qt/configuration/config.h" +#include "lime_qt/configuration/config.h" namespace Core { class System; diff --git a/src/citra_qt/configuration/configure_per_game.ui b/src/lime_qt/configuration/configure_per_game.ui similarity index 100% rename from src/citra_qt/configuration/configure_per_game.ui rename to src/lime_qt/configuration/configure_per_game.ui diff --git a/src/citra_qt/configuration/configure_storage.cpp b/src/lime_qt/configuration/configure_storage.cpp similarity index 98% rename from src/citra_qt/configuration/configure_storage.cpp rename to src/lime_qt/configuration/configure_storage.cpp index d46cb0614..206912b95 100644 --- a/src/citra_qt/configuration/configure_storage.cpp +++ b/src/lime_qt/configuration/configure_storage.cpp @@ -5,9 +5,9 @@ #include #include #include -#include "citra_qt/configuration/configure_storage.h" #include "common/file_util.h" #include "common/settings.h" +#include "lime_qt/configuration/configure_storage.h" #include "ui_configure_storage.h" ConfigureStorage::ConfigureStorage(bool is_powered_on_, QWidget* parent) diff --git a/src/citra_qt/configuration/configure_storage.h b/src/lime_qt/configuration/configure_storage.h similarity index 100% rename from src/citra_qt/configuration/configure_storage.h rename to src/lime_qt/configuration/configure_storage.h diff --git a/src/citra_qt/configuration/configure_storage.ui b/src/lime_qt/configuration/configure_storage.ui similarity index 100% rename from src/citra_qt/configuration/configure_storage.ui rename to src/lime_qt/configuration/configure_storage.ui diff --git a/src/citra_qt/configuration/configure_system.cpp b/src/lime_qt/configuration/configure_system.cpp similarity index 99% rename from src/citra_qt/configuration/configure_system.cpp rename to src/lime_qt/configuration/configure_system.cpp index 849a86004..8f81d6098 100644 --- a/src/citra_qt/configuration/configure_system.cpp +++ b/src/lime_qt/configuration/configure_system.cpp @@ -7,8 +7,6 @@ #include #include #include -#include "citra_qt/configuration/configuration_shared.h" -#include "citra_qt/configuration/configure_system.h" #include "common/settings.h" #include "core/core.h" #include "core/hle/service/am/am.h" @@ -16,6 +14,8 @@ #include "core/hle/service/ptm/ptm.h" #include "core/hw/aes/key.h" #include "core/system_titles.h" +#include "lime_qt/configuration/configuration_shared.h" +#include "lime_qt/configuration/configure_system.h" #include "ui_configure_system.h" static const std::array days_in_month = {{ diff --git a/src/citra_qt/configuration/configure_system.h b/src/lime_qt/configuration/configure_system.h similarity index 100% rename from src/citra_qt/configuration/configure_system.h rename to src/lime_qt/configuration/configure_system.h diff --git a/src/citra_qt/configuration/configure_system.ui b/src/lime_qt/configuration/configure_system.ui similarity index 100% rename from src/citra_qt/configuration/configure_system.ui rename to src/lime_qt/configuration/configure_system.ui diff --git a/src/citra_qt/configuration/configure_touch_from_button.cpp b/src/lime_qt/configuration/configure_touch_from_button.cpp similarity index 99% rename from src/citra_qt/configuration/configure_touch_from_button.cpp rename to src/lime_qt/configuration/configure_touch_from_button.cpp index 76f2a77bc..fd1846f1e 100644 --- a/src/citra_qt/configuration/configure_touch_from_button.cpp +++ b/src/lime_qt/configuration/configure_touch_from_button.cpp @@ -9,11 +9,11 @@ #include #include #include -#include "citra_qt/configuration/configure_touch_from_button.h" -#include "citra_qt/configuration/configure_touch_widget.h" #include "common/param_package.h" #include "core/3ds.h" #include "input_common/main.h" +#include "lime_qt/configuration/configure_touch_from_button.h" +#include "lime_qt/configuration/configure_touch_widget.h" #include "ui_configure_touch_from_button.h" static QString GetKeyName(int key_code) { diff --git a/src/citra_qt/configuration/configure_touch_from_button.h b/src/lime_qt/configuration/configure_touch_from_button.h similarity index 100% rename from src/citra_qt/configuration/configure_touch_from_button.h rename to src/lime_qt/configuration/configure_touch_from_button.h diff --git a/src/citra_qt/configuration/configure_touch_from_button.ui b/src/lime_qt/configuration/configure_touch_from_button.ui similarity index 98% rename from src/citra_qt/configuration/configure_touch_from_button.ui rename to src/lime_qt/configuration/configure_touch_from_button.ui index d0598bdbd..4c046eecd 100644 --- a/src/citra_qt/configuration/configure_touch_from_button.ui +++ b/src/lime_qt/configuration/configure_touch_from_button.ui @@ -205,7 +205,7 @@ Drag points to change position, or double-click table cells to edit values. TouchScreenPreview QFrame -
citra_qt/configuration/configure_touch_widget.h
+
lime_qt/configuration/configure_touch_widget.h
1 diff --git a/src/citra_qt/configuration/configure_touch_widget.h b/src/lime_qt/configuration/configure_touch_widget.h similarity index 100% rename from src/citra_qt/configuration/configure_touch_widget.h rename to src/lime_qt/configuration/configure_touch_widget.h diff --git a/src/citra_qt/configuration/configure_ui.cpp b/src/lime_qt/configuration/configure_ui.cpp similarity index 97% rename from src/citra_qt/configuration/configure_ui.cpp rename to src/lime_qt/configuration/configure_ui.cpp index f13fc41b8..f6985ff31 100644 --- a/src/citra_qt/configuration/configure_ui.cpp +++ b/src/lime_qt/configuration/configure_ui.cpp @@ -3,8 +3,8 @@ // Refer to the license.txt file included. #include -#include "citra_qt/configuration/configure_ui.h" -#include "citra_qt/uisettings.h" +#include "lime_qt/configuration/configure_ui.h" +#include "lime_qt/uisettings.h" #include "ui_configure_ui.h" ConfigureUi::ConfigureUi(QWidget* parent) diff --git a/src/citra_qt/configuration/configure_ui.h b/src/lime_qt/configuration/configure_ui.h similarity index 100% rename from src/citra_qt/configuration/configure_ui.h rename to src/lime_qt/configuration/configure_ui.h diff --git a/src/citra_qt/configuration/configure_ui.ui b/src/lime_qt/configuration/configure_ui.ui similarity index 100% rename from src/citra_qt/configuration/configure_ui.ui rename to src/lime_qt/configuration/configure_ui.ui diff --git a/src/citra_qt/configuration/configure_web.cpp b/src/lime_qt/configuration/configure_web.cpp similarity index 98% rename from src/citra_qt/configuration/configure_web.cpp rename to src/lime_qt/configuration/configure_web.cpp index b9a15b6ec..da4796382 100644 --- a/src/citra_qt/configuration/configure_web.cpp +++ b/src/lime_qt/configuration/configure_web.cpp @@ -5,9 +5,9 @@ #include #include #include -#include "citra_qt/configuration/configure_web.h" -#include "citra_qt/uisettings.h" #include "core/telemetry_session.h" +#include "lime_qt/configuration/configure_web.h" +#include "lime_qt/uisettings.h" #include "network/network_settings.h" #include "ui_configure_web.h" diff --git a/src/citra_qt/configuration/configure_web.h b/src/lime_qt/configuration/configure_web.h similarity index 100% rename from src/citra_qt/configuration/configure_web.h rename to src/lime_qt/configuration/configure_web.h diff --git a/src/citra_qt/configuration/configure_web.ui b/src/lime_qt/configuration/configure_web.ui similarity index 100% rename from src/citra_qt/configuration/configure_web.ui rename to src/lime_qt/configuration/configure_web.ui diff --git a/src/citra_qt/debugger/console.cpp b/src/lime_qt/debugger/console.cpp similarity index 95% rename from src/citra_qt/debugger/console.cpp rename to src/lime_qt/debugger/console.cpp index 8187b0b1d..4e6423578 100644 --- a/src/citra_qt/debugger/console.cpp +++ b/src/lime_qt/debugger/console.cpp @@ -8,9 +8,9 @@ #include #endif -#include "citra_qt/debugger/console.h" -#include "citra_qt/uisettings.h" #include "common/logging/backend.h" +#include "lime_qt/debugger/console.h" +#include "lime_qt/uisettings.h" namespace Debugger { void ToggleConsole() { diff --git a/src/citra_qt/debugger/console.h b/src/lime_qt/debugger/console.h similarity index 100% rename from src/citra_qt/debugger/console.h rename to src/lime_qt/debugger/console.h diff --git a/src/citra_qt/debugger/graphics/graphics.cpp b/src/lime_qt/debugger/graphics/graphics.cpp similarity index 97% rename from src/citra_qt/debugger/graphics/graphics.cpp rename to src/lime_qt/debugger/graphics/graphics.cpp index 021e1c720..286716195 100644 --- a/src/citra_qt/debugger/graphics/graphics.cpp +++ b/src/lime_qt/debugger/graphics/graphics.cpp @@ -3,9 +3,9 @@ // Refer to the license.txt file included. #include -#include "citra_qt/debugger/graphics/graphics.h" -#include "citra_qt/util/util.h" #include "core/core.h" +#include "lime_qt/debugger/graphics/graphics.h" +#include "lime_qt/util/util.h" #include "video_core/gpu.h" GPUCommandStreamItemModel::GPUCommandStreamItemModel(QObject* parent) diff --git a/src/citra_qt/debugger/graphics/graphics.h b/src/lime_qt/debugger/graphics/graphics.h similarity index 100% rename from src/citra_qt/debugger/graphics/graphics.h rename to src/lime_qt/debugger/graphics/graphics.h diff --git a/src/citra_qt/debugger/graphics/graphics_breakpoint_observer.cpp b/src/lime_qt/debugger/graphics/graphics_breakpoint_observer.cpp similarity index 94% rename from src/citra_qt/debugger/graphics/graphics_breakpoint_observer.cpp rename to src/lime_qt/debugger/graphics/graphics_breakpoint_observer.cpp index 5d4327610..eec74cde1 100644 --- a/src/citra_qt/debugger/graphics/graphics_breakpoint_observer.cpp +++ b/src/lime_qt/debugger/graphics/graphics_breakpoint_observer.cpp @@ -3,7 +3,7 @@ // Refer to the license.txt file included. #include -#include "citra_qt/debugger/graphics/graphics_breakpoint_observer.h" +#include "lime_qt/debugger/graphics/graphics_breakpoint_observer.h" BreakPointObserverDock::BreakPointObserverDock(std::shared_ptr debug_context, const QString& title, QWidget* parent) diff --git a/src/citra_qt/debugger/graphics/graphics_breakpoint_observer.h b/src/lime_qt/debugger/graphics/graphics_breakpoint_observer.h similarity index 100% rename from src/citra_qt/debugger/graphics/graphics_breakpoint_observer.h rename to src/lime_qt/debugger/graphics/graphics_breakpoint_observer.h diff --git a/src/citra_qt/debugger/graphics/graphics_breakpoints.cpp b/src/lime_qt/debugger/graphics/graphics_breakpoints.cpp similarity index 98% rename from src/citra_qt/debugger/graphics/graphics_breakpoints.cpp rename to src/lime_qt/debugger/graphics/graphics_breakpoints.cpp index 9835b514e..98208b6a2 100644 --- a/src/citra_qt/debugger/graphics/graphics_breakpoints.cpp +++ b/src/lime_qt/debugger/graphics/graphics_breakpoints.cpp @@ -7,8 +7,8 @@ #include #include #include -#include "citra_qt/debugger/graphics/graphics_breakpoints.h" -#include "citra_qt/debugger/graphics/graphics_breakpoints_p.h" +#include "lime_qt/debugger/graphics/graphics_breakpoints.h" +#include "lime_qt/debugger/graphics/graphics_breakpoints_p.h" BreakPointModel::BreakPointModel(std::shared_ptr debug_context, QObject* parent) : QAbstractListModel(parent), context_weak(debug_context), diff --git a/src/citra_qt/debugger/graphics/graphics_breakpoints.h b/src/lime_qt/debugger/graphics/graphics_breakpoints.h similarity index 100% rename from src/citra_qt/debugger/graphics/graphics_breakpoints.h rename to src/lime_qt/debugger/graphics/graphics_breakpoints.h diff --git a/src/citra_qt/debugger/graphics/graphics_breakpoints_p.h b/src/lime_qt/debugger/graphics/graphics_breakpoints_p.h similarity index 100% rename from src/citra_qt/debugger/graphics/graphics_breakpoints_p.h rename to src/lime_qt/debugger/graphics/graphics_breakpoints_p.h diff --git a/src/citra_qt/debugger/graphics/graphics_cmdlists.cpp b/src/lime_qt/debugger/graphics/graphics_cmdlists.cpp similarity index 98% rename from src/citra_qt/debugger/graphics/graphics_cmdlists.cpp rename to src/lime_qt/debugger/graphics/graphics_cmdlists.cpp index 94a66120f..e76969ad8 100644 --- a/src/citra_qt/debugger/graphics/graphics_cmdlists.cpp +++ b/src/lime_qt/debugger/graphics/graphics_cmdlists.cpp @@ -13,11 +13,11 @@ #include #include #include -#include "citra_qt/debugger/graphics/graphics_cmdlists.h" -#include "citra_qt/util/util.h" #include "common/vector_math.h" #include "core/core.h" #include "core/memory.h" +#include "lime_qt/debugger/graphics/graphics_cmdlists.h" +#include "lime_qt/util/util.h" #include "video_core/debug_utils/debug_utils.h" #include "video_core/gpu.h" #include "video_core/pica/pica_core.h" diff --git a/src/citra_qt/debugger/graphics/graphics_cmdlists.h b/src/lime_qt/debugger/graphics/graphics_cmdlists.h similarity index 100% rename from src/citra_qt/debugger/graphics/graphics_cmdlists.h rename to src/lime_qt/debugger/graphics/graphics_cmdlists.h diff --git a/src/citra_qt/debugger/graphics/graphics_surface.cpp b/src/lime_qt/debugger/graphics/graphics_surface.cpp similarity index 99% rename from src/citra_qt/debugger/graphics/graphics_surface.cpp rename to src/lime_qt/debugger/graphics/graphics_surface.cpp index 4983d2475..f21b26bbb 100644 --- a/src/citra_qt/debugger/graphics/graphics_surface.cpp +++ b/src/lime_qt/debugger/graphics/graphics_surface.cpp @@ -12,11 +12,11 @@ #include #include #include -#include "citra_qt/debugger/graphics/graphics_surface.h" -#include "citra_qt/util/spinbox.h" #include "common/color.h" #include "core/core.h" #include "core/memory.h" +#include "lime_qt/debugger/graphics/graphics_surface.h" +#include "lime_qt/util/spinbox.h" #include "video_core/gpu.h" #include "video_core/pica/pica_core.h" #include "video_core/texture/texture_decode.h" diff --git a/src/citra_qt/debugger/graphics/graphics_surface.h b/src/lime_qt/debugger/graphics/graphics_surface.h similarity index 97% rename from src/citra_qt/debugger/graphics/graphics_surface.h rename to src/lime_qt/debugger/graphics/graphics_surface.h index e5dbc30ec..57e0a2df8 100644 --- a/src/citra_qt/debugger/graphics/graphics_surface.h +++ b/src/lime_qt/debugger/graphics/graphics_surface.h @@ -6,7 +6,7 @@ #include #include -#include "citra_qt/debugger/graphics/graphics_breakpoint_observer.h" +#include "lime_qt/debugger/graphics/graphics_breakpoint_observer.h" class QComboBox; class QSpinBox; diff --git a/src/citra_qt/debugger/graphics/graphics_tracing.cpp b/src/lime_qt/debugger/graphics/graphics_tracing.cpp similarity index 99% rename from src/citra_qt/debugger/graphics/graphics_tracing.cpp rename to src/lime_qt/debugger/graphics/graphics_tracing.cpp index e78acb096..5725491cc 100644 --- a/src/citra_qt/debugger/graphics/graphics_tracing.cpp +++ b/src/lime_qt/debugger/graphics/graphics_tracing.cpp @@ -12,10 +12,10 @@ #include #include #include -#include "citra_qt/debugger/graphics/graphics_tracing.h" #include "common/common_types.h" #include "core/core.h" #include "core/tracer/recorder.h" +#include "lime_qt/debugger/graphics/graphics_tracing.h" #include "video_core/gpu.h" #include "video_core/pica/pica_core.h" diff --git a/src/citra_qt/debugger/graphics/graphics_tracing.h b/src/lime_qt/debugger/graphics/graphics_tracing.h similarity index 93% rename from src/citra_qt/debugger/graphics/graphics_tracing.h rename to src/lime_qt/debugger/graphics/graphics_tracing.h index 658f3ad0c..9d6150d84 100644 --- a/src/citra_qt/debugger/graphics/graphics_tracing.h +++ b/src/lime_qt/debugger/graphics/graphics_tracing.h @@ -4,7 +4,7 @@ #pragma once -#include "citra_qt/debugger/graphics/graphics_breakpoint_observer.h" +#include "lime_qt/debugger/graphics/graphics_breakpoint_observer.h" namespace Core { class System; diff --git a/src/citra_qt/debugger/graphics/graphics_vertex_shader.cpp b/src/lime_qt/debugger/graphics/graphics_vertex_shader.cpp similarity index 99% rename from src/citra_qt/debugger/graphics/graphics_vertex_shader.cpp rename to src/lime_qt/debugger/graphics/graphics_vertex_shader.cpp index 46f8ec5cf..7027e9d86 100644 --- a/src/citra_qt/debugger/graphics/graphics_vertex_shader.cpp +++ b/src/lime_qt/debugger/graphics/graphics_vertex_shader.cpp @@ -14,9 +14,9 @@ #include #include #include -#include "citra_qt/debugger/graphics/graphics_vertex_shader.h" -#include "citra_qt/util/util.h" #include "core/core.h" +#include "lime_qt/debugger/graphics/graphics_vertex_shader.h" +#include "lime_qt/util/util.h" #include "video_core/gpu.h" #include "video_core/pica/pica_core.h" #include "video_core/shader/shader_interpreter.h" diff --git a/src/citra_qt/debugger/graphics/graphics_vertex_shader.h b/src/lime_qt/debugger/graphics/graphics_vertex_shader.h similarity index 97% rename from src/citra_qt/debugger/graphics/graphics_vertex_shader.h rename to src/lime_qt/debugger/graphics/graphics_vertex_shader.h index 29577bf44..02ddfa029 100644 --- a/src/citra_qt/debugger/graphics/graphics_vertex_shader.h +++ b/src/lime_qt/debugger/graphics/graphics_vertex_shader.h @@ -7,7 +7,7 @@ #include #include #include -#include "citra_qt/debugger/graphics/graphics_breakpoint_observer.h" +#include "lime_qt/debugger/graphics/graphics_breakpoint_observer.h" #include "video_core/pica/output_vertex.h" #include "video_core/shader/debug_data.h" diff --git a/src/citra_qt/debugger/ipc/record_dialog.cpp b/src/lime_qt/debugger/ipc/record_dialog.cpp similarity index 97% rename from src/citra_qt/debugger/ipc/record_dialog.cpp rename to src/lime_qt/debugger/ipc/record_dialog.cpp index d4668a33d..36dc6f129 100644 --- a/src/citra_qt/debugger/ipc/record_dialog.cpp +++ b/src/lime_qt/debugger/ipc/record_dialog.cpp @@ -3,9 +3,9 @@ // Refer to the license.txt file included. #include -#include "citra_qt/debugger/ipc/record_dialog.h" #include "common/assert.h" #include "core/hle/kernel/ipc_debugger/recorder.h" +#include "lime_qt/debugger/ipc/record_dialog.h" #include "ui_record_dialog.h" QString RecordDialog::FormatObject(const IPCDebugger::ObjectInfo& object) const { diff --git a/src/citra_qt/debugger/ipc/record_dialog.h b/src/lime_qt/debugger/ipc/record_dialog.h similarity index 100% rename from src/citra_qt/debugger/ipc/record_dialog.h rename to src/lime_qt/debugger/ipc/record_dialog.h diff --git a/src/citra_qt/debugger/ipc/record_dialog.ui b/src/lime_qt/debugger/ipc/record_dialog.ui similarity index 100% rename from src/citra_qt/debugger/ipc/record_dialog.ui rename to src/lime_qt/debugger/ipc/record_dialog.ui diff --git a/src/citra_qt/debugger/ipc/recorder.cpp b/src/lime_qt/debugger/ipc/recorder.cpp similarity index 98% rename from src/citra_qt/debugger/ipc/recorder.cpp rename to src/lime_qt/debugger/ipc/recorder.cpp index ad588d91c..1ca4ab9e0 100644 --- a/src/citra_qt/debugger/ipc/recorder.cpp +++ b/src/lime_qt/debugger/ipc/recorder.cpp @@ -6,14 +6,14 @@ #include #include #include -#include "citra_qt/debugger/ipc/record_dialog.h" -#include "citra_qt/debugger/ipc/recorder.h" #include "common/assert.h" #include "common/string_util.h" #include "core/core.h" #include "core/hle/kernel/ipc_debugger/recorder.h" #include "core/hle/kernel/kernel.h" #include "core/hle/service/sm/sm.h" +#include "lime_qt/debugger/ipc/record_dialog.h" +#include "lime_qt/debugger/ipc/recorder.h" #include "ui_recorder.h" IPCRecorderWidget::IPCRecorderWidget(Core::System& system_, QWidget* parent) diff --git a/src/citra_qt/debugger/ipc/recorder.h b/src/lime_qt/debugger/ipc/recorder.h similarity index 100% rename from src/citra_qt/debugger/ipc/recorder.h rename to src/lime_qt/debugger/ipc/recorder.h diff --git a/src/citra_qt/debugger/ipc/recorder.ui b/src/lime_qt/debugger/ipc/recorder.ui similarity index 100% rename from src/citra_qt/debugger/ipc/recorder.ui rename to src/lime_qt/debugger/ipc/recorder.ui diff --git a/src/citra_qt/debugger/lle_service_modules.cpp b/src/lime_qt/debugger/lle_service_modules.cpp similarity index 96% rename from src/citra_qt/debugger/lle_service_modules.cpp rename to src/lime_qt/debugger/lle_service_modules.cpp index 508381326..3a31ac59f 100644 --- a/src/citra_qt/debugger/lle_service_modules.cpp +++ b/src/lime_qt/debugger/lle_service_modules.cpp @@ -6,8 +6,8 @@ #include #include #include -#include "citra_qt/debugger/lle_service_modules.h" #include "common/settings.h" +#include "lime_qt/debugger/lle_service_modules.h" LLEServiceModulesWidget::LLEServiceModulesWidget(QWidget* parent) : QDockWidget(tr("Toggle LLE Service Modules"), parent) { diff --git a/src/citra_qt/debugger/lle_service_modules.h b/src/lime_qt/debugger/lle_service_modules.h similarity index 100% rename from src/citra_qt/debugger/lle_service_modules.h rename to src/lime_qt/debugger/lle_service_modules.h diff --git a/src/citra_qt/debugger/profiler.cpp b/src/lime_qt/debugger/profiler.cpp similarity index 99% rename from src/citra_qt/debugger/profiler.cpp rename to src/lime_qt/debugger/profiler.cpp index dbeade3cd..0de38ce05 100644 --- a/src/citra_qt/debugger/profiler.cpp +++ b/src/lime_qt/debugger/profiler.cpp @@ -8,10 +8,10 @@ #include #include #include -#include "citra_qt/debugger/profiler.h" -#include "citra_qt/util/util.h" #include "common/common_types.h" #include "common/microprofile.h" +#include "lime_qt/debugger/profiler.h" +#include "lime_qt/util/util.h" // Include the implementation of the UI in this file. This isn't in microprofile.cpp because the // non-Qt frontends don't need it (and don't implement the UI drawing hooks either). diff --git a/src/citra_qt/debugger/profiler.h b/src/lime_qt/debugger/profiler.h similarity index 100% rename from src/citra_qt/debugger/profiler.h rename to src/lime_qt/debugger/profiler.h diff --git a/src/citra_qt/debugger/registers.cpp b/src/lime_qt/debugger/registers.cpp similarity index 99% rename from src/citra_qt/debugger/registers.cpp rename to src/lime_qt/debugger/registers.cpp index 872146cc8..0cf803614 100644 --- a/src/citra_qt/debugger/registers.cpp +++ b/src/lime_qt/debugger/registers.cpp @@ -3,10 +3,10 @@ // Refer to the license.txt file included. #include -#include "citra_qt/debugger/registers.h" -#include "citra_qt/util/util.h" #include "core/arm/arm_interface.h" #include "core/core.h" +#include "lime_qt/debugger/registers.h" +#include "lime_qt/util/util.h" #include "ui_registers.h" RegistersWidget::RegistersWidget(const Core::System& system_, QWidget* parent) diff --git a/src/citra_qt/debugger/registers.h b/src/lime_qt/debugger/registers.h similarity index 100% rename from src/citra_qt/debugger/registers.h rename to src/lime_qt/debugger/registers.h diff --git a/src/citra_qt/debugger/registers.ui b/src/lime_qt/debugger/registers.ui similarity index 100% rename from src/citra_qt/debugger/registers.ui rename to src/lime_qt/debugger/registers.ui diff --git a/src/citra_qt/debugger/wait_tree.cpp b/src/lime_qt/debugger/wait_tree.cpp similarity index 99% rename from src/citra_qt/debugger/wait_tree.cpp rename to src/lime_qt/debugger/wait_tree.cpp index 1a2acece3..8fd38348e 100644 --- a/src/citra_qt/debugger/wait_tree.cpp +++ b/src/lime_qt/debugger/wait_tree.cpp @@ -3,8 +3,6 @@ // Refer to the license.txt file included. #include -#include "citra_qt/debugger/wait_tree.h" -#include "citra_qt/uisettings.h" #include "common/assert.h" #include "core/hle/kernel/event.h" #include "core/hle/kernel/mutex.h" @@ -13,6 +11,8 @@ #include "core/hle/kernel/thread.h" #include "core/hle/kernel/timer.h" #include "core/hle/kernel/wait_object.h" +#include "lime_qt/debugger/wait_tree.h" +#include "lime_qt/uisettings.h" namespace { diff --git a/src/citra_qt/debugger/wait_tree.h b/src/lime_qt/debugger/wait_tree.h similarity index 100% rename from src/citra_qt/debugger/wait_tree.h rename to src/lime_qt/debugger/wait_tree.h diff --git a/src/citra_qt/discord.h b/src/lime_qt/discord.h similarity index 100% rename from src/citra_qt/discord.h rename to src/lime_qt/discord.h diff --git a/src/citra_qt/discord_impl.cpp b/src/lime_qt/discord_impl.cpp similarity index 95% rename from src/citra_qt/discord_impl.cpp rename to src/lime_qt/discord_impl.cpp index 18a52272c..297a653ad 100644 --- a/src/citra_qt/discord_impl.cpp +++ b/src/lime_qt/discord_impl.cpp @@ -5,11 +5,11 @@ #include #include #include -#include "citra_qt/discord_impl.h" -#include "citra_qt/uisettings.h" #include "common/common_types.h" #include "core/core.h" #include "core/loader/loader.h" +#include "lime_qt/discord_impl.h" +#include "lime_qt/uisettings.h" namespace DiscordRPC { diff --git a/src/citra_qt/discord_impl.h b/src/lime_qt/discord_impl.h similarity index 93% rename from src/citra_qt/discord_impl.h rename to src/lime_qt/discord_impl.h index 25bee0696..77786082b 100644 --- a/src/citra_qt/discord_impl.h +++ b/src/lime_qt/discord_impl.h @@ -4,7 +4,7 @@ #pragma once -#include "citra_qt/discord.h" +#include "lime_qt/discord.h" namespace Core { class System; diff --git a/src/citra_qt/dumping/dumping_dialog.cpp b/src/lime_qt/dumping/dumping_dialog.cpp similarity index 98% rename from src/citra_qt/dumping/dumping_dialog.cpp rename to src/lime_qt/dumping/dumping_dialog.cpp index cd05d87d9..19de96f5f 100644 --- a/src/citra_qt/dumping/dumping_dialog.cpp +++ b/src/lime_qt/dumping/dumping_dialog.cpp @@ -4,11 +4,11 @@ #include #include -#include "citra_qt/dumping/dumping_dialog.h" -#include "citra_qt/dumping/options_dialog.h" -#include "citra_qt/uisettings.h" #include "common/settings.h" #include "core/core.h" +#include "lime_qt/dumping/dumping_dialog.h" +#include "lime_qt/dumping/options_dialog.h" +#include "lime_qt/uisettings.h" #include "ui_dumping_dialog.h" DumpingDialog::DumpingDialog(QWidget* parent, Core::System& system_) diff --git a/src/citra_qt/dumping/dumping_dialog.h b/src/lime_qt/dumping/dumping_dialog.h similarity index 100% rename from src/citra_qt/dumping/dumping_dialog.h rename to src/lime_qt/dumping/dumping_dialog.h diff --git a/src/citra_qt/dumping/dumping_dialog.ui b/src/lime_qt/dumping/dumping_dialog.ui similarity index 100% rename from src/citra_qt/dumping/dumping_dialog.ui rename to src/lime_qt/dumping/dumping_dialog.ui diff --git a/src/citra_qt/dumping/option_set_dialog.cpp b/src/lime_qt/dumping/option_set_dialog.cpp similarity index 99% rename from src/citra_qt/dumping/option_set_dialog.cpp rename to src/lime_qt/dumping/option_set_dialog.cpp index f6d6e4af7..47e9b8fdf 100644 --- a/src/citra_qt/dumping/option_set_dialog.cpp +++ b/src/lime_qt/dumping/option_set_dialog.cpp @@ -5,9 +5,9 @@ #include #include #include -#include "citra_qt/dumping/option_set_dialog.h" #include "common/logging/log.h" #include "common/string_util.h" +#include "lime_qt/dumping/option_set_dialog.h" #include "ui_option_set_dialog.h" static const std::unordered_map TypeNameMap{{ diff --git a/src/citra_qt/dumping/option_set_dialog.h b/src/lime_qt/dumping/option_set_dialog.h similarity index 100% rename from src/citra_qt/dumping/option_set_dialog.h rename to src/lime_qt/dumping/option_set_dialog.h diff --git a/src/citra_qt/dumping/option_set_dialog.ui b/src/lime_qt/dumping/option_set_dialog.ui similarity index 100% rename from src/citra_qt/dumping/option_set_dialog.ui rename to src/lime_qt/dumping/option_set_dialog.ui diff --git a/src/citra_qt/dumping/options_dialog.cpp b/src/lime_qt/dumping/options_dialog.cpp similarity index 96% rename from src/citra_qt/dumping/options_dialog.cpp rename to src/lime_qt/dumping/options_dialog.cpp index e75fc61c0..6a1d840d2 100644 --- a/src/citra_qt/dumping/options_dialog.cpp +++ b/src/lime_qt/dumping/options_dialog.cpp @@ -3,8 +3,8 @@ // Refer to the license.txt file included. #include -#include "citra_qt/dumping/option_set_dialog.h" -#include "citra_qt/dumping/options_dialog.h" +#include "lime_qt/dumping/option_set_dialog.h" +#include "lime_qt/dumping/options_dialog.h" #include "ui_options_dialog.h" constexpr char UNSET_TEXT[] = QT_TR_NOOP("[not set]"); diff --git a/src/citra_qt/dumping/options_dialog.h b/src/lime_qt/dumping/options_dialog.h similarity index 100% rename from src/citra_qt/dumping/options_dialog.h rename to src/lime_qt/dumping/options_dialog.h diff --git a/src/citra_qt/dumping/options_dialog.ui b/src/lime_qt/dumping/options_dialog.ui similarity index 100% rename from src/citra_qt/dumping/options_dialog.ui rename to src/lime_qt/dumping/options_dialog.ui diff --git a/src/citra_qt/game_list.cpp b/src/lime_qt/game_list.cpp similarity index 99% rename from src/citra_qt/game_list.cpp rename to src/lime_qt/game_list.cpp index 43fcbcee6..6454244a8 100644 --- a/src/citra_qt/game_list.cpp +++ b/src/lime_qt/game_list.cpp @@ -24,18 +24,18 @@ #include #include #include -#include "citra_qt/compatibility_list.h" -#include "citra_qt/game_list.h" -#include "citra_qt/game_list_p.h" -#include "citra_qt/game_list_worker.h" -#include "citra_qt/main.h" -#include "citra_qt/uisettings.h" #include "common/logging/log.h" #include "common/settings.h" #include "core/file_sys/archive_extsavedata.h" #include "core/file_sys/archive_source_sd_savedata.h" #include "core/hle/service/am/am.h" #include "core/hle/service/fs/archive.h" +#include "lime_qt/compatibility_list.h" +#include "lime_qt/game_list.h" +#include "lime_qt/game_list_p.h" +#include "lime_qt/game_list_worker.h" +#include "lime_qt/main.h" +#include "lime_qt/uisettings.h" #include "qcursor.h" GameListSearchField::KeyReleaseEater::KeyReleaseEater(GameList* gamelist, QObject* parent) diff --git a/src/citra_qt/game_list.h b/src/lime_qt/game_list.h similarity index 99% rename from src/citra_qt/game_list.h rename to src/lime_qt/game_list.h index 9b9ccb05a..83a629219 100644 --- a/src/citra_qt/game_list.h +++ b/src/lime_qt/game_list.h @@ -8,8 +8,8 @@ #include #include #include -#include "citra_qt/compatibility_list.h" #include "common/common_types.h" +#include "lime_qt/compatibility_list.h" #include "uisettings.h" namespace Service::FS { diff --git a/src/citra_qt/game_list_p.h b/src/lime_qt/game_list_p.h similarity index 99% rename from src/citra_qt/game_list_p.h rename to src/lime_qt/game_list_p.h index 338d8cee7..f6ef22229 100644 --- a/src/citra_qt/game_list_p.h +++ b/src/lime_qt/game_list_p.h @@ -18,12 +18,12 @@ #include #include #include -#include "citra_qt/uisettings.h" -#include "citra_qt/util/util.h" #include "common/file_util.h" #include "common/logging/log.h" #include "common/string_util.h" #include "core/loader/smdh.h" +#include "lime_qt/uisettings.h" +#include "lime_qt/util/util.h" namespace Service::FS { enum class MediaType : u32; diff --git a/src/citra_qt/game_list_worker.cpp b/src/lime_qt/game_list_worker.cpp similarity index 97% rename from src/citra_qt/game_list_worker.cpp rename to src/lime_qt/game_list_worker.cpp index e4471b6ae..0a7e66808 100644 --- a/src/citra_qt/game_list_worker.cpp +++ b/src/lime_qt/game_list_worker.cpp @@ -8,16 +8,16 @@ #include #include #include -#include "citra_qt/compatibility_list.h" -#include "citra_qt/game_list.h" -#include "citra_qt/game_list_p.h" -#include "citra_qt/game_list_worker.h" -#include "citra_qt/uisettings.h" #include "common/common_paths.h" #include "common/file_util.h" #include "core/hle/service/am/am.h" #include "core/hle/service/fs/archive.h" #include "core/loader/loader.h" +#include "lime_qt/compatibility_list.h" +#include "lime_qt/game_list.h" +#include "lime_qt/game_list_p.h" +#include "lime_qt/game_list_worker.h" +#include "lime_qt/uisettings.h" namespace { bool HasSupportedFileExtension(const std::string& file_name) { diff --git a/src/citra_qt/game_list_worker.h b/src/lime_qt/game_list_worker.h similarity index 97% rename from src/citra_qt/game_list_worker.h rename to src/lime_qt/game_list_worker.h index 60012e62a..68d8f49a1 100644 --- a/src/citra_qt/game_list_worker.h +++ b/src/lime_qt/game_list_worker.h @@ -12,8 +12,8 @@ #include #include #include -#include "citra_qt/compatibility_list.h" #include "common/common_types.h" +#include "lime_qt/compatibility_list.h" namespace Service::FS { enum class MediaType : u32; diff --git a/src/citra_qt/hotkeys.cpp b/src/lime_qt/hotkeys.cpp similarity index 96% rename from src/citra_qt/hotkeys.cpp rename to src/lime_qt/hotkeys.cpp index 8997b4567..32a3ae95a 100644 --- a/src/citra_qt/hotkeys.cpp +++ b/src/lime_qt/hotkeys.cpp @@ -4,8 +4,8 @@ #include #include -#include "citra_qt/hotkeys.h" -#include "citra_qt/uisettings.h" +#include "lime_qt/hotkeys.h" +#include "lime_qt/uisettings.h" HotkeyRegistry::HotkeyRegistry() = default; diff --git a/src/citra_qt/hotkeys.h b/src/lime_qt/hotkeys.h similarity index 100% rename from src/citra_qt/hotkeys.h rename to src/lime_qt/hotkeys.h diff --git a/src/citra_qt/citra-qt.rc b/src/lime_qt/lime-qt.rc similarity index 72% rename from src/citra_qt/citra-qt.rc rename to src/lime_qt/lime-qt.rc index 7b10f5409..85ec6a7af 100644 --- a/src/citra_qt/citra-qt.rc +++ b/src/lime_qt/lime-qt.rc @@ -8,7 +8,7 @@ // remains consistent on all systems. // QT requires that the default application icon is named IDI_ICON1 -IDI_ICON1 ICON "../../dist/citra.ico" +IDI_ICON1 ICON "../../dist/lime.ico" ///////////////////////////////////////////////////////////////////////////// @@ -16,4 +16,4 @@ IDI_ICON1 ICON "../../dist/citra.ico" // RT_MANIFEST // -0 RT_MANIFEST "../../dist/citra.manifest" +0 RT_MANIFEST "../../dist/lime.manifest" diff --git a/src/citra_qt/loading_screen.cpp b/src/lime_qt/loading_screen.cpp similarity index 99% rename from src/citra_qt/loading_screen.cpp rename to src/lime_qt/loading_screen.cpp index 23d15b9d4..420eae8dc 100644 --- a/src/citra_qt/loading_screen.cpp +++ b/src/lime_qt/loading_screen.cpp @@ -14,10 +14,10 @@ #include #include #include -#include "citra_qt/loading_screen.h" #include "common/logging/log.h" #include "core/loader/loader.h" #include "core/loader/smdh.h" +#include "lime_qt/loading_screen.h" #include "ui_loading_screen.h" #include "video_core/rasterizer_interface.h" diff --git a/src/citra_qt/loading_screen.h b/src/lime_qt/loading_screen.h similarity index 100% rename from src/citra_qt/loading_screen.h rename to src/lime_qt/loading_screen.h diff --git a/src/citra_qt/loading_screen.ui b/src/lime_qt/loading_screen.ui similarity index 100% rename from src/citra_qt/loading_screen.ui rename to src/lime_qt/loading_screen.ui diff --git a/src/citra_qt/main.cpp b/src/lime_qt/main.cpp similarity index 98% rename from src/citra_qt/main.cpp rename to src/lime_qt/main.cpp index 448e0d017..ff7200a94 100644 --- a/src/citra_qt/main.cpp +++ b/src/lime_qt/main.cpp @@ -28,43 +28,6 @@ #include #include "common/linux/gamemode.h" #endif -#include "citra_qt/aboutdialog.h" -#include "citra_qt/applets/mii_selector.h" -#include "citra_qt/applets/swkbd.h" -#include "citra_qt/bootmanager.h" -#include "citra_qt/camera/qt_multimedia_camera.h" -#include "citra_qt/camera/still_image_camera.h" -#include "citra_qt/compatdb.h" -#include "citra_qt/compatibility_list.h" -#include "citra_qt/configuration/config.h" -#include "citra_qt/configuration/configure_dialog.h" -#include "citra_qt/configuration/configure_per_game.h" -#include "citra_qt/debugger/console.h" -#include "citra_qt/debugger/graphics/graphics.h" -#include "citra_qt/debugger/graphics/graphics_breakpoints.h" -#include "citra_qt/debugger/graphics/graphics_cmdlists.h" -#include "citra_qt/debugger/graphics/graphics_surface.h" -#include "citra_qt/debugger/graphics/graphics_tracing.h" -#include "citra_qt/debugger/graphics/graphics_vertex_shader.h" -#include "citra_qt/debugger/ipc/recorder.h" -#include "citra_qt/debugger/lle_service_modules.h" -#include "citra_qt/debugger/profiler.h" -#include "citra_qt/debugger/registers.h" -#include "citra_qt/debugger/wait_tree.h" -#include "citra_qt/discord.h" -#include "citra_qt/dumping/dumping_dialog.h" -#include "citra_qt/game_list.h" -#include "citra_qt/hotkeys.h" -#include "citra_qt/loading_screen.h" -#include "citra_qt/main.h" -#include "citra_qt/movie/movie_play_dialog.h" -#include "citra_qt/movie/movie_record_dialog.h" -#include "citra_qt/multiplayer/state.h" -#include "citra_qt/qt_image_interface.h" -#include "citra_qt/uisettings.h" -#include "citra_qt/updater/updater.h" -#include "citra_qt/util/clickable_label.h" -#include "citra_qt/util/graphics_device_info.h" #include "common/arch.h" #include "common/common_paths.h" #include "common/detached_tasks.h" @@ -76,6 +39,43 @@ #include "common/memory_detect.h" #include "common/scm_rev.h" #include "common/scope_exit.h" +#include "lime_qt/aboutdialog.h" +#include "lime_qt/applets/mii_selector.h" +#include "lime_qt/applets/swkbd.h" +#include "lime_qt/bootmanager.h" +#include "lime_qt/camera/qt_multimedia_camera.h" +#include "lime_qt/camera/still_image_camera.h" +#include "lime_qt/compatdb.h" +#include "lime_qt/compatibility_list.h" +#include "lime_qt/configuration/config.h" +#include "lime_qt/configuration/configure_dialog.h" +#include "lime_qt/configuration/configure_per_game.h" +#include "lime_qt/debugger/console.h" +#include "lime_qt/debugger/graphics/graphics.h" +#include "lime_qt/debugger/graphics/graphics_breakpoints.h" +#include "lime_qt/debugger/graphics/graphics_cmdlists.h" +#include "lime_qt/debugger/graphics/graphics_surface.h" +#include "lime_qt/debugger/graphics/graphics_tracing.h" +#include "lime_qt/debugger/graphics/graphics_vertex_shader.h" +#include "lime_qt/debugger/ipc/recorder.h" +#include "lime_qt/debugger/lle_service_modules.h" +#include "lime_qt/debugger/profiler.h" +#include "lime_qt/debugger/registers.h" +#include "lime_qt/debugger/wait_tree.h" +#include "lime_qt/discord.h" +#include "lime_qt/dumping/dumping_dialog.h" +#include "lime_qt/game_list.h" +#include "lime_qt/hotkeys.h" +#include "lime_qt/loading_screen.h" +#include "lime_qt/main.h" +#include "lime_qt/movie/movie_play_dialog.h" +#include "lime_qt/movie/movie_record_dialog.h" +#include "lime_qt/multiplayer/state.h" +#include "lime_qt/qt_image_interface.h" +#include "lime_qt/uisettings.h" +#include "lime_qt/updater/updater.h" +#include "lime_qt/util/clickable_label.h" +#include "lime_qt/util/graphics_device_info.h" #if CITRA_ARCH(x86_64) #include "common/x64/cpu_detect.h" #endif @@ -103,7 +103,7 @@ #endif #ifdef USE_DISCORD_PRESENCE -#include "citra_qt/discord_impl.h" +#include "lime_qt/discord_impl.h" #endif #ifdef QT_STATICPLUGIN diff --git a/src/citra_qt/main.h b/src/lime_qt/main.h similarity index 99% rename from src/citra_qt/main.h rename to src/lime_qt/main.h index b64bf1b32..c62f4ae06 100644 --- a/src/citra_qt/main.h +++ b/src/lime_qt/main.h @@ -12,10 +12,10 @@ #include #include #include -#include "citra_qt/compatibility_list.h" -#include "citra_qt/hotkeys.h" #include "core/core.h" #include "core/savestate.h" +#include "lime_qt/compatibility_list.h" +#include "lime_qt/hotkeys.h" #ifdef __unix__ #include diff --git a/src/citra_qt/main.ui b/src/lime_qt/main.ui similarity index 99% rename from src/citra_qt/main.ui rename to src/lime_qt/main.ui index f54b6d267..d99a9a814 100644 --- a/src/citra_qt/main.ui +++ b/src/lime_qt/main.ui @@ -15,7 +15,7 @@ - dist/citra.pngdist/citra.png + dist/lime.pngdist/lime.png QTabWidget::Rounded diff --git a/src/citra_qt/movie/movie_play_dialog.cpp b/src/lime_qt/movie/movie_play_dialog.cpp similarity index 97% rename from src/citra_qt/movie/movie_play_dialog.cpp rename to src/lime_qt/movie/movie_play_dialog.cpp index 6df973af5..efe0640d7 100644 --- a/src/citra_qt/movie/movie_play_dialog.cpp +++ b/src/lime_qt/movie/movie_play_dialog.cpp @@ -5,14 +5,14 @@ #include #include #include -#include "citra_qt/game_list.h" -#include "citra_qt/game_list_p.h" -#include "citra_qt/movie/movie_play_dialog.h" -#include "citra_qt/uisettings.h" #include "core/core.h" #include "core/core_timing.h" #include "core/hle/service/hid/hid.h" #include "core/movie.h" +#include "lime_qt/game_list.h" +#include "lime_qt/game_list_p.h" +#include "lime_qt/movie/movie_play_dialog.h" +#include "lime_qt/uisettings.h" #include "ui_movie_play_dialog.h" MoviePlayDialog::MoviePlayDialog(QWidget* parent, GameList* game_list_, const Core::System& system_) diff --git a/src/citra_qt/movie/movie_play_dialog.h b/src/lime_qt/movie/movie_play_dialog.h similarity index 100% rename from src/citra_qt/movie/movie_play_dialog.h rename to src/lime_qt/movie/movie_play_dialog.h diff --git a/src/citra_qt/movie/movie_play_dialog.ui b/src/lime_qt/movie/movie_play_dialog.ui similarity index 100% rename from src/citra_qt/movie/movie_play_dialog.ui rename to src/lime_qt/movie/movie_play_dialog.ui diff --git a/src/citra_qt/movie/movie_record_dialog.cpp b/src/lime_qt/movie/movie_record_dialog.cpp similarity index 96% rename from src/citra_qt/movie/movie_record_dialog.cpp rename to src/lime_qt/movie/movie_record_dialog.cpp index b68914535..594ffa87b 100644 --- a/src/citra_qt/movie/movie_record_dialog.cpp +++ b/src/lime_qt/movie/movie_record_dialog.cpp @@ -4,10 +4,10 @@ #include #include -#include "citra_qt/movie/movie_record_dialog.h" -#include "citra_qt/uisettings.h" #include "core/core.h" #include "core/movie.h" +#include "lime_qt/movie/movie_record_dialog.h" +#include "lime_qt/uisettings.h" #include "ui_movie_record_dialog.h" MovieRecordDialog::MovieRecordDialog(QWidget* parent, const Core::System& system_) diff --git a/src/citra_qt/movie/movie_record_dialog.h b/src/lime_qt/movie/movie_record_dialog.h similarity index 100% rename from src/citra_qt/movie/movie_record_dialog.h rename to src/lime_qt/movie/movie_record_dialog.h diff --git a/src/citra_qt/movie/movie_record_dialog.ui b/src/lime_qt/movie/movie_record_dialog.ui similarity index 100% rename from src/citra_qt/movie/movie_record_dialog.ui rename to src/lime_qt/movie/movie_record_dialog.ui diff --git a/src/citra_qt/multiplayer/chat_room.cpp b/src/lime_qt/multiplayer/chat_room.cpp similarity index 99% rename from src/citra_qt/multiplayer/chat_room.cpp rename to src/lime_qt/multiplayer/chat_room.cpp index 1e4f2ff07..d27ee10c2 100644 --- a/src/citra_qt/multiplayer/chat_room.cpp +++ b/src/lime_qt/multiplayer/chat_room.cpp @@ -16,10 +16,10 @@ #include #include #include -#include "citra_qt/game_list_p.h" -#include "citra_qt/multiplayer/chat_room.h" -#include "citra_qt/multiplayer/message.h" #include "common/logging/log.h" +#include "lime_qt/game_list_p.h" +#include "lime_qt/multiplayer/chat_room.h" +#include "lime_qt/multiplayer/message.h" #include "network/announce_multiplayer_session.h" #include "ui_chat_room.h" #ifdef ENABLE_WEB_SERVICE diff --git a/src/citra_qt/multiplayer/chat_room.h b/src/lime_qt/multiplayer/chat_room.h similarity index 100% rename from src/citra_qt/multiplayer/chat_room.h rename to src/lime_qt/multiplayer/chat_room.h diff --git a/src/citra_qt/multiplayer/chat_room.ui b/src/lime_qt/multiplayer/chat_room.ui similarity index 100% rename from src/citra_qt/multiplayer/chat_room.ui rename to src/lime_qt/multiplayer/chat_room.ui diff --git a/src/citra_qt/multiplayer/client_room.cpp b/src/lime_qt/multiplayer/client_room.cpp similarity index 94% rename from src/citra_qt/multiplayer/client_room.cpp rename to src/lime_qt/multiplayer/client_room.cpp index 312090cbe..85d19fc80 100644 --- a/src/citra_qt/multiplayer/client_room.cpp +++ b/src/lime_qt/multiplayer/client_room.cpp @@ -10,12 +10,12 @@ #include #include #include -#include "citra_qt/game_list_p.h" -#include "citra_qt/multiplayer/client_room.h" -#include "citra_qt/multiplayer/message.h" -#include "citra_qt/multiplayer/moderation_dialog.h" -#include "citra_qt/multiplayer/state.h" #include "common/logging/log.h" +#include "lime_qt/game_list_p.h" +#include "lime_qt/multiplayer/client_room.h" +#include "lime_qt/multiplayer/message.h" +#include "lime_qt/multiplayer/moderation_dialog.h" +#include "lime_qt/multiplayer/state.h" #include "network/announce_multiplayer_session.h" #include "ui_client_room.h" diff --git a/src/citra_qt/multiplayer/client_room.h b/src/lime_qt/multiplayer/client_room.h similarity index 95% rename from src/citra_qt/multiplayer/client_room.h rename to src/lime_qt/multiplayer/client_room.h index cbbcff61f..b2423144b 100644 --- a/src/citra_qt/multiplayer/client_room.h +++ b/src/lime_qt/multiplayer/client_room.h @@ -4,7 +4,7 @@ #pragma once -#include "citra_qt/multiplayer/chat_room.h" +#include "lime_qt/multiplayer/chat_room.h" namespace Ui { class ClientRoom; diff --git a/src/citra_qt/multiplayer/client_room.ui b/src/lime_qt/multiplayer/client_room.ui similarity index 100% rename from src/citra_qt/multiplayer/client_room.ui rename to src/lime_qt/multiplayer/client_room.ui diff --git a/src/citra_qt/multiplayer/direct_connect.cpp b/src/lime_qt/multiplayer/direct_connect.cpp similarity index 95% rename from src/citra_qt/multiplayer/direct_connect.cpp rename to src/lime_qt/multiplayer/direct_connect.cpp index bdc866a75..673fd3980 100644 --- a/src/citra_qt/multiplayer/direct_connect.cpp +++ b/src/lime_qt/multiplayer/direct_connect.cpp @@ -8,12 +8,12 @@ #include #include #include -#include "citra_qt/main.h" -#include "citra_qt/multiplayer/direct_connect.h" -#include "citra_qt/multiplayer/message.h" -#include "citra_qt/multiplayer/validation.h" -#include "citra_qt/uisettings.h" #include "core/hle/service/cfg/cfg.h" +#include "lime_qt/main.h" +#include "lime_qt/multiplayer/direct_connect.h" +#include "lime_qt/multiplayer/message.h" +#include "lime_qt/multiplayer/validation.h" +#include "lime_qt/uisettings.h" #include "network/network.h" #include "network/network_settings.h" #include "ui_direct_connect.h" diff --git a/src/citra_qt/multiplayer/direct_connect.h b/src/lime_qt/multiplayer/direct_connect.h similarity index 95% rename from src/citra_qt/multiplayer/direct_connect.h rename to src/lime_qt/multiplayer/direct_connect.h index b03fa06c7..43bc0ab9b 100644 --- a/src/citra_qt/multiplayer/direct_connect.h +++ b/src/lime_qt/multiplayer/direct_connect.h @@ -7,7 +7,7 @@ #include #include #include -#include "citra_qt/multiplayer/validation.h" +#include "lime_qt/multiplayer/validation.h" namespace Ui { class DirectConnect; diff --git a/src/citra_qt/multiplayer/direct_connect.ui b/src/lime_qt/multiplayer/direct_connect.ui similarity index 100% rename from src/citra_qt/multiplayer/direct_connect.ui rename to src/lime_qt/multiplayer/direct_connect.ui diff --git a/src/citra_qt/multiplayer/host_room.cpp b/src/lime_qt/multiplayer/host_room.cpp similarity index 97% rename from src/citra_qt/multiplayer/host_room.cpp rename to src/lime_qt/multiplayer/host_room.cpp index 8a1ca02e2..9d9012ba4 100644 --- a/src/citra_qt/multiplayer/host_room.cpp +++ b/src/lime_qt/multiplayer/host_room.cpp @@ -11,14 +11,14 @@ #include #include #include -#include "citra_qt/game_list_p.h" -#include "citra_qt/multiplayer/host_room.h" -#include "citra_qt/multiplayer/message.h" -#include "citra_qt/multiplayer/state.h" -#include "citra_qt/multiplayer/validation.h" -#include "citra_qt/uisettings.h" #include "common/logging/log.h" #include "core/hle/service/cfg/cfg.h" +#include "lime_qt/game_list_p.h" +#include "lime_qt/multiplayer/host_room.h" +#include "lime_qt/multiplayer/message.h" +#include "lime_qt/multiplayer/state.h" +#include "lime_qt/multiplayer/validation.h" +#include "lime_qt/uisettings.h" #include "network/announce_multiplayer_session.h" #include "network/network_settings.h" #include "ui_host_room.h" diff --git a/src/citra_qt/multiplayer/host_room.h b/src/lime_qt/multiplayer/host_room.h similarity index 97% rename from src/citra_qt/multiplayer/host_room.h rename to src/lime_qt/multiplayer/host_room.h index e481bd000..da7174f4d 100644 --- a/src/citra_qt/multiplayer/host_room.h +++ b/src/lime_qt/multiplayer/host_room.h @@ -9,7 +9,7 @@ #include #include #include -#include "citra_qt/multiplayer/validation.h" +#include "lime_qt/multiplayer/validation.h" namespace Ui { class HostRoom; diff --git a/src/citra_qt/multiplayer/host_room.ui b/src/lime_qt/multiplayer/host_room.ui similarity index 100% rename from src/citra_qt/multiplayer/host_room.ui rename to src/lime_qt/multiplayer/host_room.ui diff --git a/src/citra_qt/multiplayer/lobby.cpp b/src/lime_qt/multiplayer/lobby.cpp similarity index 98% rename from src/citra_qt/multiplayer/lobby.cpp rename to src/lime_qt/multiplayer/lobby.cpp index 00671b842..5fe07b236 100644 --- a/src/citra_qt/multiplayer/lobby.cpp +++ b/src/lime_qt/multiplayer/lobby.cpp @@ -5,15 +5,15 @@ #include #include #include -#include "citra_qt/game_list_p.h" -#include "citra_qt/main.h" -#include "citra_qt/multiplayer/lobby.h" -#include "citra_qt/multiplayer/lobby_p.h" -#include "citra_qt/multiplayer/message.h" -#include "citra_qt/multiplayer/validation.h" -#include "citra_qt/uisettings.h" #include "common/logging/log.h" #include "core/hle/service/cfg/cfg.h" +#include "lime_qt/game_list_p.h" +#include "lime_qt/main.h" +#include "lime_qt/multiplayer/lobby.h" +#include "lime_qt/multiplayer/lobby_p.h" +#include "lime_qt/multiplayer/message.h" +#include "lime_qt/multiplayer/validation.h" +#include "lime_qt/uisettings.h" #include "network/network.h" #include "network/network_settings.h" #include "ui_lobby.h" diff --git a/src/citra_qt/multiplayer/lobby.h b/src/lime_qt/multiplayer/lobby.h similarity index 98% rename from src/citra_qt/multiplayer/lobby.h rename to src/lime_qt/multiplayer/lobby.h index f245c7ac6..3aca24318 100644 --- a/src/citra_qt/multiplayer/lobby.h +++ b/src/lime_qt/multiplayer/lobby.h @@ -9,8 +9,8 @@ #include #include #include -#include "citra_qt/multiplayer/validation.h" #include "common/announce_multiplayer_room.h" +#include "lime_qt/multiplayer/validation.h" #include "network/announce_multiplayer_session.h" #include "network/room_member.h" diff --git a/src/citra_qt/multiplayer/lobby.ui b/src/lime_qt/multiplayer/lobby.ui similarity index 100% rename from src/citra_qt/multiplayer/lobby.ui rename to src/lime_qt/multiplayer/lobby.ui diff --git a/src/citra_qt/multiplayer/lobby_p.h b/src/lime_qt/multiplayer/lobby_p.h similarity index 100% rename from src/citra_qt/multiplayer/lobby_p.h rename to src/lime_qt/multiplayer/lobby_p.h diff --git a/src/citra_qt/multiplayer/message.cpp b/src/lime_qt/multiplayer/message.cpp similarity index 99% rename from src/citra_qt/multiplayer/message.cpp rename to src/lime_qt/multiplayer/message.cpp index beb45bbe0..b74256a14 100644 --- a/src/citra_qt/multiplayer/message.cpp +++ b/src/lime_qt/multiplayer/message.cpp @@ -5,7 +5,7 @@ #include #include -#include "citra_qt/multiplayer/message.h" +#include "lime_qt/multiplayer/message.h" namespace NetworkMessage { const ConnectionError ErrorManager::USERNAME_NOT_VALID( diff --git a/src/citra_qt/multiplayer/message.h b/src/lime_qt/multiplayer/message.h similarity index 100% rename from src/citra_qt/multiplayer/message.h rename to src/lime_qt/multiplayer/message.h diff --git a/src/citra_qt/multiplayer/moderation_dialog.cpp b/src/lime_qt/multiplayer/moderation_dialog.cpp similarity index 98% rename from src/citra_qt/multiplayer/moderation_dialog.cpp rename to src/lime_qt/multiplayer/moderation_dialog.cpp index def084666..f5d529a7b 100644 --- a/src/citra_qt/multiplayer/moderation_dialog.cpp +++ b/src/lime_qt/multiplayer/moderation_dialog.cpp @@ -4,7 +4,7 @@ #include #include -#include "citra_qt/multiplayer/moderation_dialog.h" +#include "lime_qt/multiplayer/moderation_dialog.h" #include "network/network.h" #include "network/room_member.h" #include "ui_moderation_dialog.h" diff --git a/src/citra_qt/multiplayer/moderation_dialog.h b/src/lime_qt/multiplayer/moderation_dialog.h similarity index 100% rename from src/citra_qt/multiplayer/moderation_dialog.h rename to src/lime_qt/multiplayer/moderation_dialog.h diff --git a/src/citra_qt/multiplayer/moderation_dialog.ui b/src/lime_qt/multiplayer/moderation_dialog.ui similarity index 100% rename from src/citra_qt/multiplayer/moderation_dialog.ui rename to src/lime_qt/multiplayer/moderation_dialog.ui diff --git a/src/citra_qt/multiplayer/state.cpp b/src/lime_qt/multiplayer/state.cpp similarity index 97% rename from src/citra_qt/multiplayer/state.cpp rename to src/lime_qt/multiplayer/state.cpp index 72a36c6af..e06dc2297 100644 --- a/src/citra_qt/multiplayer/state.cpp +++ b/src/lime_qt/multiplayer/state.cpp @@ -7,15 +7,15 @@ #include #include #include -#include "citra_qt/multiplayer/client_room.h" -#include "citra_qt/multiplayer/direct_connect.h" -#include "citra_qt/multiplayer/host_room.h" -#include "citra_qt/multiplayer/lobby.h" -#include "citra_qt/multiplayer/message.h" -#include "citra_qt/multiplayer/state.h" -#include "citra_qt/uisettings.h" -#include "citra_qt/util/clickable_label.h" #include "common/logging/log.h" +#include "lime_qt/multiplayer/client_room.h" +#include "lime_qt/multiplayer/direct_connect.h" +#include "lime_qt/multiplayer/host_room.h" +#include "lime_qt/multiplayer/lobby.h" +#include "lime_qt/multiplayer/message.h" +#include "lime_qt/multiplayer/state.h" +#include "lime_qt/uisettings.h" +#include "lime_qt/util/clickable_label.h" MultiplayerState::MultiplayerState(Core::System& system_, QWidget* parent, QStandardItemModel* game_list_model, QAction* leave_room, diff --git a/src/citra_qt/multiplayer/state.h b/src/lime_qt/multiplayer/state.h similarity index 100% rename from src/citra_qt/multiplayer/state.h rename to src/lime_qt/multiplayer/state.h diff --git a/src/citra_qt/multiplayer/validation.h b/src/lime_qt/multiplayer/validation.h similarity index 100% rename from src/citra_qt/multiplayer/validation.h rename to src/lime_qt/multiplayer/validation.h diff --git a/src/citra_qt/precompiled_headers.h b/src/lime_qt/precompiled_headers.h similarity index 100% rename from src/citra_qt/precompiled_headers.h rename to src/lime_qt/precompiled_headers.h diff --git a/src/citra_qt/qt_image_interface.cpp b/src/lime_qt/qt_image_interface.cpp similarity index 97% rename from src/citra_qt/qt_image_interface.cpp rename to src/lime_qt/qt_image_interface.cpp index 7124f023f..25ffb2a5e 100644 --- a/src/citra_qt/qt_image_interface.cpp +++ b/src/lime_qt/qt_image_interface.cpp @@ -5,8 +5,8 @@ #include #include #include -#include "citra_qt/qt_image_interface.h" #include "common/logging/log.h" +#include "lime_qt/qt_image_interface.h" QtImageInterface::QtImageInterface() { QImageReader::setAllocationLimit(0); diff --git a/src/citra_qt/qt_image_interface.h b/src/lime_qt/qt_image_interface.h similarity index 100% rename from src/citra_qt/qt_image_interface.h rename to src/lime_qt/qt_image_interface.h diff --git a/src/citra_qt/uisettings.cpp b/src/lime_qt/uisettings.cpp similarity index 100% rename from src/citra_qt/uisettings.cpp rename to src/lime_qt/uisettings.cpp diff --git a/src/citra_qt/uisettings.h b/src/lime_qt/uisettings.h similarity index 100% rename from src/citra_qt/uisettings.h rename to src/lime_qt/uisettings.h diff --git a/src/citra_qt/updater/updater.cpp b/src/lime_qt/updater/updater.cpp similarity index 98% rename from src/citra_qt/updater/updater.cpp rename to src/lime_qt/updater/updater.cpp index 00c32479c..a882d9f2d 100644 --- a/src/citra_qt/updater/updater.cpp +++ b/src/lime_qt/updater/updater.cpp @@ -11,11 +11,11 @@ #include #include #include -#include "citra_qt/uisettings.h" -#include "citra_qt/updater/updater.h" -#include "citra_qt/updater/updater_p.h" #include "common/file_util.h" #include "common/logging/log.h" +#include "lime_qt/uisettings.h" +#include "lime_qt/updater/updater.h" +#include "lime_qt/updater/updater_p.h" #ifdef Q_OS_MACOS #define DEFAULT_TOOL_PATH QStringLiteral("../../../../maintenancetool") diff --git a/src/citra_qt/updater/updater.h b/src/lime_qt/updater/updater.h similarity index 100% rename from src/citra_qt/updater/updater.h rename to src/lime_qt/updater/updater.h diff --git a/src/citra_qt/updater/updater_p.h b/src/lime_qt/updater/updater_p.h similarity index 97% rename from src/citra_qt/updater/updater_p.h rename to src/lime_qt/updater/updater_p.h index 549c98e88..b55403ffa 100644 --- a/src/citra_qt/updater/updater_p.h +++ b/src/lime_qt/updater/updater_p.h @@ -9,7 +9,7 @@ #pragma once #include -#include "citra_qt/updater/updater.h" +#include "lime_qt/updater/updater.h" enum class XMLParseResult { Success, diff --git a/src/citra_qt/util/clickable_label.cpp b/src/lime_qt/util/clickable_label.cpp similarity index 88% rename from src/citra_qt/util/clickable_label.cpp rename to src/lime_qt/util/clickable_label.cpp index 2a1ea5df1..4d7d3b108 100644 --- a/src/citra_qt/util/clickable_label.cpp +++ b/src/lime_qt/util/clickable_label.cpp @@ -2,7 +2,7 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -#include "citra_qt/util/clickable_label.h" +#include "lime_qt/util/clickable_label.h" ClickableLabel::ClickableLabel(QWidget* parent, [[maybe_unused]] Qt::WindowFlags f) : QLabel(parent) {} diff --git a/src/citra_qt/util/clickable_label.h b/src/lime_qt/util/clickable_label.h similarity index 100% rename from src/citra_qt/util/clickable_label.h rename to src/lime_qt/util/clickable_label.h diff --git a/src/citra_qt/util/graphics_device_info.cpp b/src/lime_qt/util/graphics_device_info.cpp similarity index 96% rename from src/citra_qt/util/graphics_device_info.cpp rename to src/lime_qt/util/graphics_device_info.cpp index 8653ba8bd..4d68421ba 100644 --- a/src/citra_qt/util/graphics_device_info.cpp +++ b/src/lime_qt/util/graphics_device_info.cpp @@ -2,7 +2,7 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -#include "citra_qt/util/graphics_device_info.h" +#include "lime_qt/util/graphics_device_info.h" #ifdef ENABLE_OPENGL #include diff --git a/src/citra_qt/util/graphics_device_info.h b/src/lime_qt/util/graphics_device_info.h similarity index 100% rename from src/citra_qt/util/graphics_device_info.h rename to src/lime_qt/util/graphics_device_info.h diff --git a/src/citra_qt/util/sequence_dialog/sequence_dialog.cpp b/src/lime_qt/util/sequence_dialog/sequence_dialog.cpp similarity index 95% rename from src/citra_qt/util/sequence_dialog/sequence_dialog.cpp rename to src/lime_qt/util/sequence_dialog/sequence_dialog.cpp index 72d99b6bb..3563d056b 100644 --- a/src/citra_qt/util/sequence_dialog/sequence_dialog.cpp +++ b/src/lime_qt/util/sequence_dialog/sequence_dialog.cpp @@ -5,7 +5,7 @@ #include #include #include -#include "citra_qt/util/sequence_dialog/sequence_dialog.h" +#include "lime_qt/util/sequence_dialog/sequence_dialog.h" SequenceDialog::SequenceDialog(QWidget* parent) : QDialog(parent) { setWindowTitle(tr("Enter a hotkey")); diff --git a/src/citra_qt/util/sequence_dialog/sequence_dialog.h b/src/lime_qt/util/sequence_dialog/sequence_dialog.h similarity index 100% rename from src/citra_qt/util/sequence_dialog/sequence_dialog.h rename to src/lime_qt/util/sequence_dialog/sequence_dialog.h diff --git a/src/citra_qt/util/spinbox.cpp b/src/lime_qt/util/spinbox.cpp similarity index 99% rename from src/citra_qt/util/spinbox.cpp rename to src/lime_qt/util/spinbox.cpp index 722af05e3..f5c029516 100644 --- a/src/citra_qt/util/spinbox.cpp +++ b/src/lime_qt/util/spinbox.cpp @@ -31,8 +31,8 @@ #include #include #include -#include "citra_qt/util/spinbox.h" #include "common/assert.h" +#include "lime_qt/util/spinbox.h" CSpinBox::CSpinBox(QWidget* parent) : QAbstractSpinBox(parent), min_value(-100), max_value(100), value(0), base(10), num_digits(0) { diff --git a/src/citra_qt/util/spinbox.h b/src/lime_qt/util/spinbox.h similarity index 100% rename from src/citra_qt/util/spinbox.h rename to src/lime_qt/util/spinbox.h diff --git a/src/citra_qt/util/util.cpp b/src/lime_qt/util/util.cpp similarity index 97% rename from src/citra_qt/util/util.cpp rename to src/lime_qt/util/util.cpp index ec10fe471..ee21c5213 100644 --- a/src/citra_qt/util/util.cpp +++ b/src/lime_qt/util/util.cpp @@ -5,7 +5,7 @@ #include #include #include -#include "citra_qt/util/util.h" +#include "lime_qt/util/util.h" QFont GetMonospaceFont() { QFont font(QStringLiteral("monospace")); diff --git a/src/citra_qt/util/util.h b/src/lime_qt/util/util.h similarity index 100% rename from src/citra_qt/util/util.h rename to src/lime_qt/util/util.h diff --git a/src/network/CMakeLists.txt b/src/network/CMakeLists.txt index d8058dfd2..05d3d7a7a 100644 --- a/src/network/CMakeLists.txt +++ b/src/network/CMakeLists.txt @@ -22,7 +22,7 @@ if (ENABLE_WEB_SERVICE) target_link_libraries(network PRIVATE web_service) endif() -target_link_libraries(network PRIVATE citra_common enet Boost::serialization httplib) +target_link_libraries(network PRIVATE lime_common enet Boost::serialization httplib) if (CITRA_USE_PRECOMPILED_HEADERS) target_precompile_headers(network PRIVATE precompiled_headers.h) diff --git a/src/tests/CMakeLists.txt b/src/tests/CMakeLists.txt index baddc1ada..554661f84 100644 --- a/src/tests/CMakeLists.txt +++ b/src/tests/CMakeLists.txt @@ -23,7 +23,7 @@ add_executable(tests create_target_directory_groups(tests) -target_link_libraries(tests PRIVATE citra_common citra_core video_core audio_core) +target_link_libraries(tests PRIVATE lime_common lime_core video_core audio_core) target_link_libraries(tests PRIVATE ${PLATFORM_LIBRARIES} catch2 nihstro-headers Threads::Threads) add_test(NAME tests COMMAND tests) diff --git a/src/video_core/CMakeLists.txt b/src/video_core/CMakeLists.txt index f2c084017..53c4e6a1c 100644 --- a/src/video_core/CMakeLists.txt +++ b/src/video_core/CMakeLists.txt @@ -204,7 +204,7 @@ target_include_directories(video_core PRIVATE ${HOST_SHADERS_INCLUDE}) create_target_directory_groups(video_core) -target_link_libraries(video_core PUBLIC citra_common citra_core) +target_link_libraries(video_core PUBLIC lime_common lime_core) target_link_libraries(video_core PRIVATE Boost::serialization dds-ktx json-headers nihstro-headers tsl::robin_map) if ("x86_64" IN_LIST ARCHITECTURE) diff --git a/src/web_service/CMakeLists.txt b/src/web_service/CMakeLists.txt index c7f237425..0d3fbfe7e 100644 --- a/src/web_service/CMakeLists.txt +++ b/src/web_service/CMakeLists.txt @@ -15,7 +15,7 @@ add_library(web_service STATIC create_target_directory_groups(web_service) target_compile_definitions(web_service PUBLIC -DENABLE_WEB_SERVICE) -target_link_libraries(web_service PRIVATE citra_common network json-headers httplib cpp-jwt) +target_link_libraries(web_service PRIVATE lime_common network json-headers httplib cpp-jwt) target_link_libraries(web_service PUBLIC ${OPENSSL_LIBS}) if(WIN32) target_link_libraries(web_service PRIVATE crypt32)