From 76a8a6e03926e7bcc6111f92b894fdae4d0a17ea Mon Sep 17 00:00:00 2001 From: crueter Date: Tue, 23 Sep 2025 19:38:11 +0200 Subject: [PATCH] [cmake] feat: FFmpeg CI, allow 16kb android builds, update translations for transifex (#2543) Uses an FFmpeg CI for Android and Windows, also available for Linux. Saves compile time on Linux and is more consistent on Windows/Android. Also, updates VVL and FFmpeg to allow for a fully 16kb-compliant Android build. Bonus: APK size is down 30% Updated all localization files for Transifex while I was at it TODO for future: Android 8.0 with vp9_vulkan et al. Reviewed-on: https://git.eden-emu.dev/eden-emu/eden/pulls/2543 Reviewed-by: Maufeat Reviewed-by: Lizzie --- .ci/translate.sh | 2 +- .tx/config | 21 + CMakeLists.txt | 30 +- CMakeModules/CPMUtil.cmake | 11 + CMakeModules/DownloadExternals.cmake | 9 - README.md | 2 + cpmfile.json | 2 +- dist/languages/README.md | 8 +- dist/languages/ar.ts | 4027 ++++++++------- dist/languages/ca.ts | 4247 ++++++++-------- dist/languages/cs.ts | 4018 ++++++++------- dist/languages/da.ts | 4300 ++++++++-------- dist/languages/de.ts | 4292 +++++++++------- dist/languages/el.ts | 4327 ++++++++-------- dist/languages/es.ts | 3483 +++++++------ dist/languages/fi.ts | 3674 +++++++------- dist/languages/fr.ts | 3443 +++++++------ dist/languages/hu.ts | 3529 +++++++------ dist/languages/id.ts | 3584 ++++++++------ dist/languages/it.ts | 4306 +++++++++------- dist/languages/ja_JP.ts | 4324 ++++++++-------- dist/languages/ko_KR.ts | 4375 +++++++++-------- dist/languages/nb.ts | 4342 ++++++++-------- dist/languages/nl.ts | 4318 ++++++++-------- dist/languages/pl.ts | 4313 ++++++++-------- dist/languages/pt_BR.ts | 3443 +++++++------ dist/languages/pt_PT.ts | 3443 +++++++------ dist/languages/ru_RU.ts | 3478 +++++++------ dist/languages/sv.ts | 3762 +++++++------- dist/languages/tr_TR.ts | 4361 ++++++++-------- dist/languages/uk.ts | 4349 ++++++++-------- dist/languages/vi.ts | 4357 ++++++++-------- dist/languages/vi_VN.ts | 4357 ++++++++-------- dist/languages/zh_CN.ts | 3458 +++++++------ dist/languages/zh_TW.ts | 3455 +++++++------ externals/CMakeLists.txt | 10 +- externals/ffmpeg/CMakeLists.txt | 279 +- externals/ffmpeg/cpmfile.json | 12 + src/android/app/src/main/jni/CMakeLists.txt | 2 +- .../app/src/main/res/values-ar/strings.xml | 17 +- .../app/src/main/res/values-ckb/strings.xml | 9 +- .../app/src/main/res/values-cs/strings.xml | 13 +- .../app/src/main/res/values-de/strings.xml | 7 +- .../app/src/main/res/values-es/strings.xml | 11 +- .../app/src/main/res/values-fa/strings.xml | 11 +- .../app/src/main/res/values-fr/strings.xml | 11 +- .../app/src/main/res/values-he/strings.xml | 10 +- .../app/src/main/res/values-hu/strings.xml | 11 +- .../app/src/main/res/values-id/strings.xml | 17 +- .../app/src/main/res/values-it/strings.xml | 9 +- .../app/src/main/res/values-ja/strings.xml | 9 +- .../app/src/main/res/values-ko/strings.xml | 17 +- .../app/src/main/res/values-nb/strings.xml | 7 +- .../app/src/main/res/values-pl/strings.xml | 11 +- .../src/main/res/values-pt-rBR/strings.xml | 15 +- .../src/main/res/values-pt-rPT/strings.xml | 11 +- .../app/src/main/res/values-ru/strings.xml | 11 +- .../app/src/main/res/values-sr/strings.xml | 18 +- .../app/src/main/res/values-uk/strings.xml | 13 +- .../app/src/main/res/values-vi/strings.xml | 9 +- .../src/main/res/values-zh-rCN/strings.xml | 11 +- .../src/main/res/values-zh-rTW/strings.xml | 11 +- .../app/src/main/res/values/strings.xml | 12 +- src/audio_core/CMakeLists.txt | 4 +- src/network/CMakeLists.txt | 2 +- src/video_core/CMakeLists.txt | 3 +- src/video_core/host1x/ffmpeg/ffmpeg.cpp | 4 +- tools/cpm-fetch-all.sh | 4 +- tools/cpm-fetch.sh | 66 +- 69 files changed, 60259 insertions(+), 47858 deletions(-) create mode 100755 .tx/config diff --git a/.ci/translate.sh b/.ci/translate.sh index 55104b7c76..c0b7dba9f6 100755 --- a/.ci/translate.sh +++ b/.ci/translate.sh @@ -5,7 +5,7 @@ for i in dist/languages/*.ts; do TARGET=`head -n1 $i | awk -F 'language="' '{split($2, a, "\""); print a[1]}'` # requires fd - SOURCES=`fd . src/yuzu -tf -e ui -e cpp -e h -e plist` + SOURCES=`fd . src/yuzu src/qt_common -tf -e ui -e cpp -e h -e plist` lupdate -source-language $SRC -target-language $TARGET $SOURCES -ts /data/code/eden/$i done diff --git a/.tx/config b/.tx/config new file mode 100755 index 0000000000..fdca1f30dc --- /dev/null +++ b/.tx/config @@ -0,0 +1,21 @@ +[main] +host = https://app.transifex.com + +[o:edenemu:p:eden-emulator:r:android-translations] +file_filter = src/android/app/src/main/res/values-/strings.xml +source_file = src/android/app/src/main/res/values/strings.xml +type = ANDROID +minimum_perc = 0 +resource_name = Android Translations +replace_edited_strings = false +keep_translations = false +lang_map = zh_CN: zh-rCN, zh_TW: zh-rTW, pt_BR: pt-rBR, pt_PT: pt-rPT, vi_VN: vi, ku: ckb, ja_JP: ja, ko_KR: ko, ru_RU: ru + +[o:edenemu:p:eden-emulator:r:qt-translations] +file_filter = dist/languages/.ts +source_file = dist/languages/en.ts +type = QT +minimum_perc = 0 +resource_name = Qt Translations +replace_edited_strings = false +keep_translations = false diff --git a/CMakeLists.txt b/CMakeLists.txt index 6d8739fb00..411de4620b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -165,7 +165,8 @@ option(YUZU_USE_CPM "Use CPM to fetch system dependencies (fmt, boost, etc) if n option(ENABLE_WEB_SERVICE "Enable web services (telemetry, etc.)" ON) option(ENABLE_WIFI_SCAN "Enable WiFi scanning" OFF) -option(YUZU_USE_BUNDLED_FFMPEG "Download/Build bundled FFmpeg" ${EXT_DEFAULT}) +option(YUZU_USE_BUNDLED_FFMPEG "Download bundled FFmpeg" ${EXT_DEFAULT}) +cmake_dependent_option(YUZU_USE_EXTERNAL_FFMPEG "Build FFmpeg from source" OFF "NOT WIN32 AND NOT ANDROID" OFF) option(YUZU_USE_QT_MULTIMEDIA "Use QtMultimedia for Camera" OFF) @@ -184,8 +185,6 @@ option(YUZU_USE_PRECOMPILED_HEADERS "Use precompiled headers" ${EXT_DEFAULT}) # TODO(crueter): CI this? option(YUZU_DOWNLOAD_ANDROID_VVL "Download validation layer binary for android" ON) -option(FORCE_DOWNLOAD_WIN_BUNDLES "Forcefully download bundled Windows dependencies (useful for CI)" OFF) - # TODO(crueter): Cleanup, each dep that has a bundled option should allow to choose between bundled, external, system CMAKE_DEPENDENT_OPTION(YUZU_USE_BUNDLED_SDL2 "Download bundled SDL2 build" "${MSVC}" "ENABLE_SDL2" OFF) @@ -231,12 +230,13 @@ if (ENABLE_OPENSSL) endif() if (ANDROID AND YUZU_DOWNLOAD_ANDROID_VVL) - set(vvl_version "sdk-1.3.261.1") + # TODO(crueter): CPM this + set(vvl_version "1.4.321.0") set(vvl_zip_file "${CMAKE_BINARY_DIR}/externals/vvl-android.zip") if (NOT EXISTS "${vvl_zip_file}") # Download and extract validation layer release to externals directory set(vvl_base_url "https://github.com/KhronosGroup/Vulkan-ValidationLayers/releases/download") - file(DOWNLOAD "${vvl_base_url}/${vvl_version}/android-binaries-${vvl_version}-android.zip" + file(DOWNLOAD "${vvl_base_url}/vulkan-sdk-${vvl_version}/android-binaries-${vvl_version}.zip" "${vvl_zip_file}" SHOW_PROGRESS) execute_process(COMMAND ${CMAKE_COMMAND} -E tar xf "${vvl_zip_file}" WORKING_DIRECTORY "${CMAKE_BINARY_DIR}/externals") @@ -379,6 +379,7 @@ if (YUZU_USE_CPM) set(BUILD_SHARED_LIBS OFF) set(BUILD_TESTING OFF) + set(ENABLE_TESTING OFF) # TODO(crueter): renderdoc? @@ -448,6 +449,10 @@ if (YUZU_USE_CPM) target_include_directories(enet INTERFACE ${enet_SOURCE_DIR}/include) endif() + if (NOT TARGET enet::enet) + add_library(enet::enet ALIAS enet) + endif() + # Opus AddJsonPackage(opus) @@ -459,6 +464,10 @@ if (YUZU_USE_CPM) endif() endif() + if (NOT TARGET Opus::opus) + add_library(Opus::opus ALIAS opus) + endif() + # VulkanUtilityHeaders - pulls in headers and utility libs AddJsonPackage(vulkan-utility-headers) @@ -579,6 +588,10 @@ if(ENABLE_CUBEB) ) endif() endif() + + if (NOT TARGET cubeb::cubeb) + add_library(cubeb::cubeb ALIAS cubeb) + endif() endif() # find SDL2 exports a bunch of variables that are needed, so its easier to do this outside of the YUZU_find_package @@ -662,10 +675,6 @@ if (ENABLE_WEB_SERVICE OR ENABLE_QT_UPDATE_CHECKER) find_package(cpp-jwt) endif() -if (ENABLE_SDL2) - find_package(SDL2) -endif() - if (ENABLE_QT) if (YUZU_USE_BUNDLED_QT) download_qt(6.8.3) @@ -738,9 +747,8 @@ if (UNIX AND NOT APPLE AND NOT ANDROID) pkg_check_modules(LIBVA libva) endif() -if (NOT YUZU_USE_BUNDLED_FFMPEG) +if (NOT (YUZU_USE_BUNDLED_FFMPEG OR YUZU_USE_EXTERNAL_FFMPEG)) # Use system installed FFmpeg - #find_package(FFmpeg 4.3 REQUIRED QUIET COMPONENTS ${FFmpeg_COMPONENTS}) find_package(FFmpeg REQUIRED QUIET COMPONENTS ${FFmpeg_COMPONENTS}) # TODO(crueter): Version diff --git a/CMakeModules/CPMUtil.cmake b/CMakeModules/CPMUtil.cmake index 6a1384e730..d84c069399 100644 --- a/CMakeModules/CPMUtil.cmake +++ b/CMakeModules/CPMUtil.cmake @@ -126,6 +126,15 @@ function(AddJsonPackage) DISABLED_PLATFORMS ${disabled_platforms} CMAKE_FILENAME ${cmake_filename} ) + + # pass stuff to parent scope + set(${package}_ADDED "${${package}_ADDED}" + PARENT_SCOPE) + set(${package}_SOURCE_DIR "${${package}_SOURCE_DIR}" + PARENT_SCOPE) + set(${package}_BINARY_DIR "${${package}_BINARY_DIR}" + PARENT_SCOPE) + return() endif() @@ -598,7 +607,9 @@ function(AddCIPackage) if (DEFINED ARTIFACT_DIR) include(${ARTIFACT_DIR}/${ARTIFACT_CMAKE}.cmake) + set(${ARTIFACT_PACKAGE}_ADDED TRUE PARENT_SCOPE) + set(${ARTIFACT_PACKAGE}_SOURCE_DIR "${ARTIFACT_DIR}" PARENT_SCOPE) else() find_package(${ARTIFACT_PACKAGE} ${ARTIFACT_MIN_VERSION} REQUIRED) endif() diff --git a/CMakeModules/DownloadExternals.cmake b/CMakeModules/DownloadExternals.cmake index 88fa183061..6c4afc03be 100644 --- a/CMakeModules/DownloadExternals.cmake +++ b/CMakeModules/DownloadExternals.cmake @@ -51,15 +51,6 @@ function(download_bundled_external remote_path lib_name cpm_key prefix_var versi message(STATUS "Using bundled binaries at ${${cpm_key}_SOURCE_DIR}") endfunction() -function(download_win_archives) - set(FORCE_WIN_ARCHIVES ON) - set(FFmpeg_EXT_NAME "ffmpeg-7.1.1") - - download_bundled_external("ffmpeg/" ${FFmpeg_EXT_NAME} "ffmpeg-bundled" "" 7.1.1) - - set(FORCE_WIN_ARCHIVES OFF) -endfunction() - function(download_moltenvk_external platform version) set(MOLTENVK_DIR "${CMAKE_BINARY_DIR}/externals/MoltenVK") set(MOLTENVK_TAR "${CMAKE_BINARY_DIR}/externals/MoltenVK.tar") diff --git a/README.md b/README.md index 2378c206cd..1a4f017576 100644 --- a/README.md +++ b/README.md @@ -57,6 +57,8 @@ If you would like to contribute, we are open to new developers and pull requests See the [sign-up instructions](docs/SIGNUP.md) for information on registration. +Alternatively, if you wish to add translations, go to the [Eden project on Transifex](https://app.transifex.com/edenemu/eden-emulator) and review [the translations README](./dist/languages). + ## Building See the [General Build Guide](docs/Build.md) diff --git a/cpmfile.json b/cpmfile.json index 887e958533..f1fd5ce1cf 100644 --- a/cpmfile.json +++ b/cpmfile.json @@ -4,7 +4,7 @@ "package": "OpenSSL", "name": "openssl", "repo": "crueter-ci/OpenSSL", - "version": "3.5.2", + "version": "3.5.3", "min_version": "1.1.1" }, "boost": { diff --git a/dist/languages/README.md b/dist/languages/README.md index c5ea1ada0e..12f26242ef 100644 --- a/dist/languages/README.md +++ b/dist/languages/README.md @@ -1,3 +1,7 @@ -This directory stores translation patches (TS files) for yuzu Qt frontend. This directory is linked with [yuzu project on transifex](https://www.transifex.com/yuzu-emulator/yuzu), so you can update the translation by executing `tx pull -t -a`. If you want to contribute to the translation, please go the transifex link and submit your translation there. This directory on the main repo will be synchronized with transifex periodically. +This directory stores translation patches (TS files) for yuzu Qt frontend. This directory is linked with the [Eden project on transifex](https://app.transifex.com/edenemu/eden-emulator), so you can update the translation by executing `tx pull -t -a`. If you want to contribute to the translation, please go the transifex link and submit your translation there. This directory on the main repo will be synchronized with transifex periodically. Do not directly open PRs on github to modify the translation. -Do not directly open PRs on github to modify the translation. +When creating/improving translations, please keep in mind: + +- You are responsible for providing accurate translations that do NOT contain illicit content or messages, +- Many of our developers do not speak the languages you may be translating, so will only be able to help with confusions about the source language, +- And bad-faith translations or attempts to insert illicit content may result in an immediate removal of access. diff --git a/dist/languages/ar.ts b/dist/languages/ar.ts index 72ac87ed55..48cc91f4e5 100644 --- a/dist/languages/ar.ts +++ b/dist/languages/ar.ts @@ -13,12 +13,12 @@ - About eden + About Eden - <html><head/><body><p><span style=" font-size:28pt;">eden</span></p></body></html> + <html><head/><body><p><span style=" font-size:28pt;">Eden</span></p></body></html> @@ -34,8 +34,8 @@ p, li { white-space: pre-wrap; } hr { height: 1px; border-width: 0; } li.unchecked::marker { content: "\2610"; } li.checked::marker { content: "\2612"; } -</style></head><body style=" font-family:'Adwaita Sans'; font-size:11pt; font-weight:400; font-style:normal;"> -<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;">eden is an experimental open-source emulator for the Nintendo Switch licensed under GPLv3.0+ which is based on the yuzu emulator which ended development back in March 2024. <br /><br />This software should not be used to play games you have not legally obtained.</span></p></body></html> +</style></head><body style=" font-family:'Noto Sans'; font-size:9pt; font-weight:400; font-style:normal;"> +<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;">Eden is an experimental open-source emulator for the Nintendo Switch licensed under GPLv3.0+ which is based on the yuzu emulator which ended development back in March 2024. <br /><br />This software should not be used to play games you have not legally obtained.</span></p></body></html> @@ -72,32 +72,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 نعم @@ -397,281 +397,643 @@ This would ban both their forum username and their IP address. ConfigurationShared - + % % - + Amiibo editor محرر أميبو - + Controller configuration إعدادات ذراع التحكم - + Data erase محو البيانات - + Error خطأ - - Net connect - - - - + Player select اختيار اللاعب - + Software keyboard لوحة المفاتيح البرمجية - - Mii Edit - - - - + Online web شبكة الإنترنت - - Shop - - - - + Photo viewer عارض الصور - + Offline web الويب غير متصل - - Login share - - - - - Wifi web auth - - - - + My page صفحتي - + Output Engine: محرك الإخراج: - + Output Device: جهاز الإخراج: - + Input Device: جهاز الإدخال: - + Mute audio كتم الصوت - + Volume: الصوت: - + Mute audio when in background كتم الصوت عندما تكون في الخلفية - + + Memory Layout + تخطيط الذاكرة + + + + Limit Speed Percent + الحد من السرعة في المئة + + + + Accuracy: + الصحة: + + + + + Backend: + :الخلفية + + + + Faster FRSQRTE and FRECPE + أسرع تقريبات جذور تربيعية متقابلة ذو نقطة عائمة وتقريبات أرقام متقابلة ذو نقطة عائمة + + + + Disable address space checks + تعطيل عمليات التحقق من مساحة العنوان + + + + API: + واجهة برمجة التطبيقات: + + + + Device: + جهاز: + + + + Resolution: + :الدقة + + + + Fullscreen Mode: + وضع ملء الشاشة: + + + + Aspect Ratio: + تناسب الابعاد: + + + + VSync Mode: + VSync وضع: + + + Accuracy Level: + مستوى الدقة: + + + + Enable Reactive Flushing + تمكين التنظيف التفاعلي + + + + Sync to framerate of video playback + المزامنة مع معدل الإطارات لتشغيل الفيديو + + + + Run the game at normal speed during video playback, even when the framerate is unlocked. + قم بتشغيل اللعبة بالسرعة العادية أثناء تشغيل الفيديو، حتى عندما يكون معدل الإطارات مفتوحًا. + + + + RNG Seed + بذرة الرقم العشوائي RNG + + + + Device Name + اسم الجهاز + + + + Language: + اللغة: + + + + Note: this can be overridden when region setting is auto-select + ملحوظة: قد يتم تجاهل هذا الإعداد عندما يحدد إعداد المنطقة على الإختيار التلقائي + + + + Region: + المنطقة: + + + + Time Zone: + المنطقة الزمنية: + + + + Sound Output Mode: + وضع إخراج الصوت: + + + + Console Mode: + وضع وحدة التحكم: + + + + Prompt for user on game boot + مطالبة المستخدم عند تشغيل اللعبة + + + + Pause emulation when in background + إيقاف المحاكاة مؤقتًا عندما تكون في الخلفية + + + + Confirm before stopping emulation + قم بالتأكيد قبل إيقاف المحاكاة + + + + Hide mouse on inactivity + إخفاء الماوس عند عدم النشاط + + + + Disable controller applet + تعطيل تطبيق التحكم + + + + Enable Gamemode + تمكين وضع اللعبة + + + + Custom frontend + الواجهة الأمامية المخصصة + + + + CPU + المعالج + + + + GPU + وحدة معالجة الرسومات + + + + Uncompressed (Best quality) + Uncompressed (أفضل جودة) + + + + BC1 (Low quality) + BC1 (جودة منخفضة) + + + + BC3 (Medium quality) + BC3 (جودة متوسطة) + + + + OpenGL + OpenGL + + + + Vulkan + Vulkan + + + + Null + لا شيء + + + + GLSL + GLSL + + + + Normal + عادي + + + + High + عالي + + + + Auto + تلقائي + + + + Accurate + دقه + + + + Unsafe + غير آمن + + + + NCE + NCE + + + + Borderless Windowed + نوافذ بلا حدود + + + + Exclusive Fullscreen + شاشة كاملة حصرية + + + + No Video Output + لا يوجد إخراج فيديو + + + + 0.5X (360p/540p) [EXPERIMENTAL] + 0.5X (360p/540p) [تجريبي] + + + + 0.75X (540p/810p) [EXPERIMENTAL] + 0.75X (540p/810p) [تجريبي] + + + + 1X (720p/1080p) + 1X (720p/1080p) + + + + 1.5X (1080p/1620p) [EXPERIMENTAL] + 1.5X (1080p/1620p) [تجريبي] + + + + 2X (1440p/2160p) + 2X (1440p/2160p) + + + + 3X (2160p/3240p) + 3X (2160p/3240p) + + + + 4X (2880p/4320p) + 4X (2880p/4320p) + + + + 5X (3600p/5400p) + 5X (3600p/5400p) + + + + 6X (4320p/6480p) + 6X (4320p/6480p) + + + + 7X (5040p/7560p) + 7X (5040p/7560p) + + + + 8X (5760p/8640p) + 8X (5760p/8640p) + + + + Nearest Neighbor + Nearest Neighbor + + + + Bilinear + Bilinear + + + + Bicubic + Bicubic + + + + Gaussian + Gaussian + + + + ScaleForce + ScaleForce + + + + AMD FidelityFX™️ Super Resolution + AMD FidelityFX™️ Super Resolution + + + + None + لا شيء + + + + FXAA + FXAA + + + + SMAA + SMAA + + + + Default (16:9) + (16:9) افتراضي + + + + Force 4:3 + 4:3 فرض + + + + Force 21:9 + 21:9 فرض + + + + Force 16:10 + 16:10 فرض + + + + Stretch to Window + تمتد إلى النافذة + + + + Automatic + تلقائي + + + + + Default + افتراضي + + + + Net connect + + + + + Mii Edit + + + + + Shop + + + + + Login share + + + + + Wifi web auth + + + + Multicore CPU Emulation - + This option increases CPU emulation thread use from 1 to the Switch’s maximum of 4. This is mainly a debug option and shouldn’t be disabled. - - Memory Layout - تخطيط الذاكرة - - - + Increases the amount of emulated RAM from the stock 4GB of the retail Switch to the developer kit's 8/6GB. It’s doesn’t improve stability or performance and is intended to let big texture mods fit in emulated RAM. Enabling it will increase memory use. It is not recommended to enable unless a specific game with a texture mod needs it. - - Limit Speed Percent - الحد من السرعة في المئة - - - + Controls the game's maximum rendering speed, but it’s up to each game if it runs faster or not. 200% for a 30 FPS game is 60 FPS, and for a 60 FPS game it will be 120 FPS. Disabling it means unlocking the framerate to the maximum your PC can reach. - + Synchronize Core Speed - + Synchronizes CPU core speed with the game's maximum rendering speed to boost FPS without affecting game speed (animations, physics, etc.). Compatibility varies by game; many (especially older ones) may not respond well. Can help reduce stuttering at lower framerates. - - Accuracy: - الصحة: - - - + This setting controls the accuracy of the emulated CPU. Don't change this unless you know what you are doing. - - - Backend: - :الخلفية - - - + Fast CPU Time - + Overclocks the emulated CPU to remove some FPS limiters. Weaker CPUs may see reduced performance, and certain games may behave improperly. Use Boost (1700MHz) to run at the Switch's highest native clock, or Fast (2000MHz) to run at 2x clock. - + + Custom CPU Ticks + + + + + Set a custom value of CPU ticks. Higher values can increase performance, but may also cause the game to freeze. A range of 77–21000 is recommended. + + + + + Enable Host MMU Emulation (fastmem) + + + + + This optimization speeds up memory accesses by the guest program. +Enabling it causes guest memory reads/writes to be done directly into memory and make use of Host's MMU. +Disabling this forces all memory accesses to use Software MMU Emulation. + + + + Unfuse FMA (improve performance on CPUs without FMA) - + This option improves speed by reducing accuracy of fused-multiply-add instructions on CPUs without native FMA support. - - Faster FRSQRTE and FRECPE - أسرع تقريبات جذور تربيعية متقابلة ذو نقطة عائمة وتقريبات أرقام متقابلة ذو نقطة عائمة - - - + This option improves the speed of some approximate floating-point functions by using less accurate native approximations. - + Faster ASIMD instructions (32 bits only) - + This option improves the speed of 32 bits ASIMD floating-point functions by running with incorrect rounding modes. - + Inaccurate NaN handling - + This option improves speed by removing NaN checking. Please note this also reduces accuracy of certain floating-point instructions. - - Disable address space checks - تعطيل عمليات التحقق من مساحة العنوان - - - + This option improves speed by eliminating a safety check before every memory read/write in guest. Disabling it may allow a game to read/write the emulator's memory. - + Ignore global monitor - + This option improves speed by relying only on the semantics of cmpxchg to ensure safety of exclusive access instructions. Please note this may result in deadlocks and other race conditions. - - API: - واجهة برمجة التطبيقات: - - - + Switches between the available graphics APIs. Vulkan is recommended in most cases. - - Device: - جهاز: - - - + This setting selects the GPU to use with the Vulkan backend. - + Shader Backend: - + The shader backend to use for the OpenGL renderer. GLSL is the fastest in performance and the best in rendering accuracy. GLASM is a deprecated NVIDIA-only backend that offers much better shader building performance at the cost of FPS and rendering accuracy. @@ -679,86 +1041,71 @@ SPIR-V compiles the fastest, but yields poor results on most GPU drivers. - - Resolution: - :الدقة - - - + Forces the game to render at a different resolution. Higher resolutions require much more VRAM and bandwidth. Options lower than 1X can cause rendering issues. - + Window Adapting Filter: - + FSR Sharpness: - + Determines how sharpened the image will look while using FSR’s dynamic contrast. - + Anti-Aliasing Method: - + The anti-aliasing method to use. SMAA offers the best quality. FXAA has a lower performance impact and can produce a better and more stable picture under very low resolutions. - - Fullscreen Mode: - وضع ملء الشاشة: - - - + The method used to render the window in fullscreen. Borderless offers the best compatibility with the on-screen keyboard that some games request for input. Exclusive fullscreen may offer better performance and better Freesync/Gsync support. - - Aspect Ratio: - تناسب الابعاد: - - - + Stretches the game to fit the specified aspect ratio. Switch games only support 16:9, so custom game mods are required to get other ratios. Also controls the aspect ratio of captured screenshots. - + Use disk pipeline cache - + Allows saving shaders to storage for faster loading on following game boots. Disabling it is only intended for debugging. - + Optimize SPIRV output shader - + Runs an additional optimization pass over generated SPIRV shaders. Will increase time required for shader compilation. May slightly improve performance. @@ -766,35 +1113,35 @@ This feature is experimental. - + Use asynchronous GPU emulation - + Uses an extra CPU thread for rendering. This option should always remain enabled. - + NVDEC emulation: - + Specifies how videos should be decoded. It can either use the CPU or the GPU for decoding, or perform no decoding at all (black screen on videos). In most cases, GPU decoding provides the best performance. - + ASTC Decoding Method: - + This option controls how ASTC textures should be decoded. CPU: Use the CPU for decoding, slowest but safest method. GPU: Use the GPU's compute shaders to decode ASTC textures, recommended for most games and users. @@ -803,33 +1150,39 @@ stuttering at the cost of rendering issues while the texture is being decoded. - + ASTC Recompression Method: - + Almost all desktop and laptop dedicated GPUs lack support for ASTC textures, forcing the emulator to decompress to an intermediate format any card supports, RGBA8. This option recompresses RGBA8 to either the BC1 or BC3 format, saving VRAM but negatively affecting image quality. - + VRAM Usage Mode: - - Selects whether the emulator should prefer to conserve memory or make maximum usage of available video memory for performance. Has no effect on integrated graphics. Aggressive mode may severely impact the performance of other applications such as recording software. + + Selects whether the emulator should prefer to conserve memory or make maximum usage of available video memory for performance. +Aggressive mode may severely impact the performance of other applications such as recording software. - - VSync Mode: - VSync وضع: + + Skip CPU Inner Invalidation + - + + Skips certain CPU-side cache invalidations during memory updates, reducing CPU usage and improving it's performance. This may cause glitches or crashes on some games. + + + + FIFO (VSync) does not drop frames or exhibit tearing but is limited by the screen refresh rate. FIFO Relaxed is similar to FIFO but allows tearing as it recovers from a slow down. Mailbox can have lower latency than FIFO and does not tear but may drop frames. @@ -837,1040 +1190,784 @@ Immediate (no synchronization) just presents whatever is available and can exhib - + + Sync Memory Operations + + + + + Ensures data consistency between compute and memory operations. +This option should fix issues in some games, but may also reduce performance in some cases. +Unreal Engine 4 games often see the most significant changes thereof. + + + + Enable asynchronous presentation (Vulkan only) - + Slightly improves performance by moving presentation to a separate CPU thread. - + Force maximum clocks (Vulkan only) - + Runs work in the background while waiting for graphics commands to keep the GPU from lowering its clock speed. - + Anisotropic Filtering: - + Controls the quality of texture rendering at oblique angles. It’s a light setting and safe to set at 16x on most GPUs. - - Accuracy Level: - مستوى الدقة: - - - - GPU emulation accuracy. -Most games render fine with Normal, but High is still required for some. -Particles tend to only render correctly with High accuracy. -Extreme should only be used for debugging. -This option can be changed while playing. -Some games may require booting on high to render properly. + + GPU Accuracy: - + + Controls the GPU emulation accuracy. +Most games render fine with Normal, but High is still required for some. +Particles tend to only render correctly with High accuracy. +Extreme should only be used as a last resort. + + + + + DMA Accuracy: + + + + + Controls the DMA precision accuracy. Safe precision can fix issues in some games, but it can also impact performance in some cases. +If unsure, leave this on Default. + + + + Use asynchronous shader building (Hack) - + Enables asynchronous shader compilation, which may reduce shader stutter. This feature is experimental. - + + Fast GPU Time (Hack) + + + + + Overclocks the emulated GPU to increase dynamic resolution and render distance. +Use 128 for maximal performance and 512 for maximal graphics fidelity. + + + + Use Vulkan pipeline cache - + Enables GPU vendor-specific pipeline cache. This option can improve shader loading time significantly in cases where the Vulkan driver does not store pipeline cache files internally. - + Enable Compute Pipelines (Intel Vulkan Only) - + Enable compute pipelines, required by some games. This setting only exists for Intel proprietary drivers, and may crash if enabled. Compute pipelines are always enabled on all other drivers. - - Enable Reactive Flushing - تمكين التنظيف التفاعلي - - - + Uses reactive flushing instead of predictive flushing, allowing more accurate memory syncing. - - Sync to framerate of video playback - المزامنة مع معدل الإطارات لتشغيل الفيديو - - - - Run the game at normal speed during video playback, even when the framerate is unlocked. - قم بتشغيل اللعبة بالسرعة العادية أثناء تشغيل الفيديو، حتى عندما يكون معدل الإطارات مفتوحًا. - - - + Barrier feedback loops - + Improves rendering of transparency effects in specific games. - - RNG Seed - بذرة الرقم العشوائي RNG + + RAII + - + + A method of automatic resource management in Vulkan that ensures proper release of resources when they are no longer needed, but may cause crashes in bundled games. + + + + + Extended Dynamic State + + + + + Controls the number of features that can be used in Extended Dynamic State. +Higher numbers allow for more features and can increase performance, but may cause issues with some drivers and vendors. +The default value may vary depending on your system and hardware capabilities. +This value can be changed until stability and a better visual quality are achieved. + + + + + Provoking Vertex + + + + + Improves lighting and vertex handling in certain games. +Only Vulkan 1.0+ devices support this extension. + + + + + Descriptor Indexing + + + + + Improves texture & buffer handling and the Maxwell translation layer. +Some Vulkan 1.1+ and all 1.2+ devices support this extension. + + + + + Sample Shading + + + + + Allows the fragment shader to execute per sample in a multi-sampled fragment instead once per fragment. Improves graphics quality at the cost of some performance. +Higher values improve quality more but also reduce performance to a greater extent. + + + + Controls the seed of the random number generator. Mainly used for speedrunning purposes. - - Device Name - اسم الجهاز - - - + The name of the emulated Switch. - + Custom RTC Date: - + This option allows to change the emulated clock of the Switch. Can be used to manipulate time in games. - - Language: - اللغة: - - - - Note: this can be overridden when region setting is auto-select - ملحوظة: قد يتم تجاهل هذا الإعداد عندما يحدد إعداد المنطقة على الإختيار التلقائي - - - - Region: - المنطقة: - - - + The region of the emulated Switch. - - Time Zone: - المنطقة الزمنية: - - - + The time zone of the emulated Switch. - - Sound Output Mode: - وضع إخراج الصوت: - - - - Console Mode: - وضع وحدة التحكم: - - - + Selects if the console is emulated in Docked or Handheld mode. Games will change their resolution, details and supported controllers and depending on this setting. Setting to Handheld can help improve performance for low end systems. - - Prompt for user on game boot - مطالبة المستخدم عند تشغيل اللعبة - - - - Pause emulation when in background - إيقاف المحاكاة مؤقتًا عندما تكون في الخلفية - - - - Fast GPU Time (Hack) + + Ask to select a user profile on each boot, useful if multiple people use Eden on the same PC. - - Overclocks the emulated GPU to increase dynamic resolution and render distance. -Use 128 for maximal performance and 512 for maximal graphics fidelity. + + This setting pauses Eden when focusing other windows. - - Extended Dynamic State - - - - - Enables the VkExtendedDynamicState* extensions. -Higher dynamic states will generally improve performance, but may cause issues on certain games or devices. - - - - - Provoking Vertex - - - - - Improves lighting and vertex handling in certain games. -Only Vulkan 1.0+ devices support this extension. - - - - - Descriptor Indexing - - - - - Improves texture & buffer handling and the Maxwell translation layer. -Some Vulkan 1.1+ and all 1.2+ devices support this extension. - - - - - Ask to select a user profile on each boot, useful if multiple people use eden on the same PC. - - - - - This setting pauses eden when focusing other windows. - - - - - Confirm before stopping emulation - قم بالتأكيد قبل إيقاف المحاكاة - - - + This setting overrides game prompts asking to confirm stopping the game. Enabling it bypasses such prompts and directly exits the emulation. - - Hide mouse on inactivity - إخفاء الماوس عند عدم النشاط - - - + This setting hides the mouse after 2.5s of inactivity. - - Disable controller applet - تعطيل تطبيق التحكم - - - + Forcibly disables the use of the controller applet by guests. When a guest attempts to open the controller applet, it is immediately closed. - + Check for updates - + Whether or not to check for updates upon startup. - - Enable Gamemode - تمكين وضع اللعبة - - - - Custom frontend - الواجهة الأمامية المخصصة - - - + Real applet - + Never - + On Load - + Always - - CPU - المعالج - - - - GPU - وحدة معالجة الرسومات - - - + CPU Asynchronous - - Uncompressed (Best quality) - Uncompressed (أفضل جودة) - - - - BC1 (Low quality) - BC1 (جودة منخفضة) - - - - BC3 (Medium quality) - BC3 (جودة متوسطة) - - - + Conservative - + Aggressive - - OpenGL - OpenGL - - - - Vulkan - Vulkan - - - - Null - لا شيء - - - - GLSL - GLSL - - - + GLASM (Assembly Shaders, NVIDIA Only) - + SPIR-V (Experimental, AMD/Mesa Only) - - Normal - عادي - - - - High - عالي - - - + Extreme - - Auto - تلقائي + + Unsafe (fast) + - - Accurate - دقه + + Safe (stable) + - - Unsafe - غير آمن - - - + Paranoid (disables most optimizations) - + Dynarmic - - NCE - NCE - - - - Borderless Windowed - نوافذ بلا حدود - - - - Exclusive Fullscreen - شاشة كاملة حصرية - - - - No Video Output - لا يوجد إخراج فيديو - - - + CPU Video Decoding - + GPU Video Decoding (Default) - + 0.25X (180p/270p) [EXPERIMENTAL] - - 0.5X (360p/540p) [EXPERIMENTAL] - 0.5X (360p/540p) [تجريبي] - - - - 0.75X (540p/810p) [EXPERIMENTAL] - 0.75X (540p/810p) [تجريبي] - - - - 1X (720p/1080p) - 1X (720p/1080p) - - - - 1.5X (1080p/1620p) [EXPERIMENTAL] - 1.5X (1080p/1620p) [تجريبي] - - - - 2X (1440p/2160p) - 2X (1440p/2160p) - - - - 3X (2160p/3240p) - 3X (2160p/3240p) - - - - 4X (2880p/4320p) - 4X (2880p/4320p) - - - - 5X (3600p/5400p) - 5X (3600p/5400p) - - - - 6X (4320p/6480p) - 6X (4320p/6480p) - - - - 7X (5040p/7560p) - 7X (5040p/7560p) - - - - 8X (5760p/8640p) - 8X (5760p/8640p) - - - - Nearest Neighbor - Nearest Neighbor - - - - Bilinear - Bilinear - - - - Bicubic - Bicubic - - - - Gaussian - Gaussian - - - - ScaleForce - ScaleForce - - - - AMD FidelityFX™️ Super Resolution - AMD FidelityFX™️ Super Resolution - - - + Area - - None - لا شيء - - - - FXAA - FXAA - - - - SMAA - SMAA - - - - Default (16:9) - (16:9) افتراضي - - - - Force 4:3 - 4:3 فرض - - - - Force 21:9 - 21:9 فرض - - - - Force 16:10 - 16:10 فرض - - - - Stretch to Window - تمتد إلى النافذة - - - - Automatic - تلقائي - - - - Default - افتراضي - - - + 2x 2x - + 4x 4x - + 8x 8x - + 16x 16x - + Japanese (日本語) اليابانية (日本語) - + American English - + French (français) الفرنسية الأوروبية (Français) - + German (Deutsch) الألمانية (Deutsch) - + Italian (italiano) الإيطالية (Italiano) - + Spanish (español) الإسبانية الأوروبية (Español) - + Chinese الصينية المبسطة - + Korean (한국어) الكورية (한국어) - + Dutch (Nederlands) الهولندية (Nederlands) - + Portuguese (português) البرتغالية الأوروبية (Português) - + Russian (Русский) الروسية (Русский) - + Taiwanese الصينية التقليدية (تايوان) - + British English الإنكليزية البريطانية - + Canadian French الفرنسية الأمريكية (كندا) - + Latin American Spanish الإسبانية الأمريكية (أمريكا اللاتينية) - + Simplified Chinese الصينية المبسطة - + Traditional Chinese (正體中文) الصينية التقليدية (正體中文) - + Brazilian Portuguese (português do Brasil) - - + + Serbian (српски) + + + + + Japan اليابان - + USA الولايات المتحدة الأمريكية - + Europe أوروبا - + Australia أستراليا - + China الصين - + Korea كوريا - + Taiwan تايوان - + Auto (%1) Auto select time zone تلقائي (%1) - + Default (%1) Default time zone افتراضي (%1) - + CET - + CST6CDT - + Cuba - + EET - + Egypt - + Eire - + EST - + EST5EDT - + GB GB - + GB-Eire - + GMT - + GMT+0 - + GMT-0 - + GMT0 - + Greenwich - + Hongkong - + HST - + Iceland - + Iran - + Israel - + Jamaica - + Kwajalein - + Libya - + MET - + MST - + MST7MDT - + Navajo - + NZ - + NZ-CHAT - + Poland - + Portugal - + PRC - + PST8PDT - + ROC - + ROK - + Singapore - + Turkey - + UCT - + Universal - + UTC - + W-SU - + WET - + Zulu - + Mono صوت مونو - + Stereo صوت ستيريو - + Surround صوت سيراوند - + 4GB DRAM (Default) 4GB DRAM (افتراضي) - + 6GB DRAM (Unsafe) 6GB DRAM (غير آمنة) - + 8GB DRAM - + 10GB DRAM (Unsafe) - + 12GB DRAM (Unsafe) - + Low (128) - + Medium (256) - + High (512) @@ -1879,37 +1976,37 @@ When a guest attempts to open the controller applet, it is immediately closed.8GB DRAM (غير آمنة) - + Docked مركب بالمنصة - + Handheld محمول - + Boost (1700MHz) - + Fast (2000MHz) - + Always ask (Default) Always ask (افتراضي) - + Only if game specifies not to stop فقط إذا حددت اللعبة عدم التوقف - + Never ask لا تسأل أبدا @@ -2234,27 +2331,27 @@ When a guest attempts to open the controller applet, it is immediately closed.تسجيل - + Open Log Location فتح موقع السجل - + Global Log Filter مرشح السجل العالمي - + When checked, the max size of the log increases from 100 MB to 1 GB عند تحديده، يزيد الحد الأقصى لحجم السجل من 100 ميجا بايت إلى 1 جيجا بايت - + Enable Extended Logging** تفعيل السجل المطول - + Show Log in Console عرض السجل في الطرفية @@ -2400,7 +2497,7 @@ When a guest attempts to open the controller applet, it is immediately closed. - **This will be reset automatically when eden closes. + **This will be reset automatically when Eden closes. @@ -2462,7 +2559,7 @@ When a guest attempts to open the controller applet, it is immediately closed.** سيتم إعادة ضبط هذا تلقائيًا عند إغلاق يوزو. - + Web applet not compiled لم يتم تجميع برنامج الويب @@ -2512,7 +2609,7 @@ When a guest attempts to open the controller applet, it is immediately closed. - eden Configuration + Eden Configuration @@ -2521,88 +2618,88 @@ When a guest attempts to open the controller applet, it is immediately closed.بعض الإعدادات تتوفر عندما تكون اللعبة غير مشغلة. - + Applets - - + + Audio الصوت - - + + CPU المعالج - + Debug تصحيح الأخطاء - + Filesystem نظام الملفات - - + + General عام - - + + Graphics الرسومات - + GraphicsAdvanced الرسومات المتقدمة - + GraphicsExtensions - + Hotkeys الأزرار السريعة - - + + Controls ذراع التحكم - + Profiles ملفات المستخدمين - + Network الشبكة - - + + System النظام - + Game List قائمة الألعاب - + Web الشبكة @@ -2700,51 +2797,45 @@ When a guest attempts to open the controller applet, it is immediately closed. - - - Reset Metadata Cache إعادة تعيين الذاكرة المؤقتة للبيانات الوصفية - + Select Emulated NAND Directory... الذي تمت محاكاته NAND حدد مجلد - + Select Emulated SD Directory... حدد مجلد بطاقة الذاكرة الذي تمت محاكاته - + Select Gamecard Path... أختر مسار بطاقة اللعبة - + Select Dump Directory... حدد مجلد التفريغ - + Select Mod Load Directory... حدد مجلد تحميل التعديل - The metadata cache is already empty. - الذاكرة مؤقتة للبيانات الوصفية لقائمة الألعاب فارغة مسبقا. + الذاكرة مؤقتة للبيانات الوصفية لقائمة الألعاب فارغة مسبقا. - The operation completed successfully. - أكتملت العملية بنجاح + أكتملت العملية بنجاح - The metadata cache couldn't be deleted. It might be in use or non-existent. - لا يمكن حذف الذاكرة المؤقتة للبيانات الوصفية لقائمة الألعاب. قد تكون مستخدمة الآن أو غير موجودة. + لا يمكن حذف الذاكرة المؤقتة للبيانات الوصفية لقائمة الألعاب. قد تكون مستخدمة الآن أو غير موجودة. @@ -2775,12 +2866,12 @@ When a guest attempts to open the controller applet, it is immediately closed.يوزو - - eden + + Eden - + This reset all settings and remove all per-game configurations. This will not delete game directories, profiles, or input profiles. Proceed? يؤدي هذا إلى إعادة تعيين جميع الإعدادات وإزالة جميع التكوينات لكل لعبة. لن يؤدي هذا إلى حذف أدلة اللعبة أو الملفات الشخصية أو ملفات تعريف الإدخال. يتابع؟ @@ -2813,33 +2904,33 @@ When a guest attempts to open the controller applet, it is immediately closed.:لون الخلفية - + % FSR sharpening percentage (e.g. 50%) % - + Off معطل - + VSync Off VSync معطل - + Recommended مستحسن - + On مفعل - + VSync On VSync مفعل @@ -2876,14 +2967,18 @@ When a guest attempts to open the controller applet, it is immediately closed. - Vulkan Extension Settings + Vulkan Extensions Settings - - While it's recommended to use state 3, some games may perform better on lower states. Setting to 0 (disabled) may also break games. -If your GPU is older (i.e. RX570/580 or older), it may not support these features. If this is the case, set the slider to 0 and uncheck all boxes. -These settings are experimental, and may cause black screens. If your games fail to boot or are stuck on a black screen, change these settings around. + + % + Sample Shading percentage (e.g. 50%) + % + + + + Extended Dynamic State is disabled on macOS due to MoltenVK compatibility issues that cause black screens. @@ -2915,75 +3010,75 @@ These settings are experimental, and may cause black screens. If your games fail استعادة الافتراضي - + Action فعل - + Hotkey زر إختصار - + Controller Hotkey مفتاح التحكم السريع - - - + + + Conflicting Key Sequence تسلسل أزرار متناقض مع الموجود - - + + The entered key sequence is already assigned to: %1 سبق و تم تعيين تسلسل الأزرار الذي أدخلته، مع: %1 - + [waiting] [بانتظار الرد] - + Invalid غير صالح - + Invalid hotkey settings إعدادات مفتاح الاختصار غير صالحة - + An error occurred. Please report this issue on github. حدث خطأ. يرجى الإبلاغ عن هذه المشكلة على جيثب. - + Restore Default استعادة الافتراضي - + Clear مسح - + Conflicting Button Sequence - + The default button sequence is already assigned to: %1 - + The default key sequence is already assigned to: %1 %1 تم بالفعل تعيين تسلسل المفاتيح الافتراضي إلى @@ -3303,7 +3398,7 @@ These settings are experimental, and may cause black screens. If your games fail - Requires restarting eden + Requires restarting Eden @@ -3458,7 +3553,7 @@ These settings are experimental, and may cause black screens. If your games fail - + Left Stick العصا اليسرى @@ -3568,14 +3663,14 @@ These settings are experimental, and may cause black screens. If your games fail - + L L - + ZL ZL @@ -3594,7 +3689,7 @@ These settings are experimental, and may cause black screens. If your games fail - + Plus زائد @@ -3607,15 +3702,15 @@ These settings are experimental, and may cause black screens. If your games fail - - + + R R - + ZR ZR @@ -3660,7 +3755,7 @@ These settings are experimental, and may cause black screens. If your games fail - + Right Stick العصا اليمنى @@ -3675,241 +3770,241 @@ These settings are experimental, and may cause black screens. If your games fail تعديل - - - - + + + + Clear مسح - - - - - + + + + + [not set] [ غير معد ] - - - + + + Invert button عكس الزر - - + + Toggle button زر التبديل - + Turbo button - - + + Invert axis عكس المحاور - - - + + + Set threshold تعيين الحد الأدنى - - + + Choose a value between 0% and 100% - + Toggle axis تبديل المحور - + Set gyro threshold - + Calibrate sensor معايرة الاستشعار - + Map Analog Stick خريطة عصا التناظرية - + After pressing OK, first move your joystick horizontally, and then vertically. To invert the axes, first move your joystick vertically, and then horizontally. - + Center axis - - + + Deadzone: %1% المنطقة الميتة: %1% - - + + Modifier Range: %1% %1% :نطاق التعديل - - + + Pro Controller Pro Controller - + Dual Joycons جوي كون ثنائي - + Left Joycon جوي كون يسار - + Right Joycon جوي كون يمين - + Handheld محمول - + GameCube Controller GameCube أداة تحكم - + Poke Ball Plus Poke Ball Plus - + NES Controller أداة تحكم NES - + SNES Controller أداة تحكم SNES - + N64 Controller أداة تحكم N64 - + Sega Genesis Sega Genesis - + Start / Pause بدء / إيقاف مؤقت - + Z Z - + Control Stick عصا التحكم - + C-Stick C-عصا - + Shake! هزة! - + [waiting] [بانتظار الرد] - + New Profile الملف الشخصي الجديد - + Enter a profile name: :أدخل اسم الملف الشخصي - - + + Create Input Profile إنشاء ملف تعريف الإدخال - + The given profile name is not valid! اسم الملف الشخصي المحدد غير صالح! - + Failed to create the input profile "%1" "%1" فشل في إنشاء ملف تعريف الإدخال - + Delete Input Profile حذف ملف تعريف الإدخال - + Failed to delete the input profile "%1" "%1" فشل في مسح ملف تعريف الإدخال - + Load Input Profile تحميل ملف تعريف الإدخال - + Failed to load the input profile "%1" "%1" فشل في تحميل ملف تعريف الإدخال - + Save Input Profile حفظ ملف تعريف الإدخال - + Failed to save the input profile "%1" "%1" فشل في حفظ ملف تعريف الإدخال @@ -3966,7 +4061,7 @@ To invert the axes, first move your joystick vertically, and then horizontally.< - + Configure تعديل @@ -4002,7 +4097,7 @@ To invert the axes, first move your joystick vertically, and then horizontally.< - + Test إختبار @@ -4021,7 +4116,7 @@ To invert the axes, first move your joystick vertically, and then horizontally.< <a href='https://yuzu-emu.org/wiki/using-a-controller-or-android-phone-for-motion-or-touch-input'><span style="text-decoration: underline; color:#039be5;">معرفة المزيد</span></a> - + %1:%2 %1:%2 @@ -4030,77 +4125,77 @@ To invert the axes, first move your joystick vertically, and then horizontally.< يوزو - + <a href='https://eden-emulator.github.io/wiki/using-a-controller-or-android-phone-for-motion-or-touch-input'><span style="text-decoration: underline; color:#039be5;">Learn More</span></a> - + Port number has invalid characters يحتوي رقم المنفذ على أحرف غير صالحة - - - - - - - eden + + + + + + + Eden - + Port has to be in range 0 and 65353 يجب أن يكون المنفذ في النطاق 0 و 65353 - + IP address is not valid غير صالح IP عنوان - + This UDP server already exists - + Unable to add more than 8 servers غير قادر على إضافة أكثر من 8 خوادم - + 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> يرجى التحقق من إعداد الخادم بشكل صحيح ومن صحة العنوان والمنفذ. - + UDP Test or calibration configuration is in progress.<br>Please wait for them to finish. @@ -4226,7 +4321,12 @@ Current values are %1% and %2% respectively. واجهة الشبكة - + + Enable Airplane Mode + + + + None الاسم @@ -4284,52 +4384,52 @@ Current values are %1% and %2% respectively. بعض الإعدادات تتوفر عند عدم تشغيل اللعبة - + Add-Ons الاضافات - + System النظام - + CPU المعالج - + Graphics الرسومات - + Adv. Graphics الرسومات المتقدمة - + GPU Extensions - + Audio الصوت - + Input Profiles ملفات تعريف الإدخال - + Linux Linux - + Properties خصائص @@ -4347,12 +4447,12 @@ Current values are %1% and %2% respectively. الاضافات - + Patch Name اسم الرقعة - + Version إصدار @@ -4390,27 +4490,32 @@ Current values are %1% and %2% respectively. تعيين صورة - + + Select Avatar + + + + Add إضافة - + Rename تسمية - + Remove إزالة - + Profile management is available only when game is not running. إدارة الملف الشخصي متاحة فقط عندما لا تكون اللعبة قيد التشغيل. - + %1 %2 %1 is the profile username, %2 is the formatted UUID (e.g. 00112233-4455-6677-8899-AABBCCDDEEFF)) @@ -4418,100 +4523,185 @@ Current values are %1% and %2% respectively. %2 - + Enter Username أدخل اسم المستخدم - + Users المستخدمين - + Enter a username for the new user: :أدخل اسم مستخدم للمستخدم الجديد - + Enter a new username: :أدخل اسم مستخدم جديد - + + Error saving user image + + + + + Unable to save image to file + + + + Select User Image اختر صورة المستخدم - - JPEG Images (*.jpg *.jpeg) - صور JPEG (*.jpg *.jpeg) + + Image Formats (*.jpg *.jpeg *.png *.bmp) + - + + No firmware available + لا توجد برامج ثابتة متاحة + + + + Please install the firmware to use firmware avatars. + + + + + + Error loading archive + + + + + Archive is not available. Please install/reinstall firmware. + + + + + Archive does not contain romfs. It is probably corrupt. + + + + + Error extracting archive + + + + + Archive could not be extracted. It is probably corrupt. + + + + + Error finding image directory + + + + + Failed to find image directory in the archive. + + + + + No images found + + + + + No avatar images were found in the archive. + + + + JPEG Images (*.jpg *.jpeg) + صور JPEG (*.jpg *.jpeg) + + + Error deleting image خطأ في حذف الصورة - + Error occurred attempting to overwrite previous image at: %1. %1 حدث خطأ أثناء محاولة الكتابة فوق الصورة السابقة في - + Error deleting file خطأ في حذف الملف - + Unable to delete existing file: %1. %1 غير قادر على حذف الملف الموجود - + Error creating user image directory خطأ في إنشاء مجلد صورة المستخدم - + Unable to create directory %1 for storing user images. - Error copying user image - حدث خطأ أثناء نسخ صورة المستخدم + حدث خطأ أثناء نسخ صورة المستخدم - - Unable to copy image from %1 to %2 + Error resizing user image + خطأ في تغيير حجم صورة المستخدم + + + Unable to resize image + غير قادر على تغيير حجم الصورة + + + + ConfigureProfileManagerAvatarDialog + + + Select - - Error resizing user image - خطأ في تغيير حجم صورة المستخدم + + Cancel + إلغاء - - Unable to resize image - غير قادر على تغيير حجم الصورة + + Background Color + + + + + Select Firmware Avatar + ConfigureProfileManagerDeleteDialog - + Delete this user? All of the user's save data will be deleted. حذف هذا المستخدم؟ سيتم حذف جميع بيانات الحفظ الخاصة بالمستخدم. - + Confirm Delete تأكيد الحذف - + Name: %1 UUID: %2 الاسم: %1 @@ -4564,7 +4754,7 @@ UUID: %2 - + Enable تفعيل @@ -4575,7 +4765,7 @@ UUID: %2 - + Not connected غير متصل @@ -4585,63 +4775,63 @@ UUID: %2 استعادة الافتراضي - + Clear مسح - + [not set] [ غير معد ] - + Invert axis عكس المحاور - - + + Deadzone: %1% المنطقة الميتة: %1% - + Error enabling ring input - + Direct Joycon driver is not enabled لم يتم تمكين برنامج تشغيل جوي كون المباشر - + Configuring تكوين - + The current mapped device doesn't support the ring controller - + The current mapped device doesn't have a ring attached - + The current mapped device is not connected الجهاز المعين الحالي غير متصل - + Unexpected driver result %1 %1 نتيجة برنامج التشغيل غير متوقع - + [waiting] [بانتظار الرد] @@ -4679,7 +4869,7 @@ UUID: %2 - <html><head/><body><p>Reads controller input from scripts in the same format as TAS-nx scripts.<br/>For a more detailed explanation, please consult the <a href="https://eden-emulator.github.io/help/feature/tas/"><span style=" text-decoration: underline; color:#039be5;">help page</span></a> on the eden website.</p></body></html> + <html><head/><body><p>Reads controller input from scripts in the same format as TAS-nx scripts.<br/>For a more detailed explanation, please consult the <a href="https://eden-emulator.github.io/help/feature/tas/"><span style=" text-decoration: underline; color:#039be5;">help page</span></a> on the Eden website.</p></body></html> @@ -4731,12 +4921,12 @@ UUID: %2 ConfigureTasDialog - + TAS Configuration - + Select TAS Load Directory... @@ -4846,7 +5036,7 @@ Drag points to change position, or double-click table cells to edit values. - Warning: The settings in this page affect the inner workings of eden's emulated touchscreen. Changing them may result in undesirable behavior, such as the touchscreen partially or not working. You should only use this page if you know what you are doing. + Warning: The settings in this page affect the inner workings of Eden's emulated touchscreen. Changing them may result in undesirable behavior, such as the touchscreen partially or not working. You should only use this page if you know what you are doing. @@ -5166,6 +5356,16 @@ Drag points to change position, or double-click table cells to edit values.Web الشبكة + + + Eden Web Service + + + + + Generate + + yuzu Web Service خدمة الويب يوزو @@ -5175,42 +5375,29 @@ Drag points to change position, or double-click table cells to edit values.بتقديمك اسم المستخدم والرمز المميز الخاص بك، فأنك توافق بالسماح ليوزو بجمع بيانات استخدام إضافية، التي قد تحتوي على بيانات تعريف المستخدم. - - eden Web Service - - - - - By providing your username and token, you agree to allow eden to collect additional usage data, which may include user identifying information. - - - - Verify - تحقق + تحقق - Sign up - تسجيل + تسجيل - + Token: :الرمز - + Username: :اسم المستخدم - What is my token? - ما هو الرمز الخاص بي؟ + ما هو الرمز الخاص بي؟ - + Web Service configuration can only be changed when a public room isn't being hosted. لا يمكن تغيير تكوين خدمة الويب إلا في حالة عدم استضافة غرفة عامة. @@ -5235,12 +5422,12 @@ Drag points to change position, or double-click table cells to edit values.إعادة توليد - + Discord Presence وجود ديسكورد - + Show Current Game in your Discord Status إظهار اللعبة الحالية في حالة ديسكورد الخاصة بك @@ -5249,24 +5436,8 @@ Drag points to change position, or double-click table cells to edit values.<a href='https://yuzu-emu.org/help/feature/telemetry/'><span style="text-decoration: underline; color:#039be5;">معرفة المزيد</span></a> - <a href='https://profile.yuzu-emu.org/'><span style="text-decoration: underline; color:#039be5;">Sign up</span></a> - <a href='https://profile.yuzu-emu.org/'><span style="text-decoration: underline; color:#039be5;">تسجيل</span></a> - - - - <a href='https://evilperson1337.notion.site/Hosting-a-Room-Inside-of-Eden-20457c2edaf680108abac6215a79acdb'><span style="text-decoration: underline; color:#039be5;">What is my token?</span></a> - - - - - Warning - - - - - Verification is currently nonfunctional, instead generate a random 48-character string with only lowercase a-z. - + <a href='https://profile.yuzu-emu.org/'><span style="text-decoration: underline; color:#039be5;">تسجيل</span></a> <a href='https://yuzu-emu.org/wiki/yuzu-web-service/'><span style="text-decoration: underline; color:#039be5;">What is my token?</span></a> @@ -5285,10 +5456,9 @@ Drag points to change position, or double-click table cells to edit values.لم يتم التحقق من الرمز المميز - Unverified, please click Verify before saving configuration Tooltip - لم يتم التحقق منه، الرجاء النقر فوق "تحقق" قبل حفظ التكوين + لم يتم التحقق منه، الرجاء النقر فوق "تحقق" قبل حفظ التكوين Verifying... @@ -5312,20 +5482,67 @@ Drag points to change position, or double-click table cells to edit values.Verification failed. Check that you have entered your token correctly, and that your internet connection is working. فشل التحقق. تأكد من إدخال الرمز المميز الخاص بك بشكل صحيح، ومن أن اتصالك بالإنترنت يعمل. + + + + All Good + Tooltip + + + + + Must be between 4-20 characters + Tooltip + + + + + Must be 48 characters, and lowercase a-z + Tooltip + + ControllerDialog - + Controller P1 P1 ذراع التحكم - + &Controller P1 &P1 ذراع التحكم + + DepsDialog + + + Eden Dependencies + + + + + <html><head/><body><p><span style=" font-size:28pt;">Eden Dependencies</span></p></body></html> + + + + + <html><head/><body><p>The projects that make Eden possible</p></body></html> + + + + + Dependency + + + + + Version + إصدار + + DirectConnect @@ -5431,7 +5648,12 @@ Drag points to change position, or double-click table cells to edit values. - Creating a room failed. Please retry. Restarting eden might be necessary. + Creating a room failed. Please retry. Restarting Eden might be necessary. + + + + + Version mismatch! Please update to the latest version of Eden. If the problem persists, contact the room host and ask them to update the server. @@ -5439,11 +5661,6 @@ Drag points to change position, or double-click table cells to edit values.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 eden. If the problem persists, contact the room host and ask them to update the server. - - Incorrect password. @@ -5501,1203 +5718,1020 @@ Please go to Configure -> System -> Network and make a selection. القياس عن بعد - + Broken Vulkan Installation Detected معطل Vulkan تم اكتشاف تثبيت - + Running a game TRANSLATORS: This string is shown to the user to explain why yuzu needs to prevent the computer from sleeping تشغيل لعبة - + Loading Web Applet... جارٍ تحميل برنامج الويب... - - + + Disable Web Applet تعطيل برنامج الويب - + Disabling the web applet can lead to undefined behavior and should only be used with Super Mario 3D All-Stars. Are you sure you want to disable the web applet? (This can be re-enabled in the Debug settings.) - + The amount of shaders currently being built كمية التظليل التي يتم بناؤها حاليا - + The current selected resolution scaling multiplier. مضاعف قياس الدقة المحدد الحالي. - + Current emulation speed. Values higher or lower than 100% indicate emulation is running faster or slower than a Switch. سرعة المحاكاة الحالية. تشير القيم الأعلى أو الأقل من 100% إلى أن المحاكاة تعمل بشكل أسرع أو أبطأ من سويتش. - + 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 Switch frame, not counting framelimiting or v-sync. For full-speed emulation this should be at most 16.67 ms. - + Unmute إلغاء الكتم - + Mute كتم - + Reset Volume إعادة ضبط مستوى الصوت - + &Clear Recent Files &مسح الملفات الحديثة - + &Continue &استأنف - + &Pause &إيقاف مؤقت - Warning Outdated Game Format - تحذير من تنسيق اللعبة القديم + تحذير من تنسيق اللعبة القديم - - + + Error while loading ROM! ROM خطأ أثناء تحميل - + The ROM format is not supported. غير مدعوم ROM تنسيق. - + An error occurred initializing the video core. حدث خطأ أثناء تهيئة مركز الفيديو. - + Error while loading ROM! %1 %1 signifies a numeric error code. - + Vulkan initialization failed during boot.<br><br>Click <a href='https://eden-emulator.github.io/wiki/faq/#yuzu-starts-with-the-error-broken-vulkan-installation-detected'>here for instructions to fix the issue</a>. - - Game Updates Warning - - - - - The game you are trying to launch is known to have performance or booting issues when updates are applied. Please try increasing the memory layout to 6GB or 8GB if any issues occur.<br><br>Press "OK" to continue launching, or "Cancel" to cancel the launch. - - - - - Don't show again for this game - - - - - You are using the deconstructed ROM directory format for this game, which is an outdated format that has been superseded by others such as NCA, NAX, XCI, or NSP. Deconstructed ROM directories lack icons, metadata, and update support.<br><br>For an explanation of the various Switch formats eden supports, <a href='https://eden-emulator.github.io/wiki/overview-of-switch-game-formats'>check out our wiki</a>. This message will not be shown again. - - - - - eden has encountered an error while running the video core. This is usually caused by outdated GPU drivers, including integrated ones. Please see the log for more details. For more information on accessing the log, please see the following page: <a href='https://eden-emulator.github.io/help/reference/log-files/'>How to Upload the Log File</a>. - - - - - %1<br>Please redump your files or ask on Discord for help. - %1 signifies an error string. - - - - + An unknown error occurred. Please see the log for more details. حدث خطأ غير معروف. يرجى الاطلاع على السجل لمزيد من التفاصيل. - + (64-bit) (64-bit) - + (32-bit) (32-bit) - + %1 %2 %1 is the title name. %2 indicates if the title is 64-bit or 32-bit %1 %2 - + Closing software... إغلاق البرامج - + Save Data حفظ البيانات - + Mod Data - + Error Opening %1 Folder %1 حدث خطأ أثناء فتح المجلد - - + + Folder does not exist! المجلد غير موجود - - Error Opening Transferable Shader Cache - - - - Failed to create the shader cache directory for this title. - فشل إنشاء مجلد ذاكرة التخزين المؤقت للتظليل لهذا العنوان. + فشل إنشاء مجلد ذاكرة التخزين المؤقت للتظليل لهذا العنوان. - Error Removing Contents - خطأ في إزالة المحتويات + خطأ في إزالة المحتويات - Error Removing Update - خطأ في إزالة التحديث + خطأ في إزالة التحديث - Error Removing DLC - DLC خطأ في إزالة + DLC خطأ في إزالة - + Remove Installed Game Contents? هل تريد إزالة محتويات اللعبة المثبتة؟ - + Remove Installed Game Update? هل تريد إزالة تحديث اللعبة المثبت؟ - + Remove Installed Game DLC? للعبة المثبتة؟ DLC إزالة المحتوى القابل للتنزيل - + Remove Entry إزالة الإدخال - - - - - - Successfully Removed - تمت الإزالة بنجاح + تمت الإزالة بنجاح - Successfully removed the installed base game. - تمت إزالة اللعبة الأساسية المثبتة بنجاح. + تمت إزالة اللعبة الأساسية المثبتة بنجاح. - The base game is not installed in the NAND and cannot be removed. - ولا يمكن إزالتها NAND لم يتم تثبيت اللعبة الأساسية في + ولا يمكن إزالتها NAND لم يتم تثبيت اللعبة الأساسية في - Successfully removed the installed update. - تمت إزالة التحديث المثبت بنجاح. + تمت إزالة التحديث المثبت بنجاح. - There is no update installed for this title. - لا يوجد تحديث مثبت لهذا العنوان. + لا يوجد تحديث مثبت لهذا العنوان. - There are no DLC installed for this title. - مثبت لهذا العنوان DLC لا يوجد أي محتوى قابل للتنزيل. + مثبت لهذا العنوان DLC لا يوجد أي محتوى قابل للتنزيل. - - Successfully removed %1 installed DLC. - - - - + Delete OpenGL Transferable Shader Cache? - + Delete Vulkan Transferable Shader Cache? - + Delete All Transferable Shader Caches? - + Remove Custom Game Configuration? إزالة تكوين اللعبة المخصصة؟ - + Remove Cache Storage? إزالة تخزين ذاكرة التخزين المؤقت؟ - + Remove File إزالة الملف - + Remove Play Time Data إزالة بيانات زمن اللعب - + Reset play time? إعادة تعيين زمن اللعب؟ - - - Error Removing Transferable Shader Cache - - - - - - A shader cache for this title does not exist. - - - - - Successfully removed the transferable shader cache. - - - - - Failed to remove the transferable shader cache. - - - - - Error Removing Vulkan Driver Pipeline Cache - - - - - Failed to remove the driver pipeline cache. - - - - - - Error Removing Transferable Shader Caches - - - - - Successfully removed the transferable shader caches. - - - - - Failed to remove the transferable shader cache directory. - - - - - Error Removing Custom Configuration - حدث خطأ أثناء إزالة التكوين المخصص + حدث خطأ أثناء إزالة التكوين المخصص - A custom configuration for this title does not exist. - لا يوجد تكوين مخصص لهذا العنوان. + لا يوجد تكوين مخصص لهذا العنوان. - Successfully removed the custom game configuration. - تمت إزالة تكوين اللعبة المخصص بنجاح. + تمت إزالة تكوين اللعبة المخصص بنجاح. - Failed to remove the custom game configuration. - فشل إزالة تكوين اللعبة المخصص. + فشل إزالة تكوين اللعبة المخصص. - - + + RomFS Extraction Failed! - + There was an error copying the RomFS files or the user cancelled the operation. - + Full كامل - + Skeleton - + Select RomFS Dump Mode - + Please select the how you would like the RomFS dumped.<br>Full will copy all of the files into the new directory while <br>skeleton will only create the directory structure. - + There is not enough free space at %1 to extract the RomFS. Please free up space or select a different dump directory at Emulation > Configure > System > Filesystem > Dump Root - + Extracting RomFS... - - - - - + + Cancel إلغاء - + RomFS Extraction Succeeded! - - - + The operation completed successfully. أكتملت العملية بنجاح - Integrity verification couldn't be performed! - لا يمكن إجراء التحقق من سلامة + لا يمكن إجراء التحقق من سلامة - File contents were not checked for validity. - لم يتم التحقق من صحة محتويات الملف. + لم يتم التحقق من صحة محتويات الملف. - - Verifying integrity... - التحقق من سلامة + التحقق من سلامة - - Integrity verification succeeded! - نجح التحقق من سلامة + نجح التحقق من سلامة - - Integrity verification failed! - فشل التحقق من سلامة + فشل التحقق من سلامة - File contents may be corrupt. - قد تكون محتويات الملف تالفة. + قد تكون محتويات الملف تالفة. - - - - Create Shortcut - إنشاء إختصار + إنشاء إختصار - - Do you want to launch the game in fullscreen? - - - - Successfully created a shortcut to %1 - %1 تم إنشاء اختصار بنجاح إلى + %1 تم إنشاء اختصار بنجاح إلى - - This will create a shortcut to the current AppImage. This may not work well if you update. Continue? - - - - - Failed to create a shortcut to %1 - - - - Create Icon - إنشاء أيقونة + إنشاء أيقونة - - Cannot create icon file. Path "%1" does not exist and cannot be created. + + Warning: Outdated Game Format - + + You are using the deconstructed ROM directory format for this game, which is an outdated format that has been superseded by others such as NCA, NAX, XCI, or NSP. Deconstructed ROM directories lack icons, metadata, and update support.<br><br>For an explanation of the various Switch formats Eden supports, <a href='https://eden-emulator.github.io/wiki/overview-of-switch-game-formats'>check out our wiki</a>. This message will not be shown again. + + + + + Eden has encountered an error while running the video core. This is usually caused by outdated GPU drivers, including integrated ones. Please see the log for more details. For more information on accessing the log, please see the following page: <a href='https://yuzu-mirror.github.io/help/reference/log-files/'>How to Upload the Log File</a>. + + + + + %1<br>Please redump your files or ask on Discord/Revolt for help. + %1 signifies an error string. + + + + Error Opening %1 %1 خطأ في فتح - + Select Directory حدد المجلد - + Properties خصائص - + The game properties could not be loaded. تعذر تحميل خصائص اللعبة. - + Switch Executable (%1);;All Files (*.*) %1 is an identifier for the Switch executable file extensions. - + Load File تشغيل المِلَفّ - + Open Extracted ROM Directory - + Invalid Directory Selected تم تحديد مجلد غير صالح - + The directory you have selected does not contain a 'main' file. لا يحتوي المجلد الذي حددته على ملف رئيسي - + Installable Switch File (*.nca *.nsp *.xci);;Nintendo Content Archive (*.nca);;Nintendo Submission Package (*.nsp);;NX Cartridge Image (*.xci) - + Install Files تثبيت الملفات - + %n file(s) remaining - - - - - + Installing file "%1"... "%1" تثبيت الملف - - + + Install Results تثبيت النتائج - + To avoid possible conflicts, we discourage users from installing base games to the NAND. Please, only use this feature to install updates and DLC. - + %n file(s) were newly installed - - - - - + %n file(s) were overwritten - - - - - + %n file(s) failed to install - - - - - + System Application تطبيق النظام - + System Archive أرشيف النظام - + System Application Update تحديث تطبيق النظام - + Firmware Package (Type A) - + Firmware Package (Type B) - + Game اللعبة - + Game Update تحديث اللعبة - + Game DLC - + Delta Title - + Select NCA Install Type... - + Please select the type of title you would like to install this NCA as: (In most instances, the default 'Game' is fine.) - + Failed to Install فشل فى التثبيت - + The title type you selected for the NCA is invalid. - + File not found لم يتم العثور على الملف - + File "%1" not found - + OK موافق - - + + Hardware requirements not met لم يتم استيفاء متطلبات الأجهزة - - + + Your system does not meet the recommended hardware requirements. Compatibility reporting has been disabled. لا يلبي نظامك متطلبات الأجهزة الموصى بها. تم تعطيل الإبلاغ عن التوافق. - + Missing yuzu Account حساب يوزو مفقود - - In order to submit a game compatibility test case, you must link your eden account.<br><br/>To link your eden account, go to Emulation &gt; Configuration &gt; Web. + + In order to submit a game compatibility test case, you must set up your web token and username.<br><br/>To link your eden account, go to Emulation &gt; Configuration &gt; Web. - - Install decryption keys and restart eden before attempting to install firmware. + + Select Dumped Firmware ZIP - - Firmware installation cancelled, firmware may be in bad state, restart eden or re-install firmware. + + Zipped Archives (*.zip) - - Encryption keys are missing. + + Firmware cleanup failed - - Are you sure you want to close eden? + + Failed to clean up extracted firmware cache. +Check write permissions in the system temp directory and try again. +OS reported error: %1 - - - - eden + + Please install firmware to use the Album applet. - - The currently running application has requested eden to not exit. + + Please install firmware to use the Cabinet applet. + + + + + Please install firmware to use the Mii editor. + + + + + Please install firmware to use the Controller Menu. + + + + + Please install firmware to use the Home Menu. + + + + + Firmware Corrupted + + + + + Firmware Too New + + + + + +Continue anyways? + + + + + Don't show again + + + + + Please install firmware to use Starter. + + + + + Are you sure you want to close Eden? + + + + + + + Eden + + + + + The currently running application has requested Eden to not exit. Would you like to bypass this and exit anyway? - + + Encryption keys are missing. + + + + Error opening URL خطأ في فتح URL - + Unable to open the URL "%1". - + TAS Recording - + Overwrite file of player 1? الكتابة فوق ملف اللاعب 1؟ - + Invalid config detected تم اكتشاف تكوين غير صالح - + Handheld controller can't be used on docked mode. Pro controller will be selected. - - + + Amiibo أميبو - - + + The current amiibo has been removed أميبو اللعبة الحالية تمت إزالته - + Error خطأ - - + + The current game is not looking for amiibos اللعبة الحالية لا تبحث عن أميبو - + Amiibo File (%1);; All Files (*.*) - + Load Amiibo تحميل أميبو - + Error loading Amiibo data خطأ أثناء تحميل بيانات أميبو - + The selected file is not a valid amiibo الملف المحدد ليس ملف أميبو صالحًا - + The selected file is already on use الملف المحدد قيد الاستخدام بالفعل - + An unknown error occurred حدث خطأ غير معروف - - - Verification failed for the following files: - -%1 - - - - + + Keys not installed - + + + Install decryption keys and restart Eden before attempting to install firmware. + + + + Select Dumped Firmware Source Location - - Installing Firmware... - - - - - - - - Firmware install failed - - - - - Unable to locate potential firmware NCA files - - - - - Failed to delete one or more firmware file. - - - - - One or more firmware files failed to copy into NAND. - - - - - Firmware integrity verification failed! - - - - - Select Dumped Keys Location - - - - - - - Decryption Keys install failed - - - - - prod.keys is a required decryption key file. - - - - - One or more keys failed to copy. - - - - - Decryption Keys install succeeded - - - - - Decryption Keys were successfully installed - - - - - Decryption Keys failed to initialize. Check that your dumping tools are up to date and re-dump keys. - - - - - - - - - - + + + + + + No firmware available لا توجد برامج ثابتة متاحة - Please install the firmware to use the Album applet. - الرجاء تثبيت البرنامج الثابت لاستخدام التطبيق الصغير للألبوم. + الرجاء تثبيت البرنامج الثابت لاستخدام التطبيق الصغير للألبوم. - + Album Applet التطبيق الصغير للألبوم - + Album applet is not available. Please reinstall firmware. التطبيق الصغير للألبوم غير متوفر. الرجاء إعادة تثبيت البرامج الثابتة. - Please install the firmware to use the Cabinet applet. - الرجاء تثبيت البرنامج الثابت لاستخدام برنامج الخزانة. + الرجاء تثبيت البرنامج الثابت لاستخدام برنامج الخزانة. - + Cabinet Applet التطبيق الصغير للخزانة - + Cabinet applet is not available. Please reinstall firmware. التطبيق الصغير للخزانة غير متوفر. الرجاء إعادة تثبيت البرامج الثابتة. - Please install the firmware to use the Mii editor. - Mii الرجاء تثبيت البرنامج الثابت لاستخدام محرر + Mii الرجاء تثبيت البرنامج الثابت لاستخدام محرر - + Mii Edit Applet Mii تحرير التطبيق الصغير - + Mii editor is not available. Please reinstall firmware. - - Please install the firmware to use the Controller Menu. - - - - + Controller Applet تطبيق التحكم - + Controller Menu is not available. Please reinstall firmware. قائمة التحكم غير متوفرة. الرجاء إعادة تثبيت فريموير - - Please install the firmware to use the Home Menu. - - - - - + Home Menu Applet - - + Home Menu is not available. Please reinstall firmware. - - Please install the firmware to use Starter. - - - - + Starter Applet - + Starter is not available. Please reinstall firmware. - - Please install firmware to use the home menu. - - - - + Capture Screenshot لقطة شاشة - + PNG Image (*.png) - + Update Available - + Update %1 for Eden is available. Would you like to download it? - + TAS state: Running %1/%2 - + TAS state: Recording %1 - + TAS state: Idle %1/%2 - + TAS State: Invalid - + &Stop Running &إيقاف التشغيل - + &Start &بدء - + Stop R&ecording &إيقاف التسجيل - + R&ecord &تسجيل - + Building: %n shader(s) - - - - - + Scale: %1x %1 is the resolution scaling factor - + Speed: %1% / %2% - + Speed: %1% - + Game: %1 FPS - + Frame: %1 ms - + %1 %2 %1 %2 - - + + FSR FSR - + NO AA NO AA - + VOLUME: MUTE الصوت: كتم الصوت - + VOLUME: %1% Volume percentage (e.g. 50%) - + Derivation Components Missing - + Select RomFS Dump Target - + Please select which RomFS you would like to dump. @@ -6710,7 +6744,7 @@ Would you like to download it? يوزو - + Are you sure you want to stop the emulation? Any unsaved progress will be lost. هل أنت متأكد من أنك تريد إيقاف المحاكاة؟ سيتم فقدان أي تقدم غير محفوظ @@ -6723,102 +6757,102 @@ Would you like to bypass this and exit anyway? هل ترغب في تجاوز هذا والخروج على أية حال؟ - + None لا شيء - + FXAA FXAA - + SMAA SMAA - + Nearest Nearest - + Bilinear Bilinear - + Bicubic Bicubic - + Gaussian Gaussian - + ScaleForce ScaleForce - + Area - + Docked مركب بالمنصة - + Handheld محمول - + Normal عادي - + High عالي - + Extreme - + Vulkan Vulkan - + OpenGL OpenGL - + Null قيمه خاليه - + GLSL GLSL - + GLASM GLASM - + SPIRV SPIRV @@ -6826,13 +6860,13 @@ Would you like to bypass this and exit anyway? GRenderWindow - - + + OpenGL not available! غير متوفر! OpenGL - + OpenGL shared contexts are not supported. @@ -6841,33 +6875,33 @@ Would you like to bypass this and exit anyway? لم يتم تجميع يوزو بدعم OpenGL. - - eden has not been compiled with OpenGL support. + + Eden has not been compiled with OpenGL support. - - + + Error while initializing OpenGL! حدث خطأ أثناء تهيئة OpenGL - + Your GPU may not support OpenGL, or you do not have the latest graphics driver. - + Error while initializing OpenGL 4.6! - + Your GPU may not support OpenGL 4.6, or you do not have the latest graphics driver.<br><br>GL Renderer:<br>%1 - + Your GPU may not support one or more required OpenGL extensions. Please ensure you have the latest graphics driver.<br><br>GL Renderer:<br>%1<br><br>Unsupported extensions:<br>%2 @@ -6875,128 +6909,128 @@ Would you like to bypass this and exit anyway? GameList - + Favorite مفضلة - + Start Game بدء اللعبة - + Start Game without Custom Configuration بدء اللعبة بدون الإعدادات المخصصة - + Open Save Data Location فتح موقع بيانات الحفظ - + Open Mod Data Location فتح موقع بيانات التعديلات - + Open Transferable Pipeline Cache - + Remove إزالة - + Remove Installed Update إزالة التحديث المثبت - + Remove All Installed DLC المثبت DLC إزالة كافة محتوى - + Remove Custom Configuration إزالة التكوين المخصص - + Remove Play Time Data إزالة بيانات زمن اللعب - + Remove Cache Storage إزالة تخزين ذاكرة التخزين المؤقت - + Remove OpenGL Pipeline Cache - + Remove Vulkan Pipeline Cache - + Remove All Pipeline Caches - + Remove All Installed Contents إزالة كافة المحتويات المثبتة - + Dump RomFS - + Dump RomFS to SDMC - + Verify Integrity التحقق من سلامة - + Copy Title ID to Clipboard نسخ معرف العنوان إلى الحافظة - + Navigate to GameDB entry - + Create Shortcut إنشاء إختصار - + Add to Desktop إضافة إلى سطح المكتب - + Add to Applications Menu إضافة إلى قائمة التطبيقات - + Configure Game @@ -7005,62 +7039,62 @@ Would you like to bypass this and exit anyway? خصائص - + Scan Subfolders مسح الملفات الداخلية - + Remove Game Directory إزالة مجلد اللعبة - + ▲ Move Up ▲ نقل للأعلى - + ▼ Move Down ▼ نقل للأسفل - + Open Directory Location فتح موقع المجلد - + Clear مسح - + Name الاسم - + Compatibility التوافق - + Add-ons الإضافات - + File type نوع الملف - + Size الحجم - + Play time زمن اللعب @@ -7068,62 +7102,62 @@ Would you like to bypass this and exit anyway? GameListItemCompat - + Ingame في اللعبة - + Game starts, but crashes or major glitches prevent it from being completed. تبدأ اللعبة، لكن الأعطال أو الأخطاء الرئيسية تمنعها من الاكتمال. - + Perfect مثالي - + Game can be played without issues. يمكن لعب اللعبة بدون مشاكل. - + Playable قابل للعب - + Game functions with minor graphical or audio glitches and is playable from start to finish. تحتوي وظائف اللعبة على بعض الأخطاء الرسومية أو الصوتية البسيطة ويمكن تشغيلها من البداية إلى النهاية. - + Intro/Menu مقدمة/القائمة - + Game loads, but is 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. اللعبة لم يتم اختبارها بعد. @@ -7131,7 +7165,7 @@ Would you like to bypass this and exit anyway? GameListPlaceholder - + Double-click to add a new folder to the game list انقر نقرًا مزدوجًا لإضافة مجلد جديد إلى قائمة الألعاب @@ -7139,24 +7173,20 @@ Would you like to bypass this and exit anyway? GameListSearchField - + %1 of %n result(s) - - - - - + Filter: :مرشح - + Enter pattern to filter أدخل نمط للمرشح @@ -7238,7 +7268,7 @@ Would you like to bypass this and exit anyway? - Failed to announce the room to the public lobby. In order to host a room publicly, you must have a valid eden account configured in Emulation -> Configure -> Web. If you do not want to publish a room in the public lobby, then select Unlisted instead. + Failed to announce the room to the public lobby. In order to host a room publicly, you must have a valid Eden 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: @@ -7246,190 +7276,190 @@ Debug Message: Hotkeys - + Audio Mute/Unmute كتم الصوت/إلغاء كتم الصوت - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Main Window النافذة الرئيسية - + Audio Volume Down خفض مستوى الصوت - + Audio Volume Up رفع مستوى الصوت - + Capture Screenshot لقطة شاشة - + Change Adapting Filter - + Change Docked Mode تغيير وضع الإرساء - + Change GPU Accuracy - + Configure تعديل - + Configure Current Game - + Continue/Pause Emulation استأنف/إيقاف مؤقت للمحاكاة - + Exit Fullscreen الخروج من وضع ملء الشاشة + + + Exit Eden + + Exit yuzu الخروج من يوزو - - Exit eden - - - - + Fullscreen ملء الشاشة - + Load File تحميل الملف - + Load/Remove Amiibo تحميل/إزالة أميبو - + Multiplayer Browse Public Game Lobby - + Multiplayer Create Room - + Multiplayer Direct Connect to Room - + Multiplayer Leave Room - + Multiplayer Show Current Room - + Restart Emulation إعادة تشغيل المحاكاة - + Stop Emulation إيقاف المحاكاة - + TAS Record - + TAS Reset - + TAS Start/Stop - + Toggle Filter Bar - + Toggle Framerate Limit تبديل حد معدل الإطارات - + Toggle Mouse Panning - + Toggle Renderdoc Capture - + Toggle Status Bar تبديل شريط الحالة @@ -7437,22 +7467,22 @@ Debug Message: InstallDialog - + Please confirm these are the files you wish to install. الرجاء تأكيد هذه هي الملفات التي ترغب في تثبيتها. - + Installing an Update or DLC will overwrite the previously installed one. إلى استبدال التحديث المثبت مسبقًا DLC سيؤدي تثبيت التحديث أو المحتوى القابل للتنزيل - + Install تثبيت - + Install Files to NAND تثبيت الملفات الى NAND @@ -7460,7 +7490,7 @@ Debug Message: LimitableInputDialog - + The text can't contain any of the following characters: %1 لا يمكن أن يحتوي النص على أي من الأحرف التالية: @@ -7607,152 +7637,207 @@ Debug Message: &الملفات الحديثة - + + Open &Eden Folders + + + + &Emulation &المحاكاة - + &View &عرض - + &Reset Window Size &إعادة ضبط حجم النافذة - + &Debugging &تصحيح الأخطاء - + Reset Window Size to &720p 720p إعادة تعيين حجم النافذة إلى - + Reset Window Size to 720p 720p إعادة تعيين حجم النافذة إلى - + Reset Window Size to &900p 900p إعادة تعيين حجم النافذة إلى - + Reset Window Size to 900p 900p إعادة تعيين حجم النافذة إلى - + Reset Window Size to &1080p 1080p إعادة تعيين حجم النافذة إلى - + Reset Window Size to 1080p 1080p إعادة تعيين حجم النافذة إلى - + &Multiplayer &متعدد اللاعبين - + &Tools &أدوات - + &Amiibo أميبو - + &TAS - + &Create Home Menu Shortcut - + &Help &مساعدة - + &Install Files to NAND... &NAND تثبيت الملفات على - + L&oad File... &تحميل ملف - + Load &Folder... تحميل &مجلد - + E&xit &خروج - + &Pause &إيقاف مؤقت - + &Stop &إيقاف - + &Verify Installed Contents التحقق من المحتويات المثبتة - - &About eden + + &Root Data Folder - - Open &eden Folder + + &NAND Folder - + + &SDMC Folder + + + + + &Mod Folder + + + + + &Log Folder + + + + + From Folder + + + + + From ZIP + + + + + &X + + + + + X (Twitter) + + + + + &Revolt + + + + + Revolt + + + + + &Eden Dependencies + + + + Open Home Menu - + &Discord - + Open &Setup - + &Desktop - + &Application Menu @@ -7761,97 +7846,97 @@ Debug Message: &حول يوزو - + Single &Window Mode وضع النافذة الواحدة - + Con&figure... &الإعدادات - + Ctrl+, - + Display D&ock Widget Headers - + Show &Filter Bar عرض &شريط المرشح - + Show &Status Bar عرض &شريط الحالة - + Show Status Bar عرض شريط الحالة - + &Browse Public Game Lobby &استعراض ردهة الألعاب العامة - + &Create Room &إنشاء غرفة - + &Leave Room &مغادرة الغرفة - + &Direct Connect to Room &الاتصال المباشر بالغرفة - + &Show Current Room &عرض الغرفة الحالية - + F&ullscreen &ملء الشاشة - + &Restart &إعادة التشغيل - + Load/Remove &Amiibo... تحميل/إزالة &أميبو - + &Report Compatibility &تقرير التوافق - + Open &Mods Page فتح صفحة &التعديلات - + Open &Quickstart Guide فتح دليل البدء السريع - + &FAQ &التعليمات @@ -7860,104 +7945,112 @@ Debug Message: فتح مجلد &يوزو - + &Capture Screenshot &التقاط لقطة للشاشة - + Open &Album فتح الألبوم - + &Set Nickname and Owner &تعيين الاسم المستعار والمالك - + &Delete Game Data حذف بيانات اللعبة - + &Restore Amiibo &استعادة أميبو - + &Format Amiibo &تنسيق أميبو - + Open &Mii Editor Mii فتح محرر - + &Configure TAS... - + Configure C&urrent Game... إعدادات &اللعبة الحالية - + &Start &بدء - + &Reset &إعادة تعيين - + R&ecord &تسجيل - + Open &Controller Menu فتح قائمة التحكم - + Install Firmware - - Install Decryption Keys + + &About Eden - - - MicroProfileDialog - - &MicroProfile + + Install Decryption Keys MigrationWorker - + Data was migrated successfully. - + Linking the old directory failed. You may need to re-run with administrative privileges on Windows. OS gave error: %1 - + + + +Note that your configuration and data will be shared with %1. +If this is not desirable, delete the following files: +%2 +%3 +%4 + + + + If you wish to clean up the files which were left in the old data location, you can do so by deleting the following directory: @@ -8017,37 +8110,37 @@ If you wish to clean up the files which were left in the old data location, you MultiplayerState - + Current connection status حالة الاتصال الحالية - + Not Connected. Click here to find a room! غير متصل. اضغط هنا للبحث عن غرفة! - + Not Connected غير متصل - + Connected متصل - + New Messages Received رسالة جديدة استقبلت - + Error خطأ - + Failed to update the room information. Please check your Internet connection and try hosting the room again. Debug Message: فشل في تحديث معلومات الغرفة. يرجى التحقق من اتصالك بالإنترنت ومحاولة استضافة الغرفة مرة أخرى. @@ -8239,56 +8332,56 @@ p, li { white-space: pre-wrap; } لا يلعب أي لعبة - + Installed SD Titles عناوين المثبتة على بطاقة الذاكرة - + Installed NAND Titles NAND عناوين المثبتة على - + System Titles عناوين النظام - + Add New Game Directory إضافة مجلد ألعاب جديد - + Favorites المفضلة - - + + Shift Shift - - + + Ctrl Ctrl - - + + Alt Alt - - - - + + + + [not set] [ غير معد ] @@ -8299,14 +8392,14 @@ p, li { white-space: pre-wrap; } - - - - - - - - + + + + + + + + Axis %1%2 محور %1%2 @@ -8317,357 +8410,357 @@ p, li { white-space: pre-wrap; } زر %1 - - - - - - + + + + + + [unknown] [غير معروف] - - - + + + Left يسار - - - + + + Right يمين - - - + + + Down تحت - - - + + + Up فوق - - + + Z Z - - + + R R - - + + L L - - + + A A - - + + B B - - + + X X - - + + Y Y - - + + Start Start - - + + L1 L1 - - + + L2 L2 - - + + L3 L3 - - + + R1 R1 - - + + R2 R2 - - + + R3 R3 - - + + Circle دائرة - - + + Cross إكس - - + + Square مربع - - + + Triangle مثلث - - + + Share مشاركة - - + + Options خيارات - - + + [undefined] [غير معرف] - + %1%2 %1%2 - - + + [invalid] [غير صالح] - - + + %1%2Hat %3 - - - + + + %1%2Axis %3 %1%2محور %3 - - + + %1%2Axis %3,%4,%5 %1%2محور %3,%4,%5 - - + + %1%2Motion %3 %1%2حركة %3 - - + + %1%2Button %3 %1%2زر %3 - - + + [unused] [غير مستخدم] - + ZR ZR - + ZL ZL - + SR SR - + SL SL - + Stick L العصا اليسرى - + Stick R العصا اليمنى - + Plus زائد - + Minus ناقص - - + + Home المنزل - + Capture تصوير - + Touch اللمس - + Wheel Indicates the mouse wheel العجلة - + Backward الخلف - + Forward الأمام - + Task مهمة - + Extra إضافي - + %1%2%3%4 %1%2%3%4 - - + + %1%2%3Hat %4 - - + + %1%2%3Axis %4 %1%2%3محور %4 - - + + %1%2%3Button %4 %1%2%3زر %4 - - + + Migration - + - - + + No - + You can manually re-trigger this prompt by deleting the new config directory: %1 - + Migrating - + Migrating, this may take a while... @@ -8785,6 +8878,298 @@ p, li { white-space: pre-wrap; } هل ترغب في إستعادة أميبو؟ + + QtCommon::Content + + + Installing Firmware... + + + + + + + Cancel + إلغاء + + + + Firmware integrity verification failed! + + + + + + Verification failed for the following files: + +%1 + + + + + + Verifying integrity... + التحقق من سلامة + + + + + Integrity verification succeeded! + نجح التحقق من سلامة + + + + + The operation completed successfully. + أكتملت العملية بنجاح + + + + + Integrity verification failed! + فشل التحقق من سلامة + + + + File contents may be corrupt or missing. + + + + + Integrity verification couldn't be performed + + + + + Firmware installation cancelled, firmware may be in a bad state or corrupted. File contents could not be checked for validity. + + + + + Select Dumped Keys Location + + + + + Decryption Keys install succeeded + + + + + Decryption Keys were successfully installed + + + + + Decryption Keys install failed + + + + + QtCommon::Game + + + Error Removing Contents + خطأ في إزالة المحتويات + + + + Error Removing Update + خطأ في إزالة التحديث + + + + Error Removing DLC + DLC خطأ في إزالة + + + + The base game is not installed in the NAND and cannot be removed. + ولا يمكن إزالتها NAND لم يتم تثبيت اللعبة الأساسية في + + + + There is no update installed for this title. + لا يوجد تحديث مثبت لهذا العنوان. + + + + There are no DLCs installed for this title. + + + + + + + + Successfully Removed + تمت الإزالة بنجاح + + + + Successfully removed %1 installed DLC. + + + + + + Error Removing Transferable Shader Cache + + + + + + A shader cache for this title does not exist. + + + + + Successfully removed the transferable shader cache. + + + + + Failed to remove the transferable shader cache. + + + + + Error Removing Vulkan Driver Pipeline Cache + + + + + Failed to remove the driver pipeline cache. + + + + + + Error Removing Transferable Shader Caches + + + + + Successfully removed the transferable shader caches. + + + + + Failed to remove the transferable shader cache directory. + + + + + + Error Removing Custom Configuration + حدث خطأ أثناء إزالة التكوين المخصص + + + + A custom configuration for this title does not exist. + لا يوجد تكوين مخصص لهذا العنوان. + + + + Successfully removed the custom game configuration. + تمت إزالة تكوين اللعبة المخصص بنجاح. + + + + Failed to remove the custom game configuration. + فشل إزالة تكوين اللعبة المخصص. + + + + Reset Metadata Cache + إعادة تعيين الذاكرة المؤقتة للبيانات الوصفية + + + + The metadata cache is already empty. + الذاكرة مؤقتة للبيانات الوصفية لقائمة الألعاب فارغة مسبقا. + + + + The operation completed successfully. + أكتملت العملية بنجاح + + + + The metadata cache couldn't be deleted. It might be in use or non-existent. + لا يمكن حذف الذاكرة المؤقتة للبيانات الوصفية لقائمة الألعاب. قد تكون مستخدمة الآن أو غير موجودة. + + + + Create Shortcut + إنشاء إختصار + + + + Do you want to launch the game in fullscreen? + + + + + Shortcut Created + + + + + Successfully created a shortcut to %1 + %1 تم إنشاء اختصار بنجاح إلى + + + + Shortcut may be Volatile! + + + + + This will create a shortcut to the current AppImage. This may not work well if you update. Continue? + + + + + Failed to Create Shortcut + + + + + Failed to create a shortcut to %1 + + + + + Create Icon + إنشاء أيقونة + + + + Cannot create icon file. Path "%1" does not exist and cannot be created. + + + + + No firmware available + لا توجد برامج ثابتة متاحة + + + + Please install firmware to use the home menu. + + + + + Home Menu Applet + + + + + Home Menu is not available. Please reinstall firmware. + + + QtControllerSelectorDialog @@ -9079,7 +9464,7 @@ Please try again or contact the developer of the software. QtProfileSelectionDialog - + %1 %2 %1 is the profile username, %2 is the formatted UUID (e.g. 00112233-4455-6677-8899-AABBCCDDEEFF)) @@ -9087,7 +9472,7 @@ Please try again or contact the developer of the software. %2 - + Users المستخدمين @@ -9211,7 +9596,7 @@ p, li { white-space: pre-wrap; } WaitTreeCallstack - + Call stack @@ -9219,12 +9604,12 @@ p, li { white-space: pre-wrap; } WaitTreeSynchronizationObject - + [%1] %2 [%1] %2 - + waited by no thread @@ -9232,102 +9617,102 @@ p, li { white-space: pre-wrap; } WaitTreeThread - + runnable قابل للتشغيل - + paused متوقف مؤقتا - + sleeping نائم - + waiting for IPC reply - + waiting for objects في انتظار العناصر - + waiting for condition variable - + waiting for address arbiter - + waiting for suspend resume - + waiting ينتظر - + initialized مهيئ - + terminated تم إنهاؤه - + unknown غير معروف - + PC = 0x%1 LR = 0x%2 PC = 0x%1 LR = 0x%2 - + ideal خامل - + core %1 النواة %1 - + processor = %1 معالج = %1 - + affinity mask = %1 - + thread id = %1 معرف الخيط = %1 - + priority = %1(current) / %2(normal) الأولوية = %1(الحالي) / %2(الطبيعي) - + last running ticks = %1 @@ -9335,7 +9720,7 @@ p, li { white-space: pre-wrap; } WaitTreeThreadList - + waited by thread @@ -9343,7 +9728,7 @@ p, li { white-space: pre-wrap; } WaitTreeWidget - + &Wait Tree diff --git a/dist/languages/ca.ts b/dist/languages/ca.ts index c67c2d6f24..8570ed13d9 100644 --- a/dist/languages/ca.ts +++ b/dist/languages/ca.ts @@ -13,12 +13,12 @@ - About eden + About Eden - <html><head/><body><p><span style=" font-size:28pt;">eden</span></p></body></html> + <html><head/><body><p><span style=" font-size:28pt;">Eden</span></p></body></html> @@ -34,8 +34,8 @@ p, li { white-space: pre-wrap; } hr { height: 1px; border-width: 0; } li.unchecked::marker { content: "\2610"; } li.checked::marker { content: "\2612"; } -</style></head><body style=" font-family:'Adwaita Sans'; font-size:11pt; font-weight:400; font-style:normal;"> -<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;">eden is an experimental open-source emulator for the Nintendo Switch licensed under GPLv3.0+ which is based on the yuzu emulator which ended development back in March 2024. <br /><br />This software should not be used to play games you have not legally obtained.</span></p></body></html> +</style></head><body style=" font-family:'Noto Sans'; font-size:9pt; font-weight:400; font-style:normal;"> +<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;">Eden is an experimental open-source emulator for the Nintendo Switch licensed under GPLv3.0+ which is based on the yuzu emulator which ended development back in March 2024. <br /><br />This software should not be used to play games you have not legally obtained.</span></p></body></html> @@ -72,32 +72,32 @@ p, li { white-space: pre-wrap; } CalibrationConfigurationDialog - + Communicating with the server... Comunicant-se amb el servidor... - + Cancel Cancel·la - + Touch the top left corner <br>of your touchpad. Premi la cantonada superior esquerra<br>del seu panell tàctil. - + Now touch the bottom right corner <br>of your touchpad. Ara premi la cantonada inferior dreta <br>del seu panell tàctil. - + Configuration completed! Configuració completada! - + OK D'acord @@ -395,502 +395,164 @@ This would ban both their forum username and their IP address. ConfigurationShared - + % % - - Amiibo editor - - - - - Controller configuration - - - - - Data erase - - - - + Error Error - - Net connect - - - - - Player select - - - - - Software keyboard - - - - - Mii Edit - - - - - Online web - - - - - Shop - - - - - Photo viewer - - - - - Offline web - - - - - Login share - - - - - Wifi web auth - - - - - My page - - - - + Output Engine: Motor de sortida: - + Output Device: Dispositiu de Sortida: - + Input Device: Dispositiu d'Entrada: - + Mute audio Silenciar àudio - + Volume: Volum: - + Mute audio when in background Silenciar l'àudio quan estigui en segon plà - + Multicore CPU Emulation Emulació de CPU multinucli - - This option increases CPU emulation thread use from 1 to the Switch’s maximum of 4. -This is mainly a debug option and shouldn’t be disabled. - - - - - Memory Layout - - - - - Increases the amount of emulated RAM from the stock 4GB of the retail Switch to the developer kit's 8/6GB. -It’s doesn’t improve stability or performance and is intended to let big texture mods fit in emulated RAM. -Enabling it will increase memory use. It is not recommended to enable unless a specific game with a texture mod needs it. - - - - + Limit Speed Percent Limitar percentatge de velocitat - - Controls the game's maximum rendering speed, but it’s up to each game if it runs faster or not. -200% for a 30 FPS game is 60 FPS, and for a 60 FPS game it will be 120 FPS. -Disabling it means unlocking the framerate to the maximum your PC can reach. - - - - - Synchronize Core Speed - - - - - Synchronizes CPU core speed with the game's maximum rendering speed to boost FPS without affecting game speed (animations, physics, etc.). -Compatibility varies by game; many (especially older ones) may not respond well. -Can help reduce stuttering at lower framerates. - - - - + Accuracy: Precisió: - - This setting controls the accuracy of the emulated CPU. -Don't change this unless you know what you are doing. - - - - - - Backend: - - - - - Fast CPU Time - - - - - Overclocks the emulated CPU to remove some FPS limiters. Weaker CPUs may see reduced performance, and certain games may behave improperly. -Use Boost (1700MHz) to run at the Switch's highest native clock, or Fast (2000MHz) to run at 2x clock. - - - - + Unfuse FMA (improve performance on CPUs without FMA) Desactivar FMA (millora el rendiment en CPUs sense FMA) - - This option improves speed by reducing accuracy of fused-multiply-add instructions on CPUs without native FMA support. - - - - + Faster FRSQRTE and FRECPE FRSQRTE i FRECPE més ràpid - + This option improves the speed of some approximate floating-point functions by using less accurate native approximations. Aquest paràmetre millora la velocitat d'algunes funcions de coma flotant, amb l'ús d'aproximacions natives menys precises. - + Faster ASIMD instructions (32 bits only) Instruccions ASIMD més ràpides (només 32 bits) - - This option improves the speed of 32 bits ASIMD floating-point functions by running with incorrect rounding modes. - - - - + Inaccurate NaN handling Gestió imprecisa NaN - - This option improves speed by removing NaN checking. -Please note this also reduces accuracy of certain floating-point instructions. - - - - + Disable address space checks Desactiva les comprovacions d'espai d'adreces - - This option improves speed by eliminating a safety check before every memory read/write in guest. -Disabling it may allow a game to read/write the emulator's memory. - - - - + Ignore global monitor Ignorar monitorització global - - This option improves speed by relying only on the semantics of cmpxchg to ensure safety of exclusive access instructions. -Please note this may result in deadlocks and other race conditions. - - - - + API: API: - - Switches between the available graphics APIs. -Vulkan is recommended in most cases. - - - - + Device: Dispositiu: - - This setting selects the GPU to use with the Vulkan backend. - - - - + Shader Backend: Suport de shaders: - - The shader backend to use for the OpenGL renderer. -GLSL is the fastest in performance and the best in rendering accuracy. -GLASM is a deprecated NVIDIA-only backend that offers much better shader building performance at the cost of FPS and rendering accuracy. -SPIR-V compiles the fastest, but yields poor results on most GPU drivers. - - - - + Resolution: Resolució: - - Forces the game to render at a different resolution. -Higher resolutions require much more VRAM and bandwidth. -Options lower than 1X can cause rendering issues. - - - - + Window Adapting Filter: Filtre d'adaptació de finestra: - - FSR Sharpness: - - - - - Determines how sharpened the image will look while using FSR’s dynamic contrast. - - - - + Anti-Aliasing Method: Mètode d'anti-aliasing - - The anti-aliasing method to use. -SMAA offers the best quality. -FXAA has a lower performance impact and can produce a better and more stable picture under very low resolutions. - - - - + Fullscreen Mode: Mode pantalla completa: - - The method used to render the window in fullscreen. -Borderless offers the best compatibility with the on-screen keyboard that some games request for input. -Exclusive fullscreen may offer better performance and better Freesync/Gsync support. - - - - + Aspect Ratio: Relació d'aspecte: - - Stretches the game to fit the specified aspect ratio. -Switch games only support 16:9, so custom game mods are required to get other ratios. -Also controls the aspect ratio of captured screenshots. - - - - + Use disk pipeline cache Utilitzar cache de shaders de canonada - - Allows saving shaders to storage for faster loading on following game boots. -Disabling it is only intended for debugging. - - - - - Optimize SPIRV output shader - - - - - Runs an additional optimization pass over generated SPIRV shaders. -Will increase time required for shader compilation. -May slightly improve performance. -This feature is experimental. - - - - + Use asynchronous GPU emulation Utilitzar emulació asíncrona de GPU - - Uses an extra CPU thread for rendering. -This option should always remain enabled. - - - - + NVDEC emulation: Emulació NVDEC: - - Specifies how videos should be decoded. -It can either use the CPU or the GPU for decoding, or perform no decoding at all (black screen on videos). -In most cases, GPU decoding provides the best performance. - - - - - ASTC Decoding Method: - - - - - This option controls how ASTC textures should be decoded. -CPU: Use the CPU for decoding, slowest but safest method. -GPU: Use the GPU's compute shaders to decode ASTC textures, recommended for most games and users. -CPU Asynchronously: Use the CPU to decode ASTC textures as they arrive. Completely eliminates ASTC decoding -stuttering at the cost of rendering issues while the texture is being decoded. - - - - - ASTC Recompression Method: - - - - - Almost all desktop and laptop dedicated GPUs lack support for ASTC textures, forcing the emulator to decompress to an intermediate format any card supports, RGBA8. -This option recompresses RGBA8 to either the BC1 or BC3 format, saving VRAM but negatively affecting image quality. - - - - - VRAM Usage Mode: - - - - - Selects whether the emulator should prefer to conserve memory or make maximum usage of available video memory for performance. Has no effect on integrated graphics. Aggressive mode may severely impact the performance of other applications such as recording software. - - - - - VSync Mode: - - - - - FIFO (VSync) does not drop frames or exhibit tearing but is limited by the screen refresh rate. -FIFO Relaxed is similar to FIFO but allows tearing as it recovers from a slow down. -Mailbox can have lower latency than FIFO and does not tear but may drop frames. -Immediate (no synchronization) just presents whatever is available and can exhibit tearing. - - - - - Enable asynchronous presentation (Vulkan only) - - - - - Slightly improves performance by moving presentation to a separate CPU thread. - - - - - Force maximum clocks (Vulkan only) - - - - - Runs work in the background while waiting for graphics commands to keep the GPU from lowering its clock speed. - - - - + Anisotropic Filtering: Filtrat anisotròpic: - - Controls the quality of texture rendering at oblique angles. -It’s a light setting and safe to set at 16x on most GPUs. - - - - Accuracy Level: - Nivell de precisió: + Nivell de precisió: - - GPU emulation accuracy. -Most games render fine with Normal, but High is still required for some. -Particles tend to only render correctly with High accuracy. -Extreme should only be used for debugging. -This option can be changed while playing. -Some games may require booting on high to render properly. - - - - + Use asynchronous shader building (Hack) Utilitzar la construcció de shaders asíncrona (Hack) - - - Enables asynchronous shader compilation, which may reduce shader stutter. -This feature is experimental. - - Use Fast GPU Time (Hack) Utilitzar temps ràpid a la GPU (Hack) @@ -900,1021 +562,1456 @@ This feature is experimental. Habilita el temps ràpid de la GPU. Aquesta opció obligarà a la majoria dels jocs a executar-se a la seva resolució nativa més alta. - + + RNG Seed + Llavor de GNA + + + + Device Name + Nom del Dispositiu + + + + Note: this can be overridden when region setting is auto-select + Nota: això pot anul·lar-se quan la configuració de regió es selecciona automàticament + + + + Region: + Regió: + + + + Time Zone: + Zona horària: + + + + Prompt for user on game boot + Sol·licitar l'usuari en l'arrencada del joc + + + + Pause emulation when in background + Pausa l'emulació quan la finestra està en segon pla + + + + Hide mouse on inactivity + Ocultar el cursor del ratolí en cas d'inactivitat + + + + Enable Gamemode + Activa el mode Joc + + + + CPU + CPU + + + + GLASM (Assembly Shaders, NVIDIA Only) + GLASM (Assembly Shaders, només NVIDIA) + + + + Auto + Auto + + + + Accurate + Precís + + + + Unsafe + Insegur + + + + Paranoid (disables most optimizations) + Paranoic (desactiva la majoria d'optimitzacions) + + + + Borderless Windowed + Finestra sense vores + + + + Exclusive Fullscreen + Pantalla completa exclusiva + + + + No Video Output + Sense sortida de vídeo + + + + CPU Video Decoding + Descodificació de vídeo a la CPU + + + + GPU Video Decoding (Default) + Descodificació de vídeo a la GPU (Valor Predeterminat) + + + + 0.75X (540p/810p) [EXPERIMENTAL] + 0.75X (540p/810p) [EXPERIMENTAL] + + + + 1X (720p/1080p) + 1X (720p/1080p) + + + + 2X (1440p/2160p) + 2X (1440p/2160p) + + + + 3X (2160p/3240p) + 3X (2160p/3240p) + + + + 4X (2880p/4320p) + 4X (2880p/4320p) + + + + 5X (3600p/5400p) + 5X (3600p/5400p) + + + + 6X (4320p/6480p) + 6X (4320p/6480p) + + + + Nearest Neighbor + Veí més proper + + + + Bilinear + Bilineal + + + + Bicubic + Bicúbic + + + + Gaussian + Gaussià + + + + ScaleForce + ScaleForce + + + + None + Cap + + + + FXAA + FXAA + + + + Default (16:9) + Valor predeterminat (16:9) + + + + Force 4:3 + Forçar 4:3 + + + + Force 21:9 + Forçar 21:9 + + + + Stretch to Window + Estirar a la finestra + + + + Automatic + Automàtic + + + + + Default + Valor predeterminat + + + + Amiibo editor + + + + + Controller configuration + + + + + Data erase + + + + + Net connect + + + + + Player select + + + + + Software keyboard + + + + + Mii Edit + + + + + Online web + + + + + Shop + + + + + Photo viewer + + + + + Offline web + + + + + Login share + + + + + Wifi web auth + + + + + My page + + + + + This option increases CPU emulation thread use from 1 to the Switch’s maximum of 4. +This is mainly a debug option and shouldn’t be disabled. + + + + + Memory Layout + + + + + Increases the amount of emulated RAM from the stock 4GB of the retail Switch to the developer kit's 8/6GB. +It’s doesn’t improve stability or performance and is intended to let big texture mods fit in emulated RAM. +Enabling it will increase memory use. It is not recommended to enable unless a specific game with a texture mod needs it. + + + + + Controls the game's maximum rendering speed, but it’s up to each game if it runs faster or not. +200% for a 30 FPS game is 60 FPS, and for a 60 FPS game it will be 120 FPS. +Disabling it means unlocking the framerate to the maximum your PC can reach. + + + + + Synchronize Core Speed + + + + + Synchronizes CPU core speed with the game's maximum rendering speed to boost FPS without affecting game speed (animations, physics, etc.). +Compatibility varies by game; many (especially older ones) may not respond well. +Can help reduce stuttering at lower framerates. + + + + + This setting controls the accuracy of the emulated CPU. +Don't change this unless you know what you are doing. + + + + + + Backend: + + + + + Fast CPU Time + + + + + Overclocks the emulated CPU to remove some FPS limiters. Weaker CPUs may see reduced performance, and certain games may behave improperly. +Use Boost (1700MHz) to run at the Switch's highest native clock, or Fast (2000MHz) to run at 2x clock. + + + + + Custom CPU Ticks + + + + + Set a custom value of CPU ticks. Higher values can increase performance, but may also cause the game to freeze. A range of 77–21000 is recommended. + + + + + Enable Host MMU Emulation (fastmem) + + + + + This optimization speeds up memory accesses by the guest program. +Enabling it causes guest memory reads/writes to be done directly into memory and make use of Host's MMU. +Disabling this forces all memory accesses to use Software MMU Emulation. + + + + + This option improves speed by reducing accuracy of fused-multiply-add instructions on CPUs without native FMA support. + + + + + This option improves the speed of 32 bits ASIMD floating-point functions by running with incorrect rounding modes. + + + + + This option improves speed by removing NaN checking. +Please note this also reduces accuracy of certain floating-point instructions. + + + + + This option improves speed by eliminating a safety check before every memory read/write in guest. +Disabling it may allow a game to read/write the emulator's memory. + + + + + This option improves speed by relying only on the semantics of cmpxchg to ensure safety of exclusive access instructions. +Please note this may result in deadlocks and other race conditions. + + + + + Switches between the available graphics APIs. +Vulkan is recommended in most cases. + + + + + This setting selects the GPU to use with the Vulkan backend. + + + + + The shader backend to use for the OpenGL renderer. +GLSL is the fastest in performance and the best in rendering accuracy. +GLASM is a deprecated NVIDIA-only backend that offers much better shader building performance at the cost of FPS and rendering accuracy. +SPIR-V compiles the fastest, but yields poor results on most GPU drivers. + + + + + Forces the game to render at a different resolution. +Higher resolutions require much more VRAM and bandwidth. +Options lower than 1X can cause rendering issues. + + + + + FSR Sharpness: + + + + + Determines how sharpened the image will look while using FSR’s dynamic contrast. + + + + + The anti-aliasing method to use. +SMAA offers the best quality. +FXAA has a lower performance impact and can produce a better and more stable picture under very low resolutions. + + + + + The method used to render the window in fullscreen. +Borderless offers the best compatibility with the on-screen keyboard that some games request for input. +Exclusive fullscreen may offer better performance and better Freesync/Gsync support. + + + + + Stretches the game to fit the specified aspect ratio. +Switch games only support 16:9, so custom game mods are required to get other ratios. +Also controls the aspect ratio of captured screenshots. + + + + + Allows saving shaders to storage for faster loading on following game boots. +Disabling it is only intended for debugging. + + + + + Optimize SPIRV output shader + + + + + Runs an additional optimization pass over generated SPIRV shaders. +Will increase time required for shader compilation. +May slightly improve performance. +This feature is experimental. + + + + + Uses an extra CPU thread for rendering. +This option should always remain enabled. + + + + + Specifies how videos should be decoded. +It can either use the CPU or the GPU for decoding, or perform no decoding at all (black screen on videos). +In most cases, GPU decoding provides the best performance. + + + + + ASTC Decoding Method: + + + + + This option controls how ASTC textures should be decoded. +CPU: Use the CPU for decoding, slowest but safest method. +GPU: Use the GPU's compute shaders to decode ASTC textures, recommended for most games and users. +CPU Asynchronously: Use the CPU to decode ASTC textures as they arrive. Completely eliminates ASTC decoding +stuttering at the cost of rendering issues while the texture is being decoded. + + + + + ASTC Recompression Method: + + + + + Almost all desktop and laptop dedicated GPUs lack support for ASTC textures, forcing the emulator to decompress to an intermediate format any card supports, RGBA8. +This option recompresses RGBA8 to either the BC1 or BC3 format, saving VRAM but negatively affecting image quality. + + + + + VRAM Usage Mode: + + + + + Selects whether the emulator should prefer to conserve memory or make maximum usage of available video memory for performance. +Aggressive mode may severely impact the performance of other applications such as recording software. + + + + + Skip CPU Inner Invalidation + + + + + Skips certain CPU-side cache invalidations during memory updates, reducing CPU usage and improving it's performance. This may cause glitches or crashes on some games. + + + + + VSync Mode: + + + + + FIFO (VSync) does not drop frames or exhibit tearing but is limited by the screen refresh rate. +FIFO Relaxed is similar to FIFO but allows tearing as it recovers from a slow down. +Mailbox can have lower latency than FIFO and does not tear but may drop frames. +Immediate (no synchronization) just presents whatever is available and can exhibit tearing. + + + + + Sync Memory Operations + + + + + Ensures data consistency between compute and memory operations. +This option should fix issues in some games, but may also reduce performance in some cases. +Unreal Engine 4 games often see the most significant changes thereof. + + + + + Enable asynchronous presentation (Vulkan only) + + + + + Slightly improves performance by moving presentation to a separate CPU thread. + + + + + Force maximum clocks (Vulkan only) + + + + + Runs work in the background while waiting for graphics commands to keep the GPU from lowering its clock speed. + + + + + Controls the quality of texture rendering at oblique angles. +It’s a light setting and safe to set at 16x on most GPUs. + + + + + GPU Accuracy: + + + + + Controls the GPU emulation accuracy. +Most games render fine with Normal, but High is still required for some. +Particles tend to only render correctly with High accuracy. +Extreme should only be used as a last resort. + + + + + DMA Accuracy: + + + + + Controls the DMA precision accuracy. Safe precision can fix issues in some games, but it can also impact performance in some cases. +If unsure, leave this on Default. + + + + + Enables asynchronous shader compilation, which may reduce shader stutter. +This feature is experimental. + + + + + Fast GPU Time (Hack) + + + + + Overclocks the emulated GPU to increase dynamic resolution and render distance. +Use 128 for maximal performance and 512 for maximal graphics fidelity. + + + + Use Vulkan pipeline cache - + Enables GPU vendor-specific pipeline cache. This option can improve shader loading time significantly in cases where the Vulkan driver does not store pipeline cache files internally. - + Enable Compute Pipelines (Intel Vulkan Only) - + Enable compute pipelines, required by some games. This setting only exists for Intel proprietary drivers, and may crash if enabled. Compute pipelines are always enabled on all other drivers. - + Enable Reactive Flushing - + Uses reactive flushing instead of predictive flushing, allowing more accurate memory syncing. - + Sync to framerate of video playback - + Run the game at normal speed during video playback, even when the framerate is unlocked. - + Barrier feedback loops - + Improves rendering of transparency effects in specific games. - - RNG Seed - Llavor de GNA + + RAII + - + + A method of automatic resource management in Vulkan that ensures proper release of resources when they are no longer needed, but may cause crashes in bundled games. + + + + + Extended Dynamic State + + + + + Controls the number of features that can be used in Extended Dynamic State. +Higher numbers allow for more features and can increase performance, but may cause issues with some drivers and vendors. +The default value may vary depending on your system and hardware capabilities. +This value can be changed until stability and a better visual quality are achieved. + + + + + Provoking Vertex + + + + + Improves lighting and vertex handling in certain games. +Only Vulkan 1.0+ devices support this extension. + + + + + Descriptor Indexing + + + + + Improves texture & buffer handling and the Maxwell translation layer. +Some Vulkan 1.1+ and all 1.2+ devices support this extension. + + + + + Sample Shading + + + + + Allows the fragment shader to execute per sample in a multi-sampled fragment instead once per fragment. Improves graphics quality at the cost of some performance. +Higher values improve quality more but also reduce performance to a greater extent. + + + + Controls the seed of the random number generator. Mainly used for speedrunning purposes. - - Device Name - Nom del Dispositiu - - - + The name of the emulated Switch. - + Custom RTC Date: - + This option allows to change the emulated clock of the Switch. Can be used to manipulate time in games. - + Language: - - Note: this can be overridden when region setting is auto-select - Nota: això pot anul·lar-se quan la configuració de regió es selecciona automàticament - - - - Region: - Regió: - - - + The region of the emulated Switch. - - Time Zone: - Zona horària: - - - + The time zone of the emulated Switch. - + Sound Output Mode: - + Console Mode: - + Selects if the console is emulated in Docked or Handheld mode. Games will change their resolution, details and supported controllers and depending on this setting. Setting to Handheld can help improve performance for low end systems. - - Prompt for user on game boot - Sol·licitar l'usuari en l'arrencada del joc - - - - Pause emulation when in background - Pausa l'emulació quan la finestra està en segon pla - - - - Fast GPU Time (Hack) + + Ask to select a user profile on each boot, useful if multiple people use Eden on the same PC. - - Overclocks the emulated GPU to increase dynamic resolution and render distance. -Use 128 for maximal performance and 512 for maximal graphics fidelity. + + This setting pauses Eden when focusing other windows. - - Extended Dynamic State - - - - - Enables the VkExtendedDynamicState* extensions. -Higher dynamic states will generally improve performance, but may cause issues on certain games or devices. - - - - - Provoking Vertex - - - - - Improves lighting and vertex handling in certain games. -Only Vulkan 1.0+ devices support this extension. - - - - - Descriptor Indexing - - - - - Improves texture & buffer handling and the Maxwell translation layer. -Some Vulkan 1.1+ and all 1.2+ devices support this extension. - - - - - Ask to select a user profile on each boot, useful if multiple people use eden on the same PC. - - - - - This setting pauses eden when focusing other windows. - - - - + Confirm before stopping emulation - + This setting overrides game prompts asking to confirm stopping the game. Enabling it bypasses such prompts and directly exits the emulation. - - Hide mouse on inactivity - Ocultar el cursor del ratolí en cas d'inactivitat - - - + This setting hides the mouse after 2.5s of inactivity. - + Disable controller applet - + Forcibly disables the use of the controller applet by guests. When a guest attempts to open the controller applet, it is immediately closed. - + Check for updates - + Whether or not to check for updates upon startup. - - Enable Gamemode - Activa el mode Joc - - - + Custom frontend - + Real applet - + Never - + On Load - + Always - - CPU - CPU - - - + GPU - + CPU Asynchronous - + Uncompressed (Best quality) - + BC1 (Low quality) - + BC3 (Medium quality) - + Conservative - + Aggressive - + OpenGL - + Vulkan - + Null - + GLSL - - GLASM (Assembly Shaders, NVIDIA Only) - GLASM (Assembly Shaders, només NVIDIA) - - - + SPIR-V (Experimental, AMD/Mesa Only) - + Normal - + High - + Extreme - - Auto - Auto + + Unsafe (fast) + - - Accurate - Precís + + Safe (stable) + - - Unsafe - Insegur - - - - Paranoid (disables most optimizations) - Paranoic (desactiva la majoria d'optimitzacions) - - - + Dynarmic - + NCE - - Borderless Windowed - Finestra sense vores - - - - Exclusive Fullscreen - Pantalla completa exclusiva - - - - No Video Output - Sense sortida de vídeo - - - - CPU Video Decoding - Descodificació de vídeo a la CPU - - - - GPU Video Decoding (Default) - Descodificació de vídeo a la GPU (Valor Predeterminat) - - - + 0.25X (180p/270p) [EXPERIMENTAL] - + 0.5X (360p/540p) [EXPERIMENTAL] - - 0.75X (540p/810p) [EXPERIMENTAL] - 0.75X (540p/810p) [EXPERIMENTAL] - - - - 1X (720p/1080p) - 1X (720p/1080p) - - - + 1.5X (1080p/1620p) [EXPERIMENTAL] - - 2X (1440p/2160p) - 2X (1440p/2160p) - - - - 3X (2160p/3240p) - 3X (2160p/3240p) - - - - 4X (2880p/4320p) - 4X (2880p/4320p) - - - - 5X (3600p/5400p) - 5X (3600p/5400p) - - - - 6X (4320p/6480p) - 6X (4320p/6480p) - - - + 7X (5040p/7560p) - + 8X (5760p/8640p) - - Nearest Neighbor - Veí més proper - - - - Bilinear - Bilineal - - - - Bicubic - Bicúbic - - - - Gaussian - Gaussià - - - - ScaleForce - ScaleForce - - - + AMD FidelityFX™️ Super Resolution - + Area - - None - Cap - - - - FXAA - FXAA - - - + SMAA - - Default (16:9) - Valor predeterminat (16:9) - - - - Force 4:3 - Forçar 4:3 - - - - Force 21:9 - Forçar 21:9 - - - + Force 16:10 - - Stretch to Window - Estirar a la finestra - - - - Automatic - Automàtic - - - - Default - Valor predeterminat - - - + 2x 2x - + 4x 4x - + 8x 8x - + 16x 16x - + Japanese (日本語) Japonès (日本語) - + American English - + French (français) Francès (français) - + German (Deutsch) Alemany (Deutsch) - + Italian (italiano) Italià (italiano) - + Spanish (español) Castellà (español) - + Chinese Xinès - + Korean (한국어) Coreà (한국어) - + Dutch (Nederlands) Holandès (Nederlands) - + Portuguese (português) Portuguès (português) - + Russian (Русский) Rus (Русский) - + Taiwanese Taiwanès - + British English Anglès britànic - + Canadian French Francès canadenc - + Latin American Spanish Espanyol llatinoamericà - + Simplified Chinese Xinès simplificat - + Traditional Chinese (正體中文) Xinès tradicional (正體中文) - + Brazilian Portuguese (português do Brasil) Portuguès brasiler (português do Brasil) - - + + Serbian (српски) + + + + + Japan Japó - + USA EUA - + Europe Europa - + Australia Austràlia - + China Xina - + Korea Corea - + Taiwan Taiwan - + Auto (%1) Auto select time zone Auto (%1) - + Default (%1) Default time zone Per defecte (%1) - + CET CET - + CST6CDT CST6CDT - + Cuba Cuba - + EET EET - + Egypt Egipte - + Eire Eire - + EST EST - + EST5EDT EST5EDT - + GB GB - + GB-Eire GB-Eire - + GMT GMT - + GMT+0 GMT+0 - + GMT-0 GMT-0 - + GMT0 GMT0 - + Greenwich Greenwich - + Hongkong Hong Kong - + HST HST - + Iceland Islàndia - + Iran Iran - + Israel Isreal - + Jamaica Jamaica - + Kwajalein Kwajalein - + Libya Líbia - + MET MET - + MST MST - + MST7MDT MST7MDT - + Navajo Navajo - + NZ NZ - + NZ-CHAT NZ-CHAT - + Poland Polònia - + Portugal Portugal - + PRC PRC - + PST8PDT PST8PDT - + ROC ROC - + ROK ROK - + Singapore Singapur - + Turkey Turquia - + UCT UCT - + Universal Universal - + UTC UTC - + W-SU W-SU - + WET WET - + Zulu Zulu - + Mono Mono - + Stereo Estèreo - + Surround Envoltant - + 4GB DRAM (Default) - + 6GB DRAM (Unsafe) - + 8GB DRAM - + 10GB DRAM (Unsafe) - + 12GB DRAM (Unsafe) - - Low (128) - - - - - Medium (256) - - - - - High (512) - - - - + Docked Acoblada - + Handheld Portàtil - + Boost (1700MHz) - + Fast (2000MHz) - + Always ask (Default) - + Only if game specifies not to stop Tan sols si el joc especifica no parar - + Never ask + + + Low (128) + + + + + Medium (256) + + + + + High (512) + + ConfigureApplets @@ -2265,27 +2362,27 @@ When a guest attempts to open the controller applet, it is immediately closed.Registre - + Open Log Location Obrir ubicació de l'arxiu del registre - + Global Log Filter Filtre de registre global - + When checked, the max size of the log increases from 100 MB to 1 GB Quan està marcat, la mida màxima del registre augmenta de 100 MB a 1 GB - + Enable Extended Logging** Habilitar registre ampliat** - + Show Log in Console Mostra el registre a la consola @@ -2431,7 +2528,7 @@ When a guest attempts to open the controller applet, it is immediately closed. - **This will be reset automatically when eden closes. + **This will be reset automatically when Eden closes. @@ -2493,7 +2590,7 @@ When a guest attempts to open the controller applet, it is immediately closed.**Això es restablirà automàticament quan es tanqui yuzu. - + Web applet not compiled Web applet no compilat @@ -2543,7 +2640,7 @@ When a guest attempts to open the controller applet, it is immediately closed. - eden Configuration + Eden Configuration @@ -2552,88 +2649,88 @@ When a guest attempts to open the controller applet, it is immediately closed.Algunes configuracions són disponibles només quan el joc no està corrent. - + Applets - - + + Audio Àudio - - + + CPU CPU - + Debug Depuració - + Filesystem Sistema de fitxers - - + + General General - - + + Graphics Gràfics - + GraphicsAdvanced GràficsAvançat - + GraphicsExtensions - + Hotkeys Tecles d'accés ràpid - - + + Controls Controls - + Profiles Perfils - + Network Xarxa - - + + System Sistema - + Game List Llista de jocs - + Web Web @@ -2731,51 +2828,45 @@ When a guest attempts to open the controller applet, it is immediately closed. - - - Reset Metadata Cache Reiniciar cache de metadades - + Select Emulated NAND Directory... Seleccioni el directori de NAND emulat... - + Select Emulated SD Directory... Seleccioni el directori de SD emulat... - + Select Gamecard Path... Seleccioni la ruta del cartutx de joc... - + Select Dump Directory... Seleccioni el directori de bolcat... - + Select Mod Load Directory... Seleccioni el directori de càrrega de mods... - The metadata cache is already empty. - El cache de metadades ja està buit. + El cache de metadades ja està buit. - The operation completed successfully. - L'operació s'ha completat correctament. + L'operació s'ha completat correctament. - The metadata cache couldn't be deleted. It might be in use or non-existent. - El cache de metadades no s'ha pogut eliminar. Pot ser que es trobi en ús actualment o ja hagi sigut eliminat. + El cache de metadades no s'ha pogut eliminar. Pot ser que es trobi en ús actualment o ja hagi sigut eliminat. @@ -2806,12 +2897,12 @@ When a guest attempts to open the controller applet, it is immediately closed.yuzu - - eden + + Eden - + This reset all settings and remove all per-game configurations. This will not delete game directories, profiles, or input profiles. Proceed? Això restablirà tota la configuració i eliminarà totes les configuracions dels jocs. No eliminarà ni els directoris de jocs, ni els perfils, ni els perfils dels controladors. Procedir? @@ -2844,33 +2935,33 @@ When a guest attempts to open the controller applet, it is immediately closed.Color de fons: - + % FSR sharpening percentage (e.g. 50%) % - + Off Apagat - + VSync Off Vsync Apagat - + Recommended Recomanat - + On Encés - + VSync On VSync Encés @@ -2907,14 +2998,18 @@ When a guest attempts to open the controller applet, it is immediately closed. - Vulkan Extension Settings + Vulkan Extensions Settings - - While it's recommended to use state 3, some games may perform better on lower states. Setting to 0 (disabled) may also break games. -If your GPU is older (i.e. RX570/580 or older), it may not support these features. If this is the case, set the slider to 0 and uncheck all boxes. -These settings are experimental, and may cause black screens. If your games fail to boot or are stuck on a black screen, change these settings around. + + % + Sample Shading percentage (e.g. 50%) + % + + + + Extended Dynamic State is disabled on macOS due to MoltenVK compatibility issues that cause black screens. @@ -2946,75 +3041,75 @@ These settings are experimental, and may cause black screens. If your games fail Restaurar els valors predeterminats - + Action Acció - + Hotkey Tecla d'accés ràpid - + Controller Hotkey Tecla d'accés ràpid del controlador - - - + + + Conflicting Key Sequence Seqüència de tecles en conflicte - - + + The entered key sequence is already assigned to: %1 La seqüència de tecles introduïda ja ha estat assignada a: %1 - + [waiting] [esperant] - + Invalid Invàlid - + Invalid hotkey settings Configuracions de dreceres de teclat invalides - + An error occurred. Please report this issue on github. Hi ha hagut un error. Siusplau informi d'aquest problema a github. - + Restore Default Restaurar el valor predeterminat - + Clear Esborrar - + Conflicting Button Sequence Seqüència de botons en conflicte - + The default button sequence is already assigned to: %1 La seqüència de botons per defecte ja està assignada a: %1 - + The default key sequence is already assigned to: %1 La seqüència de tecles predeterminada ja ha estat assignada a: %1 @@ -3334,7 +3429,7 @@ These settings are experimental, and may cause black screens. If your games fail - Requires restarting eden + Requires restarting Eden @@ -3489,7 +3584,7 @@ These settings are experimental, and may cause black screens. If your games fail - + Left Stick Palanca esquerra @@ -3599,14 +3694,14 @@ These settings are experimental, and may cause black screens. If your games fail - + L L - + ZL ZL @@ -3625,7 +3720,7 @@ These settings are experimental, and may cause black screens. If your games fail - + Plus Més @@ -3638,15 +3733,15 @@ These settings are experimental, and may cause black screens. If your games fail - - + + R R - + ZR ZR @@ -3691,7 +3786,7 @@ These settings are experimental, and may cause black screens. If your games fail - + Right Stick Palanca dreta @@ -3706,242 +3801,242 @@ These settings are experimental, and may cause black screens. If your games fail Configurar - - - - + + + + Clear Esborrar - - - - - + + + + + [not set] [no establert] - - - + + + Invert button Botó d'inversió - - + + Toggle button Botó commutador - + Turbo button Botó turbo - - + + Invert axis Invertir eixos - - - + + + Set threshold Configurar llindar - - + + Choose a value between 0% and 100% Esculli un valor entre 0% i 100% - + Toggle axis Activa l'eix - + Set gyro threshold Configurar llindar giroscopi - + Calibrate sensor Calibrar sensor - + Map Analog Stick Configuració de palanca analògica - + After pressing OK, first move your joystick horizontally, and then vertically. To invert the axes, first move your joystick vertically, and then horizontally. Després de prémer D'acord, primer moveu el joystick horitzontalment i després verticalment. Per invertir els eixos, primer moveu el joystick verticalment i després horitzontalment. - + Center axis Centrar eixos - - + + Deadzone: %1% Zona morta: %1% - - + + Modifier Range: %1% Rang del modificador: %1% - - + + Pro Controller Controlador Pro - + Dual Joycons Joycons duals - + Left Joycon Joycon esquerra - + Right Joycon Joycon dret - + Handheld Portàtil - + GameCube Controller Controlador de GameCube - + Poke Ball Plus Poke Ball Plus - + NES Controller Controlador NES - + SNES Controller Controlador SNES - + N64 Controller Controlador N64 - + Sega Genesis Sega Genesis - + Start / Pause Inici / Pausa - + Z Z - + Control Stick Palanca de control - + C-Stick C-Stick - + Shake! Sacseja! - + [waiting] [esperant] - + New Profile Nou perfil - + Enter a profile name: Introdueixi un nom de perfil: - - + + Create Input Profile Crear perfil d'entrada - + The given profile name is not valid! El nom de perfil introduït no és vàlid! - + Failed to create the input profile "%1" Error al crear el perfil d'entrada "%1" - + Delete Input Profile Eliminar perfil d'entrada - + Failed to delete the input profile "%1" Error al eliminar el perfil d'entrada "%1" - + Load Input Profile Carregar perfil d'entrada - + Failed to load the input profile "%1" Error al carregar el perfil d'entrada "%1" - + Save Input Profile Guardar perfil d'entrada - + Failed to save the input profile "%1" Error al guardar el perfil d'entrada "%1" @@ -3998,7 +4093,7 @@ Per invertir els eixos, primer moveu el joystick verticalment i després horitzo - + Configure Configuració @@ -4034,7 +4129,7 @@ Per invertir els eixos, primer moveu el joystick verticalment i després horitzo - + Test Provar @@ -4053,7 +4148,7 @@ Per invertir els eixos, primer moveu el joystick verticalment i després horitzo <a href='https://yuzu-emu.org/wiki/using-a-controller-or-android-phone-for-motion-or-touch-input'><span style="text-decoration: underline; color:#039be5;">Més Informació</span></a> - + %1:%2 %1:%2 @@ -4062,77 +4157,77 @@ Per invertir els eixos, primer moveu el joystick verticalment i després horitzo yuzu - + <a href='https://eden-emulator.github.io/wiki/using-a-controller-or-android-phone-for-motion-or-touch-input'><span style="text-decoration: underline; color:#039be5;">Learn More</span></a> - + Port number has invalid characters El número de port té caràcters invàlids - - - - - - - eden + + + + + + + Eden - + Port has to be in range 0 and 65353 El port ha d'estar entre el rang 0 i 65353 - + IP address is not valid l'Adreça IP no és vàlida - + This UDP server already exists Aquest servidor UDP ja existeix - + Unable to add more than 8 servers No és possible afegir més de 8 servidors - + Testing Provant - + Configuring Configurant - + Test Successful Prova exitosa - + Successfully received data from the server. S'han rebut dades des del servidor correctament. - + Test Failed Prova 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 s'han pogut rebre dades vàlides des del servidor.<br>Si us plau, verifiqui que el servidor està configurat correctament i que la direcció i el port són correctes.  - + UDP Test or calibration configuration is in progress.<br>Please wait for them to finish. La prova del UDP o la configuració de la calibració està en curs.<br>Si us plau, esperi a que acabi el procés. @@ -4258,7 +4353,12 @@ Current values are %1% and %2% respectively. Interfície de xarxa - + + Enable Airplane Mode + + + + None Cap @@ -4316,52 +4416,52 @@ Current values are %1% and %2% respectively. Algunes configuracions són disponibles només quan el joc no està corrent. - + Add-Ons Complements - + System Sistema - + CPU CPU - + Graphics Gràfics - + Adv. Graphics Gràfics avanç. - + GPU Extensions - + Audio Àudio - + Input Profiles Perfils d'entrada - + Linux - + Properties Propietats @@ -4379,12 +4479,12 @@ Current values are %1% and %2% respectively. Complements - + Patch Name Nom del pegat - + Version Versió @@ -4422,27 +4522,32 @@ Current values are %1% and %2% respectively. Establir imatge - + + Select Avatar + + + + Add Afegir - + Rename Renombrar - + Remove Eliminar - + Profile management is available only when game is not running. La gestió de perfils només està disponible quan el joc no s'està executant. - + %1 %2 %1 is the profile username, %2 is the formatted UUID (e.g. 00112233-4455-6677-8899-AABBCCDDEEFF)) @@ -4450,100 +4555,189 @@ Current values are %1% and %2% respectively. %2 - + Enter Username Introdueixi el nom d'usuari - + Users Usuaris - + Enter a username for the new user: Introdueixi un nom d'usuari per al nou usuari: - + Enter a new username: Introdueixi un nou nom d'usuari: - + + Error saving user image + + + + + Unable to save image to file + + + + Select User Image Seleccioni una imatge d'usuari - - JPEG Images (*.jpg *.jpeg) - Imatges JPEG (*.jpg *.jpeg) + + Image Formats (*.jpg *.jpeg *.png *.bmp) + - + + No firmware available + + + + + Please install the firmware to use firmware avatars. + + + + + + Error loading archive + + + + + Archive is not available. Please install/reinstall firmware. + + + + + Archive does not contain romfs. It is probably corrupt. + + + + + Error extracting archive + + + + + Archive could not be extracted. It is probably corrupt. + + + + + Error finding image directory + + + + + Failed to find image directory in the archive. + + + + + No images found + + + + + No avatar images were found in the archive. + + + + JPEG Images (*.jpg *.jpeg) + Imatges JPEG (*.jpg *.jpeg) + + + Error deleting image Error al eliminar la imatge - + Error occurred attempting to overwrite previous image at: %1. Error al intentar sobreescriure la imatge anterior a: %1. - + Error deleting file Error al eliminar el fitxer - + Unable to delete existing file: %1. No es pot eliminar el fitxer existent: %1. - + Error creating user image directory Error al crear el directori d'imatges de l'usuari - + Unable to create directory %1 for storing user images. No es pot crear el directori %1 per emmagatzemar imatges d’usuari. - Error copying user image - Error al copiar la imatge de l'usuari + Error al copiar la imatge de l'usuari - Unable to copy image from %1 to %2 - No es pot copiar la imatge de %1 a %2 + No es pot copiar la imatge de %1 a %2 - Error resizing user image - Error al redimensionar la imatge d'usuari + Error al redimensionar la imatge d'usuari - Unable to resize image - No es pot redimensionar la imatge + No es pot redimensionar la imatge + + + + ConfigureProfileManagerAvatarDialog + + + Select + + + + + Cancel + + + + + Background Color + + + + + Select Firmware Avatar + ConfigureProfileManagerDeleteDialog - + Delete this user? All of the user's save data will be deleted. Esborrar aquest usuari? Totes les dades de guardat seran eliminades. - + Confirm Delete Confirmar eliminació - + Name: %1 UUID: %2 Nom: %1 @@ -4596,7 +4790,7 @@ UUID: %2 - + Enable Habilita @@ -4607,7 +4801,7 @@ UUID: %2 - + Not connected No connectat @@ -4617,63 +4811,63 @@ UUID: %2 Restaurar els valors predeterminats - + Clear Esborrar - + [not set] [no establert] - + Invert axis Invertir eixos - - + + Deadzone: %1% Zona morta: %1% - + Error enabling ring input - + Direct Joycon driver is not enabled - + Configuring Configurant - + The current mapped device doesn't support the ring controller - + The current mapped device doesn't have a ring attached - + The current mapped device is not connected - + Unexpected driver result %1 Resultat de controlador inesperat %1 - + [waiting] [esperant] @@ -4715,7 +4909,7 @@ UUID: %2 - <html><head/><body><p>Reads controller input from scripts in the same format as TAS-nx scripts.<br/>For a more detailed explanation, please consult the <a href="https://eden-emulator.github.io/help/feature/tas/"><span style=" text-decoration: underline; color:#039be5;">help page</span></a> on the eden website.</p></body></html> + <html><head/><body><p>Reads controller input from scripts in the same format as TAS-nx scripts.<br/>For a more detailed explanation, please consult the <a href="https://eden-emulator.github.io/help/feature/tas/"><span style=" text-decoration: underline; color:#039be5;">help page</span></a> on the Eden website.</p></body></html> @@ -4767,12 +4961,12 @@ UUID: %2 ConfigureTasDialog - + TAS Configuration Configuració TAS - + Select TAS Load Directory... Selecciona el directori de càrrega TAS... @@ -4882,7 +5076,7 @@ Arrossegui els punts per a canviar la posició, o faci doble clic a les cel·les - Warning: The settings in this page affect the inner workings of eden's emulated touchscreen. Changing them may result in undesirable behavior, such as the touchscreen partially or not working. You should only use this page if you know what you are doing. + Warning: The settings in this page affect the inner workings of Eden's emulated touchscreen. Changing them may result in undesirable behavior, such as the touchscreen partially or not working. You should only use this page if you know what you are doing. @@ -5202,6 +5396,16 @@ Arrossegui els punts per a canviar la posició, o faci doble clic a les cel·les Web Web + + + Eden Web Service + + + + + Generate + + yuzu Web Service Servei Web de yuzu @@ -5211,42 +5415,29 @@ Arrossegui els punts per a canviar la posició, o faci doble clic a les cel·les Al proporcionar el seu nom d'usuari i token, dóna el seu consentiment a que yuzu recopili dades d'ús adicionals, que poden incloure informació d'identificació de l'usuari. - - eden Web Service - - - - - By providing your username and token, you agree to allow eden to collect additional usage data, which may include user identifying information. - - - - Verify - Verificar + Verificar - Sign up - Registrar-se + Registrar-se - + Token: Token: - + Username: Nom d'usuari: - What is my token? - Quin és el meu token? + Quin és el meu token? - + Web Service configuration can only be changed when a public room isn't being hosted. @@ -5271,12 +5462,12 @@ Arrossegui els punts per a canviar la posició, o faci doble clic a les cel·les Regenerar - + Discord Presence Presència al Discord - + Show Current Game in your Discord Status Mostrar el joc actual al seu estat de Discord @@ -5285,24 +5476,8 @@ Arrossegui els punts per a canviar la posició, o faci doble clic a les cel·les <a href='https://yuzu-emu.org/help/feature/telemetry/'><span style="text-decoration: underline; color:#039be5;">Saber més</span></a> - <a href='https://profile.yuzu-emu.org/'><span style="text-decoration: underline; color:#039be5;">Sign up</span></a> - <a href='https://profile.yuzu-emu.org/'><span style="text-decoration: underline; color:#039be5;">Registrar-se</span></a> - - - - <a href='https://evilperson1337.notion.site/Hosting-a-Room-Inside-of-Eden-20457c2edaf680108abac6215a79acdb'><span style="text-decoration: underline; color:#039be5;">What is my token?</span></a> - - - - - Warning - - - - - Verification is currently nonfunctional, instead generate a random 48-character string with only lowercase a-z. - + <a href='https://profile.yuzu-emu.org/'><span style="text-decoration: underline; color:#039be5;">Registrar-se</span></a> <a href='https://yuzu-emu.org/wiki/yuzu-web-service/'><span style="text-decoration: underline; color:#039be5;">What is my token?</span></a> @@ -5324,12 +5499,6 @@ Arrossegui els punts per a canviar la posició, o faci doble clic a les cel·les Token was not verified. The change to your token has not been saved. El token no ha sigut verificat. El canvi al seu token no s'ha guardat. - - - Unverified, please click Verify before saving configuration - Tooltip - - Verifying... Comprovant... @@ -5347,20 +5516,67 @@ Arrossegui els punts per a canviar la posició, o faci doble clic a les cel·les Verification failed. Check that you have entered your token correctly, and that your internet connection is working. Verificació fallida. Comprovi que hagi ingressat el seu token correctament, i que la seva connexió a internet estigui funcionant. + + + + All Good + Tooltip + + + + + Must be between 4-20 characters + Tooltip + + + + + Must be 48 characters, and lowercase a-z + Tooltip + + ControllerDialog - + Controller P1 Controlador J1 - + &Controller P1 &Controlador J1 + + DepsDialog + + + Eden Dependencies + + + + + <html><head/><body><p><span style=" font-size:28pt;">Eden Dependencies</span></p></body></html> + + + + + <html><head/><body><p>The projects that make Eden possible</p></body></html> + + + + + Dependency + + + + + Version + Versió + + DirectConnect @@ -5466,7 +5682,12 @@ Arrossegui els punts per a canviar la posició, o faci doble clic a les cel·les - Creating a room failed. Please retry. Restarting eden might be necessary. + Creating a room failed. Please retry. Restarting Eden might be necessary. + + + + + Version mismatch! Please update to the latest version of Eden. If the problem persists, contact the room host and ask them to update the server. @@ -5474,11 +5695,6 @@ Arrossegui els punts per a canviar la posició, o faci doble clic a les cel·les 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 eden. If the problem persists, contact the room host and ask them to update the server. - - Incorrect password. @@ -5538,111 +5754,110 @@ Please go to Configure -> System -> Network and make a selection. Telemetria - + Broken Vulkan Installation Detected - + Running a game TRANSLATORS: This string is shown to the user to explain why yuzu needs to prevent the computer from sleeping - + Loading Web Applet... Carregant Web applet... - - + + Disable Web Applet Desactivar el Web Applet - + Disabling the web applet can lead to undefined behavior and should only be used with Super Mario 3D All-Stars. Are you sure you want to disable the web applet? (This can be re-enabled in the Debug settings.) Desactivar l'Applet Web pot provocar comportaments indefinits i només hauria d'utilitzar-se amb Super Mario 3D All-Stars. Estàs segur de que vols desactivar l'Applet Web? (Això pot ser reactivat als paràmetres Debug.) - + The amount of shaders currently being built La quantitat de shaders que s'estan compilant actualment - + The current selected resolution scaling multiplier. El multiplicador d'escala de resolució seleccionat actualment. - + Current emulation speed. Values higher or lower than 100% indicate emulation is running faster or slower than a Switch. Velocitat d'emulació actual. Valors superiors o inferiors a 100% indiquen que l'emulació s'està executant més ràpidament o més lentament que a la Switch. - + How many frames per second the game is currently displaying. This will vary from game to game and scene to scene. Quants fotogrames per segon està mostrant el joc actualment. Això variarà d'un joc a un altre i d'una escena a una altra. - + Time taken to emulate a Switch frame, not counting framelimiting or v-sync. For full-speed emulation this should be at most 16.67 ms. Temps que costa emular un fotograma de la Switch, sense tenir en compte la limitació de fotogrames o la sincronització vertical. Per a una emulació òptima, aquest valor hauria de ser com a màxim de 16.67 ms. - + Unmute - + Mute Silenciar - + Reset Volume - + &Clear Recent Files &Esborrar arxius recents - + &Continue &Continuar - + &Pause &Pausar - Warning Outdated Game Format - Advertència format del joc desfasat + Advertència format del joc desfasat You are using the deconstructed ROM directory format for this game, which is an outdated format that has been superseded by others such as NCA, NAX, XCI, or NSP. Deconstructed ROM directories lack icons, metadata, and update support.<br><br>For an explanation of the various Switch formats yuzu supports, <a href='https://yuzu-emu.org/wiki/overview-of-switch-game-formats'>check out our wiki</a>. This message will not be shown again. Està utilitzant el format de directori de ROM deconstruït per a aquest joc, que és un format desactualitzat que ha sigut reemplaçat per altres, com NCA, NAX, XCI o NSP. Els directoris de ROM deconstruïts careixen d'icones, metadades i suport d'actualitzacions.<br><br>Per a obtenir una explicació dels diversos formats de Switch que suporta yuzu,<a href='https://yuzu-emu.org/wiki/overview-of-switch-game-formats'>faci una ullada a la nostra wiki</a>. Aquest missatge no es tornarà a mostrar. - - + + Error while loading ROM! Error carregant la ROM! - + The ROM format is not supported. El format de la ROM no està suportat. - + An error occurred initializing the video core. S'ha produït un error inicialitzant el nucli de vídeo. @@ -5651,7 +5866,7 @@ Please go to Configure -> System -> Network and make a selection. yuzu ha trobat un error mentre executava el nucli de vídeo. Això sol ser causat per controladors de la GPU obsolets, inclosos els integrats. Si us plau, consulti el registre per a més detalls. Per obtenir més informació sobre com accedir al registre, consulti la següent pàgina: <a href='https://yuzu-emu.org/help/reference/log-files/'>Com carregar el fitxer de registre</a>. - + Error while loading ROM! %1 %1 signifies a numeric error code. Error al carregar la ROM! %1 @@ -5662,473 +5877,349 @@ Please go to Configure -> System -> Network and make a selection. %1<br>Si us plau, segueixi <a href='https://yuzu-emu.org/help/quickstart/'>la guia d'inici de yuzu</a> per a bolcar de nou els seus fitxers.<br>Pot consultar la wiki de yuzu wiki</a> o el Discord de yuzu</a> per obtenir ajuda. - + Vulkan initialization failed during boot.<br><br>Click <a href='https://eden-emulator.github.io/wiki/faq/#yuzu-starts-with-the-error-broken-vulkan-installation-detected'>here for instructions to fix the issue</a>. - - Game Updates Warning - - - - - The game you are trying to launch is known to have performance or booting issues when updates are applied. Please try increasing the memory layout to 6GB or 8GB if any issues occur.<br><br>Press "OK" to continue launching, or "Cancel" to cancel the launch. - - - - - Don't show again for this game - - - - - You are using the deconstructed ROM directory format for this game, which is an outdated format that has been superseded by others such as NCA, NAX, XCI, or NSP. Deconstructed ROM directories lack icons, metadata, and update support.<br><br>For an explanation of the various Switch formats eden supports, <a href='https://eden-emulator.github.io/wiki/overview-of-switch-game-formats'>check out our wiki</a>. This message will not be shown again. - - - - - eden has encountered an error while running the video core. This is usually caused by outdated GPU drivers, including integrated ones. Please see the log for more details. For more information on accessing the log, please see the following page: <a href='https://eden-emulator.github.io/help/reference/log-files/'>How to Upload the Log File</a>. - - - - - %1<br>Please redump your files or ask on Discord for help. - %1 signifies an error string. - - - - + An unknown error occurred. Please see the log for more details. S'ha produït un error desconegut. Si us plau, consulti el registre per a més detalls. - + (64-bit) (64-bit) - + (32-bit) (32-bit) - + %1 %2 %1 is the title name. %2 indicates if the title is 64-bit or 32-bit %1 %2 - + Closing software... S'està tancant el programari - + Save Data Dades de partides guardades - + Mod Data Dades de mods - + Error Opening %1 Folder Error obrint la carpeta %1 - - + + Folder does not exist! La carpeta no existeix! - Error Opening Transferable Shader Cache - Error obrint la cache transferible de shaders + Error obrint la cache transferible de shaders - Failed to create the shader cache directory for this title. - No s'ha pogut crear el directori de la cache dels shaders per aquest títol. + No s'ha pogut crear el directori de la cache dels shaders per aquest títol. - Error Removing Contents - Error eliminant continguts + Error eliminant continguts - Error Removing Update - Error eliminant actualització + Error eliminant actualització - Error Removing DLC - Error eliminant DLC + Error eliminant DLC - + Remove Installed Game Contents? - + Remove Installed Game Update? - + Remove Installed Game DLC? - + Remove Entry Eliminar entrada - - - - - - Successfully Removed - S'ha eliminat correctament + S'ha eliminat correctament - Successfully removed the installed base game. - S'ha eliminat correctament el joc base instal·lat. + S'ha eliminat correctament el joc base instal·lat. - The base game is not installed in the NAND and cannot be removed. - El joc base no està instal·lat a la NAND i no pot ser eliminat. + El joc base no està instal·lat a la NAND i no pot ser eliminat. - Successfully removed the installed update. - S'ha eliminat correctament l'actualització instal·lada. + S'ha eliminat correctament l'actualització instal·lada. - There is no update installed for this title. - No hi ha cap actualització instal·lada per aquest títol. + No hi ha cap actualització instal·lada per aquest títol. - There are no DLC installed for this title. - No hi ha cap DLC instal·lat per aquest títol. + No hi ha cap DLC instal·lat per aquest títol. - Successfully removed %1 installed DLC. - S'ha eliminat correctament %1 DLC instal·lat/s. + S'ha eliminat correctament %1 DLC instal·lat/s. - + Delete OpenGL Transferable Shader Cache? Desitja eliminar la cache transferible de shaders d'OpenGL? - + Delete Vulkan Transferable Shader Cache? Desitja eliminar la cache transferible de shaders de Vulkan? - + Delete All Transferable Shader Caches? Desitja eliminar totes les caches transferibles de shaders? - + Remove Custom Game Configuration? Desitja eliminar la configuració personalitzada del joc? - + Remove Cache Storage? - + Remove File Eliminar arxiu - + Remove Play Time Data - + Reset play time? - - Error Removing Transferable Shader Cache - Error eliminant la cache transferible de shaders + Error eliminant la cache transferible de shaders - - A shader cache for this title does not exist. - No existeix una cache de shaders per aquest títol. + No existeix una cache de shaders per aquest títol. - Successfully removed the transferable shader cache. - S'ha eliminat correctament la cache transferible de shaders. + S'ha eliminat correctament la cache transferible de shaders. - Failed to remove the transferable shader cache. - No s'ha pogut eliminar la cache transferible de shaders. + No s'ha pogut eliminar la cache transferible de shaders. - - Error Removing Vulkan Driver Pipeline Cache - - - - - Failed to remove the driver pipeline cache. - - - - - Error Removing Transferable Shader Caches - Error al eliminar les caches de shaders transferibles + Error al eliminar les caches de shaders transferibles - Successfully removed the transferable shader caches. - Caches de shaders transferibles eliminades correctament. + Caches de shaders transferibles eliminades correctament. - Failed to remove the transferable shader cache directory. - No s'ha pogut eliminar el directori de caches de shaders transferibles. + No s'ha pogut eliminar el directori de caches de shaders transferibles. - - Error Removing Custom Configuration - Error eliminant la configuració personalitzada + Error eliminant la configuració personalitzada - A custom configuration for this title does not exist. - No existeix una configuració personalitzada per aquest joc. + No existeix una configuració personalitzada per aquest joc. - Successfully removed the custom game configuration. - S'ha eliminat correctament la configuració personalitzada del joc. + S'ha eliminat correctament la configuració personalitzada del joc. - Failed to remove the custom game configuration. - No s'ha pogut eliminar la configuració personalitzada del joc. + No s'ha pogut eliminar la configuració personalitzada del joc. - - + + RomFS Extraction Failed! La extracció de RomFS ha fallat! - + There was an error copying the RomFS files or the user cancelled the operation. S'ha produït un error copiant els arxius RomFS o l'usuari ha cancel·lat la operació. - + Full Completa - + Skeleton Esquelet - + Select RomFS Dump Mode Seleccioni el mode de bolcat de RomFS - + Please select the how you would like the RomFS dumped.<br>Full will copy all of the files into the new directory while <br>skeleton will only create the directory structure. Si us plau, seleccioni la forma en que desitja bolcar la RomFS.<br>Completa copiarà tots els arxius al nou directori mentre que<br>esquelet només crearà l'estructura de directoris. - + There is not enough free space at %1 to extract the RomFS. Please free up space or select a different dump directory at Emulation > Configure > System > Filesystem > Dump Root No hi ha suficient espai lliure a %1 per extreure el RomFS. Si us plau, alliberi espai o esculli un altre directori de bolcat a Emulació > Configuració > Sistema > Sistema d'arxius > Carpeta arrel de bolcat - + Extracting RomFS... Extraient RomFS... - - - - - + + Cancel Cancel·la - + RomFS Extraction Succeeded! Extracció de RomFS completada correctament! - - - + The operation completed successfully. L'operació s'ha completat correctament. - - Integrity verification couldn't be performed! - - - - - File contents were not checked for validity. - - - - - - Verifying integrity... - - - - - - Integrity verification succeeded! - - - - - - Integrity verification failed! - - - - - File contents may be corrupt. - - - - - - - - Create Shortcut - - - - - Do you want to launch the game in fullscreen? - - - - - Successfully created a shortcut to %1 - - - - - This will create a shortcut to the current AppImage. This may not work well if you update. Continue? - - - - - Failed to create a shortcut to %1 - - - - Create Icon - Crear icona + Crear icona - - Cannot create icon file. Path "%1" does not exist and cannot be created. + + Warning: Outdated Game Format - + + You are using the deconstructed ROM directory format for this game, which is an outdated format that has been superseded by others such as NCA, NAX, XCI, or NSP. Deconstructed ROM directories lack icons, metadata, and update support.<br><br>For an explanation of the various Switch formats Eden supports, <a href='https://eden-emulator.github.io/wiki/overview-of-switch-game-formats'>check out our wiki</a>. This message will not be shown again. + + + + + Eden has encountered an error while running the video core. This is usually caused by outdated GPU drivers, including integrated ones. Please see the log for more details. For more information on accessing the log, please see the following page: <a href='https://yuzu-mirror.github.io/help/reference/log-files/'>How to Upload the Log File</a>. + + + + + %1<br>Please redump your files or ask on Discord/Revolt for help. + %1 signifies an error string. + + + + Error Opening %1 Error obrint %1 - + Select Directory Seleccionar directori - + Properties Propietats - + The game properties could not be loaded. Les propietats del joc no s'han pogut carregar. - + Switch Executable (%1);;All Files (*.*) %1 is an identifier for the Switch executable file extensions. Executable de Switch (%1);;Tots els Arxius (*.*) - + Load File Carregar arxiu - + Open Extracted ROM Directory Obrir el directori de la ROM extreta - + Invalid Directory Selected Directori seleccionat invàlid - + The directory you have selected does not contain a 'main' file. El directori que ha seleccionat no conté un arxiu 'main'. - + Installable Switch File (*.nca *.nsp *.xci);;Nintendo Content Archive (*.nca);;Nintendo Submission Package (*.nsp);;NX Cartridge Image (*.xci) Arxiu de Switch Instal·lable (*.nca *.nsp *.xci);;Arxiu de Continguts Nintendo (*.nca);;Paquet d'enviament Nintendo (*.nsp);;Imatge de Cartutx NX (*.xci) - + Install Files Instal·lar arxius - + %n file(s) remaining %n arxiu(s) restants @@ -6136,25 +6227,25 @@ Please go to Configure -> System -> Network and make a selection. - + Installing file "%1"... Instal·lant arxiu "%1"... - - + + Install Results Resultats instal·lació - + To avoid possible conflicts, we discourage users from installing base games to the NAND. Please, only use this feature to install updates and DLC. Per evitar possibles conflictes, no recomanem als usuaris que instal·lin jocs base a la NAND. Si us plau, utilitzi aquesta funció només per a instal·lar actualitzacions i DLCs. - + %n file(s) were newly installed @@ -6165,7 +6256,7 @@ Si us plau, utilitzi aquesta funció només per a instal·lar actualitzacions i - + %n file(s) were overwritten @@ -6176,7 +6267,7 @@ Si us plau, utilitzi aquesta funció només per a instal·lar actualitzacions i - + %n file(s) failed to install @@ -6187,489 +6278,443 @@ Si us plau, utilitzi aquesta funció només per a instal·lar actualitzacions i - + System Application Aplicació del sistema - + System Archive Arxiu del sistema - + System Application Update Actualització de l'aplicació del sistema - + Firmware Package (Type A) Paquet de firmware (Tipus A) - + Firmware Package (Type B) Paquet de firmware (Tipus B) - + Game Joc - + Game Update Actualització de joc - + Game DLC DLC del joc - + Delta Title Títol delta - + Select NCA Install Type... Seleccioni el tipus d'instal·lació NCA... - + Please select the type of title you would like to install this NCA as: (In most instances, the default 'Game' is fine.) Seleccioni el tipus de títol que desitja instal·lar aquest NCA com a: (En la majoria dels casos, el valor predeterminat 'Joc' està bé.) - + Failed to Install Ha fallat la instal·lació - + The title type you selected for the NCA is invalid. El tipus de títol seleccionat per el NCA és invàlid. - + File not found Arxiu no trobat - + File "%1" not found Arxiu "%1" no trobat - + OK D'acord - - + + Hardware requirements not met - - + + Your system does not meet the recommended hardware requirements. Compatibility reporting has been disabled. - + Missing yuzu Account Falta el compte de yuzu - - In order to submit a game compatibility test case, you must link your eden account.<br><br/>To link your eden account, go to Emulation &gt; Configuration &gt; Web. + + In order to submit a game compatibility test case, you must set up your web token and username.<br><br/>To link your eden account, go to Emulation &gt; Configuration &gt; Web. - - Install decryption keys and restart eden before attempting to install firmware. + + Select Dumped Firmware ZIP - - Firmware installation cancelled, firmware may be in bad state, restart eden or re-install firmware. + + Zipped Archives (*.zip) - - Encryption keys are missing. + + Firmware cleanup failed - - Are you sure you want to close eden? + + Failed to clean up extracted firmware cache. +Check write permissions in the system temp directory and try again. +OS reported error: %1 - - - - eden + + Please install firmware to use the Album applet. - - The currently running application has requested eden to not exit. + + Please install firmware to use the Cabinet applet. + + + + + Please install firmware to use the Mii editor. + + + + + Please install firmware to use the Controller Menu. + + + + + Please install firmware to use the Home Menu. + + + + + Firmware Corrupted + + + + + Firmware Too New + + + + + +Continue anyways? + + + + + Don't show again + + + + + Please install firmware to use Starter. + + + + + Are you sure you want to close Eden? + + + + + + + Eden + + + + + The currently running application has requested Eden to not exit. Would you like to bypass this and exit anyway? + + + Encryption keys are missing. + + In order to submit a game compatibility test case, you must link your yuzu account.<br><br/>To link your yuzu account, go to Emulation &gt; Configuration &gt; Web. Per tal d'enviar un cas de prova de compatibilitat de joc, ha de vincular el seu compte de yuzu.<br><br/>Per a vincular el seu compte de yuzu, vagi a Emulació & gt; Configuració & gt; Web. - + Error opening URL Error obrint URL - + Unable to open the URL "%1". No es pot obrir la URL "%1". - + TAS Recording Gravació TAS - + Overwrite file of player 1? Sobreescriure l'arxiu del jugador 1? - + Invalid config detected Configuració invàlida detectada - + Handheld controller can't be used on docked mode. Pro controller will be selected. El controlador del mode portàtil no es pot fer servir en el mode acoblat. Es seleccionarà el controlador Pro en el seu lloc. - - + + Amiibo Amiibo - - + + The current amiibo has been removed L'amiibo actual ha sigut eliminat - + Error Error - - + + The current game is not looking for amiibos El joc actual no està buscant amiibos - + Amiibo File (%1);; All Files (*.*) Arxiu Amiibo (%1);; Tots els Arxius (*.*) - + Load Amiibo Carregar Amiibo - + Error loading Amiibo data Error al carregar les dades d'Amiibo - + The selected file is not a valid amiibo L'arxiu seleccionat no és un amiibo vàlid - + The selected file is already on use - + An unknown error occurred - - - Verification failed for the following files: - -%1 - - - - + + Keys not installed - + + + Install decryption keys and restart Eden before attempting to install firmware. + + + + Select Dumped Firmware Source Location - - Installing Firmware... - - - - - - - - Firmware install failed - - - - - Unable to locate potential firmware NCA files - - - - - Failed to delete one or more firmware file. - - - - - One or more firmware files failed to copy into NAND. - - - - - Firmware integrity verification failed! - - - - - Select Dumped Keys Location - - - - - - - Decryption Keys install failed - - - - - prod.keys is a required decryption key file. - - - - - One or more keys failed to copy. - - - - - Decryption Keys install succeeded - - - - - Decryption Keys were successfully installed - - - - - Decryption Keys failed to initialize. Check that your dumping tools are up to date and re-dump keys. - - - - - - - - - - + + + + + + No firmware available - - Please install the firmware to use the Album applet. - - - - + Album Applet - + Album applet is not available. Please reinstall firmware. - - Please install the firmware to use the Cabinet applet. - - - - + Cabinet Applet - + Cabinet applet is not available. Please reinstall firmware. - - Please install the firmware to use the Mii editor. - - - - + Mii Edit Applet - + Mii editor is not available. Please reinstall firmware. - - Please install the firmware to use the Controller Menu. - - - - + Controller Applet Controlador Applet - + Controller Menu is not available. Please reinstall firmware. - - Please install the firmware to use the Home Menu. - - - - - + Home Menu Applet - - + Home Menu is not available. Please reinstall firmware. - - Please install the firmware to use Starter. - - - - + Starter Applet - + Starter is not available. Please reinstall firmware. - - Please install firmware to use the home menu. - - - - + Capture Screenshot Captura de pantalla - + PNG Image (*.png) Imatge PNG (*.png) - + Update Available - + Update %1 for Eden is available. Would you like to download it? - + TAS state: Running %1/%2 Estat TAS: executant %1/%2 - + TAS state: Recording %1 Estat TAS: gravant %1 - + TAS state: Idle %1/%2 Estat TAS: inactiu %1/%2 - + TAS State: Invalid Estat TAS: invàlid - + &Stop Running &Parar l'execució - + &Start &Iniciar - + Stop R&ecording Parar g&ravació - + R&ecord G&ravar - + Building: %n shader(s) Construint: %n shader(s) @@ -6677,18 +6722,18 @@ Would you like to download it? - + Scale: %1x %1 is the resolution scaling factor Escala: %1x - + Speed: %1% / %2% Velocitat: %1% / %2% - + Speed: %1% Velocitat: %1% @@ -6697,54 +6742,54 @@ Would you like to download it? Joc: %1 FPS (desbloquejat) - + Game: %1 FPS Joc: %1 FPS - + Frame: %1 ms Fotograma: %1 ms - + %1 %2 %1 %2 - - + + FSR FSR - + NO AA SENSE AA - + VOLUME: MUTE - + VOLUME: %1% Volume percentage (e.g. 50%) - + Derivation Components Missing Falten components de derivació - + Select RomFS Dump Target Seleccioni el destinatari per a bolcar el RomFS - + Please select which RomFS you would like to dump. Si us plau, seleccioni quin RomFS desitja bolcar. @@ -6757,7 +6802,7 @@ Would you like to download it? yuzu - + Are you sure you want to stop the emulation? Any unsaved progress will be lost. Està segur de que vol aturar l'emulació? Qualsevol progrés no guardat es perdrà. @@ -6770,102 +6815,102 @@ Would you like to bypass this and exit anyway? Desitja tancar-lo de totes maneres? - + None Cap - + FXAA FXAA - + SMAA - + Nearest - + Bilinear Bilineal - + Bicubic Bicúbic - + Gaussian Gaussià - + ScaleForce ScaleForce - + Area - + Docked Acoblada - + Handheld Portàtil - + Normal - + High - + Extreme - + Vulkan - + OpenGL - + Null - + GLSL - + GLASM - + SPIRV @@ -6873,13 +6918,13 @@ Desitja tancar-lo de totes maneres? GRenderWindow - - + + OpenGL not available! OpenGL no disponible! - + OpenGL shared contexts are not supported. @@ -6888,33 +6933,33 @@ Desitja tancar-lo de totes maneres? yuzu no ha estat compilat amb suport per OpenGL. - - eden has not been compiled with OpenGL support. + + Eden has not been compiled with OpenGL support. - - + + Error while initializing OpenGL! Error al inicialitzar OpenGL! - + Your GPU may not support OpenGL, or you do not have the latest graphics driver. La seva GPU no suporta OpenGL, o no té instal·lat els últims controladors gràfics. - + Error while initializing OpenGL 4.6! Error inicialitzant OpenGL 4.6! - + Your GPU may not support OpenGL 4.6, or you do not have the latest graphics driver.<br><br>GL Renderer:<br>%1 La seva GPU no suporta OpenGL 4.6, o no té instal·lats els últims controladors gràfics.<br><br>GL Renderer:<br>%1 - + Your GPU may not support one or more required OpenGL extensions. Please ensure you have the latest graphics driver.<br><br>GL Renderer:<br>%1<br><br>Unsupported extensions:<br>%2 És possible que la seva GPU no suporti una o més extensions necessàries d'OpenGL. Si us plau, asseguris de tenir els últims controladors de la tarjeta gràfica.<br><br>GL Renderer:<br>%1<br><br>Extensions no suportades:<br>%2 @@ -6922,128 +6967,128 @@ Desitja tancar-lo de totes maneres? GameList - + Favorite Preferit - + Start Game Iniciar el joc - + Start Game without Custom Configuration Iniciar el joc sense la configuració personalitzada - + Open Save Data Location Obrir la ubicació dels arxius de partides guardades - + Open Mod Data Location Obrir la ubicació dels mods - + Open Transferable Pipeline Cache Obrir cache transferible de shaders de canonada - + Remove Eliminar - + Remove Installed Update Eliminar actualització instal·lada - + Remove All Installed DLC Eliminar tots els DLC instal·lats - + Remove Custom Configuration Eliminar configuració personalitzada - + Remove Play Time Data - + Remove Cache Storage - + Remove OpenGL Pipeline Cache Eliminar cache de canonada d'OpenGL - + Remove Vulkan Pipeline Cache Eliminar cache de canonada de Vulkan - + Remove All Pipeline Caches Eliminar totes les caches de canonada - + Remove All Installed Contents Eliminar tots els continguts instal·lats - + Dump RomFS Bolcar RomFS - + Dump RomFS to SDMC Bolcar RomFS a SDMC - + Verify Integrity - + Copy Title ID to Clipboard Copiar la ID del títol al porta-retalls - + Navigate to GameDB entry Navegar a l'entrada de GameDB - + Create Shortcut - + Add to Desktop - + Add to Applications Menu - + Configure Game @@ -7052,62 +7097,62 @@ Desitja tancar-lo de totes maneres? Propietats - + Scan Subfolders Escanejar subdirectoris - + Remove Game Directory Eliminar directori de jocs - + ▲ Move Up ▲ Moure amunt - + ▼ Move Down ▼ Move avall - + Open Directory Location Obre ubicació del directori - + Clear Esborrar - + Name Nom - + Compatibility Compatibilitat - + Add-ons Complements - + File type Tipus d'arxiu - + Size Mida - + Play time @@ -7115,62 +7160,62 @@ Desitja tancar-lo de totes maneres? GameListItemCompat - + Ingame - + Game starts, but crashes or major glitches prevent it from being completed. - + Perfect Perfecte - + Game can be played without issues. - + Playable - + Game functions with minor graphical or audio glitches and is playable from start to finish. - + Intro/Menu Intro / Menú - + Game loads, but is unable to progress past the Start Screen. - + Won't Boot No engega - + The game crashes when attempting to startup. El joc es bloqueja al intentar iniciar. - + Not Tested No provat - + The game has not yet been tested. Aquest joc encara no ha estat provat. @@ -7178,7 +7223,7 @@ Desitja tancar-lo de totes maneres? GameListPlaceholder - + Double-click to add a new folder to the game list Faci doble clic per afegir un nou directori a la llista de jocs @@ -7186,7 +7231,7 @@ Desitja tancar-lo de totes maneres? GameListSearchField - + %1 of %n result(s) %1 de %n resultat(s) @@ -7194,12 +7239,12 @@ Desitja tancar-lo de totes maneres? - + Filter: Filtre: - + Enter pattern to filter Introdueixi patró per a filtrar @@ -7281,7 +7326,7 @@ Desitja tancar-lo de totes maneres? - Failed to announce the room to the public lobby. In order to host a room publicly, you must have a valid eden account configured in Emulation -> Configure -> Web. If you do not want to publish a room in the public lobby, then select Unlisted instead. + Failed to announce the room to the public lobby. In order to host a room publicly, you must have a valid Eden 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: @@ -7289,186 +7334,186 @@ Debug Message: Hotkeys - + Audio Mute/Unmute - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Main Window - + Audio Volume Down - + Audio Volume Up - + Capture Screenshot Captura de pantalla - + Change Adapting Filter - + Change Docked Mode - + Change GPU Accuracy - + Configure - + Configure Current Game - + Continue/Pause Emulation - + Exit Fullscreen - - Exit eden + + Exit Eden - + Fullscreen Pantalla Completa - + Load File Carregar arxiu - + Load/Remove Amiibo - + Multiplayer Browse Public Game Lobby - + Multiplayer Create Room - + Multiplayer Direct Connect to Room - + Multiplayer Leave Room - + Multiplayer Show Current Room - + Restart Emulation - + Stop Emulation - + TAS Record - + TAS Reset - + TAS Start/Stop - + Toggle Filter Bar - + Toggle Framerate Limit - + Toggle Mouse Panning - + Toggle Renderdoc Capture - + Toggle Status Bar @@ -7476,22 +7521,22 @@ Debug Message: InstallDialog - + Please confirm these are the files you wish to install. Si us plau, confirmi que aquests són els arxius que desitja instal·lar. - + Installing an Update or DLC will overwrite the previously installed one. Instal·lar una actualització o DLC sobreescriurà qualsevol prèviament instal·lat. - + Install Instal·lar - + Install Files to NAND Instal·lar arxius a la NAND @@ -7499,7 +7544,7 @@ Debug Message: LimitableInputDialog - + The text can't contain any of the following characters: %1 El text no pot contenir cap dels següents caràcters @@ -7646,152 +7691,207 @@ Debug Message: &Arxius recents - + + Open &Eden Folders + + + + &Emulation &Emulació - + &View &Veure - + &Reset Window Size &Reiniciar tamany de finestra - + &Debugging &Depuració - + Reset Window Size to &720p Reiniciar el tamany de la finestra a &720p - + Reset Window Size to 720p Reiniciar el tamany de la finestra a 720p - + Reset Window Size to &900p Reiniciar el tamany de la finestra a &900p - + Reset Window Size to 900p Reiniciar el tamany de la finestra a 900p - + Reset Window Size to &1080p Reiniciar el tamany de la finestra a &1080p - + Reset Window Size to 1080p Reiniciar el tamany de la finestra a 1080p - + &Multiplayer - + &Tools &Eines - + &Amiibo - + &TAS &TAS - + &Create Home Menu Shortcut - + &Help &Ajuda - + &Install Files to NAND... &instal·lar arxius a la NAND... - + L&oad File... C&arregar arxiu... - + Load &Folder... Carregar &carpeta... - + E&xit S&ortir - + &Pause &Pausar - + &Stop &Aturar - + &Verify Installed Contents - - &About eden + + &Root Data Folder - - Open &eden Folder + + &NAND Folder - + + &SDMC Folder + + + + + &Mod Folder + + + + + &Log Folder + + + + + From Folder + + + + + From ZIP + + + + + &X + + + + + X (Twitter) + + + + + &Revolt + + + + + Revolt + + + + + &Eden Dependencies + + + + Open Home Menu - + &Discord - + Open &Setup - + &Desktop - + &Application Menu @@ -7800,97 +7900,97 @@ Debug Message: &Sobre yuzu - + Single &Window Mode Mode una sola &finestra - + Con&figure... Con&figurar... - + Ctrl+, - + Display D&ock Widget Headers Mostrar complements de capçalera del D&ock - + Show &Filter Bar Mostrar la barra de &filtre - + Show &Status Bar Mostrar la barra d'&estat - + Show Status Bar Mostrar barra d'estat - + &Browse Public Game Lobby - + &Create Room - + &Leave Room - + &Direct Connect to Room - + &Show Current Room - + F&ullscreen P&antalla completa - + &Restart &Reiniciar - + Load/Remove &Amiibo... Carregar/Eliminar &Amiibo... - + &Report Compatibility &Informar de compatibilitat - + Open &Mods Page Obrir la pàgina de &mods - + Open &Quickstart Guide Obre la guia d'&inici ràpid - + &FAQ &Preguntes freqüents @@ -7899,77 +7999,82 @@ Debug Message: Obrir la carpeta de &yuzu - + &Capture Screenshot &Captura de pantalla - + Open &Album - + &Set Nickname and Owner - + &Delete Game Data - + &Restore Amiibo - + &Format Amiibo - + Open &Mii Editor - + &Configure TAS... &Configurar TAS... - + Configure C&urrent Game... Configurar joc a&ctual... - + &Start &Iniciar - + &Reset &Reiniciar - + R&ecord E&nregistrar - + Open &Controller Menu - + Install Firmware - + + &About Eden + + + + Install Decryption Keys @@ -7977,26 +8082,36 @@ Debug Message: MicroProfileDialog - &MicroProfile - &MicroPerfil + &MicroPerfil MigrationWorker - + Data was migrated successfully. - + Linking the old directory failed. You may need to re-run with administrative privileges on Windows. OS gave error: %1 - + + + +Note that your configuration and data will be shared with %1. +If this is not desirable, delete the following files: +%2 +%3 +%4 + + + + If you wish to clean up the files which were left in the old data location, you can do so by deleting the following directory: @@ -8056,37 +8171,37 @@ If you wish to clean up the files which were left in the old data location, you MultiplayerState - + Current connection status - + Not Connected. Click here to find a room! - + Not Connected - + Connected Connectat - + New Messages Received - + Error Error - + Failed to update the room information. Please check your Internet connection and try hosting the room again. Debug Message: @@ -8204,56 +8319,56 @@ p, li { white-space: pre-wrap; } - + Installed SD Titles Títols instal·lats a la SD - + Installed NAND Titles Títols instal·lats a la NAND - + System Titles Títols del sistema - + Add New Game Directory Afegir un nou directori de jocs - + Favorites Preferits - - + + Shift Shift - - + + Ctrl Ctrl - - + + Alt Alt - - - - + + + + [not set] [no establert] @@ -8264,14 +8379,14 @@ p, li { white-space: pre-wrap; } Rotació %1 %2 - - - - - - - - + + + + + + + + Axis %1%2 Eix %1%2 @@ -8282,357 +8397,357 @@ p, li { white-space: pre-wrap; } Botó %1 - - - - - - + + + + + + [unknown] [desconegut] - - - + + + Left Esquerra - - - + + + Right Dreta - - - + + + Down Avall - - - + + + Up Amunt - - + + Z Z - - + + R R - - + + L L - - + + A A - - + + B B - - + + X X - - + + Y Y - - + + Start Inici - - + + L1 L1 - - + + L2 L2 - - + + L3 L3 - - + + R1 R1 - - + + R2 R2 - - + + R3 R3 - - + + Circle Cercle - - + + Cross Creu - - + + Square Cuadrat - - + + Triangle Triangle - - + + Share Compartir - - + + Options Opcions - - + + [undefined] [indefinit] - + %1%2 %1%2 - - + + [invalid] [invàlid] - - + + %1%2Hat %3 %1%2Rotació %3 - - - + + + %1%2Axis %3 %1%2Eix %3 - - + + %1%2Axis %3,%4,%5 %1%2Eixos %3,%4,%5 - - + + %1%2Motion %3 %1%2Moviment %3 - - + + %1%2Button %3 %1%2Botó %3 - - + + [unused] [sense ús] - + ZR ZR - + ZL ZL - + SR SR - + SL SL - + Stick L - + Stick R - + Plus Més - + Minus Menys - - + + Home Inici - + Capture Captura - + Touch Tàctil - + Wheel Indicates the mouse wheel Roda - + Backward Enrere - + Forward Endavant - + Task Tasca - + Extra Extra - + %1%2%3%4 - - + + %1%2%3Hat %4 - - + + %1%2%3Axis %4 - - + + %1%2%3Button %4 - - + + Migration - + - - + + No - + You can manually re-trigger this prompt by deleting the new config directory: %1 - + Migrating - + Migrating, this may take a while... @@ -8750,6 +8865,298 @@ p, li { white-space: pre-wrap; } + + QtCommon::Content + + + Installing Firmware... + + + + + + + Cancel + + + + + Firmware integrity verification failed! + + + + + + Verification failed for the following files: + +%1 + + + + + + Verifying integrity... + + + + + + Integrity verification succeeded! + + + + + + The operation completed successfully. + L'operació s'ha completat correctament. + + + + + Integrity verification failed! + + + + + File contents may be corrupt or missing. + + + + + Integrity verification couldn't be performed + + + + + Firmware installation cancelled, firmware may be in a bad state or corrupted. File contents could not be checked for validity. + + + + + Select Dumped Keys Location + + + + + Decryption Keys install succeeded + + + + + Decryption Keys were successfully installed + + + + + Decryption Keys install failed + + + + + QtCommon::Game + + + Error Removing Contents + Error eliminant continguts + + + + Error Removing Update + Error eliminant actualització + + + + Error Removing DLC + Error eliminant DLC + + + + The base game is not installed in the NAND and cannot be removed. + El joc base no està instal·lat a la NAND i no pot ser eliminat. + + + + There is no update installed for this title. + No hi ha cap actualització instal·lada per aquest títol. + + + + There are no DLCs installed for this title. + + + + + + + + Successfully Removed + S'ha eliminat correctament + + + + Successfully removed %1 installed DLC. + S'ha eliminat correctament %1 DLC instal·lat/s. + + + + + Error Removing Transferable Shader Cache + Error eliminant la cache transferible de shaders + + + + + A shader cache for this title does not exist. + No existeix una cache de shaders per aquest títol. + + + + Successfully removed the transferable shader cache. + S'ha eliminat correctament la cache transferible de shaders. + + + + Failed to remove the transferable shader cache. + No s'ha pogut eliminar la cache transferible de shaders. + + + + Error Removing Vulkan Driver Pipeline Cache + + + + + Failed to remove the driver pipeline cache. + + + + + + Error Removing Transferable Shader Caches + Error al eliminar les caches de shaders transferibles + + + + Successfully removed the transferable shader caches. + Caches de shaders transferibles eliminades correctament. + + + + Failed to remove the transferable shader cache directory. + No s'ha pogut eliminar el directori de caches de shaders transferibles. + + + + + Error Removing Custom Configuration + Error eliminant la configuració personalitzada + + + + A custom configuration for this title does not exist. + No existeix una configuració personalitzada per aquest joc. + + + + Successfully removed the custom game configuration. + S'ha eliminat correctament la configuració personalitzada del joc. + + + + Failed to remove the custom game configuration. + No s'ha pogut eliminar la configuració personalitzada del joc. + + + + Reset Metadata Cache + Reiniciar cache de metadades + + + + The metadata cache is already empty. + El cache de metadades ja està buit. + + + + The operation completed successfully. + L'operació s'ha completat correctament. + + + + The metadata cache couldn't be deleted. It might be in use or non-existent. + El cache de metadades no s'ha pogut eliminar. Pot ser que es trobi en ús actualment o ja hagi sigut eliminat. + + + + Create Shortcut + + + + + Do you want to launch the game in fullscreen? + + + + + Shortcut Created + + + + + Successfully created a shortcut to %1 + + + + + Shortcut may be Volatile! + + + + + This will create a shortcut to the current AppImage. This may not work well if you update. Continue? + + + + + Failed to Create Shortcut + + + + + Failed to create a shortcut to %1 + + + + + Create Icon + Crear icona + + + + Cannot create icon file. Path "%1" does not exist and cannot be created. + + + + + No firmware available + + + + + Please install firmware to use the home menu. + + + + + Home Menu Applet + + + + + Home Menu is not available. Please reinstall firmware. + + + QtControllerSelectorDialog @@ -9045,7 +9452,7 @@ Si us plau, intenti-ho de nou o contacti el desenvolupador del programari. QtProfileSelectionDialog - + %1 %2 %1 is the profile username, %2 is the formatted UUID (e.g. 00112233-4455-6677-8899-AABBCCDDEEFF)) @@ -9053,7 +9460,7 @@ Si us plau, intenti-ho de nou o contacti el desenvolupador del programari. - + Users Usuaris @@ -9177,7 +9584,7 @@ p, li { white-space: pre-wrap; } WaitTreeCallstack - + Call stack Pila de trucades @@ -9185,12 +9592,12 @@ p, li { white-space: pre-wrap; } WaitTreeSynchronizationObject - + [%1] %2 - + waited by no thread esperat per cap fil @@ -9198,102 +9605,102 @@ p, li { white-space: pre-wrap; } WaitTreeThread - + runnable executable - + paused pausat - + sleeping dormint - + waiting for IPC reply esperant per resposta IPC - + waiting for objects esperant objectes - + waiting for condition variable esperant variable condicional - + waiting for address arbiter esperant al àrbitre d'adreça - + waiting for suspend resume esperant reanudar la suspensió - + waiting esperant - + initialized inicialitzat - + terminated acabat - + unknown desconegut - + PC = 0x%1 LR = 0x%2 PC = 0x%1 LR = 0x%2 - + ideal ideal - + core %1 nucli %1 - + processor = %1 processador = %1 - + affinity mask = %1 màscara d'afinitat = %1 - + thread id = %1 id fil = %1 - + priority = %1(current) / %2(normal) prioritat = %1(actual) / %2(normal) - + last running ticks = %1 últims ticks consecutius = %1 @@ -9301,7 +9708,7 @@ p, li { white-space: pre-wrap; } WaitTreeThreadList - + waited by thread esperat per fil @@ -9309,7 +9716,7 @@ p, li { white-space: pre-wrap; } WaitTreeWidget - + &Wait Tree Arbre d'&espera diff --git a/dist/languages/cs.ts b/dist/languages/cs.ts index 637e095fee..796ea5bef2 100644 --- a/dist/languages/cs.ts +++ b/dist/languages/cs.ts @@ -13,12 +13,12 @@ - About eden + About Eden - <html><head/><body><p><span style=" font-size:28pt;">eden</span></p></body></html> + <html><head/><body><p><span style=" font-size:28pt;">Eden</span></p></body></html> @@ -34,8 +34,8 @@ p, li { white-space: pre-wrap; } hr { height: 1px; border-width: 0; } li.unchecked::marker { content: "\2610"; } li.checked::marker { content: "\2612"; } -</style></head><body style=" font-family:'Adwaita Sans'; font-size:11pt; font-weight:400; font-style:normal;"> -<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;">eden is an experimental open-source emulator for the Nintendo Switch licensed under GPLv3.0+ which is based on the yuzu emulator which ended development back in March 2024. <br /><br />This software should not be used to play games you have not legally obtained.</span></p></body></html> +</style></head><body style=" font-family:'Noto Sans'; font-size:9pt; font-weight:400; font-style:normal;"> +<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;">Eden is an experimental open-source emulator for the Nintendo Switch licensed under GPLv3.0+ which is based on the yuzu emulator which ended development back in March 2024. <br /><br />This software should not be used to play games you have not legally obtained.</span></p></body></html> @@ -72,32 +72,32 @@ p, li { white-space: pre-wrap; } CalibrationConfigurationDialog - + Communicating with the server... Komunikujeme se serverem... - + Cancel Zrušit - + Touch the top left corner <br>of your touchpad. Dotkněte se levého horního rohu <br>vašeho touchpadu. - + Now touch the bottom right corner <br>of your touchpad. Teď se dotkněte dolního pravého rohu <br>vašeho touchpadu. - + Configuration completed! Nastavení dokončeno! - + OK OK @@ -395,281 +395,488 @@ This would ban both their forum username and their IP address. ConfigurationShared - + % % - - Amiibo editor - - - - - Controller configuration - - - - - Data erase - - - - - Error - - - - - Net connect - - - - - Player select - - - - - Software keyboard - - - - - Mii Edit - - - - - Online web - - - - - Shop - - - - - Photo viewer - - - - - Offline web - - - - - Login share - - - - - Wifi web auth - - - - - My page - - - - + Output Engine: Výstupní Engine: - + Output Device: Výstupní Zařízení: - + Input Device: Vstupní Zařízení: - + Mute audio Ztlumit zvuk - + Volume: Hlasitost: - + Mute audio when in background Ztlumit zvuk, když je aplikace v pozadí - + Multicore CPU Emulation Vícejádrová emulace CPU - + + Memory Layout + Rozložení Paměti + + + + Limit Speed Percent + Omezení rychlosti v procentech + + + + Accuracy: + Přesnost: + + + + Unfuse FMA (improve performance on CPUs without FMA) + Rozložit FMA instrukce (zlepší výkon na CPU bez FMA) + + + + Faster FRSQRTE and FRECPE + Rychlejší FRSQRTE a FRECPE + + + + Faster ASIMD instructions (32 bits only) + Rychlejší instrukce ASIMD (Pouze 32 bitové) + + + + Inaccurate NaN handling + Nepřesné zpracování NaN + + + + Disable address space checks + Zakázat kontrolu adres paměti + + + + Ignore global monitor + Ignorovat globální hlídač. + + + + API: + API: + + + + Device: + Zařízení: + + + + Resolution: + Rozlišení: + + + + Fullscreen Mode: + Režim celé obrazovky: + + + + Aspect Ratio: + Poměr stran: + + + + Use asynchronous GPU emulation + Použít asynchronní emulaci GPU + + + + Anisotropic Filtering: + Anizotropní filtrování: + + + Accuracy Level: + Přesnost: + + + + RNG Seed + RNG Seed + + + + Device Name + Název Zařízení + + + + Language: + Jazyk: + + + + Note: this can be overridden when region setting is auto-select + Pozn.: tohle se může přemazat když se region vybírá automaticky + + + + Region: + Region: + + + + Time Zone: + Časové Pásmo: + + + + Prompt for user on game boot + Zeptat se na uživatele při spuštění hry + + + + Pause emulation when in background + Pozastavit emulaci, když je aplikace v pozadí + + + + Confirm before stopping emulation + Potvrzení před zastavením emulace + + + + Hide mouse on inactivity + Skrýt myš při neaktivitě + + + + CPU + CPU + + + + Vulkan + Vulkan + + + + Normal + Normální + + + + High + Vysoká + + + + Extreme + Extrémní + + + + Auto + Automatické + + + + Accurate + Přesné + + + + Unsafe + Nebezpečné + + + + Paranoid (disables most optimizations) + Paranoidní (zakáže většinu optimizací) + + + + Borderless Windowed + Okno bez okrajů + + + + Exclusive Fullscreen + Exkluzivní + + + + 1X (720p/1080p) + 1X (720p/1080p) + + + + Bilinear + Bilineární + + + + None + Žádné + + + + FXAA + FXAA + + + + SMAA + SMAA + + + + Default (16:9) + Výchozí (16:9) + + + + Force 4:3 + Vynutit 4:3 + + + + Force 21:9 + Vynutit 21:9 + + + + Stretch to Window + Roztáhnout podle okna + + + + + Default + Výchozí + + + + Amiibo editor + + + + + Controller configuration + + + + + Data erase + + + + + Error + + + + + Net connect + + + + + Player select + + + + + Software keyboard + + + + + Mii Edit + + + + + Online web + + + + + Shop + + + + + Photo viewer + + + + + Offline web + + + + + Login share + + + + + Wifi web auth + + + + + My page + + + + This option increases CPU emulation thread use from 1 to the Switch’s maximum of 4. This is mainly a debug option and shouldn’t be disabled. - - Memory Layout - Rozložení Paměti - - - + Increases the amount of emulated RAM from the stock 4GB of the retail Switch to the developer kit's 8/6GB. It’s doesn’t improve stability or performance and is intended to let big texture mods fit in emulated RAM. Enabling it will increase memory use. It is not recommended to enable unless a specific game with a texture mod needs it. - - Limit Speed Percent - Omezení rychlosti v procentech - - - + Controls the game's maximum rendering speed, but it’s up to each game if it runs faster or not. 200% for a 30 FPS game is 60 FPS, and for a 60 FPS game it will be 120 FPS. Disabling it means unlocking the framerate to the maximum your PC can reach. - + Synchronize Core Speed - + Synchronizes CPU core speed with the game's maximum rendering speed to boost FPS without affecting game speed (animations, physics, etc.). Compatibility varies by game; many (especially older ones) may not respond well. Can help reduce stuttering at lower framerates. - - Accuracy: - Přesnost: - - - + This setting controls the accuracy of the emulated CPU. Don't change this unless you know what you are doing. - - + + Backend: - + Fast CPU Time - + Overclocks the emulated CPU to remove some FPS limiters. Weaker CPUs may see reduced performance, and certain games may behave improperly. Use Boost (1700MHz) to run at the Switch's highest native clock, or Fast (2000MHz) to run at 2x clock. - - Unfuse FMA (improve performance on CPUs without FMA) - Rozložit FMA instrukce (zlepší výkon na CPU bez FMA) + + Custom CPU Ticks + - + + Set a custom value of CPU ticks. Higher values can increase performance, but may also cause the game to freeze. A range of 77–21000 is recommended. + + + + + Enable Host MMU Emulation (fastmem) + + + + + This optimization speeds up memory accesses by the guest program. +Enabling it causes guest memory reads/writes to be done directly into memory and make use of Host's MMU. +Disabling this forces all memory accesses to use Software MMU Emulation. + + + + This option improves speed by reducing accuracy of fused-multiply-add instructions on CPUs without native FMA support. - - Faster FRSQRTE and FRECPE - Rychlejší FRSQRTE a FRECPE - - - + This option improves the speed of some approximate floating-point functions by using less accurate native approximations. - - Faster ASIMD instructions (32 bits only) - Rychlejší instrukce ASIMD (Pouze 32 bitové) - - - + This option improves the speed of 32 bits ASIMD floating-point functions by running with incorrect rounding modes. - - Inaccurate NaN handling - Nepřesné zpracování NaN - - - + This option improves speed by removing NaN checking. Please note this also reduces accuracy of certain floating-point instructions. - - Disable address space checks - Zakázat kontrolu adres paměti - - - + This option improves speed by eliminating a safety check before every memory read/write in guest. Disabling it may allow a game to read/write the emulator's memory. - - Ignore global monitor - Ignorovat globální hlídač. - - - + This option improves speed by relying only on the semantics of cmpxchg to ensure safety of exclusive access instructions. Please note this may result in deadlocks and other race conditions. - - API: - API: - - - + Switches between the available graphics APIs. Vulkan is recommended in most cases. - - Device: - Zařízení: - - - + This setting selects the GPU to use with the Vulkan backend. - + Shader Backend: - + The shader backend to use for the OpenGL renderer. GLSL is the fastest in performance and the best in rendering accuracy. GLASM is a deprecated NVIDIA-only backend that offers much better shader building performance at the cost of FPS and rendering accuracy. @@ -677,86 +884,71 @@ SPIR-V compiles the fastest, but yields poor results on most GPU drivers. - - Resolution: - Rozlišení: - - - + Forces the game to render at a different resolution. Higher resolutions require much more VRAM and bandwidth. Options lower than 1X can cause rendering issues. - + Window Adapting Filter: - + FSR Sharpness: - + Determines how sharpened the image will look while using FSR’s dynamic contrast. - + Anti-Aliasing Method: - + The anti-aliasing method to use. SMAA offers the best quality. FXAA has a lower performance impact and can produce a better and more stable picture under very low resolutions. - - Fullscreen Mode: - Režim celé obrazovky: - - - + The method used to render the window in fullscreen. Borderless offers the best compatibility with the on-screen keyboard that some games request for input. Exclusive fullscreen may offer better performance and better Freesync/Gsync support. - - Aspect Ratio: - Poměr stran: - - - + Stretches the game to fit the specified aspect ratio. Switch games only support 16:9, so custom game mods are required to get other ratios. Also controls the aspect ratio of captured screenshots. - + Use disk pipeline cache - + Allows saving shaders to storage for faster loading on following game boots. Disabling it is only intended for debugging. - + Optimize SPIRV output shader - + Runs an additional optimization pass over generated SPIRV shaders. Will increase time required for shader compilation. May slightly improve performance. @@ -764,35 +956,30 @@ This feature is experimental. - - Use asynchronous GPU emulation - Použít asynchronní emulaci GPU - - - + Uses an extra CPU thread for rendering. This option should always remain enabled. - + NVDEC emulation: - + Specifies how videos should be decoded. It can either use the CPU or the GPU for decoding, or perform no decoding at all (black screen on videos). In most cases, GPU decoding provides the best performance. - + ASTC Decoding Method: - + This option controls how ASTC textures should be decoded. CPU: Use the CPU for decoding, slowest but safest method. GPU: Use the GPU's compute shaders to decode ASTC textures, recommended for most games and users. @@ -801,33 +988,44 @@ stuttering at the cost of rendering issues while the texture is being decoded. - + ASTC Recompression Method: - + Almost all desktop and laptop dedicated GPUs lack support for ASTC textures, forcing the emulator to decompress to an intermediate format any card supports, RGBA8. This option recompresses RGBA8 to either the BC1 or BC3 format, saving VRAM but negatively affecting image quality. - + VRAM Usage Mode: - - Selects whether the emulator should prefer to conserve memory or make maximum usage of available video memory for performance. Has no effect on integrated graphics. Aggressive mode may severely impact the performance of other applications such as recording software. + + Selects whether the emulator should prefer to conserve memory or make maximum usage of available video memory for performance. +Aggressive mode may severely impact the performance of other applications such as recording software. - + + Skip CPU Inner Invalidation + + + + + Skips certain CPU-side cache invalidations during memory updates, reducing CPU usage and improving it's performance. This may cause glitches or crashes on some games. + + + + VSync Mode: - + FIFO (VSync) does not drop frames or exhibit tearing but is limited by the screen refresh rate. FIFO Relaxed is similar to FIFO but allows tearing as it recovers from a slow down. Mailbox can have lower latency than FIFO and does not tear but may drop frames. @@ -835,1078 +1033,977 @@ Immediate (no synchronization) just presents whatever is available and can exhib - + + Sync Memory Operations + + + + + Ensures data consistency between compute and memory operations. +This option should fix issues in some games, but may also reduce performance in some cases. +Unreal Engine 4 games often see the most significant changes thereof. + + + + Enable asynchronous presentation (Vulkan only) - + Slightly improves performance by moving presentation to a separate CPU thread. - + Force maximum clocks (Vulkan only) - + Runs work in the background while waiting for graphics commands to keep the GPU from lowering its clock speed. - - Anisotropic Filtering: - Anizotropní filtrování: - - - + Controls the quality of texture rendering at oblique angles. It’s a light setting and safe to set at 16x on most GPUs. - - Accuracy Level: - Přesnost: - - - - GPU emulation accuracy. -Most games render fine with Normal, but High is still required for some. -Particles tend to only render correctly with High accuracy. -Extreme should only be used for debugging. -This option can be changed while playing. -Some games may require booting on high to render properly. + + GPU Accuracy: - + + Controls the GPU emulation accuracy. +Most games render fine with Normal, but High is still required for some. +Particles tend to only render correctly with High accuracy. +Extreme should only be used as a last resort. + + + + + DMA Accuracy: + + + + + Controls the DMA precision accuracy. Safe precision can fix issues in some games, but it can also impact performance in some cases. +If unsure, leave this on Default. + + + + Use asynchronous shader building (Hack) - + Enables asynchronous shader compilation, which may reduce shader stutter. This feature is experimental. - + + Fast GPU Time (Hack) + + + + + Overclocks the emulated GPU to increase dynamic resolution and render distance. +Use 128 for maximal performance and 512 for maximal graphics fidelity. + + + + Use Vulkan pipeline cache - + Enables GPU vendor-specific pipeline cache. This option can improve shader loading time significantly in cases where the Vulkan driver does not store pipeline cache files internally. - + Enable Compute Pipelines (Intel Vulkan Only) - + Enable compute pipelines, required by some games. This setting only exists for Intel proprietary drivers, and may crash if enabled. Compute pipelines are always enabled on all other drivers. - + Enable Reactive Flushing - + Uses reactive flushing instead of predictive flushing, allowing more accurate memory syncing. - + Sync to framerate of video playback - + Run the game at normal speed during video playback, even when the framerate is unlocked. - + Barrier feedback loops - + Improves rendering of transparency effects in specific games. - - RNG Seed - RNG Seed + + RAII + - + + A method of automatic resource management in Vulkan that ensures proper release of resources when they are no longer needed, but may cause crashes in bundled games. + + + + + Extended Dynamic State + + + + + Controls the number of features that can be used in Extended Dynamic State. +Higher numbers allow for more features and can increase performance, but may cause issues with some drivers and vendors. +The default value may vary depending on your system and hardware capabilities. +This value can be changed until stability and a better visual quality are achieved. + + + + + Provoking Vertex + + + + + Improves lighting and vertex handling in certain games. +Only Vulkan 1.0+ devices support this extension. + + + + + Descriptor Indexing + + + + + Improves texture & buffer handling and the Maxwell translation layer. +Some Vulkan 1.1+ and all 1.2+ devices support this extension. + + + + + Sample Shading + + + + + Allows the fragment shader to execute per sample in a multi-sampled fragment instead once per fragment. Improves graphics quality at the cost of some performance. +Higher values improve quality more but also reduce performance to a greater extent. + + + + Controls the seed of the random number generator. Mainly used for speedrunning purposes. - - Device Name - Název Zařízení - - - + The name of the emulated Switch. - + Custom RTC Date: - + This option allows to change the emulated clock of the Switch. Can be used to manipulate time in games. - - Language: - Jazyk: - - - - Note: this can be overridden when region setting is auto-select - Pozn.: tohle se může přemazat když se region vybírá automaticky - - - - Region: - Region: - - - + The region of the emulated Switch. - - Time Zone: - Časové Pásmo: - - - + The time zone of the emulated Switch. - + Sound Output Mode: - + Console Mode: - + Selects if the console is emulated in Docked or Handheld mode. Games will change their resolution, details and supported controllers and depending on this setting. Setting to Handheld can help improve performance for low end systems. - - Prompt for user on game boot - Zeptat se na uživatele při spuštění hry - - - - Pause emulation when in background - Pozastavit emulaci, když je aplikace v pozadí - - - - Fast GPU Time (Hack) + + Ask to select a user profile on each boot, useful if multiple people use Eden on the same PC. - - Overclocks the emulated GPU to increase dynamic resolution and render distance. -Use 128 for maximal performance and 512 for maximal graphics fidelity. + + This setting pauses Eden when focusing other windows. - - Extended Dynamic State - - - - - Enables the VkExtendedDynamicState* extensions. -Higher dynamic states will generally improve performance, but may cause issues on certain games or devices. - - - - - Provoking Vertex - - - - - Improves lighting and vertex handling in certain games. -Only Vulkan 1.0+ devices support this extension. - - - - - Descriptor Indexing - - - - - Improves texture & buffer handling and the Maxwell translation layer. -Some Vulkan 1.1+ and all 1.2+ devices support this extension. - - - - - Ask to select a user profile on each boot, useful if multiple people use eden on the same PC. - - - - - This setting pauses eden when focusing other windows. - - - - - Confirm before stopping emulation - Potvrzení před zastavením emulace - - - + This setting overrides game prompts asking to confirm stopping the game. Enabling it bypasses such prompts and directly exits the emulation. - - Hide mouse on inactivity - Skrýt myš při neaktivitě - - - + This setting hides the mouse after 2.5s of inactivity. - + Disable controller applet - + Forcibly disables the use of the controller applet by guests. When a guest attempts to open the controller applet, it is immediately closed. - + Check for updates - + Whether or not to check for updates upon startup. - + Enable Gamemode - + Custom frontend - + Real applet - + Never - + On Load - + Always - - CPU - CPU - - - + GPU - + CPU Asynchronous - + Uncompressed (Best quality) - + BC1 (Low quality) - + BC3 (Medium quality) - + Conservative - + Aggressive - + OpenGL - - Vulkan - Vulkan - - - + Null - + GLSL - + GLASM (Assembly Shaders, NVIDIA Only) - + SPIR-V (Experimental, AMD/Mesa Only) - - Normal - Normální + + Unsafe (fast) + - - High - Vysoká + + Safe (stable) + - - Extreme - Extrémní - - - - Auto - Automatické - - - - Accurate - Přesné - - - - Unsafe - Nebezpečné - - - - Paranoid (disables most optimizations) - Paranoidní (zakáže většinu optimizací) - - - + Dynarmic - + NCE - - Borderless Windowed - Okno bez okrajů - - - - Exclusive Fullscreen - Exkluzivní - - - + No Video Output - + CPU Video Decoding - + GPU Video Decoding (Default) - + 0.25X (180p/270p) [EXPERIMENTAL] - + 0.5X (360p/540p) [EXPERIMENTAL] - + 0.75X (540p/810p) [EXPERIMENTAL] - - 1X (720p/1080p) - 1X (720p/1080p) - - - + 1.5X (1080p/1620p) [EXPERIMENTAL] - + 2X (1440p/2160p) - + 3X (2160p/3240p) - + 4X (2880p/4320p) - + 5X (3600p/5400p) - + 6X (4320p/6480p) - + 7X (5040p/7560p) - + 8X (5760p/8640p) - + Nearest Neighbor - - Bilinear - Bilineární - - - + Bicubic - + Gaussian - + ScaleForce - + AMD FidelityFX™️ Super Resolution - + Area - - None - Žádné - - - - FXAA - FXAA - - - - SMAA - SMAA - - - - Default (16:9) - Výchozí (16:9) - - - - Force 4:3 - Vynutit 4:3 - - - - Force 21:9 - Vynutit 21:9 - - - + Force 16:10 - - Stretch to Window - Roztáhnout podle okna - - - + Automatic - - Default - Výchozí - - - + 2x 2x - + 4x 4x - + 8x 8x - + 16x 16x - + Japanese (日本語) Japonština (日本語) - + American English - + French (français) Francouzština (français) - + German (Deutsch) Nemčina (Deutsch) - + Italian (italiano) Italština (Italiano) - + Spanish (español) Španělština (español) - + Chinese Čínština - + Korean (한국어) Korejština (한국어) - + Dutch (Nederlands) Holandština (Nederlands) - + Portuguese (português) Portugalština (português) - + Russian (Русский) Ruština (Русский) - + Taiwanese Tajwanština - + British English Britská Angličtina - + Canadian French Kanadská Francouzština - + Latin American Spanish Latinsko Americká Španělština - + Simplified Chinese Zjednodušená Čínština - + Traditional Chinese (正體中文) Tradiční Čínština (正體中文) - + Brazilian Portuguese (português do Brasil) Brazilská Portugalština (português do Brasil) - - + + Serbian (српски) + + + + + Japan Japonsko - + USA USA - + Europe Evropa - + Australia Austrálie - + China Čína - + Korea Korea - + Taiwan Taiwan - + Auto (%1) Auto select time zone - + Default (%1) Default time zone - + CET CET - + CST6CDT CST6CDT - + Cuba Cuba - + EET EET - + Egypt Egypt - + Eire Eire - + EST EST - + EST5EDT EST5EDT - + GB GB - + GB-Eire GB-Eire - + GMT GMT - + GMT+0 GMT+0 - + GMT-0 GMT-0 - + GMT0 GMT0 - + Greenwich Greenwich - + Hongkong Hongkong - + HST HST - + Iceland Island - + Iran Iran - + Israel Israel - + Jamaica Jamajka - + Kwajalein Kwajalein - + Libya Lybie - + MET MET - + MST MST - + MST7MDT MST7MDT - + Navajo Navajo - + NZ NZ - + NZ-CHAT NZ-CHAT - + Poland Polsko - + Portugal Portugalsko - + PRC PRC - + PST8PDT PST8PDT - + ROC ROC - + ROK ROK - + Singapore Singapur - + Turkey Turecko - + UCT UCT - + Universal Univerzální - + UTC UTC - + W-SU W-SU - + WET WET - + Zulu Zulu - + Mono Mono - + Stereo Stereo - + Surround Surround - + 4GB DRAM (Default) - + 6GB DRAM (Unsafe) - + 8GB DRAM - + 10GB DRAM (Unsafe) - + 12GB DRAM (Unsafe) - - Low (128) - - - - - Medium (256) - - - - - High (512) - - - - + Docked Zadokovaná - + Handheld Příruční - + Boost (1700MHz) - + Fast (2000MHz) - + Always ask (Default) Vždy se zeptat (Výchozí) - + Only if game specifies not to stop - + Never ask + + + Low (128) + + + + + Medium (256) + + + + + High (512) + + ConfigureApplets @@ -2249,27 +2346,27 @@ When a guest attempts to open the controller applet, it is immediately closed.Logování - + Open Log Location Otevřít lokaci s logama - + Global Log Filter Centrální log filtr - + When checked, the max size of the log increases from 100 MB to 1 GB Po povolení se zvýší maximální velikost logu z 100 MB na 1 GB. - + Enable Extended Logging** Povolit rozšířené logování - + Show Log in Console Zobrazit log v konzoli @@ -2415,7 +2512,7 @@ When a guest attempts to open the controller applet, it is immediately closed. - **This will be reset automatically when eden closes. + **This will be reset automatically when Eden closes. @@ -2469,7 +2566,7 @@ When a guest attempts to open the controller applet, it is immediately closed. - + Web applet not compiled @@ -2519,7 +2616,7 @@ When a guest attempts to open the controller applet, it is immediately closed. - eden Configuration + Eden Configuration @@ -2528,88 +2625,88 @@ When a guest attempts to open the controller applet, it is immediately closed.Některá nastavení jsou dostupná pouze, pokud hra neběží. - + Applets - - + + Audio Zvuk - - + + CPU CPU - + Debug Ladění - + Filesystem Souborový systém - - + + General Obecné - - + + Graphics Grafika - + GraphicsAdvanced GrafickyPokročilé - + GraphicsExtensions - + Hotkeys Zkratky - - + + Controls Ovládání - + Profiles Profily - + Network Síť - - + + System Systém - + Game List Seznam her - + Web Web @@ -2707,51 +2804,45 @@ When a guest attempts to open the controller applet, it is immediately closed. - - - Reset Metadata Cache Resetovat mezipaměť metadat - + Select Emulated NAND Directory... Vyberte emulovanou NAND složku... - + Select Emulated SD Directory... Vyberte emulovanou SD složku... - + Select Gamecard Path... Vyberte cestu ke Gamecard... - + Select Dump Directory... Vyberte složku pro vysypání... - + Select Mod Load Directory... Vyberte složku pro Mod Load... - The metadata cache is already empty. - Mezipaměť metadat je již prázdná. + Mezipaměť metadat je již prázdná. - The operation completed successfully. - Operace byla úspěšně dokončena. + Operace byla úspěšně dokončena. - The metadata cache couldn't be deleted. It might be in use or non-existent. - Mezipaměť metadat nemohla být odstraněna. Možná je používána nebo neexistuje. + Mezipaměť metadat nemohla být odstraněna. Možná je používána nebo neexistuje. @@ -2782,12 +2873,12 @@ When a guest attempts to open the controller applet, it is immediately closed.yuzu - - eden + + Eden - + This reset all settings and remove all per-game configurations. This will not delete game directories, profiles, or input profiles. Proceed? Toto vyresetuje všechna nastavení a odstraní konfigurace pro jednotlivé hry. Složky s hrami a profily zůstanou zachovány. Přejete si pokračovat? @@ -2820,33 +2911,33 @@ When a guest attempts to open the controller applet, it is immediately closed.Barva Pozadí: - + % FSR sharpening percentage (e.g. 50%) % - + Off - + VSync Off - + Recommended - + On - + VSync On @@ -2883,14 +2974,18 @@ When a guest attempts to open the controller applet, it is immediately closed. - Vulkan Extension Settings + Vulkan Extensions Settings - - While it's recommended to use state 3, some games may perform better on lower states. Setting to 0 (disabled) may also break games. -If your GPU is older (i.e. RX570/580 or older), it may not support these features. If this is the case, set the slider to 0 and uncheck all boxes. -These settings are experimental, and may cause black screens. If your games fail to boot or are stuck on a black screen, change these settings around. + + % + Sample Shading percentage (e.g. 50%) + % + + + + Extended Dynamic State is disabled on macOS due to MoltenVK compatibility issues that cause black screens. @@ -2922,75 +3017,75 @@ These settings are experimental, and may cause black screens. If your games fail Vrátit výchozí nastavení - + Action Akce - + Hotkey Zkratka - + Controller Hotkey - - - + + + Conflicting Key Sequence Protichůdné klávesové sekvence - - + + The entered key sequence is already assigned to: %1 Vložená klávesová sekvence je již přiřazena k: %1 - + [waiting] [čekání] - + Invalid - + Invalid hotkey settings - + An error occurred. Please report this issue on github. Došlo k chybě. Nahlaste prosím tento problém na githubu. - + Restore Default Vrátit výchozí nastavení - + Clear Vyčistit - + Conflicting Button Sequence - + The default button sequence is already assigned to: %1 - + The default key sequence is already assigned to: %1 Výchozí klávesová sekvence je již přiřazena k: %1 @@ -3310,7 +3405,7 @@ These settings are experimental, and may cause black screens. If your games fail - Requires restarting eden + Requires restarting Eden @@ -3461,7 +3556,7 @@ These settings are experimental, and may cause black screens. If your games fail - + Left Stick Levá Páčka @@ -3571,14 +3666,14 @@ These settings are experimental, and may cause black screens. If your games fail - + L L - + ZL ZL @@ -3597,7 +3692,7 @@ These settings are experimental, and may cause black screens. If your games fail - + Plus Plus @@ -3610,15 +3705,15 @@ These settings are experimental, and may cause black screens. If your games fail - - + + R R - + ZR ZR @@ -3663,7 +3758,7 @@ These settings are experimental, and may cause black screens. If your games fail - + Right Stick Pravá páčka @@ -3678,242 +3773,242 @@ These settings are experimental, and may cause black screens. If your games fail Nastavení - - - - + + + + Clear Vyčistit - - - - - + + + + + [not set] [nenastaveno] - - - + + + Invert button - - + + Toggle button Přepnout tlačítko - + Turbo button - - + + Invert axis Převrátit osy - - - + + + Set threshold - - + + Choose a value between 0% and 100% - + Toggle axis - + Set gyro threshold - + Calibrate sensor - + Map Analog Stick Namapovat analogovou páčku - + After pressing OK, first move your joystick horizontally, and then vertically. To invert the axes, first move your joystick vertically, and then horizontally. Po stisknutí OK nejprve posuňte joystick horizontálně, poté vertikálně. Pro převrácení os nejprve posuňte joystick vertikálně, poté horizontálně. - + Center axis - - + + Deadzone: %1% Deadzone: %1% - - + + Modifier Range: %1% Rozsah modifikátoru: %1% - - + + Pro Controller Pro Controller - + Dual Joycons Dual Joycons - + Left Joycon Levý Joycon - + Right Joycon Pravý Joycon - + Handheld V rukou - + GameCube Controller Ovladač GameCube - + Poke Ball Plus - + NES Controller - + SNES Controller - + N64 Controller - + Sega Genesis - + Start / Pause Start / Pause - + Z Z - + Control Stick Control Stick - + C-Stick C-Stick - + Shake! Shake! - + [waiting] [čekání] - + New Profile Nový profil - + Enter a profile name: Zadejte název profilu: - - + + Create Input Profile Vytvořit profil vstupu - + The given profile name is not valid! Zadaný název profilu není platný! - + Failed to create the input profile "%1" Nepodařilo se vytvořit profil vstupu "%1" - + Delete Input Profile Odstranit profil vstupu - + Failed to delete the input profile "%1" Nepodařilo se odstranit profil vstupu "%1" - + Load Input Profile Načíst profil vstupu - + Failed to load the input profile "%1" Nepodařilo se načíst profil vstupu "%1" - + Save Input Profile Uložit profil vstupu - + Failed to save the input profile "%1" Nepodařilo se uložit profil vstupu "%1" @@ -3970,7 +4065,7 @@ Pro převrácení os nejprve posuňte joystick vertikálně, poté horizontáln - + Configure Konfigurovat @@ -4006,7 +4101,7 @@ Pro převrácení os nejprve posuňte joystick vertikálně, poté horizontáln - + Test Test @@ -4025,7 +4120,7 @@ Pro převrácení os nejprve posuňte joystick vertikálně, poté horizontáln <a href='https://yuzu-emu.org/wiki/using-a-controller-or-android-phone-for-motion-or-touch-input'><span style="text-decoration: underline; color:#039be5;">Dozvědět se více</span></a> - + %1:%2 %1:%2 @@ -4034,77 +4129,77 @@ Pro převrácení os nejprve posuňte joystick vertikálně, poté horizontáln yuzu - + <a href='https://eden-emulator.github.io/wiki/using-a-controller-or-android-phone-for-motion-or-touch-input'><span style="text-decoration: underline; color:#039be5;">Learn More</span></a> - + Port number has invalid characters Číslo portu obsahuje neplatné znaky - - - - - - - eden + + + + + + + Eden - + Port has to be in range 0 and 65353 Port musí být v rozsahu 0 až 65353 - + IP address is not valid IP adresa není platná - + This UDP server already exists UDP server již existuje - + Unable to add more than 8 servers Není možné přidat více než 8 serverů - + Testing Testování - + Configuring Nastavování - + Test Successful Test byl úspěšný - + Successfully received data from the server. Úspěšně jsme získali data ze serveru. - + Test Failed Test byl neúspěšný - + 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. Nedostali jsme platná data ze serveru.<br>Prosím zkontrolujte, že váš server je nastaven správně a že adresa a port jsou zadány správně. - + UDP Test or calibration configuration is in progress.<br>Please wait for them to finish. Probíhá test UDP nebo konfigurace kalibrace.<br>Prosím vyčkejte na dokončení. @@ -4230,7 +4325,12 @@ Current values are %1% and %2% respectively. Síťové Rozhraní - + + Enable Airplane Mode + + + + None Žádné @@ -4288,52 +4388,52 @@ Current values are %1% and %2% respectively. Některá nastavení jsou dostupná pouze, pokud hra neběží. - + Add-Ons Doplňky - + System Systém - + CPU CPU - + Graphics Grafika - + Adv. Graphics Pokroč. grafika - + GPU Extensions - + Audio Zvuk - + Input Profiles Profily Vstupu - + Linux - + Properties Vlastnosti @@ -4351,12 +4451,12 @@ Current values are %1% and %2% respectively. Doplňky - + Patch Name Název opravy - + Version Verze @@ -4394,27 +4494,32 @@ Current values are %1% and %2% respectively. Nastavit obrázek - + + Select Avatar + + + + Add Přidat - + Rename Přejmenovat - + Remove Odebrat - + Profile management is available only when game is not running. Spravování profilů je k dispozici, pouze když neběží žádná hra. - + %1 %2 %1 is the profile username, %2 is the formatted UUID (e.g. 00112233-4455-6677-8899-AABBCCDDEEFF)) @@ -4422,100 +4527,181 @@ Current values are %1% and %2% respectively. %2 - + Enter Username Zadejte přezdívku - + Users Uživatelé - + Enter a username for the new user: Zadejte přezdívku pro nového uživatele: - + Enter a new username: Zadejte novou přezdívku: - + + Error saving user image + + + + + Unable to save image to file + + + + Select User Image Vyberte obrázek uživatele - - JPEG Images (*.jpg *.jpeg) - Obrázek JPEG (*.jpg *.jpeg) + + Image Formats (*.jpg *.jpeg *.png *.bmp) + - + + No firmware available + Není k dispozici žádný firmware + + + + Please install the firmware to use firmware avatars. + + + + + + Error loading archive + + + + + Archive is not available. Please install/reinstall firmware. + + + + + Archive does not contain romfs. It is probably corrupt. + + + + + Error extracting archive + + + + + Archive could not be extracted. It is probably corrupt. + + + + + Error finding image directory + + + + + Failed to find image directory in the archive. + + + + + No images found + + + + + No avatar images were found in the archive. + + + + JPEG Images (*.jpg *.jpeg) + Obrázek JPEG (*.jpg *.jpeg) + + + Error deleting image Chyba při odstraňování obrázku - + Error occurred attempting to overwrite previous image at: %1. Chyba při přepisování předchozího obrázku na: %1 - + Error deleting file Chyba při odstraňování souboru - + Unable to delete existing file: %1. Nelze odstranit existující soubor: %1. - + Error creating user image directory Chyba při vytváření složky s obrázkem uživatele - + Unable to create directory %1 for storing user images. Nelze vytvořit složku %1 pro ukládání obrázků uživatele. - Error copying user image - Chyba při kopírování obrázku uživatele + Chyba při kopírování obrázku uživatele - Unable to copy image from %1 to %2 - Nelze zkopírovat obrázek z %1 do %2 + Nelze zkopírovat obrázek z %1 do %2 + + + ConfigureProfileManagerAvatarDialog - - Error resizing user image + + Select - - Unable to resize image + + Cancel + + + + + Background Color + + + + + Select Firmware Avatar ConfigureProfileManagerDeleteDialog - + Delete this user? All of the user's save data will be deleted. Odstranit tohoto uživatele? Všechna jeho uložená data budou smazána. - + Confirm Delete Potvrdit smazání - + Name: %1 UUID: %2 @@ -4567,7 +4753,7 @@ UUID: %2 - + Enable @@ -4578,7 +4764,7 @@ UUID: %2 - + Not connected @@ -4588,63 +4774,63 @@ UUID: %2 Vrátit výchozí nastavení - + Clear Vymazat - + [not set] [nenastaveno] - + Invert axis Převrátit osy - - + + Deadzone: %1% Deadzone: %1% - + Error enabling ring input - + Direct Joycon driver is not enabled - + Configuring Nastavování - + The current mapped device doesn't support the ring controller - + The current mapped device doesn't have a ring attached - + The current mapped device is not connected - + Unexpected driver result %1 - + [waiting] [čekání] @@ -4682,7 +4868,7 @@ UUID: %2 - <html><head/><body><p>Reads controller input from scripts in the same format as TAS-nx scripts.<br/>For a more detailed explanation, please consult the <a href="https://eden-emulator.github.io/help/feature/tas/"><span style=" text-decoration: underline; color:#039be5;">help page</span></a> on the eden website.</p></body></html> + <html><head/><body><p>Reads controller input from scripts in the same format as TAS-nx scripts.<br/>For a more detailed explanation, please consult the <a href="https://eden-emulator.github.io/help/feature/tas/"><span style=" text-decoration: underline; color:#039be5;">help page</span></a> on the Eden website.</p></body></html> @@ -4734,12 +4920,12 @@ UUID: %2 ConfigureTasDialog - + TAS Configuration - + Select TAS Load Directory... @@ -4849,7 +5035,7 @@ Táhněte body pro změnu pozice nebo dvojitě klikněte na buňky tabulky pro z - Warning: The settings in this page affect the inner workings of eden's emulated touchscreen. Changing them may result in undesirable behavior, such as the touchscreen partially or not working. You should only use this page if you know what you are doing. + Warning: The settings in this page affect the inner workings of Eden's emulated touchscreen. Changing them may result in undesirable behavior, such as the touchscreen partially or not working. You should only use this page if you know what you are doing. @@ -5169,6 +5355,16 @@ Táhněte body pro změnu pozice nebo dvojitě klikněte na buňky tabulky pro z Web Web + + + Eden Web Service + + + + + Generate + + yuzu Web Service yuzu Web Service @@ -5178,42 +5374,29 @@ Táhněte body pro změnu pozice nebo dvojitě klikněte na buňky tabulky pro z Poskytnutím jména a tokenu, souhlasíte s povolením yuzu získávat další data, která mohou obsahovat uživatelsky identifikovatelné informace. - - eden Web Service - - - - - By providing your username and token, you agree to allow eden to collect additional usage data, which may include user identifying information. - - - - Verify - Ověřit + Ověřit - Sign up - Zaregistrovat + Zaregistrovat - + Token: Token: - + Username: Jméno: - What is my token? - Co je to ten token: + Co je to ten token: - + Web Service configuration can only be changed when a public room isn't being hosted. @@ -5238,12 +5421,12 @@ Táhněte body pro změnu pozice nebo dvojitě klikněte na buňky tabulky pro z Přegenerovat - + Discord Presence Podoba na Discordu - + Show Current Game in your Discord Status Zobrazovat Aktuální hru v Discordu @@ -5252,24 +5435,8 @@ Táhněte body pro změnu pozice nebo dvojitě klikněte na buňky tabulky pro z <a href='https://yuzu-emu.org/help/feature/telemetry/'><span style="text-decoration: underline; color:#039be5;">Zjistit více</a> - <a href='https://profile.yuzu-emu.org/'><span style="text-decoration: underline; color:#039be5;">Sign up</span></a> - <a href='https://profile.yuzu-emu.org/'><span style="text-decoration: underline; color:#039be5;">Zaregistrovat</span></a> - - - - <a href='https://evilperson1337.notion.site/Hosting-a-Room-Inside-of-Eden-20457c2edaf680108abac6215a79acdb'><span style="text-decoration: underline; color:#039be5;">What is my token?</span></a> - - - - - Warning - - - - - Verification is currently nonfunctional, instead generate a random 48-character string with only lowercase a-z. - + <a href='https://profile.yuzu-emu.org/'><span style="text-decoration: underline; color:#039be5;">Zaregistrovat</span></a> <a href='https://yuzu-emu.org/wiki/yuzu-web-service/'><span style="text-decoration: underline; color:#039be5;">What is my token?</span></a> @@ -5292,10 +5459,9 @@ Táhněte body pro změnu pozice nebo dvojitě klikněte na buňky tabulky pro z Token nebyl ověřen. Změna k vašemu tokenu nebyla uložena. - Unverified, please click Verify before saving configuration Tooltip - Neověřeno, klikni prosím na Ověřit před uložením konfigurace + Neověřeno, klikni prosím na Ověřit před uložením konfigurace Verifying... @@ -5319,20 +5485,67 @@ Táhněte body pro změnu pozice nebo dvojitě klikněte na buňky tabulky pro z Verification failed. Check that you have entered your token correctly, and that your internet connection is working. Ověřování selhalo. Zkontrolujte, zda jste zadali token správně a že vaše připojení k internetu funguje v pořádku. + + + + All Good + Tooltip + + + + + Must be between 4-20 characters + Tooltip + + + + + Must be 48 characters, and lowercase a-z + Tooltip + + ControllerDialog - + Controller P1 Ovladač P1 - + &Controller P1 &Ovladač P1 + + DepsDialog + + + Eden Dependencies + + + + + <html><head/><body><p><span style=" font-size:28pt;">Eden Dependencies</span></p></body></html> + + + + + <html><head/><body><p>The projects that make Eden possible</p></body></html> + + + + + Dependency + + + + + Version + Verze + + DirectConnect @@ -5438,7 +5651,12 @@ Táhněte body pro změnu pozice nebo dvojitě klikněte na buňky tabulky pro z - Creating a room failed. Please retry. Restarting eden might be necessary. + Creating a room failed. Please retry. Restarting Eden might be necessary. + + + + + Version mismatch! Please update to the latest version of Eden. If the problem persists, contact the room host and ask them to update the server. @@ -5446,11 +5664,6 @@ Táhněte body pro změnu pozice nebo dvojitě klikněte na buňky tabulky pro z 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 eden. If the problem persists, contact the room host and ask them to update the server. - - Incorrect password. @@ -5511,115 +5724,114 @@ Jděte prosím do Nastavení -> Systém -> Síť a některé vyberte.Telemetry - + Broken Vulkan Installation Detected - + Running a game TRANSLATORS: This string is shown to the user to explain why yuzu needs to prevent the computer from sleeping - + Loading Web Applet... Načítání Web Appletu... - - + + Disable Web Applet Zakázat Web Applet - + Disabling the web applet can lead to undefined behavior and should only be used with Super Mario 3D All-Stars. Are you sure you want to disable the web applet? (This can be re-enabled in the Debug settings.) - + The amount of shaders currently being built Počet aktuálně sestavovaných shaderů - + The current selected resolution scaling multiplier. - + Current emulation speed. Values higher or lower than 100% indicate emulation is running faster or slower than a Switch. Aktuální emulační rychlost. Hodnoty vyšší než 100% indikují, že emulace běží rychleji nebo pomaleji než na Switchi. - + How many frames per second the game is currently displaying. This will vary from game to game and scene to scene. Kolik snímků za sekundu aktuálně hra zobrazuje. Tohle závisí na hře od hry a scény od scény. - + Time taken to emulate a Switch frame, not counting framelimiting or v-sync. For full-speed emulation this should be at most 16.67 ms. Čas potřebný na emulaci framu scény, nepočítá se limit nebo v-sync. Pro plnou rychlost by se tohle mělo pohybovat okolo 16.67 ms. - + Unmute Vypnout ztlumení - + Mute Ztlumit - + Reset Volume - + &Clear Recent Files &Vymazat poslední soubory - + &Continue &Pokračovat - + &Pause &Pauza - Warning Outdated Game Format - Varování Zastaralý Formát Hry + Varování Zastaralý Formát Hry You are using the deconstructed ROM directory format for this game, which is an outdated format that has been superseded by others such as NCA, NAX, XCI, or NSP. Deconstructed ROM directories lack icons, metadata, and update support.<br><br>For an explanation of the various Switch formats yuzu supports, <a href='https://yuzu-emu.org/wiki/overview-of-switch-game-formats'>check out our wiki</a>. This message will not be shown again. Používáte rozbalený formát hry, který je zastaralý a byl nahrazen jinými jako NCA, NAX, XCI, nebo NSP. Rozbalená ROM nemá ikony, metadata, a podporu updatů.<br><br>Pro vysvětlení všech možných podporovaných typů, <a href='https://yuzu-emu.org/wiki/overview-of-switch-game-formats'>zkoukni naší wiki</a>. Tato zpráva se nebude znova zobrazovat. - - + + Error while loading ROM! Chyba při načítání ROM! - + The ROM format is not supported. Tento formát ROM není podporován. - + An error occurred initializing the video core. Nastala chyba při inicializaci jádra videa. - + Error while loading ROM! %1 %1 signifies a numeric error code. Chyba při načítání ROM! %1 @@ -5630,1084 +5842,897 @@ Jděte prosím do Nastavení -> Systém -> Síť a některé vyberte.%1<br>Pro extrakci souborů postupujte podle <a href='https://yuzu-emu.org/help/quickstart/'>rychlého průvodce yuzu</a>. Nápovědu naleznete na <br>wiki</a> nebo na Discordu</a>. - + Vulkan initialization failed during boot.<br><br>Click <a href='https://eden-emulator.github.io/wiki/faq/#yuzu-starts-with-the-error-broken-vulkan-installation-detected'>here for instructions to fix the issue</a>. - - Game Updates Warning - - - - - The game you are trying to launch is known to have performance or booting issues when updates are applied. Please try increasing the memory layout to 6GB or 8GB if any issues occur.<br><br>Press "OK" to continue launching, or "Cancel" to cancel the launch. - - - - - Don't show again for this game - - - - - You are using the deconstructed ROM directory format for this game, which is an outdated format that has been superseded by others such as NCA, NAX, XCI, or NSP. Deconstructed ROM directories lack icons, metadata, and update support.<br><br>For an explanation of the various Switch formats eden supports, <a href='https://eden-emulator.github.io/wiki/overview-of-switch-game-formats'>check out our wiki</a>. This message will not be shown again. - - - - - eden has encountered an error while running the video core. This is usually caused by outdated GPU drivers, including integrated ones. Please see the log for more details. For more information on accessing the log, please see the following page: <a href='https://eden-emulator.github.io/help/reference/log-files/'>How to Upload the Log File</a>. - - - - - %1<br>Please redump your files or ask on Discord for help. - %1 signifies an error string. - - - - + An unknown error occurred. Please see the log for more details. Nastala chyba. Koukni do logu. - + (64-bit) (64-bit) - + (32-bit) (32-bit) - + %1 %2 %1 is the title name. %2 indicates if the title is 64-bit or 32-bit %1 %2 - + Closing software... Ukončování softwaru... - + Save Data Uložit data - + Mod Data Módovat Data - + Error Opening %1 Folder Chyba otevírání složky %1 - - + + Folder does not exist! Složka neexistuje! - Error Opening Transferable Shader Cache - Chyba při otevírání přenositelné mezipaměti shaderů + Chyba při otevírání přenositelné mezipaměti shaderů - - Failed to create the shader cache directory for this title. - - - - - Error Removing Contents - - - - - Error Removing Update - - - - - Error Removing DLC - - - - + Remove Installed Game Contents? - + Remove Installed Game Update? - + Remove Installed Game DLC? - + Remove Entry Odebrat položku - - - - - - Successfully Removed - Úspěšně odebráno + Úspěšně odebráno - Successfully removed the installed base game. - Úspěšně odebrán nainstalovaný základ hry. + Úspěšně odebrán nainstalovaný základ hry. - The base game is not installed in the NAND and cannot be removed. - Základ hry není nainstalovaný na NAND a nemůže být odstraněn. + Základ hry není nainstalovaný na NAND a nemůže být odstraněn. - Successfully removed the installed update. - Úspěšně odebrána nainstalovaná aktualizace. + Úspěšně odebrána nainstalovaná aktualizace. - There is no update installed for this title. - Není nainstalovaná žádná aktualizace pro tento titul. + Není nainstalovaná žádná aktualizace pro tento titul. - There are no DLC installed for this title. - Není nainstalované žádné DLC pro tento titul. + Není nainstalované žádné DLC pro tento titul. - Successfully removed %1 installed DLC. - Úspěšně odstraněno %1 nainstalovaných DLC. + Úspěšně odstraněno %1 nainstalovaných DLC. - + Delete OpenGL Transferable Shader Cache? - + Delete Vulkan Transferable Shader Cache? - + Delete All Transferable Shader Caches? - + Remove Custom Game Configuration? Odstranit vlastní konfiguraci hry? - + Remove Cache Storage? - + Remove File Odstranit soubor - + Remove Play Time Data Odstranit data o době hraní - + Reset play time? Resetovat dobu hraní? - - Error Removing Transferable Shader Cache - Chyba při odstraňování přenositelné mezipaměti shaderů + Chyba při odstraňování přenositelné mezipaměti shaderů - - A shader cache for this title does not exist. - Mezipaměť shaderů pro tento titul neexistuje. + Mezipaměť shaderů pro tento titul neexistuje. - Successfully removed the transferable shader cache. - Přenositelná mezipaměť shaderů úspěšně odstraněna + Přenositelná mezipaměť shaderů úspěšně odstraněna - Failed to remove the transferable shader cache. - Nepodařilo se odstranit přenositelnou mezipaměť shaderů + Nepodařilo se odstranit přenositelnou mezipaměť shaderů - - Error Removing Vulkan Driver Pipeline Cache - - - - - Failed to remove the driver pipeline cache. - - - - - - Error Removing Transferable Shader Caches - - - - - Successfully removed the transferable shader caches. - - - - - Failed to remove the transferable shader cache directory. - - - - - Error Removing Custom Configuration - Chyba při odstraňování vlastní konfigurace hry + Chyba při odstraňování vlastní konfigurace hry - A custom configuration for this title does not exist. - Vlastní konfigurace hry pro tento titul neexistuje. + Vlastní konfigurace hry pro tento titul neexistuje. - Successfully removed the custom game configuration. - Úspěšně odstraněna vlastní konfigurace hry. + Úspěšně odstraněna vlastní konfigurace hry. - Failed to remove the custom game configuration. - Nepodařilo se odstranit vlastní konfiguraci hry. + Nepodařilo se odstranit vlastní konfiguraci hry. - - + + RomFS Extraction Failed! Extrakce RomFS se nepovedla! - + There was an error copying the RomFS files or the user cancelled the operation. Nastala chyba při kopírování RomFS souborů, nebo uživatel operaci zrušil. - + Full Plný - + Skeleton Kostra - + Select RomFS Dump Mode Vyber RomFS Dump Mode - + Please select the how you would like the RomFS dumped.<br>Full will copy all of the files into the new directory while <br>skeleton will only create the directory structure. Vyber jak by si chtěl RomFS vypsat.<br>Plné zkopíruje úplně všechno, ale<br>kostra zkopíruje jen strukturu složky. - + There is not enough free space at %1 to extract the RomFS. Please free up space or select a different dump directory at Emulation > Configure > System > Filesystem > Dump Root - + Extracting RomFS... Extrahuji RomFS... - - - - - + + Cancel Zrušit - + RomFS Extraction Succeeded! Extrakce RomFS se povedla! - - - + The operation completed successfully. Operace byla dokončena úspěšně. - - Integrity verification couldn't be performed! - - - - - File contents were not checked for validity. - - - - - Verifying integrity... - Ověřování integrity... + Ověřování integrity... - - - Integrity verification succeeded! - - - - - - Integrity verification failed! - - - - - File contents may be corrupt. - - - - - - - Create Shortcut - Vytvořit Zástupce + Vytvořit Zástupce - - Do you want to launch the game in fullscreen? - - - - Successfully created a shortcut to %1 - Úspěšně vytvořen zástupce do %1 + Úspěšně vytvořen zástupce do %1 - - This will create a shortcut to the current AppImage. This may not work well if you update. Continue? - - - - Failed to create a shortcut to %1 - Nepodařilo se vytvořit zástupce do %1 + Nepodařilo se vytvořit zástupce do %1 - Create Icon - Vytvořit Ikonu + Vytvořit Ikonu - - Cannot create icon file. Path "%1" does not exist and cannot be created. + + Warning: Outdated Game Format - + + You are using the deconstructed ROM directory format for this game, which is an outdated format that has been superseded by others such as NCA, NAX, XCI, or NSP. Deconstructed ROM directories lack icons, metadata, and update support.<br><br>For an explanation of the various Switch formats Eden supports, <a href='https://eden-emulator.github.io/wiki/overview-of-switch-game-formats'>check out our wiki</a>. This message will not be shown again. + + + + + Eden has encountered an error while running the video core. This is usually caused by outdated GPU drivers, including integrated ones. Please see the log for more details. For more information on accessing the log, please see the following page: <a href='https://yuzu-mirror.github.io/help/reference/log-files/'>How to Upload the Log File</a>. + + + + + %1<br>Please redump your files or ask on Discord/Revolt for help. + %1 signifies an error string. + + + + Error Opening %1 Chyba při otevírání %1 - + Select Directory Vybraná Složka - + Properties Vlastnosti - + The game properties could not be loaded. Herní vlastnosti nemohly být načteny. - + Switch Executable (%1);;All Files (*.*) %1 is an identifier for the Switch executable file extensions. Switch Executable (%1);;Všechny soubory (*.*) - + Load File Načíst soubor - + Open Extracted ROM Directory Otevřít složku s extrahovanou ROM - + Invalid Directory Selected Vybraná složka je neplatná - + The directory you have selected does not contain a 'main' file. Složka kterou jste vybrali neobsahuje soubor "main" - + Installable Switch File (*.nca *.nsp *.xci);;Nintendo Content Archive (*.nca);;Nintendo Submission Package (*.nsp);;NX Cartridge Image (*.xci) Instalovatelný soubor pro Switch (*.nca *.nsp *.xci);;Nintendo Content Archive (*.nca);;Nintendo Submission Package (*.nsp);;NX Cartridge Image (*.xci) - + Install Files Instalovat Soubory - + %n file(s) remaining - - + Installing file "%1"... Instalování souboru "%1"... - - + + Install Results Výsledek instalace - + To avoid possible conflicts, we discourage users from installing base games to the NAND. Please, only use this feature to install updates and DLC. Abychom předešli možným konfliktům, nedoporučujeme uživatelům instalovat základní hry na paměť NAND. Tuto funkci prosím používejte pouze k instalaci aktualizací a DLC. - + %n file(s) were newly installed - - + %n file(s) were overwritten - - + %n file(s) failed to install - - + System Application Systémová Aplikace - + System Archive Systémový archív - + System Application Update Systémový Update Aplikace - + Firmware Package (Type A) Firmware-ový baliček (Typu A) - + Firmware Package (Type B) Firmware-ový baliček (Typu B) - + Game Hra - + Game Update Update Hry - + Game DLC Herní DLC - + Delta Title Delta Title - + Select NCA Install Type... Vyberte typ instalace NCA... - + Please select the type of title you would like to install this NCA as: (In most instances, the default 'Game' is fine.) Vyberte typ title-u, který chcete nainstalovat tenhle NCA jako: (Většinou základní "game" stačí.) - + Failed to Install Chyba v instalaci - + The title type you selected for the NCA is invalid. Tento typ pro tento NCA není platný. - + File not found Soubor nenalezen - + File "%1" not found Soubor "%1" nenalezen - + OK OK - - + + Hardware requirements not met - - + + Your system does not meet the recommended hardware requirements. Compatibility reporting has been disabled. - + Missing yuzu Account Chybí účet yuzu - - In order to submit a game compatibility test case, you must link your eden account.<br><br/>To link your eden account, go to Emulation &gt; Configuration &gt; Web. + + In order to submit a game compatibility test case, you must set up your web token and username.<br><br/>To link your eden account, go to Emulation &gt; Configuration &gt; Web. - - Install decryption keys and restart eden before attempting to install firmware. + + Select Dumped Firmware ZIP - - Firmware installation cancelled, firmware may be in bad state, restart eden or re-install firmware. + + Zipped Archives (*.zip) - - Encryption keys are missing. + + Firmware cleanup failed - - Are you sure you want to close eden? + + Failed to clean up extracted firmware cache. +Check write permissions in the system temp directory and try again. +OS reported error: %1 - - - - eden + + Please install firmware to use the Album applet. - - The currently running application has requested eden to not exit. + + Please install firmware to use the Cabinet applet. + + + + + Please install firmware to use the Mii editor. + + + + + Please install firmware to use the Controller Menu. + + + + + Please install firmware to use the Home Menu. + + + + + Firmware Corrupted + + + + + Firmware Too New + + + + + +Continue anyways? + + + + + Don't show again + + + + + Please install firmware to use Starter. + + + + + Are you sure you want to close Eden? + + + + + + + Eden + + + + + The currently running application has requested Eden to not exit. Would you like to bypass this and exit anyway? + + + Encryption keys are missing. + + In order to submit a game compatibility test case, you must link your yuzu account.<br><br/>To link your yuzu account, go to Emulation &gt; Configuration &gt; Web. Pro přidání recenze kompatibility je třeba mít účet yuzu<br><br/>Pro nalinkování yuzu účtu jdi do Emulace &gt; Konfigurace &gt; Web. - + Error opening URL Chyba při otevírání URL - + Unable to open the URL "%1". Nelze otevřít URL "%1". - + TAS Recording - + Overwrite file of player 1? - + Invalid config detected Zjištěno neplatné nastavení - + Handheld controller can't be used on docked mode. Pro controller will be selected. Ruční ovladač nelze používat v dokovacím režimu. Bude vybrán ovladač Pro Controller. - - + + Amiibo - - + + The current amiibo has been removed - + Error - - + + The current game is not looking for amiibos - + Amiibo File (%1);; All Files (*.*) Soubor Amiibo (%1);; Všechny Soubory (*.*) - + Load Amiibo Načíst Amiibo - + Error loading Amiibo data Chyba načítání Amiiba - + The selected file is not a valid amiibo - + The selected file is already on use - + An unknown error occurred - - - Verification failed for the following files: - -%1 - - - - + + Keys not installed - + + + Install decryption keys and restart Eden before attempting to install firmware. + + + + Select Dumped Firmware Source Location - - Installing Firmware... - - - - - - - - Firmware install failed - - - - - Unable to locate potential firmware NCA files - - - - - Failed to delete one or more firmware file. - - - - - One or more firmware files failed to copy into NAND. - - - - - Firmware integrity verification failed! - - - - - Select Dumped Keys Location - - - - - - - Decryption Keys install failed - - - - - prod.keys is a required decryption key file. - - - - - One or more keys failed to copy. - - - - - Decryption Keys install succeeded - - - - - Decryption Keys were successfully installed - - - - - Decryption Keys failed to initialize. Check that your dumping tools are up to date and re-dump keys. - - - - - - - - - - + + + + + + No firmware available Není k dispozici žádný firmware - - Please install the firmware to use the Album applet. - - - - + Album Applet - + Album applet is not available. Please reinstall firmware. - - Please install the firmware to use the Cabinet applet. - - - - + Cabinet Applet - + Cabinet applet is not available. Please reinstall firmware. - - Please install the firmware to use the Mii editor. - - - - + Mii Edit Applet - + Mii editor is not available. Please reinstall firmware. - - Please install the firmware to use the Controller Menu. - - - - + Controller Applet Applet ovladače - + Controller Menu is not available. Please reinstall firmware. - - Please install the firmware to use the Home Menu. - - - - - + Home Menu Applet - - + Home Menu is not available. Please reinstall firmware. - - Please install the firmware to use Starter. - - - - + Starter Applet - + Starter is not available. Please reinstall firmware. - - Please install firmware to use the home menu. - - - - + Capture Screenshot Pořídit Snímek Obrazovky - + PNG Image (*.png) PNG Image (*.png) - + Update Available - + Update %1 for Eden is available. Would you like to download it? - + TAS state: Running %1/%2 - + TAS state: Recording %1 - + TAS state: Idle %1/%2 - + TAS State: Invalid - + &Stop Running - + &Start &Start - + Stop R&ecording - + R&ecord - + Building: %n shader(s) Budování: %n shader Budování: %n shadery - Budování: %n shaderů - + Scale: %1x %1 is the resolution scaling factor Měřítko: %1x - + Speed: %1% / %2% Rychlost: %1% / %2% - + Speed: %1% Rychlost: %1% - + Game: %1 FPS Hra: %1 FPS - + Frame: %1 ms Frame: %1 ms - + %1 %2 %1 %2 - - + + FSR - + NO AA ŽÁDNÝ AA - + VOLUME: MUTE HLASITOST: ZTLUMENO - + VOLUME: %1% Volume percentage (e.g. 50%) HLASITOST: %1% - + Derivation Components Missing Chybé odvozené komponenty - + Select RomFS Dump Target Vyberte Cíl vypsaní RomFS - + Please select which RomFS you would like to dump. Vyberte, kterou RomFS chcete vypsat. @@ -6720,7 +6745,7 @@ Would you like to download it? yuzu - + Are you sure you want to stop the emulation? Any unsaved progress will be lost. Jste si jist, že chcete ukončit emulaci? Jakýkolic neuložený postup bude ztracen. @@ -6733,102 +6758,102 @@ Would you like to bypass this and exit anyway? Opravdu si přejete ukončit tuto aplikaci? - + None Žádné - + FXAA FXAA - + SMAA SMAA - + Nearest - + Bilinear Bilineární - + Bicubic - + Gaussian - + ScaleForce - + Area - + Docked Zadokovaná - + Handheld Příruční - + Normal Normální - + High Vysoká - + Extreme Extrémní - + Vulkan Vulkan - + OpenGL - + Null - + GLSL - + GLASM - + SPIRV @@ -6836,13 +6861,13 @@ Opravdu si přejete ukončit tuto aplikaci? GRenderWindow - - + + OpenGL not available! OpenGL není k dispozici! - + OpenGL shared contexts are not supported. @@ -6851,33 +6876,33 @@ Opravdu si přejete ukončit tuto aplikaci? yuzu nebylo sestaveno s OpenGL podporou. - - eden has not been compiled with OpenGL support. + + Eden has not been compiled with OpenGL support. - - + + Error while initializing OpenGL! Chyba při inicializaci OpenGL! - + Your GPU may not support OpenGL, or you do not have the latest graphics driver. Vaše grafická karta pravděpodobně nepodporuje OpenGL nebo nejsou nainstalovány nejnovější ovladače. - + Error while initializing OpenGL 4.6! Chyba při inicializaci OpenGL 4.6! - + Your GPU may not support OpenGL 4.6, or you do not have the latest graphics driver.<br><br>GL Renderer:<br>%1 Vaše grafická karta pravděpodobně nepodporuje OpenGL 4.6 nebo nejsou nainstalovány nejnovější ovladače.<br><br>GL Renderer:<br>%1 - + Your GPU may not support one or more required OpenGL extensions. Please ensure you have the latest graphics driver.<br><br>GL Renderer:<br>%1<br><br>Unsupported extensions:<br>%2 Vaše grafická karta pravděpodobně nepodporuje jedno nebo více rozšíření OpenGL. Ujistěte se prosím, že jsou nainstalovány nejnovější ovladače.<br><br>GL Renderer:<br>%1<br><br>Nepodporované rozšíření:<br>%2 @@ -6885,128 +6910,128 @@ Opravdu si přejete ukončit tuto aplikaci? GameList - + Favorite Oblíbené - + Start Game Spustit hru - + Start Game without Custom Configuration Spustit hru bez vlastní konfigurace - + Open Save Data Location Otevřít Lokaci Savů - + Open Mod Data Location Otevřít Lokaci Modifikací - + Open Transferable Pipeline Cache - + Remove Odstranit - + Remove Installed Update Odstranit nainstalovanou aktualizaci - + Remove All Installed DLC Odstranit všechny nainstalované DLC - + Remove Custom Configuration Odstranit vlastní konfiguraci hry - + Remove Play Time Data Odstranit data o době hraní - + Remove Cache Storage - + Remove OpenGL Pipeline Cache - + Remove Vulkan Pipeline Cache - + Remove All Pipeline Caches - + Remove All Installed Contents Odstranit všechen nainstalovaný obsah - + Dump RomFS Vypsat RomFS - + Dump RomFS to SDMC - + Verify Integrity Ověřit Integritu - + Copy Title ID to Clipboard Zkopírovat ID Titulu do schránky - + Navigate to GameDB entry Navigovat do GameDB - + Create Shortcut Vytvořit Zástupce - + Add to Desktop - + Add to Applications Menu - + Configure Game @@ -7015,62 +7040,62 @@ Opravdu si přejete ukončit tuto aplikaci? Vlastnosti - + Scan Subfolders Prohledat podsložky - + Remove Game Directory Odstranit složku se hrou - + ▲ Move Up ▲ Posunout nahoru - + ▼ Move Down ▼ Posunout dolů - + Open Directory Location Otevřít umístění složky - + Clear Vymazat - + Name Název - + Compatibility Kompatibilita - + Add-ons Modifkace - + File type Typ-Souboru - + Size Velikost - + Play time Doba hraní @@ -7078,62 +7103,62 @@ Opravdu si přejete ukončit tuto aplikaci? GameListItemCompat - + Ingame - + Game starts, but crashes or major glitches prevent it from being completed. - + Perfect Perfektní - + Game can be played without issues. Hra může být hrána bez problémů. - + Playable Hratelné - + Game functions with minor graphical or audio glitches and is playable from start to finish. Hra funguje s drobnými grafickými nebo zvukovými chybami a je hratelná od začátku do konce. - + Intro/Menu Intro/Menu - + Game loads, but is unable to progress past the Start Screen. - + Won't Boot Nebootuje - + The game crashes when attempting to startup. Hra crashuje při startu. - + Not Tested Netestováno - + The game has not yet been tested. Hra ještě nebyla testována @@ -7141,7 +7166,7 @@ Opravdu si přejete ukončit tuto aplikaci? GameListPlaceholder - + Double-click to add a new folder to the game list Dvojitým kliknutím přidáte novou složku do seznamu her @@ -7149,21 +7174,20 @@ Opravdu si přejete ukončit tuto aplikaci? GameListSearchField - + %1 of %n result(s) - - + Filter: Filtr: - + Enter pattern to filter Zadejte filtr @@ -7245,7 +7269,7 @@ Opravdu si přejete ukončit tuto aplikaci? - Failed to announce the room to the public lobby. In order to host a room publicly, you must have a valid eden account configured in Emulation -> Configure -> Web. If you do not want to publish a room in the public lobby, then select Unlisted instead. + Failed to announce the room to the public lobby. In order to host a room publicly, you must have a valid Eden 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: @@ -7253,213 +7277,213 @@ Debug Message: Hotkeys - + Audio Mute/Unmute - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Main Window - + Audio Volume Down - + Audio Volume Up - + Capture Screenshot Pořídit Snímek Obrazovky - + Change Adapting Filter - + Change Docked Mode - + Change GPU Accuracy Změnit Přesnost GPU - + Configure - + Configure Current Game - + Continue/Pause Emulation - + Exit Fullscreen Opustit Režim Celé Obrazovky + + + Exit Eden + + + + + Load/Remove Amiibo + + + + + Multiplayer Browse Public Game Lobby + + + + + Multiplayer Create Room + + + + + Multiplayer Direct Connect to Room + + + + + Multiplayer Leave Room + + + + + Multiplayer Show Current Room + + + + + Restart Emulation + + + + + Stop Emulation + + + + + TAS Record + + + + + TAS Reset + + + + + TAS Start/Stop + + + + + Toggle Filter Bar + + + + + Toggle Framerate Limit + + + + + Toggle Mouse Panning + + + + + Toggle Renderdoc Capture + + + + + Toggle Status Bar + + Exit yuzu Ukončit yuzu - - Exit eden - - - - + Fullscreen Celá Obrazovka - + Load File Načíst soubor - - - Load/Remove Amiibo - - - - - Multiplayer Browse Public Game Lobby - - - - - Multiplayer Create Room - - - - - Multiplayer Direct Connect to Room - - - - - Multiplayer Leave Room - - - - - Multiplayer Show Current Room - - - - - Restart Emulation - - - - - Stop Emulation - - - - - TAS Record - - - - - TAS Reset - - - - - TAS Start/Stop - - - - - Toggle Filter Bar - - - - - Toggle Framerate Limit - - - - - Toggle Mouse Panning - - - - - Toggle Renderdoc Capture - - - - - Toggle Status Bar - - InstallDialog - + Please confirm these are the files you wish to install. Potvrďte, že se jedná o soubory, které chcete nainstalovat. - + Installing an Update or DLC will overwrite the previously installed one. Instalací aktualizace nebo DLC se přepíše dříve nainstalovaná aktualizace nebo DLC. - + Install Nainstalovat - + Install Files to NAND Instalovat soubory na NAND @@ -7467,7 +7491,7 @@ Debug Message: LimitableInputDialog - + The text can't contain any of the following characters: %1 @@ -7613,152 +7637,207 @@ Debug Message: &Nedávné soubory - + + Open &Eden Folders + + + + &Emulation &Emulace - + &View &Pohled - + &Reset Window Size &Resetovat Velikost Okna - + &Debugging &Ladění - + Reset Window Size to &720p Nastavit velikost okna na &720p - + Reset Window Size to 720p Nastavit velikost okna na 720p - + Reset Window Size to &900p Resetovat Velikost Okna na &900p - + Reset Window Size to 900p Resetovat Velikost Okna na 900p - + Reset Window Size to &1080p Nastavit velikost okna na &1080p - + Reset Window Size to 1080p Nastavit velikost okna na 1080p - + &Multiplayer - + &Tools &Nástroje - + &Amiibo - + &TAS - + &Create Home Menu Shortcut - + &Help &Pomoc - + &Install Files to NAND... &Instalovat soubory na NAND... - + L&oad File... Načís&t soubor... - + Load &Folder... Načíst sl&ožku... - + E&xit E&xit - + &Pause &Pauza - + &Stop &Stop - + &Verify Installed Contents &Ověřit Nainstalovaný Obsah - - &About eden + + &Root Data Folder - - Open &eden Folder + + &NAND Folder - + + &SDMC Folder + + + + + &Mod Folder + + + + + &Log Folder + + + + + From Folder + + + + + From ZIP + + + + + &X + + + + + X (Twitter) + + + + + &Revolt + + + + + Revolt + + + + + &Eden Dependencies + + + + Open Home Menu - + &Discord - + Open &Setup - + &Desktop - + &Application Menu @@ -7767,97 +7846,97 @@ Debug Message: O &aplikaci yuzu - + Single &Window Mode &Režim jednoho okna - + Con&figure... &Nastavení - + Ctrl+, - + Display D&ock Widget Headers Zobrazit záhlaví widgetů d&oku - + Show &Filter Bar Zobrazit &filtrovací panel - + Show &Status Bar Zobrazit &stavový řádek - + Show Status Bar Zobrazit Staus Bar - + &Browse Public Game Lobby - + &Create Room &Vytvořit Místnost - + &Leave Room &Opustit Místnost - + &Direct Connect to Room - + &Show Current Room - + F&ullscreen &Celá obrazovka - + &Restart &Restartovat - + Load/Remove &Amiibo... - + &Report Compatibility &Nahlásit kompatibilitu - + Open &Mods Page Otevřít stránku s &modifikacemi - + Open &Quickstart Guide Otevřít &rychlého průvodce - + &FAQ Často &kladené otázky @@ -7866,77 +7945,82 @@ Debug Message: Otevřít složku s &yuzu - + &Capture Screenshot Za&chytit snímek obrazovky - + Open &Album Otevřít &Album - + &Set Nickname and Owner &Nastavit Přezdívku a Vlastníka - + &Delete Game Data &Odstranit Herní Data - + &Restore Amiibo &Obnovit Amiibo - + &Format Amiibo - + Open &Mii Editor Otevřít &Mii Editor - + &Configure TAS... - + Configure C&urrent Game... Nastavení současné hry - + &Start &Start - + &Reset &Resetovat - + R&ecord - + Open &Controller Menu Otevřít &Menu Ovladače - + Install Firmware - + + &About Eden + + + + Install Decryption Keys @@ -7944,26 +8028,36 @@ Debug Message: MicroProfileDialog - &MicroProfile - &MicroProfile + &MicroProfile MigrationWorker - + Data was migrated successfully. - + Linking the old directory failed. You may need to re-run with administrative privileges on Windows. OS gave error: %1 - + + + +Note that your configuration and data will be shared with %1. +If this is not desirable, delete the following files: +%2 +%3 +%4 + + + + If you wish to clean up the files which were left in the old data location, you can do so by deleting the following directory: @@ -8023,37 +8117,37 @@ If you wish to clean up the files which were left in the old data location, you MultiplayerState - + Current connection status - + Not Connected. Click here to find a room! Nepřipojeno. Klikni zde pro nalezení místnosti! - + Not Connected Nepřipojeno - + Connected Připojeno - + New Messages Received - + Error - + Failed to update the room information. Please check your Internet connection and try hosting the room again. Debug Message: @@ -8170,56 +8264,56 @@ p, li { white-space: pre-wrap; } Nehraje hru - + Installed SD Titles Nainstalované SD tituly - + Installed NAND Titles Nainstalované NAND tituly - + System Titles Systémové tituly - + Add New Game Directory Přidat novou složku s hrami - + Favorites Oblíbené - - + + Shift Shift - - + + Ctrl Ctrl - - + + Alt Alt - - - - + + + + [not set] [Nenastaveno] @@ -8230,14 +8324,14 @@ p, li { white-space: pre-wrap; } Poziční klobouček %1 %2 - - - - - - - - + + + + + + + + Axis %1%2 Osa %1%2 @@ -8248,357 +8342,357 @@ p, li { white-space: pre-wrap; } Tlačítko %1 - - - - - - + + + + + + [unknown] [Neznámá] - - - + + + Left Doleva - - - + + + Right Doprava - - - + + + Down Dolů - - - + + + Up Nahoru - - + + Z Z - - + + R R - - + + L L - - + + A A - - + + B B - - + + X X - - + + Y Y - - + + Start Start - - + + L1 - - + + L2 - - + + L3 - - + + R1 - - + + R2 - - + + R3 - - + + Circle - - + + Cross - - + + Square - - + + Triangle - - + + Share - - + + Options - - + + [undefined] - + %1%2 %1%2 - - + + [invalid] - - + + %1%2Hat %3 - - - + + + %1%2Axis %3 - - + + %1%2Axis %3,%4,%5 - - + + %1%2Motion %3 - - + + %1%2Button %3 - - + + [unused] [nepoužito] - + ZR ZR - + ZL ZL - + SR SR - + SL SL - + Stick L - + Stick R - + Plus Plus - + Minus Minus - - + + Home Home - + Capture Capture - + Touch Dotyk - + Wheel Indicates the mouse wheel - + Backward - + Forward - + Task - + Extra - + %1%2%3%4 - - + + %1%2%3Hat %4 - - + + %1%2%3Axis %4 - - + + %1%2%3Button %4 - - + + Migration - + - - + + No - + You can manually re-trigger this prompt by deleting the new config directory: %1 - + Migrating - + Migrating, this may take a while... @@ -8716,6 +8810,298 @@ p, li { white-space: pre-wrap; } Chcete obnovit toto amiibo? + + QtCommon::Content + + + Installing Firmware... + + + + + + + Cancel + + + + + Firmware integrity verification failed! + + + + + + Verification failed for the following files: + +%1 + + + + + + Verifying integrity... + Ověřování integrity... + + + + + Integrity verification succeeded! + + + + + + The operation completed successfully. + + + + + + Integrity verification failed! + + + + + File contents may be corrupt or missing. + + + + + Integrity verification couldn't be performed + + + + + Firmware installation cancelled, firmware may be in a bad state or corrupted. File contents could not be checked for validity. + + + + + Select Dumped Keys Location + + + + + Decryption Keys install succeeded + + + + + Decryption Keys were successfully installed + + + + + Decryption Keys install failed + + + + + QtCommon::Game + + + Error Removing Contents + + + + + Error Removing Update + + + + + Error Removing DLC + + + + + The base game is not installed in the NAND and cannot be removed. + Základ hry není nainstalovaný na NAND a nemůže být odstraněn. + + + + There is no update installed for this title. + Není nainstalovaná žádná aktualizace pro tento titul. + + + + There are no DLCs installed for this title. + + + + + + + + Successfully Removed + Úspěšně odebráno + + + + Successfully removed %1 installed DLC. + Úspěšně odstraněno %1 nainstalovaných DLC. + + + + + Error Removing Transferable Shader Cache + Chyba při odstraňování přenositelné mezipaměti shaderů + + + + + A shader cache for this title does not exist. + Mezipaměť shaderů pro tento titul neexistuje. + + + + Successfully removed the transferable shader cache. + Přenositelná mezipaměť shaderů úspěšně odstraněna + + + + Failed to remove the transferable shader cache. + Nepodařilo se odstranit přenositelnou mezipaměť shaderů + + + + Error Removing Vulkan Driver Pipeline Cache + + + + + Failed to remove the driver pipeline cache. + + + + + + Error Removing Transferable Shader Caches + + + + + Successfully removed the transferable shader caches. + + + + + Failed to remove the transferable shader cache directory. + + + + + + Error Removing Custom Configuration + Chyba při odstraňování vlastní konfigurace hry + + + + A custom configuration for this title does not exist. + Vlastní konfigurace hry pro tento titul neexistuje. + + + + Successfully removed the custom game configuration. + Úspěšně odstraněna vlastní konfigurace hry. + + + + Failed to remove the custom game configuration. + Nepodařilo se odstranit vlastní konfiguraci hry. + + + + Reset Metadata Cache + Resetovat mezipaměť metadat + + + + The metadata cache is already empty. + Mezipaměť metadat je již prázdná. + + + + The operation completed successfully. + + + + + The metadata cache couldn't be deleted. It might be in use or non-existent. + Mezipaměť metadat nemohla být odstraněna. Možná je používána nebo neexistuje. + + + + Create Shortcut + Vytvořit Zástupce + + + + Do you want to launch the game in fullscreen? + + + + + Shortcut Created + + + + + Successfully created a shortcut to %1 + Úspěšně vytvořen zástupce do %1 + + + + Shortcut may be Volatile! + + + + + This will create a shortcut to the current AppImage. This may not work well if you update. Continue? + + + + + Failed to Create Shortcut + + + + + Failed to create a shortcut to %1 + Nepodařilo se vytvořit zástupce do %1 + + + + Create Icon + Vytvořit Ikonu + + + + Cannot create icon file. Path "%1" does not exist and cannot be created. + + + + + No firmware available + Není k dispozici žádný firmware + + + + Please install firmware to use the home menu. + + + + + Home Menu Applet + + + + + Home Menu is not available. Please reinstall firmware. + + + QtControllerSelectorDialog @@ -9011,7 +9397,7 @@ Zkuste to prosím znovu nebo kontaktujte vývojáře softwaru. QtProfileSelectionDialog - + %1 %2 %1 is the profile username, %2 is the formatted UUID (e.g. 00112233-4455-6677-8899-AABBCCDDEEFF)) @@ -9019,7 +9405,7 @@ Zkuste to prosím znovu nebo kontaktujte vývojáře softwaru. %2 - + Users Uživatelé @@ -9143,7 +9529,7 @@ p, li { white-space: pre-wrap; } WaitTreeCallstack - + Call stack Call stack @@ -9151,12 +9537,12 @@ p, li { white-space: pre-wrap; } WaitTreeSynchronizationObject - + [%1] %2 - + waited by no thread čekání bez přiřazeného vlákna @@ -9164,102 +9550,102 @@ p, li { white-space: pre-wrap; } WaitTreeThread - + runnable spustitelné - + paused pauznuto - + sleeping spící - + waiting for IPC reply čekání na odpověd IPC - + waiting for objects waiting for objects - + waiting for condition variable čekání na proměnnou podmínky - + waiting for address arbiter waiting for address arbiter - + waiting for suspend resume čekání na obnovení pozastavení - + waiting čekání - + initialized inicializováno - + terminated ukončeno - + unknown neznámý - + PC = 0x%1 LR = 0x%2 PC = 0x%1 LR = 0x%2 - + ideal ideální - + core %1 jádro %1 - + processor = %1 procesor = %1 - + affinity mask = %1 affinity mask = %1 - + thread id = %1 id vlákna = %1 - + priority = %1(current) / %2(normal) priorita = %1(aktuální) / %2(normální) - + last running ticks = %1 last running ticks = %1 @@ -9267,7 +9653,7 @@ p, li { white-space: pre-wrap; } WaitTreeThreadList - + waited by thread waited by thread @@ -9275,7 +9661,7 @@ p, li { white-space: pre-wrap; } WaitTreeWidget - + &Wait Tree Ř&etězec čekání diff --git a/dist/languages/da.ts b/dist/languages/da.ts index 49cd8e6546..bb03ef18ca 100644 --- a/dist/languages/da.ts +++ b/dist/languages/da.ts @@ -13,12 +13,12 @@ - About eden + About Eden - <html><head/><body><p><span style=" font-size:28pt;">eden</span></p></body></html> + <html><head/><body><p><span style=" font-size:28pt;">Eden</span></p></body></html> @@ -34,8 +34,8 @@ p, li { white-space: pre-wrap; } hr { height: 1px; border-width: 0; } li.unchecked::marker { content: "\2610"; } li.checked::marker { content: "\2612"; } -</style></head><body style=" font-family:'Adwaita Sans'; font-size:11pt; font-weight:400; font-style:normal;"> -<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;">eden is an experimental open-source emulator for the Nintendo Switch licensed under GPLv3.0+ which is based on the yuzu emulator which ended development back in March 2024. <br /><br />This software should not be used to play games you have not legally obtained.</span></p></body></html> +</style></head><body style=" font-family:'Noto Sans'; font-size:9pt; font-weight:400; font-style:normal;"> +<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;">Eden is an experimental open-source emulator for the Nintendo Switch licensed under GPLv3.0+ which is based on the yuzu emulator which ended development back in March 2024. <br /><br />This software should not be used to play games you have not legally obtained.</span></p></body></html> @@ -72,32 +72,32 @@ p, li { white-space: pre-wrap; } CalibrationConfigurationDialog - + Communicating with the server... Kommunikerer med serveren... - + Cancel Afbryd - + Touch the top left corner <br>of your touchpad. Rør det øverste venstre hjørne <br> af din pegeplade. - + Now touch the bottom right corner <br>of your touchpad. Rør nu det nederste højre hjørne <br> af din pegeplade. - + Configuration completed! Konfiguration fuldført! - + OK OK @@ -397,502 +397,139 @@ Dette vil bandlyse både vedkommendes forum-brugernavn og IP-adresse. ConfigurationShared - + % % - - Amiibo editor - - - - - Controller configuration - - - - - Data erase - - - - - Error - - - - - Net connect - - - - - Player select - - - - - Software keyboard - - - - - Mii Edit - - - - - Online web - - - - - Shop - - - - - Photo viewer - - - - - Offline web - - - - - Login share - - - - - Wifi web auth - - - - - My page - - - - + Output Engine: Udgangsmotor: - - Output Device: - - - - - Input Device: - - - - - Mute audio - - - - + Volume: Lydstyrke: - + Mute audio when in background Gør lydløs, når i baggrunden - + Multicore CPU Emulation Flerkerne-CPU-Emulering - - This option increases CPU emulation thread use from 1 to the Switch’s maximum of 4. -This is mainly a debug option and shouldn’t be disabled. - - - - - Memory Layout - - - - - Increases the amount of emulated RAM from the stock 4GB of the retail Switch to the developer kit's 8/6GB. -It’s doesn’t improve stability or performance and is intended to let big texture mods fit in emulated RAM. -Enabling it will increase memory use. It is not recommended to enable unless a specific game with a texture mod needs it. - - - - + Limit Speed Percent Begræns Hastighedsprocent - - Controls the game's maximum rendering speed, but it’s up to each game if it runs faster or not. -200% for a 30 FPS game is 60 FPS, and for a 60 FPS game it will be 120 FPS. -Disabling it means unlocking the framerate to the maximum your PC can reach. - - - - - Synchronize Core Speed - - - - - Synchronizes CPU core speed with the game's maximum rendering speed to boost FPS without affecting game speed (animations, physics, etc.). -Compatibility varies by game; many (especially older ones) may not respond well. -Can help reduce stuttering at lower framerates. - - - - + Accuracy: Nøjagtighed - - This setting controls the accuracy of the emulated CPU. -Don't change this unless you know what you are doing. - - - - - - Backend: - - - - - Fast CPU Time - - - - - Overclocks the emulated CPU to remove some FPS limiters. Weaker CPUs may see reduced performance, and certain games may behave improperly. -Use Boost (1700MHz) to run at the Switch's highest native clock, or Fast (2000MHz) to run at 2x clock. - - - - + Unfuse FMA (improve performance on CPUs without FMA) Adskil FMA (forbedr ydeevne på CPUer uden FMA) - - This option improves speed by reducing accuracy of fused-multiply-add instructions on CPUs without native FMA support. - - - - + Faster FRSQRTE and FRECPE Hurtigere FRSQRTE og FRECPE - - This option improves the speed of some approximate floating-point functions by using less accurate native approximations. - - - - + Faster ASIMD instructions (32 bits only) Hurtigere ASIMD-instrukser (kun 32-bit) - - This option improves the speed of 32 bits ASIMD floating-point functions by running with incorrect rounding modes. - - - - + Inaccurate NaN handling Unøjagtig NaN-håndtering - - This option improves speed by removing NaN checking. -Please note this also reduces accuracy of certain floating-point instructions. - - - - + Disable address space checks Deaktivér adresseplads-kontrol - - This option improves speed by eliminating a safety check before every memory read/write in guest. -Disabling it may allow a game to read/write the emulator's memory. - - - - + Ignore global monitor Ignorér global overvågning - - This option improves speed by relying only on the semantics of cmpxchg to ensure safety of exclusive access instructions. -Please note this may result in deadlocks and other race conditions. - - - - + API: API: - - Switches between the available graphics APIs. -Vulkan is recommended in most cases. - - - - + Device: Enhed: - - This setting selects the GPU to use with the Vulkan backend. - - - - + Shader Backend: Shader-Bagende: - - The shader backend to use for the OpenGL renderer. -GLSL is the fastest in performance and the best in rendering accuracy. -GLASM is a deprecated NVIDIA-only backend that offers much better shader building performance at the cost of FPS and rendering accuracy. -SPIR-V compiles the fastest, but yields poor results on most GPU drivers. - - - - + Resolution: Opløsning: - - Forces the game to render at a different resolution. -Higher resolutions require much more VRAM and bandwidth. -Options lower than 1X can cause rendering issues. - - - - + Window Adapting Filter: Vinduestilpassende Filter: - - FSR Sharpness: - - - - - Determines how sharpened the image will look while using FSR’s dynamic contrast. - - - - + Anti-Aliasing Method: Anti-Aliaseringsmetode: - - The anti-aliasing method to use. -SMAA offers the best quality. -FXAA has a lower performance impact and can produce a better and more stable picture under very low resolutions. - - - - + Fullscreen Mode: Fuldskærmstilstand: - - The method used to render the window in fullscreen. -Borderless offers the best compatibility with the on-screen keyboard that some games request for input. -Exclusive fullscreen may offer better performance and better Freesync/Gsync support. - - - - + Aspect Ratio: Skærmformat: - - Stretches the game to fit the specified aspect ratio. -Switch games only support 16:9, so custom game mods are required to get other ratios. -Also controls the aspect ratio of captured screenshots. - - - - + Use disk pipeline cache Brug disk-rørlinje-mellemlager - - Allows saving shaders to storage for faster loading on following game boots. -Disabling it is only intended for debugging. - - - - - Optimize SPIRV output shader - - - - - Runs an additional optimization pass over generated SPIRV shaders. -Will increase time required for shader compilation. -May slightly improve performance. -This feature is experimental. - - - - + Use asynchronous GPU emulation Brug asynkron GPU-emulering - - Uses an extra CPU thread for rendering. -This option should always remain enabled. - - - - + NVDEC emulation: NVDEC-emulering: - - Specifies how videos should be decoded. -It can either use the CPU or the GPU for decoding, or perform no decoding at all (black screen on videos). -In most cases, GPU decoding provides the best performance. - - - - - ASTC Decoding Method: - - - - - This option controls how ASTC textures should be decoded. -CPU: Use the CPU for decoding, slowest but safest method. -GPU: Use the GPU's compute shaders to decode ASTC textures, recommended for most games and users. -CPU Asynchronously: Use the CPU to decode ASTC textures as they arrive. Completely eliminates ASTC decoding -stuttering at the cost of rendering issues while the texture is being decoded. - - - - - ASTC Recompression Method: - - - - - Almost all desktop and laptop dedicated GPUs lack support for ASTC textures, forcing the emulator to decompress to an intermediate format any card supports, RGBA8. -This option recompresses RGBA8 to either the BC1 or BC3 format, saving VRAM but negatively affecting image quality. - - - - - VRAM Usage Mode: - - - - - Selects whether the emulator should prefer to conserve memory or make maximum usage of available video memory for performance. Has no effect on integrated graphics. Aggressive mode may severely impact the performance of other applications such as recording software. - - - - - VSync Mode: - - - - - FIFO (VSync) does not drop frames or exhibit tearing but is limited by the screen refresh rate. -FIFO Relaxed is similar to FIFO but allows tearing as it recovers from a slow down. -Mailbox can have lower latency than FIFO and does not tear but may drop frames. -Immediate (no synchronization) just presents whatever is available and can exhibit tearing. - - - - - Enable asynchronous presentation (Vulkan only) - - - - - Slightly improves performance by moving presentation to a separate CPU thread. - - - - - Force maximum clocks (Vulkan only) - - - - - Runs work in the background while waiting for graphics commands to keep the GPU from lowering its clock speed. - - - - + Anisotropic Filtering: Anisotropisk Filtrering: - - Controls the quality of texture rendering at oblique angles. -It’s a light setting and safe to set at 16x on most GPUs. - - - - Accuracy Level: - Nøjagtighedsniveau + Nøjagtighedsniveau - - GPU emulation accuracy. -Most games render fine with Normal, but High is still required for some. -Particles tend to only render correctly with High accuracy. -Extreme should only be used for debugging. -This option can be changed while playing. -Some games may require booting on high to render properly. - - - - + Use asynchronous shader building (Hack) Brug asynkron shader-opbygning (Hack) - - - Enables asynchronous shader compilation, which may reduce shader stutter. -This feature is experimental. - - Use Fast GPU Time (Hack) Brug Hurtig GPU-Tid (Hack) @@ -902,1021 +539,1481 @@ This feature is experimental. Aktiverer Hurtig GPU-Tid. Denne valgmulighed vil tvinge de fleste spil, til at køre i deres højeste indbyggede opløsning. - + + RNG Seed + RNG-Seed + + + + Note: this can be overridden when region setting is auto-select + Bemærk: Dette kan overskrives, når regionsindstillinger er sat til automatisk valg + + + + Region: + Region + + + + Time Zone: + Tidszone + + + + Prompt for user on game boot + Spørg efter bruger, ved opstart af spil + + + + Pause emulation when in background + Sæt emulering på pause, når i baggrund + + + + Hide mouse on inactivity + Skjul mus ved inaktivitet + + + + CPU + CPU + + + + GLASM (Assembly Shaders, NVIDIA Only) + GLASM (Assembly-Shadere, kun NVIDIA) + + + + Auto + Automatisk + + + + Accurate + Nøjagtig + + + + Unsafe + Usikker + + + + Paranoid (disables most optimizations) + Paranoid (deaktiverer de fleste optimeringer) + + + + Borderless Windowed + Uindrammet Vindue + + + + Exclusive Fullscreen + Eksklusiv Fuld Skærm + + + + No Video Output + Ingen Video-Output + + + + CPU Video Decoding + CPU-Video Afkodning + + + + GPU Video Decoding (Default) + GPU-Video Afkodning (Standard) + + + + 0.75X (540p/810p) [EXPERIMENTAL] + 0,75X (540p/810p) [EKSPERIMENTEL] + + + + 1X (720p/1080p) + 1X (720p/1080p) + + + + 2X (1440p/2160p) + 2X (1440p/2160p) + + + + 3X (2160p/3240p) + 3X (2160p/3240p) + + + + 4X (2880p/4320p) + 4X (2880p/4320p) + + + + 5X (3600p/5400p) + 5X (3600p/5400p) + + + + 6X (4320p/6480p) + 6X (4320p/6480p) + + + + Nearest Neighbor + Nærmeste Nabo + + + + Bilinear + Bilineær + + + + Bicubic + Bikubisk + + + + Gaussian + Gausisk + + + + ScaleForce + ScaleForce + + + + None + Ingen + + + + FXAA + FXAA + + + + Default (16:9) + Standard (16:9) + + + + Force 4:3 + Tving 4:3 + + + + Force 21:9 + Tving 21:9 + + + + Stretch to Window + Stræk til Vindue + + + + + Default + Standard + + + + Amiibo editor + + + + + Controller configuration + + + + + Data erase + + + + + Error + + + + + Net connect + + + + + Player select + + + + + Software keyboard + + + + + Mii Edit + + + + + Online web + + + + + Shop + + + + + Photo viewer + + + + + Offline web + + + + + Login share + + + + + Wifi web auth + + + + + My page + + + + + Output Device: + + + + + Input Device: + + + + + Mute audio + + + + + This option increases CPU emulation thread use from 1 to the Switch’s maximum of 4. +This is mainly a debug option and shouldn’t be disabled. + + + + + Memory Layout + + + + + Increases the amount of emulated RAM from the stock 4GB of the retail Switch to the developer kit's 8/6GB. +It’s doesn’t improve stability or performance and is intended to let big texture mods fit in emulated RAM. +Enabling it will increase memory use. It is not recommended to enable unless a specific game with a texture mod needs it. + + + + + Controls the game's maximum rendering speed, but it’s up to each game if it runs faster or not. +200% for a 30 FPS game is 60 FPS, and for a 60 FPS game it will be 120 FPS. +Disabling it means unlocking the framerate to the maximum your PC can reach. + + + + + Synchronize Core Speed + + + + + Synchronizes CPU core speed with the game's maximum rendering speed to boost FPS without affecting game speed (animations, physics, etc.). +Compatibility varies by game; many (especially older ones) may not respond well. +Can help reduce stuttering at lower framerates. + + + + + This setting controls the accuracy of the emulated CPU. +Don't change this unless you know what you are doing. + + + + + + Backend: + + + + + Fast CPU Time + + + + + Overclocks the emulated CPU to remove some FPS limiters. Weaker CPUs may see reduced performance, and certain games may behave improperly. +Use Boost (1700MHz) to run at the Switch's highest native clock, or Fast (2000MHz) to run at 2x clock. + + + + + Custom CPU Ticks + + + + + Set a custom value of CPU ticks. Higher values can increase performance, but may also cause the game to freeze. A range of 77–21000 is recommended. + + + + + Enable Host MMU Emulation (fastmem) + + + + + This optimization speeds up memory accesses by the guest program. +Enabling it causes guest memory reads/writes to be done directly into memory and make use of Host's MMU. +Disabling this forces all memory accesses to use Software MMU Emulation. + + + + + This option improves speed by reducing accuracy of fused-multiply-add instructions on CPUs without native FMA support. + + + + + This option improves the speed of some approximate floating-point functions by using less accurate native approximations. + + + + + This option improves the speed of 32 bits ASIMD floating-point functions by running with incorrect rounding modes. + + + + + This option improves speed by removing NaN checking. +Please note this also reduces accuracy of certain floating-point instructions. + + + + + This option improves speed by eliminating a safety check before every memory read/write in guest. +Disabling it may allow a game to read/write the emulator's memory. + + + + + This option improves speed by relying only on the semantics of cmpxchg to ensure safety of exclusive access instructions. +Please note this may result in deadlocks and other race conditions. + + + + + Switches between the available graphics APIs. +Vulkan is recommended in most cases. + + + + + This setting selects the GPU to use with the Vulkan backend. + + + + + The shader backend to use for the OpenGL renderer. +GLSL is the fastest in performance and the best in rendering accuracy. +GLASM is a deprecated NVIDIA-only backend that offers much better shader building performance at the cost of FPS and rendering accuracy. +SPIR-V compiles the fastest, but yields poor results on most GPU drivers. + + + + + Forces the game to render at a different resolution. +Higher resolutions require much more VRAM and bandwidth. +Options lower than 1X can cause rendering issues. + + + + + FSR Sharpness: + + + + + Determines how sharpened the image will look while using FSR’s dynamic contrast. + + + + + The anti-aliasing method to use. +SMAA offers the best quality. +FXAA has a lower performance impact and can produce a better and more stable picture under very low resolutions. + + + + + The method used to render the window in fullscreen. +Borderless offers the best compatibility with the on-screen keyboard that some games request for input. +Exclusive fullscreen may offer better performance and better Freesync/Gsync support. + + + + + Stretches the game to fit the specified aspect ratio. +Switch games only support 16:9, so custom game mods are required to get other ratios. +Also controls the aspect ratio of captured screenshots. + + + + + Allows saving shaders to storage for faster loading on following game boots. +Disabling it is only intended for debugging. + + + + + Optimize SPIRV output shader + + + + + Runs an additional optimization pass over generated SPIRV shaders. +Will increase time required for shader compilation. +May slightly improve performance. +This feature is experimental. + + + + + Uses an extra CPU thread for rendering. +This option should always remain enabled. + + + + + Specifies how videos should be decoded. +It can either use the CPU or the GPU for decoding, or perform no decoding at all (black screen on videos). +In most cases, GPU decoding provides the best performance. + + + + + ASTC Decoding Method: + + + + + This option controls how ASTC textures should be decoded. +CPU: Use the CPU for decoding, slowest but safest method. +GPU: Use the GPU's compute shaders to decode ASTC textures, recommended for most games and users. +CPU Asynchronously: Use the CPU to decode ASTC textures as they arrive. Completely eliminates ASTC decoding +stuttering at the cost of rendering issues while the texture is being decoded. + + + + + ASTC Recompression Method: + + + + + Almost all desktop and laptop dedicated GPUs lack support for ASTC textures, forcing the emulator to decompress to an intermediate format any card supports, RGBA8. +This option recompresses RGBA8 to either the BC1 or BC3 format, saving VRAM but negatively affecting image quality. + + + + + VRAM Usage Mode: + + + + + Selects whether the emulator should prefer to conserve memory or make maximum usage of available video memory for performance. +Aggressive mode may severely impact the performance of other applications such as recording software. + + + + + Skip CPU Inner Invalidation + + + + + Skips certain CPU-side cache invalidations during memory updates, reducing CPU usage and improving it's performance. This may cause glitches or crashes on some games. + + + + + VSync Mode: + + + + + FIFO (VSync) does not drop frames or exhibit tearing but is limited by the screen refresh rate. +FIFO Relaxed is similar to FIFO but allows tearing as it recovers from a slow down. +Mailbox can have lower latency than FIFO and does not tear but may drop frames. +Immediate (no synchronization) just presents whatever is available and can exhibit tearing. + + + + + Sync Memory Operations + + + + + Ensures data consistency between compute and memory operations. +This option should fix issues in some games, but may also reduce performance in some cases. +Unreal Engine 4 games often see the most significant changes thereof. + + + + + Enable asynchronous presentation (Vulkan only) + + + + + Slightly improves performance by moving presentation to a separate CPU thread. + + + + + Force maximum clocks (Vulkan only) + + + + + Runs work in the background while waiting for graphics commands to keep the GPU from lowering its clock speed. + + + + + Controls the quality of texture rendering at oblique angles. +It’s a light setting and safe to set at 16x on most GPUs. + + + + + GPU Accuracy: + + + + + Controls the GPU emulation accuracy. +Most games render fine with Normal, but High is still required for some. +Particles tend to only render correctly with High accuracy. +Extreme should only be used as a last resort. + + + + + DMA Accuracy: + + + + + Controls the DMA precision accuracy. Safe precision can fix issues in some games, but it can also impact performance in some cases. +If unsure, leave this on Default. + + + + + Enables asynchronous shader compilation, which may reduce shader stutter. +This feature is experimental. + + + + + Fast GPU Time (Hack) + + + + + Overclocks the emulated GPU to increase dynamic resolution and render distance. +Use 128 for maximal performance and 512 for maximal graphics fidelity. + + + + Use Vulkan pipeline cache - + Enables GPU vendor-specific pipeline cache. This option can improve shader loading time significantly in cases where the Vulkan driver does not store pipeline cache files internally. - + Enable Compute Pipelines (Intel Vulkan Only) - + Enable compute pipelines, required by some games. This setting only exists for Intel proprietary drivers, and may crash if enabled. Compute pipelines are always enabled on all other drivers. - + Enable Reactive Flushing - + Uses reactive flushing instead of predictive flushing, allowing more accurate memory syncing. - + Sync to framerate of video playback - + Run the game at normal speed during video playback, even when the framerate is unlocked. - + Barrier feedback loops - + Improves rendering of transparency effects in specific games. - - RNG Seed - RNG-Seed + + RAII + - + + A method of automatic resource management in Vulkan that ensures proper release of resources when they are no longer needed, but may cause crashes in bundled games. + + + + + Extended Dynamic State + + + + + Controls the number of features that can be used in Extended Dynamic State. +Higher numbers allow for more features and can increase performance, but may cause issues with some drivers and vendors. +The default value may vary depending on your system and hardware capabilities. +This value can be changed until stability and a better visual quality are achieved. + + + + + Provoking Vertex + + + + + Improves lighting and vertex handling in certain games. +Only Vulkan 1.0+ devices support this extension. + + + + + Descriptor Indexing + + + + + Improves texture & buffer handling and the Maxwell translation layer. +Some Vulkan 1.1+ and all 1.2+ devices support this extension. + + + + + Sample Shading + + + + + Allows the fragment shader to execute per sample in a multi-sampled fragment instead once per fragment. Improves graphics quality at the cost of some performance. +Higher values improve quality more but also reduce performance to a greater extent. + + + + Controls the seed of the random number generator. Mainly used for speedrunning purposes. - + Device Name - + The name of the emulated Switch. - + Custom RTC Date: - + This option allows to change the emulated clock of the Switch. Can be used to manipulate time in games. - + Language: - - Note: this can be overridden when region setting is auto-select - Bemærk: Dette kan overskrives, når regionsindstillinger er sat til automatisk valg - - - - Region: - Region - - - + The region of the emulated Switch. - - Time Zone: - Tidszone - - - + The time zone of the emulated Switch. - + Sound Output Mode: - + Console Mode: - + Selects if the console is emulated in Docked or Handheld mode. Games will change their resolution, details and supported controllers and depending on this setting. Setting to Handheld can help improve performance for low end systems. - - Prompt for user on game boot - Spørg efter bruger, ved opstart af spil - - - - Pause emulation when in background - Sæt emulering på pause, når i baggrund - - - - Fast GPU Time (Hack) + + Ask to select a user profile on each boot, useful if multiple people use Eden on the same PC. - - Overclocks the emulated GPU to increase dynamic resolution and render distance. -Use 128 for maximal performance and 512 for maximal graphics fidelity. + + This setting pauses Eden when focusing other windows. - - Extended Dynamic State - - - - - Enables the VkExtendedDynamicState* extensions. -Higher dynamic states will generally improve performance, but may cause issues on certain games or devices. - - - - - Provoking Vertex - - - - - Improves lighting and vertex handling in certain games. -Only Vulkan 1.0+ devices support this extension. - - - - - Descriptor Indexing - - - - - Improves texture & buffer handling and the Maxwell translation layer. -Some Vulkan 1.1+ and all 1.2+ devices support this extension. - - - - - Ask to select a user profile on each boot, useful if multiple people use eden on the same PC. - - - - - This setting pauses eden when focusing other windows. - - - - + Confirm before stopping emulation - + This setting overrides game prompts asking to confirm stopping the game. Enabling it bypasses such prompts and directly exits the emulation. - - Hide mouse on inactivity - Skjul mus ved inaktivitet - - - + This setting hides the mouse after 2.5s of inactivity. - + Disable controller applet - + Forcibly disables the use of the controller applet by guests. When a guest attempts to open the controller applet, it is immediately closed. - + Check for updates - + Whether or not to check for updates upon startup. - + Enable Gamemode - + Custom frontend - + Real applet - + Never - + On Load - + Always - - CPU - CPU - - - + GPU - + CPU Asynchronous - + Uncompressed (Best quality) - + BC1 (Low quality) - + BC3 (Medium quality) - + Conservative - + Aggressive - + OpenGL - + Vulkan - + Null - + GLSL - - GLASM (Assembly Shaders, NVIDIA Only) - GLASM (Assembly-Shadere, kun NVIDIA) - - - + SPIR-V (Experimental, AMD/Mesa Only) - + Normal - + High - + Extreme - - Auto - Automatisk + + Unsafe (fast) + - - Accurate - Nøjagtig + + Safe (stable) + - - Unsafe - Usikker - - - - Paranoid (disables most optimizations) - Paranoid (deaktiverer de fleste optimeringer) - - - + Dynarmic - + NCE - - Borderless Windowed - Uindrammet Vindue - - - - Exclusive Fullscreen - Eksklusiv Fuld Skærm - - - - No Video Output - Ingen Video-Output - - - - CPU Video Decoding - CPU-Video Afkodning - - - - GPU Video Decoding (Default) - GPU-Video Afkodning (Standard) - - - + 0.25X (180p/270p) [EXPERIMENTAL] - + 0.5X (360p/540p) [EXPERIMENTAL] - - 0.75X (540p/810p) [EXPERIMENTAL] - 0,75X (540p/810p) [EKSPERIMENTEL] - - - - 1X (720p/1080p) - 1X (720p/1080p) - - - + 1.5X (1080p/1620p) [EXPERIMENTAL] - - 2X (1440p/2160p) - 2X (1440p/2160p) - - - - 3X (2160p/3240p) - 3X (2160p/3240p) - - - - 4X (2880p/4320p) - 4X (2880p/4320p) - - - - 5X (3600p/5400p) - 5X (3600p/5400p) - - - - 6X (4320p/6480p) - 6X (4320p/6480p) - - - + 7X (5040p/7560p) - + 8X (5760p/8640p) - - Nearest Neighbor - Nærmeste Nabo - - - - Bilinear - Bilineær - - - - Bicubic - Bikubisk - - - - Gaussian - Gausisk - - - - ScaleForce - ScaleForce - - - + AMD FidelityFX™️ Super Resolution - + Area - - None - Ingen - - - - FXAA - FXAA - - - + SMAA - - Default (16:9) - Standard (16:9) - - - - Force 4:3 - Tving 4:3 - - - - Force 21:9 - Tving 21:9 - - - + Force 16:10 - - Stretch to Window - Stræk til Vindue - - - + Automatic - - Default - Standard - - - + 2x - + 4x - + 8x - + 16x - + Japanese (日本語) Japansk (日本語) - + American English - + French (français) Fransk (français) - + German (Deutsch) Tysk (Deutsch) - + Italian (italiano) Italiensk (italiano) - + Spanish (español) Spansk (español) - + Chinese Kinesisk - + Korean (한국어) Koreansk (한국어) - + Dutch (Nederlands) Hollandsk (Nederlands) - + Portuguese (português) Portugisisk (português) - + Russian (Русский) Russisk (Русский) - + Taiwanese Taiwanesisk - + British English Britisk Engelsk - + Canadian French Candadisk Fransk - + Latin American Spanish Latinamerikansk Spansk - + Simplified Chinese Forenklet Kinesisk - + Traditional Chinese (正體中文) Traditionelt Kinesisk (正體中文) - + Brazilian Portuguese (português do Brasil) Braziliansk Portugisisk (português do Brasil) - - + + Serbian (српски) + + + + + Japan Japan - + USA USA - + Europe Europa - + Australia Australien - + China Kina - + Korea Korea - + Taiwan Taiwan - + Auto (%1) Auto select time zone - + Default (%1) Default time zone - + CET CET - + CST6CDT CST6CDT - + Cuba Cuba - + EET EET - + Egypt Ægypten - + Eire Eire - + EST EST - + EST5EDT EST5EDT - + GB GB - + GB-Eire GB-Eire - + GMT GMT - + GMT+0 GMT+0 - + GMT-0 GMT-0 - + GMT0 GMT0 - + Greenwich Greenwich - + Hongkong Hongkong - + HST HST - + Iceland Island - + Iran Iran - + Israel Israel - + Jamaica Jamaica - + Kwajalein Kwajalein - + Libya Libyen - + MET MET - + MST MST - + MST7MDT MST7MDT - + Navajo Navajo - + NZ NZ - + NZ-CHAT NZ-CHAT - + Poland Polen - + Portugal Portugal - + PRC PRC - + PST8PDT PST8PDT - + ROC ROC - + ROK ROK - + Singapore Singapore - + Turkey Tyrkiet - + UCT UCT - + Universal Universel - + UTC UTC - + W-SU W-SU - + WET WET - + Zulu Zulu - + Mono Mono - + Stereo Stereo - + Surround Surround - + 4GB DRAM (Default) - + 6GB DRAM (Unsafe) - + 8GB DRAM - + 10GB DRAM (Unsafe) - + 12GB DRAM (Unsafe) - - Low (128) - - - - - Medium (256) - - - - - High (512) - - - - + Docked Dokket - + Handheld Håndholdt - + Boost (1700MHz) - + Fast (2000MHz) - + Always ask (Default) - + Only if game specifies not to stop - + Never ask + + + Low (128) + + + + + Medium (256) + + + + + High (512) + + ConfigureApplets @@ -2265,27 +2362,27 @@ When a guest attempts to open the controller applet, it is immediately closed.Logføring - + Open Log Location Åbn Logplacering - + Global Log Filter Globalt Logfilter - + When checked, the max size of the log increases from 100 MB to 1 GB Når valgt, øges loggens maksimale størrelse fra 100 MB til 1 GB - + Enable Extended Logging** Aktivér Udvidet Logning** - + Show Log in Console Vis Log i Konsol @@ -2431,7 +2528,7 @@ When a guest attempts to open the controller applet, it is immediately closed. - **This will be reset automatically when eden closes. + **This will be reset automatically when Eden closes. @@ -2493,7 +2590,7 @@ When a guest attempts to open the controller applet, it is immediately closed.**Dette vil automatisk blive nulstillet, når yuzu lukkes. - + Web applet not compiled Net-applet ikke kompileret @@ -2543,7 +2640,7 @@ When a guest attempts to open the controller applet, it is immediately closed. - eden Configuration + Eden Configuration @@ -2552,88 +2649,88 @@ When a guest attempts to open the controller applet, it is immediately closed. - + Applets - - + + Audio Lyd - - + + CPU CPU - + Debug Fejlfind - + Filesystem Filsystem - - + + General Generelt - - + + Graphics Grafik - + GraphicsAdvanced GrafikAvanceret - + GraphicsExtensions - + Hotkeys Genvejstaster - - + + Controls Styring - + Profiles Profiler - + Network Netværk - - + + System System - + Game List Spilliste - + Web Net @@ -2731,51 +2828,45 @@ When a guest attempts to open the controller applet, it is immediately closed. - - - Reset Metadata Cache Nulstil Metadata-Mellemlager - + Select Emulated NAND Directory... Vælg Emuleret NAND-Mappe... - + Select Emulated SD Directory... Vælg Emuleret SD-Mappe... - + Select Gamecard Path... Vælg Spilkort-Sti... - + Select Dump Directory... Vælg Nedfældningsmappe... - + Select Mod Load Directory... Vælg Mod-Indlæsningsmappe... - The metadata cache is already empty. - Metadata-mellemlageret er allerede tomt. + Metadata-mellemlageret er allerede tomt. - The operation completed successfully. - Fuldførelse af opgaven lykkedes. + Fuldførelse af opgaven lykkedes. - The metadata cache couldn't be deleted. It might be in use or non-existent. - Metadata-mellemlageret kunne ikke slettes. Det kan være i brug eller ikke-eksisterende. + Metadata-mellemlageret kunne ikke slettes. Det kan være i brug eller ikke-eksisterende. @@ -2806,12 +2897,12 @@ When a guest attempts to open the controller applet, it is immediately closed.yuzu - - eden + + Eden - + This reset all settings and remove all per-game configurations. This will not delete game directories, profiles, or input profiles. Proceed? dette nulstiller alle indstillinger og fjerner alle pr-spil-konfigurationer. Dette vil ikke slette spilmapper, -profiler, eller input-profiler. Fortsæt? @@ -2844,33 +2935,33 @@ When a guest attempts to open the controller applet, it is immediately closed.Baggrundsfarve: - + % FSR sharpening percentage (e.g. 50%) % - + Off - + VSync Off - + Recommended - + On - + VSync On @@ -2907,14 +2998,18 @@ When a guest attempts to open the controller applet, it is immediately closed. - Vulkan Extension Settings + Vulkan Extensions Settings - - While it's recommended to use state 3, some games may perform better on lower states. Setting to 0 (disabled) may also break games. -If your GPU is older (i.e. RX570/580 or older), it may not support these features. If this is the case, set the slider to 0 and uncheck all boxes. -These settings are experimental, and may cause black screens. If your games fail to boot or are stuck on a black screen, change these settings around. + + % + Sample Shading percentage (e.g. 50%) + % + + + + Extended Dynamic State is disabled on macOS due to MoltenVK compatibility issues that cause black screens. @@ -2946,75 +3041,75 @@ These settings are experimental, and may cause black screens. If your games fail Gendan Standarder - + Action Handling - + Hotkey Genvejstast - + Controller Hotkey - - - + + + Conflicting Key Sequence Modstridende Tastesekvens - - + + The entered key sequence is already assigned to: %1 Den indtastede tastesekvens er allerede tilegnet: %1 - + [waiting] [venter] - + Invalid - + Invalid hotkey settings - + An error occurred. Please report this issue on github. - + Restore Default Gendan Standard - + Clear Ryd - + Conflicting Button Sequence - + The default button sequence is already assigned to: %1 - + The default key sequence is already assigned to: %1 Standard-tastesekvensen er allerede tilegnet: %1 @@ -3334,7 +3429,7 @@ These settings are experimental, and may cause black screens. If your games fail - Requires restarting eden + Requires restarting Eden @@ -3489,7 +3584,7 @@ These settings are experimental, and may cause black screens. If your games fail - + Left Stick Venstre Styrepind @@ -3599,14 +3694,14 @@ These settings are experimental, and may cause black screens. If your games fail - + L L - + ZL ZL @@ -3625,7 +3720,7 @@ These settings are experimental, and may cause black screens. If your games fail - + Plus Plus @@ -3638,15 +3733,15 @@ These settings are experimental, and may cause black screens. If your games fail - - + + R R - + ZR ZR @@ -3691,7 +3786,7 @@ These settings are experimental, and may cause black screens. If your games fail - + Right Stick Højre Styrepind @@ -3706,242 +3801,242 @@ These settings are experimental, and may cause black screens. If your games fail Konfigurér - - - - + + + + Clear Ryd - - - - - + + + + + [not set] [ikke indstillet] - - - + + + Invert button - - + + Toggle button Funktionsskifteknap - + Turbo button - - + + Invert axis Omvend akser - - - + + + Set threshold Angiv tærskel - - + + Choose a value between 0% and 100% Vælg en værdi imellem 0% og 100% - + Toggle axis - + Set gyro threshold - + Calibrate sensor - + Map Analog Stick Tilsted Analog Pind - + After pressing OK, first move your joystick horizontally, and then vertically. To invert the axes, first move your joystick vertically, and then horizontally. Bevæg, efter tryk på OK, først din styrepind vandret og så lodret. Bevæg, for at omvende akserne, først din styrepind lodret og så vandret. - + Center axis - - + + Deadzone: %1% Dødzone: %1% - - + + Modifier Range: %1% Forandringsrækkevidde: %1% - - + + Pro Controller Pro-Styringsenhed - + Dual Joycons Dobbelt-Joycon - + Left Joycon Venstre Joycon - + Right Joycon Højre Joycon - + Handheld Håndholdt - + GameCube Controller GameCube-Styringsenhed - + Poke Ball Plus - + NES Controller - + SNES Controller - + N64 Controller - + Sega Genesis - + Start / Pause Start / Pause - + Z Z - + Control Stick Styrepind - + C-Stick C-Pind - + Shake! Ryst! - + [waiting] [venter] - + New Profile Ny Profil - + Enter a profile name: Indtast et profilnavn: - - + + Create Input Profile Opret Input-Profil - + The given profile name is not valid! Det angivne profilnavn er ikke gyldigt! - + Failed to create the input profile "%1" Oprettelse af input-profil "%1" mislykkedes - + Delete Input Profile Slet Input-Profil - + Failed to delete the input profile "%1" Sletning af input-profil "%1" mislykkedes - + Load Input Profile Indlæs Input-Profil - + Failed to load the input profile "%1" Indlæsning af input-profil "%1" mislykkedes - + Save Input Profile Gem Input-Profil - + Failed to save the input profile "%1" Lagring af input-profil "%1" mislykkedes @@ -3998,7 +4093,7 @@ Bevæg, for at omvende akserne, først din styrepind lodret og så vandret. - + Configure Konfigurér @@ -4034,7 +4129,7 @@ Bevæg, for at omvende akserne, først din styrepind lodret og så vandret. - + Test Afprøv @@ -4053,7 +4148,7 @@ Bevæg, for at omvende akserne, først din styrepind lodret og så vandret.<a href='https://yuzu-emu.org/wiki/using-a-controller-or-android-phone-for-motion-or-touch-input'><span style="text-decoration: underline; color:#039be5;">Find Ud Af Mere</span></a> - + %1:%2 %1:%2 @@ -4062,77 +4157,77 @@ Bevæg, for at omvende akserne, først din styrepind lodret og så vandret.yuzu - + <a href='https://eden-emulator.github.io/wiki/using-a-controller-or-android-phone-for-motion-or-touch-input'><span style="text-decoration: underline; color:#039be5;">Learn More</span></a> - + Port number has invalid characters Portnummer indeholder ugyldige tegn - - - - - - - eden + + + + + + + Eden - + Port has to be in range 0 and 65353 Port skal være imellem 0 and 65353 - + IP address is not valid IP-adresse er ikke gyldig - + This UDP server already exists Denne UDP-server eksisterer allerede - + Unable to add more than 8 servers Ude af stand til, at tilføje mere end 8 servere - + Testing Afprøvning - + Configuring Konfigurér - + Test Successful Afprøvning Lykkedes - + Successfully received data from the server. Modtagelse af data fra serveren lykkedes. - + Test Failed Afprøvning Mislykkedes - + 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>Bekræft venligst, at serveren er opsat korrekt, og at adressen og porten er korrekte. - + UDP Test or calibration configuration is in progress.<br>Please wait for them to finish. UDP-Afprøvnings- eller -kalibreringskonfiguration er i gang.<br>vent venligst på, at de bliver færdige. @@ -4258,7 +4353,12 @@ Current values are %1% and %2% respectively. Netværksgrænseflade - + + Enable Airplane Mode + + + + None Ingen @@ -4316,52 +4416,52 @@ Current values are %1% and %2% respectively. - + Add-Ons Tilføjelser - + System System - + CPU CPU - + Graphics Grafik - + Adv. Graphics - + GPU Extensions - + Audio Lyd - + Input Profiles - + Linux - + Properties Egenskaber @@ -4379,12 +4479,12 @@ Current values are %1% and %2% respectively. Tilføjelser - + Patch Name Lap-Navn - + Version Version @@ -4422,27 +4522,32 @@ Current values are %1% and %2% respectively. Angiv Billede - + + Select Avatar + + + + Add Tilføj - + Rename Omdøb - + Remove Fjern - + Profile management is available only when game is not running. Profilhåndtering er kun tilgængelig, når spil ikke kører. - + %1 %2 %1 is the profile username, %2 is the formatted UUID (e.g. 00112233-4455-6677-8899-AABBCCDDEEFF)) @@ -4450,100 +4555,181 @@ Current values are %1% and %2% respectively. %2 - + Enter Username Indtast Brugernavn - + Users Brugere - + Enter a username for the new user: Indtast et brugernavn for den nye bruger: - + Enter a new username: Indtast et nyt brugernavn: - + + Error saving user image + + + + + Unable to save image to file + + + + Select User Image Vælg Brugerbillede - - JPEG Images (*.jpg *.jpeg) - JPEG-Billeder (*.jpg *.jpeg) + + Image Formats (*.jpg *.jpeg *.png *.bmp) + - + + No firmware available + + + + + Please install the firmware to use firmware avatars. + + + + + + Error loading archive + + + + + Archive is not available. Please install/reinstall firmware. + + + + + Archive does not contain romfs. It is probably corrupt. + + + + + Error extracting archive + + + + + Archive could not be extracted. It is probably corrupt. + + + + + Error finding image directory + + + + + Failed to find image directory in the archive. + + + + + No images found + + + + + No avatar images were found in the archive. + + + + JPEG Images (*.jpg *.jpeg) + JPEG-Billeder (*.jpg *.jpeg) + + + Error deleting image Fejl ved sletning af billede - + Error occurred attempting to overwrite previous image at: %1. Der skete en fejl, ved forsøg på at overskrive forrige billede på: %1. - + Error deleting file Fejl ved sletning af fil - + Unable to delete existing file: %1. Kan ikke slette eksisterende fil: %1. - + Error creating user image directory Fejl ved oprettelse af brugerbillede-mappe - + Unable to create directory %1 for storing user images. Ude af stand til, at oprette mappe %1, til lagring af brugerbilleder. - Error copying user image - Fejl ved kopiering af brugerbillede + Fejl ved kopiering af brugerbillede - Unable to copy image from %1 to %2 - Ude af stand til, at kopiere billede fra %1 til %2 + Ude af stand til, at kopiere billede fra %1 til %2 + + + ConfigureProfileManagerAvatarDialog - - Error resizing user image + + Select - - Unable to resize image + + Cancel + Afbryd + + + + Background Color + + + + + Select Firmware Avatar ConfigureProfileManagerDeleteDialog - + Delete this user? All of the user's save data will be deleted. - + Confirm Delete Bekræft Slet - + Name: %1 UUID: %2 @@ -4595,7 +4781,7 @@ UUID: %2 - + Enable @@ -4606,7 +4792,7 @@ UUID: %2 - + Not connected @@ -4616,63 +4802,63 @@ UUID: %2 Gendan Standarder - + Clear Ryd - + [not set] [ikke indstillet] - + Invert axis Omvend akser - - + + Deadzone: %1% Dødzone: %1% - + Error enabling ring input - + Direct Joycon driver is not enabled - + Configuring Konfigurér - + The current mapped device doesn't support the ring controller - + The current mapped device doesn't have a ring attached - + The current mapped device is not connected - + Unexpected driver result %1 - + [waiting] [venter] @@ -4714,7 +4900,7 @@ UUID: %2 - <html><head/><body><p>Reads controller input from scripts in the same format as TAS-nx scripts.<br/>For a more detailed explanation, please consult the <a href="https://eden-emulator.github.io/help/feature/tas/"><span style=" text-decoration: underline; color:#039be5;">help page</span></a> on the eden website.</p></body></html> + <html><head/><body><p>Reads controller input from scripts in the same format as TAS-nx scripts.<br/>For a more detailed explanation, please consult the <a href="https://eden-emulator.github.io/help/feature/tas/"><span style=" text-decoration: underline; color:#039be5;">help page</span></a> on the Eden website.</p></body></html> @@ -4766,12 +4952,12 @@ UUID: %2 ConfigureTasDialog - + TAS Configuration TAS-Konfiguration - + Select TAS Load Directory... Vælg TAS-Indlæsningsmappe... @@ -4881,7 +5067,7 @@ Træk punkter, for at skifte position, eller dobbeltklik i tabelceller, for at r - Warning: The settings in this page affect the inner workings of eden's emulated touchscreen. Changing them may result in undesirable behavior, such as the touchscreen partially or not working. You should only use this page if you know what you are doing. + Warning: The settings in this page affect the inner workings of Eden's emulated touchscreen. Changing them may result in undesirable behavior, such as the touchscreen partially or not working. You should only use this page if you know what you are doing. @@ -5201,6 +5387,16 @@ Træk punkter, for at skifte position, eller dobbeltklik i tabelceller, for at r Web Net + + + Eden Web Service + + + + + Generate + + yuzu Web Service yuzu-Nettjeneste @@ -5210,42 +5406,29 @@ Træk punkter, for at skifte position, eller dobbeltklik i tabelceller, for at r Ved at give dit brugernavn og token, accepterer du, at tillade yuzu, at indsamle yderligere brugsdata, hvilket kan inkludere brugeridentificerende oplysninger. - - eden Web Service - - - - - By providing your username and token, you agree to allow eden to collect additional usage data, which may include user identifying information. - - - - Verify - Bekræft + Bekræft - Sign up - Tilmeld dig + Tilmeld dig - + Token: Token: - + Username: Brugernavn: - What is my token? - Hvad er mit token? + Hvad er mit token? - + Web Service configuration can only be changed when a public room isn't being hosted. @@ -5270,12 +5453,12 @@ Træk punkter, for at skifte position, eller dobbeltklik i tabelceller, for at r Regenerér - + Discord Presence Tilstedeværelse på Discord - + Show Current Game in your Discord Status Vis Aktuelt Spil i din Discord-Status @@ -5284,24 +5467,8 @@ Træk punkter, for at skifte position, eller dobbeltklik i tabelceller, for at r <a href='https://yuzu-emu.org/help/feature/telemetry/'><span style="text-decoration: underline; color:#039be5;">Find ud af mere</span></a> - <a href='https://profile.yuzu-emu.org/'><span style="text-decoration: underline; color:#039be5;">Sign up</span></a> - <a href='https://profile.yuzu-emu.org/'><span style="text-decoration: underline; color:#039be5;">Tilmeld dig</span></a> - - - - <a href='https://evilperson1337.notion.site/Hosting-a-Room-Inside-of-Eden-20457c2edaf680108abac6215a79acdb'><span style="text-decoration: underline; color:#039be5;">What is my token?</span></a> - - - - - Warning - - - - - Verification is currently nonfunctional, instead generate a random 48-character string with only lowercase a-z. - + <a href='https://profile.yuzu-emu.org/'><span style="text-decoration: underline; color:#039be5;">Tilmeld dig</span></a> <a href='https://yuzu-emu.org/wiki/yuzu-web-service/'><span style="text-decoration: underline; color:#039be5;">What is my token?</span></a> @@ -5323,12 +5490,6 @@ Træk punkter, for at skifte position, eller dobbeltklik i tabelceller, for at r Token was not verified. The change to your token has not been saved. Token blev ikke bekræftet. Ændringen af dit token er ikke blevet gemt. - - - Unverified, please click Verify before saving configuration - Tooltip - - Verifying... Bekræfter... @@ -5346,20 +5507,67 @@ Træk punkter, for at skifte position, eller dobbeltklik i tabelceller, for at r Verification failed. Check that you have entered your token correctly, and that your internet connection is working. Bekræftelse mislykkedes. Kontrollér at du har indtastet dit token korrekt, og at din internetforbindelse virker. + + + + All Good + Tooltip + + + + + Must be between 4-20 characters + Tooltip + + + + + Must be 48 characters, and lowercase a-z + Tooltip + + ControllerDialog - + Controller P1 Styringsenhed P1 - + &Controller P1 &Styringsenhed P1 + + DepsDialog + + + Eden Dependencies + + + + + <html><head/><body><p><span style=" font-size:28pt;">Eden Dependencies</span></p></body></html> + + + + + <html><head/><body><p>The projects that make Eden possible</p></body></html> + + + + + Dependency + + + + + Version + Version + + DirectConnect @@ -5465,7 +5673,12 @@ Træk punkter, for at skifte position, eller dobbeltklik i tabelceller, for at r - Creating a room failed. Please retry. Restarting eden might be necessary. + Creating a room failed. Please retry. Restarting Eden might be necessary. + + + + + Version mismatch! Please update to the latest version of Eden. If the problem persists, contact the room host and ask them to update the server. @@ -5473,11 +5686,6 @@ Træk punkter, for at skifte position, eller dobbeltklik i tabelceller, for at r 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 eden. If the problem persists, contact the room host and ask them to update the server. - - Incorrect password. @@ -5537,583 +5745,362 @@ Please go to Configure -> System -> Network and make a selection. Telemetri - + Broken Vulkan Installation Detected - + Running a game TRANSLATORS: This string is shown to the user to explain why yuzu needs to prevent the computer from sleeping - + Loading Web Applet... Indlæser Net-Applet... - - + + Disable Web Applet Deaktivér Net-Applet - + Disabling the web applet can lead to undefined behavior and should only be used with Super Mario 3D All-Stars. Are you sure you want to disable the web applet? (This can be re-enabled in the Debug settings.) - + The amount of shaders currently being built - + The current selected resolution scaling multiplier. - + Current emulation speed. Values higher or lower than 100% indicate emulation is running faster or slower than a Switch. Aktuel emuleringshastighed. Værdier højere eller lavere end 100% indikerer, at emulering kører hurtigere eller langsommere end en Switch. - + 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 Switch frame, not counting framelimiting or v-sync. For full-speed emulation this should be at most 16.67 ms. - + Unmute - + Mute - + Reset Volume - + &Clear Recent Files - + &Continue - + &Pause - Warning Outdated Game Format - Advarsel, Forældet Spilformat + Advarsel, Forældet Spilformat - - + + Error while loading ROM! Fejl under indlæsning af ROM! - + The ROM format is not supported. ROM-formatet understøttes ikke. - + An error occurred initializing the video core. Der skete en fejl under initialisering af video-kerne. - + Error while loading ROM! %1 %1 signifies a numeric error code. - + Vulkan initialization failed during boot.<br><br>Click <a href='https://eden-emulator.github.io/wiki/faq/#yuzu-starts-with-the-error-broken-vulkan-installation-detected'>here for instructions to fix the issue</a>. - - Game Updates Warning - - - - - The game you are trying to launch is known to have performance or booting issues when updates are applied. Please try increasing the memory layout to 6GB or 8GB if any issues occur.<br><br>Press "OK" to continue launching, or "Cancel" to cancel the launch. - - - - - Don't show again for this game - - - - - You are using the deconstructed ROM directory format for this game, which is an outdated format that has been superseded by others such as NCA, NAX, XCI, or NSP. Deconstructed ROM directories lack icons, metadata, and update support.<br><br>For an explanation of the various Switch formats eden supports, <a href='https://eden-emulator.github.io/wiki/overview-of-switch-game-formats'>check out our wiki</a>. This message will not be shown again. - - - - - eden has encountered an error while running the video core. This is usually caused by outdated GPU drivers, including integrated ones. Please see the log for more details. For more information on accessing the log, please see the following page: <a href='https://eden-emulator.github.io/help/reference/log-files/'>How to Upload the Log File</a>. - - - - - %1<br>Please redump your files or ask on Discord for help. - %1 signifies an error string. - - - - + An unknown error occurred. Please see the log for more details. - + (64-bit) - + (32-bit) - + %1 %2 %1 is the title name. %2 indicates if the title is 64-bit or 32-bit - + Closing software... - + Save Data - + Mod Data - + Error Opening %1 Folder Fejl ved Åbning af %1 Mappe - - + + Folder does not exist! Mappe eksisterer ikke! - - Error Opening Transferable Shader Cache - - - - - Failed to create the shader cache directory for this title. - - - - - Error Removing Contents - - - - - Error Removing Update - - - - - Error Removing DLC - - - - + Remove Installed Game Contents? - + Remove Installed Game Update? - + Remove Installed Game DLC? - + Remove Entry - - - - - - - Successfully Removed - - - - - Successfully removed the installed base game. - - - - - The base game is not installed in the NAND and cannot be removed. - - - - - Successfully removed the installed update. - - - - - There is no update installed for this title. - - - - - There are no DLC installed for this title. - - - - - Successfully removed %1 installed DLC. - - - - + Delete OpenGL Transferable Shader Cache? - + Delete Vulkan Transferable Shader Cache? - + Delete All Transferable Shader Caches? - + Remove Custom Game Configuration? - + Remove Cache Storage? - + Remove File - + Remove Play Time Data - + Reset play time? - - - Error Removing Transferable Shader Cache - - - + - - A shader cache for this title does not exist. - - - - - Successfully removed the transferable shader cache. - - - - - Failed to remove the transferable shader cache. - - - - - Error Removing Vulkan Driver Pipeline Cache - - - - - Failed to remove the driver pipeline cache. - - - - - - Error Removing Transferable Shader Caches - - - - - Successfully removed the transferable shader caches. - - - - - Failed to remove the transferable shader cache directory. - - - - - - Error Removing Custom Configuration - - - - - A custom configuration for this title does not exist. - - - - - Successfully removed the custom game configuration. - - - - - Failed to remove the custom game configuration. - - - - - RomFS Extraction Failed! RomFS-Udpakning Mislykkedes! - + There was an error copying the RomFS files or the user cancelled the operation. Der skete en fejl ved kopiering af RomFS-filerne, eller brugeren afbrød opgaven. - + Full Fuld - + Skeleton Skelet - + Select RomFS Dump Mode Vælg RomFS-Nedfældelsestilstand - + Please select the how you would like the RomFS dumped.<br>Full will copy all of the files into the new directory while <br>skeleton will only create the directory structure. - + There is not enough free space at %1 to extract the RomFS. Please free up space or select a different dump directory at Emulation > Configure > System > Filesystem > Dump Root - + Extracting RomFS... Udpakker RomFS... - - - - - + + Cancel Afbryd - + RomFS Extraction Succeeded! RomFS-Udpakning Lykkedes! - - - + The operation completed successfully. Fuldførelse af opgaven lykkedes. - - Integrity verification couldn't be performed! + + Warning: Outdated Game Format - - File contents were not checked for validity. + + You are using the deconstructed ROM directory format for this game, which is an outdated format that has been superseded by others such as NCA, NAX, XCI, or NSP. Deconstructed ROM directories lack icons, metadata, and update support.<br><br>For an explanation of the various Switch formats Eden supports, <a href='https://eden-emulator.github.io/wiki/overview-of-switch-game-formats'>check out our wiki</a>. This message will not be shown again. - - - Verifying integrity... + + Eden has encountered an error while running the video core. This is usually caused by outdated GPU drivers, including integrated ones. Please see the log for more details. For more information on accessing the log, please see the following page: <a href='https://yuzu-mirror.github.io/help/reference/log-files/'>How to Upload the Log File</a>. - - - Integrity verification succeeded! + + %1<br>Please redump your files or ask on Discord/Revolt for help. + %1 signifies an error string. - - - Integrity verification failed! - - - - - File contents may be corrupt. - - - - - - - - Create Shortcut - - - - - Do you want to launch the game in fullscreen? - - - - - Successfully created a shortcut to %1 - - - - - This will create a shortcut to the current AppImage. This may not work well if you update. Continue? - - - - - Failed to create a shortcut to %1 - - - - - Create Icon - - - - - Cannot create icon file. Path "%1" does not exist and cannot be created. - - - - + Error Opening %1 Fejl ved Åbning af %1 - + Select Directory Vælg Mappe - + Properties Egenskaber - + The game properties could not be loaded. Spil-egenskaberne kunne ikke indlæses. - + Switch Executable (%1);;All Files (*.*) %1 is an identifier for the Switch executable file extensions. Switch-Eksekverbar (%1);;Alle filer (*.*) - + Load File Indlæs Fil - + Open Extracted ROM Directory Åbn Udpakket ROM-Mappe - + Invalid Directory Selected Ugyldig Mappe Valgt - + The directory you have selected does not contain a 'main' file. - + Installable Switch File (*.nca *.nsp *.xci);;Nintendo Content Archive (*.nca);;Nintendo Submission Package (*.nsp);;NX Cartridge Image (*.xci) - + Install Files - + %n file(s) remaining @@ -6121,24 +6108,24 @@ Please go to Configure -> System -> Network and make a selection. - + Installing file "%1"... Installér fil "%1"... - - + + Install Results - + To avoid possible conflicts, we discourage users from installing base games to the NAND. Please, only use this feature to install updates and DLC. - + %n file(s) were newly installed @@ -6147,7 +6134,7 @@ Please, only use this feature to install updates and DLC. - + %n file(s) were overwritten @@ -6156,7 +6143,7 @@ Please, only use this feature to install updates and DLC. - + %n file(s) failed to install @@ -6165,484 +6152,438 @@ Please, only use this feature to install updates and DLC. - + System Application Systemapplikation - + System Archive Systemarkiv - + System Application Update Systemapplikationsopdatering - + Firmware Package (Type A) Firmwarepakke (Type A) - + Firmware Package (Type B) Firmwarepakke (Type B) - + Game Spil - + Game Update Spilopdatering - + Game DLC Spiludvidelse - + Delta Title Delta-Titel - + Select NCA Install Type... Vælg NCA-Installationstype... - + Please select the type of title you would like to install this NCA as: (In most instances, the default 'Game' is fine.) - + Failed to Install Installation mislykkedes - + The title type you selected for the NCA is invalid. - + File not found Fil ikke fundet - + File "%1" not found Fil "%1" ikke fundet - + OK OK - - + + Hardware requirements not met - - + + Your system does not meet the recommended hardware requirements. Compatibility reporting has been disabled. - + Missing yuzu Account Manglende yuzu-Konto - - In order to submit a game compatibility test case, you must link your eden account.<br><br/>To link your eden account, go to Emulation &gt; Configuration &gt; Web. + + In order to submit a game compatibility test case, you must set up your web token and username.<br><br/>To link your eden account, go to Emulation &gt; Configuration &gt; Web. - - Install decryption keys and restart eden before attempting to install firmware. + + Select Dumped Firmware ZIP - - Firmware installation cancelled, firmware may be in bad state, restart eden or re-install firmware. + + Zipped Archives (*.zip) - - Encryption keys are missing. + + Firmware cleanup failed - - Are you sure you want to close eden? + + Failed to clean up extracted firmware cache. +Check write permissions in the system temp directory and try again. +OS reported error: %1 - - - - eden + + Please install firmware to use the Album applet. - - The currently running application has requested eden to not exit. + + Please install firmware to use the Cabinet applet. + + + + + Please install firmware to use the Mii editor. + + + + + Please install firmware to use the Controller Menu. + + + + + Please install firmware to use the Home Menu. + + + + + Firmware Corrupted + + + + + Firmware Too New + + + + + +Continue anyways? + + + + + Don't show again + + + + + Please install firmware to use Starter. + + + + + Are you sure you want to close Eden? + + + + + + + Eden + + + + + The currently running application has requested Eden to not exit. Would you like to bypass this and exit anyway? - + + Encryption keys are missing. + + + + Error opening URL - + Unable to open the URL "%1". - + TAS Recording - + Overwrite file of player 1? - + Invalid config detected - + Handheld controller can't be used on docked mode. Pro controller will be selected. - - + + Amiibo - - + + The current amiibo has been removed - + Error - - + + The current game is not looking for amiibos - + Amiibo File (%1);; All Files (*.*) Amiibo-Fil (%1);; Alle Filer (*.*) - + Load Amiibo Indlæs Amiibo - + Error loading Amiibo data Fejl ved indlæsning af Amiibo-data - + The selected file is not a valid amiibo - + The selected file is already on use - + An unknown error occurred - - - Verification failed for the following files: - -%1 - - - - + + Keys not installed - + + + Install decryption keys and restart Eden before attempting to install firmware. + + + + Select Dumped Firmware Source Location - - Installing Firmware... - - - - - - - - Firmware install failed - - - - - Unable to locate potential firmware NCA files - - - - - Failed to delete one or more firmware file. - - - - - One or more firmware files failed to copy into NAND. - - - - - Firmware integrity verification failed! - - - - - Select Dumped Keys Location - - - - - - - Decryption Keys install failed - - - - - prod.keys is a required decryption key file. - - - - - One or more keys failed to copy. - - - - - Decryption Keys install succeeded - - - - - Decryption Keys were successfully installed - - - - - Decryption Keys failed to initialize. Check that your dumping tools are up to date and re-dump keys. - - - - - - - - - - + + + + + + No firmware available - - Please install the firmware to use the Album applet. - - - - + Album Applet - + Album applet is not available. Please reinstall firmware. - - Please install the firmware to use the Cabinet applet. - - - - + Cabinet Applet - + Cabinet applet is not available. Please reinstall firmware. - - Please install the firmware to use the Mii editor. - - - - + Mii Edit Applet - + Mii editor is not available. Please reinstall firmware. - - Please install the firmware to use the Controller Menu. - - - - + Controller Applet - + Controller Menu is not available. Please reinstall firmware. - - Please install the firmware to use the Home Menu. - - - - - + Home Menu Applet - - + Home Menu is not available. Please reinstall firmware. - - Please install the firmware to use Starter. - - - - + Starter Applet - + Starter is not available. Please reinstall firmware. - - Please install firmware to use the home menu. - - - - + Capture Screenshot Optag Skærmbillede - + PNG Image (*.png) PNG-Billede (*.png) - + Update Available - + Update %1 for Eden is available. Would you like to download it? - + TAS state: Running %1/%2 - + TAS state: Recording %1 - + TAS state: Idle %1/%2 - + TAS State: Invalid - + &Stop Running - + &Start - + Stop R&ecording - + R&ecord - + Building: %n shader(s) @@ -6650,70 +6591,70 @@ Would you like to download it? - + Scale: %1x %1 is the resolution scaling factor - + Speed: %1% / %2% Hastighed: %1% / %2% - + Speed: %1% Hastighed: %1% - + Game: %1 FPS Spil: %1 FPS - + Frame: %1 ms Billede: %1 ms - + %1 %2 - - + + FSR - + NO AA - + VOLUME: MUTE - + VOLUME: %1% Volume percentage (e.g. 50%) - + Derivation Components Missing - + Select RomFS Dump Target - + Please select which RomFS you would like to dump. @@ -6726,107 +6667,107 @@ Would you like to download it? yuzu - + Are you sure you want to stop the emulation? Any unsaved progress will be lost. Er du sikker på, at du vil stoppe emulereingen? Enhver ulagret data, vil gå tabt. - + None Ingen - + FXAA FXAA - + SMAA - + Nearest - + Bilinear Bilineær - + Bicubic Bikubisk - + Gaussian Gausisk - + ScaleForce ScaleForce - + Area - + Docked Dokket - + Handheld Håndholdt - + Normal - + High - + Extreme - + Vulkan - + OpenGL - + Null - + GLSL - + GLASM - + SPIRV @@ -6834,44 +6775,44 @@ Would you like to download it? GRenderWindow - - + + OpenGL not available! - + OpenGL shared contexts are not supported. - - eden has not been compiled with OpenGL support. + + Eden has not been compiled with OpenGL support. - - + + Error while initializing OpenGL! - + Your GPU may not support OpenGL, or you do not have the latest graphics driver. - + Error while initializing OpenGL 4.6! - + Your GPU may not support OpenGL 4.6, or you do not have the latest graphics driver.<br><br>GL Renderer:<br>%1 - + Your GPU may not support one or more required OpenGL extensions. Please ensure you have the latest graphics driver.<br><br>GL Renderer:<br>%1<br><br>Unsupported extensions:<br>%2 @@ -6879,128 +6820,128 @@ Would you like to download it? GameList - + Favorite - + Start Game - + Start Game without Custom Configuration - + Open Save Data Location Åbn Gemt Data-Placering - + Open Mod Data Location Åbn Mod-Data-Placering - + Open Transferable Pipeline Cache - + Remove Fjern - + Remove Installed Update - + Remove All Installed DLC - + Remove Custom Configuration - + Remove Play Time Data - + Remove Cache Storage - + Remove OpenGL Pipeline Cache - + Remove Vulkan Pipeline Cache - + Remove All Pipeline Caches - + Remove All Installed Contents - + Dump RomFS - + Dump RomFS to SDMC - + Verify Integrity - + Copy Title ID to Clipboard Kopiér Titel-ID til Udklipsholder - + Navigate to GameDB entry - + Create Shortcut - + Add to Desktop - + Add to Applications Menu - + Configure Game @@ -7009,62 +6950,62 @@ Would you like to download it? Egenskaber - + Scan Subfolders - + Remove Game Directory - + ▲ Move Up - + ▼ Move Down - + Open Directory Location - + Clear Ryd - + Name Navn - + Compatibility Kompatibilitet - + Add-ons Tilføjelser - + File type Filtype - + Size Størrelse - + Play time @@ -7072,62 +7013,62 @@ Would you like to download it? GameListItemCompat - + Ingame - + Game starts, but crashes or major glitches prevent it from being completed. - + Perfect Perfekt - + Game can be played without issues. - + Playable - + Game functions with minor graphical or audio glitches and is playable from start to finish. - + Intro/Menu Intro/Menu - + Game loads, but is unable to progress past the Start Screen. - + Won't Boot Starter Ikke Op - + The game crashes when attempting to startup. - + Not Tested Ikke Afprøvet - + The game has not yet been tested. Spillet er endnu ikke blevet afprøvet. @@ -7135,7 +7076,7 @@ Would you like to download it? GameListPlaceholder - + Double-click to add a new folder to the game list @@ -7143,7 +7084,7 @@ Would you like to download it? GameListSearchField - + %1 of %n result(s) @@ -7151,12 +7092,12 @@ Would you like to download it? - + Filter: Filter: - + Enter pattern to filter @@ -7238,7 +7179,7 @@ Would you like to download it? - Failed to announce the room to the public lobby. In order to host a room publicly, you must have a valid eden account configured in Emulation -> Configure -> Web. If you do not want to publish a room in the public lobby, then select Unlisted instead. + Failed to announce the room to the public lobby. In order to host a room publicly, you must have a valid Eden 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: @@ -7246,186 +7187,186 @@ Debug Message: Hotkeys - + Audio Mute/Unmute - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Main Window - + Audio Volume Down - + Audio Volume Up - + Capture Screenshot Optag Skærmbillede - + Change Adapting Filter - + Change Docked Mode - + Change GPU Accuracy - + Configure Konfigurér - + Configure Current Game - + Continue/Pause Emulation - + Exit Fullscreen - - Exit eden + + Exit Eden - + Fullscreen Fuldskærm - + Load File Indlæs Fil - + Load/Remove Amiibo - + Multiplayer Browse Public Game Lobby - + Multiplayer Create Room - + Multiplayer Direct Connect to Room - + Multiplayer Leave Room - + Multiplayer Show Current Room - + Restart Emulation - + Stop Emulation - + TAS Record - + TAS Reset - + TAS Start/Stop - + Toggle Filter Bar - + Toggle Framerate Limit - + Toggle Mouse Panning - + Toggle Renderdoc Capture - + Toggle Status Bar @@ -7433,22 +7374,22 @@ Debug Message: InstallDialog - + Please confirm these are the files you wish to install. - + Installing an Update or DLC will overwrite the previously installed one. - + Install Installér - + Install Files to NAND @@ -7456,7 +7397,7 @@ Debug Message: LimitableInputDialog - + The text can't contain any of the following characters: %1 @@ -7602,349 +7543,412 @@ Debug Message: - + &Emulation &Emulering - + &View - + &Reset Window Size - + &Debugging - + Reset Window Size to &720p - + Reset Window Size to 720p - + Reset Window Size to &900p - + Reset Window Size to 900p - + Reset Window Size to &1080p - + Reset Window Size to 1080p - + &Multiplayer - + &Tools - + &Amiibo - + &TAS - + &Create Home Menu Shortcut - + &Help &Hjælp - + &Install Files to NAND... - + L&oad File... - + Load &Folder... - + E&xit - + &Pause - + &Stop - + &Verify Installed Contents - - &About eden - - - - - Open &eden Folder - - - - + Open Home Menu - + &Discord - + Open &Setup - + &Desktop - + &Application Menu - + Single &Window Mode - + + Open &Eden Folders + + + + + &About Eden + + + + Con&figure... - + Ctrl+, - + Display D&ock Widget Headers - + Show &Filter Bar - + Show &Status Bar - + Show Status Bar Vis Statuslinje - + &Browse Public Game Lobby - + &Create Room - + &Leave Room - + &Direct Connect to Room - + &Show Current Room - + F&ullscreen - + &Restart - + Load/Remove &Amiibo... - + &Report Compatibility - + Open &Mods Page - + Open &Quickstart Guide - + &FAQ - + &Capture Screenshot - + Open &Album - + &Set Nickname and Owner - + &Delete Game Data - + &Restore Amiibo - + &Format Amiibo - + Open &Mii Editor - + &Configure TAS... - + Configure C&urrent Game... - + &Start - + &Reset - + R&ecord - + Open &Controller Menu - + + &Root Data Folder + + + + + &NAND Folder + + + + + &SDMC Folder + + + + + &Mod Folder + + + + + &Log Folder + + + + + From Folder + + + + + From ZIP + + + + + &X + + + + + X (Twitter) + + + + + &Revolt + + + + + Revolt + + + + + &Eden Dependencies + + + + Install Firmware - + Install Decryption Keys - - MicroProfileDialog - - - &MicroProfile - - - MigrationWorker - + Data was migrated successfully. - + Linking the old directory failed. You may need to re-run with administrative privileges on Windows. OS gave error: %1 - + + + +Note that your configuration and data will be shared with %1. +If this is not desirable, delete the following files: +%2 +%3 +%4 + + + + If you wish to clean up the files which were left in the old data location, you can do so by deleting the following directory: @@ -8004,37 +8008,37 @@ If you wish to clean up the files which were left in the old data location, you MultiplayerState - + Current connection status - + Not Connected. Click here to find a room! - + Not Connected - + Connected Tilsluttet - + New Messages Received - + Error - + Failed to update the room information. Please check your Internet connection and try hosting the room again. Debug Message: @@ -8129,56 +8133,56 @@ p, li { white-space: pre-wrap; } - + Installed SD Titles Installerede SD-Titler - + Installed NAND Titles Installerede NAND-Titler - + System Titles Systemtitler - + Add New Game Directory Tilføj Ny Spilmappe - + Favorites - - + + Shift Skift - - + + Ctrl Ctrl - - + + Alt Alt - - - - + + + + [not set] [ikke indstillet] @@ -8189,14 +8193,14 @@ p, li { white-space: pre-wrap; } - - - - - - - - + + + + + + + + Axis %1%2 Akse %1%2 @@ -8207,357 +8211,357 @@ p, li { white-space: pre-wrap; } Knap %1 - - - - - - + + + + + + [unknown] [ukendt] - - - + + + Left Venstre - - - + + + Right Højre - - - + + + Down ed - - - + + + Up Op - - + + Z Z - - + + R R - - + + L L - - + + A A - - + + B B - - + + X X - - + + Y Y - - + + Start Start - - + + L1 - - + + L2 - - + + L3 - - + + R1 - - + + R2 - - + + R3 - - + + Circle - - + + Cross - - + + Square - - + + Triangle - - + + Share - - + + Options - - + + [undefined] - + %1%2 - - + + [invalid] - - + + %1%2Hat %3 - - - + + + %1%2Axis %3 - - + + %1%2Axis %3,%4,%5 - - + + %1%2Motion %3 - - + + %1%2Button %3 - - + + [unused] [ubrugt] - + ZR ZR - + ZL ZL - + SR SR - + SL SL - + Stick L - + Stick R - + Plus Plus - + Minus Minus - - + + Home Hjem - + Capture Optag - + Touch Berøring - + Wheel Indicates the mouse wheel - + Backward - + Forward - + Task - + Extra - + %1%2%3%4 - - + + %1%2%3Hat %4 - - + + %1%2%3Axis %4 - - + + %1%2%3Button %4 - - + + Migration - + - - + + No - + You can manually re-trigger this prompt by deleting the new config directory: %1 - + Migrating - + Migrating, this may take a while... @@ -8675,6 +8679,298 @@ p, li { white-space: pre-wrap; } + + QtCommon::Content + + + Installing Firmware... + + + + + + + Cancel + Afbryd + + + + Firmware integrity verification failed! + + + + + + Verification failed for the following files: + +%1 + + + + + + Verifying integrity... + + + + + + Integrity verification succeeded! + + + + + + The operation completed successfully. + Fuldførelse af opgaven lykkedes. + + + + + Integrity verification failed! + + + + + File contents may be corrupt or missing. + + + + + Integrity verification couldn't be performed + + + + + Firmware installation cancelled, firmware may be in a bad state or corrupted. File contents could not be checked for validity. + + + + + Select Dumped Keys Location + + + + + Decryption Keys install succeeded + + + + + Decryption Keys were successfully installed + + + + + Decryption Keys install failed + + + + + QtCommon::Game + + + Error Removing Contents + + + + + Error Removing Update + + + + + Error Removing DLC + + + + + The base game is not installed in the NAND and cannot be removed. + + + + + There is no update installed for this title. + + + + + There are no DLCs installed for this title. + + + + + + + + Successfully Removed + + + + + Successfully removed %1 installed DLC. + + + + + + Error Removing Transferable Shader Cache + + + + + + A shader cache for this title does not exist. + + + + + Successfully removed the transferable shader cache. + + + + + Failed to remove the transferable shader cache. + + + + + Error Removing Vulkan Driver Pipeline Cache + + + + + Failed to remove the driver pipeline cache. + + + + + + Error Removing Transferable Shader Caches + + + + + Successfully removed the transferable shader caches. + + + + + Failed to remove the transferable shader cache directory. + + + + + + Error Removing Custom Configuration + + + + + A custom configuration for this title does not exist. + + + + + Successfully removed the custom game configuration. + + + + + Failed to remove the custom game configuration. + + + + + Reset Metadata Cache + Nulstil Metadata-Mellemlager + + + + The metadata cache is already empty. + Metadata-mellemlageret er allerede tomt. + + + + The operation completed successfully. + Fuldførelse af opgaven lykkedes. + + + + The metadata cache couldn't be deleted. It might be in use or non-existent. + Metadata-mellemlageret kunne ikke slettes. Det kan være i brug eller ikke-eksisterende. + + + + Create Shortcut + + + + + Do you want to launch the game in fullscreen? + + + + + Shortcut Created + + + + + Successfully created a shortcut to %1 + + + + + Shortcut may be Volatile! + + + + + This will create a shortcut to the current AppImage. This may not work well if you update. Continue? + + + + + Failed to Create Shortcut + + + + + Failed to create a shortcut to %1 + + + + + Create Icon + + + + + Cannot create icon file. Path "%1" does not exist and cannot be created. + + + + + No firmware available + + + + + Please install firmware to use the home menu. + + + + + Home Menu Applet + + + + + Home Menu is not available. Please reinstall firmware. + + + QtControllerSelectorDialog @@ -8964,7 +9260,7 @@ Please try again or contact the developer of the software. QtProfileSelectionDialog - + %1 %2 %1 is the profile username, %2 is the formatted UUID (e.g. 00112233-4455-6677-8899-AABBCCDDEEFF)) @@ -8972,7 +9268,7 @@ Please try again or contact the developer of the software. %2 - + Users Brugere @@ -9092,7 +9388,7 @@ p, li { white-space: pre-wrap; } WaitTreeCallstack - + Call stack @@ -9100,12 +9396,12 @@ p, li { white-space: pre-wrap; } WaitTreeSynchronizationObject - + [%1] %2 - + waited by no thread ventet af ingen tråde @@ -9113,102 +9409,102 @@ p, li { white-space: pre-wrap; } WaitTreeThread - + runnable - + paused sat på pause - + sleeping slumrer - + waiting for IPC reply venter på IPC-svar - + waiting for objects venter på objekter - + waiting for condition variable - + waiting for address arbiter - + waiting for suspend resume - + waiting - + initialized - + terminated - + unknown - + PC = 0x%1 LR = 0x%2 PC = 0x%1 LR = 0x%2 - + ideal idéel - + core %1 kerne %1 - + processor = %1 processor = %1 - + affinity mask = %1 - + thread id = %1 tråd-id = %1 - + priority = %1(current) / %2(normal) prioritet = %1(aktuel) / %2(normal) - + last running ticks = %1 @@ -9216,7 +9512,7 @@ p, li { white-space: pre-wrap; } WaitTreeThreadList - + waited by thread ventet af tråd @@ -9224,7 +9520,7 @@ p, li { white-space: pre-wrap; } WaitTreeWidget - + &Wait Tree diff --git a/dist/languages/de.ts b/dist/languages/de.ts index 538994902d..135d508917 100644 --- a/dist/languages/de.ts +++ b/dist/languages/de.ts @@ -13,12 +13,12 @@ - About eden + About Eden - <html><head/><body><p><span style=" font-size:28pt;">eden</span></p></body></html> + <html><head/><body><p><span style=" font-size:28pt;">Eden</span></p></body></html> @@ -34,8 +34,8 @@ p, li { white-space: pre-wrap; } hr { height: 1px; border-width: 0; } li.unchecked::marker { content: "\2610"; } li.checked::marker { content: "\2612"; } -</style></head><body style=" font-family:'Adwaita Sans'; font-size:11pt; font-weight:400; font-style:normal;"> -<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;">eden is an experimental open-source emulator for the Nintendo Switch licensed under GPLv3.0+ which is based on the yuzu emulator which ended development back in March 2024. <br /><br />This software should not be used to play games you have not legally obtained.</span></p></body></html> +</style></head><body style=" font-family:'Noto Sans'; font-size:9pt; font-weight:400; font-style:normal;"> +<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;">Eden is an experimental open-source emulator for the Nintendo Switch licensed under GPLv3.0+ which is based on the yuzu emulator which ended development back in March 2024. <br /><br />This software should not be used to play games you have not legally obtained.</span></p></body></html> @@ -72,32 +72,32 @@ p, li { white-space: pre-wrap; } CalibrationConfigurationDialog - + Communicating with the server... Verbindung mit dem Server wird hergestellt... - + Cancel Abbrechen - + Touch the top left corner <br>of your touchpad. Tippe auf die obere linke Ecke <br>deines Touchpads. - + Now touch the bottom right corner <br>of your touchpad. Tippe nun auf die untere rechte Ecke <br>deines Touchpads. - + Configuration completed! Konfiguration abgeschlossen! - + OK OK @@ -396,439 +396,198 @@ Dies würde deren Forum-Benutzernamen und deren IP-Adresse sperren. ConfigurationShared - + % % - - Amiibo editor - - - - - Controller configuration - - - - - Data erase - - - - + Error Fehler - - Net connect - - - - - Player select - - - - + Software keyboard Software-Tastatur - - Mii Edit - - - - - Online web - - - - - Shop - - - - - Photo viewer - - - - - Offline web - - - - - Login share - - - - - Wifi web auth - - - - - My page - - - - + Output Engine: Ausgabe-Engine: - + Output Device: Ausgabegerät: - + Input Device: Eingabegerät: - + Mute audio Audio stummschalten - + Volume: Lautstärke: - + Mute audio when in background Audio im Hintergrund stummschalten - + Multicore CPU Emulation Multicore-CPU-Emulation - - This option increases CPU emulation thread use from 1 to the Switch’s maximum of 4. -This is mainly a debug option and shouldn’t be disabled. - - - - + Memory Layout Speicher-Layout - - Increases the amount of emulated RAM from the stock 4GB of the retail Switch to the developer kit's 8/6GB. -It’s doesn’t improve stability or performance and is intended to let big texture mods fit in emulated RAM. -Enabling it will increase memory use. It is not recommended to enable unless a specific game with a texture mod needs it. - - - - + Limit Speed Percent Geschwindigkeit auf % festlegen - - Controls the game's maximum rendering speed, but it’s up to each game if it runs faster or not. -200% for a 30 FPS game is 60 FPS, and for a 60 FPS game it will be 120 FPS. -Disabling it means unlocking the framerate to the maximum your PC can reach. - - - - - Synchronize Core Speed - - - - - Synchronizes CPU core speed with the game's maximum rendering speed to boost FPS without affecting game speed (animations, physics, etc.). -Compatibility varies by game; many (especially older ones) may not respond well. -Can help reduce stuttering at lower framerates. - - - - + Accuracy: Genauigkeit der Emulation: - - This setting controls the accuracy of the emulated CPU. -Don't change this unless you know what you are doing. - - - - - + + Backend: Backend: - - Fast CPU Time - - - - - Overclocks the emulated CPU to remove some FPS limiters. Weaker CPUs may see reduced performance, and certain games may behave improperly. -Use Boost (1700MHz) to run at the Switch's highest native clock, or Fast (2000MHz) to run at 2x clock. - - - - + Unfuse FMA (improve performance on CPUs without FMA) Unfuse FMA (erhöht Leistung auf CPUs ohne FMA) - + This option improves speed by reducing accuracy of fused-multiply-add instructions on CPUs without native FMA support. Diese Option verbessert die Geschwindigkeit, indem die Genauigkeit von "Fused-Multiply-Add"-Anweisungen auf CPUs ohne native FMA-Unterstützung reduziert wird. - + Faster FRSQRTE and FRECPE Schnelleres FRSQRTE und FRECPE - + This option improves the speed of some approximate floating-point functions by using less accurate native approximations. Diese Option verbessert die Geschwindigkeit einiger ungenauen Fließkomma-Funktionen, indem weniger genaue native Annäherungen benutzt werden. - + Faster ASIMD instructions (32 bits only) Schnellere ASIMD-Instruktionen (nur 32-Bit) - + This option improves the speed of 32 bits ASIMD floating-point functions by running with incorrect rounding modes. Diese Option verbessert die Geschwindigkeit von 32-Bit-ASIMD-Fließkomma-Funktionen, indem diese mit inkorrekten Rundungsmodi ausgeführt werden. - + Inaccurate NaN handling Ungenaue NaN-Verarbeitung - - This option improves speed by removing NaN checking. -Please note this also reduces accuracy of certain floating-point instructions. - - - - + Disable address space checks Adressraumprüfungen deaktivieren - - This option improves speed by eliminating a safety check before every memory read/write in guest. -Disabling it may allow a game to read/write the emulator's memory. - - - - + Ignore global monitor Globalen Monitor ignorieren - - This option improves speed by relying only on the semantics of cmpxchg to ensure safety of exclusive access instructions. -Please note this may result in deadlocks and other race conditions. - - - - + API: API: - - Switches between the available graphics APIs. -Vulkan is recommended in most cases. - - - - + Device: Gerät: - - This setting selects the GPU to use with the Vulkan backend. - - - - + Shader Backend: Shader-Backend: - - The shader backend to use for the OpenGL renderer. -GLSL is the fastest in performance and the best in rendering accuracy. -GLASM is a deprecated NVIDIA-only backend that offers much better shader building performance at the cost of FPS and rendering accuracy. -SPIR-V compiles the fastest, but yields poor results on most GPU drivers. - - - - + Resolution: Auflösung: - - Forces the game to render at a different resolution. -Higher resolutions require much more VRAM and bandwidth. -Options lower than 1X can cause rendering issues. - - - - + Window Adapting Filter: Bildschirmanpassungsfilter: - + FSR Sharpness: FSR-Schärfe - - Determines how sharpened the image will look while using FSR’s dynamic contrast. - - - - + Anti-Aliasing Method: Kantenglättungs-Methode: - - The anti-aliasing method to use. -SMAA offers the best quality. -FXAA has a lower performance impact and can produce a better and more stable picture under very low resolutions. - - - - + Fullscreen Mode: Vollbild-Modus: - - The method used to render the window in fullscreen. -Borderless offers the best compatibility with the on-screen keyboard that some games request for input. -Exclusive fullscreen may offer better performance and better Freesync/Gsync support. - - - - + Aspect Ratio: Seitenverhältnis: - - Stretches the game to fit the specified aspect ratio. -Switch games only support 16:9, so custom game mods are required to get other ratios. -Also controls the aspect ratio of captured screenshots. - - - - + Use disk pipeline cache Disk-Pipeline-Cache verwenden - - Allows saving shaders to storage for faster loading on following game boots. -Disabling it is only intended for debugging. - - - - - Optimize SPIRV output shader - - - - - Runs an additional optimization pass over generated SPIRV shaders. -Will increase time required for shader compilation. -May slightly improve performance. -This feature is experimental. - - - - + Use asynchronous GPU emulation Asynchrone GPU-Emulation verwenden - - Uses an extra CPU thread for rendering. -This option should always remain enabled. - - - - + NVDEC emulation: NVDEC-Emulation: - - Specifies how videos should be decoded. -It can either use the CPU or the GPU for decoding, or perform no decoding at all (black screen on videos). -In most cases, GPU decoding provides the best performance. - - - - + ASTC Decoding Method: ASTC-Dekodier-Methode: - - This option controls how ASTC textures should be decoded. -CPU: Use the CPU for decoding, slowest but safest method. -GPU: Use the GPU's compute shaders to decode ASTC textures, recommended for most games and users. -CPU Asynchronously: Use the CPU to decode ASTC textures as they arrive. Completely eliminates ASTC decoding -stuttering at the cost of rendering issues while the texture is being decoded. - - - - + ASTC Recompression Method: ASTC-Rekompression-Methode: - - Almost all desktop and laptop dedicated GPUs lack support for ASTC textures, forcing the emulator to decompress to an intermediate format any card supports, RGBA8. -This option recompresses RGBA8 to either the BC1 or BC3 format, saving VRAM but negatively affecting image quality. - - - - - VRAM Usage Mode: - - - - - Selects whether the emulator should prefer to conserve memory or make maximum usage of available video memory for performance. Has no effect on integrated graphics. Aggressive mode may severely impact the performance of other applications such as recording software. - - - - + VSync Mode: VSync-Modus: - + FIFO (VSync) does not drop frames or exhibit tearing but is limited by the screen refresh rate. FIFO Relaxed is similar to FIFO but allows tearing as it recovers from a slow down. Mailbox can have lower latency than FIFO and does not tear but may drop frames. @@ -839,62 +598,34 @@ Mailbox kann eine geringere Latenz als FIFO haben und zeigt kein Tearing, kann a Immediate (keine Synchronisierung) zeigt direkt, was verfügbar ist und kann Tearing zeigen. - + Enable asynchronous presentation (Vulkan only) Aktiviere asynchrone Präsentation (Nur Vulkan) - - Slightly improves performance by moving presentation to a separate CPU thread. - - - - + Force maximum clocks (Vulkan only) Erzwinge Maximale Taktrate (Vulkan only) - + Runs work in the background while waiting for graphics commands to keep the GPU from lowering its clock speed. Lässt im Hintergrund die GPU Aufgaben erledigen während diese auf Grafikbefehle wartet, damit diese nicht herunter taktet. - + Anisotropic Filtering: Anisotrope Filterung: - - Controls the quality of texture rendering at oblique angles. -It’s a light setting and safe to set at 16x on most GPUs. - - - - Accuracy Level: - Genauigkeit der Emulation: + Genauigkeit der Emulation: - - GPU emulation accuracy. -Most games render fine with Normal, but High is still required for some. -Particles tend to only render correctly with High accuracy. -Extreme should only be used for debugging. -This option can be changed while playing. -Some games may require booting on high to render properly. - - - - + Use asynchronous shader building (Hack) Aktiviere asynchrones Shader-Kompilieren. (Hack) - - - Enables asynchronous shader compilation, which may reduce shader stutter. -This feature is experimental. - - Use Fast GPU Time (Hack) Verwende Schnelle GPU-Zeit (Hack) @@ -904,23 +635,17 @@ This feature is experimental. Aktiviert Schnelle GPU-Zeit. Diese Option zwingt die meisten Spiele dazu, mit ihrer höchsten nativen Auflösung zu laufen. - + Use Vulkan pipeline cache Vulkan-Pipeline-Cache verwenden - - Enables GPU vendor-specific pipeline cache. -This option can improve shader loading time significantly in cases where the Vulkan driver does not store pipeline cache files internally. - - - - + Enable Compute Pipelines (Intel Vulkan Only) Aktiviere Compute-Pipelines (Nur Intel Vulkan) - + Enable compute pipelines, required by some games. This setting only exists for Intel proprietary drivers, and may crash if enabled. Compute pipelines are always enabled on all other drivers. @@ -929,960 +654,1332 @@ Diese Einstellung existiert nur für proprietäre Intel-Treiber, und kann zu Abs Compute-Pipelines sind für alle anderen Treiber immer aktiviert. - + Enable Reactive Flushing Aktiviere Reactives Flushing - + Uses reactive flushing instead of predictive flushing, allowing more accurate memory syncing. Benutzt Reactive-Flushing anstatt Predictive-Flushing, welches akkurateres Speicher-Synchronisieren erlaubt. - + Sync to framerate of video playback Synchronisiere mit Bildrate von Video-Wiedergaben - + Run the game at normal speed during video playback, even when the framerate is unlocked. Lasse das Spiel in der normalen Geschwindigkeit abspielen, trotz freigeschalteter Bildrate (FPS) - + Barrier feedback loops Barrier-Feedback-Loops - + Improves rendering of transparency effects in specific games. Verbessert das Rendering von Transparenzeffekten in bestimmten Spielen. - + RNG Seed RNG-Seed - + + Device Name + Gerätename + + + + Language: + Sprache: + + + + Note: this can be overridden when region setting is auto-select + Anmerkung: Diese Einstellung kann überschrieben werden, falls deine Region auf "auto-select" eingestellt ist. + + + + Region: + Region: + + + + Time Zone: + Zeitzone: + + + + Sound Output Mode: + Tonausgangsmodus: + + + + Console Mode: + Konsolenmodus: + + + + Prompt for user on game boot + Beim Spielstart nach Nutzer fragen + + + + Pause emulation when in background + Emulation im Hintergrund pausieren + + + + Confirm before stopping emulation + Vor dem Stoppen der Emulation bestätigen + + + + Hide mouse on inactivity + Mauszeiger verstecken + + + + Disable controller applet + Deaktiviere Controller-Applet + + + + Enable Gamemode + GameMode aktivieren + + + + CPU + CPU + + + + GPU + GPU + + + + CPU Asynchronous + CPU Asynchron + + + + Uncompressed (Best quality) + Unkomprimiert (Beste Qualität) + + + + BC1 (Low quality) + BC1 (Niedrige Qualität) + + + + BC3 (Medium quality) + BC3 (Mittlere Qualität) + + + + OpenGL + OpenGL + + + + Vulkan + Vulkan + + + + Null + Null + + + + GLSL + GLSL + + + + GLASM (Assembly Shaders, NVIDIA Only) + GLASM (Assembly Shaders, Nur NVIDIA) + + + + Normal + Normal + + + + High + Hoch + + + + Extreme + Extrem + + + + Auto + Auto + + + + Accurate + Akkurat + + + + Unsafe + Unsicher + + + + Paranoid (disables most optimizations) + Paranoid (deaktiviert die meisten Optimierungen) + + + + Dynarmic + Dynarmic + + + + NCE + NCE + + + + Borderless Windowed + Rahmenloses Fenster + + + + Exclusive Fullscreen + Exklusiver Vollbildmodus + + + + No Video Output + Keine Videoausgabe + + + + CPU Video Decoding + CPU Video Dekodierung + + + + GPU Video Decoding (Default) + GPU Video Dekodierung (Standard) + + + + 0.5X (360p/540p) [EXPERIMENTAL] + 0,5X (360p/540p) [EXPERIMENTELL] + + + + 0.75X (540p/810p) [EXPERIMENTAL] + 0,75X (540p/810p) [EXPERIMENTELL] + + + + 1X (720p/1080p) + 1X (720p/1080p) + + + + 1.5X (1080p/1620p) [EXPERIMENTAL] + 1,5X (1080p/1620p) [EXPERIMENTELL] + + + + 2X (1440p/2160p) + 2X (1440p/2160p) + + + + 3X (2160p/3240p) + 3X (2160p/3240p) + + + + 4X (2880p/4320p) + 4X (2880p/4320p) + + + + 5X (3600p/5400p) + 5X (3600p/5400p) + + + + 6X (4320p/6480p) + 6X (4320p/6480p) + + + + 7X (5040p/7560p) + 7X (5040p/7560p) + + + + 8X (5760p/8640p) + 8X (5760p/8640p) + + + + Nearest Neighbor + Nearest-Neighbor + + + + Bilinear + Bilinear + + + + Bicubic + Bikubisch + + + + Gaussian + Gaussian + + + + ScaleForce + ScaleForce + + + + AMD FidelityFX™️ Super Resolution + AMD FidelityFX™️Super Resolution + + + + None + Keiner + + + + FXAA + FXAA + + + + SMAA + SMAA + + + + Default (16:9) + Standard (16:9) + + + + Force 4:3 + Erzwinge 4:3 + + + + Force 21:9 + Erzwinge 21:9 + + + + Force 16:10 + Erzwinge 16:10 + + + + Stretch to Window + Auf Fenster anpassen + + + + Automatic + Automatisch + + + + + Default + Standard + + + + Amiibo editor + + + + + Controller configuration + + + + + Data erase + + + + + Net connect + + + + + Player select + + + + + Mii Edit + + + + + Online web + + + + + Shop + + + + + Photo viewer + + + + + Offline web + + + + + Login share + + + + + Wifi web auth + + + + + My page + + + + + This option increases CPU emulation thread use from 1 to the Switch’s maximum of 4. +This is mainly a debug option and shouldn’t be disabled. + + + + + Increases the amount of emulated RAM from the stock 4GB of the retail Switch to the developer kit's 8/6GB. +It’s doesn’t improve stability or performance and is intended to let big texture mods fit in emulated RAM. +Enabling it will increase memory use. It is not recommended to enable unless a specific game with a texture mod needs it. + + + + + Controls the game's maximum rendering speed, but it’s up to each game if it runs faster or not. +200% for a 30 FPS game is 60 FPS, and for a 60 FPS game it will be 120 FPS. +Disabling it means unlocking the framerate to the maximum your PC can reach. + + + + + Synchronize Core Speed + + + + + Synchronizes CPU core speed with the game's maximum rendering speed to boost FPS without affecting game speed (animations, physics, etc.). +Compatibility varies by game; many (especially older ones) may not respond well. +Can help reduce stuttering at lower framerates. + + + + + This setting controls the accuracy of the emulated CPU. +Don't change this unless you know what you are doing. + + + + + Fast CPU Time + + + + + Overclocks the emulated CPU to remove some FPS limiters. Weaker CPUs may see reduced performance, and certain games may behave improperly. +Use Boost (1700MHz) to run at the Switch's highest native clock, or Fast (2000MHz) to run at 2x clock. + + + + + Custom CPU Ticks + + + + + Set a custom value of CPU ticks. Higher values can increase performance, but may also cause the game to freeze. A range of 77–21000 is recommended. + + + + + Enable Host MMU Emulation (fastmem) + + + + + This optimization speeds up memory accesses by the guest program. +Enabling it causes guest memory reads/writes to be done directly into memory and make use of Host's MMU. +Disabling this forces all memory accesses to use Software MMU Emulation. + + + + + This option improves speed by removing NaN checking. +Please note this also reduces accuracy of certain floating-point instructions. + + + + + This option improves speed by eliminating a safety check before every memory read/write in guest. +Disabling it may allow a game to read/write the emulator's memory. + + + + + This option improves speed by relying only on the semantics of cmpxchg to ensure safety of exclusive access instructions. +Please note this may result in deadlocks and other race conditions. + + + + + Switches between the available graphics APIs. +Vulkan is recommended in most cases. + + + + + This setting selects the GPU to use with the Vulkan backend. + + + + + The shader backend to use for the OpenGL renderer. +GLSL is the fastest in performance and the best in rendering accuracy. +GLASM is a deprecated NVIDIA-only backend that offers much better shader building performance at the cost of FPS and rendering accuracy. +SPIR-V compiles the fastest, but yields poor results on most GPU drivers. + + + + + Forces the game to render at a different resolution. +Higher resolutions require much more VRAM and bandwidth. +Options lower than 1X can cause rendering issues. + + + + + Determines how sharpened the image will look while using FSR’s dynamic contrast. + + + + + The anti-aliasing method to use. +SMAA offers the best quality. +FXAA has a lower performance impact and can produce a better and more stable picture under very low resolutions. + + + + + The method used to render the window in fullscreen. +Borderless offers the best compatibility with the on-screen keyboard that some games request for input. +Exclusive fullscreen may offer better performance and better Freesync/Gsync support. + + + + + Stretches the game to fit the specified aspect ratio. +Switch games only support 16:9, so custom game mods are required to get other ratios. +Also controls the aspect ratio of captured screenshots. + + + + + Allows saving shaders to storage for faster loading on following game boots. +Disabling it is only intended for debugging. + + + + + Optimize SPIRV output shader + + + + + Runs an additional optimization pass over generated SPIRV shaders. +Will increase time required for shader compilation. +May slightly improve performance. +This feature is experimental. + + + + + Uses an extra CPU thread for rendering. +This option should always remain enabled. + + + + + Specifies how videos should be decoded. +It can either use the CPU or the GPU for decoding, or perform no decoding at all (black screen on videos). +In most cases, GPU decoding provides the best performance. + + + + + This option controls how ASTC textures should be decoded. +CPU: Use the CPU for decoding, slowest but safest method. +GPU: Use the GPU's compute shaders to decode ASTC textures, recommended for most games and users. +CPU Asynchronously: Use the CPU to decode ASTC textures as they arrive. Completely eliminates ASTC decoding +stuttering at the cost of rendering issues while the texture is being decoded. + + + + + Almost all desktop and laptop dedicated GPUs lack support for ASTC textures, forcing the emulator to decompress to an intermediate format any card supports, RGBA8. +This option recompresses RGBA8 to either the BC1 or BC3 format, saving VRAM but negatively affecting image quality. + + + + + VRAM Usage Mode: + + + + + Selects whether the emulator should prefer to conserve memory or make maximum usage of available video memory for performance. +Aggressive mode may severely impact the performance of other applications such as recording software. + + + + + Skip CPU Inner Invalidation + + + + + Skips certain CPU-side cache invalidations during memory updates, reducing CPU usage and improving it's performance. This may cause glitches or crashes on some games. + + + + + Sync Memory Operations + + + + + Ensures data consistency between compute and memory operations. +This option should fix issues in some games, but may also reduce performance in some cases. +Unreal Engine 4 games often see the most significant changes thereof. + + + + + Slightly improves performance by moving presentation to a separate CPU thread. + + + + + Controls the quality of texture rendering at oblique angles. +It’s a light setting and safe to set at 16x on most GPUs. + + + + + GPU Accuracy: + + + + + Controls the GPU emulation accuracy. +Most games render fine with Normal, but High is still required for some. +Particles tend to only render correctly with High accuracy. +Extreme should only be used as a last resort. + + + + + DMA Accuracy: + + + + + Controls the DMA precision accuracy. Safe precision can fix issues in some games, but it can also impact performance in some cases. +If unsure, leave this on Default. + + + + + Enables asynchronous shader compilation, which may reduce shader stutter. +This feature is experimental. + + + + + Fast GPU Time (Hack) + + + + + Overclocks the emulated GPU to increase dynamic resolution and render distance. +Use 128 for maximal performance and 512 for maximal graphics fidelity. + + + + + Enables GPU vendor-specific pipeline cache. +This option can improve shader loading time significantly in cases where the Vulkan driver does not store pipeline cache files internally. + + + + + RAII + + + + + A method of automatic resource management in Vulkan that ensures proper release of resources when they are no longer needed, but may cause crashes in bundled games. + + + + + Extended Dynamic State + + + + + Controls the number of features that can be used in Extended Dynamic State. +Higher numbers allow for more features and can increase performance, but may cause issues with some drivers and vendors. +The default value may vary depending on your system and hardware capabilities. +This value can be changed until stability and a better visual quality are achieved. + + + + + Provoking Vertex + + + + + Improves lighting and vertex handling in certain games. +Only Vulkan 1.0+ devices support this extension. + + + + + Descriptor Indexing + + + + + Improves texture & buffer handling and the Maxwell translation layer. +Some Vulkan 1.1+ and all 1.2+ devices support this extension. + + + + + Sample Shading + + + + + Allows the fragment shader to execute per sample in a multi-sampled fragment instead once per fragment. Improves graphics quality at the cost of some performance. +Higher values improve quality more but also reduce performance to a greater extent. + + + + Controls the seed of the random number generator. Mainly used for speedrunning purposes. - - Device Name - Gerätename - - - + The name of the emulated Switch. - + Custom RTC Date: - + This option allows to change the emulated clock of the Switch. Can be used to manipulate time in games. - - Language: - Sprache: - - - - Note: this can be overridden when region setting is auto-select - Anmerkung: Diese Einstellung kann überschrieben werden, falls deine Region auf "auto-select" eingestellt ist. - - - - Region: - Region: - - - + The region of the emulated Switch. - - Time Zone: - Zeitzone: - - - + The time zone of the emulated Switch. - - Sound Output Mode: - Tonausgangsmodus: - - - - Console Mode: - Konsolenmodus: - - - + Selects if the console is emulated in Docked or Handheld mode. Games will change their resolution, details and supported controllers and depending on this setting. Setting to Handheld can help improve performance for low end systems. - - Prompt for user on game boot - Beim Spielstart nach Nutzer fragen - - - - Pause emulation when in background - Emulation im Hintergrund pausieren - - - - Fast GPU Time (Hack) + + Ask to select a user profile on each boot, useful if multiple people use Eden on the same PC. - - Overclocks the emulated GPU to increase dynamic resolution and render distance. -Use 128 for maximal performance and 512 for maximal graphics fidelity. + + This setting pauses Eden when focusing other windows. - - Extended Dynamic State - - - - - Enables the VkExtendedDynamicState* extensions. -Higher dynamic states will generally improve performance, but may cause issues on certain games or devices. - - - - - Provoking Vertex - - - - - Improves lighting and vertex handling in certain games. -Only Vulkan 1.0+ devices support this extension. - - - - - Descriptor Indexing - - - - - Improves texture & buffer handling and the Maxwell translation layer. -Some Vulkan 1.1+ and all 1.2+ devices support this extension. - - - - - Ask to select a user profile on each boot, useful if multiple people use eden on the same PC. - - - - - This setting pauses eden when focusing other windows. - - - - - Confirm before stopping emulation - Vor dem Stoppen der Emulation bestätigen - - - + This setting overrides game prompts asking to confirm stopping the game. Enabling it bypasses such prompts and directly exits the emulation. - - Hide mouse on inactivity - Mauszeiger verstecken - - - + This setting hides the mouse after 2.5s of inactivity. - - Disable controller applet - Deaktiviere Controller-Applet - - - + Forcibly disables the use of the controller applet by guests. When a guest attempts to open the controller applet, it is immediately closed. - + Check for updates - + Whether or not to check for updates upon startup. - - Enable Gamemode - GameMode aktivieren - - - + Custom frontend - + Real applet - + Never - + On Load - + Always - - CPU - CPU - - - - GPU - GPU - - - - CPU Asynchronous - CPU Asynchron - - - - Uncompressed (Best quality) - Unkomprimiert (Beste Qualität) - - - - BC1 (Low quality) - BC1 (Niedrige Qualität) - - - - BC3 (Medium quality) - BC3 (Mittlere Qualität) - - - + Conservative - + Aggressive - - OpenGL - OpenGL - - - - Vulkan - Vulkan - - - - Null - Null - - - - GLSL - GLSL - - - - GLASM (Assembly Shaders, NVIDIA Only) - GLASM (Assembly Shaders, Nur NVIDIA) - - - + SPIR-V (Experimental, AMD/Mesa Only) - - Normal - Normal + + Unsafe (fast) + - - High - Hoch + + Safe (stable) + - - Extreme - Extrem - - - - Auto - Auto - - - - Accurate - Akkurat - - - - Unsafe - Unsicher - - - - Paranoid (disables most optimizations) - Paranoid (deaktiviert die meisten Optimierungen) - - - - Dynarmic - Dynarmic - - - - NCE - NCE - - - - Borderless Windowed - Rahmenloses Fenster - - - - Exclusive Fullscreen - Exklusiver Vollbildmodus - - - - No Video Output - Keine Videoausgabe - - - - CPU Video Decoding - CPU Video Dekodierung - - - - GPU Video Decoding (Default) - GPU Video Dekodierung (Standard) - - - + 0.25X (180p/270p) [EXPERIMENTAL] - - 0.5X (360p/540p) [EXPERIMENTAL] - 0,5X (360p/540p) [EXPERIMENTELL] - - - - 0.75X (540p/810p) [EXPERIMENTAL] - 0,75X (540p/810p) [EXPERIMENTELL] - - - - 1X (720p/1080p) - 1X (720p/1080p) - - - - 1.5X (1080p/1620p) [EXPERIMENTAL] - 1,5X (1080p/1620p) [EXPERIMENTELL] - - - - 2X (1440p/2160p) - 2X (1440p/2160p) - - - - 3X (2160p/3240p) - 3X (2160p/3240p) - - - - 4X (2880p/4320p) - 4X (2880p/4320p) - - - - 5X (3600p/5400p) - 5X (3600p/5400p) - - - - 6X (4320p/6480p) - 6X (4320p/6480p) - - - - 7X (5040p/7560p) - 7X (5040p/7560p) - - - - 8X (5760p/8640p) - 8X (5760p/8640p) - - - - Nearest Neighbor - Nearest-Neighbor - - - - Bilinear - Bilinear - - - - Bicubic - Bikubisch - - - - Gaussian - Gaussian - - - - ScaleForce - ScaleForce - - - - AMD FidelityFX™️ Super Resolution - AMD FidelityFX™️Super Resolution - - - + Area - - None - Keiner - - - - FXAA - FXAA - - - - SMAA - SMAA - - - - Default (16:9) - Standard (16:9) - - - - Force 4:3 - Erzwinge 4:3 - - - - Force 21:9 - Erzwinge 21:9 - - - - Force 16:10 - Erzwinge 16:10 - - - - Stretch to Window - Auf Fenster anpassen - - - - Automatic - Automatisch - - - - Default - Standard - - - + 2x 2x - + 4x 4x - + 8x 8x - + 16x 16x - + Japanese (日本語) Japanisch (日本語) - + American English Amerikanisches Englisch - + French (français) Französisch (français) - + German (Deutsch) Deutsch (German) - + Italian (italiano) Italienisch (italiano) - + Spanish (español) Spanisch (español) - + Chinese Chinesisch - + Korean (한국어) Koreanisch (한국어) - + Dutch (Nederlands) Niederländisch (Nederlands) - + Portuguese (português) Portugiesisch (português) - + Russian (Русский) Russisch (Русский) - + Taiwanese Taiwanesisch - + British English Britisches Englisch - + Canadian French Kanadisches Französisch - + Latin American Spanish Lateinamerikanisches Spanisch - + Simplified Chinese Vereinfachtes Chinesisch - + Traditional Chinese (正體中文) Traditionelles Chinesisch (正體中文) - + Brazilian Portuguese (português do Brasil) Brasilianisches Portugiesisch (português do Brasil) - - + + Serbian (српски) + + + + + Japan Japan - + USA USA - + Europe Europa - + Australia Australien - + China China - + Korea Korea - + Taiwan Taiwan - + Auto (%1) Auto select time zone Automatisch (%1) - + Default (%1) Default time zone Standard (%1) - + CET CET - + CST6CDT CST6CDT - + Cuba Kuba - + EET EET - + Egypt Ägypten - + Eire Eire - + EST EST - + EST5EDT EST5EDT - + GB GB - + GB-Eire GB-Eire - + GMT GMT - + GMT+0 GMT+0 - + GMT-0 GMT-0 - + GMT0 GMT0 - + Greenwich Greenwich - + Hongkong Hongkong - + HST HST - + Iceland Island - + Iran Iran - + Israel Israel - + Jamaica Jamaika - + Kwajalein Kwajalein - + Libya Libyen - + MET MET - + MST MST - + MST7MDT MST7MDT - + Navajo Navajo - + NZ NZ - + NZ-CHAT NZ-CHAT - + Poland Polen - + Portugal Portugal - + PRC PRC - + PST8PDT PST8PDT - + ROC ROC - + ROK ROK - + Singapore Singapur - + Turkey Türkei - + UCT UCT - + Universal Universal - + UTC UTC - + W-SU W-SU - + WET WET - + Zulu Zulu - + Mono Mono - + Stereo Stereo - + Surround Surround - + 4GB DRAM (Default) 4GB DRAM (Standard) - + 6GB DRAM (Unsafe) 6GB DRAM (Unsicher) - + 8GB DRAM - + 10GB DRAM (Unsafe) - + 12GB DRAM (Unsafe) - + Low (128) - + Medium (256) - + High (512) @@ -1891,37 +1988,37 @@ When a guest attempts to open the controller applet, it is immediately closed.8GB DRAM (Unsicher) - + Docked Im Dock - + Handheld Handheld - + Boost (1700MHz) - + Fast (2000MHz) - + Always ask (Default) Immer fragen (Standard) - + Only if game specifies not to stop Nur wenn ein Spiel vorgibt, nicht zu stoppen - + Never ask Niemals fragen @@ -2274,27 +2371,27 @@ When a guest attempts to open the controller applet, it is immediately closed.Logging - + Open Log Location Log-Verzeichnis öffnen - + Global Log Filter Globaler Log-Filter - + When checked, the max size of the log increases from 100 MB to 1 GB Wenn diese Option aktiviert ist, erhöht sich die maximale Größe des Logs von 100 MB auf 1 GB - + Enable Extended Logging** Erweitertes Logging aktivieren** - + Show Log in Console Log in der Konsole zeigen @@ -2440,7 +2537,7 @@ When a guest attempts to open the controller applet, it is immediately closed. - **This will be reset automatically when eden closes. + **This will be reset automatically when Eden closes. @@ -2502,7 +2599,7 @@ When a guest attempts to open the controller applet, it is immediately closed.**Dies wird automatisch beim Schließen von yuzu zurückgesetzt. - + Web applet not compiled Web-Applet nicht kompiliert @@ -2552,7 +2649,7 @@ When a guest attempts to open the controller applet, it is immediately closed. - eden Configuration + Eden Configuration @@ -2561,88 +2658,88 @@ When a guest attempts to open the controller applet, it is immediately closed.Einige Einstellungen sind nur verfügbar, wenn kein Spiel aktiv ist. - + Applets - - + + Audio Audio - - + + CPU CPU - + Debug Debug - + Filesystem Dateisystem - - + + General Allgemein - - + + Graphics Grafik - + GraphicsAdvanced GraphicsAdvanced - + GraphicsExtensions - + Hotkeys Hotkeys - - + + Controls Steuerung - + Profiles Nutzer - + Network Netzwerk - - + + System System - + Game List Spieleliste - + Web Web @@ -2740,51 +2837,45 @@ When a guest attempts to open the controller applet, it is immediately closed. - - - Reset Metadata Cache Metadaten-Cache zurücksetzen - + Select Emulated NAND Directory... Emulierten NAND-Ordner auswählen... - + Select Emulated SD Directory... Emulierten SD-Ordner auswählen... - + Select Gamecard Path... Gamecard-Pfad auswählen... - + Select Dump Directory... Dump-Verzeichnis auswählen... - + Select Mod Load Directory... Mod-Ladeverzeichnis auswählen... - The metadata cache is already empty. - Der Metadaten-Cache ist bereits leer. + Der Metadaten-Cache ist bereits leer. - The operation completed successfully. - Der Vorgang wurde erfolgreich abgeschlossen. + Der Vorgang wurde erfolgreich abgeschlossen. - The metadata cache couldn't be deleted. It might be in use or non-existent. - Der Metadaten-Cache konnte nicht gelöscht werden. Er könnte in Gebrauch oder nicht vorhanden sein. + Der Metadaten-Cache konnte nicht gelöscht werden. Er könnte in Gebrauch oder nicht vorhanden sein. @@ -2815,12 +2906,12 @@ When a guest attempts to open the controller applet, it is immediately closed.yuzu - - eden + + Eden - + This reset all settings and remove all per-game configurations. This will not delete game directories, profiles, or input profiles. Proceed? Hierdurch werden alle Einstellungen zurückgesetzt und alle spielspezifischen Konfigurationen gelöscht. Spiel-Ordner, Profile oder Eingabeprofile werden nicht gelöscht. Fortfahren? @@ -2853,33 +2944,33 @@ When a guest attempts to open the controller applet, it is immediately closed.Hintergrundfarbe: - + % FSR sharpening percentage (e.g. 50%) % - + Off Aus - + VSync Off Vsync Aus - + Recommended Empfohlen - + On An - + VSync On Vsync An @@ -2916,14 +3007,18 @@ When a guest attempts to open the controller applet, it is immediately closed. - Vulkan Extension Settings + Vulkan Extensions Settings - - While it's recommended to use state 3, some games may perform better on lower states. Setting to 0 (disabled) may also break games. -If your GPU is older (i.e. RX570/580 or older), it may not support these features. If this is the case, set the slider to 0 and uncheck all boxes. -These settings are experimental, and may cause black screens. If your games fail to boot or are stuck on a black screen, change these settings around. + + % + Sample Shading percentage (e.g. 50%) + % + + + + Extended Dynamic State is disabled on macOS due to MoltenVK compatibility issues that cause black screens. @@ -2955,75 +3050,75 @@ These settings are experimental, and may cause black screens. If your games fail Standardwerte wiederherstellen - + Action Aktion - + Hotkey Hotkey - + Controller Hotkey Controller-Hotkey - - - + + + Conflicting Key Sequence Tastensequenz bereits belegt - - + + The entered key sequence is already assigned to: %1 Die eingegebene Sequenz ist bereits vergeben an: %1 - + [waiting] [wartet] - + Invalid Ungültig - + Invalid hotkey settings Ungültige Hotkey-Einstellungen - + An error occurred. Please report this issue on github. Ein Fehler fand statt. Bitte berichte dieses Problem auf GitHub. - + Restore Default Standardwerte wiederherstellen - + Clear Löschen - + Conflicting Button Sequence Widersprüchliche Tastenfolge - + The default button sequence is already assigned to: %1 Die Standard Tastenfolge ist bereits belegt von: %1 - + The default key sequence is already assigned to: %1 Die Standard-Sequenz ist bereits vergeben an: %1 @@ -3343,7 +3438,7 @@ These settings are experimental, and may cause black screens. If your games fail - Requires restarting eden + Requires restarting Eden @@ -3498,7 +3593,7 @@ These settings are experimental, and may cause black screens. If your games fail - + Left Stick Linker Analogstick @@ -3608,14 +3703,14 @@ These settings are experimental, and may cause black screens. If your games fail - + L L - + ZL ZL @@ -3634,7 +3729,7 @@ These settings are experimental, and may cause black screens. If your games fail - + Plus Plus @@ -3647,15 +3742,15 @@ These settings are experimental, and may cause black screens. If your games fail - - + + R R - + ZR ZR @@ -3700,7 +3795,7 @@ These settings are experimental, and may cause black screens. If your games fail - + Right Stick Rechter Analogstick @@ -3715,242 +3810,242 @@ These settings are experimental, and may cause black screens. If your games fail Konfigurieren - - - - + + + + Clear Löschen - - - - - + + + + + [not set] [nicht belegt] - - - + + + Invert button Knopf invertieren - - + + Toggle button Taste umschalten - + Turbo button Turbo Knopf - - + + Invert axis Achsen umkehren - - - + + + Set threshold Schwellwert festlegen - - + + Choose a value between 0% and 100% Wert zwischen 0% und 100% wählen - + Toggle axis Achse umschalten - + Set gyro threshold Gyro-Schwelle einstellen - + Calibrate sensor Kalibriere den Sensor - + Map Analog Stick Analog-Stick festlegen - + After pressing OK, first move your joystick horizontally, and then vertically. To invert the axes, first move your joystick vertically, and then horizontally. Nach dem Drücken von OK den Joystick zuerst horizontal, dann vertikal bewegen. Um die Achsen umzukehren, bewege den Joystick zuerst vertikal und dann horizontal. - + Center axis Achse zentrieren - - + + Deadzone: %1% Deadzone: %1% - - + + Modifier Range: %1% Modifikator-Radius: %1% - - + + Pro Controller Pro Controller - + Dual Joycons Zwei Joycons - + Left Joycon Linker Joycon - + Right Joycon Rechter Joycon - + Handheld Handheld - + GameCube Controller GameCube-Controller - + Poke Ball Plus Poke-Ball Plus - + NES Controller NES Controller - + SNES Controller SNES Controller - + N64 Controller N64 Controller - + Sega Genesis Sega Genesis - + Start / Pause Start / Pause - + Z Z - + Control Stick Analog Stick - + C-Stick C-Stick - + Shake! Schütteln! - + [waiting] [wartet] - + New Profile Neues Profil - + Enter a profile name: Profilnamen eingeben: - - + + Create Input Profile Eingabeprofil erstellen - + The given profile name is not valid! Angegebener Profilname ist nicht gültig! - + Failed to create the input profile "%1" Erstellen des Eingabeprofils "%1" ist fehlgeschlagen - + Delete Input Profile Eingabeprofil löschen - + Failed to delete the input profile "%1" Löschen des Eingabeprofils "%1" ist fehlgeschlagen - + Load Input Profile Eingabeprofil laden - + Failed to load the input profile "%1" Laden des Eingabeprofils "%1" ist fehlgeschlagen - + Save Input Profile Eingabeprofil speichern - + Failed to save the input profile "%1" Speichern des Eingabeprofils "%1" ist fehlgeschlagen @@ -4007,7 +4102,7 @@ Um die Achsen umzukehren, bewege den Joystick zuerst vertikal und dann horizonta - + Configure Einrichtung @@ -4043,7 +4138,7 @@ Um die Achsen umzukehren, bewege den Joystick zuerst vertikal und dann horizonta - + Test Testen @@ -4062,7 +4157,7 @@ Um die Achsen umzukehren, bewege den Joystick zuerst vertikal und dann horizonta <a href='https://yuzu-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> - + %1:%2 %1:%2 @@ -4071,77 +4166,77 @@ Um die Achsen umzukehren, bewege den Joystick zuerst vertikal und dann horizonta yuzu - + <a href='https://eden-emulator.github.io/wiki/using-a-controller-or-android-phone-for-motion-or-touch-input'><span style="text-decoration: underline; color:#039be5;">Learn More</span></a> - + Port number has invalid characters Port-Nummer hat ungültige Zeichen - - - - - - - eden + + + + + + + Eden - + Port has to be in range 0 and 65353 Port muss zwischen 0 und 65353 liegen - + IP address is not valid IP Adresse ist ungültig - + This UDP server already exists Dieser UDP-Server existiert bereits - + Unable to add more than 8 servers Es können nicht mehr als 8 Server hinzugefügt werden - + Testing Testen - + Configuring Einrichten - + Test Successful Test erfolgreich - + Successfully received data from the server. Daten wurden erfolgreich vom Server empfangen. - + Test Failed Test fehlgeschlagen - + 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. Konnte keine Daten vom Server empfangen.<br>Prüfe bitte, dass der Server korrekt eingerichtet wurde und dass Adresse und Port korrekt sind. - + UDP Test or calibration configuration is in progress.<br>Please wait for them to finish. UDP-Test oder Kalibration wird gerade durchgeführt.<br>Bitte warte einen Moment. @@ -4268,7 +4363,12 @@ Aktuell liegen die Werte bei %1% bzw. %2%. Netzwerkinterface - + + Enable Airplane Mode + + + + None Keiner @@ -4326,52 +4426,52 @@ Aktuell liegen die Werte bei %1% bzw. %2%. Einige Einstellungen sind nur verfügbar, wenn kein Spiel aktiv ist. - + Add-Ons Add-Ons - + System System - + CPU CPU - + Graphics Grafik - + Adv. Graphics Erw. Grafik - + GPU Extensions - + Audio Audio - + Input Profiles Eingabe-Profile - + Linux Linux - + Properties Einstellungen @@ -4389,12 +4489,12 @@ Aktuell liegen die Werte bei %1% bzw. %2%. Add-Ons - + Patch Name Patchname - + Version Version @@ -4432,27 +4532,32 @@ Aktuell liegen die Werte bei %1% bzw. %2%. Bild wählen - + + Select Avatar + + + + Add Hinzufügen - + Rename Umbenennen - + Remove Entfernen - + Profile management is available only when game is not running. Die Nutzerverwaltung ist nur verfügbar, wenn kein Spiel aktiv ist. - + %1 %2 %1 is the profile username, %2 is the formatted UUID (e.g. 00112233-4455-6677-8899-AABBCCDDEEFF)) @@ -4460,100 +4565,189 @@ Aktuell liegen die Werte bei %1% bzw. %2%. %2 - + Enter Username Nutzername eingeben - + Users Nutzer - + Enter a username for the new user: Gib einen Benutzernamen für den neuen Benutzer ein: - + Enter a new username: Gib einen neuen Nutzernamen ein: - + + Error saving user image + + + + + Unable to save image to file + + + + Select User Image Profilbild wählen - - JPEG Images (*.jpg *.jpeg) - JPEG Bilddateien (*.jpg *.jpeg) + + Image Formats (*.jpg *.jpeg *.png *.bmp) + - + + No firmware available + Keine Firmware verfügbar + + + + Please install the firmware to use firmware avatars. + + + + + + Error loading archive + + + + + Archive is not available. Please install/reinstall firmware. + + + + + Archive does not contain romfs. It is probably corrupt. + + + + + Error extracting archive + + + + + Archive could not be extracted. It is probably corrupt. + + + + + Error finding image directory + + + + + Failed to find image directory in the archive. + + + + + No images found + + + + + No avatar images were found in the archive. + + + + JPEG Images (*.jpg *.jpeg) + JPEG Bilddateien (*.jpg *.jpeg) + + + Error deleting image Fehler beim Löschen des Bildes - + Error occurred attempting to overwrite previous image at: %1. Fehler beim Überschreiben des vorherigen Bildes bei: %1 - + Error deleting file Fehler beim Löschen der Datei - + Unable to delete existing file: %1. Konnte die bestehende Datei "%1" nicht löschen. - + Error creating user image directory Fehler beim Erstellen des Ordners für die Profilbilder - + Unable to create directory %1 for storing user images. Konnte Ordner "%1" nicht erstellen, um Profilbilder zu speichern. - Error copying user image - Fehler beim Kopieren des Profilbildes + Fehler beim Kopieren des Profilbildes - Unable to copy image from %1 to %2 - Das Bild konnte nicht von "%1" nach "%2" kopiert werden + Das Bild konnte nicht von "%1" nach "%2" kopiert werden - Error resizing user image - Fehler bei der Größenänderung des Benutzerbildes + Fehler bei der Größenänderung des Benutzerbildes - Unable to resize image - Die Bildgröße kann nicht angepasst werden. + Die Bildgröße kann nicht angepasst werden. + + + + ConfigureProfileManagerAvatarDialog + + + Select + + + + + Cancel + Abbrechen + + + + Background Color + + + + + Select Firmware Avatar + ConfigureProfileManagerDeleteDialog - + Delete this user? All of the user's save data will be deleted. Diesen Benutzer löschen? Alle Speicherdaten des Benutzers werden gelöscht. - + Confirm Delete Löschen bestätigen - + Name: %1 UUID: %2 Name: %1 @@ -4606,7 +4800,7 @@ UUID: %2 - + Enable Aktiviere @@ -4617,7 +4811,7 @@ UUID: %2 - + Not connected Nicht verbunden @@ -4627,63 +4821,63 @@ UUID: %2 Standardwerte wiederherstellen - + Clear Löschen - + [not set] [nicht belegt] - + Invert axis Achsen umkehren - - + + Deadzone: %1% Deadzone: %1% - + Error enabling ring input Fehler beim Aktivieren des Ring-Inputs - + Direct Joycon driver is not enabled Direkter JoyCon-Treiber ist nicht aktiviert - + Configuring Einrichten - + The current mapped device doesn't support the ring controller Das aktuell zugeordnete Gerät unterstützt den Ringcontroller nicht - + The current mapped device doesn't have a ring attached Das aktuell genutzte Gerät ist nicht mit dem Ring-Con verbunden - + The current mapped device is not connected Das aktuell zugeordnete Gerät ist nicht verbunden - + Unexpected driver result %1 Unerwartetes Treiber Ergebnis %1 - + [waiting] [wartet] @@ -4725,7 +4919,7 @@ UUID: %2 - <html><head/><body><p>Reads controller input from scripts in the same format as TAS-nx scripts.<br/>For a more detailed explanation, please consult the <a href="https://eden-emulator.github.io/help/feature/tas/"><span style=" text-decoration: underline; color:#039be5;">help page</span></a> on the eden website.</p></body></html> + <html><head/><body><p>Reads controller input from scripts in the same format as TAS-nx scripts.<br/>For a more detailed explanation, please consult the <a href="https://eden-emulator.github.io/help/feature/tas/"><span style=" text-decoration: underline; color:#039be5;">help page</span></a> on the Eden website.</p></body></html> @@ -4777,12 +4971,12 @@ UUID: %2 ConfigureTasDialog - + TAS Configuration TAS-Konfiguration - + Select TAS Load Directory... TAS-Lade-Verzeichnis auswählen... @@ -4892,7 +5086,7 @@ Ziehe die Punkte mit deiner Maus, um ihre Position zu ändern. Doppelklicke auf - Warning: The settings in this page affect the inner workings of eden's emulated touchscreen. Changing them may result in undesirable behavior, such as the touchscreen partially or not working. You should only use this page if you know what you are doing. + Warning: The settings in this page affect the inner workings of Eden's emulated touchscreen. Changing them may result in undesirable behavior, such as the touchscreen partially or not working. You should only use this page if you know what you are doing. @@ -5212,6 +5406,16 @@ Ziehe die Punkte mit deiner Maus, um ihre Position zu ändern. Doppelklicke auf Web Web + + + Eden Web Service + + + + + Generate + + yuzu Web Service yuzu Web Service @@ -5221,42 +5425,29 @@ Ziehe die Punkte mit deiner Maus, um ihre Position zu ändern. Doppelklicke auf Mit dem Bereitstellen deines Benutzernamens und Tokens erlaubst du yuzu, zusätzliche Nutzungsdaten zu sammeln. Diese könnten auch Informationen beinhalten, die dich identifizieren könnten. - - eden Web Service - - - - - By providing your username and token, you agree to allow eden to collect additional usage data, which may include user identifying information. - - - - Verify - Überprüfen + Überprüfen - Sign up - Registrieren + Registrieren - + Token: Token: - + Username: Nutzername: - What is my token? - Was ist mein Token? + Was ist mein Token? - + Web Service configuration can only be changed when a public room isn't being hosted. Die Konfiguration des Webservice kann nur geändert werden, wenn kein öffentlicher Raum gehostet wird. @@ -5281,12 +5472,12 @@ Ziehe die Punkte mit deiner Maus, um ihre Position zu ändern. Doppelklicke auf Neu generieren - + Discord Presence Discord-Präsenz - + Show Current Game in your Discord Status Zeig dein momentanes Spiel in deinem Discord-Status @@ -5295,24 +5486,8 @@ Ziehe die Punkte mit deiner Maus, um ihre Position zu ändern. Doppelklicke auf <a href='https://yuzu-emu.org/help/feature/telemetry/'><span style="text-decoration: underline; color:#039be5;">Mehr erfahren</span></a> - <a href='https://profile.yuzu-emu.org/'><span style="text-decoration: underline; color:#039be5;">Sign up</span></a> - <a href='https://profile.yuzu-emu.org/'><span style="text-decoration: underline; color:#039be5;">Registrieren</span></a> - - - - <a href='https://evilperson1337.notion.site/Hosting-a-Room-Inside-of-Eden-20457c2edaf680108abac6215a79acdb'><span style="text-decoration: underline; color:#039be5;">What is my token?</span></a> - - - - - Warning - - - - - Verification is currently nonfunctional, instead generate a random 48-character string with only lowercase a-z. - + <a href='https://profile.yuzu-emu.org/'><span style="text-decoration: underline; color:#039be5;">Registrieren</span></a> <a href='https://yuzu-emu.org/wiki/yuzu-web-service/'><span style="text-decoration: underline; color:#039be5;">What is my token?</span></a> @@ -5335,10 +5510,9 @@ Ziehe die Punkte mit deiner Maus, um ihre Position zu ändern. Doppelklicke auf Token wurde nicht verfiziert. Die Änderungen an deinem Token wurden nicht gespeichert. - Unverified, please click Verify before saving configuration Tooltip - Nicht verifiziert, vor dem Speichern Verifizieren wählen + Nicht verifiziert, vor dem Speichern Verifizieren wählen Verifying... @@ -5362,20 +5536,67 @@ Ziehe die Punkte mit deiner Maus, um ihre Position zu ändern. Doppelklicke auf Verification failed. Check that you have entered your token correctly, and that your internet connection is working. Verifizierung fehlgeschlagen. Prüfe ob dein Nutzername und Token richtig eingegeben wurden und ob deine Internetverbindung korrekt funktioniert. + + + + All Good + Tooltip + + + + + Must be between 4-20 characters + Tooltip + + + + + Must be 48 characters, and lowercase a-z + Tooltip + + ControllerDialog - + Controller P1 Controller P1 - + &Controller P1 &Controller P1 + + DepsDialog + + + Eden Dependencies + + + + + <html><head/><body><p><span style=" font-size:28pt;">Eden Dependencies</span></p></body></html> + + + + + <html><head/><body><p>The projects that make Eden possible</p></body></html> + + + + + Dependency + + + + + Version + Version + + DirectConnect @@ -5483,7 +5704,12 @@ Wenn Sie immer noch keine Verbindung herstellen können, wenden Sie sich an den - Creating a room failed. Please retry. Restarting eden might be necessary. + Creating a room failed. Please retry. Restarting Eden might be necessary. + + + + + Version mismatch! Please update to the latest version of Eden. If the problem persists, contact the room host and ask them to update the server. @@ -5491,11 +5717,6 @@ Wenn Sie immer noch keine Verbindung herstellen können, wenden Sie sich an den The host of the room has banned you. Speak with the host to unban you or try a different room. Der Ersteller des Raumes hat dich gebannt. Wende dich an den Ersteller, um den Bann aufzuheben oder probiere einen anderen Raum aus. - - - Version mismatch! Please update to the latest version of eden. If the problem persists, contact the room host and ask them to update the server. - - Incorrect password. @@ -5557,7 +5778,7 @@ Bitte gehen Sie zu Konfigurieren -> System -> Netzwerk und treffen Sie ein Telemetrie - + Broken Vulkan Installation Detected Defekte Vulkan-Installation erkannt @@ -5566,106 +5787,105 @@ Bitte gehen Sie zu Konfigurieren -> System -> Netzwerk und treffen Sie ein Vulkan Initialisierung fehlgeschlagen.<br><br>Klicken Sie auf <a href='https://yuzu-emu.org/wiki/faq/#yuzu-starts-with-the-error-broken-vulkan-installation-detected'>für Instruktionen zur Problembehebung.</a>. - + Running a game TRANSLATORS: This string is shown to the user to explain why yuzu needs to prevent the computer from sleeping Spiel wird ausgeführt - + Loading Web Applet... Lade Web-Applet... - - + + Disable Web Applet Deaktiviere die Web Applikation - + Disabling the web applet can lead to undefined behavior and should only be used with Super Mario 3D All-Stars. Are you sure you want to disable the web applet? (This can be re-enabled in the Debug settings.) Deaktivieren des Web-Applets kann zu undefiniertem Verhalten führen, und sollte nur mit Super Mario 3D All-Stars benutzt werden. Bist du sicher, dass du das Web-Applet deaktivieren möchtest? (Dies kann in den Debug-Einstellungen wieder aktiviert werden.) - + The amount of shaders currently being built Wie viele Shader im Moment kompiliert werden - + The current selected resolution scaling multiplier. Der momentan ausgewählte Auflösungsskalierung Multiplikator. - + Current emulation speed. Values higher or lower than 100% indicate emulation is running faster or slower than a Switch. Derzeitige Emulations-Geschwindigkeit. Werte höher oder niedriger als 100% zeigen, dass die Emulation scheller oder langsamer läuft als auf einer Switch. - + How many frames per second the game is currently displaying. This will vary from game to game and scene to scene. Wie viele Bilder pro Sekunde angezeigt werden variiert von Spiel zu Spiel und von Szene zu Szene. - + Time taken to emulate a Switch frame, not counting framelimiting or v-sync. For full-speed emulation this should be at most 16.67 ms. Zeit, die gebraucht wurde, um einen Switch-Frame zu emulieren, ohne Framelimit oder V-Sync. Für eine Emulation bei voller Geschwindigkeit sollte dieser Wert bei höchstens 16.67ms liegen. - + Unmute Ton aktivieren - + Mute Stummschalten - + Reset Volume Ton zurücksetzen - + &Clear Recent Files &Zuletzt geladene Dateien leeren - + &Continue &Fortsetzen - + &Pause &Pause - Warning Outdated Game Format - Warnung veraltetes Spielformat + Warnung veraltetes Spielformat You are using the deconstructed ROM directory format for this game, which is an outdated format that has been superseded by others such as NCA, NAX, XCI, or NSP. Deconstructed ROM directories lack icons, metadata, and update support.<br><br>For an explanation of the various Switch formats yuzu supports, <a href='https://yuzu-emu.org/wiki/overview-of-switch-game-formats'>check out our wiki</a>. This message will not be shown again. Du nutzt eine entpackte ROM-Ordnerstruktur für dieses Spiel, welches ein veraltetes Format ist und von anderen Formaten wie NCA, NAX, XCI oder NSP überholt wurde. Entpackte ROM-Ordner unterstützen keine Icons, Metadaten oder Updates.<br><br><a href='https://yuzu-emu.org/wiki/overview-of-switch-game-formats'>Unser Wiki</a> enthält eine Erklärung der verschiedenen Formate, die yuzu unterstützt. Diese Nachricht wird nicht noch einmal angezeigt. - - + + Error while loading ROM! ROM konnte nicht geladen werden! - + The ROM format is not supported. ROM-Format wird nicht unterstützt. - + An error occurred initializing the video core. Beim Initialisieren des Video-Kerns ist ein Fehler aufgetreten. @@ -5676,7 +5896,7 @@ Dies ist in der Regel auf veraltete GPU Treiber zurückzuführen, integrierte GP Bitte öffnen Sie die Log Datei für weitere Informationen. Für weitere Informationen wie Sie auf die Log Datei zugreifen, öffnen Sie bitte die folgende Seite: <a href='https://yuzu-emu.org/help/reference/log-files/'>Wie wird eine Log Datei hochgeladen?</a>. - + Error while loading ROM! %1 %1 signifies a numeric error code. ROM konnte nicht geladen werden! %1 @@ -5687,473 +5907,405 @@ Bitte öffnen Sie die Log Datei für weitere Informationen. Für weitere Informa %1<br>Bitte folge der <a href='https://yuzu-emu.org/help/quickstart/'>yuzu-Schnellstart-Anleitung</a> um deine Dateien zu extrahieren.<br>Hilfe findest du im yuzu-Wiki</a> oder dem yuzu-Discord</a>. - + Vulkan initialization failed during boot.<br><br>Click <a href='https://eden-emulator.github.io/wiki/faq/#yuzu-starts-with-the-error-broken-vulkan-installation-detected'>here for instructions to fix the issue</a>. - - Game Updates Warning - - - - - The game you are trying to launch is known to have performance or booting issues when updates are applied. Please try increasing the memory layout to 6GB or 8GB if any issues occur.<br><br>Press "OK" to continue launching, or "Cancel" to cancel the launch. - - - - - Don't show again for this game - - - - - You are using the deconstructed ROM directory format for this game, which is an outdated format that has been superseded by others such as NCA, NAX, XCI, or NSP. Deconstructed ROM directories lack icons, metadata, and update support.<br><br>For an explanation of the various Switch formats eden supports, <a href='https://eden-emulator.github.io/wiki/overview-of-switch-game-formats'>check out our wiki</a>. This message will not be shown again. - - - - - eden has encountered an error while running the video core. This is usually caused by outdated GPU drivers, including integrated ones. Please see the log for more details. For more information on accessing the log, please see the following page: <a href='https://eden-emulator.github.io/help/reference/log-files/'>How to Upload the Log File</a>. - - - - - %1<br>Please redump your files or ask on Discord for help. - %1 signifies an error string. - - - - + An unknown error occurred. Please see the log for more details. Ein unbekannter Fehler ist aufgetreten. Bitte prüfe die Log-Dateien auf mögliche Fehlermeldungen. - + (64-bit) (64-Bit) - + (32-bit) (32-Bit) - + %1 %2 %1 is the title name. %2 indicates if the title is 64-bit or 32-bit %1 %2 - + Closing software... Schließe Software... - + Save Data Speicherdaten - + Mod Data Mod-Daten - + Error Opening %1 Folder Konnte Verzeichnis %1 nicht öffnen - - + + Folder does not exist! Verzeichnis existiert nicht! - Error Opening Transferable Shader Cache - Fehler beim Öffnen des transferierbaren Shader-Caches + Fehler beim Öffnen des transferierbaren Shader-Caches - Failed to create the shader cache directory for this title. - Fehler beim erstellen des Shader-Cache-Ordner für den ausgewählten Titel. + Fehler beim erstellen des Shader-Cache-Ordner für den ausgewählten Titel. - Error Removing Contents - Fehler beim Entfernen des Inhalts + Fehler beim Entfernen des Inhalts - Error Removing Update - Fehler beim Entfernen des Updates + Fehler beim Entfernen des Updates - Error Removing DLC - Fehler beim Entfernen des DLCs + Fehler beim Entfernen des DLCs - + Remove Installed Game Contents? Installierten Spiele-Content entfernen? - + Remove Installed Game Update? Installierte Spiele-Updates entfernen? - + Remove Installed Game DLC? Installierte Spiele-DLCs entfernen? - + Remove Entry Eintrag entfernen - - - - - - Successfully Removed - Erfolgreich entfernt + Erfolgreich entfernt - Successfully removed the installed base game. - Das Spiel wurde entfernt. + Das Spiel wurde entfernt. - The base game is not installed in the NAND and cannot be removed. - Das Spiel ist nicht im NAND installiert und kann somit nicht entfernt werden. + Das Spiel ist nicht im NAND installiert und kann somit nicht entfernt werden. - Successfully removed the installed update. - Das Update wurde entfernt. + Das Update wurde entfernt. - There is no update installed for this title. - Es ist kein Update für diesen Titel installiert. + Es ist kein Update für diesen Titel installiert. - There are no DLC installed for this title. - Es sind keine DLC für diesen Titel installiert. + Es sind keine DLC für diesen Titel installiert. - Successfully removed %1 installed DLC. - %1 DLC entfernt. + %1 DLC entfernt. - + Delete OpenGL Transferable Shader Cache? Transferierbaren OpenGL Shader Cache löschen? - + Delete Vulkan Transferable Shader Cache? Transferierbaren Vulkan Shader Cache löschen? - + Delete All Transferable Shader Caches? Alle transferierbaren Shader Caches löschen? - + Remove Custom Game Configuration? Spiel-Einstellungen entfernen? - + Remove Cache Storage? Cache-Speicher entfernen? - + Remove File Datei entfernen - + Remove Play Time Data Spielzeit-Daten enfernen - + Reset play time? Spielzeit zurücksetzen? - - Error Removing Transferable Shader Cache - Fehler beim Entfernen + Fehler beim Entfernen - - A shader cache for this title does not exist. - Es existiert kein Shader-Cache für diesen Titel. + Es existiert kein Shader-Cache für diesen Titel. - Successfully removed the transferable shader cache. - Der transferierbare Shader-Cache wurde entfernt. + Der transferierbare Shader-Cache wurde entfernt. - Failed to remove the transferable shader cache. - Konnte den transferierbaren Shader-Cache nicht entfernen. + Konnte den transferierbaren Shader-Cache nicht entfernen. - Error Removing Vulkan Driver Pipeline Cache - Fehler beim Entfernen des Vulkan-Pipeline-Cache + Fehler beim Entfernen des Vulkan-Pipeline-Cache - Failed to remove the driver pipeline cache. - Fehler beim Entfernen des Driver-Pipeline-Cache + Fehler beim Entfernen des Driver-Pipeline-Cache - - Error Removing Transferable Shader Caches - Fehler beim Entfernen der transferierbaren Shader Caches + Fehler beim Entfernen der transferierbaren Shader Caches - Successfully removed the transferable shader caches. - Die übertragbaren Shader-Caches wurden erfolgreich entfernt. + Die übertragbaren Shader-Caches wurden erfolgreich entfernt. - Failed to remove the transferable shader cache directory. - Entfernen des transferierbaren Shader-Cache-Verzeichnisses fehlgeschlagen. + Entfernen des transferierbaren Shader-Cache-Verzeichnisses fehlgeschlagen. - - Error Removing Custom Configuration - Fehler beim Entfernen + Fehler beim Entfernen - A custom configuration for this title does not exist. - Es existieren keine Spiel-Einstellungen für dieses Spiel. + Es existieren keine Spiel-Einstellungen für dieses Spiel. - Successfully removed the custom game configuration. - Die Spiel-Einstellungen wurden entfernt. + Die Spiel-Einstellungen wurden entfernt. - Failed to remove the custom game configuration. - Die Spiel-Einstellungen konnten nicht entfernt werden. + Die Spiel-Einstellungen konnten nicht entfernt werden. - - + + RomFS Extraction Failed! RomFS-Extraktion fehlgeschlagen! - + There was an error copying the RomFS files or the user cancelled the operation. Das RomFS konnte wegen eines Fehlers oder Abbruchs nicht kopiert werden. - + Full Komplett - + Skeleton Nur Ordnerstruktur - + Select RomFS Dump Mode RomFS Extraktions-Modus auswählen - + Please select the how you would like the RomFS dumped.<br>Full will copy all of the files into the new directory while <br>skeleton will only create the directory structure. Bitte wähle, wie das RomFS gespeichert werden soll.<br>"Full" wird alle Dateien des Spiels extrahieren, während <br>"Skeleton" nur die Ordnerstruktur erstellt. - + There is not enough free space at %1 to extract the RomFS. Please free up space or select a different dump directory at Emulation > Configure > System > Filesystem > Dump Root Es ist nicht genügend Speicher (%1) vorhanden um das RomFS zu entpacken. Bitte sorge für genügend Speicherplatze oder wähle ein anderes Verzeichnis aus. (Emulation > Konfiguration > System > Dateisystem > Dump Root) - + Extracting RomFS... RomFS wird extrahiert... - - - - - + + Cancel Abbrechen - + RomFS Extraction Succeeded! RomFS wurde extrahiert! - - - + The operation completed successfully. Der Vorgang wurde erfolgreich abgeschlossen. - Integrity verification couldn't be performed! - Integritätsüberprüfung konnte nicht durchgeführt werden! + Integritätsüberprüfung konnte nicht durchgeführt werden! - File contents were not checked for validity. - Datei-Inhalte wurden nicht auf Gültigkeit überprüft. + Datei-Inhalte wurden nicht auf Gültigkeit überprüft. - - Verifying integrity... - Überprüfe Integrität… + Überprüfe Integrität… - - Integrity verification succeeded! - Integritätsüberprüfung erfolgreich! + Integritätsüberprüfung erfolgreich! - - Integrity verification failed! - Integritätsüberprüfung fehlgeschlagen! + Integritätsüberprüfung fehlgeschlagen! - File contents may be corrupt. - Datei-Inhalte könnten defekt sein. + Datei-Inhalte könnten defekt sein. - - - - Create Shortcut - Verknüpfung erstellen + Verknüpfung erstellen - Do you want to launch the game in fullscreen? - Möchtest du das Spiel im Vollbild starten? + Möchtest du das Spiel im Vollbild starten? - Successfully created a shortcut to %1 - Verknüpfung wurde erfolgreich erstellt unter %1 + Verknüpfung wurde erfolgreich erstellt unter %1 - This will create a shortcut to the current AppImage. This may not work well if you update. Continue? - Dies wird eine Verknüpfung zum aktuellen AppImage erstellen. Dies könnte nicht gut funktionieren falls du aktualisierst. Fortfahren? + Dies wird eine Verknüpfung zum aktuellen AppImage erstellen. Dies könnte nicht gut funktionieren falls du aktualisierst. Fortfahren? - Failed to create a shortcut to %1 - Erstellen einer Verknüpfung zu %1 fehlgeschlagen + Erstellen einer Verknüpfung zu %1 fehlgeschlagen - Create Icon - Icon erstellen + Icon erstellen - Cannot create icon file. Path "%1" does not exist and cannot be created. - Symboldatei konnte nicht erstellt werden. Der Pfad "%1" existiert nicht oder kann nicht erstellt werden. + Symboldatei konnte nicht erstellt werden. Der Pfad "%1" existiert nicht oder kann nicht erstellt werden. - + + Warning: Outdated Game Format + + + + + You are using the deconstructed ROM directory format for this game, which is an outdated format that has been superseded by others such as NCA, NAX, XCI, or NSP. Deconstructed ROM directories lack icons, metadata, and update support.<br><br>For an explanation of the various Switch formats Eden supports, <a href='https://eden-emulator.github.io/wiki/overview-of-switch-game-formats'>check out our wiki</a>. This message will not be shown again. + + + + + Eden has encountered an error while running the video core. This is usually caused by outdated GPU drivers, including integrated ones. Please see the log for more details. For more information on accessing the log, please see the following page: <a href='https://yuzu-mirror.github.io/help/reference/log-files/'>How to Upload the Log File</a>. + + + + + %1<br>Please redump your files or ask on Discord/Revolt for help. + %1 signifies an error string. + + + + Error Opening %1 Fehler beim Öffnen von %1 - + Select Directory Verzeichnis auswählen - + Properties Einstellungen - + The game properties could not be loaded. Spiel-Einstellungen konnten nicht geladen werden. - + Switch Executable (%1);;All Files (*.*) %1 is an identifier for the Switch executable file extensions. Switch-Programme (%1);;Alle Dateien (*.*) - + Load File Datei laden - + Open Extracted ROM Directory Öffne das extrahierte ROM-Verzeichnis - + Invalid Directory Selected Ungültiges Verzeichnis ausgewählt - + The directory you have selected does not contain a 'main' file. Das Verzeichnis, das du ausgewählt hast, enthält keine 'main'-Datei. - + Installable Switch File (*.nca *.nsp *.xci);;Nintendo Content Archive (*.nca);;Nintendo Submission Package (*.nsp);;NX Cartridge Image (*.xci) Installierbares Switch-Programm (*.nca *.nsp *.xci);;Nintendo Content Archive (*.nca);;Nintendo Submissions Package (*.nsp);;NX Cartridge Image (*.xci) - + Install Files Dateien installieren - + %n file(s) remaining %n Datei verbleibend @@ -6161,25 +6313,25 @@ Bitte öffnen Sie die Log Datei für weitere Informationen. Für weitere Informa - + Installing file "%1"... Datei "%1" wird installiert... - - + + Install Results NAND-Installation - + To avoid possible conflicts, we discourage users from installing base games to the NAND. Please, only use this feature to install updates and DLC. Um Konflikte zu vermeiden, raten wir Nutzern davon ab, Spiele im NAND zu installieren. Bitte nutze diese Funktion nur zum Installieren von Updates und DLC. - + %n file(s) were newly installed @@ -6190,7 +6342,7 @@ Bitte nutze diese Funktion nur zum Installieren von Updates und DLC. - + %n file(s) were overwritten @@ -6201,7 +6353,7 @@ Bitte nutze diese Funktion nur zum Installieren von Updates und DLC. - + %n file(s) failed to install @@ -6212,491 +6364,467 @@ Bitte nutze diese Funktion nur zum Installieren von Updates und DLC. - + System Application Systemanwendung - + System Archive Systemarchiv - + System Application Update Systemanwendungsupdate - + Firmware Package (Type A) Firmware-Paket (Typ A) - + Firmware Package (Type B) Firmware-Paket (Typ B) - + Game Spiel - + Game Update Spiel-Update - + Game DLC Spiel-DLC - + Delta Title Delta-Titel - + Select NCA Install Type... Wähle den NCA-Installationstyp aus... - + Please select the type of title you would like to install this NCA as: (In most instances, the default 'Game' is fine.) Bitte wähle, als was diese NCA installiert werden soll: (In den meisten Fällen sollte die Standardeinstellung 'Spiel' ausreichen.) - + Failed to Install Installation fehlgeschlagen - + The title type you selected for the NCA is invalid. Der Titel-Typ, den du für diese NCA ausgewählt hast, ist ungültig. - + File not found Datei nicht gefunden - + File "%1" not found Datei "%1" nicht gefunden - + OK OK - - + + Hardware requirements not met Hardwareanforderungen nicht erfüllt - - + + Your system does not meet the recommended hardware requirements. Compatibility reporting has been disabled. Dein System erfüllt nicht die empfohlenen Mindestanforderungen der Hardware. Meldung der Komptabilität wurde deaktiviert. - + Missing yuzu Account Fehlender yuzu-Account - - In order to submit a game compatibility test case, you must link your eden account.<br><br/>To link your eden account, go to Emulation &gt; Configuration &gt; Web. + + In order to submit a game compatibility test case, you must set up your web token and username.<br><br/>To link your eden account, go to Emulation &gt; Configuration &gt; Web. - - Install decryption keys and restart eden before attempting to install firmware. + + Select Dumped Firmware ZIP - - Firmware installation cancelled, firmware may be in bad state, restart eden or re-install firmware. + + Zipped Archives (*.zip) - - Encryption keys are missing. + + Firmware cleanup failed - - Are you sure you want to close eden? + + Failed to clean up extracted firmware cache. +Check write permissions in the system temp directory and try again. +OS reported error: %1 - - - - eden + + Please install firmware to use the Album applet. - - The currently running application has requested eden to not exit. + + Please install firmware to use the Cabinet applet. + + + + + Please install firmware to use the Mii editor. + + + + + Please install firmware to use the Controller Menu. + + + + + Please install firmware to use the Home Menu. + + + + + Firmware Corrupted + + + + + Firmware Too New + + + + + +Continue anyways? + + + + + Don't show again + + + + + Please install firmware to use Starter. + + + + + Are you sure you want to close Eden? + + + + + + + Eden + + + + + The currently running application has requested Eden to not exit. Would you like to bypass this and exit anyway? + + + Encryption keys are missing. + + In order to submit a game compatibility test case, you must link your yuzu account.<br><br/>To link your yuzu account, go to Emulation &gt; Configuration &gt; Web. Um einen Kompatibilitätsbericht abzuschicken, musst du einen yuzu-Account mit yuzu verbinden.<br><br/>Um einen yuzu-Account zu verbinden, prüfe die Einstellungen unter Emulation &gt; Konfiguration &gt; Web. - + Error opening URL Fehler beim Öffnen der URL - + Unable to open the URL "%1". URL "%1" kann nicht geöffnet werden. - + TAS Recording TAS Aufnahme - + Overwrite file of player 1? Datei von Spieler 1 überschreiben? - + Invalid config detected Ungültige Konfiguration erkannt - + Handheld controller can't be used on docked mode. Pro controller will be selected. Handheld-Controller können nicht im Dock verwendet werden. Der Pro-Controller wird verwendet. - - + + Amiibo Amiibo - - + + The current amiibo has been removed Das aktuelle Amiibo wurde entfernt - + Error Fehler - - + + The current game is not looking for amiibos Das aktuelle Spiel sucht nicht nach Amiibos - + Amiibo File (%1);; All Files (*.*) Amiibo-Datei (%1);; Alle Dateien (*.*) - + Load Amiibo Amiibo laden - + Error loading Amiibo data Fehler beim Laden der Amiibo-Daten - + The selected file is not a valid amiibo Die ausgewählte Datei ist keine gültige Amiibo - + The selected file is already on use Die ausgewählte Datei wird bereits verwendet - + An unknown error occurred Ein unbekannter Fehler ist aufgetreten - - Verification failed for the following files: %1 - Überprüfung für die folgenden Dateien ist fehlgeschlagen: + Überprüfung für die folgenden Dateien ist fehlgeschlagen: %1 - + + Keys not installed - + + + Install decryption keys and restart Eden before attempting to install firmware. + + + + Select Dumped Firmware Source Location - - Installing Firmware... - - - - - - - - Firmware install failed - - - - - Unable to locate potential firmware NCA files - - - - - Failed to delete one or more firmware file. - - - - - One or more firmware files failed to copy into NAND. - - - - - Firmware integrity verification failed! - - - - - Select Dumped Keys Location - - - - - - - Decryption Keys install failed - - - - - prod.keys is a required decryption key file. - - - - - One or more keys failed to copy. - - - - - Decryption Keys install succeeded - - - - - Decryption Keys were successfully installed - - - - - Decryption Keys failed to initialize. Check that your dumping tools are up to date and re-dump keys. - - - - - - - - - - + + + + + + No firmware available Keine Firmware verfügbar - Please install the firmware to use the Album applet. - Bitte installiere die Firmware um das Album-Applet zu nutzen. + Bitte installiere die Firmware um das Album-Applet zu nutzen. - + Album Applet Album-Applet - + Album applet is not available. Please reinstall firmware. Album-Applet ist nicht verfügbar. Bitte Firmware erneut installieren. - Please install the firmware to use the Cabinet applet. - Bitte installiere die Firmware um das Cabinet-Applet zu nutzen. + Bitte installiere die Firmware um das Cabinet-Applet zu nutzen. - + Cabinet Applet Cabinet-Applet - + Cabinet applet is not available. Please reinstall firmware. Cabinet-Applet ist nicht verfügbar. Bitte Firmware erneut installieren. - Please install the firmware to use the Mii editor. - Bitte installiere die Firmware um den Mii-Editor zu nutzen. + Bitte installiere die Firmware um den Mii-Editor zu nutzen. - + Mii Edit Applet Mii-Edit-Applet - + Mii editor is not available. Please reinstall firmware. Mii-Editor ist nicht verfügbar. Bitte Firmware erneut installieren. - Please install the firmware to use the Controller Menu. - Bitte installiere die Firmware um das Controller-Menü zu nutzen + Bitte installiere die Firmware um das Controller-Menü zu nutzen - + Controller Applet Controller-Applet - + Controller Menu is not available. Please reinstall firmware. Controller-Menü ist nicht verfügbar. Bitte Firmware erneut installieren. - - Please install the firmware to use the Home Menu. - - - - - + Home Menu Applet - - + Home Menu is not available. Please reinstall firmware. - - Please install the firmware to use Starter. - - - - + Starter Applet - + Starter is not available. Please reinstall firmware. - - Please install firmware to use the home menu. - - - - + Capture Screenshot Screenshot aufnehmen - + PNG Image (*.png) PNG Bild (*.png) - + Update Available - + Update %1 for Eden is available. Would you like to download it? - + TAS state: Running %1/%2 TAS Zustand: Läuft %1/%2 - + TAS state: Recording %1 TAS Zustand: Aufnahme %1 - + TAS state: Idle %1/%2 TAS-Status: Untätig %1/%2 - + TAS State: Invalid TAS Zustand: Ungültig - + &Stop Running &Stoppe Ausführung - + &Start &Start - + Stop R&ecording Aufnahme stoppen - + R&ecord Aufnahme - + Building: %n shader(s) Erstelle: %n Shader @@ -6704,18 +6832,18 @@ Would you like to download it? - + Scale: %1x %1 is the resolution scaling factor Skalierung: %1x - + Speed: %1% / %2% Geschwindigkeit: %1% / %2% - + Speed: %1% Geschwindigkeit: %1% @@ -6724,54 +6852,54 @@ Would you like to download it? Spiel: %1 FPS (Unbegrenzt) - + Game: %1 FPS Spiel: %1 FPS - + Frame: %1 ms Frame: %1 ms - + %1 %2 %1 %2 - - + + FSR FSR - + NO AA KEIN AA - + VOLUME: MUTE LAUTSTÄRKE: STUMM - + VOLUME: %1% Volume percentage (e.g. 50%) LAUTSTÄRKE: %1% - + Derivation Components Missing Derivationskomponenten fehlen - + Select RomFS Dump Target RomFS wählen - + Please select which RomFS you would like to dump. Wähle, welches RomFS du speichern möchtest. @@ -6784,7 +6912,7 @@ Would you like to download it? yuzu - + Are you sure you want to stop the emulation? Any unsaved progress will be lost. Bist du sicher, dass du die Emulation stoppen willst? Jeder nicht gespeicherte Fortschritt geht verloren. @@ -6797,102 +6925,102 @@ Would you like to bypass this and exit anyway? Möchtest du dies umgehen und sie trotzdem beenden? - + None Keiner - + FXAA FXAA - + SMAA SMAA - + Nearest Nächster - + Bilinear Bilinear - + Bicubic Bikubisch - + Gaussian Gaussian - + ScaleForce ScaleForce - + Area - + Docked Im Dock - + Handheld Handheld - + Normal Normal - + High Hoch - + Extreme Extrem - + Vulkan Vulkan - + OpenGL OpenGL - + Null Null - + GLSL GLSL - + GLASM GLASM - + SPIRV SPIRV @@ -6900,13 +7028,13 @@ Möchtest du dies umgehen und sie trotzdem beenden? GRenderWindow - - + + OpenGL not available! OpenGL nicht verfügbar! - + OpenGL shared contexts are not supported. Gemeinsame OpenGL-Kontexte werden nicht unterstützt. @@ -6915,33 +7043,33 @@ Möchtest du dies umgehen und sie trotzdem beenden? yuzu wurde nicht mit OpenGL-Unterstützung kompiliert. - - eden has not been compiled with OpenGL support. + + Eden has not been compiled with OpenGL support. - - + + Error while initializing OpenGL! Fehler beim Initialisieren von OpenGL! - + Your GPU may not support OpenGL, or you do not have the latest graphics driver. Deine Grafikkarte unterstützt kein OpenGL oder du hast nicht den neusten Treiber installiert. - + Error while initializing OpenGL 4.6! Fehler beim Initialisieren von OpenGL 4.6! - + Your GPU may not support OpenGL 4.6, or you do not have the latest graphics driver.<br><br>GL Renderer:<br>%1 Deine Grafikkarte unterstützt OpenGL 4.6 nicht, oder du benutzt nicht die neuste Treiberversion.<br><br>GL Renderer:<br>%1 - + Your GPU may not support one or more required OpenGL extensions. Please ensure you have the latest graphics driver.<br><br>GL Renderer:<br>%1<br><br>Unsupported extensions:<br>%2 Deine Grafikkarte unterstützt anscheinend nicht eine oder mehrere von yuzu benötigten OpenGL-Erweiterungen. Bitte stelle sicher, dass du den neusten Grafiktreiber installiert hast.<br><br>GL Renderer:<br>%1<br><br>Nicht unterstützte Erweiterungen:<br>%2 @@ -6949,128 +7077,128 @@ Möchtest du dies umgehen und sie trotzdem beenden? GameList - + Favorite Favorit - + Start Game Spiel starten - + Start Game without Custom Configuration Spiel ohne benutzerdefinierte Spiel-Einstellungen starten - + Open Save Data Location Spielstand-Verzeichnis öffnen - + Open Mod Data Location Mod-Verzeichnis öffnen - + Open Transferable Pipeline Cache Transferierbaren Pipeline-Cache öffnen - + Remove Entfernen - + Remove Installed Update Installiertes Update entfernen - + Remove All Installed DLC Alle installierten DLCs entfernen - + Remove Custom Configuration Spiel-Einstellungen entfernen - + Remove Play Time Data Spielzeit-Daten entfernen - + Remove Cache Storage Cache-Speicher entfernen - + Remove OpenGL Pipeline Cache OpenGL-Pipeline-Cache entfernen - + Remove Vulkan Pipeline Cache Vulkan-Pipeline-Cache entfernen - + Remove All Pipeline Caches Alle Pipeline-Caches entfernen - + Remove All Installed Contents Alle installierten Inhalte entfernen - + Dump RomFS RomFS speichern - + Dump RomFS to SDMC RomFS nach SDMC dumpen - + Verify Integrity Integrität überprüfen - + Copy Title ID to Clipboard Title-ID in die Zwischenablage kopieren - + Navigate to GameDB entry GameDB-Eintrag öffnen - + Create Shortcut Verknüpfung erstellen - + Add to Desktop Zum Desktop hinzufügen - + Add to Applications Menu Zum Menü "Anwendungen" hinzufügen - + Configure Game @@ -7079,62 +7207,62 @@ Möchtest du dies umgehen und sie trotzdem beenden? Eigenschaften - + Scan Subfolders Unterordner scannen - + Remove Game Directory Spieleverzeichnis entfernen - + ▲ Move Up ▲ Nach Oben - + ▼ Move Down ▼ Nach Unten - + Open Directory Location Verzeichnis öffnen - + Clear Löschen - + Name Name - + Compatibility Kompatibilität - + Add-ons Add-ons - + File type Dateityp - + Size Größe - + Play time Spielzeit @@ -7142,62 +7270,62 @@ Möchtest du dies umgehen und sie trotzdem beenden? GameListItemCompat - + Ingame Im Spiel - + Game starts, but crashes or major glitches prevent it from being completed. Spiel startet, stürzt jedoch ab oder hat signifikante Glitches, die es verbieten es durchzuspielen. - + Perfect Perfekt - + Game can be played without issues. Das Spiel kann ohne Probleme gespielt werden. - + Playable Spielbar - + Game functions with minor graphical or audio glitches and is playable from start to finish. Das Spiel funktioniert mit minimalen grafischen oder Tonstörungen und ist komplett spielbar. - + Intro/Menu Intro/Menü - + Game loads, but is unable to progress past the Start Screen. Das Spiel lädt, ist jedoch nicht im Stande den Startbildschirm zu passieren. - + Won't Boot Startet nicht - + The game crashes when attempting to startup. Das Spiel stürzt beim Versuch zu starten ab. - + Not Tested Nicht getestet - + The game has not yet been tested. Spiel wurde noch nicht getestet. @@ -7205,7 +7333,7 @@ Möchtest du dies umgehen und sie trotzdem beenden? GameListPlaceholder - + Double-click to add a new folder to the game list Doppelklicke, um einen neuen Ordner zur Spieleliste hinzuzufügen. @@ -7213,7 +7341,7 @@ Möchtest du dies umgehen und sie trotzdem beenden? GameListSearchField - + %1 of %n result(s) %1 von %n Ergebnis @@ -7221,12 +7349,12 @@ Möchtest du dies umgehen und sie trotzdem beenden? - + Filter: Filter: - + Enter pattern to filter Wörter zum Filtern eingeben @@ -7308,7 +7436,7 @@ Möchtest du dies umgehen und sie trotzdem beenden? - Failed to announce the room to the public lobby. In order to host a room publicly, you must have a valid eden account configured in Emulation -> Configure -> Web. If you do not want to publish a room in the public lobby, then select Unlisted instead. + Failed to announce the room to the public lobby. In order to host a room publicly, you must have a valid Eden 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: @@ -7322,91 +7450,91 @@ Debug Nachricht: Hotkeys - + Audio Mute/Unmute Audio aktivieren / deaktivieren - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Main Window Hauptfenster - + Audio Volume Down Lautstärke verringern - + Audio Volume Up Lautstärke erhöhen - + Capture Screenshot Screenshot aufnehmen - + Change Adapting Filter Adaptiven Filter ändern - + Change Docked Mode Dockmodus ändern - + Change GPU Accuracy GPU-Genauigkeit ändern - + Configure - + Configure Current Game - + Continue/Pause Emulation Emulation fortsetzen/pausieren - + Exit Fullscreen Vollbild verlassen @@ -7415,97 +7543,97 @@ Debug Nachricht: yuzu verlassen - - Exit eden + + Exit Eden - + Fullscreen Vollbild - + Load File Datei laden - + Load/Remove Amiibo Amiibo laden/entfernen - + Multiplayer Browse Public Game Lobby - + Multiplayer Create Room - + Multiplayer Direct Connect to Room - + Multiplayer Leave Room - + Multiplayer Show Current Room - + Restart Emulation Emulation neustarten - + Stop Emulation Emulation stoppen - + TAS Record TAS aufnehmen - + TAS Reset TAS neustarten - + TAS Start/Stop TAS starten/stoppen - + Toggle Filter Bar Filterleiste umschalten - + Toggle Framerate Limit Aktiviere Bildraten Limitierung - + Toggle Mouse Panning Mausschwenk umschalten - + Toggle Renderdoc Capture Renderdoc-Aufnahme umschalten - + Toggle Status Bar Statusleiste umschalten @@ -7513,22 +7641,22 @@ Debug Nachricht: InstallDialog - + Please confirm these are the files you wish to install. Bitte bestätige, dass du diese Dateien installieren willst. - + Installing an Update or DLC will overwrite the previously installed one. Wenn du ein Update oder DLC installierst, wirst du die vorher installierten überschreiben. - + Install Installieren - + Install Files to NAND Dateien im NAND installieren @@ -7536,7 +7664,7 @@ Debug Nachricht: LimitableInputDialog - + The text can't contain any of the following characters: %1 Der Text darf keines der folgenden Zeichen enthalten: %1 @@ -7682,152 +7810,207 @@ Debug Nachricht: &Zuletzt geladene Dateien - + + Open &Eden Folders + + + + &Emulation &Emulation - + &View &Anzeige - + &Reset Window Size &Fenstergröße zurücksetzen - + &Debugging &Debugging - + Reset Window Size to &720p Fenstergröße auf &720p zurücksetzen - + Reset Window Size to 720p Fenstergröße auf 720p zurücksetzen - + Reset Window Size to &900p Fenstergröße auf &900p zurücksetzen - + Reset Window Size to 900p Fenstergröße auf 900p zurücksetzen - + Reset Window Size to &1080p Fenstergröße auf &1080p zurücksetzen - + Reset Window Size to 1080p Fenstergröße auf 1080p zurücksetzen - + &Multiplayer &Mehrspieler - + &Tools &Werkzeuge - + &Amiibo &Amiibo - + &TAS &TAS - + &Create Home Menu Shortcut - + &Help &Hilfe - + &Install Files to NAND... &Dateien im NAND installieren... - + L&oad File... Datei &laden... - + Load &Folder... &Verzeichnis laden... - + E&xit S&chließen - + &Pause &Pause - + &Stop &Stop - + &Verify Installed Contents Installierte Inhalte &überprüfen - - &About eden + + &Root Data Folder - - Open &eden Folder + + &NAND Folder - + + &SDMC Folder + + + + + &Mod Folder + + + + + &Log Folder + + + + + From Folder + + + + + From ZIP + + + + + &X + + + + + X (Twitter) + + + + + &Revolt + + + + + Revolt + + + + + &Eden Dependencies + + + + Open Home Menu - + &Discord - + Open &Setup - + &Desktop - + &Application Menu @@ -7836,97 +8019,97 @@ Debug Nachricht: &Über yuzu - + Single &Window Mode &Einzelfenster-Modus - + Con&figure... Kon&figurieren - + Ctrl+, - + Display D&ock Widget Headers D&ock-Widget-Header anzeigen - + Show &Filter Bar &Filterleiste anzeigen - + Show &Status Bar &Statusleiste anzeigen - + Show Status Bar Statusleiste anzeigen - + &Browse Public Game Lobby &Öffentliche Spiele-Lobbys durchsuchen - + &Create Room &Raum erstellen - + &Leave Room &Raum verlassen - + &Direct Connect to Room &Direkte Verbindung zum Raum - + &Show Current Room &Aktuellen Raum anzeigen - + F&ullscreen Vollbild (&u) - + &Restart Neusta&rt - + Load/Remove &Amiibo... &Amiibo laden/entfernen... - + &Report Compatibility &Kompatibilität melden - + Open &Mods Page &Mods-Seite öffnen - + Open &Quickstart Guide &Schnellstart-Anleitung öffnen - + &FAQ &FAQ @@ -7935,77 +8118,82 @@ Debug Nachricht: &yuzu-Verzeichnis öffnen - + &Capture Screenshot &Bildschirmfoto aufnehmen - + Open &Album &Album öffnen - + &Set Nickname and Owner Spitzname und Besitzer &festlegen - + &Delete Game Data Spiel-Daten &löschen - + &Restore Amiibo Amiibo &wiederherstellen - + &Format Amiibo Amiibo &formatieren - + Open &Mii Editor &Mii-Editor öffnen - + &Configure TAS... &TAS &konfigurieren... - + Configure C&urrent Game... &Spiel-Einstellungen ändern... - + &Start &Start - + &Reset &Zurücksetzen - + R&ecord Aufnahme - + Open &Controller Menu Öffne &Controller-Menü - + Install Firmware - + + &About Eden + + + + Install Decryption Keys @@ -8013,26 +8201,36 @@ Debug Nachricht: MicroProfileDialog - &MicroProfile - &MicroProfile + &MicroProfile MigrationWorker - + Data was migrated successfully. - + Linking the old directory failed. You may need to re-run with administrative privileges on Windows. OS gave error: %1 - + + + +Note that your configuration and data will be shared with %1. +If this is not desirable, delete the following files: +%2 +%3 +%4 + + + + If you wish to clean up the files which were left in the old data location, you can do so by deleting the following directory: @@ -8092,37 +8290,37 @@ If you wish to clean up the files which were left in the old data location, you MultiplayerState - + Current connection status Aktueller Verbindungsstatus - + Not Connected. Click here to find a room! Nicht verbunden! Hier klicken um Raum zu finden! - + Not Connected Nicht verbunden - + Connected Verbunden - + New Messages Received Neue Nachrichten erhalten - + Error Fehler - + Failed to update the room information. Please check your Internet connection and try hosting the room again. Debug Message: Aktualisieren der Rauminformationen fehlgeschlagen. Überprüfe deine Internetverbindung und versuche erneut einen Raum zu erstellen. @@ -8315,56 +8513,56 @@ p, li { white-space: pre-wrap; } Spielt kein Spiel - + Installed SD Titles Installierte SD-Titel - + Installed NAND Titles Installierte NAND-Titel - + System Titles Systemtitel - + Add New Game Directory Neues Spieleverzeichnis hinzufügen - + Favorites Favoriten - - + + Shift Shift - - + + Ctrl Strg - - + + Alt Alt - - - - + + + + [not set] [nicht gesetzt] @@ -8375,14 +8573,14 @@ p, li { white-space: pre-wrap; } Hat %1 %2 - - - - - - - - + + + + + + + + Axis %1%2 Achse %1%2 @@ -8393,357 +8591,357 @@ p, li { white-space: pre-wrap; } Taste %1 - - - - - - + + + + + + [unknown] [unbekannt] - - - + + + Left Links - - - + + + Right Rechts - - - + + + Down Runter - - - + + + Up Hoch - - + + Z Z - - + + R R - - + + L L - - + + A A - - + + B B - - + + X X - - + + Y Y - - + + Start Start - - + + L1 L1 - - + + L2 L2 - - + + L3 L3 - - + + R1 R1 - - + + R2 R2 - - + + R3 R3 - - + + Circle Kreis - - + + Cross Kreuz - - + + Square Quadrat - - + + Triangle Dreieck - - + + Share Teilen - - + + Options Optionen - - + + [undefined] [undefiniert] - + %1%2 %1%2 - - + + [invalid] [ungültig] - - + + %1%2Hat %3 %1%2Hat %3 - - - + + + %1%2Axis %3 %1%2Achse %3 - - + + %1%2Axis %3,%4,%5 %1%2Achse %3,%4,%5 - - + + %1%2Motion %3 %1%2Bewegung %3 - - + + %1%2Button %3 %1%2Knopf %3 - - + + [unused] [unbenutzt] - + ZR ZR - + ZL ZL - + SR SR - + SL SL - + Stick L Stick L - + Stick R Stick R - + Plus Plus - + Minus Minus - - + + Home Home - + Capture Screenshot - + Touch Touch - + Wheel Indicates the mouse wheel Mausrad - + Backward Rückwärts - + Forward Vorwärts - + Task Aufgabe - + Extra Extra - + %1%2%3%4 %1%2%3%4 - - + + %1%2%3Hat %4 %1%2%3Hat %4 - - + + %1%2%3Axis %4 %1%2%3Achse %4 - - + + %1%2%3Button %4 %1%2%3Knopf %4 - - + + Migration - + - - + + No - + You can manually re-trigger this prompt by deleting the new config directory: %1 - + Migrating - + Migrating, this may take a while... @@ -8861,6 +9059,300 @@ p, li { white-space: pre-wrap; } Möchtest du diese amiibo wiederherstellen? + + QtCommon::Content + + + Installing Firmware... + + + + + + + Cancel + Abbrechen + + + + Firmware integrity verification failed! + + + + + + Verification failed for the following files: + +%1 + Überprüfung für die folgenden Dateien ist fehlgeschlagen: + +%1 + + + + + Verifying integrity... + Überprüfe Integrität… + + + + + Integrity verification succeeded! + Integritätsüberprüfung erfolgreich! + + + + + The operation completed successfully. + Der Vorgang wurde erfolgreich abgeschlossen. + + + + + Integrity verification failed! + Integritätsüberprüfung fehlgeschlagen! + + + + File contents may be corrupt or missing. + + + + + Integrity verification couldn't be performed + + + + + Firmware installation cancelled, firmware may be in a bad state or corrupted. File contents could not be checked for validity. + + + + + Select Dumped Keys Location + + + + + Decryption Keys install succeeded + + + + + Decryption Keys were successfully installed + + + + + Decryption Keys install failed + + + + + QtCommon::Game + + + Error Removing Contents + Fehler beim Entfernen des Inhalts + + + + Error Removing Update + Fehler beim Entfernen des Updates + + + + Error Removing DLC + Fehler beim Entfernen des DLCs + + + + The base game is not installed in the NAND and cannot be removed. + Das Spiel ist nicht im NAND installiert und kann somit nicht entfernt werden. + + + + There is no update installed for this title. + Es ist kein Update für diesen Titel installiert. + + + + There are no DLCs installed for this title. + + + + + + + + Successfully Removed + Erfolgreich entfernt + + + + Successfully removed %1 installed DLC. + %1 DLC entfernt. + + + + + Error Removing Transferable Shader Cache + Fehler beim Entfernen + + + + + A shader cache for this title does not exist. + Es existiert kein Shader-Cache für diesen Titel. + + + + Successfully removed the transferable shader cache. + Der transferierbare Shader-Cache wurde entfernt. + + + + Failed to remove the transferable shader cache. + Konnte den transferierbaren Shader-Cache nicht entfernen. + + + + Error Removing Vulkan Driver Pipeline Cache + Fehler beim Entfernen des Vulkan-Pipeline-Cache + + + + Failed to remove the driver pipeline cache. + Fehler beim Entfernen des Driver-Pipeline-Cache + + + + + Error Removing Transferable Shader Caches + Fehler beim Entfernen der transferierbaren Shader Caches + + + + Successfully removed the transferable shader caches. + Die übertragbaren Shader-Caches wurden erfolgreich entfernt. + + + + Failed to remove the transferable shader cache directory. + Entfernen des transferierbaren Shader-Cache-Verzeichnisses fehlgeschlagen. + + + + + Error Removing Custom Configuration + Fehler beim Entfernen + + + + A custom configuration for this title does not exist. + Es existieren keine Spiel-Einstellungen für dieses Spiel. + + + + Successfully removed the custom game configuration. + Die Spiel-Einstellungen wurden entfernt. + + + + Failed to remove the custom game configuration. + Die Spiel-Einstellungen konnten nicht entfernt werden. + + + + Reset Metadata Cache + Metadaten-Cache zurücksetzen + + + + The metadata cache is already empty. + Der Metadaten-Cache ist bereits leer. + + + + The operation completed successfully. + Der Vorgang wurde erfolgreich abgeschlossen. + + + + The metadata cache couldn't be deleted. It might be in use or non-existent. + Der Metadaten-Cache konnte nicht gelöscht werden. Er könnte in Gebrauch oder nicht vorhanden sein. + + + + Create Shortcut + Verknüpfung erstellen + + + + Do you want to launch the game in fullscreen? + Möchtest du das Spiel im Vollbild starten? + + + + Shortcut Created + + + + + Successfully created a shortcut to %1 + Verknüpfung wurde erfolgreich erstellt unter %1 + + + + Shortcut may be Volatile! + + + + + This will create a shortcut to the current AppImage. This may not work well if you update. Continue? + Dies wird eine Verknüpfung zum aktuellen AppImage erstellen. Dies könnte nicht gut funktionieren falls du aktualisierst. Fortfahren? + + + + Failed to Create Shortcut + + + + + Failed to create a shortcut to %1 + Erstellen einer Verknüpfung zu %1 fehlgeschlagen + + + + Create Icon + Icon erstellen + + + + Cannot create icon file. Path "%1" does not exist and cannot be created. + Symboldatei konnte nicht erstellt werden. Der Pfad "%1" existiert nicht oder kann nicht erstellt werden. + + + + No firmware available + Keine Firmware verfügbar + + + + Please install firmware to use the home menu. + + + + + Home Menu Applet + + + + + Home Menu is not available. Please reinstall firmware. + + + QtControllerSelectorDialog @@ -9156,7 +9648,7 @@ Bitte versuche es noch einmal oder kontaktiere den Entwickler der Software. QtProfileSelectionDialog - + %1 %2 %1 is the profile username, %2 is the formatted UUID (e.g. 00112233-4455-6677-8899-AABBCCDDEEFF)) @@ -9164,7 +9656,7 @@ Bitte versuche es noch einmal oder kontaktiere den Entwickler der Software. - + Users Nutzer @@ -9288,7 +9780,7 @@ p, li { white-space: pre-wrap; } WaitTreeCallstack - + Call stack Stack aufrufen @@ -9296,12 +9788,12 @@ p, li { white-space: pre-wrap; } WaitTreeSynchronizationObject - + [%1] %2 [%1] %2 - + waited by no thread von keinem Thread pausiert @@ -9309,102 +9801,102 @@ p, li { white-space: pre-wrap; } WaitTreeThread - + runnable lauffähig - + paused pausiert - + sleeping schläft - + waiting for IPC reply Warten auf IPC-Antwort - + waiting for objects Warten auf Objekte - + waiting for condition variable wartet auf condition variable - + waiting for address arbiter Warten auf den Adressarbiter - + waiting for suspend resume warten auf Fortsetzen nach Unterbrechung - + waiting warten - + initialized initialisiert - + terminated beendet - + unknown unbekannt - + PC = 0x%1 LR = 0x%2 PC = 0x%1 LR = 0x%2 - + ideal ideal - + core %1 Kern %1 - + processor = %1 Prozessor = %1 - + affinity mask = %1 Affinitätsmaske = %1 - + thread id = %1 Thread-ID = %1 - + priority = %1(current) / %2(normal) Priorität = %1(aktuell) / %2(normal) - + last running ticks = %1 Letzte laufende Ticks = %1 @@ -9412,7 +9904,7 @@ p, li { white-space: pre-wrap; } WaitTreeThreadList - + waited by thread gewartet von Thread @@ -9420,7 +9912,7 @@ p, li { white-space: pre-wrap; } WaitTreeWidget - + &Wait Tree &Wait Tree diff --git a/dist/languages/el.ts b/dist/languages/el.ts index 3d51012936..fc1ea8fcea 100644 --- a/dist/languages/el.ts +++ b/dist/languages/el.ts @@ -13,12 +13,12 @@ - About eden + About Eden - <html><head/><body><p><span style=" font-size:28pt;">eden</span></p></body></html> + <html><head/><body><p><span style=" font-size:28pt;">Eden</span></p></body></html> @@ -34,8 +34,8 @@ p, li { white-space: pre-wrap; } hr { height: 1px; border-width: 0; } li.unchecked::marker { content: "\2610"; } li.checked::marker { content: "\2612"; } -</style></head><body style=" font-family:'Adwaita Sans'; font-size:11pt; font-weight:400; font-style:normal;"> -<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;">eden is an experimental open-source emulator for the Nintendo Switch licensed under GPLv3.0+ which is based on the yuzu emulator which ended development back in March 2024. <br /><br />This software should not be used to play games you have not legally obtained.</span></p></body></html> +</style></head><body style=" font-family:'Noto Sans'; font-size:9pt; font-weight:400; font-style:normal;"> +<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;">Eden is an experimental open-source emulator for the Nintendo Switch licensed under GPLv3.0+ which is based on the yuzu emulator which ended development back in March 2024. <br /><br />This software should not be used to play games you have not legally obtained.</span></p></body></html> @@ -72,32 +72,32 @@ p, li { white-space: pre-wrap; } CalibrationConfigurationDialog - + Communicating with the server... Επικοινωνία με τον διακομιστή... - + Cancel Άκυρο - + Touch the top left corner <br>of your touchpad. Αγγίξτε την πάνω αριστερή γωνία <br>του touchpad σας. - + Now touch the bottom right corner <br>of your touchpad. Τώρα αγγίξτε την κάτω δεξιά γωνία <br>του touchpad σας. - + Configuration completed! Η διαμόρφωση ολοκληρώθηκε! - + OK Εντάξει @@ -397,502 +397,134 @@ This would ban both their forum username and their IP address. ConfigurationShared - + % % - - Amiibo editor - - - - - Controller configuration - - - - - Data erase - - - - + Error Σφάλμα - - Net connect - - - - - Player select - - - - - Software keyboard - - - - - Mii Edit - - - - - Online web - - - - - Shop - - - - - Photo viewer - - - - - Offline web - - - - - Login share - - - - - Wifi web auth - - - - - My page - - - - + Output Engine: Μηχανή εξόδου: - - Output Device: - - - - - Input Device: - - - - - Mute audio - - - - + Volume: Ένταση: - + Mute audio when in background Σίγαση ήχου όταν βρίσκεται στο παρασκήνιο - + Multicore CPU Emulation Εξομοίωση Πολυπύρηνων CPU - - This option increases CPU emulation thread use from 1 to the Switch’s maximum of 4. -This is mainly a debug option and shouldn’t be disabled. - - - - - Memory Layout - - - - - Increases the amount of emulated RAM from the stock 4GB of the retail Switch to the developer kit's 8/6GB. -It’s doesn’t improve stability or performance and is intended to let big texture mods fit in emulated RAM. -Enabling it will increase memory use. It is not recommended to enable unless a specific game with a texture mod needs it. - - - - + Limit Speed Percent Όριο Ποσοστού Ταχύτητας - - Controls the game's maximum rendering speed, but it’s up to each game if it runs faster or not. -200% for a 30 FPS game is 60 FPS, and for a 60 FPS game it will be 120 FPS. -Disabling it means unlocking the framerate to the maximum your PC can reach. - - - - - Synchronize Core Speed - - - - - Synchronizes CPU core speed with the game's maximum rendering speed to boost FPS without affecting game speed (animations, physics, etc.). -Compatibility varies by game; many (especially older ones) may not respond well. -Can help reduce stuttering at lower framerates. - - - - + Accuracy: Ακρίβεια: - - This setting controls the accuracy of the emulated CPU. -Don't change this unless you know what you are doing. - - - - - - Backend: - - - - - Fast CPU Time - - - - - Overclocks the emulated CPU to remove some FPS limiters. Weaker CPUs may see reduced performance, and certain games may behave improperly. -Use Boost (1700MHz) to run at the Switch's highest native clock, or Fast (2000MHz) to run at 2x clock. - - - - + Unfuse FMA (improve performance on CPUs without FMA) Αχρησιμοποίητο FMA (βελτιώνει την απόδοση σε επεξεργαστές χωρίς FMA) - - This option improves speed by reducing accuracy of fused-multiply-add instructions on CPUs without native FMA support. - - - - + Faster FRSQRTE and FRECPE Ταχύτερη FRSQRTE και FRECPE - - This option improves the speed of some approximate floating-point functions by using less accurate native approximations. - - - - + Faster ASIMD instructions (32 bits only) Ταχύτερες οδηγίες ASIMD (μόνο 32 bits) - - This option improves the speed of 32 bits ASIMD floating-point functions by running with incorrect rounding modes. - - - - + Inaccurate NaN handling Ανακριβής χειρισμός NaN - - This option improves speed by removing NaN checking. -Please note this also reduces accuracy of certain floating-point instructions. - - - - + Disable address space checks Απενεργοποίηση ελέγχου χώρου διευθύνσεων - - This option improves speed by eliminating a safety check before every memory read/write in guest. -Disabling it may allow a game to read/write the emulator's memory. - - - - + Ignore global monitor Αγνοήση καθολικής επίβλεψης - - This option improves speed by relying only on the semantics of cmpxchg to ensure safety of exclusive access instructions. -Please note this may result in deadlocks and other race conditions. - - - - + API: API: - - Switches between the available graphics APIs. -Vulkan is recommended in most cases. - - - - + Device: Συσκευή: - - This setting selects the GPU to use with the Vulkan backend. - - - - - Shader Backend: - - - - - The shader backend to use for the OpenGL renderer. -GLSL is the fastest in performance and the best in rendering accuracy. -GLASM is a deprecated NVIDIA-only backend that offers much better shader building performance at the cost of FPS and rendering accuracy. -SPIR-V compiles the fastest, but yields poor results on most GPU drivers. - - - - + Resolution: Ανάλυση: - - Forces the game to render at a different resolution. -Higher resolutions require much more VRAM and bandwidth. -Options lower than 1X can cause rendering issues. - - - - + Window Adapting Filter: Φίλτρο Προσαρμογής Παραθύρου: - - FSR Sharpness: - - - - - Determines how sharpened the image will look while using FSR’s dynamic contrast. - - - - + Anti-Aliasing Method: Μέθοδος Anti-Aliasing: - - The anti-aliasing method to use. -SMAA offers the best quality. -FXAA has a lower performance impact and can produce a better and more stable picture under very low resolutions. - - - - + Fullscreen Mode: Λειτουργία Πλήρους Οθόνης: - - The method used to render the window in fullscreen. -Borderless offers the best compatibility with the on-screen keyboard that some games request for input. -Exclusive fullscreen may offer better performance and better Freesync/Gsync support. - - - - + Aspect Ratio: Αναλογία Απεικόνισης: - - Stretches the game to fit the specified aspect ratio. -Switch games only support 16:9, so custom game mods are required to get other ratios. -Also controls the aspect ratio of captured screenshots. - - - - - Use disk pipeline cache - - - - - Allows saving shaders to storage for faster loading on following game boots. -Disabling it is only intended for debugging. - - - - - Optimize SPIRV output shader - - - - - Runs an additional optimization pass over generated SPIRV shaders. -Will increase time required for shader compilation. -May slightly improve performance. -This feature is experimental. - - - - + Use asynchronous GPU emulation Χρησιμοποίηση ασύγχρονης εξομοίωσης GPU - - Uses an extra CPU thread for rendering. -This option should always remain enabled. - - - - + NVDEC emulation: Εξομοίωση NVDEC: - - Specifies how videos should be decoded. -It can either use the CPU or the GPU for decoding, or perform no decoding at all (black screen on videos). -In most cases, GPU decoding provides the best performance. - - - - - ASTC Decoding Method: - - - - - This option controls how ASTC textures should be decoded. -CPU: Use the CPU for decoding, slowest but safest method. -GPU: Use the GPU's compute shaders to decode ASTC textures, recommended for most games and users. -CPU Asynchronously: Use the CPU to decode ASTC textures as they arrive. Completely eliminates ASTC decoding -stuttering at the cost of rendering issues while the texture is being decoded. - - - - - ASTC Recompression Method: - - - - - Almost all desktop and laptop dedicated GPUs lack support for ASTC textures, forcing the emulator to decompress to an intermediate format any card supports, RGBA8. -This option recompresses RGBA8 to either the BC1 or BC3 format, saving VRAM but negatively affecting image quality. - - - - - VRAM Usage Mode: - - - - - Selects whether the emulator should prefer to conserve memory or make maximum usage of available video memory for performance. Has no effect on integrated graphics. Aggressive mode may severely impact the performance of other applications such as recording software. - - - - - VSync Mode: - - - - - FIFO (VSync) does not drop frames or exhibit tearing but is limited by the screen refresh rate. -FIFO Relaxed is similar to FIFO but allows tearing as it recovers from a slow down. -Mailbox can have lower latency than FIFO and does not tear but may drop frames. -Immediate (no synchronization) just presents whatever is available and can exhibit tearing. - - - - - Enable asynchronous presentation (Vulkan only) - - - - - Slightly improves performance by moving presentation to a separate CPU thread. - - - - - Force maximum clocks (Vulkan only) - - - - - Runs work in the background while waiting for graphics commands to keep the GPU from lowering its clock speed. - - - - + Anisotropic Filtering: Ανισοτροπικό Φιλτράρισμα: - - Controls the quality of texture rendering at oblique angles. -It’s a light setting and safe to set at 16x on most GPUs. - - - - Accuracy Level: - Επίπεδο Ακρίβειας: + Επίπεδο Ακρίβειας: - - GPU emulation accuracy. -Most games render fine with Normal, but High is still required for some. -Particles tend to only render correctly with High accuracy. -Extreme should only be used for debugging. -This option can be changed while playing. -Some games may require booting on high to render properly. - - - - + Use asynchronous shader building (Hack) Χρήση ασύγχρονης σύνταξης σκίασης (Τέχνασμα) - - - Enables asynchronous shader compilation, which may reduce shader stutter. -This feature is experimental. - - Use Fast GPU Time (Hack) Χρήση Γοργού Ρυθμού GPU (Τέχνασμα) @@ -902,1021 +534,1486 @@ This feature is experimental. Ενεργοποιεί τον Γοργό Ρυθμό GPU. Αυτή η επιλογή θα αναγκάσει τα περισσότερα παιχνίδια να εκτελούνται στην υψηλότερη εγγενή τους ανάλυση. - + + RNG Seed + RNG Seed + + + + Note: this can be overridden when region setting is auto-select + Σημείωση: αυτό μπορεί να παρακαμφθεί όταν η ρύθμιση περιοχής είναι ως αυτόματη επιλογή + + + + Region: + Περιφέρεια: + + + + Time Zone: + Ζώνη Ώρας: + + + + Prompt for user on game boot + Επιλογή χρήστη κατά την εκκίνηση παιχνιδιού + + + + Pause emulation when in background + Παύση εξομοίωσης όταν βρίσκεται στο παρασκήνιο + + + + Hide mouse on inactivity + Απόκρυψη δρομέα ποντικιού στην αδράνεια + + + + CPU + CPU + + + + Vulkan + Vulkan + + + + GLASM (Assembly Shaders, NVIDIA Only) + GLASM (Shaders Γλώσσας Μηχανής, μόνο NVIDIA) + + + + Auto + Αυτόματη + + + + Accurate + Ακριβής + + + + Unsafe + Επισφαλής + + + + Borderless Windowed + Παραθυροποιημένο Χωρίς Όρια + + + + Exclusive Fullscreen + Αποκλειστική Πλήρης Οθόνη + + + + No Video Output + Χωρίς Έξοδο Βίντεο + + + + CPU Video Decoding + Αποκωδικοποίηση Βίντεο CPU + + + + GPU Video Decoding (Default) + Αποκωδικοποίηση Βίντεο GPU (Προεπιλογή) + + + + 0.75X (540p/810p) [EXPERIMENTAL] + 0.75X (540p/810p) [ΠΕΙΡΑΜΑΤΙΚΟ] + + + + 1X (720p/1080p) + 1X (720p/1080p) + + + + 2X (1440p/2160p) + 2X (1440p/2160p) + + + + 3X (2160p/3240p) + 3X (2160p/3240p) + + + + 4X (2880p/4320p) + 4X (2880p/4320p) + + + + 5X (3600p/5400p) + 5X (3600p/5400p) + + + + 6X (4320p/6480p) + 6X (4320p/6480p) + + + + Nearest Neighbor + Πλησιέστερος Γείτονας + + + + Bilinear + Διγραμμικό + + + + Bicubic + Δικυβικό + + + + Gaussian + Gaussian + + + + ScaleForce + ScaleForce + + + + None + Κανένα + + + + FXAA + FXAA + + + + SMAA + SMAA + + + + Default (16:9) + Προεπιλογή (16:9) + + + + Force 4:3 + Επιβολή 4:3 + + + + Force 21:9 + Επιβολή 21:9 + + + + Force 16:10 + Επιβολή 16:10 + + + + Stretch to Window + Επέκταση στο Παράθυρο + + + + Automatic + Αυτόματα + + + + + Default + Προεπιλεγμένο + + + + Amiibo editor + + + + + Controller configuration + + + + + Data erase + + + + + Net connect + + + + + Player select + + + + + Software keyboard + + + + + Mii Edit + + + + + Online web + + + + + Shop + + + + + Photo viewer + + + + + Offline web + + + + + Login share + + + + + Wifi web auth + + + + + My page + + + + + Output Device: + + + + + Input Device: + + + + + Mute audio + + + + + This option increases CPU emulation thread use from 1 to the Switch’s maximum of 4. +This is mainly a debug option and shouldn’t be disabled. + + + + + Memory Layout + + + + + Increases the amount of emulated RAM from the stock 4GB of the retail Switch to the developer kit's 8/6GB. +It’s doesn’t improve stability or performance and is intended to let big texture mods fit in emulated RAM. +Enabling it will increase memory use. It is not recommended to enable unless a specific game with a texture mod needs it. + + + + + Controls the game's maximum rendering speed, but it’s up to each game if it runs faster or not. +200% for a 30 FPS game is 60 FPS, and for a 60 FPS game it will be 120 FPS. +Disabling it means unlocking the framerate to the maximum your PC can reach. + + + + + Synchronize Core Speed + + + + + Synchronizes CPU core speed with the game's maximum rendering speed to boost FPS without affecting game speed (animations, physics, etc.). +Compatibility varies by game; many (especially older ones) may not respond well. +Can help reduce stuttering at lower framerates. + + + + + This setting controls the accuracy of the emulated CPU. +Don't change this unless you know what you are doing. + + + + + + Backend: + + + + + Fast CPU Time + + + + + Overclocks the emulated CPU to remove some FPS limiters. Weaker CPUs may see reduced performance, and certain games may behave improperly. +Use Boost (1700MHz) to run at the Switch's highest native clock, or Fast (2000MHz) to run at 2x clock. + + + + + Custom CPU Ticks + + + + + Set a custom value of CPU ticks. Higher values can increase performance, but may also cause the game to freeze. A range of 77–21000 is recommended. + + + + + Enable Host MMU Emulation (fastmem) + + + + + This optimization speeds up memory accesses by the guest program. +Enabling it causes guest memory reads/writes to be done directly into memory and make use of Host's MMU. +Disabling this forces all memory accesses to use Software MMU Emulation. + + + + + This option improves speed by reducing accuracy of fused-multiply-add instructions on CPUs without native FMA support. + + + + + This option improves the speed of some approximate floating-point functions by using less accurate native approximations. + + + + + This option improves the speed of 32 bits ASIMD floating-point functions by running with incorrect rounding modes. + + + + + This option improves speed by removing NaN checking. +Please note this also reduces accuracy of certain floating-point instructions. + + + + + This option improves speed by eliminating a safety check before every memory read/write in guest. +Disabling it may allow a game to read/write the emulator's memory. + + + + + This option improves speed by relying only on the semantics of cmpxchg to ensure safety of exclusive access instructions. +Please note this may result in deadlocks and other race conditions. + + + + + Switches between the available graphics APIs. +Vulkan is recommended in most cases. + + + + + This setting selects the GPU to use with the Vulkan backend. + + + + + Shader Backend: + + + + + The shader backend to use for the OpenGL renderer. +GLSL is the fastest in performance and the best in rendering accuracy. +GLASM is a deprecated NVIDIA-only backend that offers much better shader building performance at the cost of FPS and rendering accuracy. +SPIR-V compiles the fastest, but yields poor results on most GPU drivers. + + + + + Forces the game to render at a different resolution. +Higher resolutions require much more VRAM and bandwidth. +Options lower than 1X can cause rendering issues. + + + + + FSR Sharpness: + + + + + Determines how sharpened the image will look while using FSR’s dynamic contrast. + + + + + The anti-aliasing method to use. +SMAA offers the best quality. +FXAA has a lower performance impact and can produce a better and more stable picture under very low resolutions. + + + + + The method used to render the window in fullscreen. +Borderless offers the best compatibility with the on-screen keyboard that some games request for input. +Exclusive fullscreen may offer better performance and better Freesync/Gsync support. + + + + + Stretches the game to fit the specified aspect ratio. +Switch games only support 16:9, so custom game mods are required to get other ratios. +Also controls the aspect ratio of captured screenshots. + + + + + Use disk pipeline cache + + + + + Allows saving shaders to storage for faster loading on following game boots. +Disabling it is only intended for debugging. + + + + + Optimize SPIRV output shader + + + + + Runs an additional optimization pass over generated SPIRV shaders. +Will increase time required for shader compilation. +May slightly improve performance. +This feature is experimental. + + + + + Uses an extra CPU thread for rendering. +This option should always remain enabled. + + + + + Specifies how videos should be decoded. +It can either use the CPU or the GPU for decoding, or perform no decoding at all (black screen on videos). +In most cases, GPU decoding provides the best performance. + + + + + ASTC Decoding Method: + + + + + This option controls how ASTC textures should be decoded. +CPU: Use the CPU for decoding, slowest but safest method. +GPU: Use the GPU's compute shaders to decode ASTC textures, recommended for most games and users. +CPU Asynchronously: Use the CPU to decode ASTC textures as they arrive. Completely eliminates ASTC decoding +stuttering at the cost of rendering issues while the texture is being decoded. + + + + + ASTC Recompression Method: + + + + + Almost all desktop and laptop dedicated GPUs lack support for ASTC textures, forcing the emulator to decompress to an intermediate format any card supports, RGBA8. +This option recompresses RGBA8 to either the BC1 or BC3 format, saving VRAM but negatively affecting image quality. + + + + + VRAM Usage Mode: + + + + + Selects whether the emulator should prefer to conserve memory or make maximum usage of available video memory for performance. +Aggressive mode may severely impact the performance of other applications such as recording software. + + + + + Skip CPU Inner Invalidation + + + + + Skips certain CPU-side cache invalidations during memory updates, reducing CPU usage and improving it's performance. This may cause glitches or crashes on some games. + + + + + VSync Mode: + + + + + FIFO (VSync) does not drop frames or exhibit tearing but is limited by the screen refresh rate. +FIFO Relaxed is similar to FIFO but allows tearing as it recovers from a slow down. +Mailbox can have lower latency than FIFO and does not tear but may drop frames. +Immediate (no synchronization) just presents whatever is available and can exhibit tearing. + + + + + Sync Memory Operations + + + + + Ensures data consistency between compute and memory operations. +This option should fix issues in some games, but may also reduce performance in some cases. +Unreal Engine 4 games often see the most significant changes thereof. + + + + + Enable asynchronous presentation (Vulkan only) + + + + + Slightly improves performance by moving presentation to a separate CPU thread. + + + + + Force maximum clocks (Vulkan only) + + + + + Runs work in the background while waiting for graphics commands to keep the GPU from lowering its clock speed. + + + + + Controls the quality of texture rendering at oblique angles. +It’s a light setting and safe to set at 16x on most GPUs. + + + + + GPU Accuracy: + + + + + Controls the GPU emulation accuracy. +Most games render fine with Normal, but High is still required for some. +Particles tend to only render correctly with High accuracy. +Extreme should only be used as a last resort. + + + + + DMA Accuracy: + + + + + Controls the DMA precision accuracy. Safe precision can fix issues in some games, but it can also impact performance in some cases. +If unsure, leave this on Default. + + + + + Enables asynchronous shader compilation, which may reduce shader stutter. +This feature is experimental. + + + + + Fast GPU Time (Hack) + + + + + Overclocks the emulated GPU to increase dynamic resolution and render distance. +Use 128 for maximal performance and 512 for maximal graphics fidelity. + + + + Use Vulkan pipeline cache - + Enables GPU vendor-specific pipeline cache. This option can improve shader loading time significantly in cases where the Vulkan driver does not store pipeline cache files internally. - + Enable Compute Pipelines (Intel Vulkan Only) - + Enable compute pipelines, required by some games. This setting only exists for Intel proprietary drivers, and may crash if enabled. Compute pipelines are always enabled on all other drivers. - + Enable Reactive Flushing - + Uses reactive flushing instead of predictive flushing, allowing more accurate memory syncing. - + Sync to framerate of video playback - + Run the game at normal speed during video playback, even when the framerate is unlocked. - + Barrier feedback loops - + Improves rendering of transparency effects in specific games. - - RNG Seed - RNG Seed + + RAII + - + + A method of automatic resource management in Vulkan that ensures proper release of resources when they are no longer needed, but may cause crashes in bundled games. + + + + + Extended Dynamic State + + + + + Controls the number of features that can be used in Extended Dynamic State. +Higher numbers allow for more features and can increase performance, but may cause issues with some drivers and vendors. +The default value may vary depending on your system and hardware capabilities. +This value can be changed until stability and a better visual quality are achieved. + + + + + Provoking Vertex + + + + + Improves lighting and vertex handling in certain games. +Only Vulkan 1.0+ devices support this extension. + + + + + Descriptor Indexing + + + + + Improves texture & buffer handling and the Maxwell translation layer. +Some Vulkan 1.1+ and all 1.2+ devices support this extension. + + + + + Sample Shading + + + + + Allows the fragment shader to execute per sample in a multi-sampled fragment instead once per fragment. Improves graphics quality at the cost of some performance. +Higher values improve quality more but also reduce performance to a greater extent. + + + + Controls the seed of the random number generator. Mainly used for speedrunning purposes. - + Device Name - + The name of the emulated Switch. - + Custom RTC Date: - + This option allows to change the emulated clock of the Switch. Can be used to manipulate time in games. - + Language: - - Note: this can be overridden when region setting is auto-select - Σημείωση: αυτό μπορεί να παρακαμφθεί όταν η ρύθμιση περιοχής είναι ως αυτόματη επιλογή - - - - Region: - Περιφέρεια: - - - + The region of the emulated Switch. - - Time Zone: - Ζώνη Ώρας: - - - + The time zone of the emulated Switch. - + Sound Output Mode: - + Console Mode: - + Selects if the console is emulated in Docked or Handheld mode. Games will change their resolution, details and supported controllers and depending on this setting. Setting to Handheld can help improve performance for low end systems. - - Prompt for user on game boot - Επιλογή χρήστη κατά την εκκίνηση παιχνιδιού - - - - Pause emulation when in background - Παύση εξομοίωσης όταν βρίσκεται στο παρασκήνιο - - - - Fast GPU Time (Hack) + + Ask to select a user profile on each boot, useful if multiple people use Eden on the same PC. - - Overclocks the emulated GPU to increase dynamic resolution and render distance. -Use 128 for maximal performance and 512 for maximal graphics fidelity. + + This setting pauses Eden when focusing other windows. - - Extended Dynamic State - - - - - Enables the VkExtendedDynamicState* extensions. -Higher dynamic states will generally improve performance, but may cause issues on certain games or devices. - - - - - Provoking Vertex - - - - - Improves lighting and vertex handling in certain games. -Only Vulkan 1.0+ devices support this extension. - - - - - Descriptor Indexing - - - - - Improves texture & buffer handling and the Maxwell translation layer. -Some Vulkan 1.1+ and all 1.2+ devices support this extension. - - - - - Ask to select a user profile on each boot, useful if multiple people use eden on the same PC. - - - - - This setting pauses eden when focusing other windows. - - - - + Confirm before stopping emulation - + This setting overrides game prompts asking to confirm stopping the game. Enabling it bypasses such prompts and directly exits the emulation. - - Hide mouse on inactivity - Απόκρυψη δρομέα ποντικιού στην αδράνεια - - - + This setting hides the mouse after 2.5s of inactivity. - + Disable controller applet - + Forcibly disables the use of the controller applet by guests. When a guest attempts to open the controller applet, it is immediately closed. - + Check for updates - + Whether or not to check for updates upon startup. - + Enable Gamemode - + Custom frontend - + Real applet - + Never - + On Load - + Always - - CPU - CPU - - - + GPU - + CPU Asynchronous - + Uncompressed (Best quality) - + BC1 (Low quality) - + BC3 (Medium quality) - + Conservative - + Aggressive - + OpenGL - - Vulkan - Vulkan - - - + Null - + GLSL - - GLASM (Assembly Shaders, NVIDIA Only) - GLASM (Shaders Γλώσσας Μηχανής, μόνο NVIDIA) - - - + SPIR-V (Experimental, AMD/Mesa Only) - + Normal - + High - + Extreme - - Auto - Αυτόματη + + Unsafe (fast) + - - Accurate - Ακριβής + + Safe (stable) + - - Unsafe - Επισφαλής - - - + Paranoid (disables most optimizations) - + Dynarmic - + NCE - - Borderless Windowed - Παραθυροποιημένο Χωρίς Όρια - - - - Exclusive Fullscreen - Αποκλειστική Πλήρης Οθόνη - - - - No Video Output - Χωρίς Έξοδο Βίντεο - - - - CPU Video Decoding - Αποκωδικοποίηση Βίντεο CPU - - - - GPU Video Decoding (Default) - Αποκωδικοποίηση Βίντεο GPU (Προεπιλογή) - - - + 0.25X (180p/270p) [EXPERIMENTAL] - + 0.5X (360p/540p) [EXPERIMENTAL] - - 0.75X (540p/810p) [EXPERIMENTAL] - 0.75X (540p/810p) [ΠΕΙΡΑΜΑΤΙΚΟ] - - - - 1X (720p/1080p) - 1X (720p/1080p) - - - + 1.5X (1080p/1620p) [EXPERIMENTAL] - - 2X (1440p/2160p) - 2X (1440p/2160p) - - - - 3X (2160p/3240p) - 3X (2160p/3240p) - - - - 4X (2880p/4320p) - 4X (2880p/4320p) - - - - 5X (3600p/5400p) - 5X (3600p/5400p) - - - - 6X (4320p/6480p) - 6X (4320p/6480p) - - - + 7X (5040p/7560p) - + 8X (5760p/8640p) - - Nearest Neighbor - Πλησιέστερος Γείτονας - - - - Bilinear - Διγραμμικό - - - - Bicubic - Δικυβικό - - - - Gaussian - Gaussian - - - - ScaleForce - ScaleForce - - - + AMD FidelityFX™️ Super Resolution - + Area - - None - Κανένα - - - - FXAA - FXAA - - - - SMAA - SMAA - - - - Default (16:9) - Προεπιλογή (16:9) - - - - Force 4:3 - Επιβολή 4:3 - - - - Force 21:9 - Επιβολή 21:9 - - - - Force 16:10 - Επιβολή 16:10 - - - - Stretch to Window - Επέκταση στο Παράθυρο - - - - Automatic - Αυτόματα - - - - Default - Προεπιλεγμένο - - - + 2x 2x - + 4x 4x - + 8x 8x - + 16x 16x - + Japanese (日本語) Ιαπωνικά (日本語) - + American English - + French (français) Γαλλικά (Français) - + German (Deutsch) Γερμανικά (Deutsch) - + Italian (italiano) Ιταλικά (Italiano) - + Spanish (español) Ισπανικά (Español) - + Chinese Κινέζικα - + Korean (한국어) Κορεάτικα (한국어) - + Dutch (Nederlands) Ολλανδικά (Nederlands) - + Portuguese (português) Πορτογαλικά (Português) - + Russian (Русский) Ρώσικα (Русский) - + Taiwanese Ταϊβανέζικα - + British English Βρετανικά Αγγλικά - + Canadian French Καναδικά Γαλλικά - + Latin American Spanish Λατινοαμερικάνικα Ισπανικά - + Simplified Chinese Απλοποιημένα Κινέζικα - + Traditional Chinese (正體中文) Παραδοσιακά Κινέζικα (正體中文) - + Brazilian Portuguese (português do Brasil) Πορτογαλικά Βραζιλίας (Português do Brasil) - - + + Serbian (српски) + + + + + Japan Ιαπωνία - + USA ΗΠΑ - + Europe Ευρώπη - + Australia Αυστραλία - + China Κίνα - + Korea Κορέα - + Taiwan Ταϊβάν - + Auto (%1) Auto select time zone - + Default (%1) Default time zone - + CET CET - + CST6CDT CST6CDT - + Cuba Κούβα - + EET EET - + Egypt Αίγυπτος - + Eire - + EST EST - + EST5EDT EST5EDT - + GB - + GB-Eire - + GMT GMT - + GMT+0 GMT+0 - + GMT-0 GMT-0 - + GMT0 GMT0 - + Greenwich Γκρήνουιτς - + Hongkong Χονγκ Κονγκ - + HST HST - + Iceland Ισλανδία - + Iran Ιράν - + Israel Ισραήλ - + Jamaica Ιαμαϊκή - + Kwajalein - + Libya Λιβύη - + MET MET - + MST MST - + MST7MDT MST7MDT - + Navajo Ναβάχο - + NZ - + NZ-CHAT - + Poland Πολωνία - + Portugal Πορτογαλία - + PRC - + PST8PDT PST8PDT - + ROC ROC - + ROK ROK - + Singapore Σιγκαπούρη - + Turkey Τουρκία - + UCT UCT - + Universal Παγκόσμια - + UTC UTC - + W-SU W-SU - + WET WET - + Zulu - + Mono Μονοφωνικό - + Stereo Στέρεοφωνικό - + Surround - + 4GB DRAM (Default) - + 6GB DRAM (Unsafe) - + 8GB DRAM - + 10GB DRAM (Unsafe) - + 12GB DRAM (Unsafe) - - Low (128) - - - - - Medium (256) - - - - - High (512) - - - - + Docked Docked - + Handheld Handheld - + Boost (1700MHz) - + Fast (2000MHz) - + Always ask (Default) - + Only if game specifies not to stop - + Never ask + + + Low (128) + + + + + Medium (256) + + + + + High (512) + + ConfigureApplets @@ -2257,27 +2354,27 @@ When a guest attempts to open the controller applet, it is immediately closed.Καταγραφή Συμβάντων - + Open Log Location Άνοιγμα θέσης του αρχείου καταγραφής - + Global Log Filter Παγκόσμιο φίλτρο αρχείου καταγραφής - + When checked, the max size of the log increases from 100 MB to 1 GB Όταν επιλεγεί, το μέγιστο μέγεθος του αρχείου καταγραφής αυξάνεται από 100 MB σε 1 GB - + Enable Extended Logging** Ενεργοποίηση Εκτεταμένης Καταγραφής** - + Show Log in Console @@ -2423,7 +2520,7 @@ When a guest attempts to open the controller applet, it is immediately closed. - **This will be reset automatically when eden closes. + **This will be reset automatically when Eden closes. @@ -2485,7 +2582,7 @@ When a guest attempts to open the controller applet, it is immediately closed.**Αυτό θα μηδενιστεί αυτόματα όταν το yuzu κλείσει. - + Web applet not compiled Το web applet δεν έχει συσταθεί @@ -2535,7 +2632,7 @@ When a guest attempts to open the controller applet, it is immediately closed. - eden Configuration + Eden Configuration @@ -2544,88 +2641,88 @@ When a guest attempts to open the controller applet, it is immediately closed. - + Applets - - + + Audio Ήχος - - + + CPU CPU - + Debug Αποσφαλμάτωση - + Filesystem Σύστημα Αρχείων - - + + General Γενικά - - + + Graphics Γραφικά - + GraphicsAdvanced - + GraphicsExtensions - + Hotkeys Πλήκτρα Συντόμευσης - - + + Controls Χειρισμός - + Profiles Τα προφίλ - + Network Δίκτυο - - + + System Σύστημα - + Game List Λίστα Παιχνιδιών - + Web Ιστός @@ -2723,51 +2820,45 @@ When a guest attempts to open the controller applet, it is immediately closed. - - - Reset Metadata Cache Επαναφορά Προσωρινής Μνήμης Μεταδεδομένων - + Select Emulated NAND Directory... - + Select Emulated SD Directory... - + Select Gamecard Path... - + Select Dump Directory... - + Select Mod Load Directory... - The metadata cache is already empty. - Η προσωρινή μνήμη μεταδεδομένων είναι ήδη άδεια. + Η προσωρινή μνήμη μεταδεδομένων είναι ήδη άδεια. - The operation completed successfully. - Η επέμβαση ολοκληρώθηκε με επιτυχία. + Η επέμβαση ολοκληρώθηκε με επιτυχία. - The metadata cache couldn't be deleted. It might be in use or non-existent. - Δεν ήταν δυνατή η διαγραφή της προσωρινής μνήμης μεταδεδομένων. Μπορεί να χρησιμοποιείται ή να μην υπάρχει. + Δεν ήταν δυνατή η διαγραφή της προσωρινής μνήμης μεταδεδομένων. Μπορεί να χρησιμοποιείται ή να μην υπάρχει. @@ -2798,12 +2889,12 @@ When a guest attempts to open the controller applet, it is immediately closed.yuzu - - eden + + Eden - + This reset all settings and remove all per-game configurations. This will not delete game directories, profiles, or input profiles. Proceed? Επαναφέρει όλες τις ρυθμίσεις και καταργεί όλες τις επιλογές ανά παιχνίδι. Δεν θα διαγράψει καταλόγους παιχνιδιών, προφίλ ή προφίλ εισόδου. Συνέχιση; @@ -2836,33 +2927,33 @@ When a guest attempts to open the controller applet, it is immediately closed.Χρώμα Φόντου: - + % FSR sharpening percentage (e.g. 50%) % - + Off - + VSync Off - + Recommended - + On - + VSync On @@ -2899,14 +2990,18 @@ When a guest attempts to open the controller applet, it is immediately closed. - Vulkan Extension Settings + Vulkan Extensions Settings - - While it's recommended to use state 3, some games may perform better on lower states. Setting to 0 (disabled) may also break games. -If your GPU is older (i.e. RX570/580 or older), it may not support these features. If this is the case, set the slider to 0 and uncheck all boxes. -These settings are experimental, and may cause black screens. If your games fail to boot or are stuck on a black screen, change these settings around. + + % + Sample Shading percentage (e.g. 50%) + % + + + + Extended Dynamic State is disabled on macOS due to MoltenVK compatibility issues that cause black screens. @@ -2938,75 +3033,75 @@ These settings are experimental, and may cause black screens. If your games fail Επαναφορά Προεπιλογών - + Action Δράση - + Hotkey Πλήκτρο Συντόμευσης - + Controller Hotkey Πλήκτρο Συντόμευσης Χειριστηρίου - - - + + + Conflicting Key Sequence Αντικρουόμενη Ακολουθία Πλήκτρων - - + + The entered key sequence is already assigned to: %1 Η εισαγόμενη ακολουθία πλήκτρων έχει ήδη αντιστοιχιστεί στο: %1 - + [waiting] [αναμονή] - + Invalid Μη Έγκυρο - + Invalid hotkey settings - + An error occurred. Please report this issue on github. - + Restore Default Επαναφορά Προκαθορισμένων - + Clear Καθαρισμός - + Conflicting Button Sequence Αντικρουόμενη Ακολουθία Κουμπιών - + The default button sequence is already assigned to: %1 Η προεπιλεγμένη ακολουθία κουμπιών έχει ήδη αντιστοιχιστεί στο: %1 - + The default key sequence is already assigned to: %1 Η προεπιλεγμένη ακολουθία πλήκτρων έχει ήδη αντιστοιχιστεί στο: %1 @@ -3326,7 +3421,7 @@ These settings are experimental, and may cause black screens. If your games fail - Requires restarting eden + Requires restarting Eden @@ -3481,7 +3576,7 @@ These settings are experimental, and may cause black screens. If your games fail - + Left Stick Αριστερό Stick @@ -3591,14 +3686,14 @@ These settings are experimental, and may cause black screens. If your games fail - + L L - + ZL ZL @@ -3617,7 +3712,7 @@ These settings are experimental, and may cause black screens. If your games fail - + Plus Συν @@ -3630,15 +3725,15 @@ These settings are experimental, and may cause black screens. If your games fail - - + + R R - + ZR ZR @@ -3683,7 +3778,7 @@ These settings are experimental, and may cause black screens. If your games fail - + Right Stick Δεξιός Μοχλός @@ -3698,242 +3793,242 @@ These settings are experimental, and may cause black screens. If your games fail Διαμόρφωση - - - - + + + + Clear Καθαρισμός - - - - - + + + + + [not set] [άδειο] - - - + + + Invert button Κουμπί αντιστροφής - - + + Toggle button Κουμπί εναλλαγής - + Turbo button - - + + Invert axis Αντιστροφή άξονα - - - + + + Set threshold Ορισμός ορίου - - + + Choose a value between 0% and 100% Επιλέξτε μια τιμή μεταξύ 0% και 100% - + Toggle axis Εναλλαγή αξόνων - + Set gyro threshold Ρύθμιση κατωφλίου γυροσκοπίου - + Calibrate sensor - + Map Analog Stick Χαρτογράφηση Αναλογικού Stick - + After pressing OK, first move your joystick horizontally, and then vertically. To invert the axes, first move your joystick vertically, and then horizontally. Αφού πατήσετε OK, μετακινήστε πρώτα το joystick σας οριζόντια και μετά κατακόρυφα. Για να αντιστρέψετε τους άξονες, μετακινήστε πρώτα το joystick κατακόρυφα και μετά οριζόντια. - + Center axis Κεντρικός άξονας - - + + Deadzone: %1% Νεκρή Ζώνη: %1% - - + + Modifier Range: %1% Εύρος Τροποποιητή: %1% - - + + Pro Controller Pro Controller - + Dual Joycons Διπλά Joycons - + Left Joycon Αριστερό Joycon - + Right Joycon Δεξί Joycon - + Handheld Handheld - + GameCube Controller Χειριστήριο GameCube - + Poke Ball Plus Poke Ball Plus - + NES Controller Χειριστήριο NES - + SNES Controller Χειριστήριο SNES - + N64 Controller Χειριστήριο N64 - + Sega Genesis Sega Genesis - + Start / Pause - + Z Z - + Control Stick - + C-Stick C-Stick - + Shake! - + [waiting] [αναμονή] - + New Profile Νέο Προφίλ - + Enter a profile name: Εισαγάγετε ένα όνομα προφίλ: - - + + Create Input Profile Δημιουργία Προφίλ Χειρισμού - + The given profile name is not valid! Το όνομα του προφίλ δεν είναι έγκυρο! - + Failed to create the input profile "%1" Η δημιουργία του προφίλ χειρισμού "%1" απέτυχε - + Delete Input Profile Διαγραφή Προφίλ Χειρισμού - + Failed to delete the input profile "%1" Η διαγραφή του προφίλ χειρισμού "%1" απέτυχε - + Load Input Profile Φόρτωση Προφίλ Χειρισμού - + Failed to load the input profile "%1" Η φόρτωση του προφίλ χειρισμού "%1" απέτυχε - + Save Input Profile Αποθήκευση Προφίλ Χειρισμού - + Failed to save the input profile "%1" Η αποθήκευση του προφίλ χειρισμού "%1" απέτυχε @@ -3990,7 +4085,7 @@ To invert the axes, first move your joystick vertically, and then horizontally.< - + Configure Διαμόρφωση @@ -4026,7 +4121,7 @@ To invert the axes, first move your joystick vertically, and then horizontally.< - + Test Τεστ @@ -4041,7 +4136,7 @@ To invert the axes, first move your joystick vertically, and then horizontally.< Κατάργηση Διακομιστή - + %1:%2 %1:%2 @@ -4050,77 +4145,77 @@ To invert the axes, first move your joystick vertically, and then horizontally.< yuzu - + <a href='https://eden-emulator.github.io/wiki/using-a-controller-or-android-phone-for-motion-or-touch-input'><span style="text-decoration: underline; color:#039be5;">Learn More</span></a> - + Port number has invalid characters Ο αριθμός θύρας έχει μη έγκυρους χαρακτήρες - - - - - - - eden + + + + + + + Eden - + Port has to be in range 0 and 65353 Η θύρα πρέπει να ανήκει στο εύρος 0 και 65353 - + IP address is not valid Η διεύθυνση IP δεν είναι έγκυρη - + This UDP server already exists Αυτός ο διακομιστής UDP υπάρχει ήδη - + Unable to add more than 8 servers Δεν είναι δυνατή η προσθήκη περισσότερων από 8 διακομιστών - + 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>Βεβαιωθείτε ότι ο διακομιστής έχει ρυθμιστεί σωστά και ότι η διεύθυνση και η θύρα είναι σωστές. - + UDP Test or calibration configuration is in progress.<br>Please wait for them to finish. Η δοκιμή UDP ή η διαμόρφωση βαθμονόμησης είναι σε εξέλιξη.<br>Παρακαλώ περιμένετε να τελειώσουν. @@ -4246,7 +4341,12 @@ Current values are %1% and %2% respectively. Διεπαφή Δικτύου - + + Enable Airplane Mode + + + + None Κανένα @@ -4304,52 +4404,52 @@ Current values are %1% and %2% respectively. - + Add-Ons Πρόσθετα - + System Σύστημα - + CPU CPU - + Graphics Γραφικά - + Adv. Graphics Προχ. Γραφικά - + GPU Extensions - + Audio Ήχος - + Input Profiles - + Linux - + Properties Ιδιότητες @@ -4367,12 +4467,12 @@ Current values are %1% and %2% respectively. Πρόσθετα - + Patch Name Όνομα Ενημέρωσης Κώδικα - + Version Έκδοση @@ -4410,27 +4510,32 @@ Current values are %1% and %2% respectively. Ορισμός Εικόνας - + + Select Avatar + + + + Add Προσθήκη - + Rename Μετονομασία - + Remove Αφαίρεση - + Profile management is available only when game is not running. Η διαχείριση προφίλ είναι διαθέσιμη μόνο όταν το παιχνίδι δεν εκτελείται. - + %1 %2 %1 is the profile username, %2 is the formatted UUID (e.g. 00112233-4455-6677-8899-AABBCCDDEEFF)) @@ -4438,100 +4543,189 @@ Current values are %1% and %2% respectively. %2 - + Enter Username Εισάγετε Όνομα Χρήστη - + Users Χρήστες - + Enter a username for the new user: Εισαγάγετε ένα όνομα χρήστη για τον νέο χρήστη: - + Enter a new username: Εισαγάγετε ένα νέο όνομα χρήστη: - + + Error saving user image + + + + + Unable to save image to file + + + + Select User Image Επιλέξτε Εικόνα χρήστη - - JPEG Images (*.jpg *.jpeg) - Εικόνες JPEG (*.jpg *.jpeg) + + Image Formats (*.jpg *.jpeg *.png *.bmp) + - + + No firmware available + + + + + Please install the firmware to use firmware avatars. + + + + + + Error loading archive + + + + + Archive is not available. Please install/reinstall firmware. + + + + + Archive does not contain romfs. It is probably corrupt. + + + + + Error extracting archive + + + + + Archive could not be extracted. It is probably corrupt. + + + + + Error finding image directory + + + + + Failed to find image directory in the archive. + + + + + No images found + + + + + No avatar images were found in the archive. + + + + JPEG Images (*.jpg *.jpeg) + Εικόνες JPEG (*.jpg *.jpeg) + + + Error deleting image Σφάλμα κατα τη διαγραφή εικόνας - + Error occurred attempting to overwrite previous image at: %1. Παρουσιάστηκε σφάλμα κατά την προσπάθεια αντικατάστασης της προηγούμενης εικόνας στο: %1. - + Error deleting file Σφάλμα κατα τη διαγραφή του αρχείου - + Unable to delete existing file: %1. Δεν είναι δυνατή η διαγραφή του υπάρχοντος αρχείου: %1. - + Error creating user image directory Σφάλμα δημιουργίας καταλόγου εικόνων χρήστη - + Unable to create directory %1 for storing user images. Δεν είναι δυνατή η δημιουργία του καταλόγου %1 για την αποθήκευση εικόνων χρήστη. - Error copying user image - Σφάλμα κατά την αντιγραφή της εικόνας χρήστη + Σφάλμα κατά την αντιγραφή της εικόνας χρήστη - Unable to copy image from %1 to %2 - Αδύνατη η αντιγραφή της εικόνας από το %1 στο %2 + Αδύνατη η αντιγραφή της εικόνας από το %1 στο %2 - Error resizing user image - Σφάλμα αλλαγής μεγέθους εικόνας χρήστη + Σφάλμα αλλαγής μεγέθους εικόνας χρήστη - Unable to resize image - Δεν είναι δυνατή η αλλαγή μεγέθους της εικόνας + Δεν είναι δυνατή η αλλαγή μεγέθους της εικόνας + + + + ConfigureProfileManagerAvatarDialog + + + Select + + + + + Cancel + + + + + Background Color + + + + + Select Firmware Avatar + ConfigureProfileManagerDeleteDialog - + Delete this user? All of the user's save data will be deleted. - + Confirm Delete Επιβεβαίωση Διαγραφής - + Name: %1 UUID: %2 @@ -4583,7 +4777,7 @@ UUID: %2 - + Enable @@ -4594,7 +4788,7 @@ UUID: %2 - + Not connected @@ -4604,63 +4798,63 @@ UUID: %2 Επαναφορά Προεπιλογών - + Clear Καθαρισμός - + [not set] [μη ορισμένο] - + Invert axis Αντιστροφή άξονα - - + + Deadzone: %1% Νεκρή Ζώνη: %1% - + Error enabling ring input - + Direct Joycon driver is not enabled - + Configuring Διαμόρφωση - + The current mapped device doesn't support the ring controller - + The current mapped device doesn't have a ring attached - + The current mapped device is not connected - + Unexpected driver result %1 - + [waiting] [αναμονή] @@ -4698,7 +4892,7 @@ UUID: %2 - <html><head/><body><p>Reads controller input from scripts in the same format as TAS-nx scripts.<br/>For a more detailed explanation, please consult the <a href="https://eden-emulator.github.io/help/feature/tas/"><span style=" text-decoration: underline; color:#039be5;">help page</span></a> on the eden website.</p></body></html> + <html><head/><body><p>Reads controller input from scripts in the same format as TAS-nx scripts.<br/>For a more detailed explanation, please consult the <a href="https://eden-emulator.github.io/help/feature/tas/"><span style=" text-decoration: underline; color:#039be5;">help page</span></a> on the Eden website.</p></body></html> @@ -4750,12 +4944,12 @@ UUID: %2 ConfigureTasDialog - + TAS Configuration Ρυθμίσεις TAS - + Select TAS Load Directory... @@ -4864,7 +5058,7 @@ Drag points to change position, or double-click table cells to edit values. - Warning: The settings in this page affect the inner workings of eden's emulated touchscreen. Changing them may result in undesirable behavior, such as the touchscreen partially or not working. You should only use this page if you know what you are doing. + Warning: The settings in this page affect the inner workings of Eden's emulated touchscreen. Changing them may result in undesirable behavior, such as the touchscreen partially or not working. You should only use this page if you know what you are doing. @@ -5186,41 +5380,38 @@ Drag points to change position, or double-click table cells to edit values. - eden Web Service + Eden Web Service - - By providing your username and token, you agree to allow eden to collect additional usage data, which may include user identifying information. + + Generate - Verify - Επαλήθευση + Επαλήθευση - Sign up - Εγγραφή + Εγγραφή - + Token: Διαπιστευτήριο: - + Username: Όνομα χρήστη: - What is my token? - Ποιο είναι το διακριτικό μου; + Ποιο είναι το διακριτικό μου; - + Web Service configuration can only be changed when a public room isn't being hosted. @@ -5241,12 +5432,12 @@ Drag points to change position, or double-click table cells to edit values.Εκ Νέου Αντικατάσταση - + Discord Presence - + Show Current Game in your Discord Status @@ -5255,30 +5446,9 @@ Drag points to change position, or double-click table cells to edit values.<a href='https://yuzu-emu.org/help/feature/telemetry/'><span style="text-decoration: underline; color:#039be5;">Μάθετε περισσότερα</span></a> - - <a href='https://profile.yuzu-emu.org/'><span style="text-decoration: underline; color:#039be5;">Sign up</span></a> - - - - - <a href='https://evilperson1337.notion.site/Hosting-a-Room-Inside-of-Eden-20457c2edaf680108abac6215a79acdb'><span style="text-decoration: underline; color:#039be5;">What is my token?</span></a> - - - - - Warning - - - - - Verification is currently nonfunctional, instead generate a random 48-character string with only lowercase a-z. - - - - Unverified, please click Verify before saving configuration Tooltip - Μη επαληθευμένο, κάντε κλικ στο κουμπί Επαλήθευση πριν αποθηκεύσετε τις ρυθμίσεις + Μη επαληθευμένο, κάντε κλικ στο κουμπί Επαλήθευση πριν αποθηκεύσετε τις ρυθμίσεις Verified @@ -5294,20 +5464,67 @@ Drag points to change position, or double-click table cells to edit values.Verification failed Η επαλήθευση απέτυχε + + + + All Good + Tooltip + + + + + Must be between 4-20 characters + Tooltip + + + + + Must be 48 characters, and lowercase a-z + Tooltip + + ControllerDialog - + Controller P1 - + &Controller P1 + + DepsDialog + + + Eden Dependencies + + + + + <html><head/><body><p><span style=" font-size:28pt;">Eden Dependencies</span></p></body></html> + + + + + <html><head/><body><p>The projects that make Eden possible</p></body></html> + + + + + Dependency + + + + + Version + Έκδοση + + DirectConnect @@ -5413,7 +5630,12 @@ Drag points to change position, or double-click table cells to edit values. - Creating a room failed. Please retry. Restarting eden might be necessary. + Creating a room failed. Please retry. Restarting Eden might be necessary. + + + + + Version mismatch! Please update to the latest version of Eden. If the problem persists, contact the room host and ask them to update the server. @@ -5421,11 +5643,6 @@ Drag points to change position, or double-click table cells to edit values.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 eden. If the problem persists, contact the room host and ask them to update the server. - - Incorrect password. @@ -5483,93 +5700,88 @@ Please go to Configure -> System -> Network and make a selection. Τηλεμετρία - + Broken Vulkan Installation Detected - + Running a game TRANSLATORS: This string is shown to the user to explain why yuzu needs to prevent the computer from sleeping - + Loading Web Applet... - - + + Disable Web Applet - + Disabling the web applet can lead to undefined behavior and should only be used with Super Mario 3D All-Stars. Are you sure you want to disable the web applet? (This can be re-enabled in the Debug settings.) - + The amount of shaders currently being built - + The current selected resolution scaling multiplier. - + Current emulation speed. Values higher or lower than 100% indicate emulation is running faster or slower than a Switch. - + 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 Switch frame, not counting framelimiting or v-sync. For full-speed emulation this should be at most 16.67 ms. - + Unmute - + Mute - + Reset Volume - + &Clear Recent Files - + &Continue &Συνέχεια - + &Pause &Παύση - - - Warning Outdated Game Format - - You are using the deconstructed ROM directory format for this game, which is an outdated format that has been superseded by others such as NCA, NAX, XCI, or NSP. Deconstructed ROM directories lack icons, metadata, and update support.<br><br>For an explanation of the various Switch formats yuzu supports, <a href='https://yuzu-emu.org/wiki/overview-of-switch-game-formats'>check out our wiki</a>. This message will not be shown again. Μη μεταφρασμένη συμβολοσειρά @@ -5578,497 +5790,277 @@ Please go to Configure -> System -> Network and make a selection. Για μια εξήγηση των διαφόρων μορφών Switch που υποστηρίζει το yuzu,<a href='https://yuzu-emu.org/wiki/overview-of-switch-game-formats'> δείτε το wiki μας </a>. Αυτό το μήνυμα δεν θα εμφανιστεί ξανά. - - + + Error while loading ROM! Σφάλμα κατά τη φόρτωση της ROM! - + The ROM format is not supported. - + An error occurred initializing the video core. - + Error while loading ROM! %1 %1 signifies a numeric error code. - + Vulkan initialization failed during boot.<br><br>Click <a href='https://eden-emulator.github.io/wiki/faq/#yuzu-starts-with-the-error-broken-vulkan-installation-detected'>here for instructions to fix the issue</a>. - - Game Updates Warning - - - - - The game you are trying to launch is known to have performance or booting issues when updates are applied. Please try increasing the memory layout to 6GB or 8GB if any issues occur.<br><br>Press "OK" to continue launching, or "Cancel" to cancel the launch. - - - - - Don't show again for this game - - - - - You are using the deconstructed ROM directory format for this game, which is an outdated format that has been superseded by others such as NCA, NAX, XCI, or NSP. Deconstructed ROM directories lack icons, metadata, and update support.<br><br>For an explanation of the various Switch formats eden supports, <a href='https://eden-emulator.github.io/wiki/overview-of-switch-game-formats'>check out our wiki</a>. This message will not be shown again. - - - - - eden has encountered an error while running the video core. This is usually caused by outdated GPU drivers, including integrated ones. Please see the log for more details. For more information on accessing the log, please see the following page: <a href='https://eden-emulator.github.io/help/reference/log-files/'>How to Upload the Log File</a>. - - - - - %1<br>Please redump your files or ask on Discord for help. - %1 signifies an error string. - - - - + An unknown error occurred. Please see the log for more details. Εμφανίστηκε ένα απροσδιόριστο σφάλμα. Ανατρέξτε στο αρχείο καταγραφής για περισσότερες λεπτομέρειες. - + (64-bit) (64-bit) - + (32-bit) (32-bit) - + %1 %2 %1 is the title name. %2 indicates if the title is 64-bit or 32-bit %1 %2 - + Closing software... - + Save Data Αποθήκευση δεδομένων - + Mod Data - + Error Opening %1 Folder - - + + Folder does not exist! Ο φάκελος δεν υπάρχει! - - Error Opening Transferable Shader Cache - - - - - Failed to create the shader cache directory for this title. - - - - - Error Removing Contents - - - - - Error Removing Update - - - - - Error Removing DLC - - - - + Remove Installed Game Contents? - + Remove Installed Game Update? - + Remove Installed Game DLC? - + Remove Entry - - - - - - - Successfully Removed - - - - - Successfully removed the installed base game. - - - - - The base game is not installed in the NAND and cannot be removed. - - - - - Successfully removed the installed update. - - - - - There is no update installed for this title. - - - - - There are no DLC installed for this title. - - - - - Successfully removed %1 installed DLC. - - - - + Delete OpenGL Transferable Shader Cache? - + Delete Vulkan Transferable Shader Cache? - + Delete All Transferable Shader Caches? - + Remove Custom Game Configuration? - + Remove Cache Storage? - + Remove File Αφαίρεση Αρχείου - + Remove Play Time Data - + Reset play time? - - - Error Removing Transferable Shader Cache - - - + - - A shader cache for this title does not exist. - - - - - Successfully removed the transferable shader cache. - - - - - Failed to remove the transferable shader cache. - - - - - Error Removing Vulkan Driver Pipeline Cache - - - - - Failed to remove the driver pipeline cache. - - - - - - Error Removing Transferable Shader Caches - - - - - Successfully removed the transferable shader caches. - - - - - Failed to remove the transferable shader cache directory. - - - - - - Error Removing Custom Configuration - - - - - A custom configuration for this title does not exist. - - - - - Successfully removed the custom game configuration. - - - - - Failed to remove the custom game configuration. - - - - - RomFS Extraction Failed! - + There was an error copying the RomFS files or the user cancelled the operation. - + Full - + Skeleton - + Select RomFS Dump Mode Επιλογή λειτουργίας απόρριψης RomFS - + Please select the how you would like the RomFS dumped.<br>Full will copy all of the files into the new directory while <br>skeleton will only create the directory structure. Μη αποθηκευμένη μετάφραση. Παρακαλούμε επιλέξτε τον τρόπο με τον οποίο θα θέλατε να γίνει η απόρριψη της RomFS.<br> Η επιλογή Πλήρης θα αντιγράψει όλα τα αρχεία στο νέο κατάλογο, ενώ η επιλογή <br> Σκελετός θα δημιουργήσει μόνο τη δομή του καταλόγου. - + There is not enough free space at %1 to extract the RomFS. Please free up space or select a different dump directory at Emulation > Configure > System > Filesystem > Dump Root - + Extracting RomFS... - - - - - + + Cancel Ακύρωση - + RomFS Extraction Succeeded! - - - + The operation completed successfully. Η επέμβαση ολοκληρώθηκε με επιτυχία. - - Integrity verification couldn't be performed! + + Warning: Outdated Game Format - - File contents were not checked for validity. + + You are using the deconstructed ROM directory format for this game, which is an outdated format that has been superseded by others such as NCA, NAX, XCI, or NSP. Deconstructed ROM directories lack icons, metadata, and update support.<br><br>For an explanation of the various Switch formats Eden supports, <a href='https://eden-emulator.github.io/wiki/overview-of-switch-game-formats'>check out our wiki</a>. This message will not be shown again. - - - Verifying integrity... + + Eden has encountered an error while running the video core. This is usually caused by outdated GPU drivers, including integrated ones. Please see the log for more details. For more information on accessing the log, please see the following page: <a href='https://yuzu-mirror.github.io/help/reference/log-files/'>How to Upload the Log File</a>. - - - Integrity verification succeeded! + + %1<br>Please redump your files or ask on Discord/Revolt for help. + %1 signifies an error string. - - - Integrity verification failed! - - - - - File contents may be corrupt. - - - - - - - - Create Shortcut - - - - - Do you want to launch the game in fullscreen? - - - - - Successfully created a shortcut to %1 - - - - - This will create a shortcut to the current AppImage. This may not work well if you update. Continue? - - - - - Failed to create a shortcut to %1 - - - - - Create Icon - - - - - Cannot create icon file. Path "%1" does not exist and cannot be created. - - - - + Error Opening %1 - + Select Directory Επιλογή καταλόγου - + Properties Ιδιότητες - + The game properties could not be loaded. - + Switch Executable (%1);;All Files (*.*) %1 is an identifier for the Switch executable file extensions. - + Load File Φόρτωση αρχείου - + Open Extracted ROM Directory - + Invalid Directory Selected - + The directory you have selected does not contain a 'main' file. - + Installable Switch File (*.nca *.nsp *.xci);;Nintendo Content Archive (*.nca);;Nintendo Submission Package (*.nsp);;NX Cartridge Image (*.xci) - + Install Files - + %n file(s) remaining @@ -6076,24 +6068,24 @@ Please go to Configure -> System -> Network and make a selection. - + Installing file "%1"... - - + + Install Results Αποτελέσματα εγκατάστασης - + To avoid possible conflicts, we discourage users from installing base games to the NAND. Please, only use this feature to install updates and DLC. - + %n file(s) were newly installed @@ -6102,7 +6094,7 @@ Please, only use this feature to install updates and DLC. - + %n file(s) were overwritten @@ -6111,7 +6103,7 @@ Please, only use this feature to install updates and DLC. - + %n file(s) failed to install @@ -6120,484 +6112,438 @@ Please, only use this feature to install updates and DLC. - + System Application Εφαρμογή συστήματος - + System Archive - + System Application Update - + Firmware Package (Type A) - + Firmware Package (Type B) - + Game Παιχνίδι - + Game Update Ενημέρωση παιχνιδιού - + Game DLC DLC παιχνιδιού - + Delta Title - + Select NCA Install Type... Επιλέξτε τον τύπο εγκατάστασης NCA... - + Please select the type of title you would like to install this NCA as: (In most instances, the default 'Game' is fine.) - + Failed to Install - + The title type you selected for the NCA is invalid. - + File not found Το αρχείο δεν βρέθηκε - + File "%1" not found Το αρχείο "%1" δεν βρέθηκε - + OK OK - - + + Hardware requirements not met - - + + Your system does not meet the recommended hardware requirements. Compatibility reporting has been disabled. - + Missing yuzu Account - - In order to submit a game compatibility test case, you must link your eden account.<br><br/>To link your eden account, go to Emulation &gt; Configuration &gt; Web. + + In order to submit a game compatibility test case, you must set up your web token and username.<br><br/>To link your eden account, go to Emulation &gt; Configuration &gt; Web. - - Install decryption keys and restart eden before attempting to install firmware. + + Select Dumped Firmware ZIP - - Firmware installation cancelled, firmware may be in bad state, restart eden or re-install firmware. + + Zipped Archives (*.zip) - - Encryption keys are missing. + + Firmware cleanup failed - - Are you sure you want to close eden? + + Failed to clean up extracted firmware cache. +Check write permissions in the system temp directory and try again. +OS reported error: %1 - - - - eden + + Please install firmware to use the Album applet. - - The currently running application has requested eden to not exit. + + Please install firmware to use the Cabinet applet. + + + + + Please install firmware to use the Mii editor. + + + + + Please install firmware to use the Controller Menu. + + + + + Please install firmware to use the Home Menu. + + + + + Firmware Corrupted + + + + + Firmware Too New + + + + + +Continue anyways? + + + + + Don't show again + + + + + Please install firmware to use Starter. + + + + + Are you sure you want to close Eden? + + + + + + + Eden + + + + + The currently running application has requested Eden to not exit. Would you like to bypass this and exit anyway? - + + Encryption keys are missing. + + + + Error opening URL Σφάλμα κατα το άνοιγμα του URL - + Unable to open the URL "%1". Αδυναμία ανοίγματος του URL "%1". - + TAS Recording - + Overwrite file of player 1? - + Invalid config detected - + Handheld controller can't be used on docked mode. Pro controller will be selected. - - + + Amiibo Amiibo - - + + The current amiibo has been removed - + Error Σφάλμα - - + + The current game is not looking for amiibos - + Amiibo File (%1);; All Files (*.*) - + Load Amiibo Φόρτωση Amiibo - + Error loading Amiibo data Σφάλμα φόρτωσης δεδομένων Amiibo - + The selected file is not a valid amiibo Το επιλεγμένο αρχείο δεν αποτελεί έγκυρο amiibo - + The selected file is already on use Το επιλεγμένο αρχείο χρησιμοποιείται ήδη - + An unknown error occurred - - - Verification failed for the following files: - -%1 - - - - + + Keys not installed - + + + Install decryption keys and restart Eden before attempting to install firmware. + + + + Select Dumped Firmware Source Location - - Installing Firmware... - - - - - - - - Firmware install failed - - - - - Unable to locate potential firmware NCA files - - - - - Failed to delete one or more firmware file. - - - - - One or more firmware files failed to copy into NAND. - - - - - Firmware integrity verification failed! - - - - - Select Dumped Keys Location - - - - - - - Decryption Keys install failed - - - - - prod.keys is a required decryption key file. - - - - - One or more keys failed to copy. - - - - - Decryption Keys install succeeded - - - - - Decryption Keys were successfully installed - - - - - Decryption Keys failed to initialize. Check that your dumping tools are up to date and re-dump keys. - - - - - - - - - - + + + + + + No firmware available - - Please install the firmware to use the Album applet. - - - - + Album Applet - + Album applet is not available. Please reinstall firmware. - - Please install the firmware to use the Cabinet applet. - - - - + Cabinet Applet - + Cabinet applet is not available. Please reinstall firmware. - - Please install the firmware to use the Mii editor. - - - - + Mii Edit Applet - + Mii editor is not available. Please reinstall firmware. - - Please install the firmware to use the Controller Menu. - - - - + Controller Applet Applet Χειρισμού - + Controller Menu is not available. Please reinstall firmware. - - Please install the firmware to use the Home Menu. - - - - - + Home Menu Applet - - + Home Menu is not available. Please reinstall firmware. - - Please install the firmware to use Starter. - - - - + Starter Applet - + Starter is not available. Please reinstall firmware. - - Please install firmware to use the home menu. - - - - + Capture Screenshot Λήψη στιγμιότυπου οθόνης - + PNG Image (*.png) Εικόνα PBG (*.png) - + Update Available - + Update %1 for Eden is available. Would you like to download it? - + TAS state: Running %1/%2 - + TAS state: Recording %1 - + TAS state: Idle %1/%2 - + TAS State: Invalid - + &Stop Running - + &Start &Έναρξη - + Stop R&ecording - + R&ecord - + Building: %n shader(s) @@ -6605,70 +6551,70 @@ Would you like to download it? - + Scale: %1x %1 is the resolution scaling factor Κλίμακα: %1x - + Speed: %1% / %2% Ταχύτητα: %1% / %2% - + Speed: %1% Ταχύτητα: %1% - + Game: %1 FPS - + Frame: %1 ms Καρέ: %1 ms - + %1 %2 %1 %2 - - + + FSR FSR - + NO AA - + VOLUME: MUTE - + VOLUME: %1% Volume percentage (e.g. 50%) - + Derivation Components Missing - + Select RomFS Dump Target - + Please select which RomFS you would like to dump. @@ -6681,107 +6627,107 @@ Would you like to download it? yuzu - + Are you sure you want to stop the emulation? Any unsaved progress will be lost. - + None Κανένα - + FXAA FXAA - + SMAA SMAA - + Nearest - + Bilinear Διγραμμικό - + Bicubic Δικυβικό - + Gaussian Gaussian - + ScaleForce ScaleForce - + Area - + Docked Docked - + Handheld Handheld - + Normal - + High - + Extreme - + Vulkan Vulkan - + OpenGL - + Null - + GLSL - + GLASM - + SPIRV @@ -6789,44 +6735,44 @@ Would you like to download it? GRenderWindow - - + + OpenGL not available! Το OpenGL δεν είναι διαθέσιμο! - + OpenGL shared contexts are not supported. - - eden has not been compiled with OpenGL support. + + Eden has not been compiled with OpenGL support. - - + + Error while initializing OpenGL! Σφάλμα κατα την αρχικοποίηση του OpenGL! - + Your GPU may not support OpenGL, or you do not have the latest graphics driver. - + Error while initializing OpenGL 4.6! - + Your GPU may not support OpenGL 4.6, or you do not have the latest graphics driver.<br><br>GL Renderer:<br>%1 - + Your GPU may not support one or more required OpenGL extensions. Please ensure you have the latest graphics driver.<br><br>GL Renderer:<br>%1<br><br>Unsupported extensions:<br>%2 @@ -6834,128 +6780,128 @@ Would you like to download it? GameList - + Favorite Αγαπημένο - + Start Game Έναρξη παιχνιδιού - + Start Game without Custom Configuration - + Open Save Data Location Άνοιγμα Τοποθεσίας Αποθήκευσης Δεδομένων - + Open Mod Data Location Άνοιγμα Τοποθεσίας Δεδομένων Mod - + Open Transferable Pipeline Cache - + Remove Αφαίρεση - + Remove Installed Update Αφαίρεση Εγκατεστημένης Ενημέρωσης - + Remove All Installed DLC Αφαίρεση Όλων των Εγκατεστημένων DLC - + Remove Custom Configuration - + Remove Play Time Data - + Remove Cache Storage - + Remove OpenGL Pipeline Cache - + Remove Vulkan Pipeline Cache - + Remove All Pipeline Caches Καταργήστε Όλη την Κρυφή μνήμη του Pipeline - + Remove All Installed Contents Καταργήστε Όλο το Εγκατεστημένο Περιεχόμενο - + Dump RomFS Απόθεση του RomFS - + Dump RomFS to SDMC Απόθεση του RomFS στο SDMC - + Verify Integrity - + Copy Title ID to Clipboard Αντιγραφή του Title ID στο Πρόχειρο - + Navigate to GameDB entry Μεταβείτε στην καταχώρηση GameDB - + Create Shortcut - + Add to Desktop - + Add to Applications Menu - + Configure Game @@ -6964,62 +6910,62 @@ Would you like to download it? Ιδιότητες - + Scan Subfolders Σκανάρισμα Υποφακέλων - + Remove Game Directory Αφαίρεση Φακέλου Παιχνιδιών - + ▲ Move Up ▲ Μετακίνηση Επάνω - + ▼ Move Down ▼ Μετακίνηση Κάτω - + Open Directory Location Ανοίξτε την Τοποθεσία Καταλόγου - + Clear Καθαρισμός - + Name Όνομα - + Compatibility Συμβατότητα - + Add-ons Πρόσθετα - + File type Τύπος αρχείου - + Size Μέγεθος - + Play time @@ -7027,62 +6973,62 @@ Would you like to download it? GameListItemCompat - + Ingame - + Game starts, but crashes or major glitches prevent it from being completed. - + Perfect Τέλεια - + Game can be played without issues. - + Playable - + Game functions with minor graphical or audio glitches and is playable from start to finish. - + Intro/Menu Εισαγωγή/Μενου - + Game loads, but is 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. Το παιχνίδι δεν έχει ακόμα τεσταριστεί. @@ -7090,7 +7036,7 @@ Would you like to download it? GameListPlaceholder - + Double-click to add a new folder to the game list Διπλο-κλικ για προσθήκη νεου φακέλου στη λίστα παιχνιδιών @@ -7098,7 +7044,7 @@ Would you like to download it? GameListSearchField - + %1 of %n result(s) @@ -7106,12 +7052,12 @@ Would you like to download it? - + Filter: Φίλτρο: - + Enter pattern to filter Εισαγάγετε μοτίβο για φιλτράρισμα @@ -7193,7 +7139,7 @@ Would you like to download it? - Failed to announce the room to the public lobby. In order to host a room publicly, you must have a valid eden account configured in Emulation -> Configure -> Web. If you do not want to publish a room in the public lobby, then select Unlisted instead. + Failed to announce the room to the public lobby. In order to host a room publicly, you must have a valid Eden 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: @@ -7201,186 +7147,186 @@ Debug Message: Hotkeys - + Audio Mute/Unmute - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Main Window - + Audio Volume Down - + Audio Volume Up - + Capture Screenshot Λήψη στιγμιότυπου οθόνης - + Change Adapting Filter - + Change Docked Mode - + Change GPU Accuracy - + Configure Διαμόρφωση - + Configure Current Game - + Continue/Pause Emulation - + Exit Fullscreen - - Exit eden + + Exit Eden - + Fullscreen Πλήρη Οθόνη - + Load File Φόρτωση αρχείου - + Load/Remove Amiibo - + Multiplayer Browse Public Game Lobby - + Multiplayer Create Room - + Multiplayer Direct Connect to Room - + Multiplayer Leave Room - + Multiplayer Show Current Room - + Restart Emulation - + Stop Emulation - + TAS Record - + TAS Reset - + TAS Start/Stop - + Toggle Filter Bar - + Toggle Framerate Limit - + Toggle Mouse Panning - + Toggle Renderdoc Capture - + Toggle Status Bar @@ -7388,22 +7334,22 @@ Debug Message: InstallDialog - + Please confirm these are the files you wish to install. Επιβεβαιώστε ότι αυτά είναι τα αρχεία που θέλετε να εγκαταστήσετε. - + Installing an Update or DLC will overwrite the previously installed one. Η εγκατάσταση μιας Ενημέρωσης ή DLC θα αντικαταστήσει το προηγουμένως εγκατεστημένο. - + Install Εγκατάσταση - + Install Files to NAND @@ -7411,7 +7357,7 @@ Debug Message: LimitableInputDialog - + The text can't contain any of the following characters: %1 @@ -7557,349 +7503,412 @@ Debug Message: - + &Emulation - + &View - + &Reset Window Size - + &Debugging - + Reset Window Size to &720p - + Reset Window Size to 720p - + Reset Window Size to &900p - + Reset Window Size to 900p - + Reset Window Size to &1080p - + Reset Window Size to 1080p - + &Multiplayer &Πολλαπλών Παικτών - + &Tools - + &Amiibo - + &TAS &TAS - + &Create Home Menu Shortcut - + &Help - + &Install Files to NAND... - + L&oad File... - + Load &Folder... - + E&xit - + &Pause &Παύση - + &Stop &Σταμάτημα - + &Verify Installed Contents - - &About eden - - - - - Open &eden Folder - - - - + Open Home Menu - + &Discord - + Open &Setup - + &Desktop - + &Application Menu - + Single &Window Mode - + + Open &Eden Folders + + + + + &About Eden + + + + Con&figure... - + Ctrl+, - + Display D&ock Widget Headers - + Show &Filter Bar - + Show &Status Bar - + Show Status Bar - + &Browse Public Game Lobby &Περιήγηση σε δημόσιο λόμπι παιχνιδιού - + &Create Room &Δημιουργία δωματίου - + &Leave Room &Αποχωρήσει από το δωμάτιο - + &Direct Connect to Room &Άμεση σύνδεση σε Δωμάτιο - + &Show Current Room &Εμφάνιση τρέχοντος δωματίου - + F&ullscreen - + &Restart - + Load/Remove &Amiibo... - + &Report Compatibility - + Open &Mods Page - + Open &Quickstart Guide - + &FAQ - + &Capture Screenshot - + Open &Album - + &Set Nickname and Owner - + &Delete Game Data - + &Restore Amiibo - + &Format Amiibo - + Open &Mii Editor - + &Configure TAS... - + Configure C&urrent Game... - + &Start &Έναρξη - + &Reset - + R&ecord - + Open &Controller Menu - + + &Root Data Folder + + + + + &NAND Folder + + + + + &SDMC Folder + + + + + &Mod Folder + + + + + &Log Folder + + + + + From Folder + + + + + From ZIP + + + + + &X + + + + + X (Twitter) + + + + + &Revolt + + + + + Revolt + + + + + &Eden Dependencies + + + + Install Firmware - + Install Decryption Keys - - MicroProfileDialog - - - &MicroProfile - - - MigrationWorker - + Data was migrated successfully. - + Linking the old directory failed. You may need to re-run with administrative privileges on Windows. OS gave error: %1 - + + + +Note that your configuration and data will be shared with %1. +If this is not desirable, delete the following files: +%2 +%3 +%4 + + + + If you wish to clean up the files which were left in the old data location, you can do so by deleting the following directory: @@ -7959,37 +7968,37 @@ If you wish to clean up the files which were left in the old data location, you MultiplayerState - + Current connection status - + Not Connected. Click here to find a room! - + Not Connected - + Connected Συνδεδεμένο - + New Messages Received - + Error Σφάλμα - + Failed to update the room information. Please check your Internet connection and try hosting the room again. Debug Message: @@ -8128,56 +8137,56 @@ p, li { white-space: pre-wrap; } Δεν παίζει παιχνίδι - + Installed SD Titles - + Installed NAND Titles - + System Titles Τίτλοι Συστήματος - + Add New Game Directory Προσθήκη Νέας Τοποθεσίας Παιχνιδιών - + Favorites Αγαπημένα - - + + Shift Shift - - + + Ctrl Ctrl - - + + Alt Alt - - - - + + + + [not set] [μη ορισμένο] @@ -8188,14 +8197,14 @@ p, li { white-space: pre-wrap; } - - - - - - - - + + + + + + + + Axis %1%2 Άξονας%1%2 @@ -8206,357 +8215,357 @@ p, li { white-space: pre-wrap; } - - - - - - + + + + + + [unknown] [άγνωστο] - - - + + + Left Αριστερά - - - + + + Right Δεξιά - - - + + + Down Κάτω - - - + + + Up Πάνω - - + + Z Z - - + + R R - - + + L L - - + + A A - - + + B B - - + + X Χ - - + + Y Υ - - + + Start - - + + L1 L1 - - + + L2 L2 - - + + L3 L3 - - + + R1 R1 - - + + R2 R2 - - + + R3 R3 - - + + Circle - - + + Cross - - + + Square - - + + Triangle - - + + Share - - + + Options - - + + [undefined] - + %1%2 - - + + [invalid] - - + + %1%2Hat %3 - - - + + + %1%2Axis %3 - - + + %1%2Axis %3,%4,%5 - - + + %1%2Motion %3 - - + + %1%2Button %3 - - + + [unused] [άδειο] - + ZR ZR - + ZL ZL - + SR SR - + SL SL - + Stick L - + Stick R - + Plus Συν - + Minus Μείον - - + + Home Αρχική - + Capture Στιγμιότυπο - + Touch - + Wheel Indicates the mouse wheel - + Backward - + Forward - + Task - + Extra - + %1%2%3%4 - - + + %1%2%3Hat %4 - - + + %1%2%3Axis %4 - - + + %1%2%3Button %4 - - + + Migration - + - - + + No - + You can manually re-trigger this prompt by deleting the new config directory: %1 - + Migrating - + Migrating, this may take a while... @@ -8674,6 +8683,298 @@ p, li { white-space: pre-wrap; } + + QtCommon::Content + + + Installing Firmware... + + + + + + + Cancel + + + + + Firmware integrity verification failed! + + + + + + Verification failed for the following files: + +%1 + + + + + + Verifying integrity... + + + + + + Integrity verification succeeded! + + + + + + The operation completed successfully. + Η επέμβαση ολοκληρώθηκε με επιτυχία. + + + + + Integrity verification failed! + + + + + File contents may be corrupt or missing. + + + + + Integrity verification couldn't be performed + + + + + Firmware installation cancelled, firmware may be in a bad state or corrupted. File contents could not be checked for validity. + + + + + Select Dumped Keys Location + + + + + Decryption Keys install succeeded + + + + + Decryption Keys were successfully installed + + + + + Decryption Keys install failed + + + + + QtCommon::Game + + + Error Removing Contents + + + + + Error Removing Update + + + + + Error Removing DLC + + + + + The base game is not installed in the NAND and cannot be removed. + + + + + There is no update installed for this title. + + + + + There are no DLCs installed for this title. + + + + + + + + Successfully Removed + + + + + Successfully removed %1 installed DLC. + + + + + + Error Removing Transferable Shader Cache + + + + + + A shader cache for this title does not exist. + + + + + Successfully removed the transferable shader cache. + + + + + Failed to remove the transferable shader cache. + + + + + Error Removing Vulkan Driver Pipeline Cache + + + + + Failed to remove the driver pipeline cache. + + + + + + Error Removing Transferable Shader Caches + + + + + Successfully removed the transferable shader caches. + + + + + Failed to remove the transferable shader cache directory. + + + + + + Error Removing Custom Configuration + + + + + A custom configuration for this title does not exist. + + + + + Successfully removed the custom game configuration. + + + + + Failed to remove the custom game configuration. + + + + + Reset Metadata Cache + Επαναφορά Προσωρινής Μνήμης Μεταδεδομένων + + + + The metadata cache is already empty. + Η προσωρινή μνήμη μεταδεδομένων είναι ήδη άδεια. + + + + The operation completed successfully. + Η επέμβαση ολοκληρώθηκε με επιτυχία. + + + + The metadata cache couldn't be deleted. It might be in use or non-existent. + Δεν ήταν δυνατή η διαγραφή της προσωρινής μνήμης μεταδεδομένων. Μπορεί να χρησιμοποιείται ή να μην υπάρχει. + + + + Create Shortcut + + + + + Do you want to launch the game in fullscreen? + + + + + Shortcut Created + + + + + Successfully created a shortcut to %1 + + + + + Shortcut may be Volatile! + + + + + This will create a shortcut to the current AppImage. This may not work well if you update. Continue? + + + + + Failed to Create Shortcut + + + + + Failed to create a shortcut to %1 + + + + + Create Icon + + + + + Cannot create icon file. Path "%1" does not exist and cannot be created. + + + + + No firmware available + + + + + Please install firmware to use the home menu. + + + + + Home Menu Applet + + + + + Home Menu is not available. Please reinstall firmware. + + + QtControllerSelectorDialog @@ -8963,7 +9264,7 @@ Please try again or contact the developer of the software. QtProfileSelectionDialog - + %1 %2 %1 is the profile username, %2 is the formatted UUID (e.g. 00112233-4455-6677-8899-AABBCCDDEEFF)) @@ -8971,7 +9272,7 @@ Please try again or contact the developer of the software. %2 - + Users Χρήστες @@ -9095,7 +9396,7 @@ p, li { white-space: pre-wrap; } WaitTreeCallstack - + Call stack Κλήση stack @@ -9103,12 +9404,12 @@ p, li { white-space: pre-wrap; } WaitTreeSynchronizationObject - + [%1] %2 - + waited by no thread @@ -9116,102 +9417,102 @@ p, li { white-space: pre-wrap; } WaitTreeThread - + runnable - + paused - + sleeping - + waiting for IPC reply - + waiting for objects αναμονή αντικειμένων - + waiting for condition variable - + waiting for address arbiter - + waiting for suspend resume - + waiting - + initialized - + terminated - + unknown - + PC = 0x%1 LR = 0x%2 PC = 0x%1 LR = 0x%2 - + ideal - + core %1 πυρήνας %1 - + processor = %1 επεξεργαστής = %1 - + affinity mask = %1 - + thread id = %1 - + priority = %1(current) / %2(normal) προτεραιότητα = %1(τρέχον) / %2(κανονικό) - + last running ticks = %1 @@ -9219,7 +9520,7 @@ p, li { white-space: pre-wrap; } WaitTreeThreadList - + waited by thread @@ -9227,7 +9528,7 @@ p, li { white-space: pre-wrap; } WaitTreeWidget - + &Wait Tree diff --git a/dist/languages/es.ts b/dist/languages/es.ts index fca48d93ad..0c799e2aea 100644 --- a/dist/languages/es.ts +++ b/dist/languages/es.ts @@ -13,12 +13,12 @@ - About eden + About Eden - <html><head/><body><p><span style=" font-size:28pt;">eden</span></p></body></html> + <html><head/><body><p><span style=" font-size:28pt;">Eden</span></p></body></html> @@ -34,8 +34,8 @@ p, li { white-space: pre-wrap; } hr { height: 1px; border-width: 0; } li.unchecked::marker { content: "\2610"; } li.checked::marker { content: "\2612"; } -</style></head><body style=" font-family:'Adwaita Sans'; font-size:11pt; font-weight:400; font-style:normal;"> -<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;">eden is an experimental open-source emulator for the Nintendo Switch licensed under GPLv3.0+ which is based on the yuzu emulator which ended development back in March 2024. <br /><br />This software should not be used to play games you have not legally obtained.</span></p></body></html> +</style></head><body style=" font-family:'Noto Sans'; font-size:9pt; font-weight:400; font-style:normal;"> +<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;">Eden is an experimental open-source emulator for the Nintendo Switch licensed under GPLv3.0+ which is based on the yuzu emulator which ended development back in March 2024. <br /><br />This software should not be used to play games you have not legally obtained.</span></p></body></html> @@ -72,32 +72,32 @@ p, li { white-space: pre-wrap; } CalibrationConfigurationDialog - + Communicating with the server... Comunicando con el servidor... - + Cancel Cancelar - + Touch the top left corner <br>of your touchpad. Toque la esquina superior izquierda<br>del trackpad. - + Now touch the bottom right corner <br>of your touchpad. Ahora toque la esquina inferior derecha <br>del trackpad. - + Configuration completed! ¡Configuración completada! - + OK OK @@ -397,134 +397,134 @@ Esto banearía su nombre del foro y su dirección IP. ConfigurationShared - + % % - + Amiibo editor Editor de Amiibo - + Controller configuration Configuración de controles - + Data erase Borrar datos - + Error Error - + Net connect Conexión a la red - + Player select Selección de personaje - + Software keyboard Teclado de software - + Mii Edit Editor de Mii - + Online web Web online - + Shop Tienda - + Photo viewer Álbum - + Offline web Web offline - + Login share Inicio de sesión - + Wifi web auth Autenticación Wi-Fi - + My page Mi página - + Output Engine: Motor de salida: - + Output Device: Dispositivo de salida: - + Input Device: Dispositivo de entrada: - + Mute audio Silenciar sonido - + Volume: Volumen: - + Mute audio when in background Silenciar audio en segundo plano - + Multicore CPU Emulation Emulación de CPU multinúcleo - + This option increases CPU emulation thread use from 1 to the Switch’s maximum of 4. This is mainly a debug option and shouldn’t be disabled. Esta opción aumenta los hilos de CPU emulados de 1 a 4, el máximo de la Switch. Esta es una opción para depuración y no ha de activarse. - + Memory Layout Memoria emulada - + Increases the amount of emulated RAM from the stock 4GB of the retail Switch to the developer kit's 8/6GB. It’s doesn’t improve stability or performance and is intended to let big texture mods fit in emulated RAM. Enabling it will increase memory use. It is not recommended to enable unless a specific game with a texture mod needs it. @@ -533,12 +533,12 @@ No mejora ni la estabilidad ni el rendimiento y la intención es permitir que lo Activarlo incrementará el uso de memoria. No es recomendable activarlo a menos que un juego específico con un mod de texturas lo necesite. - + Limit Speed Percent Limitar porcentaje de velocidad - + Controls the game's maximum rendering speed, but it’s up to each game if it runs faster or not. 200% for a 30 FPS game is 60 FPS, and for a 60 FPS game it will be 120 FPS. Disabling it means unlocking the framerate to the maximum your PC can reach. @@ -547,141 +547,118 @@ Disabling it means unlocking the framerate to the maximum your PC can reach. - - Synchronize Core Speed - - - - - Synchronizes CPU core speed with the game's maximum rendering speed to boost FPS without affecting game speed (animations, physics, etc.). -Compatibility varies by game; many (especially older ones) may not respond well. -Can help reduce stuttering at lower framerates. - - - - + Accuracy: Precisión: - + This setting controls the accuracy of the emulated CPU. Don't change this unless you know what you are doing. Este ajuste controla la precisión de la CPU emulada. No ha de cambiarse salvo que sepas lo que estás haciendo. - - + + Backend: Motor: - - Fast CPU Time - - - - - Overclocks the emulated CPU to remove some FPS limiters. Weaker CPUs may see reduced performance, and certain games may behave improperly. -Use Boost (1700MHz) to run at the Switch's highest native clock, or Fast (2000MHz) to run at 2x clock. - - - - + Unfuse FMA (improve performance on CPUs without FMA) Desactivar FMA (mejora el rendimiento en las CPU sin FMA) - + This option improves speed by reducing accuracy of fused-multiply-add instructions on CPUs without native FMA support. Esta opción mejora el rendimiento al reducir la precisión de las instrucciones fused-multiply-add en las CPU sin soporte nativo FMA. - + Faster FRSQRTE and FRECPE FRSQRTE y FRECPE rápido - + This option improves the speed of some approximate floating-point functions by using less accurate native approximations. Esta opción mejora el rendimiento de algunas funciones aproximadas de punto flotante al utilizar aproximaciones nativas menos precisas. - + Faster ASIMD instructions (32 bits only) Instrucciones ASIMD rápidas (sólo 32 bits) - + This option improves the speed of 32 bits ASIMD floating-point functions by running with incorrect rounding modes. Esta opción mejora la velocidad de las funciones de punto flotante ASIMD de 32 bits al ejecutarlas con redondeos incorrectos. - + Inaccurate NaN handling Gestión imprecisa NaN - + This option improves speed by removing NaN checking. Please note this also reduces accuracy of certain floating-point instructions. Esta opción mejora el rendimiento al no hacer comprobaciones "NaN". Ten en cuenta que, a cambio, reduce la precisión de ciertas instrucciones de coma flotante. - + Disable address space checks Desactivar comprobación del espacio de destino - + This option improves speed by eliminating a safety check before every memory read/write in guest. Disabling it may allow a game to read/write the emulator's memory. Esta opción mejora el rendimiento eliminando una comprobación de seguridad en cada lectura escritura de memoria emulada (guest). Desactivarlo puede permitir a un juego escribir o leer la memoria el emulador (host). - + Ignore global monitor Ignorar monitorización global - + This option improves speed by relying only on the semantics of cmpxchg to ensure safety of exclusive access instructions. Please note this may result in deadlocks and other race conditions. Esta opción mejora el rendimiento al depender sólo de la semántica de "cmpxchg" para garantizar la seguridad de las instrucciones de acceso exclusivo. Ten en cuenta que puede resultar en bloqueos y otras condiciones de carrera. - + API: API: - + Switches between the available graphics APIs. Vulkan is recommended in most cases. Alterna entre las APIs gráficas disponibles. Vulkan es la recomendación para la mayoría de casos. - + Device: Dispositivo: - + This setting selects the GPU to use with the Vulkan backend. Selecciona que GPU usar en Vulkan. - + Shader Backend: Soporte de shaders: - + The shader backend to use for the OpenGL renderer. GLSL is the fastest in performance and the best in rendering accuracy. GLASM is a deprecated NVIDIA-only backend that offers much better shader building performance at the cost of FPS and rendering accuracy. @@ -692,12 +669,12 @@ GLASM es un motor específico de NVIDIA ya obsoleto que ofrece mejor rendimiento SPIR-V es el más rápido, pero da malos resultados en la mayoría de drivers. - + Resolution: Resolución: - + Forces the game to render at a different resolution. Higher resolutions require much more VRAM and bandwidth. Options lower than 1X can cause rendering issues. @@ -706,27 +683,27 @@ Mayores resoluciones requieren mucha más capacidad y ancho de banda de VRAM. Opciones por debajo de 1x pueden causar errores gráficos. - + Window Adapting Filter: Filtro adaptable de ventana: - + FSR Sharpness: Nitidez FSR: - + Determines how sharpened the image will look while using FSR’s dynamic contrast. Ajusta la intensidad del filtro de enfoque al usar el contraste dinámico de FSR. - + Anti-Aliasing Method: Método de Anti-Aliasing: - + The anti-aliasing method to use. SMAA offers the best quality. FXAA has a lower performance impact and can produce a better and more stable picture under very low resolutions. @@ -735,12 +712,12 @@ SMAA ofrece algo mejor calidad. FXAA ofrece algo mejor de rendimiento y mayor estabilidad de imagen a muy bajas resoluciones. - + Fullscreen Mode: Modo pantalla completa: - + The method used to render the window in fullscreen. Borderless offers the best compatibility with the on-screen keyboard that some games request for input. Exclusive fullscreen may offer better performance and better Freesync/Gsync support. @@ -749,12 +726,12 @@ Ventana sin bordes ofrece la mejor compatibilidad con el teclado en pantalla que Pantalla completa exclusiva puede ofrecer mejor rendimiento y mejor soporte para FreeSync/G-Sync/VRR. - + Aspect Ratio: Relación de aspecto: - + Stretches the game to fit the specified aspect ratio. Switch games only support 16:9, so custom game mods are required to get other ratios. Also controls the aspect ratio of captured screenshots. @@ -763,49 +740,36 @@ Nativamente, los juegos solo soportan 16:9. Se necesitarán mods para otras rela También afecta a las capturas de pantalla. - + Use disk pipeline cache Usar caché de canalización en disco - + Allows saving shaders to storage for faster loading on following game boots. Disabling it is only intended for debugging. Permite almacenar las shaders para cargar más rápido al arrancar el juego otra vez. Solo ha de desactivarse para depuración. - - Optimize SPIRV output shader - - - - - Runs an additional optimization pass over generated SPIRV shaders. -Will increase time required for shader compilation. -May slightly improve performance. -This feature is experimental. - - - - + Use asynchronous GPU emulation Usar emulación asíncrona de GPU - + Uses an extra CPU thread for rendering. This option should always remain enabled. Usa un hilo de CPU adicional para renderizar. Esta opción debería estar siempre activada. - + NVDEC emulation: Emulación NVDEC: - + Specifies how videos should be decoded. It can either use the CPU or the GPU for decoding, or perform no decoding at all (black screen on videos). In most cases, GPU decoding provides the best performance. @@ -814,12 +778,12 @@ Puede usar la CPU, GPU o no decodificar (mostrará una pantalla en negro durante En la mayoría de casos, decodificar mediante GPU es la mejor opción. - + ASTC Decoding Method: Modo decodificación ASTC: - + This option controls how ASTC textures should be decoded. CPU: Use the CPU for decoding, slowest but safest method. GPU: Use the GPU's compute shaders to decode ASTC textures, recommended for most games and users. @@ -831,34 +795,24 @@ GPU: Usa las unidades de computa de la GPU, recomendado para la mayoría de jueg CPU Asíncrono: Usa la CPU para decodificar al vuelo. Elimina los tirones relacionados con decodificar texturas ASTC a cambio de errores gráficos mientras la textura se decodifica. - + ASTC Recompression Method: Modo recompresión ASTC: - + Almost all desktop and laptop dedicated GPUs lack support for ASTC textures, forcing the emulator to decompress to an intermediate format any card supports, RGBA8. This option recompresses RGBA8 to either the BC1 or BC3 format, saving VRAM but negatively affecting image quality. Casi ninguna gráfica dedicada de ordenador tiene soporte para decodificar las texturas ASTC, forzando a descomprimir a un formato intermedio, RGBA8. Esta opción recomprime RGBA8 al formato BC1 o BC3, sacrificando calidad de imagen a cambio de menor uso de VRAM. - - VRAM Usage Mode: - - - - - Selects whether the emulator should prefer to conserve memory or make maximum usage of available video memory for performance. Has no effect on integrated graphics. Aggressive mode may severely impact the performance of other applications such as recording software. - - - - + VSync Mode: Modo VSync: - + FIFO (VSync) does not drop frames or exhibit tearing but is limited by the screen refresh rate. FIFO Relaxed is similar to FIFO but allows tearing as it recovers from a slow down. Mailbox can have lower latency than FIFO and does not tear but may drop frames. @@ -869,63 +823,61 @@ Mailbox puede tener una latencia más baja que FIFO y no causa tearing, pero pod Inmediato (sin sincronización) sólo muestra lo que está disponible y puede mostrar tearing. - + Enable asynchronous presentation (Vulkan only) Activar presentación asíncrona (sólo Vulkan) - + Slightly improves performance by moving presentation to a separate CPU thread. Mejora el rendimiento ligeramente al usar un hilo de CPU adicional para la presentación. - + Force maximum clocks (Vulkan only) Forzar relojes al máximo (sólo Vulkan) - + Runs work in the background while waiting for graphics commands to keep the GPU from lowering its clock speed. Ejecuta los procesos en segundo plano mientras se espera a las instrucciones gráficas para evitar que la GPU reduzca su velocidad de reloj. - + Anisotropic Filtering: Filtrado anisotrópico: - + Controls the quality of texture rendering at oblique angles. It’s a light setting and safe to set at 16x on most GPUs. Controla la calidad de una textura renderizado a ángulos oblicuos. Es un ajuste de bajo coste y sin problemas a 16x en la mayoría de GPUs. - Accuracy Level: - Nivel de precisión: + Nivel de precisión: - GPU emulation accuracy. Most games render fine with Normal, but High is still required for some. Particles tend to only render correctly with High accuracy. Extreme should only be used for debugging. This option can be changed while playing. Some games may require booting on high to render properly. - Precisión de GPU emulada. + Precisión de GPU emulada. La mayoría de juegos funcionan con "Normal", pero algunos requieren precisión "Alta". Partículas suelen depender de precisión "Alta". La precisión "Extrema" solo ha de usarse para depuración. Esta opción se puede cambiar mientras se juega, pero algunos juegos necesitan ser reiniciados para aplicar el cambio. - + Use asynchronous shader building (Hack) Usar la construcción de shaders asíncronos (Hack) - + Enables asynchronous shader compilation, which may reduce shader stutter. This feature is experimental. Activa la compilación asíncrona de shaders, que puede reducir los tirones producidos por shaders. @@ -940,24 +892,24 @@ Esta opción es experimental. Activa el tiempo rápido de GPU. Esta opción hará que la mayoría de juegos estén forzados a ejecutarse en su resolución nativa máxima. - + Use Vulkan pipeline cache Usar caché de canalización de Vulkan - + Enables GPU vendor-specific pipeline cache. This option can improve shader loading time significantly in cases where the Vulkan driver does not store pipeline cache files internally. Activa la caché de pipeline específica del fabricante. Esta opción puede mejorar los tiempos de cargas de shaders en caso de que el driver de Vulkan no lo almacene internamente. - + Enable Compute Pipelines (Intel Vulkan Only) Activar canalizaciones de cómputo (solo Intel Vulkan) - + Enable compute pipelines, required by some games. This setting only exists for Intel proprietary drivers, and may crash if enabled. Compute pipelines are always enabled on all other drivers. @@ -966,111 +918,111 @@ Esta opción sólo afecta a los controladores propios de AMD, y puede producir e Las canalizaciones de cómputo siempre están activadas en los demás controladores. - + Enable Reactive Flushing Activar Limpieza Reactiva - + Uses reactive flushing instead of predictive flushing, allowing more accurate memory syncing. Usa limpieza de memoria reactiva en vez de predictiva, permitiendo una sincronización de memoria más precisa. - + Sync to framerate of video playback Sincronizar a fotogramas de reproducción de vídeo - + Run the game at normal speed during video playback, even when the framerate is unlocked. Ejecuta el juego a velocidad normal durante la reproducción de vídeos, incluso cuando no hay límite de fotogramas. - + Barrier feedback loops Bucles de feedback de barrera - + Improves rendering of transparency effects in specific games. Mejora la renderización de los efectos de transparencia en ciertos juegos. - + RNG Seed Semilla de GNA - + Controls the seed of the random number generator. Mainly used for speedrunning purposes. Controla la semilla usada al generar números aleatoriamente (RNG seed). Usado principalmente en speedrunnning. - + Device Name Nombre del dispositivo - + The name of the emulated Switch. Nombre de la consola emulada. - + Custom RTC Date: Fecha Personalizada RTC: - + This option allows to change the emulated clock of the Switch. Can be used to manipulate time in games. Permite ajustar el reloj interno de la consola emulada. Puede usarse para manipular la hora dentro de los juegos. - + Language: Idioma: - + Note: this can be overridden when region setting is auto-select Nota: esto puede ser reemplazado si la opción de región está en "autoseleccionar" - + Region: Región: - + The region of the emulated Switch. La región de la Switch emulada. - + Time Zone: Zona horaria: - + The time zone of the emulated Switch. El huso horario de la Switch emulada. - + Sound Output Mode: Método de salida de sonido: - + Console Mode: Modo consola: - + Selects if the console is emulated in Docked or Handheld mode. Games will change their resolution, details and supported controllers and depending on this setting. Setting to Handheld can help improve performance for low end systems. @@ -1079,7 +1031,7 @@ Los juegos cambiarán su resolución, calidad y mandos compatibles según este m Usar el modo Portátil puede ayudar al rendimiento en equipos de bajos recursos. - + Prompt for user on game boot Seleccionar usuario al arrancar @@ -1088,7 +1040,7 @@ Usar el modo Portátil puede ayudar al rendimiento en equipos de bajos recursos. Preguntar qué perfil de usuario usar al inciar, útil si múltiples personas usan yuzu en un mismo equipo. - + Pause emulation when in background Pausar emulación cuando la ventana esté en segundo plano @@ -1097,843 +1049,997 @@ Usar el modo Portátil puede ayudar al rendimiento en equipos de bajos recursos. Pausa yuzu cuando cuando no esté en primer plano. - - Fast GPU Time (Hack) - - - - - Overclocks the emulated GPU to increase dynamic resolution and render distance. -Use 128 for maximal performance and 512 for maximal graphics fidelity. - - - - - Extended Dynamic State - - - - - Enables the VkExtendedDynamicState* extensions. -Higher dynamic states will generally improve performance, but may cause issues on certain games or devices. - - - - - Provoking Vertex - - - - - Improves lighting and vertex handling in certain games. -Only Vulkan 1.0+ devices support this extension. - - - - - Descriptor Indexing - - - - - Improves texture & buffer handling and the Maxwell translation layer. -Some Vulkan 1.1+ and all 1.2+ devices support this extension. - - - - - Ask to select a user profile on each boot, useful if multiple people use eden on the same PC. - - - - - This setting pauses eden when focusing other windows. - - - - + Confirm before stopping emulation Confirmar detención - + This setting overrides game prompts asking to confirm stopping the game. Enabling it bypasses such prompts and directly exits the emulation. Salta el aviso del juego para confirmar si ha de salir. Activar esta opción salta ese aviso y detiene la emulacón directamente. - + Hide mouse on inactivity Ocultar el cursor por inactividad. - + This setting hides the mouse after 2.5s of inactivity. Oculta el ratón tras 2,5 segundos de inactividad. - + Disable controller applet Desactivar applet de mandos - + Forcibly disables the use of the controller applet by guests. When a guest attempts to open the controller applet, it is immediately closed. Fuerza la desactivación del applet de control para invitados. Cuando un invitado intenta abrir el applet de control, éste se cierra automáticamente. - - Check for updates - - - - - Whether or not to check for updates upon startup. - - - - + Enable Gamemode Activar Modo Juego - + Custom frontend Interfaz personalizada - + Real applet Applet real - - Never - - - - - On Load - - - - - Always - - - - + CPU CPU - + GPU GPU - + CPU Asynchronous CPU Asíncrona - + Uncompressed (Best quality) Sin compresión (Calidad óptima) - + BC1 (Low quality) BC1 (Calidad baja) - + BC3 (Medium quality) BC3 (Calidad media) - - Conservative - - - - - Aggressive - - - - + OpenGL OpenGL - + Vulkan Vulkan - + Null Ninguno - + GLSL GLSL - + GLASM (Assembly Shaders, NVIDIA Only) GLASM (Shaders de ensamblado, sólo NVIDIA) - + SPIR-V (Experimental, AMD/Mesa Only) SPIR-V (Experimental, sólo AMD/Mesa) - + Normal Normal - + High Alto - + Extreme Extremo - + Auto Auto - + Accurate Preciso - + Unsafe Impreciso - + Paranoid (disables most optimizations) Paranoico (Deshabilita la mayoría de optimizaciones) - + Dynarmic DynARMic - + NCE NCE - + Borderless Windowed Ventana sin bordes - + Exclusive Fullscreen Pantalla completa - + No Video Output Sin salida de vídeo - + CPU Video Decoding Decodificación de vídeo en la CPU - + GPU Video Decoding (Default) Decodificación de vídeo en GPU (Por defecto) - - 0.25X (180p/270p) [EXPERIMENTAL] - - - - + 0.5X (360p/540p) [EXPERIMENTAL] x0,5 (360p/540p) [EXPERIMENTAL] - + 0.75X (540p/810p) [EXPERIMENTAL] x0,75 (540p/810p) [EXPERIMENTAL] - + 1X (720p/1080p) x1 (720p/1080p) - + 1.5X (1080p/1620p) [EXPERIMENTAL] x1,5 (1080p/1620p) [EXPERIMENTAL] - + 2X (1440p/2160p) x2 (1440p/2160p) - + 3X (2160p/3240p) x3 (2160p/3240p) - + 4X (2880p/4320p) x4 (2880p/4320p) - + 5X (3600p/5400p) x5 (3600p/5400p) - + 6X (4320p/6480p) x6 (4320p/6480p) - + 7X (5040p/7560p) x7 (5040p/7560p) - + 8X (5760p/8640p) x8 (5760p/8640p) - + Nearest Neighbor Vecino más próximo - + Bilinear Bilineal - + Bicubic Bicúbico - + Gaussian Gaussiano - + ScaleForce ScaleForce - + AMD FidelityFX™️ Super Resolution AMD FidelityFX™️ Super Resolution - - Area - - - - + None Ninguno - + FXAA FXAA - + SMAA SMAA - + Default (16:9) Predeterminado (16:9) - + Force 4:3 Forzar 4:3 - + Force 21:9 Forzar 21:9 - + Force 16:10 Forzar 16:10 - + Stretch to Window Estirar a la ventana - + Automatic Automático - + + Default Predeterminado - + + Synchronize Core Speed + + + + + Synchronizes CPU core speed with the game's maximum rendering speed to boost FPS without affecting game speed (animations, physics, etc.). +Compatibility varies by game; many (especially older ones) may not respond well. +Can help reduce stuttering at lower framerates. + + + + + Fast CPU Time + + + + + Overclocks the emulated CPU to remove some FPS limiters. Weaker CPUs may see reduced performance, and certain games may behave improperly. +Use Boost (1700MHz) to run at the Switch's highest native clock, or Fast (2000MHz) to run at 2x clock. + + + + + Custom CPU Ticks + + + + + Set a custom value of CPU ticks. Higher values can increase performance, but may also cause the game to freeze. A range of 77–21000 is recommended. + + + + + Enable Host MMU Emulation (fastmem) + + + + + This optimization speeds up memory accesses by the guest program. +Enabling it causes guest memory reads/writes to be done directly into memory and make use of Host's MMU. +Disabling this forces all memory accesses to use Software MMU Emulation. + + + + + Optimize SPIRV output shader + + + + + Runs an additional optimization pass over generated SPIRV shaders. +Will increase time required for shader compilation. +May slightly improve performance. +This feature is experimental. + + + + + VRAM Usage Mode: + + + + + Selects whether the emulator should prefer to conserve memory or make maximum usage of available video memory for performance. +Aggressive mode may severely impact the performance of other applications such as recording software. + + + + + Skip CPU Inner Invalidation + + + + + Skips certain CPU-side cache invalidations during memory updates, reducing CPU usage and improving it's performance. This may cause glitches or crashes on some games. + + + + + Sync Memory Operations + + + + + Ensures data consistency between compute and memory operations. +This option should fix issues in some games, but may also reduce performance in some cases. +Unreal Engine 4 games often see the most significant changes thereof. + + + + + GPU Accuracy: + + + + + Controls the GPU emulation accuracy. +Most games render fine with Normal, but High is still required for some. +Particles tend to only render correctly with High accuracy. +Extreme should only be used as a last resort. + + + + + DMA Accuracy: + + + + + Controls the DMA precision accuracy. Safe precision can fix issues in some games, but it can also impact performance in some cases. +If unsure, leave this on Default. + + + + + Fast GPU Time (Hack) + + + + + Overclocks the emulated GPU to increase dynamic resolution and render distance. +Use 128 for maximal performance and 512 for maximal graphics fidelity. + + + + + RAII + + + + + A method of automatic resource management in Vulkan that ensures proper release of resources when they are no longer needed, but may cause crashes in bundled games. + + + + + Extended Dynamic State + + + + + Controls the number of features that can be used in Extended Dynamic State. +Higher numbers allow for more features and can increase performance, but may cause issues with some drivers and vendors. +The default value may vary depending on your system and hardware capabilities. +This value can be changed until stability and a better visual quality are achieved. + + + + + Provoking Vertex + + + + + Improves lighting and vertex handling in certain games. +Only Vulkan 1.0+ devices support this extension. + + + + + Descriptor Indexing + + + + + Improves texture & buffer handling and the Maxwell translation layer. +Some Vulkan 1.1+ and all 1.2+ devices support this extension. + + + + + Sample Shading + + + + + Allows the fragment shader to execute per sample in a multi-sampled fragment instead once per fragment. Improves graphics quality at the cost of some performance. +Higher values improve quality more but also reduce performance to a greater extent. + + + + + Ask to select a user profile on each boot, useful if multiple people use Eden on the same PC. + + + + + This setting pauses Eden when focusing other windows. + + + + + Check for updates + + + + + Whether or not to check for updates upon startup. + + + + + Never + + + + + On Load + + + + + Always + + + + + Conservative + + + + + Aggressive + + + + + Unsafe (fast) + + + + + Safe (stable) + + + + + 0.25X (180p/270p) [EXPERIMENTAL] + + + + + Area + + + + 2x x2 - + 4x x4 - + 8x x8 - + 16x x16 - + Japanese (日本語) Japonés (日本語) - + American English Inglés estadounidense - + French (français) Francés (français) - + German (Deutsch) Alemán (deutsch) - + Italian (italiano) Italiano (italiano) - + Spanish (español) Español - + Chinese Chino - + Korean (한국어) Coreano (한국어) - + Dutch (Nederlands) Holandés (nederlands) - + Portuguese (português) Portugués (português) - + Russian (Русский) Ruso (Русский) - + Taiwanese Taiwanés - + British English Inglés británico - + Canadian French Francés canadiense - + Latin American Spanish Español latinoamericano - + Simplified Chinese Chino simplificado - + Traditional Chinese (正體中文) Chino tradicional (正體中文) - + Brazilian Portuguese (português do Brasil) Portugués brasileño (português do Brasil) - - + + Serbian (српски) + + + + + Japan Japón - + USA EEUU - + Europe Europa - + Australia Australia - + China China - + Korea Corea - + Taiwan Taiwán - + Auto (%1) Auto select time zone Auto (%1) - + Default (%1) Default time zone Predeterminada (%1) - + CET CET - + CST6CDT CST6CDT - + Cuba Cuba - + EET EET - + Egypt Egipto - + Eire Eire - + EST EST - + EST5EDT EST5EDT - + GB GB - + GB-Eire GB-Eire - + GMT GMT - + GMT+0 GMT+0 - + GMT-0 GMT-0 - + GMT0 GMT0 - + Greenwich Greenwich - + Hongkong Hongkong - + HST HST - + Iceland Islandia - + Iran Irán - + Israel Israel - + Jamaica Jamaica - + Kwajalein Kwajalein - + Libya Libia - + MET MET - + MST MST - + MST7MDT MST7MDT - + Navajo Navajo - + NZ NZ - + NZ-CHAT NZ-CHAT - + Poland Polonia - + Portugal Portugal - + PRC PRC - + PST8PDT PST8PDT - + ROC ROC - + ROK ROK - + Singapore Singapur - + Turkey Turquía - + UCT UCT - + Universal Universal - + UTC UTC - + W-SU W-SU - + WET WET - + Zulu Zulú - + Mono Mono - + Stereo Estéreo - + Surround Envolvente - + 4GB DRAM (Default) 4GB DRAM (Por defecto) - + 6GB DRAM (Unsafe) 6GB DRAM (Inseguro) - + 8GB DRAM - + 10GB DRAM (Unsafe) - + 12GB DRAM (Unsafe) - + Low (128) - + Medium (256) - + High (512) @@ -1942,37 +2048,37 @@ Cuando un invitado intenta abrir el applet de control, éste se cierra automáti 8GB DRAM (Inseguro) - + Docked Sobremesa - + Handheld Portátil - + Boost (1700MHz) - + Fast (2000MHz) - + Always ask (Default) Preguntar siempre (Por defecto) - + Only if game specifies not to stop Solo si el juego pide no ser cerrado - + Never ask Nunca preguntar @@ -2327,27 +2433,27 @@ Cuando un invitado intenta abrir el applet de control, éste se cierra automáti Registro - + Open Log Location Abrir ubicación del archivo de registro - + Global Log Filter Filtro del registro global - + When checked, the max size of the log increases from 100 MB to 1 GB Al activarlo, el tamaño máximo del registro aumenta de 100 MB a 1 GB. - + Enable Extended Logging** Habilitar registro extendido** - + Show Log in Console Ver registro en consola @@ -2493,7 +2599,7 @@ Cuando un invitado intenta abrir el applet de control, éste se cierra automáti - **This will be reset automatically when eden closes. + **This will be reset automatically when Eden closes. @@ -2555,7 +2661,7 @@ Cuando un invitado intenta abrir el applet de control, éste se cierra automáti **Esto se reiniciará automáticamente cuando yuzu se cierre. - + Web applet not compiled Applet web no compilado @@ -2605,7 +2711,7 @@ Cuando un invitado intenta abrir el applet de control, éste se cierra automáti - eden Configuration + Eden Configuration @@ -2614,88 +2720,88 @@ Cuando un invitado intenta abrir el applet de control, éste se cierra automáti Algunos ajustes sólo están disponibles cuando no se estén ejecutando los juegos. - + Applets Applets - - + + Audio Audio - - + + CPU CPU - + Debug Depuración - + Filesystem Sistema de archivos - - + + General General - - + + Graphics Gráficos - + GraphicsAdvanced Gráficosavanzados - + GraphicsExtensions - + Hotkeys Teclas de acceso rápido - - + + Controls Controles - + Profiles Perfiles - + Network Red - - + + System Sistema - + Game List Lista de juegos - + Web Web @@ -2793,51 +2899,45 @@ Cuando un invitado intenta abrir el applet de control, éste se cierra automáti - - - Reset Metadata Cache Reiniciar caché de metadatos - + Select Emulated NAND Directory... Selecciona el directorio de NAND emulado... - + Select Emulated SD Directory... Seleccione el directorio de SD emulado... - + Select Gamecard Path... Seleccione la ruta del cartucho... - + Select Dump Directory... Seleccione directorio de volcado... - + Select Mod Load Directory... Seleccione el directorio de carga de mod... - The metadata cache is already empty. - El caché de metadatos ya está vacío. + El caché de metadatos ya está vacío. - The operation completed successfully. - La operación se completó con éxito. + La operación se completó con éxito. - The metadata cache couldn't be deleted. It might be in use or non-existent. - El caché de metadatos no se pudo eliminar. Puede que se encuentre en uso actualmente o ya haya sido eliminado. + El caché de metadatos no se pudo eliminar. Puede que se encuentre en uso actualmente o ya haya sido eliminado. @@ -2868,12 +2968,12 @@ Cuando un invitado intenta abrir el applet de control, éste se cierra automáti yuzu - - eden + + Eden - + This reset all settings and remove all per-game configurations. This will not delete game directories, profiles, or input profiles. Proceed? Esto reiniciará y eliminará todas las configuraciones de los juegos. No eliminará ni los directorios de juego, ni los perfiles, ni los perfiles de los mandos. ¿Continuar? @@ -2906,33 +3006,33 @@ Cuando un invitado intenta abrir el applet de control, éste se cierra automáti Color de fondo: - + % FSR sharpening percentage (e.g. 50%) % - + Off Desactivado - + VSync Off VSync Desactivado - + Recommended Recomendado - + On Activado - + VSync On VSync Activado @@ -2969,14 +3069,18 @@ Cuando un invitado intenta abrir el applet de control, éste se cierra automáti - Vulkan Extension Settings + Vulkan Extensions Settings - - While it's recommended to use state 3, some games may perform better on lower states. Setting to 0 (disabled) may also break games. -If your GPU is older (i.e. RX570/580 or older), it may not support these features. If this is the case, set the slider to 0 and uncheck all boxes. -These settings are experimental, and may cause black screens. If your games fail to boot or are stuck on a black screen, change these settings around. + + % + Sample Shading percentage (e.g. 50%) + % + + + + Extended Dynamic State is disabled on macOS due to MoltenVK compatibility issues that cause black screens. @@ -3008,75 +3112,75 @@ These settings are experimental, and may cause black screens. If your games fail Restaurar valores predeterminados - + Action Acción - + Hotkey Tecla de acceso rápido - + Controller Hotkey Teclas de atajo del control - - - + + + Conflicting Key Sequence Combinación de teclas en conflicto - - + + The entered key sequence is already assigned to: %1 La combinación de teclas introducida ya ha sido asignada a: %1 - + [waiting] [esperando] - + Invalid No válido - + Invalid hotkey settings Configuración de teclas de atajo no válida - + An error occurred. Please report this issue on github. Ha ocurrido un error. Por favor, repórtelo en Github. - + Restore Default Restaurar valor predeterminado - + Clear Eliminar - + Conflicting Button Sequence Secuencia de botones en conflicto - + The default button sequence is already assigned to: %1 La secuencia de botones por defecto ya esta asignada a: %1 - + The default key sequence is already assigned to: %1 La combinación de teclas predeterminada ya ha sido asignada a: %1 @@ -3396,7 +3500,7 @@ These settings are experimental, and may cause black screens. If your games fail - Requires restarting eden + Requires restarting Eden @@ -3551,7 +3655,7 @@ These settings are experimental, and may cause black screens. If your games fail - + Left Stick Palanca izquierda @@ -3661,14 +3765,14 @@ These settings are experimental, and may cause black screens. If your games fail - + L L - + ZL ZL @@ -3687,7 +3791,7 @@ These settings are experimental, and may cause black screens. If your games fail - + Plus Más @@ -3700,15 +3804,15 @@ These settings are experimental, and may cause black screens. If your games fail - - + + R R - + ZR ZR @@ -3753,7 +3857,7 @@ These settings are experimental, and may cause black screens. If your games fail - + Right Stick Palanca derecha @@ -3768,242 +3872,242 @@ These settings are experimental, and may cause black screens. If your games fail Configurar - - - - + + + + Clear Borrar - - - - - + + + + + [not set] [no definido] - - - + + + Invert button Invertir botón - - + + Toggle button Alternar botón - + Turbo button Botón turbo - - + + Invert axis Invertir ejes - - - + + + Set threshold Configurar umbral - - + + Choose a value between 0% and 100% Seleccione un valor entre 0% y 100%. - + Toggle axis Alternar ejes - + Set gyro threshold Configurar umbral del Giroscopio - + Calibrate sensor Calibrar sensor - + Map Analog Stick Configuración de palanca analógico - + After pressing OK, first move your joystick horizontally, and then vertically. To invert the axes, first move your joystick vertically, and then horizontally. Después de pulsar OK, mueve primero el joystick de manera horizontal, y luego verticalmente. Para invertir los ejes, mueve primero el joystick de manera vertical, y luego horizontalmente. - + Center axis Centrar ejes - - + + Deadzone: %1% Punto muerto: %1% - - + + Modifier Range: %1% Rango del modificador: %1% - - + + Pro Controller Controlador Pro - + Dual Joycons Joycons duales - + Left Joycon Joycon izquierdo - + Right Joycon Joycon derecho - + Handheld Portátil - + GameCube Controller Controlador de GameCube - + Poke Ball Plus Poke Ball Plus - + NES Controller Controlador NES - + SNES Controller Controlador SNES - + N64 Controller Controlador N64 - + Sega Genesis Sega Genesis - + Start / Pause Inicio / Pausa - + Z Z - + Control Stick Palanca de control - + C-Stick C-Stick - + Shake! ¡Agita! - + [waiting] [esperando] - + New Profile Nuevo perfil - + Enter a profile name: Introduce un nombre de perfil: - - + + Create Input Profile Crear perfil de entrada - + The given profile name is not valid! ¡El nombre de perfil introducido no es válido! - + Failed to create the input profile "%1" Error al crear el perfil de entrada "%1" - + Delete Input Profile Eliminar perfil de entrada - + Failed to delete the input profile "%1" Error al eliminar el perfil de entrada "%1" - + Load Input Profile Cargar perfil de entrada - + Failed to load the input profile "%1" Error al cargar el perfil de entrada "%1" - + Save Input Profile Guardar perfil de entrada - + Failed to save the input profile "%1" Error al guardar el perfil de entrada "%1" @@ -4060,7 +4164,7 @@ Para invertir los ejes, mueve primero el joystick de manera vertical, y luego ho - + Configure Configurar @@ -4096,7 +4200,7 @@ Para invertir los ejes, mueve primero el joystick de manera vertical, y luego ho - + Test Probar @@ -4115,7 +4219,7 @@ Para invertir los ejes, mueve primero el joystick de manera vertical, y luego ho <a href='https://yuzu-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> - + %1:%2 %1:%2 @@ -4124,77 +4228,77 @@ Para invertir los ejes, mueve primero el joystick de manera vertical, y luego ho yuzu - + <a href='https://eden-emulator.github.io/wiki/using-a-controller-or-android-phone-for-motion-or-touch-input'><span style="text-decoration: underline; color:#039be5;">Learn More</span></a> - + Port number has invalid characters El número del puerto tiene caracteres que no son válidos - - - - - - - eden + + + + + + + Eden - + Port has to be in range 0 and 65353 El puerto debe estar en un rango entre 0 y 65353 - + IP address is not valid Dirección IP no válida - + This UDP server already exists Este servidor UDP ya existe - + Unable to add more than 8 servers No es posible añadir más de 8 servidores - + Testing Probando - + Configuring Configurando - + Test Successful Prueba existosa - + Successfully received data from the server. Se han recibido con éxito los datos del servidor. - + 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>Por favor, verifica que el servidor esté configurado correctamente y que la dirección y el puerto sean correctos. - + UDP Test or calibration configuration is in progress.<br>Please wait for them to finish. La prueba de UDP o la configuración de la calibración está en curso.<br>Por favor, espera a que termine el proceso. @@ -4321,7 +4425,12 @@ Los valores actuales son %1% y %2% respectivamente. Interfaz de red - + + Enable Airplane Mode + + + + None Ninguna @@ -4379,52 +4488,52 @@ Los valores actuales son %1% y %2% respectivamente. Algunos ajustes sólo están disponibles cuando no se estén ejecutando los juegos. - + Add-Ons Extras / Add-Ons - + System Sistema - + CPU CPU - + Graphics Gráficos - + Adv. Graphics Gráficos avanz. - + GPU Extensions - + Audio Audio - + Input Profiles Perfiles de entrada - + Linux Linux - + Properties Propiedades @@ -4442,12 +4551,12 @@ Los valores actuales son %1% y %2% respectivamente. Extras / Add-Ons - + Patch Name Nombre del parche - + Version Versión @@ -4485,27 +4594,32 @@ Los valores actuales son %1% y %2% respectivamente. Seleccionar imagen - + + Select Avatar + + + + Add Añadir - + Rename Renombrar - + Remove Eliminar - + Profile management is available only when game is not running. El sistema de perfiles sólo se encuentra disponible cuando no se estén ejecutando los juegos. - + %1 %2 %1 is the profile username, %2 is the formatted UUID (e.g. 00112233-4455-6677-8899-AABBCCDDEEFF)) @@ -4513,100 +4627,189 @@ Los valores actuales son %1% y %2% respectivamente. %2 - + Enter Username Introduzca el nombre - + Users Usuarios - + Enter a username for the new user: Introduce un nombre para el nuevo usuario: - + Enter a new username: Introduce un nuevo nombre de usuario: - + + Error saving user image + + + + + Unable to save image to file + + + + Select User Image Selecciona una imagen de usuario - - JPEG Images (*.jpg *.jpeg) - Imagenes JPEG (*.jpg *.jpeg) + + Image Formats (*.jpg *.jpeg *.png *.bmp) + - + + No firmware available + No hay firmware disponible + + + + Please install the firmware to use firmware avatars. + + + + + + Error loading archive + + + + + Archive is not available. Please install/reinstall firmware. + + + + + Archive does not contain romfs. It is probably corrupt. + + + + + Error extracting archive + + + + + Archive could not be extracted. It is probably corrupt. + + + + + Error finding image directory + + + + + Failed to find image directory in the archive. + + + + + No images found + + + + + No avatar images were found in the archive. + + + + JPEG Images (*.jpg *.jpeg) + Imagenes JPEG (*.jpg *.jpeg) + + + Error deleting image Error al eliminar la imagen - + Error occurred attempting to overwrite previous image at: %1. Ha ocurrido un error al intentar sobrescribir la imagen anterior en: %1. - + Error deleting file Error al eliminar el archivo - + Unable to delete existing file: %1. No se puede eliminar el archivo existente: %1. - + Error creating user image directory Error al crear el directorio de imagen del usuario - + Unable to create directory %1 for storing user images. No se puede crear el directorio %1 para almacenar imágenes de usuario. - Error copying user image - Error al copiar la imagen de usuario. + Error al copiar la imagen de usuario. - Unable to copy image from %1 to %2 - No se puede copiar la imagen de %1 a %2 + No se puede copiar la imagen de %1 a %2 - Error resizing user image - Error al redimensionar la imagen de usuario + Error al redimensionar la imagen de usuario - Unable to resize image - No se puede cambiar el tamaño de la imagen + No se puede cambiar el tamaño de la imagen + + + + ConfigureProfileManagerAvatarDialog + + + Select + + + + + Cancel + Cancelar + + + + Background Color + + + + + Select Firmware Avatar + ConfigureProfileManagerDeleteDialog - + Delete this user? All of the user's save data will be deleted. ¿Eliminar este usuario? Todos los datos de guardado del usuario serán eliminados. - + Confirm Delete Confirmar eliminación - + Name: %1 UUID: %2 Nombre: %1 @@ -4659,7 +4862,7 @@ UUID: %2 - + Enable Activar @@ -4670,7 +4873,7 @@ UUID: %2 - + Not connected No conectado @@ -4680,63 +4883,63 @@ UUID: %2 Restaurar valores predeterminados - + Clear Limpiar - + [not set] [no definido] - + Invert axis Invertir ejes - - + + Deadzone: %1% Punto muerto: %1% - + Error enabling ring input Error al activar la entrada del Ring - + Direct Joycon driver is not enabled El driver directo JoyCon no está activo. - + Configuring Configurando - + The current mapped device doesn't support the ring controller El dispositivo de entrada actual no soporta el Ring Controller. - + The current mapped device doesn't have a ring attached El dispositivo de entrada actual no tiene el Ring incorporado - + The current mapped device is not connected El dispositivo de entrada actual no está conectado. - + Unexpected driver result %1 Resultado inesperado del driver %1 - + [waiting] [esperando] @@ -4778,7 +4981,7 @@ UUID: %2 - <html><head/><body><p>Reads controller input from scripts in the same format as TAS-nx scripts.<br/>For a more detailed explanation, please consult the <a href="https://eden-emulator.github.io/help/feature/tas/"><span style=" text-decoration: underline; color:#039be5;">help page</span></a> on the eden website.</p></body></html> + <html><head/><body><p>Reads controller input from scripts in the same format as TAS-nx scripts.<br/>For a more detailed explanation, please consult the <a href="https://eden-emulator.github.io/help/feature/tas/"><span style=" text-decoration: underline; color:#039be5;">help page</span></a> on the Eden website.</p></body></html> @@ -4830,12 +5033,12 @@ UUID: %2 ConfigureTasDialog - + TAS Configuration Configuración TAS - + Select TAS Load Directory... Selecciona el directorio de carga TAS... @@ -4945,7 +5148,7 @@ Arrastra los puntos para cambiar de posición, o haz doble clic en las celdas de - Warning: The settings in this page affect the inner workings of eden's emulated touchscreen. Changing them may result in undesirable behavior, such as the touchscreen partially or not working. You should only use this page if you know what you are doing. + Warning: The settings in this page affect the inner workings of Eden's emulated touchscreen. Changing them may result in undesirable behavior, such as the touchscreen partially or not working. You should only use this page if you know what you are doing. @@ -5265,6 +5468,16 @@ Arrastra los puntos para cambiar de posición, o haz doble clic en las celdas de Web Web + + + Eden Web Service + + + + + Generate + + yuzu Web Service Servicio web de yuzu @@ -5274,42 +5487,29 @@ Arrastra los puntos para cambiar de posición, o haz doble clic en las celdas de Al proporcionar el nombre de usuario y el token, aceptas que yuzu recopile datos de uso adicionales, que pueden incluir información de identificación del usuario. - - eden Web Service - - - - - By providing your username and token, you agree to allow eden to collect additional usage data, which may include user identifying information. - - - - Verify - Verificar + Verificar - Sign up - Registrarse + Registrarse - + Token: Token: - + Username: Nombre de usuario: - What is my token? - ¿Cuál es mi 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 solo puede ser cambiada cuando una sala pública no esté siendo alojada. @@ -5334,12 +5534,12 @@ Arrastra los puntos para cambiar de posición, o haz doble clic en las celdas de Regenerar - + Discord Presence Presencia de Discord - + Show Current Game in your Discord Status Mostrar el juego actual en el estado de Discord @@ -5348,24 +5548,8 @@ Arrastra los puntos para cambiar de posición, o haz doble clic en las celdas de <a href='https://yuzu-emu.org/help/feature/telemetry/'><span style="text-decoration: underline; color:#039be5;">Saber más</span></a> - <a href='https://profile.yuzu-emu.org/'><span style="text-decoration: underline; color:#039be5;">Sign up</span></a> - <a href='https://profile.yuzu-emu.org/'><span style="text-decoration: underline; color:#039be5;">Regístrate</span></a> - - - - <a href='https://evilperson1337.notion.site/Hosting-a-Room-Inside-of-Eden-20457c2edaf680108abac6215a79acdb'><span style="text-decoration: underline; color:#039be5;">What is my token?</span></a> - - - - - Warning - - - - - Verification is currently nonfunctional, instead generate a random 48-character string with only lowercase a-z. - + <a href='https://profile.yuzu-emu.org/'><span style="text-decoration: underline; color:#039be5;">Regístrate</span></a> <a href='https://yuzu-emu.org/wiki/yuzu-web-service/'><span style="text-decoration: underline; color:#039be5;">What is my token?</span></a> @@ -5388,10 +5572,9 @@ Arrastra los puntos para cambiar de posición, o haz doble clic en las celdas de El token no se puede verificar. Los cambios realizados en tu token no se ha guardado. - Unverified, please click Verify before saving configuration Tooltip - No verificado. Por favor, haz clic en Verificar antes de guardar los ajustes. + No verificado. Por favor, haz clic en Verificar antes de guardar los ajustes. Verifying... @@ -5415,20 +5598,67 @@ Arrastra los puntos para cambiar de posición, o haz doble clic en las celdas de Verification failed. Check that you have entered your token correctly, and that your internet connection is working. Error de verificación. Comprueba que has introducido el token correctamente, y que esté funcionando correctamente tu conexión a internet. + + + + All Good + Tooltip + + + + + Must be between 4-20 characters + Tooltip + + + + + Must be 48 characters, and lowercase a-z + Tooltip + + ControllerDialog - + Controller P1 Controlador J1 - + &Controller P1 &Controlador J1 + + DepsDialog + + + Eden Dependencies + + + + + <html><head/><body><p><span style=" font-size:28pt;">Eden Dependencies</span></p></body></html> + + + + + <html><head/><body><p>The projects that make Eden possible</p></body></html> + + + + + Dependency + + + + + Version + Versión + + DirectConnect @@ -5534,7 +5764,12 @@ Arrastra los puntos para cambiar de posición, o haz doble clic en las celdas de - Creating a room failed. Please retry. Restarting eden might be necessary. + Creating a room failed. Please retry. Restarting Eden might be necessary. + + + + + Version mismatch! Please update to the latest version of Eden. If the problem persists, contact the room host and ask them to update the server. @@ -5542,11 +5777,6 @@ Arrastra los puntos para cambiar de posición, o haz doble clic en las celdas de 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 vetado. Habla con el anfitrión para quitar el veto o prueba con una sala diferente. - - - Version mismatch! Please update to the latest version of eden. If the problem persists, contact the room host and ask them to update the server. - - Incorrect password. @@ -5608,7 +5838,7 @@ Por favor, vaya a Configuración -> Sistema -> Red y selecciona la interfa Telemetría - + Broken Vulkan Installation Detected Se ha detectado una instalación corrupta de Vulkan @@ -5617,106 +5847,105 @@ Por favor, vaya a Configuración -> Sistema -> Red y selecciona la interfa La inicialización de Vulkan ha fallado durante la ejecución. Haz clic <a href='https://yuzu-emu.org/wiki/faq/#yuzu-starts-with-the-error-broken-vulkan-installation-detected'>aquí para más información sobre como arreglar el problema</a>. - + Running a game TRANSLATORS: This string is shown to the user to explain why yuzu needs to prevent the computer from sleeping Ejecutando un juego - + Loading Web Applet... Cargando Web applet... - - + + Disable Web Applet Desactivar Web applet - + Disabling the web applet can lead to undefined behavior and should only be used with Super Mario 3D All-Stars. Are you sure you want to disable the web applet? (This can be re-enabled in the Debug settings.) Deshabilitar el Applet Web puede causar comportamientos imprevistos y debería solo ser usado con Super Mario 3D All-Stars. ¿Estas seguro que quieres deshabilitar el Applet Web? (Puede ser reactivado en las configuraciones de Depuración.) - + The amount of shaders currently being built La cantidad de shaders que se están construyendo actualmente - + The current selected resolution scaling multiplier. El multiplicador de escala de resolución seleccionado actualmente. - + Current emulation speed. Values higher or lower than 100% indicate emulation is running faster or slower than a Switch. La velocidad de emulación actual. Los valores superiores o inferiores al 100% indican que la emulación se está ejecutando más rápido o más lento que en una Switch. - + How many frames per second the game is currently displaying. This will vary from game to game and scene to scene. La cantidad de fotogramas por segundo que se está mostrando el juego actualmente. Esto variará de un juego a otro y de una escena a otra. - + Time taken to emulate a Switch frame, not counting framelimiting or v-sync. For full-speed emulation this should be at most 16.67 ms. Tiempo que lleva emular un fotograma de la Switch, sin tener en cuenta la limitación de fotogramas o sincronización vertical. Para una emulación óptima, este valor debería ser como máximo de 16.67 ms. - + Unmute Desileciar - + Mute Silenciar - + Reset Volume Restablecer Volumen - + &Clear Recent Files &Eliminar archivos recientes - + &Continue &Continuar - + &Pause &Pausar - Warning Outdated Game Format - Advertencia: formato del juego obsoleto + Advertencia: formato del juego obsoleto You are using the deconstructed ROM directory format for this game, which is an outdated format that has been superseded by others such as NCA, NAX, XCI, or NSP. Deconstructed ROM directories lack icons, metadata, and update support.<br><br>For an explanation of the various Switch formats yuzu supports, <a href='https://yuzu-emu.org/wiki/overview-of-switch-game-formats'>check out our wiki</a>. This message will not be shown again. Está utilizando el formato de directorio de ROM deconstruido para este juego, que es un formato desactualizado que ha sido reemplazado por otros, como los NCA, NAX, XCI o NSP. Los directorios de ROM deconstruidos carecen de íconos, metadatos y soporte de actualizaciones.<br><br>Para ver una explicación de los diversos formatos de Switch que soporta yuzu,<a href='https://yuzu-emu.org/wiki/overview-of-switch-game-formats'>echa un vistazo a nuestra wiki</a>. Este mensaje no se volverá a mostrar. - - + + Error while loading ROM! ¡Error al cargar la ROM! - + The ROM format is not supported. El formato de la ROM no es compatible. - + An error occurred initializing the video core. Se ha producido un error al inicializar el núcleo de video. @@ -5725,7 +5954,7 @@ Por favor, vaya a Configuración -> Sistema -> Red y selecciona la interfa yuzu ha encontrado un error al ejecutar el núcleo de video. Esto suele ocurrir al no tener los controladores de la GPU actualizados, incluyendo los integrados. Por favor, revisa el registro para más detalles. Para más información sobre cómo acceder al registro, por favor, consulta la siguiente página: <a href='https://yuzu-emu.org/help/reference/log-files/'>Como cargar el archivo de registro</a>. - + Error while loading ROM! %1 %1 signifies a numeric error code. ¡Error al cargar la ROM! %1 @@ -5736,473 +5965,405 @@ Por favor, vaya a Configuración -> Sistema -> Red y selecciona la interfa %1<br>Por favor, sigue <a href='https://yuzu-emu.org/help/quickstart/'>la guía de inicio rápido de yuzu</a> para revolcar los archivos.<br>Puedes consultar la wiki de yuzu</a> o el Discord de yuzu</a> para obtener ayuda. - + Vulkan initialization failed during boot.<br><br>Click <a href='https://eden-emulator.github.io/wiki/faq/#yuzu-starts-with-the-error-broken-vulkan-installation-detected'>here for instructions to fix the issue</a>. - - Game Updates Warning - - - - - The game you are trying to launch is known to have performance or booting issues when updates are applied. Please try increasing the memory layout to 6GB or 8GB if any issues occur.<br><br>Press "OK" to continue launching, or "Cancel" to cancel the launch. - - - - - Don't show again for this game - - - - - You are using the deconstructed ROM directory format for this game, which is an outdated format that has been superseded by others such as NCA, NAX, XCI, or NSP. Deconstructed ROM directories lack icons, metadata, and update support.<br><br>For an explanation of the various Switch formats eden supports, <a href='https://eden-emulator.github.io/wiki/overview-of-switch-game-formats'>check out our wiki</a>. This message will not be shown again. - - - - - eden has encountered an error while running the video core. This is usually caused by outdated GPU drivers, including integrated ones. Please see the log for more details. For more information on accessing the log, please see the following page: <a href='https://eden-emulator.github.io/help/reference/log-files/'>How to Upload the Log File</a>. - - - - - %1<br>Please redump your files or ask on Discord for help. - %1 signifies an error string. - - - - + An unknown error occurred. Please see the log for more details. Error desconocido. Por favor, consulte el archivo de registro para ver más detalles. - + (64-bit) (64-bit) - + (32-bit) (32-bit) - + %1 %2 %1 is the title name. %2 indicates if the title is 64-bit or 32-bit %1 %2 - + Closing software... Cerrando software... - + Save Data Datos de guardado - + Mod Data Datos de mods - + Error Opening %1 Folder Error al abrir la carpeta %1 - - + + Folder does not exist! ¡La carpeta no existe! - Error Opening Transferable Shader Cache - Error al abrir el caché transferible de shaders + Error al abrir el caché transferible de shaders - Failed to create the shader cache directory for this title. - No se pudo crear el directorio de la caché de los shaders para este título. + No se pudo crear el directorio de la caché de los shaders para este título. - Error Removing Contents - Error al eliminar el contenido + Error al eliminar el contenido - Error Removing Update - Error al eliminar la actualización + Error al eliminar la actualización - Error Removing DLC - Error al eliminar el DLC + Error al eliminar el DLC - + Remove Installed Game Contents? ¿Eliminar contenido del juego instalado? - + Remove Installed Game Update? ¿Eliminar actualización del juego instalado? - + Remove Installed Game DLC? ¿Eliminar el DLC del juego instalado? - + Remove Entry Eliminar entrada - - - - - - Successfully Removed - Se ha eliminado con éxito + Se ha eliminado con éxito - Successfully removed the installed base game. - Se ha eliminado con éxito el juego base instalado. + Se ha eliminado con éxito el juego base instalado. - The base game is not installed in the NAND and cannot be removed. - El juego base no está instalado en el NAND y no se puede eliminar. + El juego base no está instalado en el NAND y no se puede eliminar. - Successfully removed the installed update. - Se ha eliminado con éxito la actualización instalada. + Se ha eliminado con éxito la actualización instalada. - There is no update installed for this title. - No hay ninguna actualización instalada para este título. + No hay ninguna actualización instalada para este título. - There are no DLC installed for this title. - No hay ningún DLC instalado para este título. + No hay ningún DLC instalado para este título. - Successfully removed %1 installed DLC. - Se ha eliminado con éxito %1 DLC instalado(s). + Se ha eliminado con éxito %1 DLC instalado(s). - + Delete OpenGL Transferable Shader Cache? ¿Deseas eliminar el caché transferible de shaders de OpenGL? - + Delete Vulkan Transferable Shader Cache? ¿Deseas eliminar el caché transferible de shaders de Vulkan? - + Delete All Transferable Shader Caches? ¿Deseas eliminar todo el caché transferible de shaders? - + Remove Custom Game Configuration? ¿Deseas eliminar la configuración personalizada del juego? - + Remove Cache Storage? ¿Quitar almacenamiento de caché? - + Remove File Eliminar archivo - + Remove Play Time Data Eliminar información del tiempo de juego - + Reset play time? ¿Reestablecer tiempo de juego? - - Error Removing Transferable Shader Cache - Error al eliminar la caché de shaders transferibles + Error al eliminar la caché de shaders transferibles - - A shader cache for this title does not exist. - No existe caché de shaders para este título. + No existe caché de shaders para este título. - Successfully removed the transferable shader cache. - El caché de shaders transferibles se ha eliminado con éxito. + El caché de shaders transferibles se ha eliminado con éxito. - Failed to remove the transferable shader cache. - No se ha podido eliminar la caché de shaders transferibles. + No se ha podido eliminar la caché de shaders transferibles. - Error Removing Vulkan Driver Pipeline Cache - Error al eliminar la caché de canalización del controlador Vulkan + Error al eliminar la caché de canalización del controlador Vulkan - Failed to remove the driver pipeline cache. - No se ha podido eliminar la caché de canalización del controlador. + No se ha podido eliminar la caché de canalización del controlador. - - Error Removing Transferable Shader Caches - Error al eliminar las cachés de shaders transferibles + Error al eliminar las cachés de shaders transferibles - Successfully removed the transferable shader caches. - Cachés de shaders transferibles eliminadas con éxito. + Cachés de shaders transferibles eliminadas con éxito. - Failed to remove the transferable shader cache directory. - No se ha podido eliminar el directorio de cachés de shaders transferibles. + No se ha podido eliminar el directorio de cachés de shaders transferibles. - - Error Removing Custom Configuration - Error al eliminar la configuración personalizada del juego + Error al eliminar la configuración personalizada del juego - A custom configuration for this title does not exist. - No existe una configuración personalizada para este título. + No existe una configuración personalizada para este título. - Successfully removed the custom game configuration. - Se eliminó con éxito la configuración personalizada del juego. + Se eliminó con éxito la configuración personalizada del juego. - Failed to remove the custom game configuration. - No se ha podido eliminar la configuración personalizada del juego. + No se ha podido eliminar la configuración personalizada del juego. - - + + RomFS Extraction Failed! ¡La extracción de RomFS ha fallado! - + There was an error copying the RomFS files or the user cancelled the operation. Se ha producido un error al copiar los archivos RomFS o el usuario ha cancelado la operación. - + Full Completo - + Skeleton En secciones - + Select RomFS Dump Mode Elegir método de volcado de RomFS - + Please select the how you would like the RomFS dumped.<br>Full will copy all of the files into the new directory while <br>skeleton will only create the directory structure. Por favor, selecciona el método en que quieres volcar el RomFS.<br>Completo copiará todos los archivos al nuevo directorio <br> mientras que en secciones solo creará la estructura del directorio. - + There is not enough free space at %1 to extract the RomFS. Please free up space or select a different dump directory at Emulation > Configure > System > Filesystem > Dump Root No hay suficiente espacio en %1 para extraer el RomFS. Por favor, libera espacio o elige otro directorio de volcado en Emulación > Configuración > Sistema > Sistema de archivos > Raíz de volcado - + Extracting RomFS... Extrayendo RomFS... - - - - - + + Cancel Cancelar - + RomFS Extraction Succeeded! ¡La extracción RomFS ha tenido éxito! - - - + The operation completed successfully. La operación se completó con éxito. - Integrity verification couldn't be performed! - ¡No se pudo ejecutar la verificación de integridad! + ¡No se pudo ejecutar la verificación de integridad! - File contents were not checked for validity. - No se ha podido comprobar la validez de los contenidos del archivo. + No se ha podido comprobar la validez de los contenidos del archivo. - - Verifying integrity... - Verificando integridad... + Verificando integridad... - - Integrity verification succeeded! - ¡La verificación de integridad ha sido un éxito! + ¡La verificación de integridad ha sido un éxito! - - Integrity verification failed! - ¡Verificación de integridad fallida! + ¡Verificación de integridad fallida! - File contents may be corrupt. - Los contenidos del archivo pueden estar corruptos. + Los contenidos del archivo pueden estar corruptos. - - - - Create Shortcut - Crear acceso directo + Crear acceso directo - Do you want to launch the game in fullscreen? - ¿Desea iniciar el juego en pantalla completa? + ¿Desea iniciar el juego en pantalla completa? - Successfully created a shortcut to %1 - Se ha creado un acceso directo a %1 + Se ha creado un acceso directo a %1 - This will create a shortcut to the current AppImage. This may not work well if you update. Continue? - Esto creará un acceso directo a la AppImage actual. Esto puede no funcionar bien si se actualiza. ¿Continuar? + Esto creará un acceso directo a la AppImage actual. Esto puede no funcionar bien si se actualiza. ¿Continuar? - Failed to create a shortcut to %1 - No se ha podido crear el acceso directo de %1 + No se ha podido crear el acceso directo de %1 - Create Icon - Crear icono + Crear icono - Cannot create icon file. Path "%1" does not exist and cannot be created. - No se puede crear el archivo de icono. La ruta "%1" no existe y no se ha podido crear. + No se puede crear el archivo de icono. La ruta "%1" no existe y no se ha podido crear. - + + Warning: Outdated Game Format + + + + + You are using the deconstructed ROM directory format for this game, which is an outdated format that has been superseded by others such as NCA, NAX, XCI, or NSP. Deconstructed ROM directories lack icons, metadata, and update support.<br><br>For an explanation of the various Switch formats Eden supports, <a href='https://eden-emulator.github.io/wiki/overview-of-switch-game-formats'>check out our wiki</a>. This message will not be shown again. + + + + + Eden has encountered an error while running the video core. This is usually caused by outdated GPU drivers, including integrated ones. Please see the log for more details. For more information on accessing the log, please see the following page: <a href='https://yuzu-mirror.github.io/help/reference/log-files/'>How to Upload the Log File</a>. + + + + + %1<br>Please redump your files or ask on Discord/Revolt for help. + %1 signifies an error string. + + + + Error Opening %1 Error al intentar abrir %1 - + Select Directory Seleccionar directorio - + Properties Propiedades - + The game properties could not be loaded. No se pueden cargar las propiedades del juego. - + Switch Executable (%1);;All Files (*.*) %1 is an identifier for the Switch executable file extensions. Ejecutable de Switch (%1);;Todos los archivos (*.*) - + Load File Cargar archivo - + Open Extracted ROM Directory Abrir el directorio de la ROM extraída - + Invalid Directory Selected Directorio seleccionado no válido - + The directory you have selected does not contain a 'main' file. El directorio que ha seleccionado no contiene ningún archivo 'main'. - + Installable Switch File (*.nca *.nsp *.xci);;Nintendo Content Archive (*.nca);;Nintendo Submission Package (*.nsp);;NX Cartridge Image (*.xci) Archivo de Switch Instalable (*.nca *.nsp *.xci);;Archivo de contenidos de Nintendo (*.nca);;Paquete de envío de Nintendo (*.nsp);;Imagen de cartucho NX (*.xci) - + Install Files Instalar archivos - + %n file(s) remaining %n archivo(s) restantes @@ -6210,25 +6371,25 @@ Por favor, vaya a Configuración -> Sistema -> Red y selecciona la interfa - + Installing file "%1"... Instalando el archivo "%1"... - - + + Install Results Instalar resultados - + To avoid possible conflicts, we discourage users from installing base games to the NAND. Please, only use this feature to install updates and DLC. Para evitar posibles conflictos, no se recomienda a los usuarios que instalen juegos base en el NAND. Por favor, utiliza esta función sólo para instalar actualizaciones y DLCs. - + %n file(s) were newly installed @@ -6239,7 +6400,7 @@ Por favor, utiliza esta función sólo para instalar actualizaciones y DLCs. - + %n file(s) were overwritten @@ -6250,7 +6411,7 @@ Por favor, utiliza esta función sólo para instalar actualizaciones y DLCs. - + %n file(s) failed to install @@ -6261,242 +6422,310 @@ Por favor, utiliza esta función sólo para instalar actualizaciones y DLCs. - + System Application Aplicación del sistema - + System Archive Archivo del sistema - + System Application Update Actualización de la aplicación del sistema - + Firmware Package (Type A) Paquete de firmware (Tipo A) - + Firmware Package (Type B) Paquete de firmware (Tipo B) - + Game Juego - + Game Update Actualización de juego - + Game DLC DLC del juego - + Delta Title Titulo delta - + Select NCA Install Type... Seleccione el tipo de instalación NCA... - + Please select the type of title you would like to install this NCA as: (In most instances, the default 'Game' is fine.) Seleccione el tipo de título en el que deseas instalar este NCA como: (En la mayoría de los casos, el 'Juego' predeterminado está bien). - + Failed to Install Fallo en la instalación - + The title type you selected for the NCA is invalid. El tipo de título que seleccionó para el NCA no es válido. - + File not found Archivo no encontrado - + File "%1" not found Archivo "%1" no encontrado - + OK Aceptar - - + + Hardware requirements not met No se cumplen los requisitos de hardware - - + + Your system does not meet the recommended hardware requirements. Compatibility reporting has been disabled. El sistema no cumple con los requisitos de hardware recomendados. Los informes de compatibilidad se han desactivado. - + Missing yuzu Account Falta la cuenta de Yuzu - - In order to submit a game compatibility test case, you must link your eden account.<br><br/>To link your eden account, go to Emulation &gt; Configuration &gt; Web. + + In order to submit a game compatibility test case, you must set up your web token and username.<br><br/>To link your eden account, go to Emulation &gt; Configuration &gt; Web. - - Install decryption keys and restart eden before attempting to install firmware. + + + Install decryption keys and restart Eden before attempting to install firmware. - - Firmware installation cancelled, firmware may be in bad state, restart eden or re-install firmware. + + Select Dumped Firmware ZIP - - Encryption keys are missing. + + Zipped Archives (*.zip) - - Are you sure you want to close eden? + + Firmware cleanup failed - - - - eden + + Failed to clean up extracted firmware cache. +Check write permissions in the system temp directory and try again. +OS reported error: %1 - - The currently running application has requested eden to not exit. + + Please install firmware to use the Album applet. + + + + + Please install firmware to use the Cabinet applet. + + + + + Please install firmware to use the Mii editor. + + + + + Please install firmware to use the Controller Menu. + + + + + Please install firmware to use the Home Menu. + + + + + Firmware Corrupted + + + + + Firmware Too New + + + + + +Continue anyways? + + + + + Don't show again + + + + + Please install firmware to use Starter. + + + + + Are you sure you want to close Eden? + + + + + + + Eden + + + + + The currently running application has requested Eden to not exit. Would you like to bypass this and exit anyway? + + + Encryption keys are missing. + + In order to submit a game compatibility test case, you must link your yuzu account.<br><br/>To link your yuzu account, go to Emulation &gt; Configuration &gt; Web. Para enviar un caso de prueba de compatibilidad de juegos, debes vincular tu cuenta de yuzu.<br><br/> Para vincular tu cuenta de yuzu, ve a Emulación &gt; Configuración &gt; Web. - + Error opening URL Error al abrir la URL - + Unable to open the URL "%1". No se puede abrir la URL "%1". - + TAS Recording Grabación TAS - + Overwrite file of player 1? ¿Sobrescribir archivo del jugador 1? - + Invalid config detected Configuración no válida detectada - + Handheld controller can't be used on docked mode. Pro controller will be selected. El controlador del modo portátil no puede ser usado en el modo sobremesa. Se seleccionará el controlador Pro en su lugar. - - + + Amiibo Amiibo - - + + The current amiibo has been removed El amiibo actual ha sido eliminado - + Error Error - - + + The current game is not looking for amiibos El juego actual no está buscando amiibos - + Amiibo File (%1);; All Files (*.*) Archivo amiibo (%1);; Todos los archivos (*.*) - + Load Amiibo Cargar amiibo - + Error loading Amiibo data Error al cargar los datos Amiibo - + The selected file is not a valid amiibo El archivo seleccionado no es un amiibo válido - + The selected file is already on use El archivo seleccionado ya se encuentra en uso - + An unknown error occurred Ha ocurrido un error inesperado - - Verification failed for the following files: %1 - La verificación falló en los siguientes archivos: + La verificación falló en los siguientes archivos: %1 - + + Keys not installed Claves no instaladas @@ -6505,255 +6734,187 @@ Would you like to bypass this and exit anyway? Prueba a instalar las claves de encriptado y reinicie yuzu antes de instalar el firmware. - + Select Dumped Firmware Source Location Seleccionar ubicación de origen del firmware volcado - Installing Firmware... - Instalando firmware... + Instalando firmware... - - - - Firmware install failed - Error en la instalación del firmware + Error en la instalación del firmware - Unable to locate potential firmware NCA files - No se ha podido localizar los posibles archivos NCA de firmware. + No se ha podido localizar los posibles archivos NCA de firmware. - Failed to delete one or more firmware file. - No se pudo eliminar uno o más archivos de firmware. + No se pudo eliminar uno o más archivos de firmware. Firmware installation cancelled, firmware may be in bad state, restart yuzu or re-install firmware. La instalación del firmware se ha cancelado, puede que el firmware esté en mal estado, reinicia yuzu o reinstala el firmware. - One or more firmware files failed to copy into NAND. - Uno o más archivos de firmware no se pudieron copiar en NAND. + Uno o más archivos de firmware no se pudieron copiar en NAND. - Firmware integrity verification failed! - ¡Error en la verificación de integridad del firmware! + ¡Error en la verificación de integridad del firmware! - - Select Dumped Keys Location - - - - - - - Decryption Keys install failed - - - - - prod.keys is a required decryption key file. - - - - - One or more keys failed to copy. - - - - - Decryption Keys install succeeded - - - - - Decryption Keys were successfully installed - - - - - Decryption Keys failed to initialize. Check that your dumping tools are up to date and re-dump keys. - - - - - - - - - - + + + + + + No firmware available No hay firmware disponible - Please install the firmware to use the Album applet. - Por favor, instala el firmware para usar la aplicación del Álbum. + Por favor, instala el firmware para usar la aplicación del Álbum. - + Album Applet Applet del Álbum - + Album applet is not available. Please reinstall firmware. La aplicación del Álbum no esta disponible. Por favor, reinstala el firmware. - Please install the firmware to use the Cabinet applet. - Por favor, instala el firmware para usar la applet de Cabinet. + Por favor, instala el firmware para usar la applet de Cabinet. - + Cabinet Applet Applet de Cabinet - + Cabinet applet is not available. Please reinstall firmware. La applet de Cabinet no está disponible. Por favor, reinstala el firmware. - Please install the firmware to use the Mii editor. - Por favor, instala el firmware para usar el editor de Mii. + Por favor, instala el firmware para usar el editor de Mii. - + Mii Edit Applet Applet de Editor de Mii - + Mii editor is not available. Please reinstall firmware. El editor de Mii no está disponible. Por favor, reinstala el firmware. - Please install the firmware to use the Controller Menu. - Por favor, instala el firmware para poder utilizar el Menú de mandos. + Por favor, instala el firmware para poder utilizar el Menú de mandos. - + Controller Applet Applet de Mandos - + Controller Menu is not available. Please reinstall firmware. El Menú de mandos no se encuentra disponible. Por favor, reinstala el firmware. - - Please install the firmware to use the Home Menu. - - - - - + Home Menu Applet - - + Home Menu is not available. Please reinstall firmware. - - Please install the firmware to use Starter. - - - - + Starter Applet - + Starter is not available. Please reinstall firmware. - - Please install firmware to use the home menu. - - - - + Capture Screenshot Captura de pantalla - + PNG Image (*.png) Imagen PNG (*.png) - + Update Available - + Update %1 for Eden is available. Would you like to download it? - + TAS state: Running %1/%2 Estado TAS: ejecutando %1/%2 - + TAS state: Recording %1 Estado TAS: grabando %1 - + TAS state: Idle %1/%2 Estado TAS: inactivo %1/%2 - + TAS State: Invalid Estado TAS: nulo - + &Stop Running &Parar de ejecutar - + &Start &Iniciar - + Stop R&ecording Pausar g&rabación - + R&ecord G&rabar - + Building: %n shader(s) Creando: %n shader(s) @@ -6761,18 +6922,18 @@ Would you like to download it? - + Scale: %1x %1 is the resolution scaling factor Escalado: %1x - + Speed: %1% / %2% Velocidad: %1% / %2% - + Speed: %1% Velocidad: %1% @@ -6781,44 +6942,44 @@ Would you like to download it? Juego: %1 FPS (desbloqueado) - + Game: %1 FPS Juego: %1 FPS - + Frame: %1 ms Fotogramas: %1 ms - + %1 %2 %1 %2 - - + + FSR FSR - + NO AA NO AA - + VOLUME: MUTE VOLUMEN: SILENCIO - + VOLUME: %1% Volume percentage (e.g. 50%) VOLUMEN: %1% - + Derivation Components Missing Faltan componentes de derivación @@ -6827,12 +6988,12 @@ Would you like to download it? Faltan las claves de encriptación. <br>Por favor, siga <a href='https://yuzu-emu.org/help/quickstart/'>la guía de inicio rápido de yuzu</a> para obtener todas tus claves, firmware y juegos. - + Select RomFS Dump Target Selecciona el destinatario para volcar el RomFS - + Please select which RomFS you would like to dump. Por favor, seleccione los RomFS que deseas volcar. @@ -6845,7 +7006,7 @@ Would you like to download it? yuzu - + Are you sure you want to stop the emulation? Any unsaved progress will be lost. ¿Estás seguro de que quieres detener la emulación? Cualquier progreso no guardado se perderá. @@ -6858,102 +7019,102 @@ Would you like to bypass this and exit anyway? ¿Quieres salir de todas formas? - + None Ninguno - + FXAA FXAA - + SMAA SMAA - + Nearest Más cercano - + Bilinear Bilineal - + Bicubic Bicúbico - + Gaussian Gaussiano - + ScaleForce ScaleForce - + Area - + Docked Sobremesa - + Handheld Portátil - + Normal Normal - + High Alto - + Extreme Extremo - + Vulkan Vulkan - + OpenGL OpenGL - + Null Ninguno - + GLSL GLSL - + GLASM GLASM - + SPIRV SPIRV @@ -6961,13 +7122,13 @@ Would you like to bypass this and exit anyway? GRenderWindow - - + + OpenGL not available! ¡OpenGL no está disponible! - + OpenGL shared contexts are not supported. Los contextos compartidos de OpenGL no son compatibles. @@ -6976,33 +7137,33 @@ Would you like to bypass this and exit anyway? yuzu no ha sido compilado con soporte de OpenGL. - - eden has not been compiled with OpenGL support. + + Eden has not been compiled with OpenGL support. - - + + Error while initializing OpenGL! ¡Error al inicializar OpenGL! - + Your GPU may not support OpenGL, or you do not have the latest graphics driver. Tu GPU no soporta OpenGL, o no tienes instalados los últimos controladores gráficos. - + Error while initializing OpenGL 4.6! ¡Error al iniciar OpenGL 4.6! - + Your GPU may not support OpenGL 4.6, or you do not have the latest graphics driver.<br><br>GL Renderer:<br>%1 Tu GPU no soporta OpenGL 4.6, o no tienes instalado el último controlador de la tarjeta gráfica.<br><br>GL Renderer:<br>%1 - + Your GPU may not support one or more required OpenGL extensions. Please ensure you have the latest graphics driver.<br><br>GL Renderer:<br>%1<br><br>Unsupported extensions:<br>%2 Es posible que la GPU no soporte una o más extensiones necesarias de OpenGL . Por favor, asegúrate de tener los últimos controladores de la tarjeta gráfica.<br><br>GL Renderer:<br>%1<br><br>Extensiones no soportadas:<br>%2 @@ -7010,128 +7171,128 @@ Would you like to bypass this and exit anyway? GameList - + Favorite Favorito - + Start Game Iniciar juego - + Start Game without Custom Configuration Iniciar juego sin la configuración personalizada - + Open Save Data Location Abrir ubicación de los archivos de guardado - + Open Mod Data Location Abrir ubicación de los mods - + Open Transferable Pipeline Cache Abrir caché de canalización de shaders transferibles - + Remove Eliminar - + Remove Installed Update Eliminar la actualización instalada - + Remove All Installed DLC Eliminar todos los DLC instalados - + Remove Custom Configuration Eliminar la configuración personalizada - + Remove Play Time Data Eliminar información del tiempo de juego - + Remove Cache Storage Quitar almacenamiento de caché - + Remove OpenGL Pipeline Cache Eliminar caché de canalización de OpenGL - + Remove Vulkan Pipeline Cache Eliminar caché de canalización de Vulkan - + Remove All Pipeline Caches Eliminar todas las cachés de canalización - + Remove All Installed Contents Eliminar todo el contenido instalado - + Dump RomFS Volcar RomFS - + Dump RomFS to SDMC Volcar RomFS a SDMC - + Verify Integrity Verificar integridad - + Copy Title ID to Clipboard Copiar la ID del título al portapapeles - + Navigate to GameDB entry Ir a la sección de bases de datos del juego - + Create Shortcut Crear acceso directo - + Add to Desktop Añadir al escritorio - + Add to Applications Menu Añadir al menú de aplicaciones - + Configure Game @@ -7140,62 +7301,62 @@ Would you like to bypass this and exit anyway? Propiedades - + Scan Subfolders Escanear subdirectorios - + Remove Game Directory Eliminar directorio de juegos - + ▲ Move Up ▲ Mover hacia arriba - + ▼ Move Down ▼ Mover hacia abajo - + Open Directory Location Abrir ubicación del directorio - + Clear Limpiar - + Name Nombre - + Compatibility Compatibilidad - + Add-ons Extras/Add-ons - + File type Tipo de archivo - + Size Tamaño - + Play time Tiempo de juego @@ -7203,62 +7364,62 @@ Would you like to bypass this and exit anyway? GameListItemCompat - + Ingame En juego - + Game starts, but crashes or major glitches prevent it from being completed. El juego se inicia, pero se bloquea o se producen fallos importantes que impiden completarlo. - + Perfect Perfecta - + Game can be played without issues. El juego se puede jugar sin problemas. - + Playable Jugable - + Game functions with minor graphical or audio glitches and is playable from start to finish. El juego tiene algunos errores gráficos o de sonido, pero se puede jugar de principio a fin. - + Intro/Menu Inicio/Menu - + Game loads, but is unable to progress past the Start Screen. El juego se ejecuta, pero no puede avanzar de la pantalla de inicio. - + Won't Boot No funciona - + The game crashes when attempting to startup. El juego se bloquea al intentar iniciar. - + Not Tested Sin testear - + The game has not yet been tested. El juego todavía no ha sido testeado todavía. @@ -7266,7 +7427,7 @@ Would you like to bypass this and exit anyway? GameListPlaceholder - + Double-click to add a new folder to the game list Haz doble clic para agregar un nuevo directorio a la lista de juegos. @@ -7274,7 +7435,7 @@ Would you like to bypass this and exit anyway? GameListSearchField - + %1 of %n result(s) %1 de %n resultado(s) @@ -7282,12 +7443,12 @@ Would you like to bypass this and exit anyway? - + Filter: Búsqueda: - + Enter pattern to filter Introduce un patrón para buscar @@ -7369,7 +7530,7 @@ Would you like to bypass this and exit anyway? - Failed to announce the room to the public lobby. In order to host a room publicly, you must have a valid eden account configured in Emulation -> Configure -> Web. If you do not want to publish a room in the public lobby, then select Unlisted instead. + Failed to announce the room to the public lobby. In order to host a room publicly, you must have a valid Eden 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: @@ -7383,91 +7544,91 @@ Mensaje de depuración: Hotkeys - + Audio Mute/Unmute Activar/Desactivar audio - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Main Window Ventana principal - + Audio Volume Down Bajar volumen del audio - + Audio Volume Up Subir volumen del audio - + Capture Screenshot Captura de pantalla - + Change Adapting Filter Cambiar filtro adaptable - + Change Docked Mode Cambiar a modo sobremesa - + Change GPU Accuracy Cambiar precisión de GPU - + Configure Configurar - + Configure Current Game - + Continue/Pause Emulation Continuar/Pausar emulación - + Exit Fullscreen Salir de pantalla completa @@ -7476,97 +7637,97 @@ Mensaje de depuración: Cerrar yuzu - - Exit eden + + Exit Eden - + Fullscreen Pantalla completa - + Load File Cargar archivo - + Load/Remove Amiibo Cargar/Eliminar Amiibo - + Multiplayer Browse Public Game Lobby Buscar en el lobby de juegos públicos multijugador - + Multiplayer Create Room Crear sala multijugador - + Multiplayer Direct Connect to Room Conexión directa a la sala multijugador - + Multiplayer Leave Room Abandonar sala multijugador - + Multiplayer Show Current Room Mostrar actual sala multijugador - + Restart Emulation Reiniciar emulación - + Stop Emulation Detener emulación - + TAS Record Grabar TAS - + TAS Reset Reiniciar TAS - + TAS Start/Stop Iniciar/detener TAS - + Toggle Filter Bar Alternar barra de filtro - + Toggle Framerate Limit Alternar limite de fotogramas - + Toggle Mouse Panning Alternar desplazamiento del ratón - + Toggle Renderdoc Capture Alternar Captura de Renderdoc - + Toggle Status Bar Alternar barra de estado @@ -7574,22 +7735,22 @@ Mensaje de depuración: InstallDialog - + Please confirm these are the files you wish to install. Por favor, confirma que estos son los archivos que desea instalar. - + Installing an Update or DLC will overwrite the previously installed one. Instalar una actualización o DLC reemplazará la instalada previamente. - + Install Instalar - + Install Files to NAND Instalar archivos al NAND... @@ -7597,7 +7758,7 @@ Mensaje de depuración: LimitableInputDialog - + The text can't contain any of the following characters: %1 El texto no puede tener ninguno de estos caracteres: @@ -7744,152 +7905,207 @@ Mensaje de depuración: &Archivos recientes - + + Open &Eden Folders + + + + &Emulation &Emulación - + &View &Ver - + &Reset Window Size &Reiniciar tamaño de ventana - + &Debugging &Depuración - + Reset Window Size to &720p Reiniciar el tamaño de la ventana a &720p - + Reset Window Size to 720p Reiniciar el tamaño de la ventana a 720p - + Reset Window Size to &900p Reiniciar el tamaño de la ventana a &900p - + Reset Window Size to 900p Reiniciar el tamaño de la ventana a 900p - + Reset Window Size to &1080p Reiniciar el tamaño de la ventana a &1080p - + Reset Window Size to 1080p Reiniciar el tamaño de la ventana a 1080p - + &Multiplayer &Multijugador - + &Tools &Herramientas - + &Amiibo &Amiibo - + &TAS &TAS - + &Create Home Menu Shortcut - + &Help &Ayuda - + &Install Files to NAND... &Instalar archivos en NAND... - + L&oad File... C&argar archivo... - + Load &Folder... Cargar &carpeta - + E&xit S&alir - + &Pause &Pausar - + &Stop &Detener - + &Verify Installed Contents &Verificar contenidos instalados - - &About eden + + &Root Data Folder - - Open &eden Folder + + &NAND Folder - + + &SDMC Folder + + + + + &Mod Folder + + + + + &Log Folder + + + + + From Folder + + + + + From ZIP + + + + + &X + + + + + X (Twitter) + + + + + &Revolt + + + + + Revolt + + + + + &Eden Dependencies + + + + Open Home Menu - + &Discord - + Open &Setup - + &Desktop - + &Application Menu @@ -7898,97 +8114,97 @@ Mensaje de depuración: &Acerca de yuzu - + Single &Window Mode Modo &ventana - + Con&figure... Con&figurar... - + Ctrl+, - + Display D&ock Widget Headers Mostrar complementos de cabecera del D&ock - + Show &Filter Bar Mostrar barra de &búsqueda - + Show &Status Bar Mostrar barra de &estado - + Show Status Bar Mostrar barra de estado - + &Browse Public Game Lobby &Buscar en el lobby de juegos públicos - + &Create Room &Crear sala - + &Leave Room &Abandonar sala - + &Direct Connect to Room &Conexión directa a una sala - + &Show Current Room &Mostrar sala actual - + F&ullscreen P&antalla completa - + &Restart &Reiniciar - + Load/Remove &Amiibo... Cargar/Eliminar &Amiibo... - + &Report Compatibility &Reporte de compatibilidad - + Open &Mods Page Abrir página de &mods - + Open &Quickstart Guide Abrir guía de &inicio rápido - + &FAQ &Preguntas frecuentes @@ -7997,77 +8213,82 @@ Mensaje de depuración: Abrir la carpeta de &yuzu - + &Capture Screenshot &Captura de pantalla - + Open &Album Abrir &Álbum - + &Set Nickname and Owner &Darle nombre y propietario - + &Delete Game Data &Borrar datos de juego - + &Restore Amiibo &Restaurar Amiibo - + &Format Amiibo &Formatear Amiibo - + Open &Mii Editor Abrir Editor de &Mii - + &Configure TAS... &Configurar TAS... - + Configure C&urrent Game... Configurar j&uego actual... - + &Start &Iniciar - + &Reset &Reiniciar - + R&ecord G&rabar - + Open &Controller Menu Abrir Menú de &Mandos - + Install Firmware Instalar firmware - + + &About Eden + + + + Install Decryption Keys @@ -8075,26 +8296,36 @@ Mensaje de depuración: MicroProfileDialog - &MicroProfile - &MicroPerfil + &MicroPerfil MigrationWorker - + Data was migrated successfully. - + Linking the old directory failed. You may need to re-run with administrative privileges on Windows. OS gave error: %1 - + + + +Note that your configuration and data will be shared with %1. +If this is not desirable, delete the following files: +%2 +%3 +%4 + + + + If you wish to clean up the files which were left in the old data location, you can do so by deleting the following directory: @@ -8154,37 +8385,37 @@ If you wish to clean up the files which were left in the old data location, you MultiplayerState - + Current connection status Estado de la conexión actual - + Not Connected. Click here to find a room! No conectado. Haz clic aquí para buscar una sala. - + Not Connected No conectado - + Connected Conectado - + New Messages Received Nuevos mensajes recibidos - + Error Error - + Failed to update the room information. Please check your Internet connection and try hosting the room again. Debug Message: No se ha podido actualizar la información de la sala. Por favor, comprueba tu conexión a internet e intenta alojar la sala de nuevo. @@ -8376,56 +8607,56 @@ p, li { white-space: pre-wrap; } No jugando ningún juego - + Installed SD Titles Títulos instalados en la SD - + Installed NAND Titles Títulos instalados en NAND - + System Titles Títulos del sistema - + Add New Game Directory Añadir un nuevo directorio de juegos - + Favorites Favoritos - - + + Shift Shift - - + + Ctrl Ctrl - - + + Alt Alt - - - - + + + + [not set] [no definido] @@ -8436,14 +8667,14 @@ p, li { white-space: pre-wrap; } Rotación %1 %2 - - - - - - - - + + + + + + + + Axis %1%2 Eje %1%2 @@ -8454,357 +8685,357 @@ p, li { white-space: pre-wrap; } Botón %1 - - - - - - + + + + + + [unknown] [desconocido] - - - + + + Left Izquierda - - - + + + Right Derecha - - - + + + Down Abajo - - - + + + Up Arriba - - + + Z Z - - + + R R - - + + L L - - + + A A - - + + B B - - + + X X - - + + Y Y - - + + Start Comenzar - - + + L1 L1 - - + + L2 L2 - - + + L3 L3 - - + + R1 R1 - - + + R2 R2 - - + + R3 R3 - - + + Circle Círculo - - + + Cross Cruz - - + + Square Cuadrado - - + + Triangle Triángulo - - + + Share Compartir - - + + Options Opciones - - + + [undefined] [sin definir] - + %1%2 %1%2 - - + + [invalid] [inválido] - - + + %1%2Hat %3 %1%2Rotación %3 - - - + + + %1%2Axis %3 %1%2Eje %3 - - + + %1%2Axis %3,%4,%5 %1%2Eje %3,%4,%5 - - + + %1%2Motion %3 %1%2Movimiento %3 - - + + %1%2Button %3 %1%2Botón %3 - - + + [unused] [no usado] - + ZR ZR - + ZL ZL - + SR SR - + SL SL - + Stick L Palanca L - + Stick R Palanca R - + Plus Más - + Minus Menos - - + + Home Inicio - + Capture Captura - + Touch Táctil - + Wheel Indicates the mouse wheel Rueda - + Backward Atrás - + Forward Adelante - + Task Tarea - + Extra Extra - + %1%2%3%4 %1%2%3%4 - - + + %1%2%3Hat %4 %1%2%3Rotación %4 - - + + %1%2%3Axis %4 %1%2%3Axis %4 - - + + %1%2%3Button %4 %1%2%3Botón %4 - - + + Migration - + - - + + No - + You can manually re-trigger this prompt by deleting the new config directory: %1 - + Migrating - + Migrating, this may take a while... @@ -8922,6 +9153,300 @@ p, li { white-space: pre-wrap; } ¿Deseas reestablecer este amiibo? + + QtCommon::Content + + + Installing Firmware... + Instalando firmware... + + + + + + Cancel + Cancelar + + + + Firmware integrity verification failed! + ¡Error en la verificación de integridad del firmware! + + + + + Verification failed for the following files: + +%1 + La verificación falló en los siguientes archivos: + +%1 + + + + + Verifying integrity... + Verificando integridad... + + + + + Integrity verification succeeded! + ¡La verificación de integridad ha sido un éxito! + + + + + The operation completed successfully. + La operación se completó con éxito. + + + + + Integrity verification failed! + ¡Verificación de integridad fallida! + + + + File contents may be corrupt or missing. + + + + + Integrity verification couldn't be performed + + + + + Firmware installation cancelled, firmware may be in a bad state or corrupted. File contents could not be checked for validity. + + + + + Select Dumped Keys Location + + + + + Decryption Keys install succeeded + + + + + Decryption Keys were successfully installed + + + + + Decryption Keys install failed + + + + + QtCommon::Game + + + Error Removing Contents + Error al eliminar el contenido + + + + Error Removing Update + Error al eliminar la actualización + + + + Error Removing DLC + Error al eliminar el DLC + + + + The base game is not installed in the NAND and cannot be removed. + El juego base no está instalado en el NAND y no se puede eliminar. + + + + There is no update installed for this title. + No hay ninguna actualización instalada para este título. + + + + There are no DLCs installed for this title. + + + + + + + + Successfully Removed + Se ha eliminado con éxito + + + + Successfully removed %1 installed DLC. + Se ha eliminado con éxito %1 DLC instalado(s). + + + + + Error Removing Transferable Shader Cache + Error al eliminar la caché de shaders transferibles + + + + + A shader cache for this title does not exist. + No existe caché de shaders para este título. + + + + Successfully removed the transferable shader cache. + El caché de shaders transferibles se ha eliminado con éxito. + + + + Failed to remove the transferable shader cache. + No se ha podido eliminar la caché de shaders transferibles. + + + + Error Removing Vulkan Driver Pipeline Cache + Error al eliminar la caché de canalización del controlador Vulkan + + + + Failed to remove the driver pipeline cache. + No se ha podido eliminar la caché de canalización del controlador. + + + + + Error Removing Transferable Shader Caches + Error al eliminar las cachés de shaders transferibles + + + + Successfully removed the transferable shader caches. + Cachés de shaders transferibles eliminadas con éxito. + + + + Failed to remove the transferable shader cache directory. + No se ha podido eliminar el directorio de cachés de shaders transferibles. + + + + + Error Removing Custom Configuration + Error al eliminar la configuración personalizada del juego + + + + A custom configuration for this title does not exist. + No existe una configuración personalizada para este título. + + + + Successfully removed the custom game configuration. + Se eliminó con éxito la configuración personalizada del juego. + + + + Failed to remove the custom game configuration. + No se ha podido eliminar la configuración personalizada del juego. + + + + Reset Metadata Cache + Reiniciar caché de metadatos + + + + The metadata cache is already empty. + El caché de metadatos ya está vacío. + + + + The operation completed successfully. + La operación se completó con éxito. + + + + The metadata cache couldn't be deleted. It might be in use or non-existent. + El caché de metadatos no se pudo eliminar. Puede que se encuentre en uso actualmente o ya haya sido eliminado. + + + + Create Shortcut + Crear acceso directo + + + + Do you want to launch the game in fullscreen? + ¿Desea iniciar el juego en pantalla completa? + + + + Shortcut Created + + + + + Successfully created a shortcut to %1 + Se ha creado un acceso directo a %1 + + + + Shortcut may be Volatile! + + + + + This will create a shortcut to the current AppImage. This may not work well if you update. Continue? + Esto creará un acceso directo a la AppImage actual. Esto puede no funcionar bien si se actualiza. ¿Continuar? + + + + Failed to Create Shortcut + + + + + Failed to create a shortcut to %1 + No se ha podido crear el acceso directo de %1 + + + + Create Icon + Crear icono + + + + Cannot create icon file. Path "%1" does not exist and cannot be created. + No se puede crear el archivo de icono. La ruta "%1" no existe y no se ha podido crear. + + + + No firmware available + No hay firmware disponible + + + + Please install firmware to use the home menu. + + + + + Home Menu Applet + + + + + Home Menu is not available. Please reinstall firmware. + + + QtControllerSelectorDialog @@ -9217,7 +9742,7 @@ Por favor, inténtalo de nuevo o contacta con el desarrollador del software. QtProfileSelectionDialog - + %1 %2 %1 is the profile username, %2 is the formatted UUID (e.g. 00112233-4455-6677-8899-AABBCCDDEEFF)) @@ -9225,7 +9750,7 @@ Por favor, inténtalo de nuevo o contacta con el desarrollador del software. - + Users Usuarios @@ -9349,7 +9874,7 @@ p, li { white-space: pre-wrap; } WaitTreeCallstack - + Call stack Llamadas acumuladas @@ -9357,12 +9882,12 @@ p, li { white-space: pre-wrap; } WaitTreeSynchronizationObject - + [%1] %2 [%1] %2 - + waited by no thread esperado por ningún hilo @@ -9370,102 +9895,102 @@ p, li { white-space: pre-wrap; } WaitTreeThread - + runnable ejecutable - + paused en pausa - + sleeping reposando - + waiting for IPC reply esperando respuesta IPC - + waiting for objects esperando objetos - + waiting for condition variable esperando variable condicional - + waiting for address arbiter esperando al árbitro de dirección - + waiting for suspend resume esperando a reanudar - + waiting esperando - + initialized inicializado - + terminated terminado - + unknown desconocido - + PC = 0x%1 LR = 0x%2 PC = 0x%1 LR = 0x%2 - + ideal ideal - + core %1 núcleo %1 - + processor = %1 procesador = %1 - + affinity mask = %1 máscara de afinidad = %1 - + thread id = %1 id de hilo = %1 - + priority = %1(current) / %2(normal) prioridad = %1(presente) / %2(normal) - + last running ticks = %1 últimos ticks consecutivos = %1 @@ -9473,7 +9998,7 @@ p, li { white-space: pre-wrap; } WaitTreeThreadList - + waited by thread esperado por el hilo @@ -9481,7 +10006,7 @@ p, li { white-space: pre-wrap; } WaitTreeWidget - + &Wait Tree &Árbol de espera diff --git a/dist/languages/fi.ts b/dist/languages/fi.ts index cd75043fcb..7b60ccfdda 100644 --- a/dist/languages/fi.ts +++ b/dist/languages/fi.ts @@ -17,12 +17,12 @@ - About eden + About Eden - <html><head/><body><p><span style=" font-size:28pt;">eden</span></p></body></html> + <html><head/><body><p><span style=" font-size:28pt;">Eden</span></p></body></html> @@ -38,8 +38,8 @@ p, li { white-space: pre-wrap; } hr { height: 1px; border-width: 0; } li.unchecked::marker { content: "\2610"; } li.checked::marker { content: "\2612"; } -</style></head><body style=" font-family:'Adwaita Sans'; font-size:11pt; font-weight:400; font-style:normal;"> -<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;">eden is an experimental open-source emulator for the Nintendo Switch licensed under GPLv3.0+ which is based on the yuzu emulator which ended development back in March 2024. <br /><br />This software should not be used to play games you have not legally obtained.</span></p></body></html> +</style></head><body style=" font-family:'Noto Sans'; font-size:9pt; font-weight:400; font-style:normal;"> +<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;">Eden is an experimental open-source emulator for the Nintendo Switch licensed under GPLv3.0+ which is based on the yuzu emulator which ended development back in March 2024. <br /><br />This software should not be used to play games you have not legally obtained.</span></p></body></html> @@ -76,32 +76,32 @@ p, li { white-space: pre-wrap; } CalibrationConfigurationDialog - + Communicating with the server... Otetaan yhteyttä palvelimeen... - + Cancel Peruuta - + Touch the top left corner <br>of your touchpad. Kosketa kosketuslevyn vasenta yläreunaa <br> - + Now touch the bottom right corner <br>of your touchpad. Kosketa nyt kosketuslevyn oikeaa alakulmaa <br> - + Configuration completed! Konfiguraatio suoritettu! - + OK OK @@ -451,276 +451,298 @@ This would ban both their forum username and their IP address. ConfigurationShared - + Amiibo editor - + Controller configuration - + Data erase - + Error - + Net connect - + Player select - + Software keyboard - + Mii Edit - + Online web - + Shop - + Photo viewer - + Offline web - + Login share - + Wifi web auth - + My page - + Output Engine: Äänimoottori - + Output Device: - + Input Device: - + Mute audio - + Volume: Äänenvoimakkuus: - + Mute audio when in background - + Multicore CPU Emulation Moni ydin prosessori emulaatio - + This option increases CPU emulation thread use from 1 to the Switch’s maximum of 4. This is mainly a debug option and shouldn’t be disabled. - + Memory Layout - + Increases the amount of emulated RAM from the stock 4GB of the retail Switch to the developer kit's 8/6GB. It’s doesn’t improve stability or performance and is intended to let big texture mods fit in emulated RAM. Enabling it will increase memory use. It is not recommended to enable unless a specific game with a texture mod needs it. - + Limit Speed Percent Rajoita nopeutta - + Controls the game's maximum rendering speed, but it’s up to each game if it runs faster or not. 200% for a 30 FPS game is 60 FPS, and for a 60 FPS game it will be 120 FPS. Disabling it means unlocking the framerate to the maximum your PC can reach. - + Synchronize Core Speed - + Synchronizes CPU core speed with the game's maximum rendering speed to boost FPS without affecting game speed (animations, physics, etc.). Compatibility varies by game; many (especially older ones) may not respond well. Can help reduce stuttering at lower framerates. - + Accuracy: Tarkkuus: - + This setting controls the accuracy of the emulated CPU. Don't change this unless you know what you are doing. - - + + Backend: - + Fast CPU Time - + Overclocks the emulated CPU to remove some FPS limiters. Weaker CPUs may see reduced performance, and certain games may behave improperly. Use Boost (1700MHz) to run at the Switch's highest native clock, or Fast (2000MHz) to run at 2x clock. - + + Custom CPU Ticks + + + + + Set a custom value of CPU ticks. Higher values can increase performance, but may also cause the game to freeze. A range of 77–21000 is recommended. + + + + + Enable Host MMU Emulation (fastmem) + + + + + This optimization speeds up memory accesses by the guest program. +Enabling it causes guest memory reads/writes to be done directly into memory and make use of Host's MMU. +Disabling this forces all memory accesses to use Software MMU Emulation. + + + + Unfuse FMA (improve performance on CPUs without FMA) Epävakaa FMA (parantaa CPU:n suorituskykyä ilman FMA:ta) - + This option improves speed by reducing accuracy of fused-multiply-add instructions on CPUs without native FMA support. - + Faster FRSQRTE and FRECPE Nopeampi FRSQRTE ja FRECPE - + This option improves the speed of some approximate floating-point functions by using less accurate native approximations. - + Faster ASIMD instructions (32 bits only) - + This option improves the speed of 32 bits ASIMD floating-point functions by running with incorrect rounding modes. - + Inaccurate NaN handling - + This option improves speed by removing NaN checking. Please note this also reduces accuracy of certain floating-point instructions. - + Disable address space checks - + This option improves speed by eliminating a safety check before every memory read/write in guest. Disabling it may allow a game to read/write the emulator's memory. - + Ignore global monitor - + This option improves speed by relying only on the semantics of cmpxchg to ensure safety of exclusive access instructions. Please note this may result in deadlocks and other race conditions. - + API: - + Switches between the available graphics APIs. Vulkan is recommended in most cases. - + Device: - + This setting selects the GPU to use with the Vulkan backend. - + Shader Backend: - + The shader backend to use for the OpenGL renderer. GLSL is the fastest in performance and the best in rendering accuracy. GLASM is a deprecated NVIDIA-only backend that offers much better shader building performance at the cost of FPS and rendering accuracy. @@ -728,86 +750,86 @@ SPIR-V compiles the fastest, but yields poor results on most GPU drivers. - + Resolution: - + Forces the game to render at a different resolution. Higher resolutions require much more VRAM and bandwidth. Options lower than 1X can cause rendering issues. - + Window Adapting Filter: - + FSR Sharpness: - + Determines how sharpened the image will look while using FSR’s dynamic contrast. - + Anti-Aliasing Method: - + The anti-aliasing method to use. SMAA offers the best quality. FXAA has a lower performance impact and can produce a better and more stable picture under very low resolutions. - + Fullscreen Mode: - + The method used to render the window in fullscreen. Borderless offers the best compatibility with the on-screen keyboard that some games request for input. Exclusive fullscreen may offer better performance and better Freesync/Gsync support. - + Aspect Ratio: - + Stretches the game to fit the specified aspect ratio. Switch games only support 16:9, so custom game mods are required to get other ratios. Also controls the aspect ratio of captured screenshots. - + Use disk pipeline cache - + Allows saving shaders to storage for faster loading on following game boots. Disabling it is only intended for debugging. - + Optimize SPIRV output shader - + Runs an additional optimization pass over generated SPIRV shaders. Will increase time required for shader compilation. May slightly improve performance. @@ -815,35 +837,35 @@ This feature is experimental. - + Use asynchronous GPU emulation - + Uses an extra CPU thread for rendering. This option should always remain enabled. - + NVDEC emulation: - + Specifies how videos should be decoded. It can either use the CPU or the GPU for decoding, or perform no decoding at all (black screen on videos). In most cases, GPU decoding provides the best performance. - + ASTC Decoding Method: - + This option controls how ASTC textures should be decoded. CPU: Use the CPU for decoding, slowest but safest method. GPU: Use the GPU's compute shaders to decode ASTC textures, recommended for most games and users. @@ -852,33 +874,44 @@ stuttering at the cost of rendering issues while the texture is being decoded. - + ASTC Recompression Method: - + Almost all desktop and laptop dedicated GPUs lack support for ASTC textures, forcing the emulator to decompress to an intermediate format any card supports, RGBA8. This option recompresses RGBA8 to either the BC1 or BC3 format, saving VRAM but negatively affecting image quality. - + VRAM Usage Mode: - - Selects whether the emulator should prefer to conserve memory or make maximum usage of available video memory for performance. Has no effect on integrated graphics. Aggressive mode may severely impact the performance of other applications such as recording software. + + Selects whether the emulator should prefer to conserve memory or make maximum usage of available video memory for performance. +Aggressive mode may severely impact the performance of other applications such as recording software. - + + Skip CPU Inner Invalidation + + + + + Skips certain CPU-side cache invalidations during memory updates, reducing CPU usage and improving it's performance. This may cause glitches or crashes on some games. + + + + VSync Mode: - + FIFO (VSync) does not drop frames or exhibit tearing but is limited by the screen refresh rate. FIFO Relaxed is similar to FIFO but allows tearing as it recovers from a slow down. Mailbox can have lower latency than FIFO and does not tear but may drop frames. @@ -886,1080 +919,1140 @@ Immediate (no synchronization) just presents whatever is available and can exhib - + + Sync Memory Operations + + + + + Ensures data consistency between compute and memory operations. +This option should fix issues in some games, but may also reduce performance in some cases. +Unreal Engine 4 games often see the most significant changes thereof. + + + + Enable asynchronous presentation (Vulkan only) - + Slightly improves performance by moving presentation to a separate CPU thread. - + Force maximum clocks (Vulkan only) - + Runs work in the background while waiting for graphics commands to keep the GPU from lowering its clock speed. - + Anisotropic Filtering: - + Controls the quality of texture rendering at oblique angles. It’s a light setting and safe to set at 16x on most GPUs. - - Accuracy Level: + + GPU Accuracy: - - GPU emulation accuracy. + + Controls the GPU emulation accuracy. Most games render fine with Normal, but High is still required for some. Particles tend to only render correctly with High accuracy. -Extreme should only be used for debugging. -This option can be changed while playing. -Some games may require booting on high to render properly. +Extreme should only be used as a last resort. - + + DMA Accuracy: + + + + + Controls the DMA precision accuracy. Safe precision can fix issues in some games, but it can also impact performance in some cases. +If unsure, leave this on Default. + + + + Use asynchronous shader building (Hack) - + Enables asynchronous shader compilation, which may reduce shader stutter. This feature is experimental. - + Fast GPU Time (Hack) - + Overclocks the emulated GPU to increase dynamic resolution and render distance. Use 128 for maximal performance and 512 for maximal graphics fidelity. - + Use Vulkan pipeline cache - + Enables GPU vendor-specific pipeline cache. This option can improve shader loading time significantly in cases where the Vulkan driver does not store pipeline cache files internally. - + Enable Compute Pipelines (Intel Vulkan Only) - + Enable compute pipelines, required by some games. This setting only exists for Intel proprietary drivers, and may crash if enabled. Compute pipelines are always enabled on all other drivers. - + Enable Reactive Flushing - + Uses reactive flushing instead of predictive flushing, allowing more accurate memory syncing. - + Sync to framerate of video playback - + Run the game at normal speed during video playback, even when the framerate is unlocked. - + Barrier feedback loops - + Improves rendering of transparency effects in specific games. - + + RAII + + + + + A method of automatic resource management in Vulkan that ensures proper release of resources when they are no longer needed, but may cause crashes in bundled games. + + + + Extended Dynamic State - - Enables the VkExtendedDynamicState* extensions. -Higher dynamic states will generally improve performance, but may cause issues on certain games or devices. + + Controls the number of features that can be used in Extended Dynamic State. +Higher numbers allow for more features and can increase performance, but may cause issues with some drivers and vendors. +The default value may vary depending on your system and hardware capabilities. +This value can be changed until stability and a better visual quality are achieved. - + Provoking Vertex - + Improves lighting and vertex handling in certain games. Only Vulkan 1.0+ devices support this extension. - + Descriptor Indexing - + Improves texture & buffer handling and the Maxwell translation layer. Some Vulkan 1.1+ and all 1.2+ devices support this extension. - + + Sample Shading + + + + + Allows the fragment shader to execute per sample in a multi-sampled fragment instead once per fragment. Improves graphics quality at the cost of some performance. +Higher values improve quality more but also reduce performance to a greater extent. + + + + RNG Seed RNG siemen - + Controls the seed of the random number generator. Mainly used for speedrunning purposes. - + Device Name - + The name of the emulated Switch. - + Custom RTC Date: - + This option allows to change the emulated clock of the Switch. Can be used to manipulate time in games. - + Language: - + Note: this can be overridden when region setting is auto-select Huomio: tämä voidaan yliajaa kun alueasetus on automaattisella valinnalla - + Region: - + The region of the emulated Switch. - + Time Zone: - + The time zone of the emulated Switch. - + Sound Output Mode: - + Console Mode: - + Selects if the console is emulated in Docked or Handheld mode. Games will change their resolution, details and supported controllers and depending on this setting. Setting to Handheld can help improve performance for low end systems. - + Prompt for user on game boot - - Ask to select a user profile on each boot, useful if multiple people use eden on the same PC. + + Ask to select a user profile on each boot, useful if multiple people use Eden on the same PC. - + Pause emulation when in background - - This setting pauses eden when focusing other windows. + + This setting pauses Eden when focusing other windows. - + Confirm before stopping emulation - + This setting overrides game prompts asking to confirm stopping the game. Enabling it bypasses such prompts and directly exits the emulation. - + Hide mouse on inactivity - + This setting hides the mouse after 2.5s of inactivity. - + Disable controller applet - + Forcibly disables the use of the controller applet by guests. When a guest attempts to open the controller applet, it is immediately closed. - + Check for updates - + Whether or not to check for updates upon startup. - + Enable Gamemode - + Custom frontend - + Real applet - + Never - + On Load - + Always - + CPU CPU (prosessori) - + GPU - + CPU Asynchronous - + Uncompressed (Best quality) - + BC1 (Low quality) - + BC3 (Medium quality) - + Conservative - + Aggressive - + OpenGL - + Vulkan - + Null - + GLSL - + GLASM (Assembly Shaders, NVIDIA Only) - + SPIR-V (Experimental, AMD/Mesa Only) - + Normal - + High - + Extreme - - Auto - - - - - Accurate - Tarkka - - - - Unsafe - Epävakaa - - - - Paranoid (disables most optimizations) - - - - - Dynarmic - - - - - NCE - - - - - Borderless Windowed - - - - - Exclusive Fullscreen - - - - - No Video Output - - - - - CPU Video Decoding - - - - - GPU Video Decoding (Default) - - - - - 0.25X (180p/270p) [EXPERIMENTAL] - - - - - 0.5X (360p/540p) [EXPERIMENTAL] - - - - - 0.75X (540p/810p) [EXPERIMENTAL] - - - - - 1X (720p/1080p) - - - - - 1.5X (1080p/1620p) [EXPERIMENTAL] - - - - - 2X (1440p/2160p) - - - - - 3X (2160p/3240p) - - - - - 4X (2880p/4320p) - - - - - 5X (3600p/5400p) - - - - - 6X (4320p/6480p) - - - - - 7X (5040p/7560p) - - - - - 8X (5760p/8640p) - - - - - Nearest Neighbor - - - - - Bilinear - - - - - Bicubic - - - - - Gaussian - - - - - ScaleForce - - - - - AMD FidelityFX™️ Super Resolution - - - - - Area - - - - - None - None - - - - FXAA - - - - - SMAA - - - - - Default (16:9) - - - - - Force 4:3 - - - - - Force 21:9 - - - - - Force 16:10 - - - - - Stretch to Window - - - - - Automatic - - - - + + Default - + + Unsafe (fast) + + + + + Safe (stable) + + + + + Auto + + + + + Accurate + Tarkka + + + + Unsafe + Epävakaa + + + + Paranoid (disables most optimizations) + + + + + Dynarmic + + + + + NCE + + + + + Borderless Windowed + + + + + Exclusive Fullscreen + + + + + No Video Output + + + + + CPU Video Decoding + + + + + GPU Video Decoding (Default) + + + + + 0.25X (180p/270p) [EXPERIMENTAL] + + + + + 0.5X (360p/540p) [EXPERIMENTAL] + + + + + 0.75X (540p/810p) [EXPERIMENTAL] + + + + + 1X (720p/1080p) + + + + + 1.5X (1080p/1620p) [EXPERIMENTAL] + + + + + 2X (1440p/2160p) + + + + + 3X (2160p/3240p) + + + + + 4X (2880p/4320p) + + + + + 5X (3600p/5400p) + + + + + 6X (4320p/6480p) + + + + + 7X (5040p/7560p) + + + + + 8X (5760p/8640p) + + + + + Nearest Neighbor + + + + + Bilinear + + + + + Bicubic + + + + + Gaussian + + + + + ScaleForce + + + + + AMD FidelityFX™️ Super Resolution + + + + + Area + + + + + None + None + + + + FXAA + + + + + SMAA + + + + + Default (16:9) + + + + + Force 4:3 + + + + + Force 21:9 + + + + + Force 16:10 + + + + + Stretch to Window + + + + + Automatic + + + + 2x - + 4x - + 8x - + 16x - + Japanese (日本語) - + American English - + French (français) - + German (Deutsch) - + Italian (italiano) - + Spanish (español) - + Chinese - + Korean (한국어) - + Dutch (Nederlands) - + Portuguese (português) - + Russian (Русский) - + Taiwanese - + British English - + Canadian French - + Latin American Spanish - + Simplified Chinese - + Traditional Chinese (正體中文) - + Brazilian Portuguese (português do Brasil) - - + + Serbian (српски) + + + + + Japan - + USA - + Europe - + Australia - + China - + Korea - + Taiwan - + Auto (%1) Auto select time zone - + Default (%1) Default time zone - + CET - + CST6CDT - + Cuba - + EET - + Egypt - + Eire - + EST - + EST5EDT - + GB - + GB-Eire - + GMT - + GMT+0 - + GMT-0 - + GMT0 - + Greenwich - + Hongkong - + HST - + Iceland - + Iran - + Israel - + Jamaica - + Kwajalein - + Libya - + MET - + MST - + MST7MDT - + Navajo - + NZ - + NZ-CHAT - + Poland - + Portugal - + PRC - + PST8PDT - + ROC - + ROK - + Singapore - + Turkey - + UCT - + Universal - + UTC - + W-SU - + WET - + Zulu - + Mono Mono - + Stereo Stereo - + Surround Surround - + 4GB DRAM (Default) - + 6GB DRAM (Unsafe) - + 8GB DRAM - + 10GB DRAM (Unsafe) - + 12GB DRAM (Unsafe) - + Docked - + Handheld Käsikonsolimoodi - + Boost (1700MHz) - + Fast (2000MHz) - + Always ask (Default) - + Only if game specifies not to stop - + Never ask - + Low (128) - + Medium (256) - + High (512) - + % % @@ -2334,17 +2427,17 @@ Ota sisäiset sivutaulukot käyttöön Lokitiedosto - + Global Log Filter Lokitiedoston filtteri - + Show Log in Console - + Open Log Location Avaa lokitiedoston sijainti @@ -2364,12 +2457,12 @@ Ota sisäiset sivutaulukot käyttöön Portti: - + When checked, the max size of the log increases from 100 MB to 1 GB - + Enable Extended Logging** @@ -2430,7 +2523,7 @@ Ota sisäiset sivutaulukot käyttöön - **This will be reset automatically when eden closes. + **This will be reset automatically when Eden closes. @@ -2569,7 +2662,7 @@ Ota sisäiset sivutaulukot käyttöön - + Web applet not compiled @@ -2618,94 +2711,94 @@ Ota sisäiset sivutaulukot käyttöön yuzu asetukset - + Applets - - + + Audio Ääni - - + + CPU CPU (prosessori) - + Debug Debuggaus - + Filesystem Tietojärjestelmä - - + + General Yleiset - - + + Graphics Grafiikka - + GraphicsAdvanced Edistyneet grafiikka-asetukset - + GraphicsExtensions - + Hotkeys Pikanäppäimet - - + + Controls Ohjainmääritykset - + Profiles Profiilit - + Network - - + + System Järjestelmä - + Game List Pelilista - + Web Web - eden Configuration + Eden Configuration @@ -2807,51 +2900,37 @@ Ota sisäiset sivutaulukot käyttöön - - - Reset Metadata Cache - + Select Emulated NAND Directory... - + Select Emulated SD Directory... - + Select Gamecard Path... - + Select Dump Directory... - + Select Mod Load Directory... - - The metadata cache is already empty. - - - - The operation completed successfully. - Operaatio suoritettiin onnistuneesti. - - - - The metadata cache couldn't be deleted. It might be in use or non-existent. - + Operaatio suoritettiin onnistuneesti. @@ -2898,12 +2977,12 @@ Ota sisäiset sivutaulukot käyttöön yuzu - - eden + + Eden - + This reset all settings and remove all per-game configurations. This will not delete game directories, profiles, or input profiles. Proceed? @@ -2940,33 +3019,33 @@ Ota sisäiset sivutaulukot käyttöön Taustan väri: - + % FSR sharpening percentage (e.g. 50%) % - + Off - + VSync Off - + Recommended - + On - + VSync On @@ -3003,14 +3082,18 @@ Ota sisäiset sivutaulukot käyttöön - Vulkan Extension Settings + Vulkan Extensions Settings - - While it's recommended to use state 3, some games may perform better on lower states. Setting to 0 (disabled) may also break games. -If your GPU is older (i.e. RX570/580 or older), it may not support these features. If this is the case, set the slider to 0 and uncheck all boxes. -These settings are experimental, and may cause black screens. If your games fail to boot or are stuck on a black screen, change these settings around. + + % + Sample Shading percentage (e.g. 50%) + % + + + + Extended Dynamic State is disabled on macOS due to MoltenVK compatibility issues that cause black screens. @@ -3042,75 +3125,75 @@ These settings are experimental, and may cause black screens. If your games fail Palauta oletukset - + Action Toiminto - + Hotkey Pikanäppäin - + Controller Hotkey - - - + + + Conflicting Key Sequence - - + + The entered key sequence is already assigned to: %1 - + [waiting] - + Invalid - + Invalid hotkey settings - + An error occurred. Please report this issue on github. - + Restore Default Palauta oletus - + Clear Tyhjennä - + Conflicting Button Sequence - + The default button sequence is already assigned to: %1 - + The default key sequence is already assigned to: %1 @@ -3426,13 +3509,6 @@ These settings are experimental, and may cause black screens. If your games fail Emulate Analog with Keyboard Input - - - - - Requires restarting eden - - Enable direct JoyCon driver @@ -3458,6 +3534,13 @@ These settings are experimental, and may cause black screens. If your games fail Enable XInput 8 player support (disables web applet) + + + + + Requires restarting Eden + + Enable UDP controllers (not needed for motion) @@ -3585,7 +3668,7 @@ These settings are experimental, and may cause black screens. If your games fail - + Left Stick Vasen joystick @@ -3689,14 +3772,14 @@ These settings are experimental, and may cause black screens. If your games fail - + L - + ZL @@ -3715,7 +3798,7 @@ These settings are experimental, and may cause black screens. If your games fail - + Plus @@ -3728,15 +3811,15 @@ These settings are experimental, and may cause black screens. If your games fail - - + + R - + ZR @@ -3797,246 +3880,246 @@ These settings are experimental, and may cause black screens. If your games fail - + Right Stick Oikea joystick - - - - + + + + Clear Tyhjennä - - - - - + + + + + [not set] [ei asetettu] - - + + Toggle button - - - + + + Invert button - + Turbo button - - + + Invert axis - - - + + + Set threshold - - + + Choose a value between 0% and 100% - + Toggle axis - + Set gyro threshold - + Calibrate sensor - + Map Analog Stick - + After pressing OK, first move your joystick horizontally, and then vertically. To invert the axes, first move your joystick vertically, and then horizontally. - + Center axis - - + + Deadzone: %1% - - + + Modifier Range: %1% - - + + Pro Controller - + Dual Joycons - + Left Joycon - + Right Joycon - + Handheld Käsikonsolimoodi - + GameCube Controller - + Poke Ball Plus - + NES Controller - + SNES Controller - + N64 Controller - + Sega Genesis - + Start / Pause - + Z - + Control Stick - + C-Stick - + Shake! - + [waiting] - + New Profile - + Enter a profile name: - - + + Create Input Profile - + The given profile name is not valid! - + Failed to create the input profile "%1" - + Delete Input Profile - + Failed to delete the input profile "%1" - + Load Input Profile - + Failed to load the input profile "%1" - + Save Input Profile - + Failed to save the input profile "%1" @@ -4093,7 +4176,7 @@ To invert the axes, first move your joystick vertically, and then horizontally.< - + Configure Säädä @@ -4129,7 +4212,7 @@ To invert the axes, first move your joystick vertically, and then horizontally.< - + Test @@ -4144,7 +4227,7 @@ To invert the axes, first move your joystick vertically, and then horizontally.< - + %1:%2 @@ -4153,77 +4236,77 @@ To invert the axes, first move your joystick vertically, and then horizontally.< yuzu - + <a href='https://eden-emulator.github.io/wiki/using-a-controller-or-android-phone-for-motion-or-touch-input'><span style="text-decoration: underline; color:#039be5;">Learn More</span></a> - + Port number has invalid characters - - - - - - - eden + + + + + + + Eden - + Port has to be in range 0 and 65353 - + IP address is not valid - + This UDP server already exists - + Unable to add more than 8 servers - + 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. - + UDP Test or calibration configuration is in progress.<br>Please wait for them to finish. @@ -4349,7 +4432,12 @@ Current values are %1% and %2% respectively. - + + Enable Airplane Mode + + + + None None @@ -4407,7 +4495,7 @@ Current values are %1% and %2% respectively. - + Add-Ons Lisäosat @@ -4416,47 +4504,47 @@ Current values are %1% and %2% respectively. Yleiset - + System Järjestelmä - + CPU CPU (prosessori) - + Graphics Grafiikat - + Adv. Graphics - + GPU Extensions - + Audio Ääni - + Input Profiles - + Linux - + Properties Ominaisuudet @@ -4474,12 +4562,12 @@ Current values are %1% and %2% respectively. Lisäosat - + Patch Name Päivityksen nimi - + Version Versio @@ -4517,27 +4605,32 @@ Current values are %1% and %2% respectively. Aseta kuva - + + Select Avatar + + + + Add Lisää - + Rename Nimeä uudelleen - + Remove Poista - + Profile management is available only when game is not running. - + %1 %2 %1 is the profile username, %2 is the formatted UUID (e.g. 00112233-4455-6677-8899-AABBCCDDEEFF)) @@ -4545,22 +4638,22 @@ Current values are %1% and %2% respectively. %2 - + Enter Username Syötä nimimerkki - + Users Käyttäjät - + Enter a username for the new user: Syötä nimimerkki uudelle käyttäjälle: - + Enter a new username: Syötä uusi nimikerkki @@ -4573,80 +4666,161 @@ Current values are %1% and %2% respectively. Olet poistamassa käyttäjän nimimerkillä "%1". Oletko varma? - + Select User Image Valitse käyttäjän kuva - JPEG Images (*.jpg *.jpeg) - JPEG kuvat (*.jpg *.jpeg) + JPEG kuvat (*.jpg *.jpeg) - + Error deleting image Virhe poistaessa kuvaa - + Error occurred attempting to overwrite previous image at: %1. Edellistä kuvaa korvatessa tapahtui virhe %1. - + Error deleting file Virhe poistaessa tiedostoa - + Unable to delete existing file: %1. Olemassa olevan tiedoston %1 ei onnistu - + Error creating user image directory Virhe luodessa käyttäjäkuvakansiota - + Unable to create directory %1 for storing user images. Kansiota %1 käyttäjäkuvien tallentamiseksi ei voitu luoda - - Error copying user image - Virhe kopioidessa käyttäjäkuvaa - - - - Unable to copy image from %1 to %2 - Kuvaa ei voitu kopioida sijainnista %1 sijaintiin %2 - - - - Error resizing user image + + Error saving user image - - Unable to resize image + + Unable to save image to file + + + + + Image Formats (*.jpg *.jpeg *.png *.bmp) + + + + + No firmware available + + + + + Please install the firmware to use firmware avatars. + + + + + + Error loading archive + + + + + Archive is not available. Please install/reinstall firmware. + + + + + Archive does not contain romfs. It is probably corrupt. + + + + + Error extracting archive + + + + + Archive could not be extracted. It is probably corrupt. + + + + + Error finding image directory + + + + + Failed to find image directory in the archive. + + + + + No images found + + + + + No avatar images were found in the archive. + + + + Error copying user image + Virhe kopioidessa käyttäjäkuvaa + + + Unable to copy image from %1 to %2 + Kuvaa ei voitu kopioida sijainnista %1 sijaintiin %2 + + + + ConfigureProfileManagerAvatarDialog + + + Select + + + + + Cancel + Peruuta + + + + Background Color + + + + + Select Firmware Avatar ConfigureProfileManagerDeleteDialog - + Delete this user? All of the user's save data will be deleted. - + Confirm Delete Vahvista poistaminen - + Name: %1 UUID: %2 @@ -4698,7 +4872,7 @@ UUID: %2 - + Enable @@ -4709,7 +4883,7 @@ UUID: %2 - + Not connected @@ -4719,63 +4893,63 @@ UUID: %2 Palauta oletukset - + Clear Tyhjennä - + [not set] [ei asetettu] - + Invert axis - - + + Deadzone: %1% - + Error enabling ring input - + Direct Joycon driver is not enabled - + Configuring - + The current mapped device doesn't support the ring controller - + The current mapped device doesn't have a ring attached - + The current mapped device is not connected - + Unexpected driver result %1 - + [waiting] @@ -4873,7 +5047,7 @@ UUID: %2 - <html><head/><body><p>Reads controller input from scripts in the same format as TAS-nx scripts.<br/>For a more detailed explanation, please consult the <a href="https://eden-emulator.github.io/help/feature/tas/"><span style=" text-decoration: underline; color:#039be5;">help page</span></a> on the eden website.</p></body></html> + <html><head/><body><p>Reads controller input from scripts in the same format as TAS-nx scripts.<br/>For a more detailed explanation, please consult the <a href="https://eden-emulator.github.io/help/feature/tas/"><span style=" text-decoration: underline; color:#039be5;">help page</span></a> on the Eden website.</p></body></html> @@ -4925,12 +5099,12 @@ UUID: %2 ConfigureTasDialog - + TAS Configuration - + Select TAS Load Directory... @@ -5039,7 +5213,7 @@ Drag points to change position, or double-click table cells to edit values. - Warning: The settings in this page affect the inner workings of eden's emulated touchscreen. Changing them may result in undesirable behavior, such as the touchscreen partially or not working. You should only use this page if you know what you are doing. + Warning: The settings in this page affect the inner workings of Eden's emulated touchscreen. Changing them may result in undesirable behavior, such as the touchscreen partially or not working. You should only use this page if you know what you are doing. @@ -5359,6 +5533,16 @@ Drag points to change position, or double-click table cells to edit values.Web Web + + + Eden Web Service + + + + + Generate + + yuzu Web Service yuzu Web palvelu @@ -5368,42 +5552,29 @@ Drag points to change position, or double-click table cells to edit values.Antamalla nimimerkkisi ja tokenin, annat yuzu:lle luvan kerätä muita tietoja, jotka saattavat sisältää käyttäjän tunnistetietoja. - - eden Web Service - - - - - By providing your username and token, you agree to allow eden to collect additional usage data, which may include user identifying information. - - - - Verify - Varmista + Varmista - Sign up - Rekisteröidy + Rekisteröidy - + Token: Tokeni: - + Username: Nimimerkki: - What is my token? - Mikä on tokeni? + Mikä on tokeni? - + Web Service configuration can only be changed when a public room isn't being hosted. @@ -5428,12 +5599,12 @@ Drag points to change position, or double-click table cells to edit values.Luo uudelleen - + Discord Presence Discord näkyvyys - + Show Current Game in your Discord Status Näytä tämänhetkinen peli Discordin tilanäkymässä @@ -5442,30 +5613,12 @@ Drag points to change position, or double-click table cells to edit values.<a href='https://yuzu-emu.org/help/feature/telemetry/'><span style="text-decoration: underline; color:#039be5;">Lue lisää</span></a> - <a href='https://profile.yuzu-emu.org/'><span style="text-decoration: underline; color:#039be5;">Sign up</span></a> - <a href='https://profile.yuzu-emu.org/'><span style="text-decoration: underline; color:#039be5;">Rekisteröidy</span></a> + <a href='https://profile.yuzu-emu.org/'><span style="text-decoration: underline; color:#039be5;">Rekisteröidy</span></a> - - <a href='https://evilperson1337.notion.site/Hosting-a-Room-Inside-of-Eden-20457c2edaf680108abac6215a79acdb'><span style="text-decoration: underline; color:#039be5;">What is my token?</span></a> - - - - - Unverified, please click Verify before saving configuration - Tooltip - - - - Warning - Varoitus - - - - Verification is currently nonfunctional, instead generate a random 48-character string with only lowercase a-z. - + Varoitus <a href='https://yuzu-emu.org/wiki/yuzu-web-service/'><span style="text-decoration: underline; color:#039be5;">What is my token?</span></a> @@ -5499,20 +5652,67 @@ Drag points to change position, or double-click table cells to edit values.Verification failed. Check that you have entered your token correctly, and that your internet connection is working. Vahvistus epäonnistui. Tarkista, että olet syöttänyt tunnuksesi oikein ja nettiyhteytesi toimii. + + + + All Good + Tooltip + + + + + Must be between 4-20 characters + Tooltip + + + + + Must be 48 characters, and lowercase a-z + Tooltip + + ControllerDialog - + Controller P1 - + &Controller P1 + + DepsDialog + + + Eden Dependencies + + + + + <html><head/><body><p><span style=" font-size:28pt;">Eden Dependencies</span></p></body></html> + + + + + <html><head/><body><p>The projects that make Eden possible</p></body></html> + + + + + Dependency + + + + + Version + Versio + + DirectConnect @@ -5618,7 +5818,12 @@ Drag points to change position, or double-click table cells to edit values. - Creating a room failed. Please retry. Restarting eden might be necessary. + Creating a room failed. Please retry. Restarting Eden might be necessary. + + + + + Version mismatch! Please update to the latest version of Eden. If the problem persists, contact the room host and ask them to update the server. @@ -5626,11 +5831,6 @@ Drag points to change position, or double-click table cells to edit values.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 eden. If the problem persists, contact the room host and ask them to update the server. - - Incorrect password. @@ -5690,44 +5890,44 @@ Please go to Configure -> System -> Network and make a selection. Telemetria - + Loading Web Applet... Ladataan Web-applettia... - - + + Disable Web Applet - + Disabling the web applet can lead to undefined behavior and should only be used with Super Mario 3D All-Stars. Are you sure you want to disable the web applet? (This can be re-enabled in the Debug settings.) - + The amount of shaders currently being built Tällä hetkellä ladattujen shadereiden määrä - + The current selected resolution scaling multiplier. - + Current emulation speed. Values higher or lower than 100% indicate emulation is running faster or slower than a Switch. Tämänhetkinen emulointinopeus. Arvot yli tai alle 100% kertovat emuloinnin tapahtuvan nopeammin tai hitaammin kuin Switchillä: - + How many frames per second the game is currently displaying. This will vary from game to game and scene to scene. Kuinka monta kuvaruutua sekunnissa peli tällä hetkellä näyttää. Tämä vaihtelee pelistä ja pelikohtauksesta toiseen. - + Time taken to emulate a Switch frame, not counting framelimiting or v-sync. For full-speed emulation this should be at most 16.67 ms. Aika, joka kuluu yhden kuvaruudun emulointiin huomioimatta päivitysnopeuden rajoituksia tai v-synciä. Täysnopeuksista emulointia varten tämä saa olla enintään 16,67 ms. @@ -5744,24 +5944,23 @@ Please go to Configure -> System -> Network and make a selection. OPENGL - + &Clear Recent Files - + &Continue - + &Pause &Pysäytä - Warning Outdated Game Format - Varoitus vanhentunut peliformaatti + Varoitus vanhentunut peliformaatti You are using the deconstructed ROM directory format for this game, which is an outdated format that has been superseded by others such as NCA, NAX, XCI, or NSP. Deconstructed ROM directories lack icons, metadata, and update support.<br><br>For an explanation of the various Switch formats yuzu supports, <a href='https://yuzu-emu.org/wiki/overview-of-switch-game-formats'>check out our wiki</a>. This message will not be shown again. @@ -5769,78 +5968,72 @@ Please go to Configure -> System -> Network and make a selection. Tätä viestiä ei näytetä uudelleen. - - + + Error while loading ROM! Virhe ladatessa ROMia! - + The ROM format is not supported. ROM-formaattia ei tueta. - + An error occurred initializing the video core. Videoydintä käynnistäessä tapahtui virhe - + Error while loading ROM! %1 %1 signifies a numeric error code. - + An unknown error occurred. Please see the log for more details. Tuntematon virhe. Tarkista lokitiedosto lisätietoja varten. - + (64-bit) - + (32-bit) - + %1 %2 %1 is the title name. %2 indicates if the title is 64-bit or 32-bit - + Save Data Tallennus - + Mod Data Modin data - + Error Opening %1 Folder Virhe avatessa kansiota %1 - - + + Folder does not exist! Kansiota ei ole olemassa! - Error Opening Transferable Shader Cache - Virhe avattaessa siirrettävää Shader Cachea - - - - Failed to create the shader cache directory for this title. - + Virhe avattaessa siirrettävää Shader Cachea Contents @@ -5855,7 +6048,7 @@ Tätä viestiä ei näytetä uudelleen. DLC - + Remove Entry Poista merkintä @@ -5864,349 +6057,245 @@ Tätä viestiä ei näytetä uudelleen. Poistataanko asennettu peli %1? - - - - - - Successfully Removed - Onnistuneesti poistettu + Onnistuneesti poistettu - Successfully removed the installed base game. - Asennettu pohjapeli poistettiin onnistuneesti. + Asennettu pohjapeli poistettiin onnistuneesti. Error Removing %1 Virhe poistaessa %1 - The base game is not installed in the NAND and cannot be removed. - Pohjapeliä ei ole asennettu NAND-muistiin eikä sitä voida poistaa. + Pohjapeliä ei ole asennettu NAND-muistiin eikä sitä voida poistaa. - Successfully removed the installed update. - Asennettu päivitys poistettiin onnistuneesti. + Asennettu päivitys poistettiin onnistuneesti. - There is no update installed for this title. - Tähän sovellukseen ei ole asennettu päivitystä. + Tähän sovellukseen ei ole asennettu päivitystä. - There are no DLC installed for this title. - Tähän sovellukseen ei ole asennettu DLC:tä. + Tähän sovellukseen ei ole asennettu DLC:tä. - Successfully removed %1 installed DLC. - Asennettu DLC poistettu onnistuneesti %1  + Asennettu DLC poistettu onnistuneesti %1  - + Delete OpenGL Transferable Shader Cache? - + Delete Vulkan Transferable Shader Cache? - + Delete All Transferable Shader Caches? - + Remove Custom Game Configuration? Poistataanko pelin mukautettu määritys? - + Remove Cache Storage? - + Remove File Poista tiedosto - + Remove Play Time Data - + Reset play time? - - Error Removing Transferable Shader Cache - Virhe poistettaessa siirrettävää Shader Cachea + Virhe poistettaessa siirrettävää Shader Cachea - - A shader cache for this title does not exist. - Shader cachea tälle sovellukselle ei ole olemassa. + Shader cachea tälle sovellukselle ei ole olemassa. - Successfully removed the transferable shader cache. - Siirrettävä Shadet Cache poistettiin onnistuneesti. + Siirrettävä Shadet Cache poistettiin onnistuneesti. - Failed to remove the transferable shader cache. - Siirrettävän Shader Cachen poisto epäonnistui. + Siirrettävän Shader Cachen poisto epäonnistui. - - Error Removing Vulkan Driver Pipeline Cache - - - - - Failed to remove the driver pipeline cache. - - - - - - Error Removing Transferable Shader Caches - - - - - Successfully removed the transferable shader caches. - - - - - Failed to remove the transferable shader cache directory. - - - - - Error Removing Custom Configuration - Virhe poistaessa mukautettua määritystä. + Virhe poistaessa mukautettua määritystä. - A custom configuration for this title does not exist. - Mukautettua määritystä tälle sovellukselle ei ole olemassa. + Mukautettua määritystä tälle sovellukselle ei ole olemassa. - Successfully removed the custom game configuration. - Pelin mukautettu määritys poistettiin onnistuneesti. + Pelin mukautettu määritys poistettiin onnistuneesti. - Failed to remove the custom game configuration. - Pelin mukautetun määrityksen poistaminen epäonnistui. + Pelin mukautetun määrityksen poistaminen epäonnistui. - - + + RomFS Extraction Failed! RomFS purkaminen epäonnistui - + There was an error copying the RomFS files or the user cancelled the operation. RomFS tiedostoja kopioidessa tapahtui virhe, tai käyttäjä perui operaation. - + Full Täysi - + Skeleton Luuranko - + Select RomFS Dump Mode Valitse RomFS dumppausmoodi - + Please select the how you would like the RomFS dumped.<br>Full will copy all of the files into the new directory while <br>skeleton will only create the directory structure. Valitse kuinka haluat dumpata RomFS:n. <br>Täysi kopioi kaikki tiedostot uuteen kansioon kun taas <br>luuranko luo ainoastaan kansiorakenteen. - + There is not enough free space at %1 to extract the RomFS. Please free up space or select a different dump directory at Emulation > Configure > System > Filesystem > Dump Root - + Extracting RomFS... Puretaan RomFS:ää - - - - - + + Cancel Peruuta - + RomFS Extraction Succeeded! RomFs purettiin onnistuneesti! - - - + The operation completed successfully. Operaatio suoritettiin onnistuneesti. - - Integrity verification couldn't be performed! + + Warning: Outdated Game Format - - File contents were not checked for validity. + + You are using the deconstructed ROM directory format for this game, which is an outdated format that has been superseded by others such as NCA, NAX, XCI, or NSP. Deconstructed ROM directories lack icons, metadata, and update support.<br><br>For an explanation of the various Switch formats Eden supports, <a href='https://eden-emulator.github.io/wiki/overview-of-switch-game-formats'>check out our wiki</a>. This message will not be shown again. - - - Verifying integrity... + + Eden has encountered an error while running the video core. This is usually caused by outdated GPU drivers, including integrated ones. Please see the log for more details. For more information on accessing the log, please see the following page: <a href='https://yuzu-mirror.github.io/help/reference/log-files/'>How to Upload the Log File</a>. - - - Integrity verification succeeded! + + %1<br>Please redump your files or ask on Discord/Revolt for help. + %1 signifies an error string. - - - Integrity verification failed! - - - - - File contents may be corrupt. - - - - - - - - Create Shortcut - - - - - Do you want to launch the game in fullscreen? - - - - - Successfully created a shortcut to %1 - - - - - This will create a shortcut to the current AppImage. This may not work well if you update. Continue? - - - - - Failed to create a shortcut to %1 - - - - - Create Icon - - - - - Cannot create icon file. Path "%1" does not exist and cannot be created. - - - - + Error Opening %1 Virhe avatessa %1 - + Select Directory Valitse kansio - + Properties Ominaisuudet - + The game properties could not be loaded. Pelin asetuksia ei saatu ladattua. - + Switch Executable (%1);;All Files (*.*) %1 is an identifier for the Switch executable file extensions. Switch tiedosto (%1);;Kaikki tiedostot (*.*) - + Load File Lataa tiedosto - + Open Extracted ROM Directory Avaa puretun ROMin kansio - + Invalid Directory Selected Virheellinen kansio valittu - + The directory you have selected does not contain a 'main' file. Valitsemasi kansio ei sisällä "main"-tiedostoa. - + Installable Switch File (*.nca *.nsp *.xci);;Nintendo Content Archive (*.nca);;Nintendo Submission Package (*.nsp);;NX Cartridge Image (*.xci) Asennettava Switch tiedosto (*.nca *.nsp *.xci);;Nintendo Content Archive (*.nca);;Nintendo Submissions Package (*.nsp);;NX Cartridge Image (*.xci) - + Install Files Asenna tiedostoja - + %n file(s) remaining @@ -6214,24 +6303,24 @@ Tätä viestiä ei näytetä uudelleen. - + Installing file "%1"... Asennetaan tiedostoa "%1"... - - + + Install Results Asennustulokset - + To avoid possible conflicts, we discourage users from installing base games to the NAND. Please, only use this feature to install updates and DLC. - + %n file(s) were newly installed @@ -6240,7 +6329,7 @@ Please, only use this feature to install updates and DLC. - + %n file(s) were overwritten @@ -6249,7 +6338,7 @@ Please, only use this feature to install updates and DLC. - + %n file(s) failed to install @@ -6258,531 +6347,439 @@ Please, only use this feature to install updates and DLC. - + System Application Järjestelmäohjelma - + System Archive Järjestelmätiedosto - + System Application Update Järjestelmäohjelman päivitys - + Firmware Package (Type A) Firmware-paketti (A tyyppi) - + Firmware Package (Type B) Firmware-paketti (B tyyppi) - + Game Peli - + Game Update Pelin päivitys - + Game DLC Pelin DLC - + Delta Title Delta nimike - + Select NCA Install Type... Valitse NCA asennustyyppi... - + Please select the type of title you would like to install this NCA as: (In most instances, the default 'Game' is fine.) Valitse asennettavan NCA-nimikkeen tyyppi: (Useimmissa tapauksissa oletustyyppi "Peli" toimii oikein) - + Failed to Install Asennus epäonnistui - + The title type you selected for the NCA is invalid. Valitsemasi nimiketyyppi on virheellinen - + File not found Tiedostoa ei löytynyt - + File "%1" not found Tiedostoa "%1" ei löytynyt - + OK OK - - + + Hardware requirements not met - - + + Your system does not meet the recommended hardware requirements. Compatibility reporting has been disabled. - + Missing yuzu Account yuzu-tili puuttuu - + + In order to submit a game compatibility test case, you must set up your web token and username.<br><br/>To link your eden account, go to Emulation &gt; Configuration &gt; Web. + + + + The selected file is not a valid amiibo - + The selected file is already on use - + An unknown error occurred - - - Verification failed for the following files: - -%1 + + + Install decryption keys and restart Eden before attempting to install firmware. - + + Select Dumped Firmware ZIP + + + + + Zipped Archives (*.zip) + + + + + Firmware cleanup failed + + + + + Failed to clean up extracted firmware cache. +Check write permissions in the system temp directory and try again. +OS reported error: %1 + + + + + Please install firmware to use the Album applet. + + + + + Please install firmware to use the Cabinet applet. + + + + + Please install firmware to use the Mii editor. + + + + + Please install firmware to use the Controller Menu. + + + + + Please install firmware to use the Home Menu. + + + + + Firmware Corrupted + + + + + Firmware Too New + + + + + +Continue anyways? + + + + + Don't show again + + + + + Please install firmware to use Starter. + + + + + Are you sure you want to close Eden? + + + + + + + Eden + + + + + The currently running application has requested Eden to not exit. + +Would you like to bypass this and exit anyway? + + + + + Keys not installed - - Install decryption keys and restart eden before attempting to install firmware. - - - - + Select Dumped Firmware Source Location - - Installing Firmware... - - - - - - - - Firmware install failed - - - - - Unable to locate potential firmware NCA files - - - - - Failed to delete one or more firmware file. - - - - - Firmware installation cancelled, firmware may be in bad state, restart eden or re-install firmware. - - - - - One or more firmware files failed to copy into NAND. - - - - - Firmware integrity verification failed! - - - - - Select Dumped Keys Location - - - - - - - Decryption Keys install failed - - - - - prod.keys is a required decryption key file. - - - - - One or more keys failed to copy. - - - - - Decryption Keys install succeeded - - - - - Decryption Keys were successfully installed - - - - - Decryption Keys failed to initialize. Check that your dumping tools are up to date and re-dump keys. - - - - - - - - - - + + + + + + No firmware available - - Please install the firmware to use the Album applet. - - - - + Album Applet - + Album applet is not available. Please reinstall firmware. - - Please install the firmware to use the Cabinet applet. - - - - + Cabinet Applet - + Cabinet applet is not available. Please reinstall firmware. - - Please install the firmware to use the Mii editor. - - - - + Mii Edit Applet - + Mii editor is not available. Please reinstall firmware. - - Please install the firmware to use the Controller Menu. - - - - + Controller Applet - + Controller Menu is not available. Please reinstall firmware. - - Please install the firmware to use the Home Menu. - - - - - + Home Menu Applet - - + Home Menu is not available. Please reinstall firmware. - - Please install the firmware to use Starter. - - - - + Starter Applet - + Starter is not available. Please reinstall firmware. - - Please install firmware to use the home menu. - - - - + %1 %2 - + VOLUME: MUTE - + VOLUME: %1% Volume percentage (e.g. 50%) - + Encryption keys are missing. - - - Are you sure you want to close eden? - - - - - - - eden - - - - - The currently running application has requested eden to not exit. - -Would you like to bypass this and exit anyway? - - In order to submit a game compatibility test case, you must link your yuzu account.<br><br/>To link your yuzu account, go to Emulation &gt; Configuration &gt; Web. Lähettääksesi pelin toimivuusraportin sinun tulee yhdistää yuzu-tilisi. <br><br/> Liittääksesi yuzu-tilin valitse Emulaatio &gt; Asetukset &gt; Web. - + Error opening URL Virhe avatessa URL-osoitetta - + Unable to open the URL "%1". URL-osoitetta "%1". ei voitu avata - + TAS Recording - + Overwrite file of player 1? - + Invalid config detected - + Handheld controller can't be used on docked mode. Pro controller will be selected. - + Error - - + + The current game is not looking for amiibos - - + + Amiibo - + Broken Vulkan Installation Detected - + Vulkan initialization failed during boot.<br><br>Click <a href='https://eden-emulator.github.io/wiki/faq/#yuzu-starts-with-the-error-broken-vulkan-installation-detected'>here for instructions to fix the issue</a>. - + Running a game TRANSLATORS: This string is shown to the user to explain why yuzu needs to prevent the computer from sleeping - + Unmute - + Mute - + Reset Volume - - Game Updates Warning - - - - - The game you are trying to launch is known to have performance or booting issues when updates are applied. Please try increasing the memory layout to 6GB or 8GB if any issues occur.<br><br>Press "OK" to continue launching, or "Cancel" to cancel the launch. - - - - - Don't show again for this game - - - - - You are using the deconstructed ROM directory format for this game, which is an outdated format that has been superseded by others such as NCA, NAX, XCI, or NSP. Deconstructed ROM directories lack icons, metadata, and update support.<br><br>For an explanation of the various Switch formats eden supports, <a href='https://eden-emulator.github.io/wiki/overview-of-switch-game-formats'>check out our wiki</a>. This message will not be shown again. - - - - - eden has encountered an error while running the video core. This is usually caused by outdated GPU drivers, including integrated ones. Please see the log for more details. For more information on accessing the log, please see the following page: <a href='https://eden-emulator.github.io/help/reference/log-files/'>How to Upload the Log File</a>. - - - - - %1<br>Please redump your files or ask on Discord for help. - %1 signifies an error string. - - - - + Closing software... - - Error Removing Contents - - - - - Error Removing Update - - - - - Error Removing DLC - - - - + Remove Installed Game Contents? - + Remove Installed Game Update? - + Remove Installed Game DLC? - - In order to submit a game compatibility test case, you must link your eden account.<br><br/>To link your eden account, go to Emulation &gt; Configuration &gt; Web. - - - - - + + The current amiibo has been removed - + Amiibo File (%1);; All Files (*.*) Amiibo tiedosto (%1);; Kaikki tiedostot (*.*) - + Load Amiibo Lataa Amiibo @@ -6803,7 +6800,7 @@ Would you like to bypass this and exit anyway? Amiibon lukeminen epäonnistui. Ohjelma odotti lukevansa %1 tavua mutta onnistui lukemaan vain %2 tavua. - + Error loading Amiibo data Virhe luettaessa Amiibo-dataa @@ -6812,68 +6809,68 @@ Would you like to bypass this and exit anyway? Amiibon dataa ei voitu lukea. - + Capture Screenshot Tallenna kuvakaappaus - + PNG Image (*.png) PNG-kuva (*.png) - + Update Available - + Update %1 for Eden is available. Would you like to download it? - + TAS state: Running %1/%2 - + TAS state: Recording %1 - + TAS state: Idle %1/%2 - + TAS State: Invalid - + &Stop Running - + &Start &Käynnistä - + Stop R&ecording - + R&ecord - + Building: %n shader(s) @@ -6881,142 +6878,142 @@ Would you like to download it? - + Scale: %1x %1 is the resolution scaling factor - + Speed: %1% / %2% Nopeus: %1% / %2% - + Speed: %1% Nopeus: %1% - + Game: %1 FPS Peli: %1 FPS - + Frame: %1 ms Ruutuaika: %1 ms - + None None - + + FXAA + + + + SMAA - + Nearest - + Bilinear - + Bicubic - + Gaussian - + ScaleForce - - + + FSR - + Area - + Docked - + Handheld Käsikonsolimoodi - + Normal - + High - + Extreme - + Vulkan - + OpenGL - + Null - + GLSL - + GLASM - + SPIRV - + NO AA - - - FXAA - - The game you are trying to load requires additional files from your Switch to be dumped before playing.<br/><br/>For more information on dumping these files, please see the following wiki page: <a href='https://yuzu-emu.org/wiki/dumping-system-archives-and-the-shared-fonts-from-a-switch-console/'>Dumping System Archives and the Shared Fonts from a Switch Console</a>.<br/><br/>Would you like to quit back to the game list? Continuing emulation may result in crashes, corrupted save data, or other bugs. Peli, jota yrität ladata vaatii, että dumppaat lisätiedostoja Switchistäsi ennen pelaamista. <br/><br/>Lue ohjeet näiden tiedostojen dumppaamiseen tältä wiki-sivulta: <a href='https://yuzu-emu.org/wiki/dumping-system-archives-and-the-shared-fonts-from-a-switch-console/'>Dumping System Archives and the Shared Fonts from a Switch Console</a>.<br/><br/>Haluatko palata pelivalikkoon? Jatkaminen voi johtaa pelin kaatumiseen, tallennustiedostojen korruptoitumiseen tai muihin bugeihin. @@ -7097,7 +7094,7 @@ Tämä poistaa automaattisesti generoidut avaimet ja ajaa avainten laskentamoduu - PRODINFO puuttuu - + Derivation Components Missing Johdantokomponentit puuttuvat @@ -7114,12 +7111,12 @@ riippuen laitteesi suorituskyvystä. Lasketaan avaimia - + Select RomFS Dump Target Valitse RomFS dumppauskohde - + Please select which RomFS you would like to dump. Valitse minkä RomFS:n haluat dumpata. @@ -7132,7 +7129,7 @@ riippuen laitteesi suorituskyvystä. yuzu - + Are you sure you want to stop the emulation? Any unsaved progress will be lost. Haluatko varmasti lopettaa emuloinnin? Kaikki tallentamaton tiedo menetetään. @@ -7148,8 +7145,8 @@ Haluatko silti ohittaa tämän ja sulkea? GRenderWindow - - + + OpenGL not available! openGL ei ole saatavilla! @@ -7158,38 +7155,38 @@ Haluatko silti ohittaa tämän ja sulkea? Yuzua ei ole koottu OpenGL-yhteensopivuuden kanssa. - + OpenGL shared contexts are not supported. - - eden has not been compiled with OpenGL support. + + Eden has not been compiled with OpenGL support. - - + + Error while initializing OpenGL! Virhe käynnistäessä OpenGL ydintä! - + Your GPU may not support OpenGL, or you do not have the latest graphics driver. - + Error while initializing OpenGL 4.6! - + Your GPU may not support OpenGL 4.6, or you do not have the latest graphics driver.<br><br>GL Renderer:<br>%1 - + Your GPU may not support one or more required OpenGL extensions. Please ensure you have the latest graphics driver.<br><br>GL Renderer:<br>%1<br><br>Unsupported extensions:<br>%2 @@ -7197,158 +7194,158 @@ Haluatko silti ohittaa tämän ja sulkea? GameList - + Name Nimi - + Compatibility Yhteensopivuus - + Add-ons Lisäosat - + File type Tiedostotyyppi - + Size Koko - + Favorite - + Start Game - + Start Game without Custom Configuration - + Open Save Data Location Avaa tallennuskansio - + Open Mod Data Location Avaa modien tallennuskansio - + Open Transferable Pipeline Cache - + Remove Poista - + Remove Installed Update Poista asennettu päivitys - + Remove All Installed DLC Poista kaikki asennetut DLC:t - + Remove Custom Configuration Poista mukautettu määritys - + Remove Play Time Data - + Remove Cache Storage - + Remove OpenGL Pipeline Cache - + Remove Vulkan Pipeline Cache - + Remove All Pipeline Caches - + Remove All Installed Contents Poista kaikki asennettu sisältö - + Dump RomFS Dumppaa RomFS - + Dump RomFS to SDMC - + Verify Integrity - + Copy Title ID to Clipboard Kopioi nimike ID leikepöydälle - + Navigate to GameDB entry Siirry GameDB merkintään - + Create Shortcut - + Add to Desktop - + Add to Applications Menu - + Configure Game - + Play time @@ -7357,32 +7354,32 @@ Haluatko silti ohittaa tämän ja sulkea? Ominaisuudet - + Scan Subfolders Skannaa alakansiot - + Remove Game Directory Poista pelikansio - + ▲ Move Up ▲ Liiku ylös - + ▼ Move Down ▼ Liiku alas - + Open Directory Location Avaa hakemisto - + Clear Tyhjennä @@ -7390,7 +7387,7 @@ Haluatko silti ohittaa tämän ja sulkea? GameListItemCompat - + Perfect Täydellinen @@ -7427,7 +7424,7 @@ even with workarounds. Peli toimii mutta siinä esiintyy merkittäviä ääni- ja grafiikkaongelmia. Peli ei ole pelattavissa alusta loppuun ongelmien vuoksi. - + Intro/Menu Intro/Valikko @@ -7437,52 +7434,52 @@ Screen. Peliä ei voi pelata merkittävien ääni- ja grafiikkaongelmien vuoksi. Pelissä ei pääse aloitusvalikko pidemmälle. - + Ingame - + Game starts, but crashes or major glitches prevent it from being completed. - + Game can be played without issues. - + Playable - + Game functions with minor graphical or audio glitches and is playable from start to finish. - + Game loads, but is unable to progress past the Start Screen. - + Won't Boot Ei käynnisty - + The game crashes when attempting to startup. Peli kaatuu käynnistettäessä. - + Not Tested Ei testattu - + The game has not yet been tested. Peliä ei ole vielä testattu @@ -7490,7 +7487,7 @@ Screen. GameListPlaceholder - + Double-click to add a new folder to the game list Tuplaklikkaa lisätäksesi uusi kansio pelilistaan. @@ -7498,7 +7495,7 @@ Screen. GameListSearchField - + %1 of %n result(s) @@ -7506,12 +7503,12 @@ Screen. - + Filter: Suodatin: - + Enter pattern to filter Syötä suodatettava tekstipätkä @@ -7593,7 +7590,7 @@ Screen. - Failed to announce the room to the public lobby. In order to host a room publicly, you must have a valid eden account configured in Emulation -> Configure -> Web. If you do not want to publish a room in the public lobby, then select Unlisted instead. + Failed to announce the room to the public lobby. In order to host a room publicly, you must have a valid Eden 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: @@ -7601,186 +7598,186 @@ Debug Message: Hotkeys - + Audio Mute/Unmute - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Main Window - + Audio Volume Down - + Audio Volume Up - + Capture Screenshot Tallenna kuvakaappaus - + Change Adapting Filter - + Change Docked Mode - + Change GPU Accuracy - + Configure Säädä - + Configure Current Game - + Continue/Pause Emulation - + Exit Fullscreen - - Exit eden + + Exit Eden - + Fullscreen - + Load File Lataa tiedosto - + Load/Remove Amiibo - + Multiplayer Browse Public Game Lobby - + Multiplayer Create Room - + Multiplayer Direct Connect to Room - + Multiplayer Leave Room - + Multiplayer Show Current Room - + Restart Emulation - + Stop Emulation - + TAS Record - + TAS Reset - + TAS Start/Stop - + Toggle Filter Bar - + Toggle Framerate Limit - + Toggle Mouse Panning - + Toggle Renderdoc Capture - + Toggle Status Bar @@ -7788,22 +7785,22 @@ Debug Message: InstallDialog - + Please confirm these are the files you wish to install. Vahvista, että nämä ovat tiedostot jotka haluat asentaa. - + Installing an Update or DLC will overwrite the previously installed one. Päivityksen tai DLC:n asentaminen korvaa aiemmin asennetut. - + Install Asenna - + Install Files to NAND Asenna tiedosto NAND-muistiin @@ -7811,7 +7808,7 @@ Debug Message: LimitableInputDialog - + The text can't contain any of the following characters: %1 @@ -7957,349 +7954,412 @@ Debug Message: - + &Emulation &Emulaatio - + &View &Katso - + &Reset Window Size - + &Debugging - + Reset Window Size to &720p - + Reset Window Size to 720p - + Reset Window Size to &900p - + Reset Window Size to 900p - + Reset Window Size to &1080p - + Reset Window Size to 1080p - + &Multiplayer - + &Tools - + &Amiibo - + &TAS - + &Create Home Menu Shortcut - + &Help &Apu - + &Install Files to NAND... - + L&oad File... - + Load &Folder... - + E&xit P&oistu - + &Pause &Pysäytä - + &Stop &Lopeta - + &Verify Installed Contents - - &About eden - - - - - Open &eden Folder - - - - + Open &Controller Menu - + Install Firmware - + Install Decryption Keys - + Open Home Menu - + &Discord - + Open &Setup - + &Desktop - + &Application Menu - + Single &Window Mode - + + Open &Eden Folders + + + + + &About Eden + + + + Con&figure... - + Ctrl+, - + Display D&ock Widget Headers - + Show &Filter Bar - + Show &Status Bar - + Show Status Bar Näytä statuspalkki - + &Browse Public Game Lobby - + &Create Room - + &Leave Room - + &Direct Connect to Room - + &Show Current Room - + F&ullscreen - + &Restart - + Load/Remove &Amiibo... - + &Report Compatibility - + Open &Mods Page - + Open &Quickstart Guide - + &FAQ - + &Capture Screenshot - + Open &Album - + &Set Nickname and Owner - + &Delete Game Data - + &Restore Amiibo - + &Format Amiibo - + Open &Mii Editor - + &Configure TAS... - + Configure C&urrent Game... - + &Start &Käynnistä - + &Reset - + R&ecord - - - MicroProfileDialog - - &MicroProfile + + &Root Data Folder + + + + + &NAND Folder + + + + + &SDMC Folder + + + + + &Mod Folder + + + + + &Log Folder + + + + + From Folder + + + + + From ZIP + + + + + &X + + + + + X (Twitter) + + + + + &Revolt + + + + + Revolt + + + + + &Eden Dependencies MigrationWorker - + Data was migrated successfully. - + Linking the old directory failed. You may need to re-run with administrative privileges on Windows. OS gave error: %1 - + + + +Note that your configuration and data will be shared with %1. +If this is not desirable, delete the following files: +%2 +%3 +%4 + + + + If you wish to clean up the files which were left in the old data location, you can do so by deleting the following directory: @@ -8359,37 +8419,37 @@ If you wish to clean up the files which were left in the old data location, you MultiplayerState - + Current connection status - + Not Connected. Click here to find a room! - + Not Connected - + Connected - + New Messages Received - + Error - + Failed to update the room information. Please check your Internet connection and try hosting the room again. Debug Message: @@ -8469,56 +8529,56 @@ p, li { white-space: pre-wrap; } QObject - + Installed SD Titles Asennetut SD-sovellukset - + Installed NAND Titles Asennetut NAND-sovellukset - + System Titles Järjestelmäsovellukset - + Add New Game Directory Lisää uusi pelikansio - + Favorites - - + + Shift Shift - - + + Ctrl Ctrl - - + + Alt Alt - - - - + + + + [not set] [ei asetettu] @@ -8529,14 +8589,14 @@ p, li { white-space: pre-wrap; } Hattu %1 %2 - - - - - - - - + + + + + + + + Axis %1%2 Akseli %1%2 @@ -8547,321 +8607,321 @@ p, li { white-space: pre-wrap; } Näppäin %1 - - - - - - + + + + + + [unknown] [tuntematon] - - - + + + Left - - - + + + Right - - - + + + Down - - - + + + Up - - + + Z - - + + R - - + + L - + ZR - + ZL - + SR - + SL - + Stick L - + Stick R - - + + A - - + + B - - + + X - - + + Y - - + + Start Käynnistä - + Plus - + Minus - + Capture - - + + L1 - - + + L2 - - + + L3 - - + + R1 - - + + R2 - - + + R3 - - + + Circle - - + + Cross - - + + Square - - + + Triangle - - + + Share - - + + Options - - + + %1%2%3Button %4 - - + + Home - + Touch - + Wheel Indicates the mouse wheel - + Backward - + Forward - + Task - + Extra - - + + [undefined] - - + + [invalid] - + %1%2 - - + + %1%2Hat %3 - - - + + + %1%2Axis %3 - - + + %1%2Axis %3,%4,%5 - + %1%2%3%4 - - + + %1%2%3Hat %4 - - + + %1%2%3Axis %4 - - + + %1%2Motion %3 - - + + %1%2Button %3 - - + + [unused] [ei käytössä] @@ -8882,37 +8942,37 @@ p, li { white-space: pre-wrap; } - - + + Migration - + - - + + No - + You can manually re-trigger this prompt by deleting the new config directory: %1 - + Migrating - + Migrating, this may take a while... @@ -9030,6 +9090,298 @@ p, li { white-space: pre-wrap; } + + QtCommon::Content + + + Installing Firmware... + + + + + + + Cancel + Peruuta + + + + Firmware integrity verification failed! + + + + + + Verification failed for the following files: + +%1 + + + + + + Verifying integrity... + + + + + + Integrity verification succeeded! + + + + + + The operation completed successfully. + Operaatio suoritettiin onnistuneesti. + + + + + Integrity verification failed! + + + + + File contents may be corrupt or missing. + + + + + Integrity verification couldn't be performed + + + + + Firmware installation cancelled, firmware may be in a bad state or corrupted. File contents could not be checked for validity. + + + + + Select Dumped Keys Location + + + + + Decryption Keys install succeeded + + + + + Decryption Keys were successfully installed + + + + + Decryption Keys install failed + + + + + QtCommon::Game + + + Error Removing Contents + + + + + Error Removing Update + + + + + Error Removing DLC + + + + + The base game is not installed in the NAND and cannot be removed. + Pohjapeliä ei ole asennettu NAND-muistiin eikä sitä voida poistaa. + + + + There is no update installed for this title. + Tähän sovellukseen ei ole asennettu päivitystä. + + + + There are no DLCs installed for this title. + + + + + + + + Successfully Removed + Onnistuneesti poistettu + + + + Successfully removed %1 installed DLC. + Asennettu DLC poistettu onnistuneesti %1  + + + + + Error Removing Transferable Shader Cache + Virhe poistettaessa siirrettävää Shader Cachea + + + + + A shader cache for this title does not exist. + Shader cachea tälle sovellukselle ei ole olemassa. + + + + Successfully removed the transferable shader cache. + Siirrettävä Shadet Cache poistettiin onnistuneesti. + + + + Failed to remove the transferable shader cache. + Siirrettävän Shader Cachen poisto epäonnistui. + + + + Error Removing Vulkan Driver Pipeline Cache + + + + + Failed to remove the driver pipeline cache. + + + + + + Error Removing Transferable Shader Caches + + + + + Successfully removed the transferable shader caches. + + + + + Failed to remove the transferable shader cache directory. + + + + + + Error Removing Custom Configuration + Virhe poistaessa mukautettua määritystä. + + + + A custom configuration for this title does not exist. + Mukautettua määritystä tälle sovellukselle ei ole olemassa. + + + + Successfully removed the custom game configuration. + Pelin mukautettu määritys poistettiin onnistuneesti. + + + + Failed to remove the custom game configuration. + Pelin mukautetun määrityksen poistaminen epäonnistui. + + + + Reset Metadata Cache + + + + + The metadata cache is already empty. + + + + + The operation completed successfully. + Operaatio suoritettiin onnistuneesti. + + + + The metadata cache couldn't be deleted. It might be in use or non-existent. + + + + + Create Shortcut + + + + + Do you want to launch the game in fullscreen? + + + + + Shortcut Created + + + + + Successfully created a shortcut to %1 + + + + + Shortcut may be Volatile! + + + + + This will create a shortcut to the current AppImage. This may not work well if you update. Continue? + + + + + Failed to Create Shortcut + + + + + Failed to create a shortcut to %1 + + + + + Create Icon + + + + + Cannot create icon file. Path "%1" does not exist and cannot be created. + + + + + No firmware available + + + + + Please install firmware to use the home menu. + + + + + Home Menu Applet + + + + + Home Menu is not available. Please reinstall firmware. + + + QtControllerSelectorDialog @@ -9319,7 +9671,7 @@ Please try again or contact the developer of the software. QtProfileSelectionDialog - + %1 %2 %1 is the profile username, %2 is the formatted UUID (e.g. 00112233-4455-6677-8899-AABBCCDDEEFF)) @@ -9392,7 +9744,7 @@ Please try again or contact the developer of the software. Valitse käyttäjä: - + Users Käyttäjät @@ -9447,7 +9799,7 @@ p, li { white-space: pre-wrap; } WaitTreeCallstack - + Call stack Call stack @@ -9481,12 +9833,12 @@ p, li { white-space: pre-wrap; } WaitTreeSynchronizationObject - + [%1] %2 - + waited by no thread waited by no thread @@ -9494,82 +9846,82 @@ p, li { white-space: pre-wrap; } WaitTreeThread - + runnable - + paused pysäytetty - + sleeping lepää - + waiting for IPC reply odotetaan IPC-vastausta - + waiting for objects Odotetaan objekteja - + waiting for condition variable odotetaan condition variable - + waiting for address arbiter odotetaan addres arbiter - + waiting for suspend resume - + waiting - + initialized - + terminated - + unknown - + PC = 0x%1 LR = 0x%2 PC = 0x%1 LR = 0x%2 - + ideal ihanteellinen - + core %1 ydin %1 - + processor = %1 prosessori = %1 @@ -9578,22 +9930,22 @@ p, li { white-space: pre-wrap; } ihanteellinen ydin = %1 - + affinity mask = %1 affinity mask = %1 - + thread id = %1 thread id = %1 - + priority = %1(current) / %2(normal) prioriteetti = %1(tämänhetkinen) / %2(normaali) - + last running ticks = %1 viimeisimmät suoritetut tikit = %1 @@ -9605,7 +9957,7 @@ p, li { white-space: pre-wrap; } WaitTreeThreadList - + waited by thread odotus by thread @@ -9613,7 +9965,7 @@ p, li { white-space: pre-wrap; } WaitTreeWidget - + &Wait Tree diff --git a/dist/languages/fr.ts b/dist/languages/fr.ts index a7443f8bd2..0b1d784a5a 100644 --- a/dist/languages/fr.ts +++ b/dist/languages/fr.ts @@ -13,12 +13,12 @@ - About eden + About Eden - <html><head/><body><p><span style=" font-size:28pt;">eden</span></p></body></html> + <html><head/><body><p><span style=" font-size:28pt;">Eden</span></p></body></html> @@ -34,8 +34,8 @@ p, li { white-space: pre-wrap; } hr { height: 1px; border-width: 0; } li.unchecked::marker { content: "\2610"; } li.checked::marker { content: "\2612"; } -</style></head><body style=" font-family:'Adwaita Sans'; font-size:11pt; font-weight:400; font-style:normal;"> -<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;">eden is an experimental open-source emulator for the Nintendo Switch licensed under GPLv3.0+ which is based on the yuzu emulator which ended development back in March 2024. <br /><br />This software should not be used to play games you have not legally obtained.</span></p></body></html> +</style></head><body style=" font-family:'Noto Sans'; font-size:9pt; font-weight:400; font-style:normal;"> +<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;">Eden is an experimental open-source emulator for the Nintendo Switch licensed under GPLv3.0+ which is based on the yuzu emulator which ended development back in March 2024. <br /><br />This software should not be used to play games you have not legally obtained.</span></p></body></html> @@ -72,32 +72,32 @@ p, li { white-space: pre-wrap; } CalibrationConfigurationDialog - + Communicating with the server... Communication avec le serveur... - + 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. Touchez le coin supérieur gauche<br> de votre pavé tactile. - + Configuration completed! Configuration terminée ! - + OK OK @@ -398,134 +398,134 @@ Cela bannirait à la fois son nom d'utilisateur du forum et son adresse IP. ConfigurationShared - + % % - + Amiibo editor Éditeur d'Amiibo - + Controller configuration Configuration des manettes - + Data erase Effacement des données - + Error Erreur - + Net connect Connexion Internet - + Player select Sélection du joueur - + Software keyboard Clavier virtuel - + Mii Edit Édition de Mii - + Online web Web en ligne - + Shop Boutique - + Photo viewer Visionneuse de photos - + Offline web Web hors ligne - + Login share Partage d'identification - + Wifi web auth Authentification Wifi Web - + My page Ma page - + Output Engine: Moteur de Sortie : - + Output Device: Périphérique de sortie : - + Input Device: Périphérique d'entrée : - + Mute audio Couper le son - + Volume: Volume : - + Mute audio when in background Couper le son en arrière-plan - + Multicore CPU Emulation Émulation CPU Multicœur - + This option increases CPU emulation thread use from 1 to the Switch’s maximum of 4. This is mainly a debug option and shouldn’t be disabled. Cette option augmente l'utilisation du thread d'émulation CPU de 1 au maximum de 4 sur la Nintendo Switch. Il s'agit principalement d'une option de débogage et ne devrait pas être désactivée. - + Memory Layout Disposition de la mémoire - + Increases the amount of emulated RAM from the stock 4GB of the retail Switch to the developer kit's 8/6GB. It’s doesn’t improve stability or performance and is intended to let big texture mods fit in emulated RAM. Enabling it will increase memory use. It is not recommended to enable unless a specific game with a texture mod needs it. @@ -534,12 +534,12 @@ Cela n'améliore ni la stabilité ni les performances et est destiné à pe L'activer augmentera l'utilisation de la mémoire. Il n'est pas recommandé de l'activer à moins qu'un jeu spécifique avec un mod de texture en ait besoin. - + Limit Speed Percent Limiter la vitesse en pourcentage - + Controls the game's maximum rendering speed, but it’s up to each game if it runs faster or not. 200% for a 30 FPS game is 60 FPS, and for a 60 FPS game it will be 120 FPS. Disabling it means unlocking the framerate to the maximum your PC can reach. @@ -548,141 +548,118 @@ Disabling it means unlocking the framerate to the maximum your PC can reach. - - Synchronize Core Speed - - - - - Synchronizes CPU core speed with the game's maximum rendering speed to boost FPS without affecting game speed (animations, physics, etc.). -Compatibility varies by game; many (especially older ones) may not respond well. -Can help reduce stuttering at lower framerates. - - - - + Accuracy: Précision: - + This setting controls the accuracy of the emulated CPU. Don't change this unless you know what you are doing. Ce paramètre contrôle la précision du CPU émulé. Ne le changez pas à moins de savoir ce que vous faites. - - + + Backend: Backend : - - Fast CPU Time - - - - - Overclocks the emulated CPU to remove some FPS limiters. Weaker CPUs may see reduced performance, and certain games may behave improperly. -Use Boost (1700MHz) to run at the Switch's highest native clock, or Fast (2000MHz) to run at 2x clock. - - - - + Unfuse FMA (improve performance on CPUs without FMA) Désactivation du FMA (améliore les performances des CPU sans FMA) - + This option improves speed by reducing accuracy of fused-multiply-add instructions on CPUs without native FMA support. Cette option améliore la vitesse en réduisant la précision des instructions de multiplication et addition fusionnées sur les processeurs qui ne prennent pas en charge nativement FMA. - + Faster FRSQRTE and FRECPE FRSQRTE et FRECPE plus rapides - + This option improves the speed of some approximate floating-point functions by using less accurate native approximations. Cette option améliore la vitesse de certaines fonctions à virgule flottante approximatives en utilisant des approximations natives moins précises. - + Faster ASIMD instructions (32 bits only) Instructions ASIMD plus rapides (32 bits seulement) - + This option improves the speed of 32 bits ASIMD floating-point functions by running with incorrect rounding modes. Cette option améliore la vitesse des fonctions à virgule flottante ASIMD sur 32 bits en utilisant des modes d'arrondi incorrects. - + Inaccurate NaN handling Traitement NaN imprécis - + This option improves speed by removing NaN checking. Please note this also reduces accuracy of certain floating-point instructions. Cette option améliore la vitesse en supprimant la vérification des NaN. Veuillez noter que cela réduit également la précision de certaines instructions en virgule flottante. - + Disable address space checks Désactiver les vérifications de l'espace d'adresse - + This option improves speed by eliminating a safety check before every memory read/write in guest. Disabling it may allow a game to read/write the emulator's memory. Cette option améliore la vitesse en éliminant une vérification de sécurité avant chaque lecture/écriture en mémoire dans l'invité. La désactivation de cette option peut permettre à un jeu de lire/écrire dans la mémoire de l'émulateur. - + Ignore global monitor Ignorer le moniteur global - + This option improves speed by relying only on the semantics of cmpxchg to ensure safety of exclusive access instructions. Please note this may result in deadlocks and other race conditions. Cette option améliore la vitesse en se basant uniquement sur la sémantique de cmpxchg pour garantir la sécurité des instructions d'accès exclusif. Veuillez noter que cela peut entraîner des blocages et d'autres conditions de concurrence. - + API: API : - + Switches between the available graphics APIs. Vulkan is recommended in most cases. Permet de basculer entre les API graphiques disponibles. Vulkan est recommandé dans la plupart des cas. - + Device: Appareil : - + This setting selects the GPU to use with the Vulkan backend. Ce paramètre sélectionne le GPU à utiliser avec le backend Vulkan. - + Shader Backend: Back-end des Shaders : - + The shader backend to use for the OpenGL renderer. GLSL is the fastest in performance and the best in rendering accuracy. GLASM is a deprecated NVIDIA-only backend that offers much better shader building performance at the cost of FPS and rendering accuracy. @@ -693,12 +670,12 @@ GLASM est un backend obsolète réservé à NVIDIA qui offre de bien meilleures SPIR-V compile le plus rapidement, mais donne de mauvais résultats sur la plupart des pilotes de GPU. - + Resolution: Résolution : - + Forces the game to render at a different resolution. Higher resolutions require much more VRAM and bandwidth. Options lower than 1X can cause rendering issues. @@ -707,27 +684,27 @@ Les résolutions plus élevées nécessitent beaucoup plus de VRAM et de bande p Les options inférieures à 1X peuvent causer des problèmes de rendu. - + Window Adapting Filter: Filtre de fenêtre adaptatif - + FSR Sharpness: Netteté FSR : - + Determines how sharpened the image will look while using FSR’s dynamic contrast. Détermine à quel point l'image sera affinée lors de l'utilisation du contraste dynamique FSR. - + Anti-Aliasing Method: Méthode d'anticrénelage : - + The anti-aliasing method to use. SMAA offers the best quality. FXAA has a lower performance impact and can produce a better and more stable picture under very low resolutions. @@ -736,12 +713,12 @@ SMAA offre la meilleure qualité. FXAA a un impact sur les performances plus faible et peut produire une image meilleure et plus stable sous des résolutions très basses. - + Fullscreen Mode: Mode Plein écran : - + The method used to render the window in fullscreen. Borderless offers the best compatibility with the on-screen keyboard that some games request for input. Exclusive fullscreen may offer better performance and better Freesync/Gsync support. @@ -750,12 +727,12 @@ Sans bordure offre la meilleure compatibilité avec le clavier à l'écran Le mode plein écran exclusif peut offrir de meilleures performances et un meilleur support Freesync/Gsync. - + Aspect Ratio: Format : - + Stretches the game to fit the specified aspect ratio. Switch games only support 16:9, so custom game mods are required to get other ratios. Also controls the aspect ratio of captured screenshots. @@ -764,49 +741,36 @@ Les jeux de la Switch ne prennent en charge que le format 16:9, donc des mods pe Contrôle également le rapport d'aspect des captures d'écran. - + Use disk pipeline cache Utiliser la cache de pipeline sur disque - + Allows saving shaders to storage for faster loading on following game boots. Disabling it is only intended for debugging. Permet de sauvegarder les shaders sur le stockage pour un chargement plus rapide lors des démarrages ultérieurs du jeu. Le désactiver est uniquement destiné au débogage. - - Optimize SPIRV output shader - - - - - Runs an additional optimization pass over generated SPIRV shaders. -Will increase time required for shader compilation. -May slightly improve performance. -This feature is experimental. - - - - + Use asynchronous GPU emulation Utiliser l'émulation GPU asynchrone - + Uses an extra CPU thread for rendering. This option should always remain enabled. Utilise un thread CPU supplémentaire pour le rendu. Cette option doit toujours rester activée. - + NVDEC emulation: Émulation NVDEC - + Specifies how videos should be decoded. It can either use the CPU or the GPU for decoding, or perform no decoding at all (black screen on videos). In most cases, GPU decoding provides the best performance. @@ -815,12 +779,12 @@ Elles peuvent être décodées soit par le CPU, soit par le GPU, ou pas du tout Dans la plupart des cas, le décodage GPU offre les meilleures performances. - + ASTC Decoding Method: Méthode de décodage ASTC : - + This option controls how ASTC textures should be decoded. CPU: Use the CPU for decoding, slowest but safest method. GPU: Use the GPU's compute shaders to decode ASTC textures, recommended for most games and users. @@ -832,34 +796,33 @@ GPU : Utilise les shaders de calcul du GPU pour décoder les textures ASTC, reco CPU de manière asynchrone : Utilise le CPU pour décoder les textures ASTC au fur et à mesure de leur arrivée. Élimine complètement le bégaiement du décodage ASTC au détriment de problèmes de rendu pendant que la texture est en cours de décodage. - + ASTC Recompression Method: Méthode de recompression ASTC : - + Almost all desktop and laptop dedicated GPUs lack support for ASTC textures, forcing the emulator to decompress to an intermediate format any card supports, RGBA8. This option recompresses RGBA8 to either the BC1 or BC3 format, saving VRAM but negatively affecting image quality. Presque toutes les cartes graphiques dédiées pour ordinateurs de bureau et portables ne prennent pas en charge les textures ASTC, obligeant l'émulateur à décompresser vers un format intermédiaire que toutes les cartes prennent en charge, RGBA8. Cette option recomprime le RGBA8 en format BC1 ou BC3, économisant ainsi la VRAM mais affectant négativement la qualité de l'image. - + VRAM Usage Mode: Mode d'utilisation de la VRAM : - Selects whether the emulator should prefer to conserve memory or make maximum usage of available video memory for performance. Has no effect on integrated graphics. Aggressive mode may severely impact the performance of other applications such as recording software. - Sélectionne si l'émulateur doit privilégier la conservation de la mémoire ou utiliser au maximum la mémoire vidéo disponible pour les performances. N'a aucun effet sur les graphiques intégrés. Le mode agressif peut avoir un impact sévère sur les performances d'autres applications telles que les logiciels d'enregistrement. + Sélectionne si l'émulateur doit privilégier la conservation de la mémoire ou utiliser au maximum la mémoire vidéo disponible pour les performances. N'a aucun effet sur les graphiques intégrés. Le mode agressif peut avoir un impact sévère sur les performances d'autres applications telles que les logiciels d'enregistrement. - + VSync Mode: Mode VSync : - + FIFO (VSync) does not drop frames or exhibit tearing but is limited by the screen refresh rate. FIFO Relaxed is similar to FIFO but allows tearing as it recovers from a slow down. Mailbox can have lower latency than FIFO and does not tear but may drop frames. @@ -870,51 +833,49 @@ Mailbox peut avoir une latence plus faible que FIFO et ne présente pas de déch Immédiat (sans synchronisation) présente simplement ce qui est disponible et peut présenter des déchirures. - + Enable asynchronous presentation (Vulkan only) Activer la présentation asynchrone (uniquement pour Vulkan) - + Slightly improves performance by moving presentation to a separate CPU thread. Améliore légèrement les performances en déplaçant la présentation vers un thread CPU séparé. - + Force maximum clocks (Vulkan only) Forcer la fréquence d'horloge maximale (Vulkan uniquement) - + Runs work in the background while waiting for graphics commands to keep the GPU from lowering its clock speed. Les exécutions fonctionnent en arrière-plan en attendant les commandes graphiques pour empêcher le GPU de réduire sa vitesse de fréquence d'horloge. - + Anisotropic Filtering: Filtrage anisotropique : - + Controls the quality of texture rendering at oblique angles. It’s a light setting and safe to set at 16x on most GPUs. Contrôle la qualité du rendu des textures à des angles obliques. C'est un paramètre léger et il est sûr de le régler à 16x sur la plupart des GPU. - Accuracy Level: - Niveau de Précision : + Niveau de Précision : - GPU emulation accuracy. Most games render fine with Normal, but High is still required for some. Particles tend to only render correctly with High accuracy. Extreme should only be used for debugging. This option can be changed while playing. Some games may require booting on high to render properly. - Précision de l'émulation du GPU. + Précision de l'émulation du GPU. La plupart des jeux rendent bien avec "Normal", mais "High" est encore nécessaire pour certains. Les particules ont tendance à ne rendre correctement qu'avec une précision élevée. "Extreme" ne doit être utilisé que pour le débogage. @@ -922,12 +883,12 @@ Cette option peut être modifiée pendant le jeu. Certains jeux peuvent nécessiter un démarrage en "High" pour rendre correctement. - + Use asynchronous shader building (Hack) Utiliser la compilation asynchrone des shaders (Hack) - + Enables asynchronous shader compilation, which may reduce shader stutter. This feature is experimental. Active la compilation asynchrone des shaders, ce qui peut réduire les saccades dues aux shaders. @@ -942,24 +903,24 @@ Cette fonctionnalité est expérimentale. Active le Temps GPU Rapide. Cette option forcera la plupart des jeux à utiliser leur plus grande résolution native. - + Use Vulkan pipeline cache Utiliser le cache de pipeline Vulkan - + Enables GPU vendor-specific pipeline cache. This option can improve shader loading time significantly in cases where the Vulkan driver does not store pipeline cache files internally. Active le cache de pipeline spécifique au fournisseur de GPU. Cette option peut améliorer considérablement le temps de chargement des shaders dans les cas où le pilote Vulkan ne stocke pas les fichiers de cache de pipeline en interne. - + Enable Compute Pipelines (Intel Vulkan Only) Activer les pipelines de calcul (uniquement pour Vulkan sur Intel) - + Enable compute pipelines, required by some games. This setting only exists for Intel proprietary drivers, and may crash if enabled. Compute pipelines are always enabled on all other drivers. @@ -968,111 +929,111 @@ Ce paramètre existe uniquement pour les pilotes propriétaires d'Intel et Les pipelines de calcul sont toujours activés sur tous les autres pilotes. - + Enable Reactive Flushing Activer le Vidage Réactif - + Uses reactive flushing instead of predictive flushing, allowing more accurate memory syncing. Utilise une purge réactive au lieu d'une purge prédictive, permettant une synchronisation de la mémoire plus précise. - + Sync to framerate of video playback Synchro la fréquence d'image de la relecture du vidéo - + Run the game at normal speed during video playback, even when the framerate is unlocked. Éxécuter le jeu à une vitesse normale pendant la relecture du vidéo, même-ci la fréquence d'image est dévérouillée. - + Barrier feedback loops Boucles de rétroaction de barrière - + Improves rendering of transparency effects in specific games. Améliore le rendu des effets de transparence dans des jeux spécifiques. - + RNG Seed Seed RNG - + Controls the seed of the random number generator. Mainly used for speedrunning purposes. Contrôle le seed du générateur de nombres aléatoires. Principalement utilisé à des fins de speedrunning. - + Device Name Nom de l'appareil - + The name of the emulated Switch. Le nom de la Nintendo Switch émulée. - + Custom RTC Date: Date RTC personnalisée : - + This option allows to change the emulated clock of the Switch. Can be used to manipulate time in games. Cette option permet de changer l'horloge émulée de la Switch. Elle peut être utilisée pour manipuler le temps dans les jeux. - + 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 réglé sur automatique - + Region: Région : - + The region of the emulated Switch. La région de la Nintendo Switch émulée. - + Time Zone: Fuseau horaire : - + The time zone of the emulated Switch. Le fuseau horaire de la Nintendo Switch émulée. - + Sound Output Mode: Mode de sortie sonore : - + Console Mode: Mode console : - + Selects if the console is emulated in Docked or Handheld mode. Games will change their resolution, details and supported controllers and depending on this setting. Setting to Handheld can help improve performance for low end systems. @@ -1081,7 +1042,7 @@ Les jeux changeront leur résolution, leurs détails et les contrôleurs pris en Le réglage sur Portable peut aider à améliorer les performances pour les systèmes peu performants. - + Prompt for user on game boot Demander un utilisateur au lancement d'un jeu @@ -1090,7 +1051,7 @@ Le réglage sur Portable peut aider à améliorer les performances pour les syst Demander de sélectionner un profil utilisateur à chaque démarrage, utile si plusieurs personnes utilisent yuzu sur le même PC. - + Pause emulation when in background Mettre en pause l’émulation lorsque mis en arrière-plan @@ -1099,843 +1060,992 @@ Le réglage sur Portable peut aider à améliorer les performances pour les syst Ce paramètre met en pause yuzu lorsque d'autres fenêtres sont au premier plan. - - Fast GPU Time (Hack) - - - - - Overclocks the emulated GPU to increase dynamic resolution and render distance. -Use 128 for maximal performance and 512 for maximal graphics fidelity. - - - - - Extended Dynamic State - - - - - Enables the VkExtendedDynamicState* extensions. -Higher dynamic states will generally improve performance, but may cause issues on certain games or devices. - - - - - Provoking Vertex - - - - - Improves lighting and vertex handling in certain games. -Only Vulkan 1.0+ devices support this extension. - - - - - Descriptor Indexing - - - - - Improves texture & buffer handling and the Maxwell translation layer. -Some Vulkan 1.1+ and all 1.2+ devices support this extension. - - - - - Ask to select a user profile on each boot, useful if multiple people use eden on the same PC. - - - - - This setting pauses eden when focusing other windows. - - - - + Confirm before stopping emulation Confirmer avant d'arrêter l'émulation - + This setting overrides game prompts asking to confirm stopping the game. Enabling it bypasses such prompts and directly exits the emulation. Ce paramètre remplace les invitations du jeu demandant de confirmer l'arrêt du jeu. En l'activant, cela contourne de telles invitations et quitte directement l'émulation. - + Hide mouse on inactivity Cacher la souris en cas d'inactivité - + This setting hides the mouse after 2.5s of inactivity. Ce paramètre masque la souris après 2,5 secondes d'inactivité. - + Disable controller applet Désactiver l'applet du contrôleur - + Forcibly disables the use of the controller applet by guests. When a guest attempts to open the controller applet, it is immediately closed. Désactive de force l'utilisation de l'applet de contrôleur par les invités. Lorsqu'un invité tente d'ouvrir l'applet de contrôleur, il est immédiatement fermé. - - Check for updates - - - - - Whether or not to check for updates upon startup. - - - - + Enable Gamemode Activer le mode jeu - + Custom frontend Interface personnalisée - + Real applet Applet réel - - Never - - - - - On Load - - - - - Always - - - - + CPU CPU - + GPU GPU - + CPU Asynchronous CPU Asynchrone - + Uncompressed (Best quality) Non compressé (Meilleure qualité) - + BC1 (Low quality) BC1 (Basse qualité) - + BC3 (Medium quality) BC3 (Qualité moyenne) - + Conservative Conservateur - + Aggressive Agressif - + OpenGL OpenGL - + Vulkan Vulkan - + Null Nul - + GLSL GLSL - + GLASM (Assembly Shaders, NVIDIA Only) GLASM (Shaders en Assembleur, NVIDIA Seulement) - + SPIR-V (Experimental, AMD/Mesa Only) SPIR-V (Expérimental, AMD/Mesa uniquement) - + Normal Normal - + High Haut - + Extreme Extême - + Auto Auto - + Accurate Précis - + Unsafe Risqué - + Paranoid (disables most optimizations) Paranoïaque (désactive la plupart des optimisations) - + Dynarmic Dynamique - + NCE NCE - + Borderless Windowed Fenêtré sans bordure - + Exclusive Fullscreen Plein écran exclusif - + No Video Output Pas de sortie vidéo - + CPU Video Decoding Décodage Vidéo sur le CPU - + GPU Video Decoding (Default) Décodage Vidéo sur le GPU (par défaut) - - 0.25X (180p/270p) [EXPERIMENTAL] - - - - + 0.5X (360p/540p) [EXPERIMENTAL] 0.5X (360p/540p) [EXPERIMENTAL] - + 0.75X (540p/810p) [EXPERIMENTAL] 0.75X (540p/810p) [EXPÉRIMENTAL] - + 1X (720p/1080p) 1X (720p/1080p) - + 1.5X (1080p/1620p) [EXPERIMENTAL] 1.5X (1080p/1620p) [EXPÉRIMENTAL] - + 2X (1440p/2160p) 2X (1440p/2160p) - + 3X (2160p/3240p) 3X (2160p/3240p) - + 4X (2880p/4320p) 4X (2880p/4320p) - + 5X (3600p/5400p) 5X (3600p/5400p) - + 6X (4320p/6480p) 6X (4320p/6480p) - + 7X (5040p/7560p) 7X (5040p/7560p) - + 8X (5760p/8640p) 8X (5760p/8640p) - + Nearest Neighbor Plus proche voisin - + Bilinear Bilinéaire - + Bicubic Bicubique - + Gaussian Gaussien - + ScaleForce ScaleForce - + AMD FidelityFX™️ Super Resolution AMD FidelityFX™️ Super Resolution - - Area - - - - + None Aucune - + FXAA FXAA - + SMAA SMAA - + Default (16:9) Par défaut (16:9) - + Force 4:3 Forcer le 4:3 - + Force 21:9 Forcer le 21:9 - + Force 16:10 Forcer le 16:10 - + Stretch to Window Étirer à la fenêtre - + Automatic Automatique - + + Default Par défaut - + + Synchronize Core Speed + + + + + Synchronizes CPU core speed with the game's maximum rendering speed to boost FPS without affecting game speed (animations, physics, etc.). +Compatibility varies by game; many (especially older ones) may not respond well. +Can help reduce stuttering at lower framerates. + + + + + Fast CPU Time + + + + + Overclocks the emulated CPU to remove some FPS limiters. Weaker CPUs may see reduced performance, and certain games may behave improperly. +Use Boost (1700MHz) to run at the Switch's highest native clock, or Fast (2000MHz) to run at 2x clock. + + + + + Custom CPU Ticks + + + + + Set a custom value of CPU ticks. Higher values can increase performance, but may also cause the game to freeze. A range of 77–21000 is recommended. + + + + + Enable Host MMU Emulation (fastmem) + + + + + This optimization speeds up memory accesses by the guest program. +Enabling it causes guest memory reads/writes to be done directly into memory and make use of Host's MMU. +Disabling this forces all memory accesses to use Software MMU Emulation. + + + + + Optimize SPIRV output shader + + + + + Runs an additional optimization pass over generated SPIRV shaders. +Will increase time required for shader compilation. +May slightly improve performance. +This feature is experimental. + + + + + Selects whether the emulator should prefer to conserve memory or make maximum usage of available video memory for performance. +Aggressive mode may severely impact the performance of other applications such as recording software. + + + + + Skip CPU Inner Invalidation + + + + + Skips certain CPU-side cache invalidations during memory updates, reducing CPU usage and improving it's performance. This may cause glitches or crashes on some games. + + + + + Sync Memory Operations + + + + + Ensures data consistency between compute and memory operations. +This option should fix issues in some games, but may also reduce performance in some cases. +Unreal Engine 4 games often see the most significant changes thereof. + + + + + GPU Accuracy: + + + + + Controls the GPU emulation accuracy. +Most games render fine with Normal, but High is still required for some. +Particles tend to only render correctly with High accuracy. +Extreme should only be used as a last resort. + + + + + DMA Accuracy: + + + + + Controls the DMA precision accuracy. Safe precision can fix issues in some games, but it can also impact performance in some cases. +If unsure, leave this on Default. + + + + + Fast GPU Time (Hack) + + + + + Overclocks the emulated GPU to increase dynamic resolution and render distance. +Use 128 for maximal performance and 512 for maximal graphics fidelity. + + + + + RAII + + + + + A method of automatic resource management in Vulkan that ensures proper release of resources when they are no longer needed, but may cause crashes in bundled games. + + + + + Extended Dynamic State + + + + + Controls the number of features that can be used in Extended Dynamic State. +Higher numbers allow for more features and can increase performance, but may cause issues with some drivers and vendors. +The default value may vary depending on your system and hardware capabilities. +This value can be changed until stability and a better visual quality are achieved. + + + + + Provoking Vertex + + + + + Improves lighting and vertex handling in certain games. +Only Vulkan 1.0+ devices support this extension. + + + + + Descriptor Indexing + + + + + Improves texture & buffer handling and the Maxwell translation layer. +Some Vulkan 1.1+ and all 1.2+ devices support this extension. + + + + + Sample Shading + + + + + Allows the fragment shader to execute per sample in a multi-sampled fragment instead once per fragment. Improves graphics quality at the cost of some performance. +Higher values improve quality more but also reduce performance to a greater extent. + + + + + Ask to select a user profile on each boot, useful if multiple people use Eden on the same PC. + + + + + This setting pauses Eden when focusing other windows. + + + + + Check for updates + + + + + Whether or not to check for updates upon startup. + + + + + Never + + + + + On Load + + + + + Always + + + + + Unsafe (fast) + + + + + Safe (stable) + + + + + 0.25X (180p/270p) [EXPERIMENTAL] + + + + + Area + + + + 2x 2x - + 4x 4x - + 8x 8x - + 16x 16x - + Japanese (日本語) Japonais (日本語) - + American English Anglais Américain - + French (français) Français (français) - + German (Deutsch) Allemand (Deutsch) - + Italian (italiano) Italien (italiano) - + Spanish (español) Espagnol (español) - + Chinese Chinois - + Korean (한국어) Coréen (한국어) - + Dutch (Nederlands) Néerlandais (Nederlands) - + Portuguese (português) Portugais (português) - + Russian (Русский) Russe (Русский) - + Taiwanese Taïwanais - + British English Anglais Britannique - + Canadian French Français Canadien - + Latin American Spanish Espagnol d'Amérique Latine - + Simplified Chinese Chinois Simplifié - + Traditional Chinese (正體中文) Chinois Traditionnel (正體中文) - + Brazilian Portuguese (português do Brasil) Portugais Brésilien (português do Brasil) - - + + Serbian (српски) + + + + + Japan Japon - + USA É.-U.A. - + Europe Europe - + Australia Australie - + China Chine - + Korea Corée - + Taiwan Taïwan - + Auto (%1) Auto select time zone Auto (%1) - + Default (%1) Default time zone Par défaut (%1) - + CET CET - + CST6CDT CST6CDT - + Cuba Cuba - + EET EET - + Egypt Égypte - + Eire Eire - + EST EST - + EST5EDT EST5EDT - + GB GB - + GB-Eire GB-Eire - + GMT GMT - + GMT+0 GMT+0 - + GMT-0 GMT-0 - + GMT0 GMT0 - + Greenwich Greenwich - + Hongkong Hong Kong - + HST HST - + Iceland Islande - + Iran Iran - + Israel Israël - + Jamaica Jamaïque - + Kwajalein Kwajalein - + Libya Libye - + MET MET - + MST MST - + MST7MDT MST7MDT - + Navajo Navajo - + NZ NZ - + NZ-CHAT NZ-CHAT - + Poland Pologne - + Portugal Portugal - + PRC PRC - + PST8PDT PST8PDT - + ROC ROC - + ROK ROK - + Singapore Singapour - + Turkey Turquie - + UCT UCT - + Universal Universel - + UTC UTC - + W-SU W-SU - + WET WET - + Zulu Zulu - + Mono Mono - + Stereo Stéréo - + Surround Surround - + 4GB DRAM (Default) 4 GB DRAM (Par défaut) - + 6GB DRAM (Unsafe) 6 GB DRAM (Risqué) - + 8GB DRAM - + 10GB DRAM (Unsafe) - + 12GB DRAM (Unsafe) - + Low (128) - + Medium (256) - + High (512) @@ -1944,37 +2054,37 @@ Lorsqu'un invité tente d'ouvrir l'applet de contrôleur, il est 8 GB DRAM (Risqué) - + Docked Mode TV - + Handheld Mode Portable - + Boost (1700MHz) - + Fast (2000MHz) - + Always ask (Default) Toujours demander (par défaut) - + Only if game specifies not to stop Uniquement si le jeu précise de ne pas s'arrêter - + Never ask Jamais demander @@ -2329,27 +2439,27 @@ Lorsqu'un invité tente d'ouvrir l'applet de contrôleur, il est S'enregistrer - + Open Log Location Ouvrir l'emplacement du journal de logs - + Global Log Filter Filtre de log global - + When checked, the max size of the log increases from 100 MB to 1 GB Lorsque la case est cochée, la taille maximum du relevé d'événements augmente de 100 Mo à 1 Go - + Enable Extended Logging** Activer la journalisation étendue** - + Show Log in Console Afficher le relevé d'événements dans la console @@ -2495,7 +2605,7 @@ Lorsqu'un invité tente d'ouvrir l'applet de contrôleur, il est - **This will be reset automatically when eden closes. + **This will be reset automatically when Eden closes. @@ -2557,7 +2667,7 @@ Lorsqu'un invité tente d'ouvrir l'applet de contrôleur, il est **Ces options seront réinitialisées automatiquement lorsque yuzu fermera. - + Web applet not compiled Applet Web non compilé @@ -2607,7 +2717,7 @@ Lorsqu'un invité tente d'ouvrir l'applet de contrôleur, il est - eden Configuration + Eden Configuration @@ -2616,88 +2726,88 @@ Lorsqu'un invité tente d'ouvrir l'applet de contrôleur, il est Certains paramètres ne sont disponibles que lorsqu'un jeu n'est pas en cours d'exécution. - + Applets Applets - - + + Audio Son - - + + CPU CPU - + Debug Débogage - + Filesystem Système de fichiers - - + + General Général - - + + Graphics Vidéo - + GraphicsAdvanced Graphismes avancés - + GraphicsExtensions - + Hotkeys Raccourcis clavier - - + + Controls Contrôles - + Profiles Profils - + Network Réseau - - + + System Système - + Game List Liste des jeux - + Web Web @@ -2795,51 +2905,45 @@ Lorsqu'un invité tente d'ouvrir l'applet de contrôleur, il est - - - Reset Metadata Cache Mettre à zéro le cache des métadonnées - + Select Emulated NAND Directory... Sélectionner le répertoire NAND émulé... - + Select Emulated SD Directory... Sélectionner le répertoire SD émulé... - + Select Gamecard Path... Sélectionner le chemin de la cartouche de jeu... - + Select Dump Directory... Sélectionner le répertoire d'extraction... - + Select Mod Load Directory... Sélectionner le répertoire de mod... - The metadata cache is already empty. - Le cache des métadonnées est déjà vide. + Le cache des métadonnées est déjà vide. - The operation completed successfully. - L'opération s'est terminée avec succès. + L'opération s'est terminée avec succès. - The metadata cache couldn't be deleted. It might be in use or non-existent. - Le cache des métadonnées n'a pas pu être supprimé. Il pourrait être utilisé ou non-existant. + Le cache des métadonnées n'a pas pu être supprimé. Il pourrait être utilisé ou non-existant. @@ -2870,12 +2974,12 @@ Lorsqu'un invité tente d'ouvrir l'applet de contrôleur, il est yuzu - - eden + + Eden - + This reset all settings and remove all per-game configurations. This will not delete game directories, profiles, or input profiles. Proceed? Ceci réinitialise tout les paramètres et supprime toutes les configurations par jeu. Cela ne va pas supprimer les répertoires de jeu, les profils, ou les profils d'entrée. Continuer ? @@ -2908,33 +3012,33 @@ Lorsqu'un invité tente d'ouvrir l'applet de contrôleur, il est Couleur de l’arrière plan : - + % FSR sharpening percentage (e.g. 50%) % - + Off Désactivé - + VSync Off VSync Désactivée - + Recommended Recommandé - + On Activé - + VSync On VSync Activée @@ -2971,14 +3075,18 @@ Lorsqu'un invité tente d'ouvrir l'applet de contrôleur, il est - Vulkan Extension Settings + Vulkan Extensions Settings - - While it's recommended to use state 3, some games may perform better on lower states. Setting to 0 (disabled) may also break games. -If your GPU is older (i.e. RX570/580 or older), it may not support these features. If this is the case, set the slider to 0 and uncheck all boxes. -These settings are experimental, and may cause black screens. If your games fail to boot or are stuck on a black screen, change these settings around. + + % + Sample Shading percentage (e.g. 50%) + % + + + + Extended Dynamic State is disabled on macOS due to MoltenVK compatibility issues that cause black screens. @@ -3010,75 +3118,75 @@ These settings are experimental, and may cause black screens. If your games fail Restaurer les paramètres par défaut - + Action Action - + Hotkey Raccourci clavier - + Controller Hotkey Raccourci Manette - - - + + + Conflicting Key Sequence Séquence de touches conflictuelle - - + + The entered key sequence is already assigned to: %1 La séquence de touches entrée est déjà attribuée à : %1 - + [waiting] [en attente] - + Invalid Invalide - + Invalid hotkey settings Paramètres de raccourci invalides - + An error occurred. Please report this issue on github. Une erreur s'est produite. Veuillez signaler ce problème sur GitHub. - + Restore Default Restaurer les paramètres par défaut - + Clear Effacer - + Conflicting Button Sequence Séquence de bouton conflictuelle - + The default button sequence is already assigned to: %1 La séquence de bouton par défaut est déjà assignée à : %1 - + The default key sequence is already assigned to: %1 La séquence de touches par défaut est déjà attribuée à : %1 @@ -3398,7 +3506,7 @@ These settings are experimental, and may cause black screens. If your games fail - Requires restarting eden + Requires restarting Eden @@ -3553,7 +3661,7 @@ These settings are experimental, and may cause black screens. If your games fail - + Left Stick Stick Gauche @@ -3663,14 +3771,14 @@ These settings are experimental, and may cause black screens. If your games fail - + L L - + ZL ZL @@ -3689,7 +3797,7 @@ These settings are experimental, and may cause black screens. If your games fail - + Plus Plus @@ -3702,15 +3810,15 @@ These settings are experimental, and may cause black screens. If your games fail - - + + R R - + ZR ZR @@ -3755,7 +3863,7 @@ These settings are experimental, and may cause black screens. If your games fail - + Right Stick Stick Droit @@ -3770,242 +3878,242 @@ These settings are experimental, and may cause black screens. If your games fail Configurer - - - - + + + + Clear Effacer - - - - - + + + + + [not set] [non défini] - - - + + + Invert button Inverser les boutons - - + + Toggle button Bouton d'activation - + Turbo button Bouton Turbo - - + + Invert axis Inverser l'axe - - - + + + Set threshold Définir le seuil - - + + Choose a value between 0% and 100% Choisissez une valeur entre 0% et 100% - + Toggle axis Basculer les axes - + Set gyro threshold Définir le seuil du gyroscope - + Calibrate sensor Calibrer le capteur - + Map Analog Stick Mapper le stick analogique - + After pressing OK, first move your joystick horizontally, and then vertically. To invert the axes, first move your joystick vertically, and then horizontally. Après avoir appuyé sur OK, bougez d'abord votre joystick horizontalement, puis verticalement. Pour inverser les axes, bougez d'abord votre joystick verticalement, puis horizontalement. - + Center axis Axe central - - + + Deadzone: %1% Zone morte : %1% - - + + Modifier Range: %1% Modification de la course : %1% - - + + Pro Controller Manette Switch Pro - + Dual Joycons Deux Joycons - + Left Joycon Joycon gauche - + Right Joycon Joycon droit - + Handheld Mode Portable - + GameCube Controller Manette GameCube - + Poke Ball Plus Poké Ball Plus - + NES Controller Manette NES - + SNES Controller Manette SNES - + N64 Controller Manette N64 - + Sega Genesis Sega Genesis - + Start / Pause Start / Pause - + Z Z - + Control Stick Stick de contrôle - + C-Stick C-Stick - + Shake! Secouez ! - + [waiting] [en attente] - + New Profile Nouveau Profil - + Enter a profile name: Entrez un nom de profil : - - + + Create Input Profile Créer un profil d'entrée - + The given profile name is not valid! Le nom de profil donné est invalide ! - + Failed to create the input profile "%1" Échec de la création du profil d'entrée "%1" - + Delete Input Profile Supprimer le profil d'entrée - + Failed to delete the input profile "%1" Échec de la suppression du profil d'entrée "%1" - + Load Input Profile Charger le profil d'entrée - + Failed to load the input profile "%1" Échec du chargement du profil d'entrée "%1" - + Save Input Profile Sauvegarder le profil d'entrée - + Failed to save the input profile "%1" Échec de la sauvegarde du profil d'entrée "%1" @@ -4062,7 +4170,7 @@ Pour inverser les axes, bougez d'abord votre joystick verticalement, puis h - + Configure Configurer @@ -4098,7 +4206,7 @@ Pour inverser les axes, bougez d'abord votre joystick verticalement, puis h - + Test Tester @@ -4117,7 +4225,7 @@ Pour inverser les axes, bougez d'abord votre joystick verticalement, puis h <a href='https://yuzu-emu.org/wiki/using-a-controller-or-android-phone-for-motion-or-touch-input'><span style="text-decoration: underline; color:#039be5;">Plus d'informations</span></a> - + %1:%2 %1:%2 @@ -4126,77 +4234,77 @@ Pour inverser les axes, bougez d'abord votre joystick verticalement, puis h yuzu - + <a href='https://eden-emulator.github.io/wiki/using-a-controller-or-android-phone-for-motion-or-touch-input'><span style="text-decoration: underline; color:#039be5;">Learn More</span></a> - + Port number has invalid characters Le numéro de port contient des caractères invalides - - - - - - - eden + + + + + + + Eden - + Port has to be in range 0 and 65353 Le port doit être entre 0 et 65353 - + IP address is not valid L'adresse IP n'est pas valide - + This UDP server already exists Ce serveur UDP existe déjà - + Unable to add more than 8 servers Impossible d'ajouter plus de 8 serveurs - + Testing Essai - + Configuring Configuration - + Test Successful Test réussi - + Successfully received data from the server. Données reçues du serveur avec succès. - + Test Failed Test échoué - + 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 du serveur.<br>Veuillez vérifier que le serveur est correctement configuré et que l'adresse et le port sont corrects. - + UDP Test or calibration configuration is in progress.<br>Please wait for them to finish. Le test UDP ou la configuration de l'étalonnage est en cours.<br>Veuillez attendre qu'ils se terminent. @@ -4323,7 +4431,12 @@ Les valeurs actuelles sont respectivement de %1% et %2%. Interface Réseau - + + Enable Airplane Mode + + + + None Aucun @@ -4381,52 +4494,52 @@ Les valeurs actuelles sont respectivement de %1% et %2%. Certains paramètres ne sont disponibles que lorsqu'un jeu n'est pas en cours d'exécution. - + Add-Ons Extensions - + System Système - + CPU CPU - + Graphics Graphiques - + Adv. Graphics Adv. Graphiques - + GPU Extensions - + Audio Audio - + Input Profiles Profils d'entrée - + Linux Linux - + Properties Propriétés @@ -4444,12 +4557,12 @@ Les valeurs actuelles sont respectivement de %1% et %2%. Extensions - + Patch Name Nom du patch - + Version Version @@ -4487,27 +4600,32 @@ Les valeurs actuelles sont respectivement de %1% et %2%. Mettre une image - + + Select Avatar + + + + Add Ajouter - + Rename Renommer - + Remove Supprimer - + Profile management is available only when game is not running. La gestion de profil est disponible que lorsqu'un jeu n'est pas en cours d'exécution. - + %1 %2 %1 is the profile username, %2 is the formatted UUID (e.g. 00112233-4455-6677-8899-AABBCCDDEEFF)) @@ -4515,100 +4633,189 @@ Les valeurs actuelles sont respectivement de %1% et %2%. %2 - + Enter Username Entrez un nom d'utilisateur - + Users Utilisateurs - + Enter a username for the new user: Entrez un nom d'utilisateur pour le nouvel utilisateur : - + Enter a new username: Entrez un nouveau nom d'utilisateur : - + + Error saving user image + + + + + Unable to save image to file + + + + Select User Image Sélectionner l'image de l'utilisateur - - JPEG Images (*.jpg *.jpeg) - Images JPEG (*.jpg *.jpeg) + + Image Formats (*.jpg *.jpeg *.png *.bmp) + - + + No firmware available + Pas de firmware disponible + + + + Please install the firmware to use firmware avatars. + + + + + + Error loading archive + + + + + Archive is not available. Please install/reinstall firmware. + + + + + Archive does not contain romfs. It is probably corrupt. + + + + + Error extracting archive + + + + + Archive could not be extracted. It is probably corrupt. + + + + + Error finding image directory + + + + + Failed to find image directory in the archive. + + + + + No images found + + + + + No avatar images were found in the archive. + + + + JPEG Images (*.jpg *.jpeg) + Images JPEG (*.jpg *.jpeg) + + + Error deleting image Erreur dans la suppression de l'image - + Error occurred attempting to overwrite previous image at: %1. Une erreur est survenue en essayant de changer l'image précédente à : %1. - + Error deleting file Erreur dans la suppression du fichier - + Unable to delete existing file: %1. Impossible de supprimer le fichier existant : %1. - + Error creating user image directory Erreur dans la création du répertoire d'image de l'utilisateur - + Unable to create directory %1 for storing user images. Impossible de créer le répertoire %1 pour stocker les images de l'utilisateur. - Error copying user image - Erreur dans la copie de l'image de l'utilisateur + Erreur dans la copie de l'image de l'utilisateur - Unable to copy image from %1 to %2 - Impossible de copier l'image de %1 à %2 + Impossible de copier l'image de %1 à %2 - Error resizing user image - Erreur de redimensionnement de l'image utilisateur + Erreur de redimensionnement de l'image utilisateur - Unable to resize image - Impossible de redimensionner l'image + Impossible de redimensionner l'image + + + + ConfigureProfileManagerAvatarDialog + + + Select + + + + + Cancel + Annuler + + + + Background Color + + + + + Select Firmware Avatar + ConfigureProfileManagerDeleteDialog - + Delete this user? All of the user's save data will be deleted. Supprimer cet utilisateur ? Toutes les données de l'utilisateur vont être supprimées. - + Confirm Delete Confirmer la suppression - + Name: %1 UUID: %2 Nom : %1 @@ -4661,7 +4868,7 @@ UUID : %2 - + Enable Activer @@ -4672,7 +4879,7 @@ UUID : %2 - + Not connected Non connecté @@ -4682,63 +4889,63 @@ UUID : %2 Restaurer les défauts - + Clear Effacer - + [not set] [non défini] - + Invert axis Inverser l'axe - - + + Deadzone: %1% Zone morte : %1% - + Error enabling ring input Erreur lors de l'activation de la saisie de l'anneau - + Direct Joycon driver is not enabled Le pilote direct Joycon n'est pas activé - + Configuring Configuration - + The current mapped device doesn't support the ring controller Le périphérique mappé actuel ne prend pas en charge le contrôleur en anneau - + The current mapped device doesn't have a ring attached L'appareil actuellement mappé n'a pas d'anneau attaché - + The current mapped device is not connected L'appareil actuellement mappé n'est pas connecté - + Unexpected driver result %1 Résultat de pilote inattendu %1 - + [waiting] [en attente] @@ -4780,7 +4987,7 @@ UUID : %2 - <html><head/><body><p>Reads controller input from scripts in the same format as TAS-nx scripts.<br/>For a more detailed explanation, please consult the <a href="https://eden-emulator.github.io/help/feature/tas/"><span style=" text-decoration: underline; color:#039be5;">help page</span></a> on the eden website.</p></body></html> + <html><head/><body><p>Reads controller input from scripts in the same format as TAS-nx scripts.<br/>For a more detailed explanation, please consult the <a href="https://eden-emulator.github.io/help/feature/tas/"><span style=" text-decoration: underline; color:#039be5;">help page</span></a> on the Eden website.</p></body></html> @@ -4832,12 +5039,12 @@ UUID : %2 ConfigureTasDialog - + TAS Configuration Configuration du TAS - + Select TAS Load Directory... Sélectionner le dossier de chargement du TAS... @@ -4947,7 +5154,7 @@ Faites glisser les points pour modifier la position ou double-cliquez sur les ce - Warning: The settings in this page affect the inner workings of eden's emulated touchscreen. Changing them may result in undesirable behavior, such as the touchscreen partially or not working. You should only use this page if you know what you are doing. + Warning: The settings in this page affect the inner workings of Eden's emulated touchscreen. Changing them may result in undesirable behavior, such as the touchscreen partially or not working. You should only use this page if you know what you are doing. @@ -5267,6 +5474,16 @@ Faites glisser les points pour modifier la position ou double-cliquez sur les ce Web Web + + + Eden Web Service + + + + + Generate + + yuzu Web Service Service Web yuzu @@ -5276,42 +5493,29 @@ Faites glisser les points pour modifier la position ou double-cliquez sur les ce En fournissant votre surnom et token, vous acceptez de permettre à yuzu de collecter des données d'utilisation supplémentaires, qui peuvent contenir des informations d'identification de l'utilisateur. - - eden Web Service - - - - - By providing your username and token, you agree to allow eden to collect additional usage data, which may include user identifying information. - - - - Verify - Vérifier + Vérifier - Sign up - Se connecter + Se connecter - + Token: Token : - + Username: Pseudonyme : - What is my token? - Qu'est ce que mon token ? + Qu'est ce que mon token ? - + 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 lorsqu'un salon publique n'est pas hébergée. @@ -5336,12 +5540,12 @@ Faites glisser les points pour modifier la position ou double-cliquez sur les ce Regénérer - + Discord Presence Statut Discord - + Show Current Game in your Discord Status Afficher le jeu en cours dans le Statut Discord @@ -5350,24 +5554,8 @@ Faites glisser les points pour modifier la position ou double-cliquez sur les ce <a href='https://yuzu-emu.org/help/feature/telemetry/'><span style="text-decoration: underline; color:#039be5;">En savoir plus</span></a> - <a href='https://profile.yuzu-emu.org/'><span style="text-decoration: underline; color:#039be5;">Sign up</span></a> - <a href='https://profile.yuzu-emu.org/'><span style="text-decoration: underline; color:#039be5;">Se connecter</span></a> - - - - <a href='https://evilperson1337.notion.site/Hosting-a-Room-Inside-of-Eden-20457c2edaf680108abac6215a79acdb'><span style="text-decoration: underline; color:#039be5;">What is my token?</span></a> - - - - - Warning - - - - - Verification is currently nonfunctional, instead generate a random 48-character string with only lowercase a-z. - + <a href='https://profile.yuzu-emu.org/'><span style="text-decoration: underline; color:#039be5;">Se connecter</span></a> <a href='https://yuzu-emu.org/wiki/yuzu-web-service/'><span style="text-decoration: underline; color:#039be5;">What is my token?</span></a> @@ -5390,10 +5578,9 @@ Faites glisser les points pour modifier la position ou double-cliquez sur les ce Le token n'a pas été vérifié. Le changement à votre token n'a pas été enregistré. - Unverified, please click Verify before saving configuration Tooltip - Non-verifié, veuillez clicker Verifier avant de sauvergarder la configuration + Non-verifié, veuillez clicker Verifier avant de sauvergarder la configuration Verifying... @@ -5417,20 +5604,67 @@ Faites glisser les points pour modifier la position ou double-cliquez sur les ce Verification failed. Check that you have entered your token correctly, and that your internet connection is working. Échec de la vérification. Vérifiez si vous avez correctement entrez votre token, et que votre connection internet fonctionne. + + + + All Good + Tooltip + + + + + Must be between 4-20 characters + Tooltip + + + + + Must be 48 characters, and lowercase a-z + Tooltip + + ControllerDialog - + Controller P1 Contrôleur joueur 1 - + &Controller P1 &Contrôleur joueur 1 + + DepsDialog + + + Eden Dependencies + + + + + <html><head/><body><p><span style=" font-size:28pt;">Eden Dependencies</span></p></body></html> + + + + + <html><head/><body><p>The projects that make Eden possible</p></body></html> + + + + + Dependency + + + + + Version + Version + + DirectConnect @@ -5536,7 +5770,12 @@ Faites glisser les points pour modifier la position ou double-cliquez sur les ce - Creating a room failed. Please retry. Restarting eden might be necessary. + Creating a room failed. Please retry. Restarting Eden might be necessary. + + + + + Version mismatch! Please update to the latest version of Eden. If the problem persists, contact the room host and ask them to update the server. @@ -5544,11 +5783,6 @@ Faites glisser les points pour modifier la position ou double-cliquez sur les ce 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 eden. If the problem persists, contact the room host and ask them to update the server. - - Incorrect password. @@ -5610,7 +5844,7 @@ Veuillez aller dans Configurer -> Système -> Réseau et faites un choix.< Télémétrie - + Broken Vulkan Installation Detected Détection d'une installation Vulkan endommagée @@ -5619,106 +5853,105 @@ Veuillez aller dans Configurer -> Système -> Réseau et faites un choix.< L'initialisation de Vulkan a échoué lors du démarrage.<br><br>Cliquez <a href='https://yuzu-emu.org/wiki/faq/#yuzu-starts-with-the-error-broken-vulkan-installation-detected'>ici pour obtenir des instructions pour résoudre le problème</a>. - + Running a game TRANSLATORS: This string is shown to the user to explain why yuzu needs to prevent the computer from sleeping Exécution d'un jeu - + Loading Web Applet... Chargement de l'applet web... - - + + Disable Web Applet Désactiver l'applet web - + Disabling the web applet can lead to undefined behavior and should only be used with Super Mario 3D All-Stars. Are you sure you want to disable the web applet? (This can be re-enabled in the Debug settings.) La désactivation de l'applet Web peut entraîner un comportement indéfini et ne doit être utilisée qu'avec Super Mario 3D All-Stars. Voulez-vous vraiment désactiver l'applet Web ? (Cela peut être réactivé dans les paramètres de débogage.) - + The amount of shaders currently being built La quantité de shaders en cours de construction - + The current selected resolution scaling multiplier. Le multiplicateur de mise à l'échelle de résolution actuellement sélectionné. - + Current emulation speed. Values higher or lower than 100% indicate emulation is running faster or slower than a Switch. Valeur actuelle de la vitesse de l'émulation. Des valeurs plus hautes ou plus basses que 100% indique que l'émulation fonctionne plus vite ou plus lentement qu'une véritable Switch. - + How many frames per second the game is currently displaying. This will vary from game to game and scene to scene. Combien d'image par seconde le jeu est en train d'afficher. Ceci vas varier de jeu en jeu et de scènes en scènes. - + Time taken to emulate a Switch frame, not counting framelimiting or v-sync. For full-speed emulation this should be at most 16.67 ms. Temps pris pour émuler une image par seconde de la switch, sans compter le limiteur d'image par seconde ou la synchronisation verticale. Pour une émulation à pleine vitesse, ceci devrait être au maximum à 16.67 ms. - + Unmute Remettre le son - + Mute Couper le son - + Reset Volume Réinitialiser le volume - + &Clear Recent Files &Effacer les fichiers récents - + &Continue &Continuer - + &Pause &Pause - Warning Outdated Game Format - Avertissement : Le Format de jeu est dépassé + Avertissement : Le Format de jeu est dépassé You are using the deconstructed ROM directory format for this game, which is an outdated format that has been superseded by others such as NCA, NAX, XCI, or NSP. Deconstructed ROM directories lack icons, metadata, and update support.<br><br>For an explanation of the various Switch formats yuzu supports, <a href='https://yuzu-emu.org/wiki/overview-of-switch-game-formats'>check out our wiki</a>. This message will not be shown again. Vous utilisez le format de répertoire ROM déconstruit pour ce jeu, qui est un format obsolète remplacé par d'autres tels que NCA, NAX, XCI ou NSP. Les répertoires de ROM déconstruits ne contiennent pas d'icônes, de métadonnées ni de prise en charge des mises à jour.<br><br>Pour obtenir des explications sur les différents formats pris en charge par yuzu, <a href='https://yuzu-emu.org/wiki/overview-of-switch-game-formats'>consultez notre wiki</a>. Ce message ne s'affichera plus. - - + + Error while loading ROM! Erreur lors du chargement de la ROM ! - + The ROM format is not supported. Le format de la ROM n'est pas supporté. - + An error occurred initializing the video core. Une erreur s'est produite lors de l'initialisation du noyau dédié à la vidéo. @@ -5727,7 +5960,7 @@ Veuillez aller dans Configurer -> Système -> Réseau et faites un choix.< yuzu a rencontré une erreur en exécutant le cœur vidéo. Cela est généralement causé par des pilotes graphiques trop anciens. Veuillez consulter les logs pour plus d'informations. Pour savoir comment accéder aux logs, veuillez vous référer à la page suivante : <a href='https://yuzu-emu.org/help/reference/log-files/'>Comment partager un fichier de log </a>. - + Error while loading ROM! %1 %1 signifies a numeric error code. Erreur lors du chargement de la ROM ! %1 @@ -5738,473 +5971,405 @@ Veuillez aller dans Configurer -> Système -> Réseau et faites un choix.< %1<br>Veuillez suivre <a href='https://yuzu-emu.org/help/quickstart/'>le guide de démarrage rapide yuzu</a> pour retransférer vos fichiers.<br>Vous pouvez vous référer au wiki yuzu</a> ou le Discord yuzu</a> pour de l'assistance. - + Vulkan initialization failed during boot.<br><br>Click <a href='https://eden-emulator.github.io/wiki/faq/#yuzu-starts-with-the-error-broken-vulkan-installation-detected'>here for instructions to fix the issue</a>. - - Game Updates Warning - - - - - The game you are trying to launch is known to have performance or booting issues when updates are applied. Please try increasing the memory layout to 6GB or 8GB if any issues occur.<br><br>Press "OK" to continue launching, or "Cancel" to cancel the launch. - - - - - Don't show again for this game - - - - - You are using the deconstructed ROM directory format for this game, which is an outdated format that has been superseded by others such as NCA, NAX, XCI, or NSP. Deconstructed ROM directories lack icons, metadata, and update support.<br><br>For an explanation of the various Switch formats eden supports, <a href='https://eden-emulator.github.io/wiki/overview-of-switch-game-formats'>check out our wiki</a>. This message will not be shown again. - - - - - eden has encountered an error while running the video core. This is usually caused by outdated GPU drivers, including integrated ones. Please see the log for more details. For more information on accessing the log, please see the following page: <a href='https://eden-emulator.github.io/help/reference/log-files/'>How to Upload the Log File</a>. - - - - - %1<br>Please redump your files or ask on Discord for help. - %1 signifies an error string. - - - - + An unknown error occurred. Please see the log for more details. Une erreur inconnue est survenue. Veuillez consulter le journal des logs pour plus de détails. - + (64-bit) (64-bit) - + (32-bit) (32-bit) - + %1 %2 %1 is the title name. %2 indicates if the title is 64-bit or 32-bit %1 %2 - + Closing software... Fermeture du logiciel... - + Save Data Enregistrer les données - + Mod Data Donnés du Mod - + Error Opening %1 Folder Erreur dans l'ouverture du dossier %1. - - + + Folder does not exist! Le dossier n'existe pas ! - Error Opening Transferable Shader Cache - Erreur lors de l'ouverture des Shader Cache Transferable + Erreur lors de l'ouverture des Shader Cache Transferable - Failed to create the shader cache directory for this title. - Impossible de créer le dossier de cache du shader pour ce jeu. + Impossible de créer le dossier de cache du shader pour ce jeu. - Error Removing Contents - Erreur en enlevant le contenu + Erreur en enlevant le contenu - Error Removing Update - Erreur en enlevant la Mise à Jour + Erreur en enlevant la Mise à Jour - Error Removing DLC - Erreur en enlevant le DLC + Erreur en enlevant le DLC - + Remove Installed Game Contents? Enlever les données du jeu installé ? - + Remove Installed Game Update? Enlever la mise à jour du jeu installé ? - + Remove Installed Game DLC? Enlever le DLC du jeu installé ? - + Remove Entry Supprimer l'entrée - - - - - - Successfully Removed - Supprimé avec succès + Supprimé avec succès - Successfully removed the installed base game. - Suppression du jeu de base installé avec succès. + Suppression du jeu de base installé avec succès. - The base game is not installed in the NAND and cannot be removed. - Le jeu de base n'est pas installé dans la NAND et ne peut pas être supprimé. + Le jeu de base n'est pas installé dans la NAND et ne peut pas être supprimé. - Successfully removed the installed update. - Suppression de la mise à jour installée avec succès. + Suppression de la mise à jour installée avec succès. - There is no update installed for this title. - Il n'y a pas de mise à jour installée pour ce titre. + Il n'y a pas de mise à jour installée pour ce titre. - There are no DLC installed for this title. - Il n'y a pas de DLC installé pour ce titre. + Il n'y a pas de DLC installé pour ce titre. - Successfully removed %1 installed DLC. - Suppression de %1 DLC installé(s) avec succès. + Suppression de %1 DLC installé(s) avec succès. - + Delete OpenGL Transferable Shader Cache? Supprimer la Cache OpenGL de Shader Transférable? - + Delete Vulkan Transferable Shader Cache? Supprimer la Cache Vulkan de Shader Transférable? - + Delete All Transferable Shader Caches? Supprimer Toutes les Caches de Shader Transférable? - + Remove Custom Game Configuration? Supprimer la configuration personnalisée du jeu? - + Remove Cache Storage? Supprimer le stockage du cache ? - + Remove File Supprimer fichier - + Remove Play Time Data Supprimer les données de temps de jeu - + Reset play time? Réinitialiser le temps de jeu ? - - Error Removing Transferable Shader Cache - Erreur lors de la suppression du cache de shader transférable + Erreur lors de la suppression du cache de shader transférable - - A shader cache for this title does not exist. - Un shader cache pour ce titre n'existe pas. + Un shader cache pour ce titre n'existe pas. - Successfully removed the transferable shader cache. - Suppression du cache de shader transférable avec succès. + Suppression du cache de shader transférable avec succès. - Failed to remove the transferable shader cache. - Échec de la suppression du cache de shader transférable. + Échec de la suppression du cache de shader transférable. - Error Removing Vulkan Driver Pipeline Cache - Erreur lors de la suppression du cache de pipeline de pilotes Vulkan + Erreur lors de la suppression du cache de pipeline de pilotes Vulkan - Failed to remove the driver pipeline cache. - Échec de la suppression du cache de pipeline de pilotes. + Échec de la suppression du cache de pipeline de pilotes. - - Error Removing Transferable Shader Caches - Erreur durant la Suppression des Caches de Shader Transférable + Erreur durant la Suppression des Caches de Shader Transférable - Successfully removed the transferable shader caches. - Suppression des caches de shader transférable effectuée avec succès. + Suppression des caches de shader transférable effectuée avec succès. - Failed to remove the transferable shader cache directory. - Impossible de supprimer le dossier de la cache de shader transférable. + Impossible de supprimer le dossier de la cache de shader transférable. - - Error Removing Custom Configuration - Erreur lors de la suppression de la configuration personnalisée + Erreur lors de la suppression de la configuration personnalisée - A custom configuration for this title does not exist. - Il n'existe pas de configuration personnalisée pour ce titre. + Il n'existe pas de configuration personnalisée pour ce titre. - Successfully removed the custom game configuration. - Suppression de la configuration de jeu personnalisée avec succès. + Suppression de la configuration de jeu personnalisée avec succès. - Failed to remove the custom game configuration. - Échec de la suppression de la configuration personnalisée du jeu. + Échec de la suppression de la configuration personnalisée du jeu. - - + + RomFS Extraction Failed! L'extraction de la RomFS a échoué ! - + There was an error copying the RomFS files or the user cancelled the operation. Une erreur s'est produite lors de la copie des fichiers RomFS ou l'utilisateur a annulé l'opération. - + Full Plein - + Skeleton Squelette - + Select RomFS Dump Mode Sélectionnez le mode d'extraction de la RomFS - + Please select the how you would like the RomFS dumped.<br>Full will copy all of the files into the new directory while <br>skeleton will only create the directory structure. Veuillez sélectionner la manière dont vous souhaitez que le fichier RomFS soit extrait.<br>Full copiera tous les fichiers dans le nouveau répertoire, tandis que<br>skeleton créera uniquement la structure de répertoires. - + There is not enough free space at %1 to extract the RomFS. Please free up space or select a different dump directory at Emulation > Configure > System > Filesystem > Dump Root Il n'y a pas assez d'espace libre dans %1 pour extraire la RomFS. Veuillez libérer de l'espace ou sélectionner un autre dossier d'extraction dans Émulation > Configurer > Système > Système de fichiers > Extraire la racine - + Extracting RomFS... Extraction de la RomFS ... - - - - - + + Cancel Annuler - + RomFS Extraction Succeeded! Extraction de la RomFS réussi ! - - - + The operation completed successfully. L'opération s'est déroulée avec succès. - Integrity verification couldn't be performed! - La vérification de l'intégrité n'a pas pu être effectuée ! + La vérification de l'intégrité n'a pas pu être effectuée ! - File contents were not checked for validity. - La validité du contenu du fichier n'a pas été vérifiée. + La validité du contenu du fichier n'a pas été vérifiée. - - Verifying integrity... - Vérification de l'intégrité... + Vérification de l'intégrité... - - Integrity verification succeeded! - La vérification de l'intégrité a réussi ! + La vérification de l'intégrité a réussi ! - - Integrity verification failed! - La vérification de l'intégrité a échoué ! + La vérification de l'intégrité a échoué ! - File contents may be corrupt. - Le contenu du fichier pourrait être corrompu. + Le contenu du fichier pourrait être corrompu. - - - - Create Shortcut - Créer un raccourci + Créer un raccourci - Do you want to launch the game in fullscreen? - Voulez-vous lancer le jeu en plein écran ? + Voulez-vous lancer le jeu en plein écran ? - Successfully created a shortcut to %1 - Création réussie d'un raccourci vers %1 + Création réussie d'un raccourci vers %1 - This will create a shortcut to the current AppImage. This may not work well if you update. Continue? - Cela créera un raccourci vers l'AppImage actuelle. Cela peut ne pas fonctionner correctement si vous mettez à jour. Continuer ? + Cela créera un raccourci vers l'AppImage actuelle. Cela peut ne pas fonctionner correctement si vous mettez à jour. Continuer ? - Failed to create a shortcut to %1 - Impossible de créer un raccourci vers %1 + Impossible de créer un raccourci vers %1 - Create Icon - Créer une icône + Créer une icône - Cannot create icon file. Path "%1" does not exist and cannot be created. - Impossible de créer le fichier d'icône. Le chemin "%1" n'existe pas et ne peut pas être créé. + Impossible de créer le fichier d'icône. Le chemin "%1" n'existe pas et ne peut pas être créé. - + + Warning: Outdated Game Format + + + + + You are using the deconstructed ROM directory format for this game, which is an outdated format that has been superseded by others such as NCA, NAX, XCI, or NSP. Deconstructed ROM directories lack icons, metadata, and update support.<br><br>For an explanation of the various Switch formats Eden supports, <a href='https://eden-emulator.github.io/wiki/overview-of-switch-game-formats'>check out our wiki</a>. This message will not be shown again. + + + + + Eden has encountered an error while running the video core. This is usually caused by outdated GPU drivers, including integrated ones. Please see the log for more details. For more information on accessing the log, please see the following page: <a href='https://yuzu-mirror.github.io/help/reference/log-files/'>How to Upload the Log File</a>. + + + + + %1<br>Please redump your files or ask on Discord/Revolt for help. + %1 signifies an error string. + + + + Error Opening %1 Erreur lors de l'ouverture %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. - + Switch Executable (%1);;All Files (*.*) %1 is an identifier for the Switch executable file extensions. Exécutable Switch (%1);;Tous les fichiers (*.*) - + Load File Charger un fichier - + Open Extracted ROM Directory Ouvrir le dossier des ROM extraites - + Invalid Directory Selected Destination sélectionnée invalide - + The directory you have selected does not contain a 'main' file. Le répertoire que vous avez sélectionné ne contient pas de fichier "main". - + Installable Switch File (*.nca *.nsp *.xci);;Nintendo Content Archive (*.nca);;Nintendo Submission Package (*.nsp);;NX Cartridge Image (*.xci) Fichier Switch installable (*.nca *.nsp *.xci);;Nintendo Content Archive (*.nca);;Nintendo Submission Package (*.nsp);;NX Cartridge Image (*.xci) - + Install Files Installer les fichiers - + %n file(s) remaining %n fichier restant @@ -6212,25 +6377,25 @@ Veuillez aller dans Configurer -> Système -> Réseau et faites un choix.< - + Installing file "%1"... Installation du fichier "%1" ... - - + + Install Results Résultats d'installation - + To avoid possible conflicts, we discourage users from installing base games to the NAND. Please, only use this feature to install updates and DLC. Pour éviter d'éventuels conflits, nous déconseillons aux utilisateurs d'installer des jeux de base sur la NAND. Veuillez n'utiliser cette fonctionnalité que pour installer des mises à jour et des DLC. - + %n file(s) were newly installed @@ -6239,7 +6404,7 @@ Veuillez n'utiliser cette fonctionnalité que pour installer des mises à j - + %n file(s) were overwritten @@ -6248,7 +6413,7 @@ Veuillez n'utiliser cette fonctionnalité que pour installer des mises à j - + %n file(s) failed to install @@ -6257,242 +6422,310 @@ Veuillez n'utiliser cette fonctionnalité que pour installer des mises à j - + System Application Application Système - + System Archive Archive Système - + System Application Update Mise à jour de l'application système - + Firmware Package (Type A) Paquet micrologiciel (Type A) - + Firmware Package (Type B) Paquet micrologiciel (Type B) - + Game Jeu - + Game Update Mise à jour de jeu - + Game DLC DLC de jeu - + Delta Title Titre Delta - + Select NCA Install Type... Sélectionner le type d'installation du NCA... - + Please select the type of title you would like to install this NCA as: (In most instances, the default 'Game' is fine.) Veuillez sélectionner le type de titre auquel vous voulez installer ce NCA : (Dans la plupart des cas, le titre par défaut : 'Jeu' est correct.) - + Failed to Install Échec de l'installation - + The title type you selected for the NCA is invalid. Le type de titre que vous avez sélectionné pour le NCA n'est pas valide. - + File not found Fichier non trouvé - + File "%1" not found Fichier "%1" non trouvé - + OK OK - - + + Hardware requirements not met Éxigences matérielles non respectées - - + + Your system does not meet the recommended hardware requirements. Compatibility reporting has been disabled. Votre système ne correspond pas aux éxigences matérielles. Les rapports de comptabilité ont été désactivés. - + Missing yuzu Account Compte yuzu manquant - - In order to submit a game compatibility test case, you must link your eden account.<br><br/>To link your eden account, go to Emulation &gt; Configuration &gt; Web. + + In order to submit a game compatibility test case, you must set up your web token and username.<br><br/>To link your eden account, go to Emulation &gt; Configuration &gt; Web. - - Install decryption keys and restart eden before attempting to install firmware. + + + Install decryption keys and restart Eden before attempting to install firmware. - - Firmware installation cancelled, firmware may be in bad state, restart eden or re-install firmware. + + Select Dumped Firmware ZIP - - Encryption keys are missing. + + Zipped Archives (*.zip) - - Are you sure you want to close eden? + + Firmware cleanup failed - - - - eden + + Failed to clean up extracted firmware cache. +Check write permissions in the system temp directory and try again. +OS reported error: %1 - - The currently running application has requested eden to not exit. + + Please install firmware to use the Album applet. + + + + + Please install firmware to use the Cabinet applet. + + + + + Please install firmware to use the Mii editor. + + + + + Please install firmware to use the Controller Menu. + + + + + Please install firmware to use the Home Menu. + + + + + Firmware Corrupted + + + + + Firmware Too New + + + + + +Continue anyways? + + + + + Don't show again + + + + + Please install firmware to use Starter. + + + + + Are you sure you want to close Eden? + + + + + + + Eden + + + + + The currently running application has requested Eden to not exit. Would you like to bypass this and exit anyway? + + + Encryption keys are missing. + + In order to submit a game compatibility test case, you must link your yuzu account.<br><br/>To link your yuzu account, go to Emulation &gt; Configuration &gt; Web. Pour soumettre un test de compatibilité pour un jeu, vous devez lier votre compte yuzu.<br><br/>Pour lier votre compte yuzu, aller à Emulation &gt; Configuration&gt; Web. - + Error opening URL Erreur lors de l'ouverture de l'URL - + Unable to open the URL "%1". Impossible d'ouvrir l'URL "%1". - + TAS Recording Enregistrement TAS - + Overwrite file of player 1? Écraser le fichier du joueur 1 ? - + Invalid config detected Configuration invalide détectée - + Handheld controller can't be used on docked mode. Pro controller will be selected. Le contrôleur portable ne peut pas être utilisé en mode TV. La manette pro sera sélectionné. - - + + Amiibo Amiibo - - + + The current amiibo has been removed L'amiibo actuel a été retiré - + Error Erreur - - + + The current game is not looking for amiibos Le jeu actuel ne cherche pas d'amiibos. - + Amiibo File (%1);; All Files (*.*) Fichier Amiibo (%1);; Tous les fichiers (*.*) - + Load Amiibo Charger un Amiibo - + Error loading Amiibo data Erreur lors du chargement des données Amiibo - + The selected file is not a valid amiibo Le fichier choisi n'est pas un amiibo valide - + The selected file is already on use Le fichier sélectionné est déjà utilisé - + An unknown error occurred Une erreur inconnue s'est produite - - Verification failed for the following files: %1 - La vérification a échoué pour les fichiers suivants : + La vérification a échoué pour les fichiers suivants : %1 - + + Keys not installed Clés non installées @@ -6501,255 +6734,215 @@ Would you like to bypass this and exit anyway? Installez les clés de décryptage et redémarrez yuzu avant d'essayer d'installer le firmware. - + Select Dumped Firmware Source Location Sélectionnez l'emplacement de la source du firmware extrait - Installing Firmware... - Installation du firmware... + Installation du firmware... - - - - Firmware install failed - L'installation du firmware a échoué + L'installation du firmware a échoué - Unable to locate potential firmware NCA files - Impossible de localiser les fichiers NCA du potentiel firmware + Impossible de localiser les fichiers NCA du potentiel firmware - Failed to delete one or more firmware file. - Échec de la suppression d'un ou plusieurs fichiers du firmware. + Échec de la suppression d'un ou plusieurs fichiers du firmware. Firmware installation cancelled, firmware may be in bad state, restart yuzu or re-install firmware. L'installation du firmware a été annulée, le firmware peut être dans un état défectueux. Redémarrez yuzu ou réinstallez le firmware. - One or more firmware files failed to copy into NAND. - Un ou plusieurs fichiers du firmware n'ont pas pu être copiés dans la NAND. + Un ou plusieurs fichiers du firmware n'ont pas pu être copiés dans la NAND. - Firmware integrity verification failed! - La vérification de l'intégrité du firmware a échoué ! + La vérification de l'intégrité du firmware a échoué ! - Select Dumped Keys Location - Sélectionner l'emplacement des clés extraites + Sélectionner l'emplacement des clés extraites - - - Decryption Keys install failed - L'installation des clés de décryptage a échoué + L'installation des clés de décryptage a échoué - prod.keys is a required decryption key file. - prod.keys est un fichier de clés de décryptage requis + prod.keys est un fichier de clés de décryptage requis - One or more keys failed to copy. - Une ou plusieurs clés n'ont pas pu être copiées. + Une ou plusieurs clés n'ont pas pu être copiées. - Decryption Keys install succeeded - L'installation des clés de décryptage a réussi + L'installation des clés de décryptage a réussi - Decryption Keys were successfully installed - Les clés de décryptage ont été installées avec succès + Les clés de décryptage ont été installées avec succès - Decryption Keys failed to initialize. Check that your dumping tools are up to date and re-dump keys. - L'initialisation des clés de décryptage a échoué. Vérifiez que vos outils de dump sont à jour et re-dumpez les clés. + L'initialisation des clés de décryptage a échoué. Vérifiez que vos outils de dump sont à jour et re-dumpez les clés. - - - - - - - + + + + + + No firmware available Pas de firmware disponible - Please install the firmware to use the Album applet. - Veuillez installer le firmware pour utiliser l'applet de l'album. + Veuillez installer le firmware pour utiliser l'applet de l'album. - + Album Applet Applet de l'album - + Album applet is not available. Please reinstall firmware. L'applet de l'album n'est pas disponible. Veuillez réinstaller le firmware. - Please install the firmware to use the Cabinet applet. - Veuillez installer le firmware pour utiliser l'applet du cabinet. + Veuillez installer le firmware pour utiliser l'applet du cabinet. - + Cabinet Applet Applet du cabinet - + Cabinet applet is not available. Please reinstall firmware. L'applet du cabinet n'est pas disponible. Veuillez réinstaller le firmware. - Please install the firmware to use the Mii editor. - Veuillez installer le firmware pour utiliser l'éditeur Mii. + Veuillez installer le firmware pour utiliser l'éditeur Mii. - + Mii Edit Applet Applet de l'éditeur Mii - + Mii editor is not available. Please reinstall firmware. L'éditeur Mii n'est pas disponible. Veuillez réinstaller le firmware. - Please install the firmware to use the Controller Menu. - Veuillez installer le firmware pour utiliser le menu des manettes. + Veuillez installer le firmware pour utiliser le menu des manettes. - + Controller Applet Applet Contrôleur - + Controller Menu is not available. Please reinstall firmware. Le menu des manettes n'est pas disponible. Veuillez réinstaller le firmware. - - Please install the firmware to use the Home Menu. - - - - - + Home Menu Applet - - + Home Menu is not available. Please reinstall firmware. - - Please install the firmware to use Starter. - - - - + Starter Applet - + Starter is not available. Please reinstall firmware. - - Please install firmware to use the home menu. - - - - + Capture Screenshot Capture d'écran - + PNG Image (*.png) Image PNG (*.png) - + Update Available - + Update %1 for Eden is available. Would you like to download it? - + TAS state: Running %1/%2 État du TAS : En cours d'exécution %1/%2 - + TAS state: Recording %1 État du TAS : Enregistrement %1 - + TAS state: Idle %1/%2 État du TAS : Inactif %1:%2 - + TAS State: Invalid État du TAS : Invalide - + &Stop Running &Stopper l'exécution - + &Start &Start - + Stop R&ecording Stopper l'en&registrement - + R&ecord En&registrer - + Building: %n shader(s) Compilation: %n shader @@ -6757,18 +6950,18 @@ Would you like to download it? - + Scale: %1x %1 is the resolution scaling factor Échelle : %1x - + Speed: %1% / %2% Vitesse : %1% / %2% - + Speed: %1% Vitesse : %1% @@ -6777,44 +6970,44 @@ Would you like to download it? Jeu : %1 IPS (Débloqué) - + Game: %1 FPS Jeu : %1 FPS - + Frame: %1 ms Frame : %1 ms - + %1 %2 %1 %2 - - + + FSR FSR - + NO AA AUCUN AA - + VOLUME: MUTE VOLUME : MUET - + VOLUME: %1% Volume percentage (e.g. 50%) VOLUME : %1% - + Derivation Components Missing Composants de dérivation manquants @@ -6823,12 +7016,12 @@ Would you like to download it? Les clés de chiffrement sont manquantes. <br>Veuillez suivre <a href='https://yuzu-emu.org/help/quickstart/'>le guide de démarrage rapide yuzu</a> pour obtenir toutes vos clés, firmware et jeux. - + Select RomFS Dump Target Sélectionner la cible d'extraction du RomFS - + Please select which RomFS you would like to dump. Veuillez sélectionner quel RomFS vous voulez extraire. @@ -6841,7 +7034,7 @@ Would you like to download it? yuzu - + Are you sure you want to stop the emulation? Any unsaved progress will be lost. Êtes-vous sûr d'arrêter l'émulation ? Tout progrès non enregistré sera perdu. @@ -6854,102 +7047,102 @@ Would you like to bypass this and exit anyway? Voulez-vous ignorer ceci and quitter quand même ? - + None Aucune - + FXAA FXAA - + SMAA SMAA - + Nearest Le plus proche - + Bilinear Bilinéaire - + Bicubic Bicubique - + Gaussian Gaussien - + ScaleForce ScaleForce - + Area - + Docked Mode TV - + Handheld Mode Portable - + Normal Normal - + High Haut - + Extreme Extême - + Vulkan Vulkan - + OpenGL OpenGL - + Null Nul - + GLSL GLSL - + GLASM GLASM - + SPIRV SPIRV @@ -6957,13 +7150,13 @@ Voulez-vous ignorer ceci and quitter quand même ? GRenderWindow - - + + OpenGL not available! OpenGL n'est pas disponible ! - + OpenGL shared contexts are not supported. Les contextes OpenGL partagés ne sont pas pris en charge. @@ -6972,33 +7165,33 @@ Voulez-vous ignorer ceci and quitter quand même ? yuzu n'a pas été compilé avec le support OpenGL. - - eden has not been compiled with OpenGL support. + + Eden has not been compiled with OpenGL support. - - + + 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 n'avez pas les derniers pilotes graphiques. - + Error while initializing OpenGL 4.6! Erreur lors de l'initialisation d'OpenGL 4.6 ! - + Your GPU may not support OpenGL 4.6, 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.6 ou vous ne disposez pas du dernier pilote graphique: %1 - + Your GPU may not support one or more required OpenGL extensions. Please ensure you have the latest graphics driver.<br><br>GL Renderer:<br>%1<br><br>Unsupported extensions:<br>%2 Votre GPU peut ne pas prendre en charge une ou plusieurs extensions OpenGL requises. Veuillez vous assurer que vous disposez du dernier pilote graphique.<br><br>GL Renderer :<br>%1<br><br>Extensions non prises en charge :<br>%2 @@ -7006,128 +7199,128 @@ Voulez-vous ignorer ceci and quitter quand même ? GameList - + Favorite Préférer - + Start Game Démarrer le jeu - + Start Game without Custom Configuration Démarrer le jeu sans configuration personnalisée - + Open Save Data Location Ouvrir l'emplacement des données de sauvegarde - + Open Mod Data Location Ouvrir l'emplacement des données des mods - + Open Transferable Pipeline Cache Ouvrir le cache de pipelines transférable - + Remove Supprimer - + Remove Installed Update Supprimer mise à jour installée - + Remove All Installed DLC Supprimer tous les DLC installés - + Remove Custom Configuration Supprimer la configuration personnalisée - + Remove Play Time Data Supprimer les données de temps de jeu - + Remove Cache Storage Supprimer le stockage du cache - + Remove OpenGL Pipeline Cache Supprimer le cache de pipelines OpenGL - + Remove Vulkan Pipeline Cache Supprimer le cache de pipelines Vulkan - + Remove All Pipeline Caches Supprimer tous les caches de pipelines - + Remove All Installed Contents Supprimer tout le contenu installé - + Dump RomFS Extraire la RomFS - + Dump RomFS to SDMC Décharger RomFS vers SDMC - + Verify Integrity Vérifier l'intégrité - + Copy Title ID to Clipboard Copier l'ID du titre dans le Presse-papiers - + Navigate to GameDB entry Accédez à l'entrée GameDB - + Create Shortcut Créer un raccourci - + Add to Desktop Ajouter au bureau - + Add to Applications Menu Ajouter au menu des applications - + Configure Game @@ -7136,62 +7329,62 @@ Voulez-vous ignorer ceci and quitter quand même ? Propriétés - + Scan Subfolders Scanner les sous-dossiers - + Remove Game Directory Supprimer le répertoire du jeu - + ▲ Move Up ▲ Monter - + ▼ Move Down ▼ Descendre - + Open Directory Location Ouvrir l'emplacement du répertoire - + Clear Effacer - + Name Nom - + Compatibility Compatibilité - + Add-ons Extensions - + File type Type de fichier - + Size Taille - + Play time Temps de jeu @@ -7199,62 +7392,62 @@ Voulez-vous ignorer ceci and quitter quand même ? GameListItemCompat - + Ingame En jeu - + Game starts, but crashes or major glitches prevent it from being completed. Le jeu se lance, mais crash ou des bugs majeurs l'empêchent d'être complété. - + Perfect Parfait - + Game can be played without issues. Le jeu peut être joué sans problèmes. - + Playable Jouable - + Game functions with minor graphical or audio glitches and is playable from start to finish. Le jeu fonctionne avec des glitchs graphiques ou audio mineurs et est jouable du début à la fin. - + Intro/Menu Intro/Menu - + Game loads, but is unable to progress past the Start Screen. Le jeu charge, mais ne peut pas progresser après le menu de démarrage. - + Won't Boot Ne démarre pas - + The game crashes when attempting to startup. Le jeu crash au lancement. - + Not Tested Non testé - + The game has not yet been tested. Le jeu n'a pas encore été testé. @@ -7262,7 +7455,7 @@ Voulez-vous ignorer ceci and quitter quand même ? GameListPlaceholder - + Double-click to add a new folder to the game list Double-cliquez pour ajouter un nouveau dossier à la liste de jeux @@ -7270,7 +7463,7 @@ Voulez-vous ignorer ceci and quitter quand même ? GameListSearchField - + %1 of %n result(s) %1 sur %n résultat @@ -7278,12 +7471,12 @@ Voulez-vous ignorer ceci and quitter quand même ? - + Filter: Filtre : - + Enter pattern to filter Entrez un motif à filtrer @@ -7365,7 +7558,7 @@ Voulez-vous ignorer ceci and quitter quand même ? - Failed to announce the room to the public lobby. In order to host a room publicly, you must have a valid eden account configured in Emulation -> Configure -> Web. If you do not want to publish a room in the public lobby, then select Unlisted instead. + Failed to announce the room to the public lobby. In order to host a room publicly, you must have a valid Eden 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: @@ -7379,91 +7572,91 @@ Message de débogage : Hotkeys - + Audio Mute/Unmute Désactiver/Activer le son - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Main Window Fenêtre Principale - + Audio Volume Down Baisser le volume audio - + Audio Volume Up Augmenter le volume audio - + Capture Screenshot Prendre une capture d'ecran - + Change Adapting Filter Modifier le filtre d'adaptation - + Change Docked Mode Changer le mode de la station d'accueil - + Change GPU Accuracy Modifier la précision du GPU - + Configure Configurer - + Configure Current Game - + Continue/Pause Emulation Continuer/Suspendre l'Émulation - + Exit Fullscreen Quitter le plein écran @@ -7472,97 +7665,97 @@ Message de débogage : Quitter yuzu - - Exit eden + + Exit Eden - + Fullscreen Plein écran - + Load File Charger un fichier - + Load/Remove Amiibo Charger/Supprimer un Amiibo - + Multiplayer Browse Public Game Lobby Multijoueur parcourir le menu des jeux publics - + Multiplayer Create Room Multijoueur créer un salon - + Multiplayer Direct Connect to Room Multijoueur connexion directe au salon - + Multiplayer Leave Room Multijoueur quitter le salon - + Multiplayer Show Current Room Multijoueur afficher le salon actuel - + Restart Emulation Redémarrer l'Émulation - + Stop Emulation Arrêter l'Émulation - + TAS Record Enregistrement TAS - + TAS Reset Réinitialiser le TAS - + TAS Start/Stop Démarrer/Arrêter le TAS - + Toggle Filter Bar Activer la barre de filtre - + Toggle Framerate Limit Activer la limite de fréquence d'images - + Toggle Mouse Panning Activer le panoramique de la souris - + Toggle Renderdoc Capture Activer la capture renderdoc - + Toggle Status Bar Activer la barre d'état @@ -7570,22 +7763,22 @@ Message de débogage : InstallDialog - + Please confirm these are the files you wish to install. Veuillez confirmer que ce sont les fichiers que vous souhaitez installer. - + Installing an Update or DLC will overwrite the previously installed one. L'installation d'une mise à jour ou d'un DLC écrasera celle précédemment installée. - + Install Installer - + Install Files to NAND Installer des fichiers sur la NAND @@ -7593,7 +7786,7 @@ Message de débogage : LimitableInputDialog - + The text can't contain any of the following characters: %1 Le texte ne peut contenir aucun des caractères suivants : @@ -7740,152 +7933,207 @@ Message de débogage : &Fichiers récents - + + Open &Eden Folders + + + + &Emulation &Émulation - + &View &Vue - + &Reset Window Size &Réinitialiser la taille de la fenêtre - + &Debugging &Débogage - + Reset Window Size to &720p &Réinitialiser la taille de la fenêtre à 720p - + Reset Window Size to 720p Réinitialiser la taille de la fenêtre à 720p - + Reset Window Size to &900p Réinitialiser la taille de la fenêtre à &900p - + Reset Window Size to 900p Réinitialiser la taille de la fenêtre à 900p - + Reset Window Size to &1080p Réinitialiser la taille de la fenêtre à &1080p - + Reset Window Size to 1080p Réinitialiser la taille de la fenêtre à 1080p - + &Multiplayer &Multijoueur - + &Tools &Outils - + &Amiibo &Amiibo - + &TAS &TAS - + &Create Home Menu Shortcut - + &Help &Aide - + &Install Files to NAND... &Installer des fichiers sur la NAND... - + L&oad File... &Charger un fichier... - + Load &Folder... &Charger un dossier - + E&xit Q&uitter - + &Pause &Pause - + &Stop &Arrêter - + &Verify Installed Contents &Vérifier les contenus installés - - &About eden + + &Root Data Folder - - Open &eden Folder + + &NAND Folder - + + &SDMC Folder + + + + + &Mod Folder + + + + + &Log Folder + + + + + From Folder + + + + + From ZIP + + + + + &X + + + + + X (Twitter) + + + + + &Revolt + + + + + Revolt + + + + + &Eden Dependencies + + + + Open Home Menu - + &Discord - + Open &Setup - + &Desktop - + &Application Menu @@ -7894,97 +8142,97 @@ Message de débogage : &À propos de yuzu - + Single &Window Mode &Mode fenêtre unique - + Con&figure... &Configurer... - + Ctrl+, - + Display D&ock Widget Headers &Afficher les en-têtes du widget Dock - + Show &Filter Bar &Afficher la barre de filtre - + Show &Status Bar &Afficher la barre d'état - + Show Status Bar Afficher la barre d'état - + &Browse Public Game Lobby &Parcourir le menu des jeux publics - + &Create Room &Créer un salon - + &Leave Room &Quitter le salon - + &Direct Connect to Room &Connexion directe au salon - + &Show Current Room &Afficher le salon actuel - + F&ullscreen P&lein écran - + &Restart &Redémarrer - + Load/Remove &Amiibo... Charger/Retirer un &Amiibo… - + &Report Compatibility &Signaler la compatibilité - + Open &Mods Page Ouvrir la &page des mods - + Open &Quickstart Guide Ouvrir le &guide de démarrage rapide - + &FAQ &FAQ @@ -7993,77 +8241,82 @@ Message de débogage : Ouvrir le &dossier de Yuzu - + &Capture Screenshot &Capture d'écran - + Open &Album Ouvrir l'&album - + &Set Nickname and Owner &Définir le surnom et le propriétaire - + &Delete Game Data &Supprimer les données du jeu - + &Restore Amiibo &Restaurer l'amiibo - + &Format Amiibo &Formater l'amiibo - + Open &Mii Editor Ouvrir l'&éditeur Mii - + &Configure TAS... &Configurer TAS... - + Configure C&urrent Game... Configurer le j&eu actuel... - + &Start &Démarrer - + &Reset &Réinitialiser - + R&ecord En&registrer - + Open &Controller Menu Ouvrir le &menu des manettes - + Install Firmware Installer le firmware - + + &About Eden + + + + Install Decryption Keys Installer les clés de décryptage @@ -8071,26 +8324,36 @@ Message de débogage : MicroProfileDialog - &MicroProfile - &MicroProfile + &MicroProfile MigrationWorker - + Data was migrated successfully. - + Linking the old directory failed. You may need to re-run with administrative privileges on Windows. OS gave error: %1 - + + + +Note that your configuration and data will be shared with %1. +If this is not desirable, delete the following files: +%2 +%3 +%4 + + + + If you wish to clean up the files which were left in the old data location, you can do so by deleting the following directory: @@ -8150,37 +8413,37 @@ If you wish to clean up the files which were left in the old data location, you MultiplayerState - + Current connection status État actuel de la connexion - + Not Connected. Click here to find a room! Pas connecté. Cliquez ici pour trouver un salon ! - + Not Connected Non Connecté - + Connected Connecté - + New Messages Received Nouveaux messages reçus - + 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 d'héberger le salon à nouveau. @@ -8372,56 +8635,56 @@ p, li { white-space: pre-wrap; } Ne joue pas à un jeu - + Installed SD Titles Titres installés sur la SD - + Installed NAND Titles Titres installés sur la NAND - + System Titles Titres Système - + Add New Game Directory Ajouter un nouveau répertoire de jeu - + Favorites Favoris - - + + Shift Maj - - + + Ctrl Ctrl - - + + Alt Alt - - - - + + + + [not set] [non défini] @@ -8432,14 +8695,14 @@ p, li { white-space: pre-wrap; } Chapeau %1 %2 - - - - - - - - + + + + + + + + Axis %1%2 Axe %1%2 @@ -8450,357 +8713,357 @@ p, li { white-space: pre-wrap; } Bouton %1 - - - - - - + + + + + + [unknown] [inconnu] - - - + + + Left Gauche - - - + + + Right Droite - - - + + + Down Bas - - - + + + Up Haut - - + + Z Z - - + + R R - - + + L L - - + + A A - - + + B B - - + + X X - - + + Y Y - - + + Start Start - - + + L1 L1 - - + + L2 L2 - - + + L3 L3 - - + + R1 R1 - - + + R2 R2 - - + + R3 R3 - - + + Circle Cercle - - + + Cross Croix - - + + Square Carré - - + + Triangle Triangle - - + + Share Partager - - + + Options Options - - + + [undefined] [non défini] - + %1%2 %1%2 - - + + [invalid] [invalide] - - + + %1%2Hat %3 %1%2Chapeau %3 - - - + + + %1%2Axis %3 %1%2Axe %3 - - + + %1%2Axis %3,%4,%5 %1%2Axe %3,%4,%5 - - + + %1%2Motion %3 %1%2Mouvement %3 - - + + %1%2Button %3 %1%2Bouton %3 - - + + [unused] [inutilisé] - + ZR ZR - + ZL ZL - + SR SR - + SL SL - + Stick L Stick Gauche - + Stick R Stick Droit - + Plus Plus - + Minus Moins - - + + Home Home - + Capture Capture - + Touch Tactile - + Wheel Indicates the mouse wheel Molette - + Backward Reculer - + Forward Avancer - + Task Tâche - + Extra Extra - + %1%2%3%4 %1%2%3%4 - - + + %1%2%3Hat %4 %1%2%3Chapeau %4 - - + + %1%2%3Axis %4 %1%2%3Axe %4 - - + + %1%2%3Button %4 %1%2%3Bouton %4 - - + + Migration - + - - + + No - + You can manually re-trigger this prompt by deleting the new config directory: %1 - + Migrating - + Migrating, this may take a while... @@ -8918,6 +9181,300 @@ p, li { white-space: pre-wrap; } Voulez-vous restaurer cet Amiibo ? + + QtCommon::Content + + + Installing Firmware... + Installation du firmware... + + + + + + Cancel + Annuler + + + + Firmware integrity verification failed! + La vérification de l'intégrité du firmware a échoué ! + + + + + Verification failed for the following files: + +%1 + La vérification a échoué pour les fichiers suivants : + +%1 + + + + + Verifying integrity... + Vérification de l'intégrité... + + + + + Integrity verification succeeded! + La vérification de l'intégrité a réussi ! + + + + + The operation completed successfully. + + + + + + Integrity verification failed! + La vérification de l'intégrité a échoué ! + + + + File contents may be corrupt or missing. + + + + + Integrity verification couldn't be performed + + + + + Firmware installation cancelled, firmware may be in a bad state or corrupted. File contents could not be checked for validity. + + + + + Select Dumped Keys Location + Sélectionner l'emplacement des clés extraites + + + + Decryption Keys install succeeded + L'installation des clés de décryptage a réussi + + + + Decryption Keys were successfully installed + Les clés de décryptage ont été installées avec succès + + + + Decryption Keys install failed + L'installation des clés de décryptage a échoué + + + + QtCommon::Game + + + Error Removing Contents + Erreur en enlevant le contenu + + + + Error Removing Update + Erreur en enlevant la Mise à Jour + + + + Error Removing DLC + Erreur en enlevant le DLC + + + + The base game is not installed in the NAND and cannot be removed. + Le jeu de base n'est pas installé dans la NAND et ne peut pas être supprimé. + + + + There is no update installed for this title. + Il n'y a pas de mise à jour installée pour ce titre. + + + + There are no DLCs installed for this title. + + + + + + + + Successfully Removed + Supprimé avec succès + + + + Successfully removed %1 installed DLC. + Suppression de %1 DLC installé(s) avec succès. + + + + + Error Removing Transferable Shader Cache + Erreur lors de la suppression du cache de shader transférable + + + + + A shader cache for this title does not exist. + Un shader cache pour ce titre n'existe pas. + + + + Successfully removed the transferable shader cache. + Suppression du cache de shader transférable avec succès. + + + + Failed to remove the transferable shader cache. + Échec de la suppression du cache de shader transférable. + + + + Error Removing Vulkan Driver Pipeline Cache + Erreur lors de la suppression du cache de pipeline de pilotes Vulkan + + + + Failed to remove the driver pipeline cache. + Échec de la suppression du cache de pipeline de pilotes. + + + + + Error Removing Transferable Shader Caches + Erreur durant la Suppression des Caches de Shader Transférable + + + + Successfully removed the transferable shader caches. + Suppression des caches de shader transférable effectuée avec succès. + + + + Failed to remove the transferable shader cache directory. + Impossible de supprimer le dossier de la cache de shader transférable. + + + + + Error Removing Custom Configuration + Erreur lors de la suppression de la configuration personnalisée + + + + A custom configuration for this title does not exist. + Il n'existe pas de configuration personnalisée pour ce titre. + + + + Successfully removed the custom game configuration. + Suppression de la configuration de jeu personnalisée avec succès. + + + + Failed to remove the custom game configuration. + Échec de la suppression de la configuration personnalisée du jeu. + + + + Reset Metadata Cache + Mettre à zéro le cache des métadonnées + + + + The metadata cache is already empty. + Le cache des métadonnées est déjà vide. + + + + The operation completed successfully. + + + + + The metadata cache couldn't be deleted. It might be in use or non-existent. + Le cache des métadonnées n'a pas pu être supprimé. Il pourrait être utilisé ou non-existant. + + + + Create Shortcut + Créer un raccourci + + + + Do you want to launch the game in fullscreen? + Voulez-vous lancer le jeu en plein écran ? + + + + Shortcut Created + + + + + Successfully created a shortcut to %1 + Création réussie d'un raccourci vers %1 + + + + Shortcut may be Volatile! + + + + + This will create a shortcut to the current AppImage. This may not work well if you update. Continue? + Cela créera un raccourci vers l'AppImage actuelle. Cela peut ne pas fonctionner correctement si vous mettez à jour. Continuer ? + + + + Failed to Create Shortcut + + + + + Failed to create a shortcut to %1 + Impossible de créer un raccourci vers %1 + + + + Create Icon + Créer une icône + + + + Cannot create icon file. Path "%1" does not exist and cannot be created. + Impossible de créer le fichier d'icône. Le chemin "%1" n'existe pas et ne peut pas être créé. + + + + No firmware available + Pas de firmware disponible + + + + Please install firmware to use the home menu. + + + + + Home Menu Applet + + + + + Home Menu is not available. Please reinstall firmware. + + + QtControllerSelectorDialog @@ -9213,7 +9770,7 @@ Veuillez essayer à nouveau ou contactez le développeur du logiciel. QtProfileSelectionDialog - + %1 %2 %1 is the profile username, %2 is the formatted UUID (e.g. 00112233-4455-6677-8899-AABBCCDDEEFF)) @@ -9221,7 +9778,7 @@ Veuillez essayer à nouveau ou contactez le développeur du logiciel. - + Users Utilisateurs @@ -9345,7 +9902,7 @@ p, li { white-space: pre-wrap; } WaitTreeCallstack - + Call stack Pile d'exécution @@ -9353,12 +9910,12 @@ p, li { white-space: pre-wrap; } WaitTreeSynchronizationObject - + [%1] %2 [%1] %2 - + waited by no thread attendu par aucun thread @@ -9366,102 +9923,102 @@ p, li { white-space: pre-wrap; } WaitTreeThread - + runnable runnable - + paused en pause - + sleeping en veille - + waiting for IPC reply en attente de réponse IPC - + waiting for objects En attente d'objets - + waiting for condition variable en attente de la variable conditionnelle - + waiting for address arbiter En attente de l'adresse arbitre - + waiting for suspend resume waiting for suspend resume - + waiting en attente - + initialized initialisé - + terminated terminated - + unknown inconnu - + PC = 0x%1 LR = 0x%2 PC = 0x%1 LR = 0x%2 - + ideal idéal - + core %1 cœur %1 - + processor = %1 Processeur = %1 - + affinity mask = %1 masque d'affinité = %1 - + thread id = %1 id du fil = %1 - + priority = %1(current) / %2(normal) priorité = %1(courant) / %2(normal) - + last running ticks = %1 dernier tick en cours = %1 @@ -9469,7 +10026,7 @@ p, li { white-space: pre-wrap; } WaitTreeThreadList - + waited by thread attendu par un fil @@ -9477,7 +10034,7 @@ p, li { white-space: pre-wrap; } WaitTreeWidget - + &Wait Tree &Wait Tree diff --git a/dist/languages/hu.ts b/dist/languages/hu.ts index 42922c3ea1..f7cf3ce32a 100644 --- a/dist/languages/hu.ts +++ b/dist/languages/hu.ts @@ -13,12 +13,12 @@ - About eden + About Eden - <html><head/><body><p><span style=" font-size:28pt;">eden</span></p></body></html> + <html><head/><body><p><span style=" font-size:28pt;">Eden</span></p></body></html> @@ -34,8 +34,8 @@ p, li { white-space: pre-wrap; } hr { height: 1px; border-width: 0; } li.unchecked::marker { content: "\2610"; } li.checked::marker { content: "\2612"; } -</style></head><body style=" font-family:'Adwaita Sans'; font-size:11pt; font-weight:400; font-style:normal;"> -<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;">eden is an experimental open-source emulator for the Nintendo Switch licensed under GPLv3.0+ which is based on the yuzu emulator which ended development back in March 2024. <br /><br />This software should not be used to play games you have not legally obtained.</span></p></body></html> +</style></head><body style=" font-family:'Noto Sans'; font-size:9pt; font-weight:400; font-style:normal;"> +<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;">Eden is an experimental open-source emulator for the Nintendo Switch licensed under GPLv3.0+ which is based on the yuzu emulator which ended development back in March 2024. <br /><br />This software should not be used to play games you have not legally obtained.</span></p></body></html> @@ -72,32 +72,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. Nyomd meg a bal felső sarkot <br>a touchpaden. - + Now touch the bottom right corner <br>of your touchpad. Most pedig nyomd meg a jobb alsó sarkot <br>a touchpaden. - + Configuration completed! Beállitás befejezve! - + OK OK @@ -397,134 +397,124 @@ Ez kitiltaná a fórum felhasználóneve és az IP címe alapján. ConfigurationShared - + % % - + Amiibo editor Amiibo szerkesztő - + Controller configuration Vezérlő konfiguráció - + Data erase Adat törlése - + Error Hiba - - Net connect - - - - + Player select Játékos kiválasztása - + Software keyboard Szoftver billenytűzet - + Mii Edit Mii szerkesztés - + Online web Online web - + Shop Bolt - + Photo viewer Képnézegető - + Offline web Offline web - + Login share Bejelentkezés megosztása - - Wifi web auth - - - - + My page Az oldalam - + Output Engine: Kimeneti motor: - + Output Device: Kimeneti eszköz: - + Input Device: Bemeneti eszköz: - + Mute audio Hang némítása - + Volume: Hangerő: - + Mute audio when in background Hang némítása, amikor háttérben van - + Multicore CPU Emulation Többmagos CPU emuláció - + This option increases CPU emulation thread use from 1 to the Switch’s maximum of 4. This is mainly a debug option and shouldn’t be disabled. Ez az opció növeli a CPU emulációs szál használatát 1-ről a Switch maximális értékére, ami 4. Ez főként egy hibakeresési opció, és nem javasolt letiltani. - + Memory Layout Memóriaelrendezés - + Increases the amount of emulated RAM from the stock 4GB of the retail Switch to the developer kit's 8/6GB. It’s doesn’t improve stability or performance and is intended to let big texture mods fit in emulated RAM. Enabling it will increase memory use. It is not recommended to enable unless a specific game with a texture mod needs it. @@ -533,12 +523,12 @@ Nem javítja a stabilitást vagy a teljesítményt, kizárólag arra szolgál, h Az engedélyezése megnövelt memóriahasználattal jár. Nem ajánlott engedélyezni, kivéve ha egy adott játék textúra modja nem igényli. - + Limit Speed Percent Sebesség korlátozása - + Controls the game's maximum rendering speed, but it’s up to each game if it runs faster or not. 200% for a 30 FPS game is 60 FPS, and for a 60 FPS game it will be 120 FPS. Disabling it means unlocking the framerate to the maximum your PC can reach. @@ -547,140 +537,111 @@ A 200% egy 30 FPS-el futó játéknál 60 FPS-t jelent, egy 60 FPS-es játékná Ennek kikapcsolása feloldja a képkocka korlátozását. - - Synchronize Core Speed - - - - - Synchronizes CPU core speed with the game's maximum rendering speed to boost FPS without affecting game speed (animations, physics, etc.). -Compatibility varies by game; many (especially older ones) may not respond well. -Can help reduce stuttering at lower framerates. - - - - + Accuracy: Pontosság: - + This setting controls the accuracy of the emulated CPU. Don't change this unless you know what you are doing. Ez a beállítás szabályozza az emulált CPU pontosságát. Ne változtasd meg, kivéve ha tudod mit csinálsz. - - + + Backend: Backend: - - Fast CPU Time - - - - - Overclocks the emulated CPU to remove some FPS limiters. Weaker CPUs may see reduced performance, and certain games may behave improperly. -Use Boost (1700MHz) to run at the Switch's highest native clock, or Fast (2000MHz) to run at 2x clock. - - - - + Unfuse FMA (improve performance on CPUs without FMA) FMA kikapcsolása (javítja a teljesítményt FMA nélküli CPU-kon) - + This option improves speed by reducing accuracy of fused-multiply-add instructions on CPUs without native FMA support. Ez az opció a fused-multiply-add utasítások pontosságának csökkentésével javítja a sebességet olyan CPU-k esetén, amelyek nem rendelkeznek natív FMA támogatással. - + Faster FRSQRTE and FRECPE Gyorsabb FRSQRTE és FRECPE - + This option improves the speed of some approximate floating-point functions by using less accurate native approximations. Ez az opció javítja néhány közelítő lebegőpontos függvény sebességét azáltal, hogy kevésbé pontos natív megközelítést használ. - + Faster ASIMD instructions (32 bits only) Gyorsabb ASIMD utasítások (csak 32 bit) - + This option improves the speed of 32 bits ASIMD floating-point functions by running with incorrect rounding modes. Ez az opció növeli a 32 bites ASIMD lebegőpontos függvények sebességét a helytelen kerekítési módok használatával. - + Inaccurate NaN handling Pontatlan NaN kezelés - + This option improves speed by removing NaN checking. Please note this also reduces accuracy of certain floating-point instructions. Ez az opció növeli a sebességet a NaN ellenőrzés kihagyásával. Kérjük, vedd figyelembe, hogy ez bizonyos lebegőpontos utasítások pontosságát is csökkenti. - + Disable address space checks Címtartomány-ellenőrzések kikapcsolása - + This option improves speed by eliminating a safety check before every memory read/write in guest. Disabling it may allow a game to read/write the emulator's memory. Ez az opció javítja a sebességet azáltal, hogy kiiktatja a biztonsági ellenőrzést minden memóriaolvasás/írás előtt a vendégben. A letiltása lehetővé teheti, hogy egy játék olvassa/írja az emulátor memóriáját. - + Ignore global monitor Globális monitorozás mellőzése - - This option improves speed by relying only on the semantics of cmpxchg to ensure safety of exclusive access instructions. -Please note this may result in deadlocks and other race conditions. - - - - + API: API: - + Switches between the available graphics APIs. Vulkan is recommended in most cases. Váltás az elérhető grafikai API-k között. A Vulkan a legtöbb esetben ajánlott. - + Device: Eszköz: - + This setting selects the GPU to use with the Vulkan backend. Ez a beállítás kiválasztja a Vulkan backendhez használandó GPU-t. - + Shader Backend: Árnyékoló Backend: - + The shader backend to use for the OpenGL renderer. GLSL is the fastest in performance and the best in rendering accuracy. GLASM is a deprecated NVIDIA-only backend that offers much better shader building performance at the cost of FPS and rendering accuracy. @@ -691,12 +652,12 @@ A GLASM egy elavult NVIDIA-specifikus backend, amely sokkal jobb árnyékoló é Az SPIR-V fordít leggyorsabban, de gyenge eredményeket produkál a legtöbb GPU illesztőprogramon. - + Resolution: Felbontás: - + Forces the game to render at a different resolution. Higher resolutions require much more VRAM and bandwidth. Options lower than 1X can cause rendering issues. @@ -705,27 +666,27 @@ A magasabb felbontások sokkal több VRAM-ot és sávszélességet igényelnek. Az 1X-esnél alacsonyabb beállítások renderelési problémákat okozhatnak. - + Window Adapting Filter: Ablakadaptív szűrő: - + FSR Sharpness: FSR élesség: - + Determines how sharpened the image will look while using FSR’s dynamic contrast. Meghatározza, milyen éles lesz a kép az FSR dinamikus kontraszt használata közben. - + Anti-Aliasing Method: Élsimítási módszer: - + The anti-aliasing method to use. SMAA offers the best quality. FXAA has a lower performance impact and can produce a better and more stable picture under very low resolutions. @@ -734,12 +695,12 @@ SMAA nyútja a legjobb minőséget. FXAA kisebb hatással van a teljesítményre, és nagyon alacsony felbontások esetén jobb és stabilabb képet eredményezhet. - + Fullscreen Mode: Teljes képernyős mód: - + The method used to render the window in fullscreen. Borderless offers the best compatibility with the on-screen keyboard that some games request for input. Exclusive fullscreen may offer better performance and better Freesync/Gsync support. @@ -748,12 +709,12 @@ A borderless (szegély nélküli) biztosítja a legjobb kompatibilitást a képe Az exkluzív teljes képernyő jobb teljesítményt és jobb Freesync/Gsync támogatást kínálhat. - + Aspect Ratio: Képarány: - + Stretches the game to fit the specified aspect ratio. Switch games only support 16:9, so custom game mods are required to get other ratios. Also controls the aspect ratio of captured screenshots. @@ -762,49 +723,36 @@ A Switch játékok csak a 16:9 képarányt támogatják, így más arányokhoz e Szabályozza a rögzített képernyőképek képarányát is. - + Use disk pipeline cache Lemez pipeline gyorsítótár használata - + Allows saving shaders to storage for faster loading on following game boots. Disabling it is only intended for debugging. Lehetővé teszi az árnyékolók tárolását a gyorsabb betöltés érdekében a következő játékindításokkor. Kikapcsolása csak hibakeresésre szolgál. - - Optimize SPIRV output shader - - - - - Runs an additional optimization pass over generated SPIRV shaders. -Will increase time required for shader compilation. -May slightly improve performance. -This feature is experimental. - - - - + Use asynchronous GPU emulation Aszinkron GPU-emuláció használata - + Uses an extra CPU thread for rendering. This option should always remain enabled. Egy extra CPU szálat használ a rendereléshez. Az opció bekapcsolva tartása erősen javasolt. - + NVDEC emulation: NVDEC emuláció: - + Specifies how videos should be decoded. It can either use the CPU or the GPU for decoding, or perform no decoding at all (black screen on videos). In most cases, GPU decoding provides the best performance. @@ -813,12 +761,12 @@ A dekódoláshoz használhatja a CPU-t vagy a GPU-t, vagy egyáltalán nem vége A legtöbb esetben a GPU dekódolás nyújtja a legjobb teljesítményt. - + ASTC Decoding Method: ASTC dekódoló módszer: - + This option controls how ASTC textures should be decoded. CPU: Use the CPU for decoding, slowest but safest method. GPU: Use the GPU's compute shaders to decode ASTC textures, recommended for most games and users. @@ -831,34 +779,33 @@ CPU Aszinkron: A CPU-t használja az ASTC textúrák dekódolásához, amint meg akadozását, de a textúra dekódolása közben renderelési problémákat okozhat. - + ASTC Recompression Method: ASTC újraszűrési módszer: - + Almost all desktop and laptop dedicated GPUs lack support for ASTC textures, forcing the emulator to decompress to an intermediate format any card supports, RGBA8. This option recompresses RGBA8 to either the BC1 or BC3 format, saving VRAM but negatively affecting image quality. Szinte egyik asztali és laptop dedikált GPU sem támogatja az ASTC textúrákat, ezért az emulátornak köztes formátumba kell dekompresszálnia, amit bármelyik kártya támogat, RGBA8 formátumba. Ez az opció az RGBA8-at BC1 vagy BC3 formátumra tömöríti vissza, ami VRAM-ot takarít meg, de negatívan befolyásolja a képminőséget. - + VRAM Usage Mode: VRAM használati mód: - Selects whether the emulator should prefer to conserve memory or make maximum usage of available video memory for performance. Has no effect on integrated graphics. Aggressive mode may severely impact the performance of other applications such as recording software. - Kiválasztja, hogy az emulátor a teljesítmény érdekében inkább takarékoskodjon a memóriával, vagy maximálisan kihasználja a rendelkezésre álló videomemóriát. Integrált grafikára nincs hatással. Az agresszív üzemmód jelentősen befolyásolhatja más alkalmazások, például a rögzítő szoftverek teljesítményét. + Kiválasztja, hogy az emulátor a teljesítmény érdekében inkább takarékoskodjon a memóriával, vagy maximálisan kihasználja a rendelkezésre álló videomemóriát. Integrált grafikára nincs hatással. Az agresszív üzemmód jelentősen befolyásolhatja más alkalmazások, például a rögzítő szoftverek teljesítményét. - + VSync Mode: VSync mód: - + FIFO (VSync) does not drop frames or exhibit tearing but is limited by the screen refresh rate. FIFO Relaxed is similar to FIFO but allows tearing as it recovers from a slow down. Mailbox can have lower latency than FIFO and does not tear but may drop frames. @@ -869,51 +816,49 @@ A Mailboxnak a FIFO-nál kisebb lehet a késleltetése és nem jelentkezik képs Az azonnali (nincs szinkronizálás) azt jeleníti meg, ami éppen elérhető, ezért előfordulhat képszakadás. - + Enable asynchronous presentation (Vulkan only) Aszinkron prezentálás engedélyezése (csak Vulkan) - + Slightly improves performance by moving presentation to a separate CPU thread. Kicsit javítja a teljesítményt azáltal, hogy a megjelenítést külön CPU szálra helyezi át. - + Force maximum clocks (Vulkan only) Maximális órajelek kényszerítése (csak Vulkan) - + Runs work in the background while waiting for graphics commands to keep the GPU from lowering its clock speed. A háttérben fut, miközben várja a grafikai parancsokat, hogy a GPU ne csökkentse az órajelét. - + Anisotropic Filtering: Anizotropikus szűrés: - + Controls the quality of texture rendering at oblique angles. It’s a light setting and safe to set at 16x on most GPUs. A textúra megjelenítés minőségét szabályozza ferde szögeknél. Ez egy könnyű beállítás és a legtöbb GPU-n biztonságos 16x-osra állítani. - Accuracy Level: - Pontossági szint: + Pontossági szint: - GPU emulation accuracy. Most games render fine with Normal, but High is still required for some. Particles tend to only render correctly with High accuracy. Extreme should only be used for debugging. This option can be changed while playing. Some games may require booting on high to render properly. - GPU emuláció pontossága. + GPU emuláció pontossága. A legtöbb játék Normál módban jól renderel, de néhányhoz még mindig szükséges a Magas pontosság. A részecskék általában csak Magas pontossággal renderelnek helyesen. Az Extrém csak hibakereséshez használandó. @@ -921,12 +866,12 @@ Ez az opció játék közben is megváltoztatható. Néhány játékhoz szükséges lehet a Magas beállításon való indítás a megfelelő rendereléshez. - + Use asynchronous shader building (Hack) Aszinkron árnyékoló építés használata (Hack) - + Enables asynchronous shader compilation, which may reduce shader stutter. This feature is experimental. Engedélyezi az aszinkron árnyékoló fordítást, ami csökkentheti az akadást. @@ -941,134 +886,106 @@ Ez a funkció kísérleti jellegű. Engedélyezi a gyors GPU-időt. Ez az opció arra kényszeríti a legtöbb játékot, hogy a legnagyobb natív felbontásban fusson. - + Use Vulkan pipeline cache Vulkan pipeline gyorsítótár használata. - - Enables GPU vendor-specific pipeline cache. -This option can improve shader loading time significantly in cases where the Vulkan driver does not store pipeline cache files internally. - - - - - Enable Compute Pipelines (Intel Vulkan Only) - - - - - Enable compute pipelines, required by some games. -This setting only exists for Intel proprietary drivers, and may crash if enabled. -Compute pipelines are always enabled on all other drivers. - - - - + Enable Reactive Flushing Reaktív ürítés használata - + Uses reactive flushing instead of predictive flushing, allowing more accurate memory syncing. Reaktív ürítést használ a prediktív ürítés helyett, ami pontosabb memóriaszinkronizálást tesz lehetővé. - + Sync to framerate of video playback Szinkronizálás a videolejátszás képkockasebességéhez - + Run the game at normal speed during video playback, even when the framerate is unlocked. A játék futtatása normál sebességgel videolejátszás közben, még akkor is, ha a képkockasebesség fel van oldva. - - Barrier feedback loops - - - - + Improves rendering of transparency effects in specific games. Javítja az átlátszósági effektek megjelenítését bizonyos játékokban. - - RNG Seed - - - - + Controls the seed of the random number generator. Mainly used for speedrunning purposes. A véletlenszám-generátor magját vezérli. Főként speedrunning célokra használatos. - + Device Name Eszköznév - + The name of the emulated Switch. Az emulált Switch neve. - + Custom RTC Date: Egyéni RTC dátum: - + This option allows to change the emulated clock of the Switch. Can be used to manipulate time in games. Ez az opció lehetővé teszi a Switch emulált órájának megváltoztatását. Használható idő manipulálására játékokban. - + Language: Nyelv: - + Note: this can be overridden when region setting is auto-select Megjegyzés: ez felülírható, ha a régióbeállítás automatikus kiválasztású. - + Region: Régió: - + The region of the emulated Switch. Az emulált Switch régiója. - + Time Zone: Időzóna: - + The time zone of the emulated Switch. Az emulált Switch időzónája. - + Sound Output Mode: Hangkimeneti mód: - + Console Mode: Konzol mód: - + Selects if the console is emulated in Docked or Handheld mode. Games will change their resolution, details and supported controllers and depending on this setting. Setting to Handheld can help improve performance for low end systems. @@ -1077,7 +994,7 @@ A játékok felbontása, részletei és támogatott vezérlői ennek a beállít A Kézi beállítás segíthet javítani a teljesítményt az alacsony teljesítményű rendszerek esetében. - + Prompt for user on game boot Felhasználói kérelem a játék indításakor @@ -1086,7 +1003,7 @@ A Kézi beállítás segíthet javítani a teljesítményt az alacsony teljesít Minden induláskor kérdezze meg a használni kívánt profilt, ez akkor lehet hasznos, ha több ember használja ugyanazt a számítógépet. - + Pause emulation when in background Emuláció szüneteltetése a háttérben @@ -1095,843 +1012,1036 @@ A Kézi beállítás segíthet javítani a teljesítményt az alacsony teljesít Ez a beállítás szünetelteti a yuzu-t, amíg más ablak van fókuszban. - - Fast GPU Time (Hack) - - - - - Overclocks the emulated GPU to increase dynamic resolution and render distance. -Use 128 for maximal performance and 512 for maximal graphics fidelity. - - - - - Extended Dynamic State - - - - - Enables the VkExtendedDynamicState* extensions. -Higher dynamic states will generally improve performance, but may cause issues on certain games or devices. - - - - - Provoking Vertex - - - - - Improves lighting and vertex handling in certain games. -Only Vulkan 1.0+ devices support this extension. - - - - - Descriptor Indexing - - - - - Improves texture & buffer handling and the Maxwell translation layer. -Some Vulkan 1.1+ and all 1.2+ devices support this extension. - - - - - Ask to select a user profile on each boot, useful if multiple people use eden on the same PC. - - - - - This setting pauses eden when focusing other windows. - - - - + Confirm before stopping emulation Emuláció leállításának megerősítése - + This setting overrides game prompts asking to confirm stopping the game. Enabling it bypasses such prompts and directly exits the emulation. Ez a beállítás felülbírálja a játék utasításait, amelyek megerősítést kérnek a játék leállításához. Az engedélyezése megkerüli az ilyen jellegű utasításokat, és közvetlenül kilép az emulációból. - + Hide mouse on inactivity Egér elrejtése inaktivitáskor - + This setting hides the mouse after 2.5s of inactivity. Ez a beállítás 2.5 másodperc inaktivitás után elrejti az egérmutatót. - + Disable controller applet Vezérlő applet letiltása - + Forcibly disables the use of the controller applet by guests. When a guest attempts to open the controller applet, it is immediately closed. Kényszeresen letiltja a vezérlő applet használatát a vendégek számára. Ha egy vendég megpróbálja megnyitni a vezérlő appletet, az azonnal bezárul. - - Check for updates - - - - - Whether or not to check for updates upon startup. - - - - + Enable Gamemode Játékmód engedélyezése - + Custom frontend Egyéni frontend - + Real applet Valódi applet - - Never - - - - - On Load - - - - - Always - - - - + CPU CPU - + GPU GPU - + CPU Asynchronous CPU aszinkron - + Uncompressed (Best quality) Tömörítetlen (legjobb minőség) - + BC1 (Low quality) BC1 (alacsony minőség) - + BC3 (Medium quality) BC3 (közepes minőség) - + Conservative Takarékos - + Aggressive Aggresszív - + OpenGL OpenGL - + Vulkan Vulkan - + Null Null - + GLSL GLSL - + GLASM (Assembly Shaders, NVIDIA Only) GLASM (Assembly Shaders, csak NVIDIA) - + SPIR-V (Experimental, AMD/Mesa Only) SPIR-V (kísérleti, csak AMD/Mesa) - + Normal Normál - + High Magas - + Extreme Extrém - + Auto Automatikus - + Accurate Pontos - + Unsafe Nem biztonságos - + Paranoid (disables most optimizations) Paranoid (a legtöbb optimalizálást letiltja) - + Dynarmic Dinamikus - + NCE NCE - + Borderless Windowed Szegély nélküli ablak - + Exclusive Fullscreen Exkluzív teljes képernyő - + No Video Output Nincs videokimenet - + CPU Video Decoding CPU videódekódolás - + GPU Video Decoding (Default) GPU videódekódolás (alapértelmezett) - - 0.25X (180p/270p) [EXPERIMENTAL] - - - - + 0.5X (360p/540p) [EXPERIMENTAL] 0.5X (360p/540p) [KÍSÉRLETI] - + 0.75X (540p/810p) [EXPERIMENTAL] 0.75X (540p/810p) [KÍSÉRLETI] - + 1X (720p/1080p) 1X (720p/1080p) - + 1.5X (1080p/1620p) [EXPERIMENTAL] 1.5X (1080p/1620p) [KÍSÉRLETI] - + 2X (1440p/2160p) 2X (1440p/2160p) - + 3X (2160p/3240p) 3X (2160p/3240p) - + 4X (2880p/4320p) 4X (2880p/4320p) - + 5X (3600p/5400p) 5X (3600p/5400p) - + 6X (4320p/6480p) 6X (4320p/6480p) - + 7X (5040p/7560p) 7X (5040p/7560p) - + 8X (5760p/8640p) 8X (5760p/8640p) - + Nearest Neighbor Legközelebbi szomszéd - + Bilinear Bilineáris - + Bicubic Bikubikus - + Gaussian Gauss-féle - + ScaleForce ScaleForce - + AMD FidelityFX™️ Super Resolution AMD FidelityFX™️ Super Resolution - - Area - - - - + None Nincs - + FXAA FXAA - + SMAA SMAA - + Default (16:9) Alapértelmezett (16:9) - + Force 4:3 4:3 kényszerítése - + Force 21:9 21:9 kényszerítése - + Force 16:10 16:10 kényszerítése - + Stretch to Window Ablakhoz nyújtás - + Automatic Automatikus - + + Default Alapértelmezett - + + Net connect + + + + + Wifi web auth + + + + + Synchronize Core Speed + + + + + Synchronizes CPU core speed with the game's maximum rendering speed to boost FPS without affecting game speed (animations, physics, etc.). +Compatibility varies by game; many (especially older ones) may not respond well. +Can help reduce stuttering at lower framerates. + + + + + Fast CPU Time + + + + + Overclocks the emulated CPU to remove some FPS limiters. Weaker CPUs may see reduced performance, and certain games may behave improperly. +Use Boost (1700MHz) to run at the Switch's highest native clock, or Fast (2000MHz) to run at 2x clock. + + + + + Custom CPU Ticks + + + + + Set a custom value of CPU ticks. Higher values can increase performance, but may also cause the game to freeze. A range of 77–21000 is recommended. + + + + + Enable Host MMU Emulation (fastmem) + + + + + This optimization speeds up memory accesses by the guest program. +Enabling it causes guest memory reads/writes to be done directly into memory and make use of Host's MMU. +Disabling this forces all memory accesses to use Software MMU Emulation. + + + + + This option improves speed by relying only on the semantics of cmpxchg to ensure safety of exclusive access instructions. +Please note this may result in deadlocks and other race conditions. + + + + + Optimize SPIRV output shader + + + + + Runs an additional optimization pass over generated SPIRV shaders. +Will increase time required for shader compilation. +May slightly improve performance. +This feature is experimental. + + + + + Selects whether the emulator should prefer to conserve memory or make maximum usage of available video memory for performance. +Aggressive mode may severely impact the performance of other applications such as recording software. + + + + + Skip CPU Inner Invalidation + + + + + Skips certain CPU-side cache invalidations during memory updates, reducing CPU usage and improving it's performance. This may cause glitches or crashes on some games. + + + + + Sync Memory Operations + + + + + Ensures data consistency between compute and memory operations. +This option should fix issues in some games, but may also reduce performance in some cases. +Unreal Engine 4 games often see the most significant changes thereof. + + + + + GPU Accuracy: + + + + + Controls the GPU emulation accuracy. +Most games render fine with Normal, but High is still required for some. +Particles tend to only render correctly with High accuracy. +Extreme should only be used as a last resort. + + + + + DMA Accuracy: + + + + + Controls the DMA precision accuracy. Safe precision can fix issues in some games, but it can also impact performance in some cases. +If unsure, leave this on Default. + + + + + Fast GPU Time (Hack) + + + + + Overclocks the emulated GPU to increase dynamic resolution and render distance. +Use 128 for maximal performance and 512 for maximal graphics fidelity. + + + + + Enables GPU vendor-specific pipeline cache. +This option can improve shader loading time significantly in cases where the Vulkan driver does not store pipeline cache files internally. + + + + + Enable Compute Pipelines (Intel Vulkan Only) + + + + + Enable compute pipelines, required by some games. +This setting only exists for Intel proprietary drivers, and may crash if enabled. +Compute pipelines are always enabled on all other drivers. + + + + + Barrier feedback loops + + + + + RAII + + + + + A method of automatic resource management in Vulkan that ensures proper release of resources when they are no longer needed, but may cause crashes in bundled games. + + + + + Extended Dynamic State + + + + + Controls the number of features that can be used in Extended Dynamic State. +Higher numbers allow for more features and can increase performance, but may cause issues with some drivers and vendors. +The default value may vary depending on your system and hardware capabilities. +This value can be changed until stability and a better visual quality are achieved. + + + + + Provoking Vertex + + + + + Improves lighting and vertex handling in certain games. +Only Vulkan 1.0+ devices support this extension. + + + + + Descriptor Indexing + + + + + Improves texture & buffer handling and the Maxwell translation layer. +Some Vulkan 1.1+ and all 1.2+ devices support this extension. + + + + + Sample Shading + + + + + Allows the fragment shader to execute per sample in a multi-sampled fragment instead once per fragment. Improves graphics quality at the cost of some performance. +Higher values improve quality more but also reduce performance to a greater extent. + + + + + RNG Seed + + + + + Ask to select a user profile on each boot, useful if multiple people use Eden on the same PC. + + + + + This setting pauses Eden when focusing other windows. + + + + + Check for updates + + + + + Whether or not to check for updates upon startup. + + + + + Never + + + + + On Load + + + + + Always + + + + + Unsafe (fast) + + + + + Safe (stable) + + + + + 0.25X (180p/270p) [EXPERIMENTAL] + + + + + Area + + + + 2x 2x - + 4x 4x - + 8x 8x - + 16x 16x - + Japanese (日本語) Japán (日本語) - + American English Amerikai angol - + French (français) Francia (français) - + German (Deutsch) Német (Deutsch) - + Italian (italiano) Olasz (italiano) - + Spanish (español) Spanyol (español) - + Chinese Kínai - + Korean (한국어) Koreai (한국어) - + Dutch (Nederlands) Holland (Nederlands) - + Portuguese (português) Portugál (português) - + Russian (Русский) Orosz (Русский) - + Taiwanese Tajvani - + British English Brit Angol - + Canadian French Kanadai francia - + Latin American Spanish Latin-amerikai spanyol - + Simplified Chinese Egyszerűsített kínai - + Traditional Chinese (正體中文) Hagyományos kínai (正體中文) - + Brazilian Portuguese (português do Brasil) Brazíliai portugál (português do Brasil) - - + + Serbian (српски) + + + + + Japan Japán - + USA USA - + Europe Európa - + Australia Ausztrália - + China Kína - + Korea Korea - + Taiwan Tajvan - + Auto (%1) Auto select time zone Automatikus (%1) - + Default (%1) Default time zone Alapértelmezett (%1) - + CET CET - + CST6CDT CST6CDT - + Cuba Kuba - + EET EET - + Egypt Egyiptom - + Eire Eire - + EST EST - + EST5EDT EST5EDT - + GB GB - + GB-Eire GB-Eire - + GMT GMT - + GMT+0 GMT+0 - + GMT-0 GMT-0 - + GMT0 GMT0 - + Greenwich Greenwich - + Hongkong Hongkong - + HST HST - + Iceland Izland - + Iran Irán - + Israel Izrael - + Jamaica Jamaika - + Kwajalein Kwajalein - + Libya Líbia - + MET MET - + MST MST - + MST7MDT MST7MDT - + Navajo Navahó - + NZ NZ - + NZ-CHAT NZ-CHAT - + Poland Lengyelország - + Portugal Portugália - + PRC PRC - + PST8PDT PST8PDT - + ROC ROC - + ROK ROK - + Singapore Szingapúr - + Turkey Törökország - + UCT UCT - + Universal Univerzális - + UTC UTC - + W-SU W-SU - + WET WET - + Zulu Zulu - + Mono Mono - + Stereo Sztereó - + Surround Térhangzás - + 4GB DRAM (Default) 4GB DRAM (Alapértelmezett) - + 6GB DRAM (Unsafe) 6GB DRAM (Nem biztonságos) - + 8GB DRAM - + 10GB DRAM (Unsafe) - + 12GB DRAM (Unsafe) - + Low (128) - + Medium (256) - + High (512) @@ -1940,37 +2050,37 @@ Ha egy vendég megpróbálja megnyitni a vezérlő appletet, az azonnal bezárul 8GB DRAM (Nem biztonságos) - + Docked Dokkolt - + Handheld Kézi - + Boost (1700MHz) - + Fast (2000MHz) - + Always ask (Default) Mindig kérdezz rá (alapértelmezett) - + Only if game specifies not to stop Csak akkor, ha a játék kifejezetten kéri a folytatást. - + Never ask Soha ne kérdezz rá @@ -2298,27 +2408,27 @@ Ha egy vendég megpróbálja megnyitni a vezérlő appletet, az azonnal bezárul Naplózás - + Open Log Location Naplózási hely megnyitása - + Global Log Filter Globális naplózási szűrő - + When checked, the max size of the log increases from 100 MB to 1 GB Ha be van jelölve, a napló maximális mérete 100 MB-ról 1 GB-ra nő. - + Enable Extended Logging** Bővített naplózás engedélyezése - + Show Log in Console Napló mutatása a Konzolban @@ -2464,7 +2574,7 @@ Ha egy vendég megpróbálja megnyitni a vezérlő appletet, az azonnal bezárul - **This will be reset automatically when eden closes. + **This will be reset automatically when Eden closes. @@ -2526,7 +2636,7 @@ Ha egy vendég megpróbálja megnyitni a vezérlő appletet, az azonnal bezárul **Ez automatikusan visszaáll, amikor a yuzu leáll. - + Web applet not compiled @@ -2576,7 +2686,7 @@ Ha egy vendég megpróbálja megnyitni a vezérlő appletet, az azonnal bezárul - eden Configuration + Eden Configuration @@ -2585,88 +2695,88 @@ Ha egy vendég megpróbálja megnyitni a vezérlő appletet, az azonnal bezárul Néhány beállítás csak akkor érhető el, amikor nem fut játék. - + Applets Appletek - - + + Audio Hang - - + + CPU CPU - + Debug Hibakeresés - + Filesystem Fájlrendszer - - + + General Általános - - + + Graphics Grafika - + GraphicsAdvanced Haladó grafika - + GraphicsExtensions - + Hotkeys Gyorsgombok - - + + Controls Irányítás - + Profiles Profilok - + Network Hálózat - - + + System Rendszer - + Game List Játéklista - + Web Web @@ -2764,51 +2874,45 @@ Ha egy vendég megpróbálja megnyitni a vezérlő appletet, az azonnal bezárul - - - Reset Metadata Cache Metaadat gyorsítótár visszaállítása - + Select Emulated NAND Directory... Emulált NAND könyvtár kiválasztása... - + Select Emulated SD Directory... Emulált SD könyvtár kiválasztása... - + Select Gamecard Path... Játékkártya könyvtár kiválasztása... - + Select Dump Directory... Kimentési mappa kiválasztása... - + Select Mod Load Directory... Mod betöltő könyvtár kiválasztása... - The metadata cache is already empty. - A metaadat gyórsítótár már üres. + A metaadat gyórsítótár már üres. - The operation completed successfully. - A művelet sikeresen végrehajtva. + A művelet sikeresen végrehajtva. - The metadata cache couldn't be deleted. It might be in use or non-existent. - A metaadat gyórsítótárat nem lehetett törölni. Lehetséges, hogy használatban van, vagy nem létezik. + A metaadat gyórsítótárat nem lehetett törölni. Lehetséges, hogy használatban van, vagy nem létezik. @@ -2839,12 +2943,12 @@ Ha egy vendég megpróbálja megnyitni a vezérlő appletet, az azonnal bezárul yuzu - - eden + + Eden - + This reset all settings and remove all per-game configurations. This will not delete game directories, profiles, or input profiles. Proceed? Ez visszaállítja az összes beállítást és törli az összes játékonkénti konfigurációkat. Ez nem fogja kitörölni a játék könyvtárakat, profilokat, se a beviteli profilokat. Folytatja? @@ -2877,33 +2981,33 @@ Ha egy vendég megpróbálja megnyitni a vezérlő appletet, az azonnal bezárul Háttérszín: - + % FSR sharpening percentage (e.g. 50%) % - + Off Ki - + VSync Off VSync Ki - + Recommended Ajánlott - + On Be - + VSync On VSync Be @@ -2940,14 +3044,18 @@ Ha egy vendég megpróbálja megnyitni a vezérlő appletet, az azonnal bezárul - Vulkan Extension Settings + Vulkan Extensions Settings - - While it's recommended to use state 3, some games may perform better on lower states. Setting to 0 (disabled) may also break games. -If your GPU is older (i.e. RX570/580 or older), it may not support these features. If this is the case, set the slider to 0 and uncheck all boxes. -These settings are experimental, and may cause black screens. If your games fail to boot or are stuck on a black screen, change these settings around. + + % + Sample Shading percentage (e.g. 50%) + % + + + + Extended Dynamic State is disabled on macOS due to MoltenVK compatibility issues that cause black screens. @@ -2979,75 +3087,75 @@ These settings are experimental, and may cause black screens. If your games fail Visszaállítás - + Action Akció - + Hotkey Gyorsgomb - + Controller Hotkey Vezérlő gyorsgomb - - - + + + Conflicting Key Sequence Ütköző kulcssorozat - - + + The entered key sequence is already assigned to: %1 A megadott kulcssorozat már hozzá van rendelve ehhez: %1 - + [waiting] [várakozás] - + Invalid Érvénytelen - + Invalid hotkey settings Érvénytelen gyorsbillentyű beállítások - + An error occurred. Please report this issue on github. Hiba történt. Kérjük, jelentsd ezt a problémát a GitHubon. - + Restore Default Alapértelmezés - + Clear Törlés - + Conflicting Button Sequence Ütköző gombsor - + The default button sequence is already assigned to: %1 Az alapértelmezett gombsor már hozzá van rendelve ehhez: %1 - + The default key sequence is already assigned to: %1 Az alapértelmezett kulcssorozat már hozzá van rendelve ehhez: %1 @@ -3367,7 +3475,7 @@ These settings are experimental, and may cause black screens. If your games fail - Requires restarting eden + Requires restarting Eden @@ -3522,7 +3630,7 @@ These settings are experimental, and may cause black screens. If your games fail - + Left Stick Bal kar @@ -3632,14 +3740,14 @@ These settings are experimental, and may cause black screens. If your games fail - + L L - + ZL ZL @@ -3658,7 +3766,7 @@ These settings are experimental, and may cause black screens. If your games fail - + Plus Plusz @@ -3671,15 +3779,15 @@ These settings are experimental, and may cause black screens. If your games fail - - + + R R - + ZR ZR @@ -3724,7 +3832,7 @@ These settings are experimental, and may cause black screens. If your games fail - + Right Stick Jobb kar @@ -3739,242 +3847,242 @@ These settings are experimental, and may cause black screens. If your games fail Konfigurálás - - - - + + + + Clear Törlés - - - - - + + + + + [not set] [nincs beáll.] - - - + + + Invert button Fordított gomb - - + + Toggle button Gomb váltása - + Turbo button Turbó gomb - - + + Invert axis Fordított tengely - - - + + + Set threshold Küszöbérték beállítása - - + + Choose a value between 0% and 100% Válassz egy 0% és 100% közötti értéket - + Toggle axis Tengely váltása - + Set gyro threshold Gyro küszöbérték beállítása - + Calibrate sensor Szenzor kalibrálása - + Map Analog Stick - + After pressing OK, first move your joystick horizontally, and then vertically. To invert the axes, first move your joystick vertically, and then horizontally. Az OK megnyomása után először mozgasd a kart vízszintesen, majd függőlegesen. A tengely megfordításához mozgasd a kart először függőlegesen, majd vízszintesen. - + Center axis Középtengely - - + + Deadzone: %1% Holttér: %1% - - + + Modifier Range: %1% Módosító tartomány: %1% - - + + Pro Controller Pro kontroller - + Dual Joycons Dual Joycon - + Left Joycon Bal Joycon - + Right Joycon Jobb Joycon - + Handheld Kézi - + GameCube Controller GameCube kontroller - + Poke Ball Plus Poke Ball Plus - + NES Controller NES kontroller - + SNES Controller SNES kontroller - + N64 Controller N64 kontroller - + Sega Genesis Sega Genesis - + Start / Pause Indítás / Szünet - + Z Z - + Control Stick - + C-Stick - + Shake! Rázd! - + [waiting] [várakozás] - + New Profile Új profil - + Enter a profile name: Add meg a profil nevét: - - + + Create Input Profile Beviteli profil létrehozása - + The given profile name is not valid! A megadott profilnév érvénytelen! - + Failed to create the input profile "%1" A "%1" beviteli profilt nem sikerült létrehozni - + Delete Input Profile Beviteli profil törlése - + Failed to delete the input profile "%1" A "%1" beviteli profilt nem sikerült eltávolítani - + Load Input Profile Beviteli profil betöltése - + Failed to load the input profile "%1" A "%1" beviteli profilt nem sikerült betölteni - + Save Input Profile Beviteli profil mentése - + Failed to save the input profile "%1" A "%1" beviteli profilt nem sikerült elmenteni @@ -4031,7 +4139,7 @@ A tengely megfordításához mozgasd a kart először függőlegesen, majd vízs - + Configure Konfigurálás @@ -4067,7 +4175,7 @@ A tengely megfordításához mozgasd a kart először függőlegesen, majd vízs - + Test Teszt @@ -4086,7 +4194,7 @@ A tengely megfordításához mozgasd a kart először függőlegesen, majd vízs <a href='https://yuzu-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> - + %1:%2 %1:%2 @@ -4095,77 +4203,77 @@ A tengely megfordításához mozgasd a kart először függőlegesen, majd vízs yuzu - + <a href='https://eden-emulator.github.io/wiki/using-a-controller-or-android-phone-for-motion-or-touch-input'><span style="text-decoration: underline; color:#039be5;">Learn More</span></a> - + Port number has invalid characters A port érvénytelen karaktereket tartalmaz - - - - - - - eden + + + + + + + Eden - + Port has to be in range 0 and 65353 A portnak 0 és 65353 közötti tartományban kell lennie. - + IP address is not valid Érvénytelen IP-cím - + This UDP server already exists Ez az UDP szerver már létezik - + Unable to add more than 8 servers 8-nál több kiszolgálót nem lehet hozzáadni - + Testing Tesztelés - + Configuring Konfigurálás - + Test Successful Sikeres teszt - + Successfully received data from the server. Az adatok sikeresen beérkeztek a kiszolgálótól. - + Test Failed Sikertelen teszt - + 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. - + UDP Test or calibration configuration is in progress.<br>Please wait for them to finish. UDP tesztelés vagy a kalibrálás konfigurálása folyamatban van.<br>Kérjük, várj, amíg befejeződik. @@ -4292,7 +4400,12 @@ A jelenlegi érték %1% és %2%. Hálózati adapter - + + Enable Airplane Mode + + + + None Nincs @@ -4350,52 +4463,52 @@ A jelenlegi érték %1% és %2%. Néhány beállítás csak akkor érhető el, amikor nem fut játék. - + Add-Ons Kiegészítők - + System Rendszer - + CPU CPU - + Graphics Grafika - + Adv. Graphics Haladó graf. - + GPU Extensions - + Audio Hang - + Input Profiles Beviteli profilok - + Linux Linux - + Properties Tulajdonságok @@ -4413,12 +4526,12 @@ A jelenlegi érték %1% és %2%. Kiegészítők - + Patch Name Patch név - + Version Verzió @@ -4456,27 +4569,32 @@ A jelenlegi érték %1% és %2%. Kép beállítása - + + Select Avatar + + + + Add Hozzáadás - + Rename Átnevezés - + Remove Eltávolítás - + Profile management is available only when game is not running. A profilkezelés játék közben nem érhető el. - + %1 %2 %1 is the profile username, %2 is the formatted UUID (e.g. 00112233-4455-6677-8899-AABBCCDDEEFF)) @@ -4484,100 +4602,189 @@ A jelenlegi érték %1% és %2%. %2 - + Enter Username Felhasználónév megadása - + Users Felhasználók - + Enter a username for the new user: Add meg az új felhasználó nevét: - + Enter a new username: Add meg az új felhasználóneved: - + + Error saving user image + + + + + Unable to save image to file + + + + Select User Image Felhasználói kép kiválasztása - - JPEG Images (*.jpg *.jpeg) - JPEG képek (*.jpg *.jpeg) + + Image Formats (*.jpg *.jpeg *.png *.bmp) + - + + No firmware available + Nincs elérhető firmware + + + + Please install the firmware to use firmware avatars. + + + + + + Error loading archive + + + + + Archive is not available. Please install/reinstall firmware. + + + + + Archive does not contain romfs. It is probably corrupt. + + + + + Error extracting archive + + + + + Archive could not be extracted. It is probably corrupt. + + + + + Error finding image directory + + + + + Failed to find image directory in the archive. + + + + + No images found + + + + + No avatar images were found in the archive. + + + + JPEG Images (*.jpg *.jpeg) + JPEG képek (*.jpg *.jpeg) + + + Error deleting image Hiba történt a kép törlése során - + Error occurred attempting to overwrite previous image at: %1. Hiba történt az előző kép felülírása során: %1. - + Error deleting file Hiba történt a fájl törlés során - + Unable to delete existing file: %1. A meglévő fájl törlése nem lehetséges: %1. - + Error creating user image directory Hiba történt a felhasználó kép könyvtárának létrehozásakor - + Unable to create directory %1 for storing user images. Nem sikerült létrehozni a(z) %1 könyvtárat a felhasználó képeinek tárolásához. - Error copying user image - Hiba történt a felhasználói kép másolásakor + Hiba történt a felhasználói kép másolásakor - Unable to copy image from %1 to %2 - Nem sikerült kimásolni a képet innen %1 ide %2 + Nem sikerült kimásolni a képet innen %1 ide %2 - Error resizing user image - Hiba történt a felhasználói kép átméretezésekor + Hiba történt a felhasználói kép átméretezésekor - Unable to resize image - A kép nem méretezhető át + A kép nem méretezhető át + + + + ConfigureProfileManagerAvatarDialog + + + Select + + + + + Cancel + Mégse + + + + Background Color + + + + + Select Firmware Avatar + ConfigureProfileManagerDeleteDialog - + Delete this user? All of the user's save data will be deleted. Törlöd a felhasználót? Minden felhasználói adat törölve lesz. - + Confirm Delete Törlés megerősítése - + Name: %1 UUID: %2 Név: %1 @@ -4630,7 +4837,7 @@ UUID: %2 - + Enable Engedélyezés @@ -4641,7 +4848,7 @@ UUID: %2 - + Not connected Nincs csatlakoztatva @@ -4651,63 +4858,63 @@ UUID: %2 Visszaállítás - + Clear Törlés - + [not set] [nincs beáll.] - + Invert axis Fordított tengely - - + + Deadzone: %1% Holttér: %1% - + Error enabling ring input Hiba a ring bemenet engedélyezésekor - + Direct Joycon driver is not enabled Direct Joycon illesztő nincs engedélyezve - + Configuring Konfigurálás - + The current mapped device doesn't support the ring controller A jelenleg hozzárendelt eszköz nem támogatja a ring vezérlőt. - + The current mapped device doesn't have a ring attached A jelenleg hozzárendelt eszközhöz nincs ring csatolva. - + The current mapped device is not connected A jelenleg hozzárendelt eszköz nincs csatlakoztatva - + Unexpected driver result %1 Váratlan illesztőprogram eredmény %1 - + [waiting] [várakozás] @@ -4749,7 +4956,7 @@ UUID: %2 - <html><head/><body><p>Reads controller input from scripts in the same format as TAS-nx scripts.<br/>For a more detailed explanation, please consult the <a href="https://eden-emulator.github.io/help/feature/tas/"><span style=" text-decoration: underline; color:#039be5;">help page</span></a> on the eden website.</p></body></html> + <html><head/><body><p>Reads controller input from scripts in the same format as TAS-nx scripts.<br/>For a more detailed explanation, please consult the <a href="https://eden-emulator.github.io/help/feature/tas/"><span style=" text-decoration: underline; color:#039be5;">help page</span></a> on the Eden website.</p></body></html> @@ -4801,12 +5008,12 @@ UUID: %2 ConfigureTasDialog - + TAS Configuration TAS konfigurálása - + Select TAS Load Directory... TAS betöltési könyvtár kiválasztása... @@ -4916,7 +5123,7 @@ Húzd a pontokat a pozíció megváltoztatásához, vagy kattints duplán a táb - Warning: The settings in this page affect the inner workings of eden's emulated touchscreen. Changing them may result in undesirable behavior, such as the touchscreen partially or not working. You should only use this page if you know what you are doing. + Warning: The settings in this page affect the inner workings of Eden's emulated touchscreen. Changing them may result in undesirable behavior, such as the touchscreen partially or not working. You should only use this page if you know what you are doing. @@ -5236,6 +5443,16 @@ Húzd a pontokat a pozíció megváltoztatásához, vagy kattints duplán a táb Web Web + + + Eden Web Service + + + + + Generate + + yuzu Web Service yuzu webszolgáltatás @@ -5245,42 +5462,29 @@ Húzd a pontokat a pozíció megváltoztatásához, vagy kattints duplán a táb A felhasználóneved és tokened megadásával hozzájárulsz ahhoz, hogy a yuzu további felhasználási adatokat gyűjtsön, melyek felhasználói azonosításra alkalmas információkat tartalmazhatnak. - - eden Web Service - - - - - By providing your username and token, you agree to allow eden to collect additional usage data, which may include user identifying information. - - - - Verify - Megerősítés + Megerősítés - Sign up - Regisztráció + Regisztráció - + Token: Token: - + Username: Felhasználónév: - What is my token? - Mi a tokenem? + Mi a tokenem? - + Web Service configuration can only be changed when a public room isn't being hosted. A webes szolgáltatás konfigurációja csak akkor módosítható, ha nincs nyilvános szoba megnyitva. @@ -5305,12 +5509,12 @@ Húzd a pontokat a pozíció megváltoztatásához, vagy kattints duplán a táb Helyreállítás - + Discord Presence Discord jelenlét - + Show Current Game in your Discord Status Jelenlegi játék megjelenítése a Discord állapotodban @@ -5319,24 +5523,8 @@ Húzd a pontokat a pozíció megváltoztatásához, vagy kattints duplán a táb <a href='https://yuzu-emu.org/help/feature/telemetry/'><span style="text-decoration: underline; color:#039be5;">Tudj meg többet</span></a> - <a href='https://profile.yuzu-emu.org/'><span style="text-decoration: underline; color:#039be5;">Sign up</span></a> - <a href='https://profile.yuzu-emu.org/'><span style="text-decoration: underline; color:#039be5;">Regisztráció</span></a> - - - - <a href='https://evilperson1337.notion.site/Hosting-a-Room-Inside-of-Eden-20457c2edaf680108abac6215a79acdb'><span style="text-decoration: underline; color:#039be5;">What is my token?</span></a> - - - - - Warning - - - - - Verification is currently nonfunctional, instead generate a random 48-character string with only lowercase a-z. - + <a href='https://profile.yuzu-emu.org/'><span style="text-decoration: underline; color:#039be5;">Regisztráció</span></a> <a href='https://yuzu-emu.org/wiki/yuzu-web-service/'><span style="text-decoration: underline; color:#039be5;">What is my token?</span></a> @@ -5359,10 +5547,9 @@ Húzd a pontokat a pozíció megváltoztatásához, vagy kattints duplán a táb Token nincs megerősítve. A változtatások nem lettek elmentve. - Unverified, please click Verify before saving configuration Tooltip - Nincs megerősítve, kattints a Megerősítés gombra mielőtt elmentenéd a konfigurációt + Nincs megerősítve, kattints a Megerősítés gombra mielőtt elmentenéd a konfigurációt Verifying... @@ -5386,20 +5573,67 @@ Húzd a pontokat a pozíció megváltoztatásához, vagy kattints duplán a táb 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. + + + + All Good + Tooltip + + + + + Must be between 4-20 characters + Tooltip + + + + + Must be 48 characters, and lowercase a-z + Tooltip + + ControllerDialog - + Controller P1 Kontroller P1 - + &Controller P1 &Kontroller P1 + + DepsDialog + + + Eden Dependencies + + + + + <html><head/><body><p><span style=" font-size:28pt;">Eden Dependencies</span></p></body></html> + + + + + <html><head/><body><p>The projects that make Eden possible</p></body></html> + + + + + Dependency + + + + + Version + Verzió + + DirectConnect @@ -5505,7 +5739,12 @@ Húzd a pontokat a pozíció megváltoztatásához, vagy kattints duplán a táb - Creating a room failed. Please retry. Restarting eden might be necessary. + Creating a room failed. Please retry. Restarting Eden might be necessary. + + + + + Version mismatch! Please update to the latest version of Eden. If the problem persists, contact the room host and ask them to update the server. @@ -5513,11 +5752,6 @@ Húzd a pontokat a pozíció megváltoztatásához, vagy kattints duplán a táb The host of the room has banned you. Speak with the host to unban you or try a different room. A szoba házigazdája kitiltott téged. Beszélj a házigazdával, hogy feloldjon téged, vagy csatlakozz másik szobához. - - - Version mismatch! Please update to the latest version of eden. If the problem persists, contact the room host and ask them to update the server. - - Incorrect password. @@ -5579,7 +5813,7 @@ Látogasd meg a Konfigurálás -> Rendszer -> Hálózat menüpontokat a be Telemetria - + Broken Vulkan Installation Detected Hibás Vulkan telepítés észlelve @@ -5588,869 +5822,866 @@ Látogasd meg a Konfigurálás -> Rendszer -> Hálózat menüpontokat a be A Vulkan inicializálása sikertelen volt az indulás során. <br><br>Kattints ide<a href='https://yuzu-emu.org/wiki/faq/#yuzu-starts-with-the-error-broken-vulkan-installation-detected'>a probléma megoldásához szükséges instrukciókhoz</a>. - + Running a game TRANSLATORS: This string is shown to the user to explain why yuzu needs to prevent the computer from sleeping Játék közben - + Loading Web Applet... Web applet betöltése... - - + + Disable Web Applet Web applet letiltása - + Disabling the web applet can lead to undefined behavior and should only be used with Super Mario 3D All-Stars. Are you sure you want to disable the web applet? (This can be re-enabled in the Debug settings.) A web applet letiltása nem kívánt viselkedéshez vezethet, és csak a Super Mario 3D All-Stars játékhoz ajánlott. Biztosan szeretnéd letiltani a web appletet? (Ezt újra engedélyezheted a Hibakeresés beállításokban.) - + The amount of shaders currently being built A jelenleg készülő árnyékolók mennyisége - + The current selected resolution scaling multiplier. A jelenleg kiválasztott felbontás skálázási aránya. - + Current emulation speed. Values higher or lower than 100% indicate emulation is running faster or slower than a Switch. Jelenlegi emuláció sebessége. 100%-nál magasabb vagy alacsonyabb érték azt jelzi, hogy mennyivel gyorsabb vagy lassabb a Switch-nél. - + How many frames per second the game is currently displaying. This will vary from game to game and scene to scene. A másodpercenként megjelenített képkockák számát mutatja. Ez játékonként és jelenetenként eltérő lehet. - + Time taken to emulate a Switch frame, not counting framelimiting or v-sync. For full-speed emulation this should be at most 16.67 ms. Egy Switch-kép emulálásához szükséges idő, képkockaszám-korlátozás és v-sync nélkül. Teljes sebességű emulálás esetén ennek legfeljebb 16.67 ms-nak kell lennie. - + Unmute Némítás feloldása - + Mute Némítás - + Reset Volume Hangerő visszaállítása - + &Clear Recent Files &Legutóbbi fájlok törlése - + &Continue &Folytatás - + &Pause &Szünet - Warning Outdated Game Format - Figyelmeztetés: Elavult játékformátum + Figyelmeztetés: Elavult játékformátum You are using the deconstructed ROM directory format for this game, which is an outdated format that has been superseded by others such as NCA, NAX, XCI, or NSP. Deconstructed ROM directories lack icons, metadata, and update support.<br><br>For an explanation of the various Switch formats yuzu supports, <a href='https://yuzu-emu.org/wiki/overview-of-switch-game-formats'>check out our wiki</a>. This message will not be shown again. A dekonstruált ROM könyvtár formátumot használod ehhez a játékhoz, ami egy elavult formátum, melyet már felváltottak más formátumok, mint pl. NCA, NAX, XCI vagy NSP. A dekonstruált ROM könyvtárak nem tartalmaznak ikonokat, metaadatokat és frissítési támogatást.<br><br>A yuzu által támogatott Switch formátumok ismertetéséhez <a href='https://yuzu-emu.org/wiki/overview-of-switch-game-formats'>látogasd meg wikinket</a>. Ez az üzenet nem jelenik meg újra. - - + + Error while loading ROM! Hiba történt a ROM betöltése során! - + The ROM format is not supported. A ROM formátum nem támogatott. - + An error occurred initializing the video core. Hiba történt a videómag inicializálásakor. - + Error while loading ROM! %1 %1 signifies a numeric error code. Hiba történt a ROM betöltése során! %1 - + Vulkan initialization failed during boot.<br><br>Click <a href='https://eden-emulator.github.io/wiki/faq/#yuzu-starts-with-the-error-broken-vulkan-installation-detected'>here for instructions to fix the issue</a>. - - Game Updates Warning - - - - - The game you are trying to launch is known to have performance or booting issues when updates are applied. Please try increasing the memory layout to 6GB or 8GB if any issues occur.<br><br>Press "OK" to continue launching, or "Cancel" to cancel the launch. - - - - - Don't show again for this game - - - - - You are using the deconstructed ROM directory format for this game, which is an outdated format that has been superseded by others such as NCA, NAX, XCI, or NSP. Deconstructed ROM directories lack icons, metadata, and update support.<br><br>For an explanation of the various Switch formats eden supports, <a href='https://eden-emulator.github.io/wiki/overview-of-switch-game-formats'>check out our wiki</a>. This message will not be shown again. - - - - - eden has encountered an error while running the video core. This is usually caused by outdated GPU drivers, including integrated ones. Please see the log for more details. For more information on accessing the log, please see the following page: <a href='https://eden-emulator.github.io/help/reference/log-files/'>How to Upload the Log File</a>. - - - - - %1<br>Please redump your files or ask on Discord for help. - %1 signifies an error string. - - - - + An unknown error occurred. Please see the log for more details. Ismeretlen hiba történt. Nyisd meg a logot a részletekért. - + (64-bit) (64-bit) - + (32-bit) (32-bit) - + %1 %2 %1 is the title name. %2 indicates if the title is 64-bit or 32-bit %1 %2 - + Closing software... Szoftver bezárása... - + Save Data Mentett adat - + Mod Data Modolt adat - + Error Opening %1 Folder Hiba törént a(z) %1 mappa megnyitása során - - + + Folder does not exist! A mappa nem létezik! - Error Opening Transferable Shader Cache - Hiba az áthelyezhető árnyékoló gyorsítótár megnyitásakor + Hiba az áthelyezhető árnyékoló gyorsítótár megnyitásakor - Failed to create the shader cache directory for this title. - Nem sikerült létrehozni az árnyékoló gyorsítótár könyvtárat ehhez a játékhoz. + Nem sikerült létrehozni az árnyékoló gyorsítótár könyvtárat ehhez a játékhoz. - Error Removing Contents - Hiba történt a játéktartalom eltávolítása során + Hiba történt a játéktartalom eltávolítása során - Error Removing Update - Hiba történt a frissítés eltávolítása során + Hiba történt a frissítés eltávolítása során - Error Removing DLC - Hiba történt a DLC eltávolítása során + Hiba történt a DLC eltávolítása során - + Remove Installed Game Contents? Törlöd a telepített játéktartalmat? - + Remove Installed Game Update? Törlöd a telepített játékfrissítést? - + Remove Installed Game DLC? Törlöd a telepített DLC-t? - + Remove Entry Bejegyzés törlése - - - - - - Successfully Removed - Sikeresen eltávolítva + Sikeresen eltávolítva - Successfully removed the installed base game. - A telepített alapjáték sikeresen el lett távolítva. + A telepített alapjáték sikeresen el lett távolítva. - The base game is not installed in the NAND and cannot be removed. - Az alapjáték nincs telepítve a NAND-ra, ezért nem törölhető. + Az alapjáték nincs telepítve a NAND-ra, ezért nem törölhető. - Successfully removed the installed update. - A telepített frissítés sikeresen el lett távolítva. + A telepített frissítés sikeresen el lett távolítva. - There is no update installed for this title. - Nincs telepítve frissítés ehhez a játékhoz. + Nincs telepítve frissítés ehhez a játékhoz. - There are no DLC installed for this title. - Nincs telepítve DLC ehhez a játékhoz. + Nincs telepítve DLC ehhez a játékhoz. - Successfully removed %1 installed DLC. - %1 telepített DLC sikeresen eltávolítva. + %1 telepített DLC sikeresen eltávolítva. - + Delete OpenGL Transferable Shader Cache? Törlöd az OpenGL áthelyezhető shader gyorsítótárat? - + Delete Vulkan Transferable Shader Cache? Törlöd a Vulkan áthelyezhető shader gyorsítótárat? - + Delete All Transferable Shader Caches? Törlöd az összes áthelyezhető árnyékoló gyorsítótárat? - + Remove Custom Game Configuration? Törlöd az egyéni játék konfigurációt? - + Remove Cache Storage? Törlöd a gyorsítótárat? - + Remove File Fájl eltávolítása - + Remove Play Time Data Játékidő törlése - + Reset play time? Visszaállítod a játékidőt? - - Error Removing Transferable Shader Cache - Hiba az áthelyezhető árnyékoló gyorsítótár eltávolításakor + Hiba az áthelyezhető árnyékoló gyorsítótár eltávolításakor - - A shader cache for this title does not exist. - Ehhez a játékhoz nem létezik árnyékoló gyorsítótár. + Ehhez a játékhoz nem létezik árnyékoló gyorsítótár. - Successfully removed the transferable shader cache. - Az áthelyezhető árnyékoló gyorsítótár sikeresen eltávolítva. + Az áthelyezhető árnyékoló gyorsítótár sikeresen eltávolítva. - Failed to remove the transferable shader cache. - Nem sikerült eltávolítani az áthelyezhető árnyékoló gyorsítótárat. + Nem sikerült eltávolítani az áthelyezhető árnyékoló gyorsítótárat. - Error Removing Vulkan Driver Pipeline Cache - Hiba a Vulkan driver pipeline gyorsítótár eltávolításakor + Hiba a Vulkan driver pipeline gyorsítótár eltávolításakor - - Failed to remove the driver pipeline cache. - - - - - Error Removing Transferable Shader Caches - Hiba az áthelyezhető árnyékoló gyorsítótár eltávolításakor + Hiba az áthelyezhető árnyékoló gyorsítótár eltávolításakor - Successfully removed the transferable shader caches. - Az áthelyezhető shader gyorsítótár sikeresen eltávolítva. + Az áthelyezhető shader gyorsítótár sikeresen eltávolítva. - Failed to remove the transferable shader cache directory. - Nem sikerült eltávolítani az áthelyezhető árnyékoló gyorsítótár könyvtárat. + Nem sikerült eltávolítani az áthelyezhető árnyékoló gyorsítótár könyvtárat. - - Error Removing Custom Configuration - Hiba történt az egyéni konfiguráció törlése során + Hiba történt az egyéni konfiguráció törlése során - A custom configuration for this title does not exist. - Nem létezik egyéni konfiguráció ehhez a játékhoz. + Nem létezik egyéni konfiguráció ehhez a játékhoz. - Successfully removed the custom game configuration. - Egyéni játék konfiguráció sikeresen eltávolítva. + Egyéni játék konfiguráció sikeresen eltávolítva. - Failed to remove the custom game configuration. - Nem sikerült eltávolítani az egyéni játék konfigurációt. + Nem sikerült eltávolítani az egyéni játék konfigurációt. - - + + RomFS Extraction Failed! RomFS kicsomagolása sikertelen! - + There was an error copying the RomFS files or the user cancelled the operation. Hiba történt a RomFS fájlok másolása közben, vagy a felhasználó megszakította a műveletet. - + Full Teljes - + Skeleton Szerkezet - + Select RomFS Dump Mode RomFS kimentési mód kiválasztása - + Please select the how you would like the RomFS dumped.<br>Full will copy all of the files into the new directory while <br>skeleton will only create the directory structure. - + There is not enough free space at %1 to extract the RomFS. Please free up space or select a different dump directory at Emulation > Configure > System > Filesystem > Dump Root Nincs elég hely a RomFS kibontásához itt: %1. Szabadítsd fel helyet, vagy válassz egy másik kimentési könyvtárat az Emuláció > Konfigurálás > Rendszer > Fájlrendszer > Kimentési gyökér menüpontban. - + Extracting RomFS... RomFS kicsomagolása... - - - - - + + Cancel Mégse - + RomFS Extraction Succeeded! RomFS kibontása sikeres volt! - - - + The operation completed successfully. A művelet sikeresen végrehajtva. - Integrity verification couldn't be performed! - Az integritás ellenőrzését nem lehetett elvégezni! + Az integritás ellenőrzését nem lehetett elvégezni! - File contents were not checked for validity. - A fájl tartalmának érvényessége nem lett ellenőrizve. + A fájl tartalmának érvényessége nem lett ellenőrizve. - - Verifying integrity... - Integritás ellenőrzése... + Integritás ellenőrzése... - - Integrity verification succeeded! - Integritás ellenőrzése sikeres! + Integritás ellenőrzése sikeres! - - Integrity verification failed! - Az integritás ellenőrzése sikertelen! + Az integritás ellenőrzése sikertelen! - File contents may be corrupt. - A fájl tartalma sérült lehet. + A fájl tartalma sérült lehet. - - - - Create Shortcut - Parancsikon létrehozása + Parancsikon létrehozása - Do you want to launch the game in fullscreen? - Szeretnéd teljes képernyőn elindítani a játékot? + Szeretnéd teljes képernyőn elindítani a játékot? - Successfully created a shortcut to %1 - Parancsikon sikeresen létrehozva ide %1 + Parancsikon sikeresen létrehozva ide %1 - This will create a shortcut to the current AppImage. This may not work well if you update. Continue? - Ez létrehoz egy parancsikont az aktuális AppImage-hez. Frissítés után nem garantált a helyes működése. Folytatod? + Ez létrehoz egy parancsikont az aktuális AppImage-hez. Frissítés után nem garantált a helyes működése. Folytatod? - Failed to create a shortcut to %1 - Nem sikerült létrehozni a parancsikont: %1 + Nem sikerült létrehozni a parancsikont: %1 - Create Icon - Ikon létrehozása + Ikon létrehozása - Cannot create icon file. Path "%1" does not exist and cannot be created. - Nem hozható létre az ikonfájl. Az útvonal "%1" nem létezik és nem is hozható létre. + Nem hozható létre az ikonfájl. Az útvonal "%1" nem létezik és nem is hozható létre. - + + Warning: Outdated Game Format + + + + + You are using the deconstructed ROM directory format for this game, which is an outdated format that has been superseded by others such as NCA, NAX, XCI, or NSP. Deconstructed ROM directories lack icons, metadata, and update support.<br><br>For an explanation of the various Switch formats Eden supports, <a href='https://eden-emulator.github.io/wiki/overview-of-switch-game-formats'>check out our wiki</a>. This message will not be shown again. + + + + + Eden has encountered an error while running the video core. This is usually caused by outdated GPU drivers, including integrated ones. Please see the log for more details. For more information on accessing the log, please see the following page: <a href='https://yuzu-mirror.github.io/help/reference/log-files/'>How to Upload the Log File</a>. + + + + + %1<br>Please redump your files or ask on Discord/Revolt for help. + %1 signifies an error string. + + + + Error Opening %1 Hiba a %1 megnyitásakor - + 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. - + Switch Executable (%1);;All Files (*.*) %1 is an identifier for the Switch executable file extensions. Switch állományok(%1);;Minden fájl (*.*) - + Load File Fájl betöltése - + Open Extracted ROM Directory Kicsomagolt ROM könyvár megnyitása - + Invalid Directory Selected Érvénytelen könyvtár kiválasztva - + The directory you have selected does not contain a 'main' file. A kiválasztott könyvtár nem tartalmaz 'main' fájlt. - + Installable Switch File (*.nca *.nsp *.xci);;Nintendo Content Archive (*.nca);;Nintendo Submission Package (*.nsp);;NX Cartridge Image (*.xci) Telepíthető Switch fájl (*.nca *.nsp *.xci);;Nintendo Content Archive (*.nca);;Nintendo Submission Package (*.nsp);;NX Cartridge Image (*.xci) - + Install Files Fájlok telepítése - + %n file(s) remaining %n fájl van hátra + %n fájl van hátra - + Installing file "%1"... "%1" fájl telepítése... - - + + Install Results Telepítés eredménye - + To avoid possible conflicts, we discourage users from installing base games to the NAND. Please, only use this feature to install updates and DLC. A lehetséges konfliktusok elkerülése érdekében nem javasoljuk a felhasználóknak, hogy a NAND-ra telepítsék az alapjátékokat. Kérjük, csak frissítések és DLC-k telepítéséhez használd ezt a funkciót. - + %n file(s) were newly installed - %n fájl lett frissen telepítve - + %n fájl lett frissen telepítve + %n fájl lett frissen telepítve - + %n file(s) were overwritten - %n fájl lett felülírva - + %n fájl lett felülírva + %n fájl lett felülírva - + %n file(s) failed to install %n fájl telepítése sikertelen + %n fájl telepítése sikertelen - + System Application Rendszeralkalmazás - + System Archive Rendszerarchívum - + System Application Update Rendszeralkalmazás frissítés - + Firmware Package (Type A) Firmware csomag (A típus) - + Firmware Package (Type B) Firmware csomag (B típus) - + Game Játék - + Game Update Játékfrissítés - + Game DLC Játék DLC - + Delta Title - + Select NCA Install Type... NCA telepítési típus kiválasztása... - + Please select the type of title you would like to install this NCA as: (In most instances, the default 'Game' is fine.) Kérjük, válaszd ki, hogy milyen típusú címként szeretnéd telepíteni ezt az NCA-t: (A legtöbb esetben az alapértelmezett "Játék" megfelelő.) - + Failed to Install Nem sikerült telepíteni - + The title type you selected for the NCA is invalid. Az NCA-hoz kiválasztott címtípus érvénytelen. - + File not found Fájl nem található - + File "%1" not found "%1" fájl nem található - + OK OK - - + + Hardware requirements not met A hardverkövetelmények nem teljesülnek - - + + Your system does not meet the recommended hardware requirements. Compatibility reporting has been disabled. Az eszközöd nem felel meg az ajánlott hardverkövetelményeknek. A kompatibilitás jelentése letiltásra került. - + Missing yuzu Account Hiányzó yuzu fiók - - In order to submit a game compatibility test case, you must link your eden account.<br><br/>To link your eden account, go to Emulation &gt; Configuration &gt; Web. + + In order to submit a game compatibility test case, you must set up your web token and username.<br><br/>To link your eden account, go to Emulation &gt; Configuration &gt; Web. - - Install decryption keys and restart eden before attempting to install firmware. + + + Install decryption keys and restart Eden before attempting to install firmware. - - Firmware installation cancelled, firmware may be in bad state, restart eden or re-install firmware. + + Select Dumped Firmware ZIP - - Encryption keys are missing. + + Zipped Archives (*.zip) - - Are you sure you want to close eden? + + Firmware cleanup failed - - - - eden + + Failed to clean up extracted firmware cache. +Check write permissions in the system temp directory and try again. +OS reported error: %1 - - The currently running application has requested eden to not exit. + + Please install firmware to use the Album applet. + + + + + Please install firmware to use the Cabinet applet. + + + + + Please install firmware to use the Mii editor. + + + + + Please install firmware to use the Controller Menu. + + + + + Please install firmware to use the Home Menu. + + + + + Firmware Corrupted + + + + + Firmware Too New + + + + + +Continue anyways? + + + + + Don't show again + + + + + Please install firmware to use Starter. + + + + + Are you sure you want to close Eden? + + + + + + + Eden + + + + + The currently running application has requested Eden to not exit. Would you like to bypass this and exit anyway? + + + Encryption keys are missing. + + In order to submit a game compatibility test case, you must link your yuzu account.<br><br/>To link your yuzu account, go to Emulation &gt; Configuration &gt; Web. A játék kompatibilitási teszteset beküldéséhez csatolnod kell a yuzu fiókodat.<br><br/>A yuzu fiókod csatolásához menj az Emuláció &gt; Konfigurálás &gt; Web menüpontra. - + Error opening URL Hiba történt az URL megnyitása során - + Unable to open the URL "%1". Hiba történt az URL megnyitása során: "%1". - + TAS Recording TAS felvétel - + Overwrite file of player 1? Felülírod az 1. játékos fájlját? - + Invalid config detected Érvénytelen konfig észlelve - + Handheld controller can't be used on docked mode. Pro controller will be selected. A kézi vezérlés nem használható dokkolt módban. Helyette a Pro kontroller lesz kiválasztva. - - + + Amiibo Amiibo - - + + The current amiibo has been removed A jelenlegi amiibo el lett távolítva - + Error Hiba - - + + The current game is not looking for amiibos A jelenlegi játék nem keres amiibo-kat - + Amiibo File (%1);; All Files (*.*) Amiibo fájl (%1);; Minden fájl (*.*) - + Load Amiibo Amiibo betöltése - + Error loading Amiibo data Amiibo adatok betöltése sikertelen - + The selected file is not a valid amiibo A kiválasztott fájl nem érvényes amiibo - + The selected file is already on use A kiválasztott fájl már használatban van - + An unknown error occurred Ismeretlen hiba történt - - Verification failed for the following files: %1 - Az alábbi fájlok ellenőrzése sikertelen volt: + Az alábbi fájlok ellenőrzése sikertelen volt: %1 - + + Keys not installed Nincsenek telepítve kulcsok @@ -6459,273 +6690,234 @@ Would you like to bypass this and exit anyway? Telepítsd a visszafejtési kulcsokat, majd indítsd újra a yuzut, mielőtt megpróbálnád telepíteni a firmware-t. - + Select Dumped Firmware Source Location Kimentett Firmware célhelyének kiválasztása - Installing Firmware... - Firmware telepítése... + Firmware telepítése... - - - - Firmware install failed - Firmware telepítése sikertelen + Firmware telepítése sikertelen - Unable to locate potential firmware NCA files - Nem találhatóak potenciális firmware NCA fájlok + Nem találhatóak potenciális firmware NCA fájlok - Failed to delete one or more firmware file. - Nem sikerült törölni egy vagy több firmware fájlt. + Nem sikerült törölni egy vagy több firmware fájlt. Firmware installation cancelled, firmware may be in bad state, restart yuzu or re-install firmware. A firmware telepítése megszakadt, előfordulhat, hogy a firmware hibás. Indítsd újra a yuzu-t vagy telepítsd újra a firmware-t. - One or more firmware files failed to copy into NAND. - Egy vagy több firmware fájlt nem sikerült átmásolni a NAND-ba. + Egy vagy több firmware fájlt nem sikerült átmásolni a NAND-ba. - Firmware integrity verification failed! - Firmware integritás ellenőrzése sikertelen! + Firmware integritás ellenőrzése sikertelen! - Select Dumped Keys Location - Kimentett kulcsok helyének kiválasztása + Kimentett kulcsok helyének kiválasztása - - - Decryption Keys install failed - A visszafejtési kulcsok telepítése sikertelen volt + A visszafejtési kulcsok telepítése sikertelen volt - prod.keys is a required decryption key file. - A prod.keys egy szükséges dekódoló kulcsfájl. + A prod.keys egy szükséges dekódoló kulcsfájl. - One or more keys failed to copy. - Egy vagy több kulcs másolása sikertelen. + Egy vagy több kulcs másolása sikertelen. - Decryption Keys install succeeded - A visszafejtési kulcsok telepítése sikeres volt. + A visszafejtési kulcsok telepítése sikeres volt. - Decryption Keys were successfully installed - A visszafejtési kulcsok sikeresen telepítve lettek + A visszafejtési kulcsok sikeresen telepítve lettek - Decryption Keys failed to initialize. Check that your dumping tools are up to date and re-dump keys. - A visszafejtési kulcsok inicializálása sikertelen. Ellenőrizd, hogy a kimentési eszközeid (dumping tools) naprakészek, és mentsd ki a kulcsokat újra. + A visszafejtési kulcsok inicializálása sikertelen. Ellenőrizd, hogy a kimentési eszközeid (dumping tools) naprakészek, és mentsd ki a kulcsokat újra. - - - - - - - + + + + + + No firmware available Nincs elérhető firmware - Please install the firmware to use the Album applet. - Kérjük, telepítsd a firmware-t az Album applet használatához. + Kérjük, telepítsd a firmware-t az Album applet használatához. - + Album Applet Album applet - + Album applet is not available. Please reinstall firmware. Album applet nem elérhető. Kérjük, telepítsd újra a firmware-t. - Please install the firmware to use the Cabinet applet. - Kérjük, telepítsd a firmware-t a kabinet applet használatához. + Kérjük, telepítsd a firmware-t a kabinet applet használatához. - + Cabinet Applet Kabinet applet - + Cabinet applet is not available. Please reinstall firmware. Kabinet applet nem elérhető. Kérjük, telepítsd újra a firmware-t. - Please install the firmware to use the Mii editor. - Kérjük, telepítsd a firmware-t a Mii-szerkesztő használatához. + Kérjük, telepítsd a firmware-t a Mii-szerkesztő használatához. - + Mii Edit Applet Mii szerkesztő applet - + Mii editor is not available. Please reinstall firmware. A Mii szerkesztő nem elérhető. Kérjük, telepítsd újra a firmware-t. - Please install the firmware to use the Controller Menu. - Kérjük, telepítsd a firmware-t a vezérlő menü használatához. + Kérjük, telepítsd a firmware-t a vezérlő menü használatához. - + Controller Applet Vezérlő applet - + Controller Menu is not available. Please reinstall firmware. A vezérlő menü nem érhető el. Kérjük, telepítsd újra a firmware-t. - - Please install the firmware to use the Home Menu. - - - - - + Home Menu Applet - - + Home Menu is not available. Please reinstall firmware. - - Please install the firmware to use Starter. - - - - + Starter Applet - + Starter is not available. Please reinstall firmware. - - Please install firmware to use the home menu. - - - - + Capture Screenshot Képernyőkép készítése - + PNG Image (*.png) PNG kép (*.png) - + Update Available - + Update %1 for Eden is available. Would you like to download it? - + TAS state: Running %1/%2 TAS állapot: %1/%2 futtatása - + TAS state: Recording %1 TAS állapot: %1 felvétele - + TAS state: Idle %1/%2 TAS állapot: Tétlen %1/%2 - + TAS State: Invalid TAS állapot: Érvénytelen - + &Stop Running &Futás leállítása - + &Start &Indítás - + Stop R&ecording F&elvétel leállítása - + R&ecord F&elvétel - + Building: %n shader(s) Létrehozás: %n árnyékoló + Létrehozás: %n árnyékoló - + Scale: %1x %1 is the resolution scaling factor Skálázás: %1x - + Speed: %1% / %2% Sebesség: %1% / %2% - + Speed: %1% Sebesség: %1% @@ -6734,44 +6926,44 @@ Would you like to download it? Játék: %1 FPS (Feloldva) - + Game: %1 FPS Játék: %1 FPS - + Frame: %1 ms Képkocka: %1 ms - + %1 %2 %1 %2 - - + + FSR FSR - + NO AA Nincs élsimítás - + VOLUME: MUTE HANGERŐ: NÉMÍTVA - + VOLUME: %1% Volume percentage (e.g. 50%) HANGERŐ: %1% - + Derivation Components Missing @@ -6780,12 +6972,12 @@ Would you like to download it? Hiányzó titkosítókulcsok.<br>Kérjük, kövesd <a href='https://yuzu-emu.org/help/quickstart/'>a yuzu gyorstájékoztatót</a>a kulcsok, firmware és játékok beszerzéséhez. - + Select RomFS Dump Target RomFS kimentési cél kiválasztása - + Please select which RomFS you would like to dump. Kérjük, válaszd ki melyik RomFS-t szeretnéd kimenteni. @@ -6798,7 +6990,7 @@ Would you like to download it? yuzu - + Are you sure you want to stop the emulation? Any unsaved progress will be lost. Biztos le akarod állítani az emulációt? Minden nem mentett adat el fog veszni. @@ -6811,102 +7003,102 @@ Would you like to bypass this and exit anyway? Mégis ki szeretnél lépni? - + None Nincs - + FXAA FXAA - + SMAA SMAA - + Nearest Legközelebbi - + Bilinear Bilineáris - + Bicubic Bikubikus - + Gaussian Gauss-féle - + ScaleForce ScaleForce - + Area - + Docked Dokkolt - + Handheld Kézi - + Normal Normál - + High Magas - + Extreme Extrém - + Vulkan Vulkan - + OpenGL OpenGL - + Null Null - + GLSL GLSL - + GLASM GLASM - + SPIRV SPIRV @@ -6914,44 +7106,44 @@ Mégis ki szeretnél lépni? GRenderWindow - - + + OpenGL not available! OpenGL nem elérhető! - + OpenGL shared contexts are not supported. - - eden has not been compiled with OpenGL support. + + Eden has not been compiled with OpenGL support. - - + + Error while initializing OpenGL! Hiba történt az OpenGL inicializálása során! - + Your GPU may not support OpenGL, or you do not have the latest graphics driver. Lehetséges, hogy a GPU-d nem támogatja az OpenGL-t, vagy nem a legfrissebb grafikus illesztőprogram van telepítve. - + Error while initializing OpenGL 4.6! Hiba történt az OpenGL 4.6 inicializálása során! - + Your GPU may not support OpenGL 4.6, or you do not have the latest graphics driver.<br><br>GL Renderer:<br>%1 Lehetséges, hogy a GPU-d nem támogatja az OpenGL 4.6-ot, vagy nem a legfrissebb grafikus illesztőprogram van telepítve.<br><br>GL Renderer:<br>%1 - + Your GPU may not support one or more required OpenGL extensions. Please ensure you have the latest graphics driver.<br><br>GL Renderer:<br>%1<br><br>Unsupported extensions:<br>%2 Előfordulhat, hogy a GPU-d nem támogat egy vagy több szükséges OpenGL kiterjesztést. Győződj meg róla, hogy a legújabb videokártya-illesztőprogramot használod.<br><br>GL Renderer:<br>%1<br><br>Nem támogatott kiterjesztések:<br>%2 @@ -6959,128 +7151,128 @@ Mégis ki szeretnél lépni? GameList - + Favorite Kedvenc - + Start Game Játék indítása - + Start Game without Custom Configuration Játék indítása egyéni konfiguráció nélkül - + Open Save Data Location Mentett adatok helyének megnyitása - + Open Mod Data Location Modadatok helyének megnyitása - + Open Transferable Pipeline Cache Áthelyezhető pipeline gyorsítótár megnyitása - + Remove Eltávolítás - + Remove Installed Update Telepített frissítés eltávolítása - + Remove All Installed DLC Összes telepített DLC eltávolítása - + Remove Custom Configuration Egyéni konfiguráció eltávolítása - + Remove Play Time Data Játékidő törlése - + Remove Cache Storage Gyorsítótár ürítése - + Remove OpenGL Pipeline Cache OpenGL Pipeline gyorsítótár eltávolítása - + Remove Vulkan Pipeline Cache Vulkan pipeline gyorsítótár eltávolítása - + Remove All Pipeline Caches Az összes Pipeline gyorsítótár törlése - + Remove All Installed Contents Összes telepített tartalom törlése - + Dump RomFS RomFS kimentése - + Dump RomFS to SDMC RomFS kimentése SDMC-re - + Verify Integrity Integritás ellenőrzése - + Copy Title ID to Clipboard Játék címének vágólapra másolása - + Navigate to GameDB entry GameDB bejegyzéshez navigálás - + Create Shortcut Parancsikon létrehozása - + Add to Desktop Asztalhoz adás - + Add to Applications Menu Alkalmazások menühöz adás - + Configure Game @@ -7089,62 +7281,62 @@ Mégis ki szeretnél lépni? Tulajdonságok - + 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 Könyvtár helyének megnyitása - + Clear Törlés - + Name Név - + Compatibility Kompatibilitás - + Add-ons Kiegészítők - + File type Fájltípus - + Size Méret - + Play time Játékidő @@ -7152,62 +7344,62 @@ Mégis ki szeretnél lépni? GameListItemCompat - + Ingame Játékban - + Game starts, but crashes or major glitches prevent it from being completed. A játék elindul, de összeomlik, vagy súlyos hibák miatt nem fejezhető be. - + Perfect Tökéletes - + Game can be played without issues. A játék problémamentesen játszható. - + Playable Játszható - + Game functions with minor graphical or audio glitches and is playable from start to finish. A játék kisebb grafikai- és hanghibákkal végigjátszható. - + Intro/Menu Bevezető/Menü - + Game loads, but is unable to progress past the Start Screen. A játék betölt, de nem jut tovább a Kezdőképernyőn. - + 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. Ez a játék még nem lett tesztelve. @@ -7215,7 +7407,7 @@ Mégis ki szeretnél lépni? 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. @@ -7223,19 +7415,20 @@ Mégis ki szeretnél lépni? GameListSearchField - + %1 of %n result(s) %1 a(z) %n találatból + %1 a(z) %n találatból - + Filter: Szűrés: - + Enter pattern to filter Adj meg egy mintát a szűréshez @@ -7317,7 +7510,7 @@ Mégis ki szeretnél lépni? - Failed to announce the room to the public lobby. In order to host a room publicly, you must have a valid eden account configured in Emulation -> Configure -> Web. If you do not want to publish a room in the public lobby, then select Unlisted instead. + Failed to announce the room to the public lobby. In order to host a room publicly, you must have a valid Eden 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: @@ -7331,91 +7524,91 @@ Hibakereső üzenet: Hotkeys - + Audio Mute/Unmute Hang némítása/feloldása - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Main Window Főablak - + Audio Volume Down Hangerő csökkentése - + Audio Volume Up Hangerő növelése - + Capture Screenshot Képernyőkép készítése - + Change Adapting Filter Ablakadaptív szűrő módosítása - + Change Docked Mode Dokkolt mód módosítása - + Change GPU Accuracy GPU pontosság módosítása - + Configure Konfigurálás - + Configure Current Game - + Continue/Pause Emulation Emuláció folytatása/szüneteltetése - + Exit Fullscreen Kilépés a teljes képernyőből @@ -7424,97 +7617,97 @@ Hibakereső üzenet: Kilépés a yuzuból - - Exit eden + + Exit Eden - + Fullscreen Teljes képernyő - + Load File Fájl betöltése - + Load/Remove Amiibo Amiibo betöltése/törlése - + Multiplayer Browse Public Game Lobby Multiplayer nyilvános játéklobbi böngészése - + Multiplayer Create Room Multiplayer szoba létrehozása - + Multiplayer Direct Connect to Room Multiplayer közvetlen kapcsolódás szobához - + Multiplayer Leave Room Multiplayer szoba elhagyása - + Multiplayer Show Current Room Multiplayer jelenlegi szoba megjelenítése - + Restart Emulation Emuláció újraindítása - + Stop Emulation Emulácíó leállítása - + TAS Record TAS felvétel - + TAS Reset TAS visszaállítása - + TAS Start/Stop TAS indítása/leállítása - + Toggle Filter Bar Szűrősáv kapcsoló - + Toggle Framerate Limit Képfrissítési korlát kapcsoló - + Toggle Mouse Panning Egérpásztázás kapcsoló - + Toggle Renderdoc Capture Renderdoc felvétel kapcsoló - + Toggle Status Bar Állapotsáv kapcsoló @@ -7522,22 +7715,22 @@ Hibakereső üzenet: InstallDialog - + Please confirm these are the files you wish to install. Kérjük, erősítsd meg, hogy ezeket a fájlokat szeretnéd telepíteni. - + Installing an Update or DLC will overwrite the previously installed one. Egy frissítés vagy DLC telepítése felülírja a korábban telepítettet. - + Install Telepítés - + Install Files to NAND Fájlok telepítése a NAND-ra @@ -7545,7 +7738,7 @@ Hibakereső üzenet: LimitableInputDialog - + The text can't contain any of the following characters: %1 A szöveg nem tartalmazhatja a következő karakterek egyikét sem: @@ -7692,152 +7885,207 @@ Hibakereső üzenet: &Legutóbbi fájlok - + + Open &Eden Folders + + + + &Emulation &Emuláció - + &View &Nézet - + &Reset Window Size &Ablakméret visszaállítása - + &Debugging &Hibakeresés - + Reset Window Size to &720p Ablakfelbontás visszaállítása erre: &720p - + Reset Window Size to 720p Ablakfelbontás visszaállítása 720p-re - + Reset Window Size to &900p Ablakfelbontás visszaállítása erre: &900p - + Reset Window Size to 900p Ablakfelbontás visszaállítása 900p-re - + Reset Window Size to &1080p Ablakfelbontás visszaállítása erre: &1080p - + Reset Window Size to 1080p Ablakfelbontás visszaállítása 1080p-re - + &Multiplayer &Multiplayer - + &Tools &Eszközök - + &Amiibo &Amiibo - + &TAS &TAS - + &Create Home Menu Shortcut - + &Help &Segítség - + &Install Files to NAND... &Fájlok telepítése a NAND-ra... - + L&oad File... F&ájl betöltése... - + Load &Folder... &Mappa betöltése... - + E&xit K&ilépés - + &Pause &Szünet - + &Stop &Leállítás - + &Verify Installed Contents &Telepített tartalom ellenőrzése - - &About eden + + &Root Data Folder - - Open &eden Folder + + &NAND Folder - + + &SDMC Folder + + + + + &Mod Folder + + + + + &Log Folder + + + + + From Folder + + + + + From ZIP + + + + + &X + + + + + X (Twitter) + + + + + &Revolt + + + + + Revolt + + + + + &Eden Dependencies + + + + Open Home Menu - + &Discord - + Open &Setup - + &Desktop - + &Application Menu @@ -7846,97 +8094,97 @@ Hibakereső üzenet: &A yuzuról - + Single &Window Mode &Egyablakos mód - + Con&figure... Kon&figurálás... - + Ctrl+, - + Display D&ock Widget Headers D&ock Widget fejlécek megjelenítése - + Show &Filter Bar &Szűrősáv mutatása - + Show &Status Bar &Állapotsáv mutatása - + Show Status Bar Állapotsáv mutatása - + &Browse Public Game Lobby &Nyilvános játéklobbi böngészése - + &Create Room &Szoba létrehozása - + &Leave Room &Szoba elhagyása - + &Direct Connect to Room &Közvetlen csatlakozás szobához - + &Show Current Room &Jelenlegi szoba megjelenítése - + F&ullscreen T&eljes képernyő - + &Restart &Újraindítás - + Load/Remove &Amiibo... &Amiibo betöltése/törlése... - + &Report Compatibility &Kompatibilitás jelentése - + Open &Mods Page &Modok oldal megnyitása - + Open &Quickstart Guide &Gyorstájékoztató megnyitása - + &FAQ &GYIK @@ -7945,77 +8193,82 @@ Hibakereső üzenet: &yuzu mappa megnyitása - + &Capture Screenshot &Képernyőkép készítése - + Open &Album &Album megnyitása - + &Set Nickname and Owner &Becenév és tulajdonos beállítása - + &Delete Game Data &Játékadatok törlése - + &Restore Amiibo &Amiibo helyreállítása - + &Format Amiibo &Amiibo formázása - + Open &Mii Editor &Mii szerkesztő megnyitása - + &Configure TAS... &TAS konfigurálása... - + Configure C&urrent Game... J&elenlegi játék konfigurálása... - + &Start &Indítás - + &Reset &Visszaállítás - + R&ecord F&elvétel - + Open &Controller Menu &Vezérlő menü megnyitása - + Install Firmware Firmware telepítése - + + &About Eden + + + + Install Decryption Keys Visszafejtési kulcsok telepítése @@ -8023,26 +8276,36 @@ Hibakereső üzenet: MicroProfileDialog - &MicroProfile - &Mikroprofil + &Mikroprofil MigrationWorker - + Data was migrated successfully. - + Linking the old directory failed. You may need to re-run with administrative privileges on Windows. OS gave error: %1 - + + + +Note that your configuration and data will be shared with %1. +If this is not desirable, delete the following files: +%2 +%3 +%4 + + + + If you wish to clean up the files which were left in the old data location, you can do so by deleting the following directory: @@ -8102,37 +8365,37 @@ If you wish to clean up the files which were left in the old data location, you MultiplayerState - + Current connection status Jelenlegi kapcsolat állapota - + Not Connected. Click here to find a room! Nincs csatlakozva. Kattints ide a szobák kereséséhez. - + Not Connected Nincs csatlakozva - + Connected Csatlakozva - + New Messages Received Új üzenetek érkeztek - + Error Hiba - + Failed to update the room information. Please check your Internet connection and try hosting the room again. Debug Message: Nem sikerült frissíteni a szoba adatait. Kérjük, ellenőrizd az internetkapcsolatod, és próbáld újra a szoba létrehozását. @@ -8324,56 +8587,56 @@ p, li { white-space: pre-wrap; } Nincs játékban - + Installed SD Titles Telepített SD játékok - + Installed NAND Titles Telepített NAND játékok - + System Titles Rendszercímek - + Add New Game Directory Új játékkönyvtár hozzáadása - + Favorites Kedvencek - - + + Shift Shift - - + + Ctrl Ctrl - - + + Alt Alt - - - - + + + + [not set] [nincs beáll.] @@ -8384,14 +8647,14 @@ p, li { white-space: pre-wrap; } - - - - - - - - + + + + + + + + Axis %1%2 Tengely %1%2 @@ -8402,357 +8665,357 @@ p, li { white-space: pre-wrap; } Gomb %1 - - - - - - + + + + + + [unknown] [ismeretlen] - - - + + + Left Balra - - - + + + Right Jobbra - - - + + + Down Le - - - + + + Up Fel - - + + Z Z - - + + R R - - + + L L - - + + A A - - + + B B - - + + X X - - + + Y Y - - + + Start Start - - + + L1 L1 - - + + L2 L2 - - + + L3 L3 - - + + R1 R1 - - + + R2 R2 - - + + R3 R3 - - + + Circle Kör - - + + Cross Kereszt - - + + Square Négyzet - - + + Triangle Háromszög - - + + Share Megosztás - - + + Options Opciók - - + + [undefined] [nem definiált] - + %1%2 %1%2 - - + + [invalid] [érvénytelen] - - + + %1%2Hat %3 - - - + + + %1%2Axis %3 %1%2Tengely %3 - - + + %1%2Axis %3,%4,%5 %1%2Tengely %3,%4,%5 - - + + %1%2Motion %3 - - + + %1%2Button %3 %1%2Gomb %3 - - + + [unused] [nem használt] - + ZR ZR - + ZL ZL - + SR SR - + SL SL - + Stick L Kar L - + Stick R Kar R - + Plus Plusz - + Minus Mínusz - - + + Home Home - + Capture Rögzítés - + Touch Érintés - + Wheel Indicates the mouse wheel - + Backward Hátra - + Forward Előre - + Task Feladat - + Extra Extra - + %1%2%3%4 %1%2%3%4 - - + + %1%2%3Hat %4 - - + + %1%2%3Axis %4 %1%2%3Tengely %4 - - + + %1%2%3Button %4 %1%2%3Gomb %4 - - + + Migration - + - - + + No - + You can manually re-trigger this prompt by deleting the new config directory: %1 - + Migrating - + Migrating, this may take a while... @@ -8870,6 +9133,300 @@ p, li { white-space: pre-wrap; } Szeretnéd visszaállítani ezt az amiibót? + + QtCommon::Content + + + Installing Firmware... + Firmware telepítése... + + + + + + Cancel + Mégse + + + + Firmware integrity verification failed! + Firmware integritás ellenőrzése sikertelen! + + + + + Verification failed for the following files: + +%1 + Az alábbi fájlok ellenőrzése sikertelen volt: + +%1 + + + + + Verifying integrity... + Integritás ellenőrzése... + + + + + Integrity verification succeeded! + Integritás ellenőrzése sikeres! + + + + + The operation completed successfully. + A művelet sikeresen végrehajtva. + + + + + Integrity verification failed! + Az integritás ellenőrzése sikertelen! + + + + File contents may be corrupt or missing. + + + + + Integrity verification couldn't be performed + + + + + Firmware installation cancelled, firmware may be in a bad state or corrupted. File contents could not be checked for validity. + + + + + Select Dumped Keys Location + Kimentett kulcsok helyének kiválasztása + + + + Decryption Keys install succeeded + A visszafejtési kulcsok telepítése sikeres volt. + + + + Decryption Keys were successfully installed + A visszafejtési kulcsok sikeresen telepítve lettek + + + + Decryption Keys install failed + A visszafejtési kulcsok telepítése sikertelen volt + + + + QtCommon::Game + + + Error Removing Contents + Hiba történt a játéktartalom eltávolítása során + + + + Error Removing Update + Hiba történt a frissítés eltávolítása során + + + + Error Removing DLC + Hiba történt a DLC eltávolítása során + + + + The base game is not installed in the NAND and cannot be removed. + Az alapjáték nincs telepítve a NAND-ra, ezért nem törölhető. + + + + There is no update installed for this title. + Nincs telepítve frissítés ehhez a játékhoz. + + + + There are no DLCs installed for this title. + + + + + + + + Successfully Removed + Sikeresen eltávolítva + + + + Successfully removed %1 installed DLC. + %1 telepített DLC sikeresen eltávolítva. + + + + + Error Removing Transferable Shader Cache + Hiba az áthelyezhető árnyékoló gyorsítótár eltávolításakor + + + + + A shader cache for this title does not exist. + Ehhez a játékhoz nem létezik árnyékoló gyorsítótár. + + + + Successfully removed the transferable shader cache. + Az áthelyezhető árnyékoló gyorsítótár sikeresen eltávolítva. + + + + Failed to remove the transferable shader cache. + Nem sikerült eltávolítani az áthelyezhető árnyékoló gyorsítótárat. + + + + Error Removing Vulkan Driver Pipeline Cache + Hiba a Vulkan driver pipeline gyorsítótár eltávolításakor + + + + Failed to remove the driver pipeline cache. + + + + + + Error Removing Transferable Shader Caches + Hiba az áthelyezhető árnyékoló gyorsítótár eltávolításakor + + + + Successfully removed the transferable shader caches. + Az áthelyezhető shader gyorsítótár sikeresen eltávolítva. + + + + Failed to remove the transferable shader cache directory. + Nem sikerült eltávolítani az áthelyezhető árnyékoló gyorsítótár könyvtárat. + + + + + Error Removing Custom Configuration + Hiba történt az egyéni konfiguráció törlése során + + + + A custom configuration for this title does not exist. + Nem létezik egyéni konfiguráció ehhez a játékhoz. + + + + Successfully removed the custom game configuration. + Egyéni játék konfiguráció sikeresen eltávolítva. + + + + Failed to remove the custom game configuration. + Nem sikerült eltávolítani az egyéni játék konfigurációt. + + + + Reset Metadata Cache + Metaadat gyorsítótár visszaállítása + + + + The metadata cache is already empty. + A metaadat gyórsítótár már üres. + + + + The operation completed successfully. + A művelet sikeresen végrehajtva. + + + + The metadata cache couldn't be deleted. It might be in use or non-existent. + A metaadat gyórsítótárat nem lehetett törölni. Lehetséges, hogy használatban van, vagy nem létezik. + + + + Create Shortcut + Parancsikon létrehozása + + + + Do you want to launch the game in fullscreen? + Szeretnéd teljes képernyőn elindítani a játékot? + + + + Shortcut Created + + + + + Successfully created a shortcut to %1 + Parancsikon sikeresen létrehozva ide %1 + + + + Shortcut may be Volatile! + + + + + This will create a shortcut to the current AppImage. This may not work well if you update. Continue? + Ez létrehoz egy parancsikont az aktuális AppImage-hez. Frissítés után nem garantált a helyes működése. Folytatod? + + + + Failed to Create Shortcut + + + + + Failed to create a shortcut to %1 + Nem sikerült létrehozni a parancsikont: %1 + + + + Create Icon + Ikon létrehozása + + + + Cannot create icon file. Path "%1" does not exist and cannot be created. + Nem hozható létre az ikonfájl. Az útvonal "%1" nem létezik és nem is hozható létre. + + + + No firmware available + Nincs elérhető firmware + + + + Please install firmware to use the home menu. + + + + + Home Menu Applet + + + + + Home Menu is not available. Please reinstall firmware. + + + QtControllerSelectorDialog @@ -9165,7 +9722,7 @@ Kérjük, próbáld újra, vagy lépj kapcsolatba a szoftver fejlesztőjével. QtProfileSelectionDialog - + %1 %2 %1 is the profile username, %2 is the formatted UUID (e.g. 00112233-4455-6677-8899-AABBCCDDEEFF)) @@ -9173,7 +9730,7 @@ Kérjük, próbáld újra, vagy lépj kapcsolatba a szoftver fejlesztőjével. - + Users Felhasználók @@ -9297,7 +9854,7 @@ p, li { white-space: pre-wrap; } WaitTreeCallstack - + Call stack @@ -9305,12 +9862,12 @@ p, li { white-space: pre-wrap; } WaitTreeSynchronizationObject - + [%1] %2 [%1] %2 - + waited by no thread nem vár egy szálra sem @@ -9318,102 +9875,102 @@ p, li { white-space: pre-wrap; } WaitTreeThread - + runnable futtatható - + paused szünetel - + sleeping alszik - + waiting for IPC reply IPC válaszra várakozás - + waiting for objects várakozás objektumokra - + waiting for condition variable várakozás állapotváltozóra - + waiting for address arbiter várakozás címkiosztásra - + waiting for suspend resume várakozás felfüggesztés folytatására - + waiting várakozás - + initialized inicializált - + terminated megszakítva - + unknown ismeretlen - + PC = 0x%1 LR = 0x%2 PC = 0x%1 LR = 0x%2 - + ideal ideális - + core %1 mag %1 - + processor = %1 processzor = %1 - + affinity mask = %1 affinitás maszk = %1 - + thread id = %1 szál azonosító = %1 - + priority = %1(current) / %2(normal) prioritás = %1(jelenleg) / %2(normál) - + last running ticks = %1 utolsó futó tickek = %1 @@ -9421,7 +9978,7 @@ p, li { white-space: pre-wrap; } WaitTreeThreadList - + waited by thread szálra várakozás @@ -9429,7 +9986,7 @@ p, li { white-space: pre-wrap; } WaitTreeWidget - + &Wait Tree &Várófa diff --git a/dist/languages/id.ts b/dist/languages/id.ts index 18bfadbf91..e70c012897 100644 --- a/dist/languages/id.ts +++ b/dist/languages/id.ts @@ -13,12 +13,12 @@ - About eden + About Eden - <html><head/><body><p><span style=" font-size:28pt;">eden</span></p></body></html> + <html><head/><body><p><span style=" font-size:28pt;">Eden</span></p></body></html> @@ -34,8 +34,8 @@ p, li { white-space: pre-wrap; } hr { height: 1px; border-width: 0; } li.unchecked::marker { content: "\2610"; } li.checked::marker { content: "\2612"; } -</style></head><body style=" font-family:'Adwaita Sans'; font-size:11pt; font-weight:400; font-style:normal;"> -<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;">eden is an experimental open-source emulator for the Nintendo Switch licensed under GPLv3.0+ which is based on the yuzu emulator which ended development back in March 2024. <br /><br />This software should not be used to play games you have not legally obtained.</span></p></body></html> +</style></head><body style=" font-family:'Noto Sans'; font-size:9pt; font-weight:400; font-style:normal;"> +<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;">Eden is an experimental open-source emulator for the Nintendo Switch licensed under GPLv3.0+ which is based on the yuzu emulator which ended development back in March 2024. <br /><br />This software should not be used to play games you have not legally obtained.</span></p></body></html> @@ -72,32 +72,32 @@ p, li { white-space: pre-wrap; } CalibrationConfigurationDialog - + Communicating with the server... Menghubungkan ke server... - + Cancel Batalkan - + Touch the top left corner <br>of your touchpad. Sentuh pojok kiri atas <br>dari touchpad kamu. - + Now touch the bottom right corner <br>of your touchpad. Sekarang sentuh pojok kanan bawah <br>dari touchpad kamu. - + Configuration completed! Konfigurasi selesai! - + OK OK @@ -397,134 +397,134 @@ Ini akan melarang nama pengguna forum mereka dan alamat IP mereka. ConfigurationShared - + % % - + Amiibo editor Pengubah Amiibo - + Controller configuration Konfigurasi pengontrol - + Data erase Hapus data - + Error Kesalahan - + Net connect Koneksi Terhubung - + Player select Pemain pilih - + Software keyboard Papan Ketik Perangkat Lunak - + Mii Edit Ubah Mii - + Online web Online web - + Shop Belanja - + Photo viewer Pemutar foto - + Offline web Offline web - + Login share Login berbagi - + Wifi web auth Otentikasi web Wifi - + My page Halaman saya - + Output Engine: Mesin Keluaran: - + Output Device: Perangkat Output: - + Input Device: Perangkat Masukan. - + Mute audio Matikan audio - + Volume: Volume: - + Mute audio when in background Bisukan audio saat berada di background - + Multicore CPU Emulation Emulasi CPU Multicore - + This option increases CPU emulation thread use from 1 to the Switch’s maximum of 4. This is mainly a debug option and shouldn’t be disabled. Opsi ini meningkatkan penggunaan utas emulasi CPU dari 1 menjadi maksimum Switch yaitu 4. Ini terutama merupakan opsi debug dan sebaiknya tidak dinonaktifkan. - + Memory Layout Tata Letak Memori - + Increases the amount of emulated RAM from the stock 4GB of the retail Switch to the developer kit's 8/6GB. It’s doesn’t improve stability or performance and is intended to let big texture mods fit in emulated RAM. Enabling it will increase memory use. It is not recommended to enable unless a specific game with a texture mod needs it. @@ -533,12 +533,12 @@ Ini tidak meningkatkan stabilitas atau performa dan dimaksudkan untuk memungkink Mengaktifkannya akan meningkatkan penggunaan memori. Tidak disarankan untuk mengaktifkannya kecuali ada game tertentu dengan mod tekstur yang membutuhkannya. - + Limit Speed Percent Persen Batas Kecepatan - + Controls the game's maximum rendering speed, but it’s up to each game if it runs faster or not. 200% for a 30 FPS game is 60 FPS, and for a 60 FPS game it will be 120 FPS. Disabling it means unlocking the framerate to the maximum your PC can reach. @@ -547,141 +547,118 @@ Disabling it means unlocking the framerate to the maximum your PC can reach. - - Synchronize Core Speed - - - - - Synchronizes CPU core speed with the game's maximum rendering speed to boost FPS without affecting game speed (animations, physics, etc.). -Compatibility varies by game; many (especially older ones) may not respond well. -Can help reduce stuttering at lower framerates. - - - - + Accuracy: Akurasi: - + This setting controls the accuracy of the emulated CPU. Don't change this unless you know what you are doing. Pengaturan ini mengontrol akurasi CPU yang diemulasikan. Jangan mengubah ini kecuali Anda tahu apa yang Anda lakukan. - - + + Backend: Backend: - - Fast CPU Time - - - - - Overclocks the emulated CPU to remove some FPS limiters. Weaker CPUs may see reduced performance, and certain games may behave improperly. -Use Boost (1700MHz) to run at the Switch's highest native clock, or Fast (2000MHz) to run at 2x clock. - - - - + Unfuse FMA (improve performance on CPUs without FMA) Pisahkan FMA (meningkatkan performa pada CPU tanpa FMA) - + This option improves speed by reducing accuracy of fused-multiply-add instructions on CPUs without native FMA support. Opsi ini meningkatkan kecepatan dengan mengurangi akurasi instruksi fused-multiply-add pada CPU tanpa dukungan FMA asli. - + Faster FRSQRTE and FRECPE FRSQRTE dan FRECPE lebih cepat - + This option improves the speed of some approximate floating-point functions by using less accurate native approximations. Opsi ini meningkatkan kecepatan beberapa fungsi titik mengambang perkiraan dengan menggunakan perkiraan asli yang kurang akurat. - + Faster ASIMD instructions (32 bits only) Instruksi ASIMD lebih cepat (hanya untuk 32 bits) - + This option improves the speed of 32 bits ASIMD floating-point functions by running with incorrect rounding modes. Opsi ini meningkatkan kecepatan fungsi floating-point ASIMD 32 bit dengan menjalankannya dengan mode pembulatan yang salah. - + Inaccurate NaN handling Penanganan NaN tidak akurat - + This option improves speed by removing NaN checking. Please note this also reduces accuracy of certain floating-point instructions. Opsi ini meningkatkan kecepatan dengan menghilangkan pemeriksaan NaN. Harap dicatat ini juga mengurangi akurasi instruksi titik mengambang tertentu. - + Disable address space checks Matikan pengecekan adress space - + This option improves speed by eliminating a safety check before every memory read/write in guest. Disabling it may allow a game to read/write the emulator's memory. Opsi ini meningkatkan kecepatan dengan menghilangkan pemeriksaan keamanan sebelum setiap pembacaan/tulisan memori di dalam tamu. Menonaktifkannya dapat memungkinkan sebuah permainan untuk membaca/menulis memori emulator. - + Ignore global monitor Abaikan monitor global - + This option improves speed by relying only on the semantics of cmpxchg to ensure safety of exclusive access instructions. Please note this may result in deadlocks and other race conditions. Opsi ini meningkatkan kecepatan dengan hanya mengandalkan semantik cmpxchg untuk memastikan keamanan instruksi akses eksklusif. Harap dicatat ini dapat menyebabkan deadlock dan kondisi perlombaan lainnya. - + API: API: - + Switches between the available graphics APIs. Vulkan is recommended in most cases. Beralih antara API grafis yang tersedia. Vulkan direkomendasikan dalam kebanyakan kasus. - + Device: Perangkat: - + This setting selects the GPU to use with the Vulkan backend. Pengaturan ini memilih GPU yang akan digunakan dengan backend Vulkan. - + Shader Backend: Backend Shader: - + The shader backend to use for the OpenGL renderer. GLSL is the fastest in performance and the best in rendering accuracy. GLASM is a deprecated NVIDIA-only backend that offers much better shader building performance at the cost of FPS and rendering accuracy. @@ -692,12 +669,12 @@ GLASM adalah backend NVIDIA yang sudah tidak digunakan lagi yang menawarkan kine SPIR-V mengompilasi yang tercepat, tetapi menghasilkan hasil yang buruk pada sebagian besar driver GPU. - + Resolution: Resolusi: - + Forces the game to render at a different resolution. Higher resolutions require much more VRAM and bandwidth. Options lower than 1X can cause rendering issues. @@ -706,27 +683,27 @@ Resolusi yang lebih tinggi membutuhkan VRAM dan bandwidth yang lebih banyak. Opsi yang lebih rendah dari 1X dapat menyebabkan masalah rendering. - + Window Adapting Filter: Filter Menyelaraskan dengan Layar: - + FSR Sharpness: Ketajaman FSR - + Determines how sharpened the image will look while using FSR’s dynamic contrast. Menentukan seberapa tajam gambar akan terlihat saat menggunakan kontras dinamis FSR. - + Anti-Aliasing Method: Metode Anti-Aliasing: - + The anti-aliasing method to use. SMAA offers the best quality. FXAA has a lower performance impact and can produce a better and more stable picture under very low resolutions. @@ -735,12 +712,12 @@ SMAA menawarkan kualitas terbaik. FXAA memiliki dampak kinerja yang lebih rendah dan dapat menghasilkan gambar yang lebih baik dan lebih stabil pada resolusi yang sangat rendah. - + Fullscreen Mode: Mode Layar Penuh: - + The method used to render the window in fullscreen. Borderless offers the best compatibility with the on-screen keyboard that some games request for input. Exclusive fullscreen may offer better performance and better Freesync/Gsync support. @@ -749,12 +726,12 @@ Borderless menawarkan kompatibilitas terbaik dengan keyboard di layar yang dimin Layar penuh eksklusif mungkin menawarkan performa yang lebih baik dan dukungan Freesync/Gsync yang lebih baik. - + Aspect Ratio: Rasio Aspek: - + Stretches the game to fit the specified aspect ratio. Switch games only support 16:9, so custom game mods are required to get other ratios. Also controls the aspect ratio of captured screenshots. @@ -763,49 +740,36 @@ Permainan Switch hanya mendukung 16:9, jadi mod permainan kustom diperlukan untu Juga mengontrol rasio aspek tangkapan layar yang diambil. - + Use disk pipeline cache Gunakan pipeline cache diska - + Allows saving shaders to storage for faster loading on following game boots. Disabling it is only intended for debugging. Memungkinkan penyimpanan shader untuk mempercepat pengambilan pada saat game berikutnya dimulai. Menonaktifkannya hanya dimaksudkan untuk debugging. - - Optimize SPIRV output shader - - - - - Runs an additional optimization pass over generated SPIRV shaders. -Will increase time required for shader compilation. -May slightly improve performance. -This feature is experimental. - - - - + Use asynchronous GPU emulation Gunakan pengemulasian GPU yang asinkron - + Uses an extra CPU thread for rendering. This option should always remain enabled. Menggunakan satu benang CPU tambahan untuk merender. Opsi ini harus tetap diaktifkan. - + NVDEC emulation: Emulasi NVDEC: - + Specifies how videos should be decoded. It can either use the CPU or the GPU for decoding, or perform no decoding at all (black screen on videos). In most cases, GPU decoding provides the best performance. @@ -814,12 +778,12 @@ Ini dapat menggunakan CPU atau GPU untuk dekode, atau tidak melakukan dekode sam Dalam kebanyakan kasus, dekode GPU memberikan kinerja terbaik. - + ASTC Decoding Method: ASTC Metode Dekoding: - + This option controls how ASTC textures should be decoded. CPU: Use the CPU for decoding, slowest but safest method. GPU: Use the GPU's compute shaders to decode ASTC textures, recommended for most games and users. @@ -831,34 +795,24 @@ GPU: Gunakan compute shaders GPU untuk dekode tekstur ASTC, direkomendasikan unt CPU Asynchronous: Gunakan CPU untuk dekode tekstur ASTC saat tiba. Sepenuhnya menghilangkan stuttering dekode ASTC dengan biaya masalah rendering saat tekstur sedang didekode. - + ASTC Recompression Method: ASTC Metode Pemampatan Ulang: - + Almost all desktop and laptop dedicated GPUs lack support for ASTC textures, forcing the emulator to decompress to an intermediate format any card supports, RGBA8. This option recompresses RGBA8 to either the BC1 or BC3 format, saving VRAM but negatively affecting image quality. Hampir semua GPU desktop dan laptop tidak mendukung tekstur ASTC, memaksa emulator untuk mendekompres ke format intermediate yang didukung oleh kartu apa pun, RGBA8. Opsi ini merekompres RGBA8 ke format BC1 atau BC3, menghemat VRAM tetapi mempengaruhi kualitas gambar secara negatif. - - VRAM Usage Mode: - - - - - Selects whether the emulator should prefer to conserve memory or make maximum usage of available video memory for performance. Has no effect on integrated graphics. Aggressive mode may severely impact the performance of other applications such as recording software. - - - - + VSync Mode: Mode Sinkronisasi Vertikal - + FIFO (VSync) does not drop frames or exhibit tearing but is limited by the screen refresh rate. FIFO Relaxed is similar to FIFO but allows tearing as it recovers from a slow down. Mailbox can have lower latency than FIFO and does not tear but may drop frames. @@ -869,51 +823,49 @@ Mailbox dapat memiliki laten yang lebih rendah daripada FIFO dan tidak merobek t Immediate (tanpa sinkronisasi) hanya menampilkan apa pun yang tersedia dan dapat menunjukkan tearing. - + Enable asynchronous presentation (Vulkan only) Aktifkan presentasi asinkron (hanya Vulkan) - + Slightly improves performance by moving presentation to a separate CPU thread. Meningkatkan kinerja sedikit dengan memindahkan presentasi ke thread CPU terpisah. - + Force maximum clocks (Vulkan only) Paksa jam maximum (Vulkan only) - + Runs work in the background while waiting for graphics commands to keep the GPU from lowering its clock speed. Berjalan bekerja di latar belakang sambil menunggu perintah grafis untuk mencegah GPU agar tidak menurunkan kecepatan jamnya. - + Anisotropic Filtering: Anisotropic Filtering: - + Controls the quality of texture rendering at oblique angles. It’s a light setting and safe to set at 16x on most GPUs. Mengontrol kualitas rendering tekstur pada sudut miring. Ini adalah pengaturan yang ringan dan aman untuk diatur pada 16x pada sebagian besar GPU. - Accuracy Level: - Tingkat Akurasi: + Tingkat Akurasi: - GPU emulation accuracy. Most games render fine with Normal, but High is still required for some. Particles tend to only render correctly with High accuracy. Extreme should only be used for debugging. This option can be changed while playing. Some games may require booting on high to render properly. - Emulasi GPU yang akurat. + Emulasi GPU yang akurat. Sebagian besar game dirender dengan baik dengan pengaturan Normal, namun pengaturan High masih diperlukan untuk beberapa game. Partikel cenderung hanya dirender dengan benar dengan akurasi High. Pengaturan Extreme hanya digunakan untuk debugging. @@ -921,12 +873,12 @@ Opsi ini dapat diubah saat bermain. Beberapa game mungkin memerlukan pengaturan High untuk dirender dengan baik. - + Use asynchronous shader building (Hack) Gunakan pembangunan shader asinkron (Hack) - + Enables asynchronous shader compilation, which may reduce shader stutter. This feature is experimental. Memungkinkan kompilasi shader asinkron, yang dapat mengurangi stutter shader. @@ -941,24 +893,24 @@ Fitur ini bersifat eksperimental. Memungkinkan Waktu GPU Cepat. Opsi ini akan memaksa sebagian besar game berjalan pada resolusi asli tertinggi mereka. - + Use Vulkan pipeline cache Gunakan pipeline cache Vulkan - + Enables GPU vendor-specific pipeline cache. This option can improve shader loading time significantly in cases where the Vulkan driver does not store pipeline cache files internally. Memungkinkan cache pipeline spesifik vendor GPU. Opsi ini dapat meningkatkan waktu pemuatan shader secara signifikan dalam kasus di mana driver Vulkan tidak menyimpan file cache pipeline secara internal. - + Enable Compute Pipelines (Intel Vulkan Only) Aktifkan Pipa Komputasi (Hanya Intel Vulkan) - + Enable compute pipelines, required by some games. This setting only exists for Intel proprietary drivers, and may crash if enabled. Compute pipelines are always enabled on all other drivers. @@ -967,111 +919,111 @@ Pengaturan ini hanya ada untuk driver milik Intel, dan mungkin menyebabkan crash Pipeline komputasi selalu aktif pada semua driver lainnya. - + Enable Reactive Flushing Aktifkan Reactive Flushing - + Uses reactive flushing instead of predictive flushing, allowing more accurate memory syncing. Menggunakan pemadatan reaktif alih-alih pemadatan prediktif, memungkinkan sinkronisasi memori yang lebih akurat. - + Sync to framerate of video playback Sinkronkan dengan kecepatan pemutaran video - + Run the game at normal speed during video playback, even when the framerate is unlocked. Jalankan permainan dengan kecepatan normal selama pemutaran video, bahkan ketika framerate tidak terkunci. - + Barrier feedback loops Loop umpan balik penghalang - + Improves rendering of transparency effects in specific games. Meningkatkan rendering efek transparansi dalam game tertentu. - + RNG Seed Benih RNG - + Controls the seed of the random number generator. Mainly used for speedrunning purposes. Mengontrol benih dari generator angka acak. Biasanya digunakan untuk tujuan speedrunning. - + Device Name Nama Perangkat - + The name of the emulated Switch. Nama dari Switch yang diemulasikan. - + Custom RTC Date: Tanggal RTC Kustom: - + This option allows to change the emulated clock of the Switch. Can be used to manipulate time in games. Opsi ini memungkinkan untuk mengubah jam yang ditiru pada Switch. Dapat digunakan untuk memanipulasi waktu dalam permainan. - + Language: Bahasa - + Note: this can be overridden when region setting is auto-select Catatan: ini dapat diubah ketika pengaturan wilayah diotomatiskan - + Region: Wilayah: - + The region of the emulated Switch. Wilayah dari Switch yang diemulasikan. - + Time Zone: Zona Waktu: - + The time zone of the emulated Switch. Zona waktu dari Switch yang diemulasikan. - + Sound Output Mode: Mode keluaran suara. - + Console Mode: Mode Konsol - + Selects if the console is emulated in Docked or Handheld mode. Games will change their resolution, details and supported controllers and depending on this setting. Setting to Handheld can help improve performance for low end systems. @@ -1080,7 +1032,7 @@ Permainan akan mengubah resolusi, detail, dan pengontrol yang didukung tergantun Mengatur ke Handheld dapat membantu meningkatkan performa untuk sistem dengan spesifikasi rendah. - + Prompt for user on game boot Tanyakan pengguna ketika memulai permainan @@ -1089,7 +1041,7 @@ Mengatur ke Handheld dapat membantu meningkatkan performa untuk sistem dengan sp Meminta untuk memilih profil pengguna setiap kali boot, berguna jika beberapa orang menggunakan yuzu pada PC yang sama. - + Pause emulation when in background Jeda pengemulasian ketika berada di latar @@ -1098,843 +1050,997 @@ Mengatur ke Handheld dapat membantu meningkatkan performa untuk sistem dengan sp Pengaturan ini menjeda yuzu saat fokus ke jendela lain. - - Fast GPU Time (Hack) - - - - - Overclocks the emulated GPU to increase dynamic resolution and render distance. -Use 128 for maximal performance and 512 for maximal graphics fidelity. - - - - - Extended Dynamic State - - - - - Enables the VkExtendedDynamicState* extensions. -Higher dynamic states will generally improve performance, but may cause issues on certain games or devices. - - - - - Provoking Vertex - - - - - Improves lighting and vertex handling in certain games. -Only Vulkan 1.0+ devices support this extension. - - - - - Descriptor Indexing - - - - - Improves texture & buffer handling and the Maxwell translation layer. -Some Vulkan 1.1+ and all 1.2+ devices support this extension. - - - - - Ask to select a user profile on each boot, useful if multiple people use eden on the same PC. - - - - - This setting pauses eden when focusing other windows. - - - - + Confirm before stopping emulation Konfirmasi sebelum menghentikan emulasi - + This setting overrides game prompts asking to confirm stopping the game. Enabling it bypasses such prompts and directly exits the emulation. Pengaturan ini mengesampingkan perintah permainan yang meminta konfirmasi untuk menghentikan permainan. Mengaktifkannya akan melewati peringatan tersebut dan langsung keluar dari emulasi. - + Hide mouse on inactivity Sembunyikan mouse saat tidak aktif - + This setting hides the mouse after 2.5s of inactivity. Pengaturan ini menyembunyikan kursor setelah 2.5 detik tidak aktif. - + Disable controller applet Nonaktifkan aplikasi pengontrol - + Forcibly disables the use of the controller applet by guests. When a guest attempts to open the controller applet, it is immediately closed. Mematikan paksa penggunaan aplikasi pengendali oleh tamu. Ketika seorang tamu mencoba membuka aplikasi pengendali, aplikasi tersebut langsung ditutup. - - Check for updates - - - - - Whether or not to check for updates upon startup. - - - - + Enable Gamemode Aktifkan Mode Permainan - + Custom frontend Tampilan depan kustom - + Real applet Aplikasi nyata - - Never - - - - - On Load - - - - - Always - - - - + CPU CPU - + GPU GPU - + CPU Asynchronous CPU sinkron - + Uncompressed (Best quality) Tidak terkompresi (Kualitas Terbaik) - + BC1 (Low quality) BC1 (Kualitas rendah) - + BC3 (Medium quality) BC3 (Kualitas sedang) - - Conservative - - - - - Aggressive - - - - + OpenGL OpenGL - + Vulkan Vulkan - + Null Null - + GLSL GLSL - + GLASM (Assembly Shaders, NVIDIA Only) GLASM (Shader perakit, hanya NVIDIA) - + SPIR-V (Experimental, AMD/Mesa Only) SPIR-V (Eksperimental, Hanya AMD/Mesa) - + Normal Normal - + High Tinggi - + Extreme Ekstrim - + Auto Otomatis - + Accurate Akurat - + Unsafe Berbahaya - + Paranoid (disables most optimizations) Paranoid (menonaktifkan sebagian besar optimasi) - + Dynarmic Dynarmic - + NCE NCE - + Borderless Windowed Layar Tanpa Batas - + Exclusive Fullscreen Layar Penuh Eksklusif - + No Video Output Tidak ada Keluaran Suara - + CPU Video Decoding Penguraian Video menggunakan CPU - + GPU Video Decoding (Default) Penguraian Video menggunakan GPU (Bawaan) - - 0.25X (180p/270p) [EXPERIMENTAL] - - - - + 0.5X (360p/540p) [EXPERIMENTAL] 0.5X (360p/540p) [EKSPERIMENTAL] - + 0.75X (540p/810p) [EXPERIMENTAL] 0.75X (540p/810p) [EKSPERIMENTAL] - + 1X (720p/1080p) 1X (720p/1080p) - + 1.5X (1080p/1620p) [EXPERIMENTAL] 1.5X (1080p/1620p) [EKSPERIMENTAL] - + 2X (1440p/2160p) 2X (1440p/2160p) - + 3X (2160p/3240p) 3X (2160p/3240p) - + 4X (2880p/4320p) 4X (2880p/4320p) - + 5X (3600p/5400p) 5X (3600p/5400p) - + 6X (4320p/6480p) 6X (4320p/6480p) - + 7X (5040p/7560p) 7X (5040p/7560p) - + 8X (5760p/8640p) 8X (5760p/8640p) - + Nearest Neighbor Nearest Neighbor - + Bilinear Biliner - + Bicubic Bikubik - + Gaussian Gaussian - + ScaleForce ScaleForce - + AMD FidelityFX™️ Super Resolution AMD FidelityFX™️ Super Resolusi - - Area - - - - + None Tak ada - + FXAA FXAA - + SMAA SMAA - + Default (16:9) Bawaan (16:9) - + Force 4:3 Paksa 4:3 - + Force 21:9 Paksa 21:9 - + Force 16:10 Paksa 16:10 - + Stretch to Window Regangkan ke Layar - + Automatic Otomatis - + + Default Bawaan - + + Synchronize Core Speed + + + + + Synchronizes CPU core speed with the game's maximum rendering speed to boost FPS without affecting game speed (animations, physics, etc.). +Compatibility varies by game; many (especially older ones) may not respond well. +Can help reduce stuttering at lower framerates. + + + + + Fast CPU Time + + + + + Overclocks the emulated CPU to remove some FPS limiters. Weaker CPUs may see reduced performance, and certain games may behave improperly. +Use Boost (1700MHz) to run at the Switch's highest native clock, or Fast (2000MHz) to run at 2x clock. + + + + + Custom CPU Ticks + + + + + Set a custom value of CPU ticks. Higher values can increase performance, but may also cause the game to freeze. A range of 77–21000 is recommended. + + + + + Enable Host MMU Emulation (fastmem) + + + + + This optimization speeds up memory accesses by the guest program. +Enabling it causes guest memory reads/writes to be done directly into memory and make use of Host's MMU. +Disabling this forces all memory accesses to use Software MMU Emulation. + + + + + Optimize SPIRV output shader + + + + + Runs an additional optimization pass over generated SPIRV shaders. +Will increase time required for shader compilation. +May slightly improve performance. +This feature is experimental. + + + + + VRAM Usage Mode: + + + + + Selects whether the emulator should prefer to conserve memory or make maximum usage of available video memory for performance. +Aggressive mode may severely impact the performance of other applications such as recording software. + + + + + Skip CPU Inner Invalidation + + + + + Skips certain CPU-side cache invalidations during memory updates, reducing CPU usage and improving it's performance. This may cause glitches or crashes on some games. + + + + + Sync Memory Operations + + + + + Ensures data consistency between compute and memory operations. +This option should fix issues in some games, but may also reduce performance in some cases. +Unreal Engine 4 games often see the most significant changes thereof. + + + + + GPU Accuracy: + + + + + Controls the GPU emulation accuracy. +Most games render fine with Normal, but High is still required for some. +Particles tend to only render correctly with High accuracy. +Extreme should only be used as a last resort. + + + + + DMA Accuracy: + + + + + Controls the DMA precision accuracy. Safe precision can fix issues in some games, but it can also impact performance in some cases. +If unsure, leave this on Default. + + + + + Fast GPU Time (Hack) + + + + + Overclocks the emulated GPU to increase dynamic resolution and render distance. +Use 128 for maximal performance and 512 for maximal graphics fidelity. + + + + + RAII + + + + + A method of automatic resource management in Vulkan that ensures proper release of resources when they are no longer needed, but may cause crashes in bundled games. + + + + + Extended Dynamic State + + + + + Controls the number of features that can be used in Extended Dynamic State. +Higher numbers allow for more features and can increase performance, but may cause issues with some drivers and vendors. +The default value may vary depending on your system and hardware capabilities. +This value can be changed until stability and a better visual quality are achieved. + + + + + Provoking Vertex + + + + + Improves lighting and vertex handling in certain games. +Only Vulkan 1.0+ devices support this extension. + + + + + Descriptor Indexing + + + + + Improves texture & buffer handling and the Maxwell translation layer. +Some Vulkan 1.1+ and all 1.2+ devices support this extension. + + + + + Sample Shading + + + + + Allows the fragment shader to execute per sample in a multi-sampled fragment instead once per fragment. Improves graphics quality at the cost of some performance. +Higher values improve quality more but also reduce performance to a greater extent. + + + + + Ask to select a user profile on each boot, useful if multiple people use Eden on the same PC. + + + + + This setting pauses Eden when focusing other windows. + + + + + Check for updates + + + + + Whether or not to check for updates upon startup. + + + + + Never + + + + + On Load + + + + + Always + + + + + Conservative + + + + + Aggressive + + + + + Unsafe (fast) + + + + + Safe (stable) + + + + + 0.25X (180p/270p) [EXPERIMENTAL] + + + + + Area + + + + 2x 2x - + 4x 4x - + 8x 8x - + 16x 16x - + Japanese (日本語) Jepang (日本語) - + American English Bahasa Inggris Amerika - + French (français) Prancis (français) - + German (Deutsch) Jerman (Deutsch) - + Italian (italiano) Italia (italiano) - + Spanish (español) Spanyol (español) - + Chinese Cina - + Korean (한국어) Korea (한국어) - + Dutch (Nederlands) Belanda (Nederlands) - + Portuguese (português) Portugis (português) - + Russian (Русский) Rusia (Русский) - + Taiwanese Taiwan - + British English Inggris Britania - + Canadian French Prancis Kanada - + Latin American Spanish Spanyol Amerika Latin - + Simplified Chinese Cina Sederhana - + Traditional Chinese (正體中文) Cina Tradisional (正體中文) - + Brazilian Portuguese (português do Brasil) Portugis Brazil (português do Brasil) - - + + Serbian (српски) + + + + + Japan Jepang - + USA USA - + Europe Eropa - + Australia Australia - + China Tiongkok - + Korea Korea - + Taiwan Taiwan - + Auto (%1) Auto select time zone Auto (%1) - + Default (%1) Default time zone Bawaan (%1) - + CET CET - + CST6CDT CST6CDT - + Cuba Kuba - + EET EET - + Egypt Mesir - + Eire Éire - + EST EST - + EST5EDT EST5EDT - + GB GB - + GB-Eire GB-Éire - + GMT GMT - + GMT+0 GMT+0 - + GMT-0 GMT-0 - + GMT0 GMT0 - + Greenwich Greenwich - + Hongkong Hongkong - + HST HST - + Iceland Islandia - + Iran Iran - + Israel Israel - + Jamaica Jamaika - + Kwajalein Kwajalein - + Libya Libya - + MET MET - + MST MST - + MST7MDT MST7MDT - + Navajo Navajo - + NZ NZ - + NZ-CHAT NZ-CHAT - + Poland Polandia - + Portugal Portugal - + PRC PRC - + PST8PDT PST8PDT - + ROC ROC - + ROK ROK - + Singapore Singapura - + Turkey Turki - + UCT UCT - + Universal Universal - + UTC UTC - + W-SU W-SU - + WET WET - + Zulu Zulu - + Mono Mono - + Stereo Stereo - + Surround Surround - + 4GB DRAM (Default) 4GB DRAM (Bawaan) - + 6GB DRAM (Unsafe) 6GB DRAM (Tidak Aman) - + 8GB DRAM - + 10GB DRAM (Unsafe) - + 12GB DRAM (Unsafe) - + Low (128) - + Medium (256) - + High (512) @@ -1943,37 +2049,37 @@ Ketika seorang tamu mencoba membuka aplikasi pengendali, aplikasi tersebut langs 8GB DRAM (Tidak Aman) - + Docked Terpasang - + Handheld Jinjing - + Boost (1700MHz) - + Fast (2000MHz) - + Always ask (Default) Selalu tanyakan (Bawaan) - + Only if game specifies not to stop Hanya jika permainan menentukan untuk tidak berhenti - + Never ask Jangan pernah bertanya @@ -2327,27 +2433,27 @@ Memungkinkan berbagai macam optimasi IR. Pencatatan - + Open Log Location Buka Lokasi Catatan - + Global Log Filter Catatan Penyaring Global - + When checked, the max size of the log increases from 100 MB to 1 GB Saat dicentang, ukuran maksimum log meningkat dari 100 MB menjadi 1 GB - + Enable Extended Logging** Aktifkan Pencatatan Yang Diperluas** - + Show Log in Console Tampilkan Catatan Di Konsol @@ -2493,7 +2599,7 @@ Memungkinkan berbagai macam optimasi IR. - **This will be reset automatically when eden closes. + **This will be reset automatically when Eden closes. @@ -2555,7 +2661,7 @@ Memungkinkan berbagai macam optimasi IR. **Ini akan diatur ulang secara otomatis ketika yuzu ditutup. - + Web applet not compiled Web applet tidak dikompilasi @@ -2605,7 +2711,7 @@ Memungkinkan berbagai macam optimasi IR. - eden Configuration + Eden Configuration @@ -2614,88 +2720,88 @@ Memungkinkan berbagai macam optimasi IR. Beberapa pengaturan hanya tersedia ketika permainan tidak sedang berjalan. - + Applets Applet - - + + Audio Audio - - + + CPU CPU - + Debug Awakutu - + Filesystem Sistem berkas - - + + General Umum - - + + Graphics Grafis - + GraphicsAdvanced GrafisLanjutan - + GraphicsExtensions - + Hotkeys Pintasan - - + + Controls Kendali - + Profiles Profil - + Network Jaringan - - + + System Sistem - + Game List Daftar Permainan - + Web Jejaring @@ -2793,51 +2899,45 @@ Memungkinkan berbagai macam optimasi IR. - - - Reset Metadata Cache Atur Ulang Cache Metadata - + Select Emulated NAND Directory... Pilih Direktori NAND yang Diemulasikan... - + Select Emulated SD Directory... Pilih Direktori SD yang Diemulasikan... - + Select Gamecard Path... Pilih Jalur Kartu Permainan... - + Select Dump Directory... Pilih Jalur Dump... - + Select Mod Load Directory... Pilih Direktori Pemuatan Mod... - The metadata cache is already empty. - Cache metadata sudah kosong. + Cache metadata sudah kosong. - The operation completed successfully. - Operasi selesai dengan sukses. + Operasi selesai dengan sukses. - The metadata cache couldn't be deleted. It might be in use or non-existent. - Cache metadata tidak dapat dihapus. Mungkin sedang dipakai atau memang tidak ada. + Cache metadata tidak dapat dihapus. Mungkin sedang dipakai atau memang tidak ada. @@ -2868,12 +2968,12 @@ Memungkinkan berbagai macam optimasi IR. yuzu - - eden + + Eden - + This reset all settings and remove all per-game configurations. This will not delete game directories, profiles, or input profiles. Proceed? Ini mengatur ulang semua pengaturan dan menghapus semua konfigurasi permainan. Ini tidak akan menghapus direktori permainan, profil, atau profil input. Lanjutkan? @@ -2906,33 +3006,33 @@ Memungkinkan berbagai macam optimasi IR. Warna Latar: - + % FSR sharpening percentage (e.g. 50%) % - + Off Mati - + VSync Off VSync Mati - + Recommended Direkomendasikan - + On Nyala - + VSync On VSync Aktif @@ -2969,14 +3069,18 @@ Memungkinkan berbagai macam optimasi IR. - Vulkan Extension Settings + Vulkan Extensions Settings - - While it's recommended to use state 3, some games may perform better on lower states. Setting to 0 (disabled) may also break games. -If your GPU is older (i.e. RX570/580 or older), it may not support these features. If this is the case, set the slider to 0 and uncheck all boxes. -These settings are experimental, and may cause black screens. If your games fail to boot or are stuck on a black screen, change these settings around. + + % + Sample Shading percentage (e.g. 50%) + % + + + + Extended Dynamic State is disabled on macOS due to MoltenVK compatibility issues that cause black screens. @@ -3008,75 +3112,75 @@ These settings are experimental, and may cause black screens. If your games fail Kembalikan ke Semula - + Action Tindakan - + Hotkey Pintasan - + Controller Hotkey Pemetaan Tombol Pemantau - - - + + + Conflicting Key Sequence Urutan Tombol yang Konflik - - + + The entered key sequence is already assigned to: %1 Urutan tombol yang dimasukkan sudah menerap ke: %1 - + [waiting] [menunggu] - + Invalid Tidak valid - + Invalid hotkey settings Pengaturan hotkey tidak valid - + An error occurred. Please report this issue on github. Terjadi kesalahan. Harap laporkan masalah ini di github. - + Restore Default Kembalikan ke Semula - + Clear Bersihkan - + Conflicting Button Sequence Sekuensi Tombol yang Bertentangan - + The default button sequence is already assigned to: %1 Urutan tombol bawaan sudah diterapkan ke: %1 - + The default key sequence is already assigned to: %1 Urutan tombol bawaan sudah diterapkan ke: %1 @@ -3396,7 +3500,7 @@ These settings are experimental, and may cause black screens. If your games fail - Requires restarting eden + Requires restarting Eden @@ -3551,7 +3655,7 @@ These settings are experimental, and may cause black screens. If your games fail - + Left Stick Stik Kiri @@ -3661,14 +3765,14 @@ These settings are experimental, and may cause black screens. If your games fail - + L L - + ZL ZL @@ -3687,7 +3791,7 @@ These settings are experimental, and may cause black screens. If your games fail - + Plus Tambah @@ -3700,15 +3804,15 @@ These settings are experimental, and may cause black screens. If your games fail - - + + R R - + ZR ZR @@ -3753,7 +3857,7 @@ These settings are experimental, and may cause black screens. If your games fail - + Right Stick Stik Kanan @@ -3768,242 +3872,242 @@ These settings are experimental, and may cause black screens. If your games fail Konfigurasi - - - - + + + + Clear Bersihkan - - - - - + + + + + [not set] [belum diatur] - - - + + + Invert button Balikkan tombol - - + + Toggle button Atur tombol - + Turbo button Tombol turbo - - + + Invert axis Balikkan poros - - - + + + Set threshold Atur batasan - - + + Choose a value between 0% and 100% Pilih sebuah angka diantara 0% dan 100% - + Toggle axis - + Set gyro threshold - + Calibrate sensor Kalibrasi sensor - + Map Analog Stick Petakan Stik Analog - + After pressing OK, first move your joystick horizontally, and then vertically. To invert the axes, first move your joystick vertically, and then horizontally. Setelah menekan OK, pertama gerakkan joystik secara mendatar, lalu tegak lurus. Untuk membalikkan sumbu, pertama gerakkan joystik secara tegak lurus, lalu mendatar. - + Center axis - - + + Deadzone: %1% Titik Mati: %1% - - + + Modifier Range: %1% Rentang Pengubah: %1% - - + + Pro Controller Kontroler Pro - + Dual Joycons Joycon Dual - + Left Joycon Joycon Kiri - + Right Joycon Joycon Kanan - + Handheld Jinjing - + GameCube Controller Kontroler GameCube - + Poke Ball Plus Poke Ball Plus - + NES Controller Kontroler NES - + SNES Controller Kontroler SNES - + N64 Controller Kontroler N64 - + Sega Genesis Sega Genesis - + Start / Pause Mulai / Jeda - + Z Z - + Control Stick Stik Kendali - + C-Stick C-Stick - + Shake! Getarkan! - + [waiting] [menunggu] - + New Profile Profil Baru - + Enter a profile name: Masukkan nama profil: - - + + Create Input Profile Ciptakan Profil Masukan - + The given profile name is not valid! Nama profil yang diberi tidak sah! - + Failed to create the input profile "%1" Gagal membuat profil masukan "%1" - + Delete Input Profile Hapus Profil Masukan - + Failed to delete the input profile "%1" Gagal menghapus profil masukan "%1" - + Load Input Profile Muat Profil Masukan - + Failed to load the input profile "%1" Gagal memuat profil masukan "%1" - + Save Input Profile Simpat Profil Masukan - + Failed to save the input profile "%1" Gagal menyimpan profil masukan "%1" @@ -4060,7 +4164,7 @@ Untuk membalikkan sumbu, pertama gerakkan joystik secara tegak lurus, lalu menda - + Configure Konfigurasi @@ -4096,7 +4200,7 @@ Untuk membalikkan sumbu, pertama gerakkan joystik secara tegak lurus, lalu menda - + Test Uji coba @@ -4115,7 +4219,7 @@ Untuk membalikkan sumbu, pertama gerakkan joystik secara tegak lurus, lalu menda <a href='https://yuzu-emu.org/wiki/using-a-controller-or-android-phone-for-motion-or-touch-input'><span style="text-decoration: underline; color:#039be5;">Pelajari lebih lanjut</span></a> - + %1:%2 %1:%2 @@ -4124,77 +4228,77 @@ Untuk membalikkan sumbu, pertama gerakkan joystik secara tegak lurus, lalu menda yuzu - + <a href='https://eden-emulator.github.io/wiki/using-a-controller-or-android-phone-for-motion-or-touch-input'><span style="text-decoration: underline; color:#039be5;">Learn More</span></a> - + Port number has invalid characters Terdapat karakter tidak sah di angka port - - - - - - - eden + + + + + + + Eden - + Port has to be in range 0 and 65353 Port harus berada dalam jangkauan 0 dan 65353 - + IP address is not valid Alamat IP tidak sah - + This UDP server already exists Server UDP ini sudah ada - + Unable to add more than 8 servers Tidak dapat menambah lebih dari 8 server - + Testing Menguji - + Configuring Mengkonfigur - + Test Successful Tes Berhasil - + Successfully received data from the server. Berhasil menerima data dari server. - + Test Failed Uji coba 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 dapat menerima data yang sah dari server.<br>Mohon periksa bahwa server telah diatur dengan benar dan alamat dan port sudah sesuai. - + UDP Test or calibration configuration is in progress.<br>Please wait for them to finish. Uji coba UDP atau kalibrasi konfigurasi sedang berjalan.<br>Mohon tunggu hingga selesai. @@ -4320,7 +4424,12 @@ Current values are %1% and %2% respectively. Antarmuka Jaringan - + + Enable Airplane Mode + + + + None Tak ada @@ -4378,52 +4487,52 @@ Current values are %1% and %2% respectively. Beberapa pengaturan hanya tersedia ketika permainan tidak sedang berjalan. - + Add-Ons Pengaya (Add-On) - + System Sistem - + CPU CPU - + Graphics Grafis - + Adv. Graphics Ljtan. Grafik - + GPU Extensions - + Audio Audio - + Input Profiles Profil Masukan - + Linux Linux - + Properties Properti @@ -4441,12 +4550,12 @@ Current values are %1% and %2% respectively. Pengaya (Add-On) - + Patch Name Nama Tambalan - + Version Versi @@ -4484,27 +4593,32 @@ Current values are %1% and %2% respectively. Atur Gambar - + + Select Avatar + + + + Add Tambahkan - + Rename Ubah Nama - + Remove Singkirkan - + Profile management is available only when game is not running. Pengelolaan profil hanya tersedia saat permainan tidak dijalankan. - + %1 %2 %1 is the profile username, %2 is the formatted UUID (e.g. 00112233-4455-6677-8899-AABBCCDDEEFF)) @@ -4512,100 +4626,189 @@ Current values are %1% and %2% respectively. %2 - + Enter Username Masukkan Nama Pengguna - + Users Pengguna - + Enter a username for the new user: Masukkan nama pengguna untuk pengguna baru: - + Enter a new username: Masukkan nama pengguna baru: - + + Error saving user image + + + + + Unable to save image to file + + + + Select User Image Pilih Gambar Pengguna - - JPEG Images (*.jpg *.jpeg) - Gambar JPEG (*.jpg *.jpeg) + + Image Formats (*.jpg *.jpeg *.png *.bmp) + - + + No firmware available + + + + + Please install the firmware to use firmware avatars. + + + + + + Error loading archive + + + + + Archive is not available. Please install/reinstall firmware. + + + + + Archive does not contain romfs. It is probably corrupt. + + + + + Error extracting archive + + + + + Archive could not be extracted. It is probably corrupt. + + + + + Error finding image directory + + + + + Failed to find image directory in the archive. + + + + + No images found + + + + + No avatar images were found in the archive. + + + + JPEG Images (*.jpg *.jpeg) + Gambar JPEG (*.jpg *.jpeg) + + + Error deleting image Kesalahan ketika menghapus gambar - + Error occurred attempting to overwrite previous image at: %1. Kesalahan saat mencoba menimpa gambar sebelumnya di: %1. - + Error deleting file Kesalahan saat menghapus berkas - + Unable to delete existing file: %1. Tak dapat menghapus berkas yang ada: %1. - + Error creating user image directory Kesalahan saat menciptakan direktori pengguna - + Unable to create directory %1 for storing user images. Tidak bisa menciptakan direktori %1 untuk menyimpan gambar pengguna. - Error copying user image - Kesalahan ketika menyalin gambar pengguna + Kesalahan ketika menyalin gambar pengguna - Unable to copy image from %1 to %2 - Gagal menyalin berkas dari %1 ke %2 + Gagal menyalin berkas dari %1 ke %2 - Error resizing user image - Kesalahan ketika mengubah ukuran gambar pengguna + Kesalahan ketika mengubah ukuran gambar pengguna - Unable to resize image - Tidak dapat mengubah ukuran gambar + Tidak dapat mengubah ukuran gambar + + + + ConfigureProfileManagerAvatarDialog + + + Select + + + + + Cancel + + + + + Background Color + + + + + Select Firmware Avatar + ConfigureProfileManagerDeleteDialog - + Delete this user? All of the user's save data will be deleted. - + Confirm Delete Konfirmasi Penghapusan - + Name: %1 UUID: %2 @@ -4657,7 +4860,7 @@ UUID: %2 - + Enable @@ -4668,7 +4871,7 @@ UUID: %2 - + Not connected Tidak terkoneksi @@ -4678,63 +4881,63 @@ UUID: %2 Kembalikan ke Semula - + Clear Bersihkan - + [not set] [belum diatur] - + Invert axis Balikkan poros - - + + Deadzone: %1% Titik Mati: %1% - + Error enabling ring input - + Direct Joycon driver is not enabled - + Configuring Mengkonfigur - + The current mapped device doesn't support the ring controller - + The current mapped device doesn't have a ring attached - + The current mapped device is not connected - + Unexpected driver result %1 - + [waiting] [menunggu] @@ -4772,7 +4975,7 @@ UUID: %2 - <html><head/><body><p>Reads controller input from scripts in the same format as TAS-nx scripts.<br/>For a more detailed explanation, please consult the <a href="https://eden-emulator.github.io/help/feature/tas/"><span style=" text-decoration: underline; color:#039be5;">help page</span></a> on the eden website.</p></body></html> + <html><head/><body><p>Reads controller input from scripts in the same format as TAS-nx scripts.<br/>For a more detailed explanation, please consult the <a href="https://eden-emulator.github.io/help/feature/tas/"><span style=" text-decoration: underline; color:#039be5;">help page</span></a> on the Eden website.</p></body></html> @@ -4824,12 +5027,12 @@ UUID: %2 ConfigureTasDialog - + TAS Configuration - + Select TAS Load Directory... @@ -4938,7 +5141,7 @@ Drag points to change position, or double-click table cells to edit values. - Warning: The settings in this page affect the inner workings of eden's emulated touchscreen. Changing them may result in undesirable behavior, such as the touchscreen partially or not working. You should only use this page if you know what you are doing. + Warning: The settings in this page affect the inner workings of Eden's emulated touchscreen. Changing them may result in undesirable behavior, such as the touchscreen partially or not working. You should only use this page if you know what you are doing. @@ -5258,6 +5461,16 @@ Drag points to change position, or double-click table cells to edit values.Web Jejaring + + + Eden Web Service + + + + + Generate + + yuzu Web Service Layanan Web yuzu @@ -5267,42 +5480,29 @@ Drag points to change position, or double-click table cells to edit values.Dengan menyertakan nama pengguna dan token, Anda menyetujui untuk mengizinkan yuzu mengumpulkan data penggunaan tambahan, yang mungkin termasuk informasi pengenalan pengguna. - - eden Web Service - - - - - By providing your username and token, you agree to allow eden to collect additional usage data, which may include user identifying information. - - - - Verify - Verifikasi + Verifikasi - Sign up - Daftar + Daftar - + Token: Token: - + Username: Nama Pengguna: - What is my token? - Berapa token saya? + Berapa token saya? - + Web Service configuration can only be changed when a public room isn't being hosted. @@ -5327,12 +5527,12 @@ Drag points to change position, or double-click table cells to edit values.Hasilkan Ulang - + Discord Presence Kehadiran Discord - + Show Current Game in your Discord Status Tampilkan Permainan Saat ini pada Status Discord Anda @@ -5341,24 +5541,8 @@ Drag points to change position, or double-click table cells to edit values.<a href='https://yuzu-emu.org/help/feature/telemetry/'><span style="text-decoration: underline; color:#039be5;">Pelajari lebih lanjut</span></a> - <a href='https://profile.yuzu-emu.org/'><span style="text-decoration: underline; color:#039be5;">Sign up</span></a> - <a href='https://profile.yuzu-emu.org/'><span style="text-decoration: underline; color:#039be5;">Daftar</span></a> - - - - <a href='https://evilperson1337.notion.site/Hosting-a-Room-Inside-of-Eden-20457c2edaf680108abac6215a79acdb'><span style="text-decoration: underline; color:#039be5;">What is my token?</span></a> - - - - - Warning - - - - - Verification is currently nonfunctional, instead generate a random 48-character string with only lowercase a-z. - + <a href='https://profile.yuzu-emu.org/'><span style="text-decoration: underline; color:#039be5;">Daftar</span></a> <a href='https://yuzu-emu.org/wiki/yuzu-web-service/'><span style="text-decoration: underline; color:#039be5;">What is my token?</span></a> @@ -5380,12 +5564,6 @@ Drag points to change position, or double-click table cells to edit values.Token was not verified. The change to your token has not been saved. Token tidak terverifikasi. Perubahan ke token Anda tak tersimpan - - - Unverified, please click Verify before saving configuration - Tooltip - - Verifying... Memverifikasi... @@ -5408,20 +5586,67 @@ Drag points to change position, or double-click table cells to edit values.Verification failed. Check that you have entered your token correctly, and that your internet connection is working. Pemverifikasian gagal. Periksa apakah token yang dimasukkan sudah benar dan apakah koneksi internet Anda berjalan. + + + + All Good + Tooltip + + + + + Must be between 4-20 characters + Tooltip + + + + + Must be 48 characters, and lowercase a-z + Tooltip + + ControllerDialog - + Controller P1 Kontroler P1 - + &Controller P1 %Kontroler P1 + + DepsDialog + + + Eden Dependencies + + + + + <html><head/><body><p><span style=" font-size:28pt;">Eden Dependencies</span></p></body></html> + + + + + <html><head/><body><p>The projects that make Eden possible</p></body></html> + + + + + Dependency + + + + + Version + Versi + + DirectConnect @@ -5527,7 +5752,12 @@ Drag points to change position, or double-click table cells to edit values. - Creating a room failed. Please retry. Restarting eden might be necessary. + Creating a room failed. Please retry. Restarting Eden might be necessary. + + + + + Version mismatch! Please update to the latest version of Eden. If the problem persists, contact the room host and ask them to update the server. @@ -5535,11 +5765,6 @@ Drag points to change position, or double-click table cells to edit values.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 eden. If the problem persists, contact the room host and ask them to update the server. - - Incorrect password. @@ -5599,110 +5824,109 @@ Please go to Configure -> System -> Network and make a selection. Telemetri - + Broken Vulkan Installation Detected - + Running a game TRANSLATORS: This string is shown to the user to explain why yuzu needs to prevent the computer from sleeping - + Loading Web Applet... Memuat Applet Web... - - + + Disable Web Applet Matikan Applet Web - + Disabling the web applet can lead to undefined behavior and should only be used with Super Mario 3D All-Stars. Are you sure you want to disable the web applet? (This can be re-enabled in the Debug settings.) - + The amount of shaders currently being built Jumlah shader yang sedang dibuat - + The current selected resolution scaling multiplier. Pengali skala resolusi yang terpilih. - + Current emulation speed. Values higher or lower than 100% indicate emulation is running faster or slower than a Switch. Kecepatan emulasi saat ini. Nilai yang lebih tinggi atau rendah dari 100% menandakan pengemulasian berjalan lebih cepat atau lambat dibanding Switch aslinya. - + How many frames per second the game is currently displaying. This will vary from game to game and scene to scene. Berapa banyak frame per second (bingkai per detik) permainan akan ditampilkan. Ini akan berubah dari berbagai permainan dan pemandangan. - + Time taken to emulate a Switch frame, not counting framelimiting or v-sync. For full-speed emulation this should be at most 16.67 ms. Waktu yang diperlukan untuk mengemulasikan bingkai Switch, tak menghitung pembatas bingkai atau v-sync. Agar emulasi berkecepatan penuh, ini harus 16.67 mdtk. - + Unmute Membunyikan - + Mute Bisukan - + Reset Volume Atur ulang tingkat suara - + &Clear Recent Files &Bersihkan Berkas Baru-baru Ini - + &Continue &Lanjutkan - + &Pause &Jeda - Warning Outdated Game Format - Peringatan Format Permainan yang Usang + Peringatan Format Permainan yang Usang You are using the deconstructed ROM directory format for this game, which is an outdated format that has been superseded by others such as NCA, NAX, XCI, or NSP. Deconstructed ROM directories lack icons, metadata, and update support.<br><br>For an explanation of the various Switch formats yuzu supports, <a href='https://yuzu-emu.org/wiki/overview-of-switch-game-formats'>check out our wiki</a>. This message will not be shown again. Anda menggunakan format direktori ROM yang sudah didekonstruksi untuk permainan ini, yang mana itu merupakan format lawas yang sudah tergantikan oleh yang lain seperti NCA, NAX, XCI, atau NSP. Direktori ROM yang sudah didekonstruksi kekurangan ikon, metadata, dan dukungan pembaruan.<br><br>Untuk penjelasan berbagai format Switch yang didukung yuzu, <a href='https://yuzu-emu.org/wiki/overview-of-switch-game-formats'>periksa wiki kami</a>. Pesan ini tidak akan ditampilkan lagi. - - + + Error while loading ROM! Kesalahan ketika memuat ROM! - + The ROM format is not supported. Format ROM tak didukung. - + An error occurred initializing the video core. Terjadi kesalahan ketika menginisialisasi inti video. @@ -5711,1082 +5935,870 @@ Please go to Configure -> System -> Network and make a selection. yuzu telah mengalami error saat menjalankan inti video. Ini biasanya disebabkan oleh pemicu piranti (driver) GPU yang usang, termasuk yang terintegrasi. Mohon lihat catatan untuk informasi lebih rinci. Untuk informasi cara mengakses catatan, mohon lihat halaman berikut: <a href='https://yuzu-emu.org/help/reference/log-files/'>Cara Mengupload Berkas Catatan</a>. - + Error while loading ROM! %1 %1 signifies a numeric error code. - + Vulkan initialization failed during boot.<br><br>Click <a href='https://eden-emulator.github.io/wiki/faq/#yuzu-starts-with-the-error-broken-vulkan-installation-detected'>here for instructions to fix the issue</a>. - - Game Updates Warning - - - - - The game you are trying to launch is known to have performance or booting issues when updates are applied. Please try increasing the memory layout to 6GB or 8GB if any issues occur.<br><br>Press "OK" to continue launching, or "Cancel" to cancel the launch. - - - - - Don't show again for this game - - - - - You are using the deconstructed ROM directory format for this game, which is an outdated format that has been superseded by others such as NCA, NAX, XCI, or NSP. Deconstructed ROM directories lack icons, metadata, and update support.<br><br>For an explanation of the various Switch formats eden supports, <a href='https://eden-emulator.github.io/wiki/overview-of-switch-game-formats'>check out our wiki</a>. This message will not be shown again. - - - - - eden has encountered an error while running the video core. This is usually caused by outdated GPU drivers, including integrated ones. Please see the log for more details. For more information on accessing the log, please see the following page: <a href='https://eden-emulator.github.io/help/reference/log-files/'>How to Upload the Log File</a>. - - - - - %1<br>Please redump your files or ask on Discord for help. - %1 signifies an error string. - - - - + An unknown error occurred. Please see the log for more details. Terjadi kesalahan yang tak diketahui. Mohon lihat catatan untuk informasi lebih rinci. - + (64-bit) (64-bit) - + (32-bit) (32-bit) - + %1 %2 %1 is the title name. %2 indicates if the title is 64-bit or 32-bit %1 %2 - + Closing software... - + Save Data Simpan Data - + Mod Data Mod Data - + Error Opening %1 Folder Gagal Membuka Folder %1 - - + + Folder does not exist! Folder tak ada! - Error Opening Transferable Shader Cache - Gagal Ketika Membuka Tembolok Shader yang Dapat Ditransfer + Gagal Ketika Membuka Tembolok Shader yang Dapat Ditransfer - - Failed to create the shader cache directory for this title. - - - - Error Removing Contents - Error saat menghapus konten + Error saat menghapus konten - Error Removing Update - Error saat menghapus Update + Error saat menghapus Update - Error Removing DLC - Error saat menghapus DLC + Error saat menghapus DLC - + Remove Installed Game Contents? Hapus Konten Game yang terinstall? - + Remove Installed Game Update? Hapus Update Game yang terinstall? - + Remove Installed Game DLC? Hapus DLC Game yang terinstall? - + Remove Entry Hapus Masukan - - - - - - Successfully Removed - Berhasil menghapus + Berhasil menghapus - - Successfully removed the installed base game. - - - - - The base game is not installed in the NAND and cannot be removed. - - - - - Successfully removed the installed update. - - - - - There is no update installed for this title. - - - - There are no DLC installed for this title. - Tidak ada DLC yang terinstall untuk judul ini. + Tidak ada DLC yang terinstall untuk judul ini. - - Successfully removed %1 installed DLC. - - - - + Delete OpenGL Transferable Shader Cache? - + Delete Vulkan Transferable Shader Cache? - + Delete All Transferable Shader Caches? - + Remove Custom Game Configuration? - + Remove Cache Storage? - + Remove File Hapus File - + Remove Play Time Data - + Reset play time? - - Error Removing Transferable Shader Cache - Kesalahan Menghapus Transferable Shader Cache + Kesalahan Menghapus Transferable Shader Cache - - A shader cache for this title does not exist. - Cache shader bagi judul ini tidak ada + Cache shader bagi judul ini tidak ada - - Successfully removed the transferable shader cache. - - - - - Failed to remove the transferable shader cache. - - - - - Error Removing Vulkan Driver Pipeline Cache - - - - - Failed to remove the driver pipeline cache. - - - - - - Error Removing Transferable Shader Caches - - - - - Successfully removed the transferable shader caches. - - - - - Failed to remove the transferable shader cache directory. - - - - - Error Removing Custom Configuration - Kesalahan Menghapus Konfigurasi Buatan + Kesalahan Menghapus Konfigurasi Buatan - - A custom configuration for this title does not exist. - - - - - Successfully removed the custom game configuration. - - - - - Failed to remove the custom game configuration. - - - - - + + RomFS Extraction Failed! Pengekstrakan RomFS Gagal! - + There was an error copying the RomFS files or the user cancelled the operation. Terjadi kesalahan ketika menyalin berkas RomFS atau dibatalkan oleh pengguna. - + Full Penuh - + Skeleton Skeleton - + Select RomFS Dump Mode Pilih Mode Dump RomFS - + Please select the how you would like the RomFS dumped.<br>Full will copy all of the files into the new directory while <br>skeleton will only create the directory structure. Mohon pilih cara RomFS akan di-dump.<br>FPenuh akan menyalin seluruh berkas ke dalam direktori baru sementara <br>jerangkong hanya akan menciptakan struktur direktorinya saja. - + There is not enough free space at %1 to extract the RomFS. Please free up space or select a different dump directory at Emulation > Configure > System > Filesystem > Dump Root - + Extracting RomFS... Mengekstrak RomFS... - - - - - + + Cancel Batal - + RomFS Extraction Succeeded! Pengekstrakan RomFS Berhasil! - - - + The operation completed successfully. Operasi selesai dengan sukses, - - Integrity verification couldn't be performed! - - - - - File contents were not checked for validity. - - - - - - Verifying integrity... - - - - - Integrity verification succeeded! - Berhasil + Berhasil - - Integrity verification failed! - Gagal + Gagal - - File contents may be corrupt. - - - - - - - Create Shortcut - Buat Pintasan + Buat Pintasan - - Do you want to launch the game in fullscreen? - - - - - Successfully created a shortcut to %1 - - - - - This will create a shortcut to the current AppImage. This may not work well if you update. Continue? - - - - - Failed to create a shortcut to %1 - - - - Create Icon - Buat ikon + Buat ikon - - Cannot create icon file. Path "%1" does not exist and cannot be created. + + Warning: Outdated Game Format - + + You are using the deconstructed ROM directory format for this game, which is an outdated format that has been superseded by others such as NCA, NAX, XCI, or NSP. Deconstructed ROM directories lack icons, metadata, and update support.<br><br>For an explanation of the various Switch formats Eden supports, <a href='https://eden-emulator.github.io/wiki/overview-of-switch-game-formats'>check out our wiki</a>. This message will not be shown again. + + + + + Eden has encountered an error while running the video core. This is usually caused by outdated GPU drivers, including integrated ones. Please see the log for more details. For more information on accessing the log, please see the following page: <a href='https://yuzu-mirror.github.io/help/reference/log-files/'>How to Upload the Log File</a>. + + + + + %1<br>Please redump your files or ask on Discord/Revolt for help. + %1 signifies an error string. + + + + Error Opening %1 Gagal membuka %1 - + Select Directory Pilih Direktori - + Properties Properti - + The game properties could not be loaded. Properti permainan tak dapat dimuat. - + Switch Executable (%1);;All Files (*.*) %1 is an identifier for the Switch executable file extensions. Eksekutabel Switch (%1);;Semua Berkas (*.*) - + Load File Muat Berkas - + Open Extracted ROM Directory Buka Direktori ROM Terekstrak - + Invalid Directory Selected Direktori Terpilih Tidak Sah - + The directory you have selected does not contain a 'main' file. Direktori yang Anda pilih tak memiliki berkas 'utama.' - + Installable Switch File (*.nca *.nsp *.xci);;Nintendo Content Archive (*.nca);;Nintendo Submission Package (*.nsp);;NX Cartridge Image (*.xci) - + Install Files Install File - + %n file(s) remaining + - + Installing file "%1"... Memasang berkas "%1"... - - + + Install Results Hasil Install - + To avoid possible conflicts, we discourage users from installing base games to the NAND. Please, only use this feature to install updates and DLC. - + %n file(s) were newly installed - %n file(s) baru diinstall - + %n file(s) baru diinstall + %n file(s) baru diinstall - + %n file(s) were overwritten - %n file(s) telah ditimpa - + %n file(s) telah ditimpa + %n file(s) telah ditimpa - + %n file(s) failed to install - %n file(s) gagal di install - + %n file(s) gagal di install + %n file(s) gagal di install - + System Application Aplikasi Sistem - + System Archive Arsip Sistem - + System Application Update Pembaruan Aplikasi Sistem - + Firmware Package (Type A) Paket Perangkat Tegar (Tipe A) - + Firmware Package (Type B) Paket Perangkat Tegar (Tipe B) - + Game Permainan - + Game Update Pembaruan Permainan - + Game DLC DLC Permainan - + Delta Title Judul Delta - + Select NCA Install Type... Pilih Tipe Pemasangan NCA... - + Please select the type of title you would like to install this NCA as: (In most instances, the default 'Game' is fine.) Mohon pilih jenis judul yang Anda ingin pasang sebagai NCA ini: (Dalam kebanyakan kasus, pilihan bawaan 'Permainan' tidak apa-apa`.) - + Failed to Install Gagal Memasang - + The title type you selected for the NCA is invalid. Jenis judul yang Anda pilih untuk NCA tidak sah. - + File not found Berkas tak ditemukan - + File "%1" not found Berkas "%1" tak ditemukan - + OK OK - - + + Hardware requirements not met - - + + Your system does not meet the recommended hardware requirements. Compatibility reporting has been disabled. - + Missing yuzu Account Akun yuzu Hilang - - In order to submit a game compatibility test case, you must link your eden account.<br><br/>To link your eden account, go to Emulation &gt; Configuration &gt; Web. + + In order to submit a game compatibility test case, you must set up your web token and username.<br><br/>To link your eden account, go to Emulation &gt; Configuration &gt; Web. - - Install decryption keys and restart eden before attempting to install firmware. + + Select Dumped Firmware ZIP - - Firmware installation cancelled, firmware may be in bad state, restart eden or re-install firmware. + + Zipped Archives (*.zip) - - Encryption keys are missing. + + Firmware cleanup failed - - Are you sure you want to close eden? + + Failed to clean up extracted firmware cache. +Check write permissions in the system temp directory and try again. +OS reported error: %1 - - - - eden + + Please install firmware to use the Album applet. - - The currently running application has requested eden to not exit. + + Please install firmware to use the Cabinet applet. + + + + + Please install firmware to use the Mii editor. + + + + + Please install firmware to use the Controller Menu. + + + + + Please install firmware to use the Home Menu. + + + + + Firmware Corrupted + + + + + Firmware Too New + + + + + +Continue anyways? + + + + + Don't show again + + + + + Please install firmware to use Starter. + + + + + Are you sure you want to close Eden? + + + + + + + Eden + + + + + The currently running application has requested Eden to not exit. Would you like to bypass this and exit anyway? + + + Encryption keys are missing. + + In order to submit a game compatibility test case, you must link your yuzu account.<br><br/>To link your yuzu account, go to Emulation &gt; Configuration &gt; Web. Agar dapat mengirimkan berkas uju kompatibilitas permainan, Anda harus menautkan akun yuzu Anda.<br><br/>TUntuk mennautkan akun yuzu Anda, pergi ke Emulasi &gt; Konfigurasi &gt; Web. - + Error opening URL Kesalahan saat membuka URL - + Unable to open the URL "%1". Tidak dapat membuka URL "%1". - + TAS Recording Rekaman TAS - + Overwrite file of player 1? Timpa file pemain 1? - + Invalid config detected Konfigurasi tidak sah terdeteksi - + Handheld controller can't be used on docked mode. Pro controller will be selected. Kontroller jinjing tidak bisa digunakan dalam mode dock. Kontroller Pro akan dipilih - - + + Amiibo - - + + The current amiibo has been removed - + Error Kesalahan - - + + The current game is not looking for amiibos - + Amiibo File (%1);; All Files (*.*) Berkas Amiibo (%1);; Semua Berkas (*.*) - + Load Amiibo Muat Amiibo - + Error loading Amiibo data Gagal memuat data Amiibo - + The selected file is not a valid amiibo - + The selected file is already on use - + An unknown error occurred - - - Verification failed for the following files: - -%1 - - - - + + Keys not installed - + + + Install decryption keys and restart Eden before attempting to install firmware. + + + + Select Dumped Firmware Source Location - - Installing Firmware... - - - - - - - - Firmware install failed - - - - - Unable to locate potential firmware NCA files - - - - - Failed to delete one or more firmware file. - - - - - One or more firmware files failed to copy into NAND. - - - - - Firmware integrity verification failed! - - - - - Select Dumped Keys Location - - - - - - - Decryption Keys install failed - - - - - prod.keys is a required decryption key file. - - - - - One or more keys failed to copy. - - - - - Decryption Keys install succeeded - - - - - Decryption Keys were successfully installed - - - - - Decryption Keys failed to initialize. Check that your dumping tools are up to date and re-dump keys. - - - - - - - - - - + + + + + + No firmware available - - Please install the firmware to use the Album applet. - - - - + Album Applet - + Album applet is not available. Please reinstall firmware. - - Please install the firmware to use the Cabinet applet. - - - - + Cabinet Applet - + Cabinet applet is not available. Please reinstall firmware. - - Please install the firmware to use the Mii editor. - - - - + Mii Edit Applet - + Mii editor is not available. Please reinstall firmware. - - Please install the firmware to use the Controller Menu. - - - - + Controller Applet - + Controller Menu is not available. Please reinstall firmware. - - Please install the firmware to use the Home Menu. - - - - - + Home Menu Applet - - + Home Menu is not available. Please reinstall firmware. - - Please install the firmware to use Starter. - - - - + Starter Applet - + Starter is not available. Please reinstall firmware. - - Please install firmware to use the home menu. - - - - + Capture Screenshot Tangkapan Layar - + PNG Image (*.png) Berkas PNG (*.png) - + Update Available - + Update %1 for Eden is available. Would you like to download it? - + TAS state: Running %1/%2 Status TAS: Berjalan %1/%2 - + TAS state: Recording %1 Status TAS: Merekam %1 - + TAS state: Idle %1/%2 Status TAS: Diam %1/%2 - + TAS State: Invalid Status TAS: Tidak Valid - + &Stop Running &Matikan - + &Start &Mulai - + Stop R&ecording Berhenti Mer&ekam - + R&ecord R&ekam - + Building: %n shader(s) Membangun: %n shader(s) + Membangun: %n shader(s) - + Scale: %1x %1 is the resolution scaling factor Skala: %1x - + Speed: %1% / %2% Kecepatan: %1% / %2% - + Speed: %1% Kecepatan: %1% - + Game: %1 FPS Permainan: %1 FPS - + Frame: %1 ms Frame: %1 ms - + %1 %2 %1 %2 - - + + FSR FSR - + NO AA TANPA AA - + VOLUME: MUTE VOLUME : SENYAP - + VOLUME: %1% Volume percentage (e.g. 50%) - + Derivation Components Missing - + Select RomFS Dump Target Pilih Target Dump RomFS - + Please select which RomFS you would like to dump. Silahkan pilih jenis RomFS yang ingin Anda buang. @@ -6799,107 +6811,107 @@ Would you like to download it? yuzu - + Are you sure you want to stop the emulation? Any unsaved progress will be lost. Apakah Anda yakin untuk menghentikan emulasi? Setiap progres yang tidak tersimpan akan hilang. - + None Tak ada - + FXAA FXAA - + SMAA SMAA - + Nearest Terdekat - + Bilinear Biliner - + Bicubic Bikubik - + Gaussian Gaussian - + ScaleForce ScaleForce - + Area - + Docked Terpasang - + Handheld Jinjing - + Normal Normal - + High Tinggi - + Extreme Ekstrim - + Vulkan Vulkan - + OpenGL OpenGL - + Null Null - + GLSL GLSL - + GLASM - + SPIRV @@ -6907,44 +6919,44 @@ Would you like to download it? GRenderWindow - - + + OpenGL not available! OpenGL tidak tersedia! - + OpenGL shared contexts are not supported. - - eden has not been compiled with OpenGL support. + + Eden has not been compiled with OpenGL support. - - + + Error while initializing OpenGL! Terjadi kesalahan menginisialisasi OpenGL! - + Your GPU may not support OpenGL, or you do not have the latest graphics driver. VGA anda mungkin tidak mendukung OpenGL, atau anda tidak memiliki pemacu piranti (driver) grafis terbaharu. - + Error while initializing OpenGL 4.6! Terjadi kesalahan menginisialisasi OpenGL 4.6! - + Your GPU may not support OpenGL 4.6, or you do not have the latest graphics driver.<br><br>GL Renderer:<br>%1 VGA anda mungkin tidak mendukung OpenGL 4.6, atau anda tidak memiliki pemacu piranti (driver) grafis terbaharu.<br><br>Pemuat GL:<br>%1 - + Your GPU may not support one or more required OpenGL extensions. Please ensure you have the latest graphics driver.<br><br>GL Renderer:<br>%1<br><br>Unsupported extensions:<br>%2 VGA anda mungkin tidak mendukung satu atau lebih ekstensi OpenGL. Mohon pastikan bahwa anda memiliki pemacu piranti (driver) grafis terbaharu.<br><br>Pemuat GL:<br>%1<br><br>Ekstensi yang tidak didukung:<br>%2 @@ -6952,128 +6964,128 @@ Would you like to download it? GameList - + Favorite Favorit - + Start Game Mulai permainan - + Start Game without Custom Configuration - + Open Save Data Location Buka Lokasi Data Penyimpanan - + Open Mod Data Location Buka Lokasi Data Mod - + Open Transferable Pipeline Cache - + Remove Singkirkan - + Remove Installed Update - + Remove All Installed DLC - + Remove Custom Configuration - + Remove Play Time Data - + Remove Cache Storage - + Remove OpenGL Pipeline Cache - + Remove Vulkan Pipeline Cache - + Remove All Pipeline Caches - + Remove All Installed Contents Hapus semua konten terinstall. - + Dump RomFS Dump RomFS - + Dump RomFS to SDMC - + Verify Integrity - + Copy Title ID to Clipboard Salin Judul ID ke Clipboard. - + Navigate to GameDB entry Pindah ke tampilan GameDB - + Create Shortcut Buat pintasan - + Add to Desktop Menambahkan ke Desktop - + Add to Applications Menu - + Configure Game @@ -7082,62 +7094,62 @@ Would you like to download it? Properti - + Scan Subfolders Memindai subfolder - + Remove Game Directory - + ▲ Move Up - + ▼ Move Down - + Open Directory Location Buka Lokasi Direktori - + Clear Bersihkan - + Name Nama - + Compatibility Kompatibilitas - + Add-ons Pengaya (Add-On) - + File type Tipe berkas - + Size Ukuran - + Play time @@ -7145,62 +7157,62 @@ Would you like to download it? GameListItemCompat - + Ingame - + Game starts, but crashes or major glitches prevent it from being completed. - + Perfect Sempurna - + Game can be played without issues. Permainan dapat dimainkan tanpa kendala. - + Playable - + Game functions with minor graphical or audio glitches and is playable from start to finish. - + Intro/Menu Awal/Menu - + Game loads, but is unable to progress past the Start Screen. - + Won't Boot Tidak Akan Berjalan - + The game crashes when attempting to startup. Gim rusak saat mencoba untuk memulai. - + Not Tested Belum dites - + The game has not yet been tested. Gim belum pernah dites. @@ -7208,7 +7220,7 @@ Would you like to download it? GameListPlaceholder - + Double-click to add a new folder to the game list Klik dua kali untuk menambahkan folder sebagai daftar permainan. @@ -7216,19 +7228,20 @@ Would you like to download it? GameListSearchField - + %1 of %n result(s) + - + Filter: - + Enter pattern to filter Masukkan pola untuk memfilter @@ -7310,7 +7323,7 @@ Would you like to download it? - Failed to announce the room to the public lobby. In order to host a room publicly, you must have a valid eden account configured in Emulation -> Configure -> Web. If you do not want to publish a room in the public lobby, then select Unlisted instead. + Failed to announce the room to the public lobby. In order to host a room publicly, you must have a valid Eden 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: @@ -7318,186 +7331,186 @@ Debug Message: Hotkeys - + Audio Mute/Unmute - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Main Window - + Audio Volume Down - + Audio Volume Up - + Capture Screenshot Tangkapan Layar - + Change Adapting Filter - + Change Docked Mode - + Change GPU Accuracy - + Configure Konfigurasi - + Configure Current Game - + Continue/Pause Emulation - + Exit Fullscreen - - Exit eden + + Exit Eden - + Fullscreen - + Load File Muat Berkas - + Load/Remove Amiibo - + Multiplayer Browse Public Game Lobby - + Multiplayer Create Room - + Multiplayer Direct Connect to Room - + Multiplayer Leave Room - + Multiplayer Show Current Room - + Restart Emulation - + Stop Emulation - + TAS Record - + TAS Reset - + TAS Start/Stop - + Toggle Filter Bar - + Toggle Framerate Limit - + Toggle Mouse Panning - + Toggle Renderdoc Capture - + Toggle Status Bar @@ -7505,22 +7518,22 @@ Debug Message: InstallDialog - + Please confirm these are the files you wish to install. - + Installing an Update or DLC will overwrite the previously installed one. - + Install Install - + Install Files to NAND Install File ke NAND @@ -7528,7 +7541,7 @@ Debug Message: LimitableInputDialog - + The text can't contain any of the following characters: %1 @@ -7674,349 +7687,412 @@ Debug Message: - + &Emulation &Emulasi - + &View - + &Reset Window Size - + &Debugging - + Reset Window Size to &720p Atur ulang ukuran bingkai ke &720p - + Reset Window Size to 720p Atur ulang ukuran bingkai ke 720p - + Reset Window Size to &900p Atur ulang ukuran bingkai ke &900p - + Reset Window Size to 900p Atur ulang ukuran bingkai ke 900p - + Reset Window Size to &1080p - + Reset Window Size to 1080p - + &Multiplayer - + &Tools - + &Amiibo - + &TAS - + &Create Home Menu Shortcut - + &Help - + &Install Files to NAND... - + L&oad File... - + Load &Folder... - + E&xit - + &Pause &Jeda - + &Stop - + &Verify Installed Contents - - &About eden - - - - - Open &eden Folder - - - - + Open Home Menu - + &Discord - + Open &Setup - + &Desktop - + &Application Menu - + Single &Window Mode - + + Open &Eden Folders + + + + + &About Eden + + + + Con&figure... - + Ctrl+, - + Display D&ock Widget Headers - + Show &Filter Bar - + Show &Status Bar - + Show Status Bar Munculkan Status Bar - + &Browse Public Game Lobby - + &Create Room - + &Leave Room - + &Direct Connect to Room - + &Show Current Room - + F&ullscreen - + &Restart - + Load/Remove &Amiibo... - + &Report Compatibility - + Open &Mods Page - + Open &Quickstart Guide Buka %Panduan cepat - + &FAQ - + &Capture Screenshot - + Open &Album - + &Set Nickname and Owner - + &Delete Game Data - + &Restore Amiibo - + &Format Amiibo - + Open &Mii Editor - + &Configure TAS... - + Configure C&urrent Game... - + &Start &Mulai - + &Reset - + R&ecord R&ekam - + Open &Controller Menu - + + &Root Data Folder + + + + + &NAND Folder + + + + + &SDMC Folder + + + + + &Mod Folder + + + + + &Log Folder + + + + + From Folder + + + + + From ZIP + + + + + &X + + + + + X (Twitter) + + + + + &Revolt + + + + + Revolt + + + + + &Eden Dependencies + + + + Install Firmware - + Install Decryption Keys - - MicroProfileDialog - - - &MicroProfile - - - MigrationWorker - + Data was migrated successfully. - + Linking the old directory failed. You may need to re-run with administrative privileges on Windows. OS gave error: %1 - + + + +Note that your configuration and data will be shared with %1. +If this is not desirable, delete the following files: +%2 +%3 +%4 + + + + If you wish to clean up the files which were left in the old data location, you can do so by deleting the following directory: @@ -8076,37 +8152,37 @@ If you wish to clean up the files which were left in the old data location, you MultiplayerState - + Current connection status - + Not Connected. Click here to find a room! - + Not Connected - + Connected Terhubung - + New Messages Received Pesan baru diterima - + Error Kesalahan - + Failed to update the room information. Please check your Internet connection and try hosting the room again. Debug Message: @@ -8208,56 +8284,56 @@ p, li { white-space: pre-wrap; } - + Installed SD Titles - + Installed NAND Titles - + System Titles - + Add New Game Directory Tambahkan direktori permainan - + Favorites - - + + Shift Ubah - - + + Ctrl Ctrl - - + + Alt Alt - - - - + + + + [not set] [belum diatur] @@ -8268,14 +8344,14 @@ p, li { white-space: pre-wrap; } - - - - - - - - + + + + + + + + Axis %1%2 @@ -8286,357 +8362,357 @@ p, li { white-space: pre-wrap; } - - - - - - + + + + + + [unknown] [tidak diketahui] - - - + + + Left Kiri - - - + + + Right Kanan - - - + + + Down Bawah - - - + + + Up Atas - - + + Z Z - - + + R R - - + + L L - - + + A A - - + + B B - - + + X X - - + + Y Y - - + + Start Mulai - - + + L1 L1 - - + + L2 L2 - - + + L3 L3 - - + + R1 R1 - - + + R2 R2 - - + + R3 R3 - - + + Circle O - - + + Cross X - - + + Square - - + + Triangle - - + + Share - - + + Options Opsi - - + + [undefined] - + %1%2 - - + + [invalid] - - + + %1%2Hat %3 - - - + + + %1%2Axis %3 - - + + %1%2Axis %3,%4,%5 - - + + %1%2Motion %3 %1%2Gerakan %3 - - + + %1%2Button %3 - - + + [unused] - + ZR ZR - + ZL ZL - + SR SR - + SL SL - + Stick L Stik Analog Kiri - + Stick R Stik Analog Kanan - + Plus Tambah - + Minus Kurang - - + + Home Home - + Capture Tangkapan - + Touch Sentuh - + Wheel Indicates the mouse wheel - + Backward - + Forward - + Task - + Extra - + %1%2%3%4 - - + + %1%2%3Hat %4 - - + + %1%2%3Axis %4 - - + + %1%2%3Button %4 - - + + Migration - + - - + + No - + You can manually re-trigger this prompt by deleting the new config directory: %1 - + Migrating - + Migrating, this may take a while... @@ -8754,6 +8830,298 @@ p, li { white-space: pre-wrap; } + + QtCommon::Content + + + Installing Firmware... + + + + + + + Cancel + + + + + Firmware integrity verification failed! + + + + + + Verification failed for the following files: + +%1 + + + + + + Verifying integrity... + + + + + + Integrity verification succeeded! + Berhasil + + + + + The operation completed successfully. + + + + + + Integrity verification failed! + Gagal + + + + File contents may be corrupt or missing. + + + + + Integrity verification couldn't be performed + + + + + Firmware installation cancelled, firmware may be in a bad state or corrupted. File contents could not be checked for validity. + + + + + Select Dumped Keys Location + + + + + Decryption Keys install succeeded + + + + + Decryption Keys were successfully installed + + + + + Decryption Keys install failed + + + + + QtCommon::Game + + + Error Removing Contents + Error saat menghapus konten + + + + Error Removing Update + Error saat menghapus Update + + + + Error Removing DLC + Error saat menghapus DLC + + + + The base game is not installed in the NAND and cannot be removed. + + + + + There is no update installed for this title. + + + + + There are no DLCs installed for this title. + + + + + + + + Successfully Removed + Berhasil menghapus + + + + Successfully removed %1 installed DLC. + + + + + + Error Removing Transferable Shader Cache + Kesalahan Menghapus Transferable Shader Cache + + + + + A shader cache for this title does not exist. + Cache shader bagi judul ini tidak ada + + + + Successfully removed the transferable shader cache. + + + + + Failed to remove the transferable shader cache. + + + + + Error Removing Vulkan Driver Pipeline Cache + + + + + Failed to remove the driver pipeline cache. + + + + + + Error Removing Transferable Shader Caches + + + + + Successfully removed the transferable shader caches. + + + + + Failed to remove the transferable shader cache directory. + + + + + + Error Removing Custom Configuration + Kesalahan Menghapus Konfigurasi Buatan + + + + A custom configuration for this title does not exist. + + + + + Successfully removed the custom game configuration. + + + + + Failed to remove the custom game configuration. + + + + + Reset Metadata Cache + Atur Ulang Cache Metadata + + + + The metadata cache is already empty. + Cache metadata sudah kosong. + + + + The operation completed successfully. + + + + + The metadata cache couldn't be deleted. It might be in use or non-existent. + Cache metadata tidak dapat dihapus. Mungkin sedang dipakai atau memang tidak ada. + + + + Create Shortcut + + + + + Do you want to launch the game in fullscreen? + + + + + Shortcut Created + + + + + Successfully created a shortcut to %1 + + + + + Shortcut may be Volatile! + + + + + This will create a shortcut to the current AppImage. This may not work well if you update. Continue? + + + + + Failed to Create Shortcut + + + + + Failed to create a shortcut to %1 + + + + + Create Icon + Buat ikon + + + + Cannot create icon file. Path "%1" does not exist and cannot be created. + + + + + No firmware available + + + + + Please install firmware to use the home menu. + + + + + Home Menu Applet + + + + + Home Menu is not available. Please reinstall firmware. + + + QtControllerSelectorDialog @@ -9043,7 +9411,7 @@ Please try again or contact the developer of the software. QtProfileSelectionDialog - + %1 %2 %1 is the profile username, %2 is the formatted UUID (e.g. 00112233-4455-6677-8899-AABBCCDDEEFF)) @@ -9051,7 +9419,7 @@ Please try again or contact the developer of the software. %2 - + Users Pengguna @@ -9171,7 +9539,7 @@ p, li { white-space: pre-wrap; } WaitTreeCallstack - + Call stack @@ -9179,12 +9547,12 @@ p, li { white-space: pre-wrap; } WaitTreeSynchronizationObject - + [%1] %2 - + waited by no thread @@ -9192,102 +9560,102 @@ p, li { white-space: pre-wrap; } WaitTreeThread - + runnable - + paused dijeda - + sleeping - + waiting for IPC reply menunggu respon IPC - + waiting for objects Menunggu objek - + waiting for condition variable - + waiting for address arbiter - + waiting for suspend resume - + waiting - + initialized - + terminated - + unknown - + PC = 0x%1 LR = 0x%2 - + ideal - + core %1 - + processor = %1 - + affinity mask = %1 - + thread id = %1 - + priority = %1(current) / %2(normal) - + last running ticks = %1 @@ -9295,7 +9663,7 @@ p, li { white-space: pre-wrap; } WaitTreeThreadList - + waited by thread @@ -9303,7 +9671,7 @@ p, li { white-space: pre-wrap; } WaitTreeWidget - + &Wait Tree diff --git a/dist/languages/it.ts b/dist/languages/it.ts index 50ac83af4c..9e9daa8a0d 100644 --- a/dist/languages/it.ts +++ b/dist/languages/it.ts @@ -13,12 +13,12 @@ - About eden + About Eden - <html><head/><body><p><span style=" font-size:28pt;">eden</span></p></body></html> + <html><head/><body><p><span style=" font-size:28pt;">Eden</span></p></body></html> @@ -34,8 +34,8 @@ p, li { white-space: pre-wrap; } hr { height: 1px; border-width: 0; } li.unchecked::marker { content: "\2610"; } li.checked::marker { content: "\2612"; } -</style></head><body style=" font-family:'Adwaita Sans'; font-size:11pt; font-weight:400; font-style:normal;"> -<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;">eden is an experimental open-source emulator for the Nintendo Switch licensed under GPLv3.0+ which is based on the yuzu emulator which ended development back in March 2024. <br /><br />This software should not be used to play games you have not legally obtained.</span></p></body></html> +</style></head><body style=" font-family:'Noto Sans'; font-size:9pt; font-weight:400; font-style:normal;"> +<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;">Eden is an experimental open-source emulator for the Nintendo Switch licensed under GPLv3.0+ which is based on the yuzu emulator which ended development back in March 2024. <br /><br />This software should not be used to play games you have not legally obtained.</span></p></body></html> @@ -72,32 +72,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 touchpad. - + Now touch the bottom right corner <br>of your touchpad. Ora tocca l'angolo in basso a destra <br>del touchpad. - + Configuration completed! Configurazione completata! - + OK OK @@ -397,439 +397,198 @@ Questo bannerà sia il suo nome utente del forum che il suo indirizzo IP. ConfigurationShared - + % % - - Amiibo editor - - - - - Controller configuration - - - - - Data erase - - - - + Error Errore - - Net connect - - - - - Player select - - - - + Software keyboard Tastiera Software - - Mii Edit - - - - - Online web - - - - - Shop - - - - - Photo viewer - - - - - Offline web - - - - - Login share - - - - - Wifi web auth - - - - - My page - - - - + Output Engine: Motore di output: - + Output Device: Dispositivo di output: - + Input Device: Dispositivo di input: - + Mute audio Silenzia l'audio - + Volume: Volume: - + Mute audio when in background Silenzia l'audio quando la finestra è in background - + Multicore CPU Emulation Emulazione CPU multi-core - - This option increases CPU emulation thread use from 1 to the Switch’s maximum of 4. -This is mainly a debug option and shouldn’t be disabled. - - - - + Memory Layout Layout di memoria - - Increases the amount of emulated RAM from the stock 4GB of the retail Switch to the developer kit's 8/6GB. -It’s doesn’t improve stability or performance and is intended to let big texture mods fit in emulated RAM. -Enabling it will increase memory use. It is not recommended to enable unless a specific game with a texture mod needs it. - - - - + Limit Speed Percent Percentuale di limite della velocità - - Controls the game's maximum rendering speed, but it’s up to each game if it runs faster or not. -200% for a 30 FPS game is 60 FPS, and for a 60 FPS game it will be 120 FPS. -Disabling it means unlocking the framerate to the maximum your PC can reach. - - - - - Synchronize Core Speed - - - - - Synchronizes CPU core speed with the game's maximum rendering speed to boost FPS without affecting game speed (animations, physics, etc.). -Compatibility varies by game; many (especially older ones) may not respond well. -Can help reduce stuttering at lower framerates. - - - - + Accuracy: Accuratezza: - - This setting controls the accuracy of the emulated CPU. -Don't change this unless you know what you are doing. - - - - - + + Backend: Back-end: - - Fast CPU Time - - - - - Overclocks the emulated CPU to remove some FPS limiters. Weaker CPUs may see reduced performance, and certain games may behave improperly. -Use Boost (1700MHz) to run at the Switch's highest native clock, or Fast (2000MHz) to run at 2x clock. - - - - + Unfuse FMA (improve performance on CPUs without FMA) Non fondere FMA (migliora le prestazioni della CPU senza FMA) - + This option improves speed by reducing accuracy of fused-multiply-add instructions on CPUs without native FMA support. Questa opzione migliora la velocità riducendo la precisione delle istruzioni fused-multiply-add (FMA) sulle CPU senza il supporto nativo a FMA. - + Faster FRSQRTE and FRECPE FRSQRTE e FRECPE più veloci - + This option improves the speed of some approximate floating-point functions by using less accurate native approximations. Questa opzione migliora la velocità di alcune funzioni in virgola mobile approssimate utilizzando delle approssimazioni native meno accurate. - + Faster ASIMD instructions (32 bits only) Istruzioni ASIMD più veloci (solo 32 bit) - + This option improves the speed of 32 bits ASIMD floating-point functions by running with incorrect rounding modes. Questa opzione migliora la velocità delle funzioni in virgola mobile ASIMD a 32 bit eseguendole con modalità di arrotondamento non corrette. - + Inaccurate NaN handling Gestione inaccurata NaN - - This option improves speed by removing NaN checking. -Please note this also reduces accuracy of certain floating-point instructions. - - - - + Disable address space checks Disattiva i controlli dello spazio degli indirizzi - - This option improves speed by eliminating a safety check before every memory read/write in guest. -Disabling it may allow a game to read/write the emulator's memory. - - - - + Ignore global monitor Ignora il monitor globale - - This option improves speed by relying only on the semantics of cmpxchg to ensure safety of exclusive access instructions. -Please note this may result in deadlocks and other race conditions. - - - - + API: API: - - Switches between the available graphics APIs. -Vulkan is recommended in most cases. - - - - + Device: Dispositivo: - - This setting selects the GPU to use with the Vulkan backend. - - - - + Shader Backend: Back-end degli shader: - - The shader backend to use for the OpenGL renderer. -GLSL is the fastest in performance and the best in rendering accuracy. -GLASM is a deprecated NVIDIA-only backend that offers much better shader building performance at the cost of FPS and rendering accuracy. -SPIR-V compiles the fastest, but yields poor results on most GPU drivers. - - - - + Resolution: Risoluzione: - - Forces the game to render at a different resolution. -Higher resolutions require much more VRAM and bandwidth. -Options lower than 1X can cause rendering issues. - - - - + Window Adapting Filter: Filtro di adattamento alla finestra: - + FSR Sharpness: Nitidezza FSR: - - Determines how sharpened the image will look while using FSR’s dynamic contrast. - - - - + Anti-Aliasing Method: Metodo di anti-aliasing: - - The anti-aliasing method to use. -SMAA offers the best quality. -FXAA has a lower performance impact and can produce a better and more stable picture under very low resolutions. - - - - + Fullscreen Mode: Modalità schermo intero: - - The method used to render the window in fullscreen. -Borderless offers the best compatibility with the on-screen keyboard that some games request for input. -Exclusive fullscreen may offer better performance and better Freesync/Gsync support. - - - - + Aspect Ratio: Rapporto d'aspetto: - - Stretches the game to fit the specified aspect ratio. -Switch games only support 16:9, so custom game mods are required to get other ratios. -Also controls the aspect ratio of captured screenshots. - - - - + Use disk pipeline cache Utilizza la cache delle pipeline su disco - - Allows saving shaders to storage for faster loading on following game boots. -Disabling it is only intended for debugging. - - - - - Optimize SPIRV output shader - - - - - Runs an additional optimization pass over generated SPIRV shaders. -Will increase time required for shader compilation. -May slightly improve performance. -This feature is experimental. - - - - + Use asynchronous GPU emulation Utilizza l'emulazione asincrona della GPU - - Uses an extra CPU thread for rendering. -This option should always remain enabled. - - - - + NVDEC emulation: Emulazione NVDEC: - - Specifies how videos should be decoded. -It can either use the CPU or the GPU for decoding, or perform no decoding at all (black screen on videos). -In most cases, GPU decoding provides the best performance. - - - - + ASTC Decoding Method: Metodo di decodifica ASTC: - - This option controls how ASTC textures should be decoded. -CPU: Use the CPU for decoding, slowest but safest method. -GPU: Use the GPU's compute shaders to decode ASTC textures, recommended for most games and users. -CPU Asynchronously: Use the CPU to decode ASTC textures as they arrive. Completely eliminates ASTC decoding -stuttering at the cost of rendering issues while the texture is being decoded. - - - - + ASTC Recompression Method: Metodo di ricompressione ASTC: - - Almost all desktop and laptop dedicated GPUs lack support for ASTC textures, forcing the emulator to decompress to an intermediate format any card supports, RGBA8. -This option recompresses RGBA8 to either the BC1 or BC3 format, saving VRAM but negatively affecting image quality. - - - - - VRAM Usage Mode: - - - - - Selects whether the emulator should prefer to conserve memory or make maximum usage of available video memory for performance. Has no effect on integrated graphics. Aggressive mode may severely impact the performance of other applications such as recording software. - - - - + VSync Mode: Modalità VSync: - + FIFO (VSync) does not drop frames or exhibit tearing but is limited by the screen refresh rate. FIFO Relaxed is similar to FIFO but allows tearing as it recovers from a slow down. Mailbox can have lower latency than FIFO and does not tear but may drop frames. @@ -840,62 +599,34 @@ Mailbox può avere una latenza minore del FIFO, senza presentare alcun tearing, Immediato migliora la latenza ma causa tearing. - + Enable asynchronous presentation (Vulkan only) Abilita la presentazione asincrona (solo Vulkan) - - Slightly improves performance by moving presentation to a separate CPU thread. - - - - + Force maximum clocks (Vulkan only) Forza clock massimi (solo Vulkan) - + Runs work in the background while waiting for graphics commands to keep the GPU from lowering its clock speed. Esegue del lavoro in background durante l'attesa dei comandi grafici per evitare che la GPU diminuisca la sua velocità di clock. - + Anisotropic Filtering: Filtro anisotropico: - - Controls the quality of texture rendering at oblique angles. -It’s a light setting and safe to set at 16x on most GPUs. - - - - Accuracy Level: - Livello di accuratezza: + Livello di accuratezza: - - GPU emulation accuracy. -Most games render fine with Normal, but High is still required for some. -Particles tend to only render correctly with High accuracy. -Extreme should only be used for debugging. -This option can be changed while playing. -Some games may require booting on high to render properly. - - - - + Use asynchronous shader building (Hack) Utilizza la compilazione asincrona degli shader (espediente) - - - Enables asynchronous shader compilation, which may reduce shader stutter. -This feature is experimental. - - Use Fast GPU Time (Hack) Utilizza il Fast GPU Time (espediente) @@ -905,23 +636,17 @@ This feature is experimental. Abilita il Fast GPU Time. Questa opzione forzerà la maggior parte dei giochi ad essere eseguiti alla loro massima risoluzione nativa. - + Use Vulkan pipeline cache Utilizza la cache delle pipeline di Vulkan - - Enables GPU vendor-specific pipeline cache. -This option can improve shader loading time significantly in cases where the Vulkan driver does not store pipeline cache files internally. - - - - + Enable Compute Pipelines (Intel Vulkan Only) Abilita le compute pipeline (solo per Vulkan su Intel) - + Enable compute pipelines, required by some games. This setting only exists for Intel proprietary drivers, and may crash if enabled. Compute pipelines are always enabled on all other drivers. @@ -930,960 +655,1332 @@ Questa opzione può causare crash ed è compatibile solo con i driver proprietar Le compute pipeline sono sempre abilitate su tutti gli altri driver. - + Enable Reactive Flushing Abilita il flushing reattivo - + Uses reactive flushing instead of predictive flushing, allowing more accurate memory syncing. Utilizza il flushing reattivo invece di quello predittivo, al fine di ottenere una sincronizzazione della memoria più accurata. - + Sync to framerate of video playback Sincronizza il framerate a quello del video - + Run the game at normal speed during video playback, even when the framerate is unlocked. Esegue il gioco a velocità normale durante le cutscene, anche quando il framerate è sbloccato. - + Barrier feedback loops Barrier feedback loops - + Improves rendering of transparency effects in specific games. Migliora il rendering degli effetti di trasparenza in alcuni giochi. - + RNG Seed Seed RNG - + + Device Name + Nome del dispositivo + + + + Language: + Lingua: + + + + Note: this can be overridden when region setting is auto-select + Nota: Può essere rimpiazzato se il fuso orario della Regione è impostato su Auto + + + + Region: + Regione: + + + + Time Zone: + Fuso orario: + + + + Sound Output Mode: + Modalità di output del suono: + + + + Console Mode: + Modalità console: + + + + Prompt for user on game boot + Richiedi utente all'avvio di un gioco + + + + Pause emulation when in background + Metti in pausa l'emulazione quando la finestra è in background + + + + Confirm before stopping emulation + Chiedi conferma prima di arrestare l'emulazione + + + + Hide mouse on inactivity + Nascondi il puntatore del mouse se inattivo + + + + Disable controller applet + Disabilita l'applet controller + + + + Enable Gamemode + Abilita Gamemode + + + + CPU + CPU + + + + GPU + GPU + + + + CPU Asynchronous + CPU (Asincrono) + + + + Uncompressed (Best quality) + Nessuna compressione (qualità migliore) + + + + BC1 (Low quality) + BC1 (qualità bassa) + + + + BC3 (Medium quality) + BC3 (qualità media) + + + + OpenGL + OpenGL + + + + Vulkan + Vulkan + + + + Null + Nullo + + + + GLSL + GLSL + + + + GLASM (Assembly Shaders, NVIDIA Only) + GLASM (shader assembly, solo NVIDIA) + + + + SPIR-V (Experimental, AMD/Mesa Only) + SPIR-V (SPERIMENTALE, solo AMD/MESA) + + + + Normal + Normale + + + + High + Alta + + + + Extreme + Estrema + + + + Auto + Automatico + + + + Accurate + Accurata + + + + Unsafe + Non sicura + + + + Paranoid (disables most optimizations) + Paranoica (disabilita la maggior parte delle ottimizzazioni) + + + + Dynarmic + Dynarmic + + + + NCE + NCE + + + + Borderless Windowed + Finestra senza bordi + + + + Exclusive Fullscreen + Esclusivamente a schermo intero + + + + No Video Output + Nessun output video + + + + CPU Video Decoding + Decodifica video CPU + + + + GPU Video Decoding (Default) + Decodifica video GPU (predefinita) + + + + 0.5X (360p/540p) [EXPERIMENTAL] + 0.5X (360p/540p) [SPERIMENTALE] + + + + 0.75X (540p/810p) [EXPERIMENTAL] + 0.75X (540p/810p) [SPERIMENTALE] + + + + 1X (720p/1080p) + 1X (720p/1080p) + + + + 1.5X (1080p/1620p) [EXPERIMENTAL] + 1.5X (1080p/1620p) [SPERIMENTALE] + + + + 2X (1440p/2160p) + 2X (1440p/2160p) + + + + 3X (2160p/3240p) + 3X (2160p/3240p) + + + + 4X (2880p/4320p) + 4X (2880p/4320p) + + + + 5X (3600p/5400p) + 5X (3600p/5400p) + + + + 6X (4320p/6480p) + 6X (4320p/6480p) + + + + 7X (5040p/7560p) + 7X (5040p/7560p) + + + + 8X (5760p/8640p) + 8X (5760p/8640p) + + + + Nearest Neighbor + Nearest neighbor + + + + Bilinear + Bilineare + + + + Bicubic + Bicubico + + + + Gaussian + Gaussiano + + + + ScaleForce + ScaleForce + + + + AMD FidelityFX™️ Super Resolution + AMD FidelityFX™️ Super Resolution + + + + None + Nessuna + + + + FXAA + FXAA + + + + SMAA + SMAA + + + + Default (16:9) + Predefinito (16:9) + + + + Force 4:3 + Forza 4:3 + + + + Force 21:9 + Forza 21:9 + + + + Force 16:10 + Forza 16:10 + + + + Stretch to Window + Allunga a finestra + + + + Automatic + Automatico + + + + + Default + Predefinito + + + + Amiibo editor + + + + + Controller configuration + + + + + Data erase + + + + + Net connect + + + + + Player select + + + + + Mii Edit + + + + + Online web + + + + + Shop + + + + + Photo viewer + + + + + Offline web + + + + + Login share + + + + + Wifi web auth + + + + + My page + + + + + This option increases CPU emulation thread use from 1 to the Switch’s maximum of 4. +This is mainly a debug option and shouldn’t be disabled. + + + + + Increases the amount of emulated RAM from the stock 4GB of the retail Switch to the developer kit's 8/6GB. +It’s doesn’t improve stability or performance and is intended to let big texture mods fit in emulated RAM. +Enabling it will increase memory use. It is not recommended to enable unless a specific game with a texture mod needs it. + + + + + Controls the game's maximum rendering speed, but it’s up to each game if it runs faster or not. +200% for a 30 FPS game is 60 FPS, and for a 60 FPS game it will be 120 FPS. +Disabling it means unlocking the framerate to the maximum your PC can reach. + + + + + Synchronize Core Speed + + + + + Synchronizes CPU core speed with the game's maximum rendering speed to boost FPS without affecting game speed (animations, physics, etc.). +Compatibility varies by game; many (especially older ones) may not respond well. +Can help reduce stuttering at lower framerates. + + + + + This setting controls the accuracy of the emulated CPU. +Don't change this unless you know what you are doing. + + + + + Fast CPU Time + + + + + Overclocks the emulated CPU to remove some FPS limiters. Weaker CPUs may see reduced performance, and certain games may behave improperly. +Use Boost (1700MHz) to run at the Switch's highest native clock, or Fast (2000MHz) to run at 2x clock. + + + + + Custom CPU Ticks + + + + + Set a custom value of CPU ticks. Higher values can increase performance, but may also cause the game to freeze. A range of 77–21000 is recommended. + + + + + Enable Host MMU Emulation (fastmem) + + + + + This optimization speeds up memory accesses by the guest program. +Enabling it causes guest memory reads/writes to be done directly into memory and make use of Host's MMU. +Disabling this forces all memory accesses to use Software MMU Emulation. + + + + + This option improves speed by removing NaN checking. +Please note this also reduces accuracy of certain floating-point instructions. + + + + + This option improves speed by eliminating a safety check before every memory read/write in guest. +Disabling it may allow a game to read/write the emulator's memory. + + + + + This option improves speed by relying only on the semantics of cmpxchg to ensure safety of exclusive access instructions. +Please note this may result in deadlocks and other race conditions. + + + + + Switches between the available graphics APIs. +Vulkan is recommended in most cases. + + + + + This setting selects the GPU to use with the Vulkan backend. + + + + + The shader backend to use for the OpenGL renderer. +GLSL is the fastest in performance and the best in rendering accuracy. +GLASM is a deprecated NVIDIA-only backend that offers much better shader building performance at the cost of FPS and rendering accuracy. +SPIR-V compiles the fastest, but yields poor results on most GPU drivers. + + + + + Forces the game to render at a different resolution. +Higher resolutions require much more VRAM and bandwidth. +Options lower than 1X can cause rendering issues. + + + + + Determines how sharpened the image will look while using FSR’s dynamic contrast. + + + + + The anti-aliasing method to use. +SMAA offers the best quality. +FXAA has a lower performance impact and can produce a better and more stable picture under very low resolutions. + + + + + The method used to render the window in fullscreen. +Borderless offers the best compatibility with the on-screen keyboard that some games request for input. +Exclusive fullscreen may offer better performance and better Freesync/Gsync support. + + + + + Stretches the game to fit the specified aspect ratio. +Switch games only support 16:9, so custom game mods are required to get other ratios. +Also controls the aspect ratio of captured screenshots. + + + + + Allows saving shaders to storage for faster loading on following game boots. +Disabling it is only intended for debugging. + + + + + Optimize SPIRV output shader + + + + + Runs an additional optimization pass over generated SPIRV shaders. +Will increase time required for shader compilation. +May slightly improve performance. +This feature is experimental. + + + + + Uses an extra CPU thread for rendering. +This option should always remain enabled. + + + + + Specifies how videos should be decoded. +It can either use the CPU or the GPU for decoding, or perform no decoding at all (black screen on videos). +In most cases, GPU decoding provides the best performance. + + + + + This option controls how ASTC textures should be decoded. +CPU: Use the CPU for decoding, slowest but safest method. +GPU: Use the GPU's compute shaders to decode ASTC textures, recommended for most games and users. +CPU Asynchronously: Use the CPU to decode ASTC textures as they arrive. Completely eliminates ASTC decoding +stuttering at the cost of rendering issues while the texture is being decoded. + + + + + Almost all desktop and laptop dedicated GPUs lack support for ASTC textures, forcing the emulator to decompress to an intermediate format any card supports, RGBA8. +This option recompresses RGBA8 to either the BC1 or BC3 format, saving VRAM but negatively affecting image quality. + + + + + VRAM Usage Mode: + + + + + Selects whether the emulator should prefer to conserve memory or make maximum usage of available video memory for performance. +Aggressive mode may severely impact the performance of other applications such as recording software. + + + + + Skip CPU Inner Invalidation + + + + + Skips certain CPU-side cache invalidations during memory updates, reducing CPU usage and improving it's performance. This may cause glitches or crashes on some games. + + + + + Sync Memory Operations + + + + + Ensures data consistency between compute and memory operations. +This option should fix issues in some games, but may also reduce performance in some cases. +Unreal Engine 4 games often see the most significant changes thereof. + + + + + Slightly improves performance by moving presentation to a separate CPU thread. + + + + + Controls the quality of texture rendering at oblique angles. +It’s a light setting and safe to set at 16x on most GPUs. + + + + + GPU Accuracy: + + + + + Controls the GPU emulation accuracy. +Most games render fine with Normal, but High is still required for some. +Particles tend to only render correctly with High accuracy. +Extreme should only be used as a last resort. + + + + + DMA Accuracy: + + + + + Controls the DMA precision accuracy. Safe precision can fix issues in some games, but it can also impact performance in some cases. +If unsure, leave this on Default. + + + + + Enables asynchronous shader compilation, which may reduce shader stutter. +This feature is experimental. + + + + + Fast GPU Time (Hack) + + + + + Overclocks the emulated GPU to increase dynamic resolution and render distance. +Use 128 for maximal performance and 512 for maximal graphics fidelity. + + + + + Enables GPU vendor-specific pipeline cache. +This option can improve shader loading time significantly in cases where the Vulkan driver does not store pipeline cache files internally. + + + + + RAII + + + + + A method of automatic resource management in Vulkan that ensures proper release of resources when they are no longer needed, but may cause crashes in bundled games. + + + + + Extended Dynamic State + + + + + Controls the number of features that can be used in Extended Dynamic State. +Higher numbers allow for more features and can increase performance, but may cause issues with some drivers and vendors. +The default value may vary depending on your system and hardware capabilities. +This value can be changed until stability and a better visual quality are achieved. + + + + + Provoking Vertex + + + + + Improves lighting and vertex handling in certain games. +Only Vulkan 1.0+ devices support this extension. + + + + + Descriptor Indexing + + + + + Improves texture & buffer handling and the Maxwell translation layer. +Some Vulkan 1.1+ and all 1.2+ devices support this extension. + + + + + Sample Shading + + + + + Allows the fragment shader to execute per sample in a multi-sampled fragment instead once per fragment. Improves graphics quality at the cost of some performance. +Higher values improve quality more but also reduce performance to a greater extent. + + + + Controls the seed of the random number generator. Mainly used for speedrunning purposes. - - Device Name - Nome del dispositivo - - - + The name of the emulated Switch. - + Custom RTC Date: - + This option allows to change the emulated clock of the Switch. Can be used to manipulate time in games. - - Language: - Lingua: - - - - Note: this can be overridden when region setting is auto-select - Nota: Può essere rimpiazzato se il fuso orario della Regione è impostato su Auto - - - - Region: - Regione: - - - + The region of the emulated Switch. - - Time Zone: - Fuso orario: - - - + The time zone of the emulated Switch. - - Sound Output Mode: - Modalità di output del suono: - - - - Console Mode: - Modalità console: - - - + Selects if the console is emulated in Docked or Handheld mode. Games will change their resolution, details and supported controllers and depending on this setting. Setting to Handheld can help improve performance for low end systems. - - Prompt for user on game boot - Richiedi utente all'avvio di un gioco - - - - Pause emulation when in background - Metti in pausa l'emulazione quando la finestra è in background - - - - Fast GPU Time (Hack) + + Ask to select a user profile on each boot, useful if multiple people use Eden on the same PC. - - Overclocks the emulated GPU to increase dynamic resolution and render distance. -Use 128 for maximal performance and 512 for maximal graphics fidelity. + + This setting pauses Eden when focusing other windows. - - Extended Dynamic State - - - - - Enables the VkExtendedDynamicState* extensions. -Higher dynamic states will generally improve performance, but may cause issues on certain games or devices. - - - - - Provoking Vertex - - - - - Improves lighting and vertex handling in certain games. -Only Vulkan 1.0+ devices support this extension. - - - - - Descriptor Indexing - - - - - Improves texture & buffer handling and the Maxwell translation layer. -Some Vulkan 1.1+ and all 1.2+ devices support this extension. - - - - - Ask to select a user profile on each boot, useful if multiple people use eden on the same PC. - - - - - This setting pauses eden when focusing other windows. - - - - - Confirm before stopping emulation - Chiedi conferma prima di arrestare l'emulazione - - - + This setting overrides game prompts asking to confirm stopping the game. Enabling it bypasses such prompts and directly exits the emulation. - - Hide mouse on inactivity - Nascondi il puntatore del mouse se inattivo - - - + This setting hides the mouse after 2.5s of inactivity. - - Disable controller applet - Disabilita l'applet controller - - - + Forcibly disables the use of the controller applet by guests. When a guest attempts to open the controller applet, it is immediately closed. - + Check for updates - + Whether or not to check for updates upon startup. - - Enable Gamemode - Abilita Gamemode - - - + Custom frontend - + Real applet - + Never - + On Load - + Always - - CPU - CPU - - - - GPU - GPU - - - - CPU Asynchronous - CPU (Asincrono) - - - - Uncompressed (Best quality) - Nessuna compressione (qualità migliore) - - - - BC1 (Low quality) - BC1 (qualità bassa) - - - - BC3 (Medium quality) - BC3 (qualità media) - - - + Conservative - + Aggressive - - OpenGL - OpenGL + + Unsafe (fast) + - - Vulkan - Vulkan + + Safe (stable) + - - Null - Nullo - - - - GLSL - GLSL - - - - GLASM (Assembly Shaders, NVIDIA Only) - GLASM (shader assembly, solo NVIDIA) - - - - SPIR-V (Experimental, AMD/Mesa Only) - SPIR-V (SPERIMENTALE, solo AMD/MESA) - - - - Normal - Normale - - - - High - Alta - - - - Extreme - Estrema - - - - Auto - Automatico - - - - Accurate - Accurata - - - - Unsafe - Non sicura - - - - Paranoid (disables most optimizations) - Paranoica (disabilita la maggior parte delle ottimizzazioni) - - - - Dynarmic - Dynarmic - - - - NCE - NCE - - - - Borderless Windowed - Finestra senza bordi - - - - Exclusive Fullscreen - Esclusivamente a schermo intero - - - - No Video Output - Nessun output video - - - - CPU Video Decoding - Decodifica video CPU - - - - GPU Video Decoding (Default) - Decodifica video GPU (predefinita) - - - + 0.25X (180p/270p) [EXPERIMENTAL] - - 0.5X (360p/540p) [EXPERIMENTAL] - 0.5X (360p/540p) [SPERIMENTALE] - - - - 0.75X (540p/810p) [EXPERIMENTAL] - 0.75X (540p/810p) [SPERIMENTALE] - - - - 1X (720p/1080p) - 1X (720p/1080p) - - - - 1.5X (1080p/1620p) [EXPERIMENTAL] - 1.5X (1080p/1620p) [SPERIMENTALE] - - - - 2X (1440p/2160p) - 2X (1440p/2160p) - - - - 3X (2160p/3240p) - 3X (2160p/3240p) - - - - 4X (2880p/4320p) - 4X (2880p/4320p) - - - - 5X (3600p/5400p) - 5X (3600p/5400p) - - - - 6X (4320p/6480p) - 6X (4320p/6480p) - - - - 7X (5040p/7560p) - 7X (5040p/7560p) - - - - 8X (5760p/8640p) - 8X (5760p/8640p) - - - - Nearest Neighbor - Nearest neighbor - - - - Bilinear - Bilineare - - - - Bicubic - Bicubico - - - - Gaussian - Gaussiano - - - - ScaleForce - ScaleForce - - - - AMD FidelityFX™️ Super Resolution - AMD FidelityFX™️ Super Resolution - - - + Area - - None - Nessuna - - - - FXAA - FXAA - - - - SMAA - SMAA - - - - Default (16:9) - Predefinito (16:9) - - - - Force 4:3 - Forza 4:3 - - - - Force 21:9 - Forza 21:9 - - - - Force 16:10 - Forza 16:10 - - - - Stretch to Window - Allunga a finestra - - - - Automatic - Automatico - - - - Default - Predefinito - - - + 2x 2x - + 4x 4x - + 8x 8x - + 16x 16x - + Japanese (日本語) Giapponese (日本語) - + American English Inglese americano - + French (français) Francese (français) - + German (Deutsch) Tedesco (Deutsch) - + Italian (italiano) Italiano - + Spanish (español) Spagnolo (español) - + Chinese Cinese - + Korean (한국어) Coreano (한국어) - + Dutch (Nederlands) Olandese (Nederlands) - + Portuguese (português) Portoghese (português) - + Russian (Русский) Russo (Русский) - + Taiwanese Taiwanese - + British English Inglese britannico - + Canadian French Francese canadese - + Latin American Spanish Spagnolo latino-americano - + Simplified Chinese Cinese semplificato - + Traditional Chinese (正體中文) Cinese tradizionale (正體中文) - + Brazilian Portuguese (português do Brasil) Portoghese brasiliano (português do Brasil) - - + + Serbian (српски) + + + + + Japan Giappone - + USA USA - + Europe Europa - + Australia Australia - + China Cina - + Korea Corea - + Taiwan Taiwan - + Auto (%1) Auto select time zone Automatico (%1) - + Default (%1) Default time zone Predefinito (%1) - + CET CET - + CST6CDT CST6CDT - + Cuba Cuba - + EET EET - + Egypt Egitto - + Eire Eire - + EST EST - + EST5EDT EST5EDT - + GB GB - + GB-Eire GB-Eire - + GMT GMT - + GMT+0 GMT+0 - + GMT-0 GMT-0 - + GMT0 GMT0 - + Greenwich Greenwich - + Hongkong Hongkong - + HST HST - + Iceland Islanda - + Iran Iran - + Israel Israele - + Jamaica Giamaica - + Kwajalein Kwajalein - + Libya Libia - + MET MET - + MST MST - + MST7MDT MST7MDT - + Navajo Navajo - + NZ NZ - + NZ-CHAT NZ-CHAT - + Poland Polonia - + Portugal Portogallo - + PRC PRC - + PST8PDT PST8PDT - + ROC ROC - + ROK ROK - + Singapore Singapore - + Turkey Turchia - + UCT UCT - + Universal Universale - + UTC UTC - + W-SU W-SU - + WET WET - + Zulu Zulu - + Mono Mono - + Stereo Stereo - + Surround Surround - + 4GB DRAM (Default) 4GB DRAM (Predefinito) - + 6GB DRAM (Unsafe) 6GB DRAM (Non sicuro) - + 8GB DRAM - + 10GB DRAM (Unsafe) - + 12GB DRAM (Unsafe) - + Low (128) - + Medium (256) - + High (512) @@ -1892,37 +1989,37 @@ When a guest attempts to open the controller applet, it is immediately closed.8GB DRAM (Non sicuro) - + Docked Dock - + Handheld Portatile - + Boost (1700MHz) - + Fast (2000MHz) - + Always ask (Default) Chiedi sempre (Predefinito) - + Only if game specifies not to stop Solo se il gioco richiede di non essere arrestato - + Never ask Non chiedere mai @@ -2275,27 +2372,27 @@ When a guest attempts to open the controller applet, it is immediately closed.Logging - + Open Log Location Apri cartella dei log - + Global Log Filter Filtro log globale - + When checked, the max size of the log increases from 100 MB to 1 GB Quando l'opzione è selezionata, la dimensione massima del log aumenterà da 100 MB a 1 GB - + Enable Extended Logging** Abilita il log esteso** - + Show Log in Console Mostra i log nella console @@ -2441,7 +2538,7 @@ When a guest attempts to open the controller applet, it is immediately closed. - **This will be reset automatically when eden closes. + **This will be reset automatically when Eden closes. @@ -2503,7 +2600,7 @@ When a guest attempts to open the controller applet, it is immediately closed.**L'opzione verrà automaticamente ripristinata alla chiusura di yuzu. - + Web applet not compiled Applet web non compilato @@ -2553,7 +2650,7 @@ When a guest attempts to open the controller applet, it is immediately closed. - eden Configuration + Eden Configuration @@ -2562,88 +2659,88 @@ When a guest attempts to open the controller applet, it is immediately closed.Alcune impostazioni sono disponibili soltanto quando un gioco non è in esecuzione. - + Applets - - + + Audio Audio - - + + CPU CPU - + Debug Debug - + Filesystem Filesystem - - + + General Generale - - + + Graphics Grafica - + GraphicsAdvanced Grafica avanzata - + GraphicsExtensions - + Hotkeys Scorciatoie - - + + Controls Comandi - + Profiles Profili - + Network Rete - - + + System Sistema - + Game List Lista dei giochi - + Web Web @@ -2741,51 +2838,45 @@ When a guest attempts to open the controller applet, it is immediately closed. - - - Reset Metadata Cache Elimina cache dei metadati - + Select Emulated NAND Directory... Seleziona la cartella della NAND emulata... - + Select Emulated SD Directory... Seleziona la cartella della scheda SD emulata... - + Select Gamecard Path... Seleziona il percorso della cartuccia di gioco... - + Select Dump Directory... Seleziona la cartella di estrazione... - + Select Mod Load Directory... Seleziona la cartella per il caricamento delle mod... - The metadata cache is already empty. - La cache dei metadati è già vuota. + La cache dei metadati è già vuota. - The operation completed successfully. - L'operazione è stata completata con successo. + L'operazione è stata completata con successo. - The metadata cache couldn't be deleted. It might be in use or non-existent. - Impossibile eliminare la cache dei metadati. Potrebbe essere in uso o inesistente. + Impossibile eliminare la cache dei metadati. Potrebbe essere in uso o inesistente. @@ -2816,12 +2907,12 @@ When a guest attempts to open the controller applet, it is immediately closed.yuzu - - eden + + Eden - + This reset all settings and remove all per-game configurations. This will not delete game directories, profiles, or input profiles. Proceed? Tutte le impostazioni verranno ripristinate e tutte le configurazioni dei giochi verranno rimosse. Le cartelle di gioco, i profili e i profili di input non saranno cancellati. Vuoi procedere? @@ -2854,33 +2945,33 @@ When a guest attempts to open the controller applet, it is immediately closed.Colore dello sfondo: - + % FSR sharpening percentage (e.g. 50%) % - + Off Disattivato - + VSync Off VSync disattivato - + Recommended Consigliata - + On Attivato - + VSync On VSync attivato @@ -2917,14 +3008,18 @@ When a guest attempts to open the controller applet, it is immediately closed. - Vulkan Extension Settings + Vulkan Extensions Settings - - While it's recommended to use state 3, some games may perform better on lower states. Setting to 0 (disabled) may also break games. -If your GPU is older (i.e. RX570/580 or older), it may not support these features. If this is the case, set the slider to 0 and uncheck all boxes. -These settings are experimental, and may cause black screens. If your games fail to boot or are stuck on a black screen, change these settings around. + + % + Sample Shading percentage (e.g. 50%) + % + + + + Extended Dynamic State is disabled on macOS due to MoltenVK compatibility issues that cause black screens. @@ -2956,75 +3051,75 @@ These settings are experimental, and may cause black screens. If your games fail Ripristina predefinite - + Action Azione - + Hotkey Scorciatoia - + Controller Hotkey Scorciatoia del controller - - - + + + 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 - + [waiting] [in attesa] - + Invalid Non valido - + Invalid hotkey settings Impostazioni delle scorciatoie non valide - + An error occurred. Please report this issue on github. Errore durante la configurazione. Segnala quest'errore alla pagina Github di Yuzu. - + Restore Default Ripristina predefinita - + Clear Cancella - + Conflicting Button Sequence Sequenza di pulsanti in conflitto - + The default button sequence is already assigned to: %1 La sequenza di pulsanti predefinita è già assegnata a: %1 - + The default key sequence is already assigned to: %1 La sequenza di tasti predefinita è già assegnata a: %1 @@ -3344,7 +3439,7 @@ These settings are experimental, and may cause black screens. If your games fail - Requires restarting eden + Requires restarting Eden @@ -3499,7 +3594,7 @@ These settings are experimental, and may cause black screens. If your games fail - + Left Stick Levetta sinistra @@ -3609,14 +3704,14 @@ These settings are experimental, and may cause black screens. If your games fail - + L L - + ZL ZL @@ -3635,7 +3730,7 @@ These settings are experimental, and may cause black screens. If your games fail - + Plus Più @@ -3648,15 +3743,15 @@ These settings are experimental, and may cause black screens. If your games fail - - + + R R - + ZR ZR @@ -3701,7 +3796,7 @@ These settings are experimental, and may cause black screens. If your games fail - + Right Stick Levetta destra @@ -3716,242 +3811,242 @@ These settings are experimental, and may cause black screens. If your games fail Configura - - - - + + + + Clear Cancella - - - - - + + + + + [not set] [non impost.] - - - + + + Invert button Inverti pulsante - - + + Toggle button Premi il pulsante - + Turbo button Modalità Turbo - - + + Invert axis Inverti asse - - - + + + Set threshold Imposta soglia - - + + Choose a value between 0% and 100% Scegli un valore compreso tra 0% e 100% - + Toggle axis Cancella asse - + Set gyro threshold Imposta soglia del giroscopio - + Calibrate sensor Calibra sensore - + Map Analog Stick Mappa la levetta analogica - + After pressing OK, first move your joystick horizontally, and then vertically. To invert the axes, first move your joystick vertically, and then horizontally. Dopo aver premuto OK, prima muovi la levetta orizzontalmente, e poi verticalmente. Per invertire gli assi, prima muovi la levetta verticalmente, e poi orizzontalmente. - + Center axis Centra asse - - + + Deadzone: %1% Zona morta: %1% - - + + Modifier Range: %1% Modifica raggio: %1% - - + + Pro Controller Pro Controller - + Dual Joycons Due Joycon - + Left Joycon Joycon sinistro - + Right Joycon Joycon destro - + Handheld Portatile - + GameCube Controller Controller GameCube - + Poke Ball Plus Poké Ball Plus - + NES Controller Controller NES - + SNES Controller Controller SNES - + N64 Controller Controller N64 - + Sega Genesis Sega Genesis - + Start / Pause Avvia / Metti in pausa - + Z Z - + Control Stick Levetta di Controllo - + C-Stick Levetta C - + Shake! Scuoti! - + [waiting] [in attesa] - + New Profile Nuovo profilo - + Enter a profile name: Inserisci un nome profilo: - - + + Create Input Profile Crea un profilo di input - + The given profile name is not valid! Il nome profilo inserito non è valido! - + Failed to create the input profile "%1" Impossibile creare il profilo di input "%1" - + Delete Input Profile Elimina un profilo di input - + Failed to delete the input profile "%1" Impossibile eliminare il profilo di input "%1" - + Load Input Profile Carica un profilo di input - + Failed to load the input profile "%1" Impossibile caricare il profilo di input "%1" - + Save Input Profile Salva un profilo di Input - + Failed to save the input profile "%1" Impossibile creare il profilo di input "%1" @@ -4008,7 +4103,7 @@ Per invertire gli assi, prima muovi la levetta verticalmente, e poi orizzontalme - + Configure Configura @@ -4044,7 +4139,7 @@ Per invertire gli assi, prima muovi la levetta verticalmente, e poi orizzontalme - + Test Test @@ -4063,7 +4158,7 @@ Per invertire gli assi, prima muovi la levetta verticalmente, e poi orizzontalme <a href='https://yuzu-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> - + %1:%2 %1:%2 @@ -4072,77 +4167,77 @@ Per invertire gli assi, prima muovi la levetta verticalmente, e poi orizzontalme yuzu - + <a href='https://eden-emulator.github.io/wiki/using-a-controller-or-android-phone-for-motion-or-touch-input'><span style="text-decoration: underline; color:#039be5;">Learn More</span></a> - + Port number has invalid characters Il numero di porta contiene caratteri non validi - - - - - - - eden + + + + + + + Eden - + Port has to be in range 0 and 65353 La valore della porta deve essere compreso tra 0 e 65353 inclusi - + IP address is not valid Indirizzo IP non valido - + This UDP server already exists Questo server UDP esiste già - + Unable to add more than 8 servers Impossibile aggiungere più di 8 server - + Testing Testando - + Configuring Configurando - + Test Successful Test riuscito - + Successfully received data from the server. Ricevuti con successo dati 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 dati validi dal server.<br> Verificare che il server sia impostato correttamente e che indirizzo e porta siano corretti. - + UDP Test or calibration configuration is in progress.<br>Please wait for them to finish. È in corso il test UDP o la configurazione della calibrazione,<br> attendere che finiscano. @@ -4273,7 +4368,12 @@ Per attivarlo, disattiva il mouse emulato. Interfaccia di rete - + + Enable Airplane Mode + + + + None Nessuna @@ -4331,52 +4431,52 @@ Per attivarlo, disattiva il mouse emulato. Alcune impostazioni sono disponibili soltanto quando un gioco non è in esecuzione. - + Add-Ons Add-on - + System Sistema - + CPU CPU - + Graphics Grafica - + Adv. Graphics Grafica (Avanzate) - + GPU Extensions - + Audio Audio - + Input Profiles Profili di input - + Linux Linux - + Properties Proprietà @@ -4394,12 +4494,12 @@ Per attivarlo, disattiva il mouse emulato. Add-on - + Patch Name Nome della patch - + Version Versione @@ -4437,27 +4537,32 @@ Per attivarlo, disattiva il mouse emulato. Imposta immagine - + + Select Avatar + + + + Add Aggiungi - + Rename Rinomina - + Remove Rimuovi - + Profile management is available only when game is not running. La gestione dei profili è disponibile solamente quando il gioco non è in esecuzione. - + %1 %2 %1 is the profile username, %2 is the formatted UUID (e.g. 00112233-4455-6677-8899-AABBCCDDEEFF)) @@ -4465,100 +4570,189 @@ Per attivarlo, disattiva il mouse emulato. %2 - + Enter Username Inserisci il nome utente - + Users Utenti - + Enter a username for the new user: Inserisci un nome utente per il nuovo utente: - + Enter a new username: Inserisci un nuovo nome utente: - + + Error saving user image + + + + + Unable to save image to file + + + + Select User Image Seleziona immagine utente - - JPEG Images (*.jpg *.jpeg) - Immagini JPEG (*.jpg *.jpeg) + + Image Formats (*.jpg *.jpeg *.png *.bmp) + - + + No firmware available + Nessun firmware disponibile + + + + Please install the firmware to use firmware avatars. + + + + + + Error loading archive + + + + + Archive is not available. Please install/reinstall firmware. + + + + + Archive does not contain romfs. It is probably corrupt. + + + + + Error extracting archive + + + + + Archive could not be extracted. It is probably corrupt. + + + + + Error finding image directory + + + + + Failed to find image directory in the archive. + + + + + No images found + + + + + No avatar images were found in the archive. + + + + JPEG Images (*.jpg *.jpeg) + Immagini JPEG (*.jpg *.jpeg) + + + Error deleting image Impossibile eliminare l'immagine - + Error occurred attempting to overwrite previous image at: %1. Impossibile sovrascrivere l'immagine precedente in: %1. - + Error deleting file Impossibile eliminare il file - + Unable to delete existing file: %1. Impossibile eliminare il file già esistente: %1. - + Error creating user image directory Impossibile creare la cartella delle immagini dell'utente - + Unable to create directory %1 for storing user images. Impossibile creare la cartella %1 per archiviare le immagini dell'utente. - Error copying user image - Impossibile copiare l'immagine utente + Impossibile copiare l'immagine utente - Unable to copy image from %1 to %2 - Impossibile copiare l'immagine da %1 a %2 + Impossibile copiare l'immagine da %1 a %2 - Error resizing user image - Impossibile ridimensionare l'immagine utente + Impossibile ridimensionare l'immagine utente - Unable to resize image - Impossibile ridimensionare l'immagine + Impossibile ridimensionare l'immagine + + + + ConfigureProfileManagerAvatarDialog + + + Select + + + + + Cancel + Annulla + + + + Background Color + + + + + Select Firmware Avatar + ConfigureProfileManagerDeleteDialog - + Delete this user? All of the user's save data will be deleted. Eliminare questo utente? Tutti i suoi dati di salvataggio verranno rimossi. - + Confirm Delete Conferma eliminazione - + Name: %1 UUID: %2 Nome: %1 @@ -4611,7 +4805,7 @@ UUID: %2 - + Enable Abilita @@ -4622,7 +4816,7 @@ UUID: %2 - + Not connected Non connesso @@ -4632,63 +4826,63 @@ UUID: %2 Ripristina valori predefiniti - + Clear Cancella - + [not set] [non impost.] - + Invert axis Inverti asse - - + + Deadzone: %1% Zona morta: %1% - + Error enabling ring input Impossibile abilitare il Ring-Con - + Direct Joycon driver is not enabled Il driver Joycon diretto non è abilitato - + Configuring Configurando - + The current mapped device doesn't support the ring controller L'attuale dispositivo mappato non supporta il Ring-Con - + The current mapped device doesn't have a ring attached L'attuale dispositivo mappato non è collegato a un Ring-Con - + The current mapped device is not connected L'attuale dispositivo mappato non è connesso. - + Unexpected driver result %1 Risultato imprevisto del driver: %1 - + [waiting] [in attesa] @@ -4730,7 +4924,7 @@ UUID: %2 - <html><head/><body><p>Reads controller input from scripts in the same format as TAS-nx scripts.<br/>For a more detailed explanation, please consult the <a href="https://eden-emulator.github.io/help/feature/tas/"><span style=" text-decoration: underline; color:#039be5;">help page</span></a> on the eden website.</p></body></html> + <html><head/><body><p>Reads controller input from scripts in the same format as TAS-nx scripts.<br/>For a more detailed explanation, please consult the <a href="https://eden-emulator.github.io/help/feature/tas/"><span style=" text-decoration: underline; color:#039be5;">help page</span></a> on the Eden website.</p></body></html> @@ -4782,12 +4976,12 @@ UUID: %2 ConfigureTasDialog - + TAS Configuration Configurazione TAS - + Select TAS Load Directory... Seleziona la cartella di caricamento TAS... @@ -4897,7 +5091,7 @@ Trascina i punti per cambiare posizione, oppure clicca due volte la cella in tab - Warning: The settings in this page affect the inner workings of eden's emulated touchscreen. Changing them may result in undesirable behavior, such as the touchscreen partially or not working. You should only use this page if you know what you are doing. + Warning: The settings in this page affect the inner workings of Eden's emulated touchscreen. Changing them may result in undesirable behavior, such as the touchscreen partially or not working. You should only use this page if you know what you are doing. @@ -5217,6 +5411,16 @@ Trascina i punti per cambiare posizione, oppure clicca due volte la cella in tab Web Web + + + Eden Web Service + + + + + Generate + + yuzu Web Service Servizio web di yuzu @@ -5226,42 +5430,29 @@ Trascina i punti per cambiare posizione, oppure clicca due volte la cella in tab Fornendo i tuoi nome utente e token, permetti a yuzu di raccogliere dati di utilizzo aggiuntivi, che potrebbero contenere informazioni identificative dell'utente. - - eden Web Service - - - - - By providing your username and token, you agree to allow eden to collect additional usage data, which may include user identifying information. - - - - Verify - Verifica + Verifica - Sign up - Registrati + Registrati - + Token: Token: - + Username: Nome utente: - What is my token? - Qual è il mio 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. @@ -5286,12 +5477,12 @@ Trascina i punti per cambiare posizione, oppure clicca due volte la cella in tab Rigenera - + Discord Presence Discord Presence - + Show Current Game in your Discord Status Mostra il gioco in uso nel tuo stato di Discord @@ -5300,24 +5491,8 @@ Trascina i punti per cambiare posizione, oppure clicca due volte la cella in tab <a href='https://yuzu-emu.org/help/feature/telemetry/'><span style="text-decoration: underline; color:#039be5;">Per saperne di più</span></a> - <a href='https://profile.yuzu-emu.org/'><span style="text-decoration: underline; color:#039be5;">Sign up</span></a> - <a href='https://profile.yuzu-emu.org/'><span style="text-decoration: underline; color:#039be5;">Registrati</span></a> - - - - <a href='https://evilperson1337.notion.site/Hosting-a-Room-Inside-of-Eden-20457c2edaf680108abac6215a79acdb'><span style="text-decoration: underline; color:#039be5;">What is my token?</span></a> - - - - - Warning - - - - - Verification is currently nonfunctional, instead generate a random 48-character string with only lowercase a-z. - + <a href='https://profile.yuzu-emu.org/'><span style="text-decoration: underline; color:#039be5;">Registrati</span></a> <a href='https://yuzu-emu.org/wiki/yuzu-web-service/'><span style="text-decoration: underline; color:#039be5;">What is my token?</span></a> @@ -5340,10 +5515,9 @@ Trascina i punti per cambiare posizione, oppure clicca due volte la cella in tab Il token non è stato verificato. La modifica al token non è stata salvata. - Unverified, please click Verify before saving configuration Tooltip - Non verificato, clicca su "Verifica" prima di salvare la configurazione + Non verificato, clicca su "Verifica" prima di salvare la configurazione Verifying... @@ -5367,20 +5541,67 @@ Trascina i punti per cambiare posizione, oppure clicca due volte la cella in tab 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. + + + + All Good + Tooltip + + + + + Must be between 4-20 characters + Tooltip + + + + + Must be 48 characters, and lowercase a-z + Tooltip + + ControllerDialog - + Controller P1 Controller G1 - + &Controller P1 &Controller G1 + + DepsDialog + + + Eden Dependencies + + + + + <html><head/><body><p><span style=" font-size:28pt;">Eden Dependencies</span></p></body></html> + + + + + <html><head/><body><p>The projects that make Eden possible</p></body></html> + + + + + Dependency + + + + + Version + Versione + + DirectConnect @@ -5486,7 +5707,12 @@ Trascina i punti per cambiare posizione, oppure clicca due volte la cella in tab - Creating a room failed. Please retry. Restarting eden might be necessary. + Creating a room failed. Please retry. Restarting Eden might be necessary. + + + + + Version mismatch! Please update to the latest version of Eden. If the problem persists, contact the room host and ask them to update the server. @@ -5494,11 +5720,6 @@ Trascina i punti per cambiare posizione, oppure clicca due volte la cella in tab 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. Chiedi all'host di revocare il ban o trova un'altra stanza. - - - Version mismatch! Please update to the latest version of eden. If the problem persists, contact the room host and ask them to update the server. - - Incorrect password. @@ -5560,7 +5781,7 @@ Vai su Configura -> Sistema -> Rete e selezionane una. Telemetria - + Broken Vulkan Installation Detected Rilevata installazione di Vulkan non funzionante @@ -5569,24 +5790,24 @@ Vai su Configura -> Sistema -> Rete e selezionane una. L'inizializzazione di Vulkan è fallita durante l'avvio.<br><br>Clicca <a href='https://yuzu-emu.org/wiki/faq/#yuzu-starts-with-the-error-broken-vulkan-installation-detected'>qui per istruzioni su come risolvere il problema</a>. - + Running a game TRANSLATORS: This string is shown to the user to explain why yuzu needs to prevent the computer from sleeping Gioco in esecuzione - + Loading Web Applet... Caricamento dell'applet web... - - + + Disable Web Applet Disabilita l'applet web - + Disabling the web applet can lead to undefined behavior and should only be used with Super Mario 3D All-Stars. Are you sure you want to disable the web applet? (This can be re-enabled in the Debug settings.) Disabilitare l'applet web potrebbe causare dei comportamenti indesiderati. @@ -5594,82 +5815,81 @@ Da usare solo con Super Mario 3D All-Stars. Sei sicuro di voler procedere? (Puoi riabilitarlo quando vuoi nelle impostazioni di Debug.) - + The amount of shaders currently being built Il numero di shader in fase di compilazione - + The current selected resolution scaling multiplier. Il moltiplicatore corrente dello scaling della risoluzione. - + Current emulation speed. Values higher or lower than 100% indicate emulation is running faster or slower than a Switch. Velocità corrente dell'emulazione. Valori più alti o più bassi di 100% indicano che l'emulazione sta funzionando più velocemente o lentamente rispetto a una Switch. - + 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 Switch 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 della Switch, 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. - + Unmute Riattiva - + Mute Silenzia - + Reset Volume Reimposta volume - + &Clear Recent Files &Cancella i file recenti - + &Continue &Continua - + &Pause &Pausa - Warning Outdated Game Format - Formato del gioco obsoleto + Formato del gioco obsoleto You are using the deconstructed ROM directory format for this game, which is an outdated format that has been superseded by others such as NCA, NAX, XCI, or NSP. Deconstructed ROM directories lack icons, metadata, and update support.<br><br>For an explanation of the various Switch formats yuzu supports, <a href='https://yuzu-emu.org/wiki/overview-of-switch-game-formats'>check out our wiki</a>. This message will not be shown again. Stai usando una cartella contenente una ROM decostruita per avviare questo gioco, che è un formato obsoleto e sostituito da NCA, NAX, XCI o NSP. Le ROM decostruite non hanno icone, metadati e non supportano gli aggiornamenti. <br><br>Per una spiegazione sui vari formati della Switch supportati da yuzu, <a href='https://yuzu-emu.org/wiki/overview-of-switch-game-formats'>consulta la nostra wiki (in inglese)</a>. Non riceverai di nuovo questo avviso. - - + + Error while loading ROM! Errore nel caricamento della ROM! - + The ROM format is not supported. Il formato della ROM non è supportato. - + An error occurred initializing the video core. È stato riscontrato un errore nell'inizializzazione del core video. @@ -5679,7 +5899,7 @@ Da usare solo con Super Mario 3D All-Stars. Sei sicuro di voler procedere? Consulta il log per maggiori dettagli. Se hai bisogno di aiuto per accedere ai log, consulta questa pagina (in inglese): <a href='https://yuzu-emu.org/help/reference/log-files/'>Come caricare i file di log</a>. - + Error while loading ROM! %1 %1 signifies a numeric error code. Errore nel caricamento della ROM! %1 @@ -5690,473 +5910,405 @@ Consulta il log per maggiori dettagli. Se hai bisogno di aiuto per accedere ai l %1<br>Segui <a href='https://yuzu-emu.org/help/quickstart/'>la guida introduttiva di yuzu</a> per rifare il dump dei file.<br>Puoi dare un occhiata alla wiki di yuzu (in inglese)</a> o al server Discord di yuzu</a> per assistenza. - + Vulkan initialization failed during boot.<br><br>Click <a href='https://eden-emulator.github.io/wiki/faq/#yuzu-starts-with-the-error-broken-vulkan-installation-detected'>here for instructions to fix the issue</a>. - - Game Updates Warning - - - - - The game you are trying to launch is known to have performance or booting issues when updates are applied. Please try increasing the memory layout to 6GB or 8GB if any issues occur.<br><br>Press "OK" to continue launching, or "Cancel" to cancel the launch. - - - - - Don't show again for this game - - - - - You are using the deconstructed ROM directory format for this game, which is an outdated format that has been superseded by others such as NCA, NAX, XCI, or NSP. Deconstructed ROM directories lack icons, metadata, and update support.<br><br>For an explanation of the various Switch formats eden supports, <a href='https://eden-emulator.github.io/wiki/overview-of-switch-game-formats'>check out our wiki</a>. This message will not be shown again. - - - - - eden has encountered an error while running the video core. This is usually caused by outdated GPU drivers, including integrated ones. Please see the log for more details. For more information on accessing the log, please see the following page: <a href='https://eden-emulator.github.io/help/reference/log-files/'>How to Upload the Log File</a>. - - - - - %1<br>Please redump your files or ask on Discord for help. - %1 signifies an error string. - - - - + An unknown error occurred. Please see the log for more details. Si è verificato un errore sconosciuto. Visualizza il log per maggiori dettagli. - + (64-bit) (64-bit) - + (32-bit) (32-bit) - + %1 %2 %1 is the title name. %2 indicates if the title is 64-bit or 32-bit %1 %2 - + Closing software... Chiusura del software in corso... - + Save Data Dati di salvataggio - + Mod Data Dati delle mod - + Error Opening %1 Folder Impossibile aprire la cartella %1 - - + + Folder does not exist! La cartella non esiste! - Error Opening Transferable Shader Cache - Impossibile aprire la cache trasferibile degli shader + Impossibile aprire la cache trasferibile degli shader - Failed to create the shader cache directory for this title. - Impossibile creare la cartella della cache degli shader per questo titolo. + Impossibile creare la cartella della cache degli shader per questo titolo. - Error Removing Contents - Impossibile rimuovere il contentuto + Impossibile rimuovere il contentuto - Error Removing Update - Impossibile rimuovere l'aggiornamento + Impossibile rimuovere l'aggiornamento - Error Removing DLC - Impossibile rimuovere il DLC + Impossibile rimuovere il DLC - + Remove Installed Game Contents? Rimuovere il contenuto del gioco installato? - + Remove Installed Game Update? Rimuovere l'aggiornamento installato? - + Remove Installed Game DLC? Rimuovere il DLC installato? - + Remove Entry Rimuovi voce - - - - - - Successfully Removed - Rimozione completata + Rimozione completata - Successfully removed the installed base game. - Il gioco base installato è stato rimosso con successo. + Il gioco base installato è stato rimosso con successo. - The base game is not installed in the NAND and cannot be removed. - Il gioco base non è installato su NAND e non può essere rimosso. + Il gioco base non è installato su NAND e non può essere rimosso. - Successfully removed the installed update. - Aggiornamento rimosso con successo. + Aggiornamento rimosso con successo. - There is no update installed for this title. - Non c'è alcun aggiornamento installato per questo gioco. + Non c'è alcun aggiornamento installato per questo gioco. - There are no DLC installed for this title. - Non c'è alcun DLC installato per questo gioco. + Non c'è alcun DLC installato per questo gioco. - Successfully removed %1 installed DLC. - %1 DLC rimossi con successo. + %1 DLC rimossi con successo. - + Delete OpenGL Transferable Shader Cache? Vuoi rimuovere la cache trasferibile degli shader OpenGL? - + Delete Vulkan Transferable Shader Cache? Vuoi rimuovere la cache trasferibile degli shader Vulkan? - + Delete All Transferable Shader Caches? Vuoi rimuovere tutte le cache trasferibili degli shader? - + Remove Custom Game Configuration? Rimuovere la configurazione personalizzata del gioco? - + Remove Cache Storage? Rimuovere la Storage Cache? - + Remove File Rimuovi file - + Remove Play Time Data Reimposta il tempo di gioco - + Reset play time? Vuoi reimpostare il tempo di gioco? - - Error Removing Transferable Shader Cache - Impossibile rimuovere la cache trasferibile degli shader + Impossibile rimuovere la cache trasferibile degli shader - - A shader cache for this title does not exist. - Per questo titolo non esiste una cache degli shader. + Per questo titolo non esiste una cache degli shader. - Successfully removed the transferable shader cache. - La cache trasferibile degli shader è stata rimossa con successo. + La cache trasferibile degli shader è stata rimossa con successo. - Failed to remove the transferable shader cache. - Impossibile rimuovere la cache trasferibile degli shader. + Impossibile rimuovere la cache trasferibile degli shader. - Error Removing Vulkan Driver Pipeline Cache - Impossibile rimuovere la cache delle pipeline del driver Vulkan + Impossibile rimuovere la cache delle pipeline del driver Vulkan - Failed to remove the driver pipeline cache. - Impossibile rimuovere la cache delle pipeline del driver. + Impossibile rimuovere la cache delle pipeline del driver. - - Error Removing Transferable Shader Caches - Impossibile rimuovere le cache trasferibili degli shader + Impossibile rimuovere le cache trasferibili degli shader - Successfully removed the transferable shader caches. - Le cache trasferibili degli shader sono state rimosse con successo. + Le cache trasferibili degli shader sono state rimosse con successo. - Failed to remove the transferable shader cache directory. - Impossibile rimuovere la cartella della cache trasferibile degli shader. + Impossibile rimuovere la cartella della cache trasferibile degli shader. - - Error Removing Custom Configuration - Impossibile rimuovere la configurazione personalizzata + Impossibile rimuovere la configurazione personalizzata - A custom configuration for this title does not exist. - Non esiste una configurazione personalizzata per questo gioco. + Non esiste una configurazione personalizzata per questo gioco. - Successfully removed the custom game configuration. - La configurazione personalizzata del gioco è stata rimossa con successo. + La configurazione personalizzata del gioco è stata rimossa con successo. - Failed to remove the custom game configuration. - Impossibile rimuovere la configurazione personalizzata del gioco. + Impossibile rimuovere la configurazione personalizzata del gioco. - - + + RomFS Extraction Failed! Estrazione RomFS fallita! - + There was an error copying the RomFS files or the user cancelled the operation. C'è stato un errore nella copia dei file del RomFS o l'operazione è stata annullata dall'utente. - + Full Completa - + Skeleton Cartelle - + Select RomFS Dump Mode Seleziona la modalità di estrazione della RomFS - + Please select the how you would like the RomFS dumped.<br>Full will copy all of the files into the new directory while <br>skeleton will only create the directory structure. Seleziona come vorresti estrarre la RomFS. <br>La modalità Completa copierà tutti i file in una nuova cartella mentre<br>la modalità Cartelle creerà solamente le cartelle e le sottocartelle. - + There is not enough free space at %1 to extract the RomFS. Please free up space or select a different dump directory at Emulation > Configure > System > Filesystem > Dump Root Non c'è abbastanza spazio disponibile nel disco %1 per estrarre la RomFS. Libera lo spazio o seleziona una cartella di estrazione diversa in Emulazione > Configura > Sistema > File system > Cartella di estrazione - + Extracting RomFS... Estrazione RomFS in corso... - - - - - + + Cancel Annulla - + RomFS Extraction Succeeded! Estrazione RomFS riuscita! - - - + The operation completed successfully. L'operazione è stata completata con successo. - Integrity verification couldn't be performed! - Impossibile verificare l'integrità dei file. + Impossibile verificare l'integrità dei file. - File contents were not checked for validity. - I contenuti di questo file non sono stati verificati. + I contenuti di questo file non sono stati verificati. - - Verifying integrity... - Verifica dell'integrità della ROM in corso... + Verifica dell'integrità della ROM in corso... - - Integrity verification succeeded! - Verifica dell'integrità completata con successo! + Verifica dell'integrità completata con successo! - - Integrity verification failed! - Verifica dell'integrità fallita! + Verifica dell'integrità fallita! - File contents may be corrupt. - I contenuti del file potrebbero essere corrotti. + I contenuti del file potrebbero essere corrotti. - - - - Create Shortcut - Crea scorciatoia + Crea scorciatoia - Do you want to launch the game in fullscreen? - Vuoi avviare il gioco a schermo intero? + Vuoi avviare il gioco a schermo intero? - Successfully created a shortcut to %1 - Scorciatoia creata con successo in %1 + Scorciatoia creata con successo in %1 - This will create a shortcut to the current AppImage. This may not work well if you update. Continue? - Verrà creata una scorciatoia all'AppImage attuale. Potrebbe non funzionare correttamente se effettui un aggiornamento. Vuoi continuare? + Verrà creata una scorciatoia all'AppImage attuale. Potrebbe non funzionare correttamente se effettui un aggiornamento. Vuoi continuare? - Failed to create a shortcut to %1 - Impossibile creare la scorciatoia in %1 + Impossibile creare la scorciatoia in %1 - Create Icon - Crea icona + Crea icona - Cannot create icon file. Path "%1" does not exist and cannot be created. - Impossibile creare il file dell'icona. Il percorso "%1" non esiste e non può essere creato. + Impossibile creare il file dell'icona. Il percorso "%1" non esiste e non può essere creato. - + + Warning: Outdated Game Format + + + + + You are using the deconstructed ROM directory format for this game, which is an outdated format that has been superseded by others such as NCA, NAX, XCI, or NSP. Deconstructed ROM directories lack icons, metadata, and update support.<br><br>For an explanation of the various Switch formats Eden supports, <a href='https://eden-emulator.github.io/wiki/overview-of-switch-game-formats'>check out our wiki</a>. This message will not be shown again. + + + + + Eden has encountered an error while running the video core. This is usually caused by outdated GPU drivers, including integrated ones. Please see the log for more details. For more information on accessing the log, please see the following page: <a href='https://yuzu-mirror.github.io/help/reference/log-files/'>How to Upload the Log File</a>. + + + + + %1<br>Please redump your files or ask on Discord/Revolt for help. + %1 signifies an error string. + + + + Error Opening %1 Impossibile aprire %1 - + Select Directory Seleziona cartella - + Properties Proprietà - + The game properties could not be loaded. Non è stato possibile caricare le proprietà del gioco. - + Switch Executable (%1);;All Files (*.*) %1 is an identifier for the Switch executable file extensions. Eseguibile Switch (%1);;Tutti i file (*.*) - + Load File Carica file - + Open Extracted ROM Directory Apri cartella ROM estratta - + Invalid Directory Selected Cartella selezionata non valida - + The directory you have selected does not contain a 'main' file. La cartella che hai selezionato non contiene un file "main". - + Installable Switch File (*.nca *.nsp *.xci);;Nintendo Content Archive (*.nca);;Nintendo Submission Package (*.nsp);;NX Cartridge Image (*.xci) File installabili Switch (*.nca *.nsp *.xci);;Nintendo Content Archive (*.nca);;Nintendo Submission Package (*.nsp);;NX Cartridge Image (*.xci) - + Install Files Installa file - + %n file(s) remaining %n file rimanente @@ -6164,25 +6316,25 @@ Consulta il log per maggiori dettagli. Se hai bisogno di aiuto per accedere ai l - + Installing file "%1"... Installazione del file "%1"... - - + + Install Results Risultati dell'installazione - + To avoid possible conflicts, we discourage users from installing base games to the NAND. Please, only use this feature to install updates and DLC. Per evitare possibli conflitti, sconsigliamo di installare i giochi base su NAND. Usa questa funzione solo per installare aggiornamenti e DLC. - + %n file(s) were newly installed @@ -6193,7 +6345,7 @@ Usa questa funzione solo per installare aggiornamenti e DLC. - + %n file(s) were overwritten @@ -6204,7 +6356,7 @@ Usa questa funzione solo per installare aggiornamenti e DLC. - + %n file(s) failed to install @@ -6215,492 +6367,468 @@ Usa questa funzione solo per installare aggiornamenti e DLC. - + System Application Applicazione di sistema - + System Archive Archivio di sistema - + System Application Update Aggiornamento di un'applicazione di sistema - + Firmware Package (Type A) Pacchetto firmware (tipo A) - + Firmware Package (Type B) Pacchetto firmware (tipo B) - + Game Gioco - + Game Update Aggiornamento di gioco - + Game DLC DLC - + Delta Title Titolo delta - + Select NCA Install Type... Seleziona il tipo di installazione NCA - + Please select the type of title you would like to install this NCA as: (In most instances, the default 'Game' is fine.) Seleziona il tipo del file NCA da installare: (Nella maggior parte dei casi, il valore predefinito 'Gioco' va bene.) - + Failed to Install Installazione fallita - + The title type you selected for the NCA is invalid. Il tipo che hai selezionato per l'NCA non è valido. - + File not found File non trovato - + File "%1" not found File "%1" non trovato - + OK OK - - + + Hardware requirements not met Requisiti hardware non soddisfatti - - + + Your system does not meet the recommended hardware requirements. Compatibility reporting has been disabled. Il tuo sistema non soddisfa i requisiti hardware consigliati. La funzionalità di segnalazione della compatibilità è stata disattivata. - + Missing yuzu Account Account di yuzu non trovato - - In order to submit a game compatibility test case, you must link your eden account.<br><br/>To link your eden account, go to Emulation &gt; Configuration &gt; Web. + + In order to submit a game compatibility test case, you must set up your web token and username.<br><br/>To link your eden account, go to Emulation &gt; Configuration &gt; Web. - - Install decryption keys and restart eden before attempting to install firmware. + + Select Dumped Firmware ZIP - - Firmware installation cancelled, firmware may be in bad state, restart eden or re-install firmware. + + Zipped Archives (*.zip) - - Encryption keys are missing. + + Firmware cleanup failed - - Are you sure you want to close eden? + + Failed to clean up extracted firmware cache. +Check write permissions in the system temp directory and try again. +OS reported error: %1 - - - - eden + + Please install firmware to use the Album applet. - - The currently running application has requested eden to not exit. + + Please install firmware to use the Cabinet applet. + + + + + Please install firmware to use the Mii editor. + + + + + Please install firmware to use the Controller Menu. + + + + + Please install firmware to use the Home Menu. + + + + + Firmware Corrupted + + + + + Firmware Too New + + + + + +Continue anyways? + + + + + Don't show again + + + + + Please install firmware to use Starter. + + + + + Are you sure you want to close Eden? + + + + + + + Eden + + + + + The currently running application has requested Eden to not exit. Would you like to bypass this and exit anyway? + + + Encryption keys are missing. + + In order to submit a game compatibility test case, you must link your yuzu account.<br><br/>To link your yuzu account, go to Emulation &gt; Configuration &gt; Web. Per segnalare la compatibilità di un gioco, devi collegare il tuo account yuzu. <br><br/>Per collegare il tuo account yuzu, vai su Emulazione &gt; Configurazione &gt; Web. - + Error opening URL Impossibile aprire l'URL - + Unable to open the URL "%1". Non è stato possibile aprire l'URL "%1". - + TAS Recording Registrazione TAS - + Overwrite file of player 1? Vuoi sovrascrivere il file del giocatore 1? - + Invalid config detected Rilevata configurazione non valida - + Handheld controller can't be used on docked mode. Pro controller will be selected. Il controller portatile non può essere utilizzato in modalità dock. Verrà selezionato il controller Pro. - - + + Amiibo Amiibo - - + + The current amiibo has been removed L'Amiibo corrente è stato rimosso - + Error Errore - - + + The current game is not looking for amiibos Il gioco in uso non è alla ricerca di Amiibo - + Amiibo File (%1);; All Files (*.*) File Amiibo (%1);; Tutti i file (*.*) - + Load Amiibo Carica Amiibo - + Error loading Amiibo data Impossibile caricare i dati dell'Amiibo - + The selected file is not a valid amiibo Il file selezionato non è un Amiibo valido - + The selected file is already on use Il file selezionato è già in uso - + An unknown error occurred Si è verificato un errore sconosciuto - - Verification failed for the following files: %1 - La verifica sui seguenti file è fallita: + La verifica sui seguenti file è fallita: %1 - + + Keys not installed - + + + Install decryption keys and restart Eden before attempting to install firmware. + + + + Select Dumped Firmware Source Location - - Installing Firmware... - - - - - - - - Firmware install failed - - - - - Unable to locate potential firmware NCA files - - - - - Failed to delete one or more firmware file. - - - - - One or more firmware files failed to copy into NAND. - - - - - Firmware integrity verification failed! - - - - - Select Dumped Keys Location - - - - - - - Decryption Keys install failed - - - - - prod.keys is a required decryption key file. - - - - - One or more keys failed to copy. - - - - - Decryption Keys install succeeded - - - - - Decryption Keys were successfully installed - - - - - Decryption Keys failed to initialize. Check that your dumping tools are up to date and re-dump keys. - - - - - - - - - - + + + + + + No firmware available Nessun firmware disponibile - Please install the firmware to use the Album applet. - Devi installare il firmware per usare l'applet dell'album. + Devi installare il firmware per usare l'applet dell'album. - + Album Applet Applet Album - + Album applet is not available. Please reinstall firmware. L'applet dell'album non è disponibile. Reinstalla il firmware. - Please install the firmware to use the Cabinet applet. - Devi installare il firmware per usare l'applet Cabinet. + Devi installare il firmware per usare l'applet Cabinet. - + Cabinet Applet Applet Cabinet - + Cabinet applet is not available. Please reinstall firmware. L'applet del Cabinet non è disponibile. Reinstalla il firmware. - Please install the firmware to use the Mii editor. - Devi installare il firmware per usare l'editor dei Mii. + Devi installare il firmware per usare l'editor dei Mii. - + Mii Edit Applet Editor dei Mii - + Mii editor is not available. Please reinstall firmware. L'editor dei Mii non è disponibile. Reinstalla il firmware. - Please install the firmware to use the Controller Menu. - Devi installare il firmware per usare il menù dei controller. + Devi installare il firmware per usare il menù dei controller. - + Controller Applet Applet controller - + Controller Menu is not available. Please reinstall firmware. Il menù dei controller non è disponibile. Reinstalla il firmware. - - Please install the firmware to use the Home Menu. - - - - - + Home Menu Applet - - + Home Menu is not available. Please reinstall firmware. - - Please install the firmware to use Starter. - - - - + Starter Applet - + Starter is not available. Please reinstall firmware. - - Please install firmware to use the home menu. - - - - + Capture Screenshot Cattura screenshot - + PNG Image (*.png) Immagine PNG (*.png) - + Update Available - + Update %1 for Eden is available. Would you like to download it? - + TAS state: Running %1/%2 Stato TAS: In esecuzione (%1/%2) - + TAS state: Recording %1 Stato TAS: Registrazione in corso (%1) - + TAS state: Idle %1/%2 Stato TAS: In attesa (%1/%2) - + TAS State: Invalid Stato TAS: Non valido - + &Stop Running &Interrompi - + &Start &Avvia - + Stop R&ecording Interrompi r&egistrazione - + R&ecord R&egistra - + Building: %n shader(s) Compilazione di %n shader @@ -6708,18 +6836,18 @@ Would you like to download it? - + Scale: %1x %1 is the resolution scaling factor Risoluzione: %1x - + Speed: %1% / %2% Velocità: %1% / %2% - + Speed: %1% Velocità: %1% @@ -6728,54 +6856,54 @@ Would you like to download it? Gioco: %1 FPS (Sbloccati) - + Game: %1 FPS Gioco: %1 FPS - + Frame: %1 ms Frame: %1 ms - + %1 %2 %1 %2 - - + + FSR FSR - + NO AA NO AA - + VOLUME: MUTE VOLUME: MUTO - + VOLUME: %1% Volume percentage (e.g. 50%) VOLUME: %1% - + Derivation Components Missing Componenti di derivazione mancanti - + Select RomFS Dump Target Seleziona Target dell'Estrazione del RomFS - + Please select which RomFS you would like to dump. Seleziona quale RomFS vorresti estrarre. @@ -6788,7 +6916,7 @@ Would you like to download it? yuzu - + Are you sure you want to stop the emulation? Any unsaved progress will be lost. Sei sicuro di voler arrestare l'emulazione? Tutti i progressi non salvati verranno perduti. @@ -6801,102 +6929,102 @@ Would you like to bypass this and exit anyway? Vuoi forzare l'arresto? - + None Nessuna - + FXAA FXAA - + SMAA SMAA - + Nearest Nearest - + Bilinear Bilineare - + Bicubic Bicubico - + Gaussian Gaussiano - + ScaleForce ScaleForce - + Area - + Docked Dock - + Handheld Portatile - + Normal Normale - + High Alta - + Extreme Estrema - + Vulkan Vulkan - + OpenGL OpenGL - + Null Nullo - + GLSL GLSL - + GLASM GLASM - + SPIRV SPIRV @@ -6904,13 +7032,13 @@ Vuoi forzare l'arresto? GRenderWindow - - + + OpenGL not available! OpenGL non disponibile! - + OpenGL shared contexts are not supported. Gli shared context di OpenGL non sono supportati. @@ -6919,33 +7047,33 @@ Vuoi forzare l'arresto? yuzu è stato compilato senza il supporto a OpenGL. - - eden has not been compiled with OpenGL support. + + Eden has not been compiled with OpenGL support. - - + + 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.6! Errore durante l'inizializzazione di OpenGL 4.6! - + Your GPU may not support OpenGL 4.6, or you do not have the latest graphics driver.<br><br>GL Renderer:<br>%1 La tua GPU potrebbe non supportare OpenGL 4.6, o non hai installato l'ultima versione dei driver video.<br><br>Renderer GL:<br>%1 - + Your GPU may not support one or more required OpenGL extensions. Please ensure you have the latest graphics driver.<br><br>GL Renderer:<br>%1<br><br>Unsupported extensions:<br>%2 La tua GPU potrebbe non supportare una o più estensioni OpenGL richieste. Assicurati di aver installato i driver video più recenti.<br><br>Renderer GL:<br>%1<br><br>Estensioni non supportate:<br>%2 @@ -6953,128 +7081,128 @@ Vuoi forzare l'arresto? GameList - + Favorite Preferito - + Start Game Avvia gioco - + Start Game without Custom Configuration Avvia gioco senza la configurazione personalizzata - + Open Save Data Location Apri la cartella dei dati di salvataggio - + Open Mod Data Location Apri la cartella delle mod - + Open Transferable Pipeline Cache Apri la cartella della cache trasferibile delle pipeline - + Remove Rimuovi - + Remove Installed Update Rimuovi l'aggiornamento installato - + Remove All Installed DLC Rimuovi tutti i DLC installati - + Remove Custom Configuration Rimuovi la configurazione personalizzata - + Remove Play Time Data Reimposta il tempo di gioco - + Remove Cache Storage Rimuovi Storage Cache - + Remove OpenGL Pipeline Cache Rimuovi la cache delle pipeline OpenGL - + Remove Vulkan Pipeline Cache Rimuovi la cache delle pipeline Vulkan - + Remove All Pipeline Caches Rimuovi tutte le cache delle pipeline - + Remove All Installed Contents Rimuovi tutti i contenuti installati - + Dump RomFS Estrai RomFS - + Dump RomFS to SDMC Estrai RomFS su SDMC - + Verify Integrity Verifica Integrità - + Copy Title ID to Clipboard Copia il Title ID negli Appunti - + Navigate to GameDB entry Vai alla pagina di GameDB - + Create Shortcut Crea scorciatoia - + Add to Desktop Aggiungi al desktop - + Add to Applications Menu Aggiungi al menù delle applicazioni - + Configure Game @@ -7083,62 +7211,62 @@ Vuoi forzare l'arresto? Proprietà - + 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 - + Clear Cancella - + Name Nome - + Compatibility Compatibilità - + Add-ons Add-on - + File type Tipo di file - + Size Dimensione - + Play time Tempo di gioco @@ -7146,62 +7274,62 @@ Vuoi forzare l'arresto? GameListItemCompat - + Ingame In-game - + Game starts, but crashes or major glitches prevent it from being completed. Il gioco parte, ma non può essere completato a causa di arresti anomali o di glitch importanti. - + Perfect Perfetto - + Game can be played without issues. Il gioco funziona senza problemi. - + Playable Giocabile - + Game functions with minor graphical or audio glitches and is playable from start to finish. Il gioco presenta alcuni glitch audio o video minori ed è possibile giocare dall'inizio alla fine. - + Intro/Menu Intro/Menù - + Game loads, but is unable to progress past the Start Screen. Il gioco si avvia, ma è impossibile proseguire oltre la schermata iniziale. - + Won't Boot Non si avvia - + The game crashes when attempting to startup. Il gioco si blocca quando viene avviato. - + Not Tested Non testato - + The game has not yet been tested. Il gioco non è ancora stato testato. @@ -7209,7 +7337,7 @@ Vuoi forzare l'arresto? GameListPlaceholder - + Double-click to add a new folder to the game list Clicca due volte per aggiungere una nuova cartella alla lista dei giochi @@ -7217,7 +7345,7 @@ Vuoi forzare l'arresto? GameListSearchField - + %1 of %n result(s) %1 di %n risultato @@ -7225,12 +7353,12 @@ Vuoi forzare l'arresto? - + Filter: Filtro: - + Enter pattern to filter Inserisci pattern per filtrare @@ -7312,7 +7440,7 @@ Vuoi forzare l'arresto? - Failed to announce the room to the public lobby. In order to host a room publicly, you must have a valid eden account configured in Emulation -> Configure -> Web. If you do not want to publish a room in the public lobby, then select Unlisted instead. + Failed to announce the room to the public lobby. In order to host a room publicly, you must have a valid Eden 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: @@ -7326,190 +7454,190 @@ Messaggio di debug: Hotkeys - + Audio Mute/Unmute Attiva/disattiva l'audio - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Main Window Finestra principale - + Audio Volume Down Abbassa il volume dell'audio - + Audio Volume Up Alza il volume dell'audio - + Capture Screenshot Cattura screenshot - + Change Adapting Filter Cambia filtro di adattamento - + Change Docked Mode Cambia modalità console - + Change GPU Accuracy Cambia accuratezza GPU - + Configure Configura - + Configure Current Game - + Continue/Pause Emulation Continua/Metti in pausa l'emulazione - + Exit Fullscreen Esci dalla modalità schermo intero + + + Exit Eden + + Exit yuzu Esci da yuzu - - Exit eden - - - - + Fullscreen Schermo intero - + Load File Carica file - + Load/Remove Amiibo Carica/Rimuovi Amiibo - + Multiplayer Browse Public Game Lobby - + Multiplayer Create Room - + Multiplayer Direct Connect to Room - + Multiplayer Leave Room - + Multiplayer Show Current Room - + Restart Emulation Riavvia l'emulazione - + Stop Emulation Arresta l'emulazione - + TAS Record Registra TAS - + TAS Reset Reimposta TAS - + TAS Start/Stop Avvia/interrompi TAS - + Toggle Filter Bar Mostra/nascondi la barra del filtro - + Toggle Framerate Limit Attiva/disattiva il limite del framerate - + Toggle Mouse Panning Attiva/disattiva il mouse panning - + Toggle Renderdoc Capture - + Toggle Status Bar Mostra/nascondi la barra di stato @@ -7517,22 +7645,22 @@ Messaggio di debug: InstallDialog - + Please confirm these are the files you wish to install. Conferma che questi sono i file che vuoi installare. - + Installing an Update or DLC will overwrite the previously installed one. Installare un aggiornamento o un DLC sostituirà quello precedente. - + Install Installa - + Install Files to NAND Installa file su NAND @@ -7540,7 +7668,7 @@ Messaggio di debug: LimitableInputDialog - + The text can't contain any of the following characters: %1 Il testo non può contenere i seguenti caratteri: @@ -7687,152 +7815,207 @@ Messaggio di debug: File &recenti - + + Open &Eden Folders + + + + &Emulation &Emulazione - + &View &Visualizza - + &Reset Window Size &Ripristina dimensioni della finestra - + &Debugging &Debug - + Reset Window Size to &720p Ripristina le dimensioni della finestra a &720p - + Reset Window Size to 720p Ripristina le dimensioni della finestra a 720p - + Reset Window Size to &900p Ripristina le dimensioni della finestra a &900p - + Reset Window Size to 900p Ripristina le dimensioni della finestra a 900p - + Reset Window Size to &1080p Ripristina le dimensioni della finestra a &1080p - + Reset Window Size to 1080p Ripristina le dimensioni della finestra a 1080p - + &Multiplayer &Multigiocatore - + &Tools &Strumenti - + &Amiibo &Amiibo - + &TAS &TAS - + &Create Home Menu Shortcut - + &Help &Aiuto - + &Install Files to NAND... &Installa file su NAND... - + L&oad File... Carica &file... - + Load &Folder... Carica &cartella... - + E&xit &Esci - + &Pause &Pausa - + &Stop Arre&sta - + &Verify Installed Contents &Verifica i contenuti installati - - &About eden + + &Root Data Folder - - Open &eden Folder + + &NAND Folder - + + &SDMC Folder + + + + + &Mod Folder + + + + + &Log Folder + + + + + From Folder + + + + + From ZIP + + + + + &X + + + + + X (Twitter) + + + + + &Revolt + + + + + Revolt + + + + + &Eden Dependencies + + + + Open Home Menu - + &Discord - + Open &Setup - + &Desktop - + &Application Menu @@ -7841,97 +8024,97 @@ Messaggio di debug: &Informazioni su yuzu - + Single &Window Mode &Modalità finestra singola - + Con&figure... Configura... - + Ctrl+, - + Display D&ock Widget Headers Visualizza le intestazioni del dock dei widget - + Show &Filter Bar Mostra barra del &filtro - + Show &Status Bar Mostra barra di &stato - + Show Status Bar Mostra barra di stato - + &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 - + F&ullscreen Schermo intero - + &Restart &Riavvia - + Load/Remove &Amiibo... Carica/Rimuovi &Amiibo... - + &Report Compatibility &Segnala la compatibilità - + Open &Mods Page Apri la pagina delle &mod - + Open &Quickstart Guide Apri la &guida introduttiva - + &FAQ &Domande frequenti @@ -7940,77 +8123,82 @@ Messaggio di debug: Apri la cartella di yuzu - + &Capture Screenshot Cattura schermo - + Open &Album Apri l'&album - + &Set Nickname and Owner &Imposta nickname e proprietario - + &Delete Game Data &Rimuovi i dati di gioco - + &Restore Amiibo &Ripristina gli Amiibo - + &Format Amiibo &Formatta gli Amiibo - + Open &Mii Editor Apri l'&editor dei Mii - + &Configure TAS... &Configura TAS... - + Configure C&urrent Game... Configura il gioco in uso... - + &Start &Avvia - + &Reset &Reimposta - + R&ecord R&egistra - + Open &Controller Menu Apri il menù dei &controller - + Install Firmware - + + &About Eden + + + + Install Decryption Keys @@ -8018,26 +8206,36 @@ Messaggio di debug: MicroProfileDialog - &MicroProfile - MicroProfile + MicroProfile MigrationWorker - + Data was migrated successfully. - + Linking the old directory failed. You may need to re-run with administrative privileges on Windows. OS gave error: %1 - + + + +Note that your configuration and data will be shared with %1. +If this is not desirable, delete the following files: +%2 +%3 +%4 + + + + If you wish to clean up the files which were left in the old data location, you can do so by deleting the following directory: @@ -8097,37 +8295,37 @@ If you wish to clean up the files which were left in the old data location, you MultiplayerState - + Current connection status Stato connessione attuale - + Not Connected. Click here to find a room! Non connesso. Clicca qui per trovare una stanza! - + Not Connected Non connesso - + Connected Connesso - + New Messages Received Nuovi messaggi ricevuti - + 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. @@ -8319,56 +8517,56 @@ p, li { white-space: pre-wrap; } Non in gioco - + Installed SD Titles Titoli SD installati - + Installed NAND Titles Titoli NAND installati - + System Titles Titoli di sistema - + Add New Game Directory Aggiungi nuova cartella dei giochi - + Favorites Preferiti - - + + Shift Shift - - + + Ctrl Ctrl - - + + Alt Alt - - - - + + + + [not set] [non impost.] @@ -8379,14 +8577,14 @@ p, li { white-space: pre-wrap; } Hat %1 %2 - - - - - - - - + + + + + + + + Axis %1%2 Asse %1%2 @@ -8397,357 +8595,357 @@ p, li { white-space: pre-wrap; } Pulsante %1 - - - - - - + + + + + + [unknown] [sconosciuto] - - - + + + Left Sinistra - - - + + + Right Destra - - - + + + Down Giù - - - + + + Up Su - - + + Z Z - - + + R R - - + + L L - - + + A A - - + + B B - - + + X X - - + + Y Y - - + + Start Start - - + + L1 L1 - - + + L2 L2 - - + + L3 L3 - - + + R1 R1 - - + + R2 R2 - - + + R3 R3 - - + + Circle Cerchio - - + + Cross Croce - - + + Square Quadrato - - + + Triangle Triangolo - - + + Share Condividi - - + + Options Opzioni - - + + [undefined] [indefinito] - + %1%2 %1%2 - - + + [invalid] [non valido] - - + + %1%2Hat %3 %1%2Freccia %3 - - - + + + %1%2Axis %3 %1%2Asse %3 - - + + %1%2Axis %3,%4,%5 %1%2Asse %3,%4,%5 - - + + %1%2Motion %3 %1%2Movimento %3 - - + + %1%2Button %3 %1%2Pulsante %3 - - + + [unused] [inutilizzato] - + ZR ZR - + ZL ZL - + SR SR - + SL SL - + Stick L Levetta L - + Stick R Levetta R - + Plus Più - + Minus Meno - - + + Home Home - + Capture Cattura - + Touch Touch - + Wheel Indicates the mouse wheel Rotella - + Backward Indietro - + Forward Avanti - + Task Comando - + Extra Extra - + %1%2%3%4 %1%2%3%4 - - + + %1%2%3Hat %4 %1%2%3Freccia %4 - - + + %1%2%3Axis %4 %1%2%3Asse %4 - - + + %1%2%3Button %4 %1%2%3Pulsante %4 - - + + Migration - + - - + + No - + You can manually re-trigger this prompt by deleting the new config directory: %1 - + Migrating - + Migrating, this may take a while... @@ -8865,6 +9063,300 @@ p, li { white-space: pre-wrap; } Vuoi ripristinare questo Amiibo? + + QtCommon::Content + + + Installing Firmware... + + + + + + + Cancel + Annulla + + + + Firmware integrity verification failed! + + + + + + Verification failed for the following files: + +%1 + La verifica sui seguenti file è fallita: + +%1 + + + + + Verifying integrity... + Verifica dell'integrità della ROM in corso... + + + + + Integrity verification succeeded! + Verifica dell'integrità completata con successo! + + + + + The operation completed successfully. + L'operazione è stata completata con successo. + + + + + Integrity verification failed! + Verifica dell'integrità fallita! + + + + File contents may be corrupt or missing. + + + + + Integrity verification couldn't be performed + + + + + Firmware installation cancelled, firmware may be in a bad state or corrupted. File contents could not be checked for validity. + + + + + Select Dumped Keys Location + + + + + Decryption Keys install succeeded + + + + + Decryption Keys were successfully installed + + + + + Decryption Keys install failed + + + + + QtCommon::Game + + + Error Removing Contents + Impossibile rimuovere il contentuto + + + + Error Removing Update + Impossibile rimuovere l'aggiornamento + + + + Error Removing DLC + Impossibile rimuovere il DLC + + + + The base game is not installed in the NAND and cannot be removed. + Il gioco base non è installato su NAND e non può essere rimosso. + + + + There is no update installed for this title. + Non c'è alcun aggiornamento installato per questo gioco. + + + + There are no DLCs installed for this title. + + + + + + + + Successfully Removed + Rimozione completata + + + + Successfully removed %1 installed DLC. + %1 DLC rimossi con successo. + + + + + Error Removing Transferable Shader Cache + Impossibile rimuovere la cache trasferibile degli shader + + + + + A shader cache for this title does not exist. + Per questo titolo non esiste una cache degli shader. + + + + Successfully removed the transferable shader cache. + La cache trasferibile degli shader è stata rimossa con successo. + + + + Failed to remove the transferable shader cache. + Impossibile rimuovere la cache trasferibile degli shader. + + + + Error Removing Vulkan Driver Pipeline Cache + Impossibile rimuovere la cache delle pipeline del driver Vulkan + + + + Failed to remove the driver pipeline cache. + Impossibile rimuovere la cache delle pipeline del driver. + + + + + Error Removing Transferable Shader Caches + Impossibile rimuovere le cache trasferibili degli shader + + + + Successfully removed the transferable shader caches. + Le cache trasferibili degli shader sono state rimosse con successo. + + + + Failed to remove the transferable shader cache directory. + Impossibile rimuovere la cartella della cache trasferibile degli shader. + + + + + Error Removing Custom Configuration + Impossibile rimuovere la configurazione personalizzata + + + + A custom configuration for this title does not exist. + Non esiste una configurazione personalizzata per questo gioco. + + + + Successfully removed the custom game configuration. + La configurazione personalizzata del gioco è stata rimossa con successo. + + + + Failed to remove the custom game configuration. + Impossibile rimuovere la configurazione personalizzata del gioco. + + + + Reset Metadata Cache + Elimina cache dei metadati + + + + The metadata cache is already empty. + La cache dei metadati è già vuota. + + + + The operation completed successfully. + L'operazione è stata completata con successo. + + + + The metadata cache couldn't be deleted. It might be in use or non-existent. + Impossibile eliminare la cache dei metadati. Potrebbe essere in uso o inesistente. + + + + Create Shortcut + Crea scorciatoia + + + + Do you want to launch the game in fullscreen? + Vuoi avviare il gioco a schermo intero? + + + + Shortcut Created + + + + + Successfully created a shortcut to %1 + Scorciatoia creata con successo in %1 + + + + Shortcut may be Volatile! + + + + + This will create a shortcut to the current AppImage. This may not work well if you update. Continue? + Verrà creata una scorciatoia all'AppImage attuale. Potrebbe non funzionare correttamente se effettui un aggiornamento. Vuoi continuare? + + + + Failed to Create Shortcut + + + + + Failed to create a shortcut to %1 + Impossibile creare la scorciatoia in %1 + + + + Create Icon + Crea icona + + + + Cannot create icon file. Path "%1" does not exist and cannot be created. + Impossibile creare il file dell'icona. Il percorso "%1" non esiste e non può essere creato. + + + + No firmware available + Nessun firmware disponibile + + + + Please install firmware to use the home menu. + + + + + Home Menu Applet + + + + + Home Menu is not available. Please reinstall firmware. + + + QtControllerSelectorDialog @@ -9160,7 +9652,7 @@ Riprova o contatta gli sviluppatori del programma. QtProfileSelectionDialog - + %1 %2 %1 is the profile username, %2 is the formatted UUID (e.g. 00112233-4455-6677-8899-AABBCCDDEEFF)) @@ -9168,7 +9660,7 @@ Riprova o contatta gli sviluppatori del programma. %2 - + Users Utenti @@ -9292,7 +9784,7 @@ p, li { white-space: pre-wrap; } WaitTreeCallstack - + Call stack Stack chiamata @@ -9300,12 +9792,12 @@ p, li { white-space: pre-wrap; } WaitTreeSynchronizationObject - + [%1] %2 [%1] %2 - + waited by no thread atteso da nessun thread @@ -9313,102 +9805,102 @@ p, li { white-space: pre-wrap; } WaitTreeThread - + runnable eseguibile - + paused In Pausa - + sleeping Attende... - + waiting for IPC reply attende una risposta dell'IPC - + waiting for objects Attendendo gli Oggetti... - + waiting for condition variable aspettando la condition variable - + waiting for address arbiter attende un indirizzo arbitrio - + waiting for suspend resume in attesa di riprendere la sospensione - + waiting attendere - + initialized inizializzato - + terminated terminato - + unknown sconosciuto - + PC = 0x%1 LR = 0x%2 Program Counter = 0x%1 LR = 0x%2 - + ideal ideale - + core %1 core %1 - + processor = %1 CPU = %1 - + affinity mask = %1 Maschera Affinità = %1 - + thread id = %1 ID Thread: %1 - + priority = %1(current) / %2(normal) priorità = %1(corrente) / %2(normale) - + last running ticks = %1 Ultimi ticks in esecuzione = %1. @@ -9416,7 +9908,7 @@ p, li { white-space: pre-wrap; } WaitTreeThreadList - + waited by thread atteso dal thread @@ -9424,7 +9916,7 @@ p, li { white-space: pre-wrap; } WaitTreeWidget - + &Wait Tree &Wait Tree diff --git a/dist/languages/ja_JP.ts b/dist/languages/ja_JP.ts index 7420497aa6..cca7121405 100644 --- a/dist/languages/ja_JP.ts +++ b/dist/languages/ja_JP.ts @@ -13,12 +13,12 @@ - About eden + About Eden - <html><head/><body><p><span style=" font-size:28pt;">eden</span></p></body></html> + <html><head/><body><p><span style=" font-size:28pt;">Eden</span></p></body></html> @@ -34,8 +34,8 @@ p, li { white-space: pre-wrap; } hr { height: 1px; border-width: 0; } li.unchecked::marker { content: "\2610"; } li.checked::marker { content: "\2612"; } -</style></head><body style=" font-family:'Adwaita Sans'; font-size:11pt; font-weight:400; font-style:normal;"> -<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;">eden is an experimental open-source emulator for the Nintendo Switch licensed under GPLv3.0+ which is based on the yuzu emulator which ended development back in March 2024. <br /><br />This software should not be used to play games you have not legally obtained.</span></p></body></html> +</style></head><body style=" font-family:'Noto Sans'; font-size:9pt; font-weight:400; font-style:normal;"> +<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;">Eden is an experimental open-source emulator for the Nintendo Switch licensed under GPLv3.0+ which is based on the yuzu emulator which ended development back in March 2024. <br /><br />This software should not be used to play games you have not legally obtained.</span></p></body></html> @@ -72,32 +72,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 @@ -397,439 +397,188 @@ This would ban both their forum username and their IP address. ConfigurationShared - + % % - - Amiibo editor - - - - - Controller configuration - - - - - Data erase - - - - + Error エラー - - Net connect - - - - - Player select - - - - + Software keyboard ソフトウェアキーボード - - Mii Edit - - - - - Online web - - - - - Shop - - - - - Photo viewer - - - - - Offline web - - - - - Login share - - - - - Wifi web auth - - - - - My page - - - - + Output Engine: 出力エンジン: - + Output Device: 出力デバイス: - + Input Device: 入力デバイス: - - Mute audio - - - - + Volume: 音量: - + Mute audio when in background 非アクティブ時にサウンドをミュート - + Multicore CPU Emulation マルチコアCPUエミュレーション - - This option increases CPU emulation thread use from 1 to the Switch’s maximum of 4. -This is mainly a debug option and shouldn’t be disabled. - - - - + Memory Layout メモリレイアウト - - Increases the amount of emulated RAM from the stock 4GB of the retail Switch to the developer kit's 8/6GB. -It’s doesn’t improve stability or performance and is intended to let big texture mods fit in emulated RAM. -Enabling it will increase memory use. It is not recommended to enable unless a specific game with a texture mod needs it. - - - - + Limit Speed Percent エミュレーション速度の制限 - - Controls the game's maximum rendering speed, but it’s up to each game if it runs faster or not. -200% for a 30 FPS game is 60 FPS, and for a 60 FPS game it will be 120 FPS. -Disabling it means unlocking the framerate to the maximum your PC can reach. - - - - - Synchronize Core Speed - - - - - Synchronizes CPU core speed with the game's maximum rendering speed to boost FPS without affecting game speed (animations, physics, etc.). -Compatibility varies by game; many (especially older ones) may not respond well. -Can help reduce stuttering at lower framerates. - - - - + Accuracy: エミュレーション精度: - - This setting controls the accuracy of the emulated CPU. -Don't change this unless you know what you are doing. - - - - - + + Backend: バックエンド: - - Fast CPU Time - - - - - Overclocks the emulated CPU to remove some FPS limiters. Weaker CPUs may see reduced performance, and certain games may behave improperly. -Use Boost (1700MHz) to run at the Switch's highest native clock, or Fast (2000MHz) to run at 2x clock. - - - - + Unfuse FMA (improve performance on CPUs without FMA) FMAの融合を解除 (FMAに対応していないCPUのパフォーマンスを向上させる) - + This option improves speed by reducing accuracy of fused-multiply-add instructions on CPUs without native FMA support. このオプションは, ネイティブのFMAサポートがないCPU上で, 融合積和(fused-multiply-add)命令の精度を下げて高速化します. - + Faster FRSQRTE and FRECPE Faster FRSQRTE and FRECPE - + This option improves the speed of some approximate floating-point functions by using less accurate native approximations. このオプションは、より精度の低い近似値を使用することで、近似浮動小数点関数の速度を向上させます。 - + Faster ASIMD instructions (32 bits only) 高速なASIMD命令 (32bitのみ) - + This option improves the speed of 32 bits ASIMD floating-point functions by running with incorrect rounding modes. このオプションは、不正確な丸めモードで実行することにより、32ビットASIMD浮動小数点関数の速度を向上させます。 - + Inaccurate NaN handling 不正確な非数値の取り扱い - - This option improves speed by removing NaN checking. -Please note this also reduces accuracy of certain floating-point instructions. - - - - + Disable address space checks アドレス空間チェックの無効化 - - This option improves speed by eliminating a safety check before every memory read/write in guest. -Disabling it may allow a game to read/write the emulator's memory. - - - - - Ignore global monitor - - - - - This option improves speed by relying only on the semantics of cmpxchg to ensure safety of exclusive access instructions. -Please note this may result in deadlocks and other race conditions. - - - - + API: API: - - Switches between the available graphics APIs. -Vulkan is recommended in most cases. - - - - + Device: 使用デバイス: - - This setting selects the GPU to use with the Vulkan backend. - - - - + Shader Backend: シェーダーバックエンド: - - The shader backend to use for the OpenGL renderer. -GLSL is the fastest in performance and the best in rendering accuracy. -GLASM is a deprecated NVIDIA-only backend that offers much better shader building performance at the cost of FPS and rendering accuracy. -SPIR-V compiles the fastest, but yields poor results on most GPU drivers. - - - - + Resolution: 解像度: - - Forces the game to render at a different resolution. -Higher resolutions require much more VRAM and bandwidth. -Options lower than 1X can cause rendering issues. - - - - + Window Adapting Filter: ウィンドウ適応フィルター: - + FSR Sharpness: FSR シャープネス: - - Determines how sharpened the image will look while using FSR’s dynamic contrast. - - - - + Anti-Aliasing Method: アンチエイリアス方式: - - The anti-aliasing method to use. -SMAA offers the best quality. -FXAA has a lower performance impact and can produce a better and more stable picture under very low resolutions. - - - - + Fullscreen Mode: フルスクリーンモード: - - The method used to render the window in fullscreen. -Borderless offers the best compatibility with the on-screen keyboard that some games request for input. -Exclusive fullscreen may offer better performance and better Freesync/Gsync support. - - - - + Aspect Ratio: アスペクト比: - - Stretches the game to fit the specified aspect ratio. -Switch games only support 16:9, so custom game mods are required to get other ratios. -Also controls the aspect ratio of captured screenshots. - - - - + Use disk pipeline cache ディスクパイプラインキャッシュを使用 - - Allows saving shaders to storage for faster loading on following game boots. -Disabling it is only intended for debugging. - - - - - Optimize SPIRV output shader - - - - - Runs an additional optimization pass over generated SPIRV shaders. -Will increase time required for shader compilation. -May slightly improve performance. -This feature is experimental. - - - - + Use asynchronous GPU emulation 非同期GPUエミュレーションを使用する - - Uses an extra CPU thread for rendering. -This option should always remain enabled. - - - - + NVDEC emulation: NVDEC エミュレーション: - - Specifies how videos should be decoded. -It can either use the CPU or the GPU for decoding, or perform no decoding at all (black screen on videos). -In most cases, GPU decoding provides the best performance. - - - - + ASTC Decoding Method: ASTC デコード方式: - - This option controls how ASTC textures should be decoded. -CPU: Use the CPU for decoding, slowest but safest method. -GPU: Use the GPU's compute shaders to decode ASTC textures, recommended for most games and users. -CPU Asynchronously: Use the CPU to decode ASTC textures as they arrive. Completely eliminates ASTC decoding -stuttering at the cost of rendering issues while the texture is being decoded. - - - - + ASTC Recompression Method: ASTC 再圧縮方式: - - Almost all desktop and laptop dedicated GPUs lack support for ASTC textures, forcing the emulator to decompress to an intermediate format any card supports, RGBA8. -This option recompresses RGBA8 to either the BC1 or BC3 format, saving VRAM but negatively affecting image quality. - - - - - VRAM Usage Mode: - - - - - Selects whether the emulator should prefer to conserve memory or make maximum usage of available video memory for performance. Has no effect on integrated graphics. Aggressive mode may severely impact the performance of other applications such as recording software. - - - - + VSync Mode: 垂直同期: - + FIFO (VSync) does not drop frames or exhibit tearing but is limited by the screen refresh rate. FIFO Relaxed is similar to FIFO but allows tearing as it recovers from a slow down. Mailbox can have lower latency than FIFO and does not tear but may drop frames. @@ -840,62 +589,34 @@ Mailbox は FIFO よりも遅延が小さくティアリングがありません Immediate (no synchronization) は利用可能なものを何でも利用し, ティアリング発生の可能性があります. - + Enable asynchronous presentation (Vulkan only) 非同期プレゼンテーション (Vulkan のみ) - - Slightly improves performance by moving presentation to a separate CPU thread. - - - - + Force maximum clocks (Vulkan only) 最大クロック強制 (Vulkan のみ) - + Runs work in the background while waiting for graphics commands to keep the GPU from lowering its clock speed. GPUのクロックスピードを下げないように、グラフィックコマンドを待っている間、バックグラウンドで作業を実行させます。 - + Anisotropic Filtering: 異方性フィルタリング: - - Controls the quality of texture rendering at oblique angles. -It’s a light setting and safe to set at 16x on most GPUs. - - - - Accuracy Level: - 精度: + 精度: - - GPU emulation accuracy. -Most games render fine with Normal, but High is still required for some. -Particles tend to only render correctly with High accuracy. -Extreme should only be used for debugging. -This option can be changed while playing. -Some games may require booting on high to render properly. - - - - + Use asynchronous shader building (Hack) 非同期でのシェーダー構築を使用 (ハック) - - - Enables asynchronous shader compilation, which may reduce shader stutter. -This feature is experimental. - - Use Fast GPU Time (Hack) 高速なGPUタイミング(ハック) @@ -905,983 +626,1359 @@ This feature is experimental. 高速なGPUタイミングを有効にします。このオプションは、ほとんどのゲームをその最高のネイティブ解像度で実行することを強制します。 - + Use Vulkan pipeline cache Vulkan パイプラインキャッシュを使用 - + + Enable Compute Pipelines (Intel Vulkan Only) + コンピュート・パイプラインの有効化(インテル Vulkan のみ) + + + + Sync to framerate of video playback + ビデオ再生のフレームレートに同期する + + + + Improves rendering of transparency effects in specific games. + 特定のゲームにおける透明エフェクトのレンダリングを改善します。 + + + + RNG Seed + 乱数シード値の変更 + + + + Device Name + デバイス名 + + + + Language: + 言語: + + + + Note: this can be overridden when region setting is auto-select + 注意:地域が自動選択の場合、設定が上書きされる可能性があります。 + + + + Region: + 地域: + + + + Time Zone: + タイムゾーン: + + + + Sound Output Mode: + 音声出力モード: + + + + Prompt for user on game boot + ゲーム起動時に確認を表示 + + + + Pause emulation when in background + 非アクティブ時にエミュレーションを一時停止 + + + + Confirm before stopping emulation + エミュレーションを停止する前に確認する + + + + Hide mouse on inactivity + 非アクティブ時にマウスカーソルを隠す + + + + Disable controller applet + コントローラーアプレットの無効化 + + + + CPU + CPU + + + + GPU + GPU + + + + CPU Asynchronous + CPU 非同期 + + + + Uncompressed (Best quality) + 圧縮しない (最高品質) + + + + BC1 (Low quality) + BC1 (低品質) + + + + BC3 (Medium quality) + BC3 (中品質) + + + + OpenGL + OpenGL + + + + Vulkan + Vulkan + + + + GLSL + GLSL + + + + GLASM (Assembly Shaders, NVIDIA Only) + GLASM (アセンブリシェーダー、NVIDIA のみ) + + + + SPIR-V (Experimental, AMD/Mesa Only) + SPIR-V(実験的、AMD/Mesaのみ) + + + + Normal + 標準 + + + + High + + + + + Auto + 自動 + + + + Accurate + 正確 + + + + Unsafe + 不安定 + + + + Paranoid (disables most optimizations) + パラノイド (ほとんどの最適化を無効化) + + + + Dynarmic + Dynarmic + + + + NCE + NCE + + + + Borderless Windowed + ボーダーレスウィンドウ + + + + Exclusive Fullscreen + 排他的フルスクリーン + + + + No Video Output + ビデオ出力しない + + + + CPU Video Decoding + ビデオをCPUでデコード + + + + GPU Video Decoding (Default) + ビデオをGPUでデコード (デフォルト) + + + + 0.5X (360p/540p) [EXPERIMENTAL] + 0.5X (360p/540p) [実験的] + + + + 0.75X (540p/810p) [EXPERIMENTAL] + 0.75X (540p/810p) [実験的] + + + + 1X (720p/1080p) + 1X (720p/1080p) + + + + 1.5X (1080p/1620p) [EXPERIMENTAL] + 1.5X (1080p/1620p) [実験的] + + + + 2X (1440p/2160p) + 2X (1440p/2160p) + + + + 3X (2160p/3240p) + 3X (2160p/3240p) + + + + 4X (2880p/4320p) + 4X (2880p/4320p) + + + + 5X (3600p/5400p) + 5X (3600p/5400p) + + + + 6X (4320p/6480p) + 6X (4320p/6480p) + + + + 7X (5040p/7560p) + 7X (5040p/7560p) + + + + 8X (5760p/8640p) + 8X (5760p/8640p) + + + + Nearest Neighbor + Nearest Neighbor + + + + Bilinear + Bilinear + + + + Bicubic + Bicubic + + + + Gaussian + Gaussian + + + + ScaleForce + ScaleForce + + + + AMD FidelityFX™️ Super Resolution + AMD FidelityFX™️ Super Resolution + + + + None + なし + + + + FXAA + FXAA + + + + SMAA + SMAA + + + + Default (16:9) + デフォルト (16:9) + + + + Force 4:3 + 強制 4:3 + + + + Force 21:9 + 強制 21:9 + + + + Force 16:10 + 強制 16:10 + + + + Stretch to Window + ウィンドウに合わせる + + + + Automatic + 自動 + + + + + Default + デフォルト + + + + Amiibo editor + + + + + Controller configuration + + + + + Data erase + + + + + Net connect + + + + + Player select + + + + + Mii Edit + + + + + Online web + + + + + Shop + + + + + Photo viewer + + + + + Offline web + + + + + Login share + + + + + Wifi web auth + + + + + My page + + + + + Mute audio + + + + + This option increases CPU emulation thread use from 1 to the Switch’s maximum of 4. +This is mainly a debug option and shouldn’t be disabled. + + + + + Increases the amount of emulated RAM from the stock 4GB of the retail Switch to the developer kit's 8/6GB. +It’s doesn’t improve stability or performance and is intended to let big texture mods fit in emulated RAM. +Enabling it will increase memory use. It is not recommended to enable unless a specific game with a texture mod needs it. + + + + + Controls the game's maximum rendering speed, but it’s up to each game if it runs faster or not. +200% for a 30 FPS game is 60 FPS, and for a 60 FPS game it will be 120 FPS. +Disabling it means unlocking the framerate to the maximum your PC can reach. + + + + + Synchronize Core Speed + + + + + Synchronizes CPU core speed with the game's maximum rendering speed to boost FPS without affecting game speed (animations, physics, etc.). +Compatibility varies by game; many (especially older ones) may not respond well. +Can help reduce stuttering at lower framerates. + + + + + This setting controls the accuracy of the emulated CPU. +Don't change this unless you know what you are doing. + + + + + Fast CPU Time + + + + + Overclocks the emulated CPU to remove some FPS limiters. Weaker CPUs may see reduced performance, and certain games may behave improperly. +Use Boost (1700MHz) to run at the Switch's highest native clock, or Fast (2000MHz) to run at 2x clock. + + + + + Custom CPU Ticks + + + + + Set a custom value of CPU ticks. Higher values can increase performance, but may also cause the game to freeze. A range of 77–21000 is recommended. + + + + + Enable Host MMU Emulation (fastmem) + + + + + This optimization speeds up memory accesses by the guest program. +Enabling it causes guest memory reads/writes to be done directly into memory and make use of Host's MMU. +Disabling this forces all memory accesses to use Software MMU Emulation. + + + + + This option improves speed by removing NaN checking. +Please note this also reduces accuracy of certain floating-point instructions. + + + + + This option improves speed by eliminating a safety check before every memory read/write in guest. +Disabling it may allow a game to read/write the emulator's memory. + + + + + Ignore global monitor + + + + + This option improves speed by relying only on the semantics of cmpxchg to ensure safety of exclusive access instructions. +Please note this may result in deadlocks and other race conditions. + + + + + Switches between the available graphics APIs. +Vulkan is recommended in most cases. + + + + + This setting selects the GPU to use with the Vulkan backend. + + + + + The shader backend to use for the OpenGL renderer. +GLSL is the fastest in performance and the best in rendering accuracy. +GLASM is a deprecated NVIDIA-only backend that offers much better shader building performance at the cost of FPS and rendering accuracy. +SPIR-V compiles the fastest, but yields poor results on most GPU drivers. + + + + + Forces the game to render at a different resolution. +Higher resolutions require much more VRAM and bandwidth. +Options lower than 1X can cause rendering issues. + + + + + Determines how sharpened the image will look while using FSR’s dynamic contrast. + + + + + The anti-aliasing method to use. +SMAA offers the best quality. +FXAA has a lower performance impact and can produce a better and more stable picture under very low resolutions. + + + + + The method used to render the window in fullscreen. +Borderless offers the best compatibility with the on-screen keyboard that some games request for input. +Exclusive fullscreen may offer better performance and better Freesync/Gsync support. + + + + + Stretches the game to fit the specified aspect ratio. +Switch games only support 16:9, so custom game mods are required to get other ratios. +Also controls the aspect ratio of captured screenshots. + + + + + Allows saving shaders to storage for faster loading on following game boots. +Disabling it is only intended for debugging. + + + + + Optimize SPIRV output shader + + + + + Runs an additional optimization pass over generated SPIRV shaders. +Will increase time required for shader compilation. +May slightly improve performance. +This feature is experimental. + + + + + Uses an extra CPU thread for rendering. +This option should always remain enabled. + + + + + Specifies how videos should be decoded. +It can either use the CPU or the GPU for decoding, or perform no decoding at all (black screen on videos). +In most cases, GPU decoding provides the best performance. + + + + + This option controls how ASTC textures should be decoded. +CPU: Use the CPU for decoding, slowest but safest method. +GPU: Use the GPU's compute shaders to decode ASTC textures, recommended for most games and users. +CPU Asynchronously: Use the CPU to decode ASTC textures as they arrive. Completely eliminates ASTC decoding +stuttering at the cost of rendering issues while the texture is being decoded. + + + + + Almost all desktop and laptop dedicated GPUs lack support for ASTC textures, forcing the emulator to decompress to an intermediate format any card supports, RGBA8. +This option recompresses RGBA8 to either the BC1 or BC3 format, saving VRAM but negatively affecting image quality. + + + + + VRAM Usage Mode: + + + + + Selects whether the emulator should prefer to conserve memory or make maximum usage of available video memory for performance. +Aggressive mode may severely impact the performance of other applications such as recording software. + + + + + Skip CPU Inner Invalidation + + + + + Skips certain CPU-side cache invalidations during memory updates, reducing CPU usage and improving it's performance. This may cause glitches or crashes on some games. + + + + + Sync Memory Operations + + + + + Ensures data consistency between compute and memory operations. +This option should fix issues in some games, but may also reduce performance in some cases. +Unreal Engine 4 games often see the most significant changes thereof. + + + + + Slightly improves performance by moving presentation to a separate CPU thread. + + + + + Controls the quality of texture rendering at oblique angles. +It’s a light setting and safe to set at 16x on most GPUs. + + + + + GPU Accuracy: + + + + + Controls the GPU emulation accuracy. +Most games render fine with Normal, but High is still required for some. +Particles tend to only render correctly with High accuracy. +Extreme should only be used as a last resort. + + + + + DMA Accuracy: + + + + + Controls the DMA precision accuracy. Safe precision can fix issues in some games, but it can also impact performance in some cases. +If unsure, leave this on Default. + + + + + Enables asynchronous shader compilation, which may reduce shader stutter. +This feature is experimental. + + + + + Fast GPU Time (Hack) + + + + + Overclocks the emulated GPU to increase dynamic resolution and render distance. +Use 128 for maximal performance and 512 for maximal graphics fidelity. + + + + Enables GPU vendor-specific pipeline cache. This option can improve shader loading time significantly in cases where the Vulkan driver does not store pipeline cache files internally. - - Enable Compute Pipelines (Intel Vulkan Only) - コンピュート・パイプラインの有効化(インテル Vulkan のみ) - - - + Enable compute pipelines, required by some games. This setting only exists for Intel proprietary drivers, and may crash if enabled. Compute pipelines are always enabled on all other drivers. - + Enable Reactive Flushing - + Uses reactive flushing instead of predictive flushing, allowing more accurate memory syncing. - - Sync to framerate of video playback - ビデオ再生のフレームレートに同期する - - - + Run the game at normal speed during video playback, even when the framerate is unlocked. - + Barrier feedback loops - - Improves rendering of transparency effects in specific games. - 特定のゲームにおける透明エフェクトのレンダリングを改善します。 + + RAII + - - RNG Seed - 乱数シード値の変更 + + A method of automatic resource management in Vulkan that ensures proper release of resources when they are no longer needed, but may cause crashes in bundled games. + - + + Extended Dynamic State + + + + + Controls the number of features that can be used in Extended Dynamic State. +Higher numbers allow for more features and can increase performance, but may cause issues with some drivers and vendors. +The default value may vary depending on your system and hardware capabilities. +This value can be changed until stability and a better visual quality are achieved. + + + + + Provoking Vertex + + + + + Improves lighting and vertex handling in certain games. +Only Vulkan 1.0+ devices support this extension. + + + + + Descriptor Indexing + + + + + Improves texture & buffer handling and the Maxwell translation layer. +Some Vulkan 1.1+ and all 1.2+ devices support this extension. + + + + + Sample Shading + + + + + Allows the fragment shader to execute per sample in a multi-sampled fragment instead once per fragment. Improves graphics quality at the cost of some performance. +Higher values improve quality more but also reduce performance to a greater extent. + + + + Controls the seed of the random number generator. Mainly used for speedrunning purposes. - - Device Name - デバイス名 - - - + The name of the emulated Switch. - + Custom RTC Date: - + This option allows to change the emulated clock of the Switch. Can be used to manipulate time in games. - - Language: - 言語: - - - - Note: this can be overridden when region setting is auto-select - 注意:地域が自動選択の場合、設定が上書きされる可能性があります。 - - - - Region: - 地域: - - - + The region of the emulated Switch. - - Time Zone: - タイムゾーン: - - - + The time zone of the emulated Switch. - - Sound Output Mode: - 音声出力モード: - - - + Console Mode: - + Selects if the console is emulated in Docked or Handheld mode. Games will change their resolution, details and supported controllers and depending on this setting. Setting to Handheld can help improve performance for low end systems. - - Prompt for user on game boot - ゲーム起動時に確認を表示 - - - - Pause emulation when in background - 非アクティブ時にエミュレーションを一時停止 - - - - Fast GPU Time (Hack) + + Ask to select a user profile on each boot, useful if multiple people use Eden on the same PC. - - Overclocks the emulated GPU to increase dynamic resolution and render distance. -Use 128 for maximal performance and 512 for maximal graphics fidelity. + + This setting pauses Eden when focusing other windows. - - Extended Dynamic State - - - - - Enables the VkExtendedDynamicState* extensions. -Higher dynamic states will generally improve performance, but may cause issues on certain games or devices. - - - - - Provoking Vertex - - - - - Improves lighting and vertex handling in certain games. -Only Vulkan 1.0+ devices support this extension. - - - - - Descriptor Indexing - - - - - Improves texture & buffer handling and the Maxwell translation layer. -Some Vulkan 1.1+ and all 1.2+ devices support this extension. - - - - - Ask to select a user profile on each boot, useful if multiple people use eden on the same PC. - - - - - This setting pauses eden when focusing other windows. - - - - - Confirm before stopping emulation - エミュレーションを停止する前に確認する - - - + This setting overrides game prompts asking to confirm stopping the game. Enabling it bypasses such prompts and directly exits the emulation. - - Hide mouse on inactivity - 非アクティブ時にマウスカーソルを隠す - - - + This setting hides the mouse after 2.5s of inactivity. - - Disable controller applet - コントローラーアプレットの無効化 - - - + Forcibly disables the use of the controller applet by guests. When a guest attempts to open the controller applet, it is immediately closed. - + Check for updates - + Whether or not to check for updates upon startup. - + Enable Gamemode - + Custom frontend - + Real applet - + Never - + On Load - + Always - - CPU - CPU - - - - GPU - GPU - - - - CPU Asynchronous - CPU 非同期 - - - - Uncompressed (Best quality) - 圧縮しない (最高品質) - - - - BC1 (Low quality) - BC1 (低品質) - - - - BC3 (Medium quality) - BC3 (中品質) - - - + Conservative - + Aggressive - - OpenGL - OpenGL - - - - Vulkan - Vulkan - - - + Null - - GLSL - GLSL - - - - GLASM (Assembly Shaders, NVIDIA Only) - GLASM (アセンブリシェーダー、NVIDIA のみ) - - - - SPIR-V (Experimental, AMD/Mesa Only) - SPIR-V(実験的、AMD/Mesaのみ) - - - - Normal - 標準 - - - - High - - - - + Extreme - - Auto - 自動 + + Unsafe (fast) + - - Accurate - 正確 + + Safe (stable) + - - Unsafe - 不安定 - - - - Paranoid (disables most optimizations) - パラノイド (ほとんどの最適化を無効化) - - - - Dynarmic - Dynarmic - - - - NCE - NCE - - - - Borderless Windowed - ボーダーレスウィンドウ - - - - Exclusive Fullscreen - 排他的フルスクリーン - - - - No Video Output - ビデオ出力しない - - - - CPU Video Decoding - ビデオをCPUでデコード - - - - GPU Video Decoding (Default) - ビデオをGPUでデコード (デフォルト) - - - + 0.25X (180p/270p) [EXPERIMENTAL] - - 0.5X (360p/540p) [EXPERIMENTAL] - 0.5X (360p/540p) [実験的] - - - - 0.75X (540p/810p) [EXPERIMENTAL] - 0.75X (540p/810p) [実験的] - - - - 1X (720p/1080p) - 1X (720p/1080p) - - - - 1.5X (1080p/1620p) [EXPERIMENTAL] - 1.5X (1080p/1620p) [実験的] - - - - 2X (1440p/2160p) - 2X (1440p/2160p) - - - - 3X (2160p/3240p) - 3X (2160p/3240p) - - - - 4X (2880p/4320p) - 4X (2880p/4320p) - - - - 5X (3600p/5400p) - 5X (3600p/5400p) - - - - 6X (4320p/6480p) - 6X (4320p/6480p) - - - - 7X (5040p/7560p) - 7X (5040p/7560p) - - - - 8X (5760p/8640p) - 8X (5760p/8640p) - - - - Nearest Neighbor - Nearest Neighbor - - - - Bilinear - Bilinear - - - - Bicubic - Bicubic - - - - Gaussian - Gaussian - - - - ScaleForce - ScaleForce - - - - AMD FidelityFX™️ Super Resolution - AMD FidelityFX™️ Super Resolution - - - + Area - - None - なし - - - - FXAA - FXAA - - - - SMAA - SMAA - - - - Default (16:9) - デフォルト (16:9) - - - - Force 4:3 - 強制 4:3 - - - - Force 21:9 - 強制 21:9 - - - - Force 16:10 - 強制 16:10 - - - - Stretch to Window - ウィンドウに合わせる - - - - Automatic - 自動 - - - - Default - デフォルト - - - + 2x 2x - + 4x 4x - + 8x 8x - + 16x 16x - + Japanese (日本語) 日本語 - + American English アメリカ英語 - + French (français) フランス語 (français) - + German (Deutsch) ドイツ語 (Deutsch) - + Italian (italiano) イタリア語 (italiano) - + Spanish (español) スペイン語 (español) - + Chinese 中国語 - + Korean (한국어) 韓国語 (한국어) - + Dutch (Nederlands) オランダ語 (Nederlands) - + Portuguese (português) ポルトガル語 (português) - + Russian (Русский) ロシア語 (Русский) - + Taiwanese 台湾語 - + British English イギリス英語 - + Canadian French カナダフランス語 - + Latin American Spanish ラテンアメリカスペイン語 - + Simplified Chinese 簡体字中国語 - + Traditional Chinese (正體中文) 繁体字中国語 (正體中文) - + Brazilian Portuguese (português do Brasil) ブラジルポルトガル語 (português do Brasil) - - + + Serbian (српски) + + + + + Japan 日本 - + USA アメリカ - + Europe ヨーロッパ - + Australia オーストラリア - + China 中国 - + Korea 韓国 - + Taiwan 台湾 - + Auto (%1) Auto select time zone 自動 (%1) - + Default (%1) Default time zone 既定 (%1) - + CET 中央ヨーロッパ時間 - + CST6CDT CST6CDT - + Cuba キューバ - + EET 東ヨーロッパ標準時 - + Egypt エジプト - + Eire アイルランド - + EST アメリカ東部標準時 - + EST5EDT EST5EDT - + GB GB - + GB-Eire イギリス-アイルランド - + GMT GMT - + GMT+0 GMT+0 - + GMT-0 GMT-0 - + GMT0 GMT0 - + Greenwich グリニッジ - + Hongkong 香港 - + HST ハワイ標準時 - + Iceland アイスランド - + Iran イラン - + Israel イスラエル - + Jamaica ジャマイカ - + Kwajalein クェゼリン - + Libya リビア - + MET 中東時間 - + MST MST - + MST7MDT MST7MDT - + Navajo ナバホ - + NZ NZ - + NZ-CHAT NZ-CHAT - + Poland ポーランド - + Portugal ポルトガル - + PRC PRC - + PST8PDT PST8PDT - + ROC ROC - + ROK ROK - + Singapore シンガポール - + Turkey トルコ - + UCT UCT - + Universal ユニバーサル - + UTC UTC - + W-SU W-SU - + WET WET - + Zulu ズールー - + Mono モノラル - + Stereo ステレオ - + Surround サラウンド - + 4GB DRAM (Default) 4GB DRAM (デフォルト) - + 6GB DRAM (Unsafe) 6GB DRAM (不安定) - + 8GB DRAM - + 10GB DRAM (Unsafe) - + 12GB DRAM (Unsafe) - + Low (128) - + Medium (256) - + High (512) @@ -1890,37 +1987,37 @@ When a guest attempts to open the controller applet, it is immediately closed.8GB DRAM (不安定) - + Docked Docked - + Handheld 携帯モード - + Boost (1700MHz) - + Fast (2000MHz) - + Always ask (Default) 常に確認する (デフォルト) - + Only if game specifies not to stop ゲームが停止しないように指定しているときのみ - + Never ask 確認しない @@ -2275,27 +2372,27 @@ When a guest attempts to open the controller applet, it is immediately closed.ログ - + Open Log Location ログ出力フォルダを開く - + Global Log Filter グローバルログフィルター - + When checked, the max size of the log increases from 100 MB to 1 GB チェックすると、ログの最大サイズが100MBから1GBに増加します。 - + Enable Extended Logging** 拡張ログの有効化** - + Show Log in Console コンソールにログを表示 @@ -2441,7 +2538,7 @@ When a guest attempts to open the controller applet, it is immediately closed. - **This will be reset automatically when eden closes. + **This will be reset automatically when Eden closes. @@ -2503,7 +2600,7 @@ When a guest attempts to open the controller applet, it is immediately closed.** yuzuを終了したときに自動的にリセットされます。 - + Web applet not compiled ウェブアプレットがコンパイルされていません @@ -2553,7 +2650,7 @@ When a guest attempts to open the controller applet, it is immediately closed. - eden Configuration + Eden Configuration @@ -2562,88 +2659,88 @@ When a guest attempts to open the controller applet, it is immediately closed.いくつかの設定はゲームが実行中でないときのみ設定できます - + Applets - - + + Audio サウンド - - + + CPU CPU - + Debug デバッグ - + Filesystem ファイルシステム - - + + General 全般 - - + + Graphics グラフィック - + GraphicsAdvanced 拡張グラフィック - + GraphicsExtensions - + Hotkeys ホットキー - - + + Controls 操作 - + Profiles プロファイル - + Network ネットワーク - - + + System システム - + Game List ゲームリスト - + Web Web @@ -2741,51 +2838,45 @@ When a guest attempts to open the controller applet, it is immediately closed. - - - Reset Metadata Cache メタデータのキャッシュをクリア - + Select Emulated NAND Directory... NANDディレクトリを選択... - + Select Emulated SD Directory... SDカードディレクトリを選択... - + Select Gamecard Path... ゲームカードのパスを選択... - + Select Dump Directory... ダンプディレクトリを選択... - + Select Mod Load Directory... Mod読込元ディレクトリを選択... - The metadata cache is already empty. - メタデータのキャッシュはすでに空です。 + メタデータのキャッシュはすでに空です。 - The operation completed successfully. - 処理に成功しました。 + 処理に成功しました。 - The metadata cache couldn't be deleted. It might be in use or non-existent. - メタデータのキャッシュを削除できませんでした。使用中か存在していない可能性があります。 + メタデータのキャッシュを削除できませんでした。使用中か存在していない可能性があります。 @@ -2816,12 +2907,12 @@ When a guest attempts to open the controller applet, it is immediately closed.yuzu - - eden + + Eden - + This reset all settings and remove all per-game configurations. This will not delete game directories, profiles, or input profiles. Proceed? すべての設定がリセットされ、ゲームごとの設定もすべて削除されます。ゲームディレクトリ、プロファイル、入力プロファイルは削除されません。続行しますか? @@ -2854,33 +2945,33 @@ When a guest attempts to open the controller applet, it is immediately closed.背景色: - + % FSR sharpening percentage (e.g. 50%) % - + Off オフ - + VSync Off VSync オフ - + Recommended 推奨 - + On オン - + VSync On VSync オン @@ -2917,14 +3008,18 @@ When a guest attempts to open the controller applet, it is immediately closed. - Vulkan Extension Settings + Vulkan Extensions Settings - - While it's recommended to use state 3, some games may perform better on lower states. Setting to 0 (disabled) may also break games. -If your GPU is older (i.e. RX570/580 or older), it may not support these features. If this is the case, set the slider to 0 and uncheck all boxes. -These settings are experimental, and may cause black screens. If your games fail to boot or are stuck on a black screen, change these settings around. + + % + Sample Shading percentage (e.g. 50%) + % + + + + Extended Dynamic State is disabled on macOS due to MoltenVK compatibility issues that cause black screens. @@ -2956,75 +3051,75 @@ These settings are experimental, and may cause black screens. If your games fail デフォルトに戻す - + Action 操作 - + Hotkey ホットキー - + Controller Hotkey コントローラー ホットキー - - - + + + Conflicting Key Sequence 入力された組合せの衝突 - - + + The entered key sequence is already assigned to: %1 入力された組合せは既に次の操作に割り当てられています:%1 - + [waiting] [入力待ち] - + Invalid 無効 - + Invalid hotkey settings 無効なホットキー設定 - + An error occurred. Please report this issue on github. エラーが発生しました。この問題をgithubで報告してください。 - + Restore Default デフォルトに戻す - + Clear 消去 - + Conflicting Button Sequence ボタンが競合しています - + The default button sequence is already assigned to: %1 デフォルトのボタン配列はすでに %1 に割り当てられています。 - + The default key sequence is already assigned to: %1 デフォルトの組合せはすでに %1 に割り当てられています。 @@ -3344,7 +3439,7 @@ These settings are experimental, and may cause black screens. If your games fail - Requires restarting eden + Requires restarting Eden @@ -3499,7 +3594,7 @@ These settings are experimental, and may cause black screens. If your games fail - + Left Stick Lスティック @@ -3609,14 +3704,14 @@ These settings are experimental, and may cause black screens. If your games fail - + L L - + ZL ZL @@ -3635,7 +3730,7 @@ These settings are experimental, and may cause black screens. If your games fail - + Plus + @@ -3648,15 +3743,15 @@ These settings are experimental, and may cause black screens. If your games fail - - + + R R - + ZR ZR @@ -3701,7 +3796,7 @@ These settings are experimental, and may cause black screens. If your games fail - + Right Stick Rスティック @@ -3716,242 +3811,242 @@ These settings are experimental, and may cause black screens. If your games fail 設定 - - - - + + + + Clear クリア - - - - - + + + + + [not set] [未設定] - - - + + + Invert button ボタンを反転 - - + + Toggle button - + Turbo button ターボボタン - - + + Invert axis 軸を反転 - - - + + + Set threshold しきい値を設定 - - + + Choose a value between 0% and 100% 0%から100%の間の値を選択してください - + Toggle axis - + Set gyro threshold ジャイロのしきい値を設定 - + Calibrate sensor センサーを補正 - + Map Analog Stick アナログスティックをマップ - + After pressing OK, first move your joystick horizontally, and then vertically. To invert the axes, first move your joystick vertically, and then horizontally. OKを押した後、スティックを水平方向に動かし、次に垂直方向に動かしてください。 軸を反転させる場合、 最初に垂直方向に動かし、次に水平方向に動かしてください。 - + Center axis - - + + Deadzone: %1% 遊び:%1% - - + + Modifier Range: %1% 変更範囲:%1% - - + + Pro Controller Proコントローラー - + Dual Joycons Joy-Con(L/R) - + Left Joycon Joy-Con(L) - + Right Joycon Joy-Con(R) - + Handheld 携帯コントローラー - + GameCube Controller ゲームキューブコントローラー - + Poke Ball Plus モンスターボールプラス - + NES Controller ファミコン・コントローラー - + SNES Controller スーパーファミコン・コントローラー - + N64 Controller ニンテンドウ64・コントローラー - + Sega Genesis メガドライブ - + Start / Pause スタート/ ポーズ - + Z Z - + Control Stick - + C-Stick Cスティック - + Shake! 振ってください - + [waiting] [待機中] - + New Profile 新規プロファイル - + Enter a profile name: プロファイル名を入力: - - + + Create Input Profile 入力プロファイルを作成 - + The given profile name is not valid! プロファイル名が無効です! - + Failed to create the input profile "%1" 入力プロファイル "%1" の作成に失敗しました - + Delete Input Profile 入力プロファイルを削除 - + Failed to delete the input profile "%1" 入力プロファイル "%1" の削除に失敗しました - + Load Input Profile 入力プロファイルをロード - + Failed to load the input profile "%1" 入力プロファイル "%1" のロードに失敗しました - + Save Input Profile 入力プロファイルをセーブ - + Failed to save the input profile "%1" 入力プロファイル "%1" のセーブに失敗しました @@ -4008,7 +4103,7 @@ To invert the axes, first move your joystick vertically, and then horizontally.< - + Configure 設定 @@ -4044,7 +4139,7 @@ To invert the axes, first move your joystick vertically, and then horizontally.< - + Test テスト @@ -4063,7 +4158,7 @@ To invert the axes, first move your joystick vertically, and then horizontally.< <a href='https://yuzu-emu.org/wiki/using-a-controller-or-android-phone-for-motion-or-touch-input'><span style="text-decoration: underline; color:#039be5;">さらに詳しく</span></a> - + %1:%2 %1:%2 @@ -4072,77 +4167,77 @@ To invert the axes, first move your joystick vertically, and then horizontally.< yuzu - + <a href='https://eden-emulator.github.io/wiki/using-a-controller-or-android-phone-for-motion-or-touch-input'><span style="text-decoration: underline; color:#039be5;">Learn More</span></a> - + Port number has invalid characters ポート番号に無効な文字が含まれています - - - - - - - eden + + + + + + + Eden - + Port has to be in range 0 and 65353 ポート番号は0から65353の間で設定してください - + IP address is not valid IPアドレスが無効です - + This UDP server already exists このUDPサーバーはすでに存在してます - + Unable to add more than 8 servers 8個以上のサーバーを追加することはできません - + 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>サーバーが正しくセットアップされ、アドレスとポートが正しいことを確認してください。 - + UDP Test or calibration configuration is in progress.<br>Please wait for them to finish. UDPテストまたはキャリブレーション実行中です。<br>完了までお待ちください。 @@ -4268,7 +4363,12 @@ Current values are %1% and %2% respectively. ネットワークインタフェース - + + Enable Airplane Mode + + + + None なし @@ -4326,52 +4426,52 @@ Current values are %1% and %2% respectively. いくつかの設定はゲームが実行中でないときのみ設定できます - + Add-Ons アドオン - + System システム - + CPU CPU - + Graphics グラフィック - + Adv. Graphics 高度なグラフィック - + GPU Extensions - + Audio サウンド - + Input Profiles 入力プロファイル - + Linux Linux - + Properties プロパティ @@ -4389,12 +4489,12 @@ Current values are %1% and %2% respectively. アドオン - + Patch Name 名称 - + Version バージョン @@ -4432,27 +4532,32 @@ Current values are %1% and %2% respectively. ユーザー画像を設定 - + + Select Avatar + + + + Add 追加 - + Rename 名前変更 - + Remove 削除 - + Profile management is available only when game is not running. プロファイル管理はゲーム未実行時にのみ行えます。 - + %1 %2 %1 is the profile username, %2 is the formatted UUID (e.g. 00112233-4455-6677-8899-AABBCCDDEEFF)) @@ -4460,100 +4565,189 @@ Current values are %1% and %2% respectively. %2 - + Enter Username ユーザ名 - + Users ユーザ - + Enter a username for the new user: 新しいユーザのユーザ名を入力: - + Enter a new username: 新しいユーザ名を入力: - + + Error saving user image + + + + + Unable to save image to file + + + + Select User Image ユーザ画像を選択 - - JPEG Images (*.jpg *.jpeg) - JPEG画像 (*.jpg *.jpeg) + + Image Formats (*.jpg *.jpeg *.png *.bmp) + - + + No firmware available + ファームウェアがありません + + + + Please install the firmware to use firmware avatars. + + + + + + Error loading archive + + + + + Archive is not available. Please install/reinstall firmware. + + + + + Archive does not contain romfs. It is probably corrupt. + + + + + Error extracting archive + + + + + Archive could not be extracted. It is probably corrupt. + + + + + Error finding image directory + + + + + Failed to find image directory in the archive. + + + + + No images found + + + + + No avatar images were found in the archive. + + + + JPEG Images (*.jpg *.jpeg) + JPEG画像 (*.jpg *.jpeg) + + + Error deleting image 画像削除エラー - + Error occurred attempting to overwrite previous image at: %1. 既存画像の上書き時にエラーが発生しました: %1 - + Error deleting file ファイル削除エラー - + Unable to delete existing file: %1. ファイルを削除できませんでした: %1 - + Error creating user image directory ユーザー画像ディレクトリ作成失敗 - + Unable to create directory %1 for storing user images. ユーザー画像保存ディレクトリ”%1”を作成できませんでした。 - Error copying user image - ユーザー画像コピーエラー + ユーザー画像コピーエラー - Unable to copy image from %1 to %2 - 画像を”%1”から”%2”へコピー出来ませんでした。 + 画像を”%1”から”%2”へコピー出来ませんでした。 - Error resizing user image - ユーザ画像のリサイズエラー + ユーザ画像のリサイズエラー - Unable to resize image - 画像をリサイズできません + 画像をリサイズできません + + + + ConfigureProfileManagerAvatarDialog + + + Select + + + + + Cancel + キャンセル + + + + Background Color + + + + + Select Firmware Avatar + ConfigureProfileManagerDeleteDialog - + Delete this user? All of the user's save data will be deleted. このユーザを削除しますか? このユーザのすべてのセーブデータが削除されます. - + Confirm Delete ユーザの削除 - + Name: %1 UUID: %2 名称: %1 @@ -4606,7 +4800,7 @@ UUID: %2 - + Enable 有効 @@ -4617,7 +4811,7 @@ UUID: %2 - + Not connected 接続なし @@ -4627,63 +4821,63 @@ UUID: %2 デフォルトに戻す - + Clear クリア - + [not set] [未設定] - + Invert axis 軸を反転 - - + + Deadzone: %1% 遊び:%1% - + Error enabling ring input リングコン入力の有効化エラー - + Direct Joycon driver is not enabled - + Configuring 設定中 - + The current mapped device doesn't support the ring controller - + The current mapped device doesn't have a ring attached - + The current mapped device is not connected - + Unexpected driver result %1 - + [waiting] [入力待ち] @@ -4725,7 +4919,7 @@ UUID: %2 - <html><head/><body><p>Reads controller input from scripts in the same format as TAS-nx scripts.<br/>For a more detailed explanation, please consult the <a href="https://eden-emulator.github.io/help/feature/tas/"><span style=" text-decoration: underline; color:#039be5;">help page</span></a> on the eden website.</p></body></html> + <html><head/><body><p>Reads controller input from scripts in the same format as TAS-nx scripts.<br/>For a more detailed explanation, please consult the <a href="https://eden-emulator.github.io/help/feature/tas/"><span style=" text-decoration: underline; color:#039be5;">help page</span></a> on the Eden website.</p></body></html> @@ -4777,12 +4971,12 @@ UUID: %2 ConfigureTasDialog - + TAS Configuration TAS 設定 - + Select TAS Load Directory... TAS ロードディレクトリを選択... @@ -4892,7 +5086,7 @@ Drag points to change position, or double-click table cells to edit values. - Warning: The settings in this page affect the inner workings of eden's emulated touchscreen. Changing them may result in undesirable behavior, such as the touchscreen partially or not working. You should only use this page if you know what you are doing. + Warning: The settings in this page affect the inner workings of Eden's emulated touchscreen. Changing them may result in undesirable behavior, such as the touchscreen partially or not working. You should only use this page if you know what you are doing. @@ -5212,6 +5406,16 @@ Drag points to change position, or double-click table cells to edit values.Web Web + + + Eden Web Service + + + + + Generate + + yuzu Web Service yuzu Webサービス @@ -5221,42 +5425,29 @@ Drag points to change position, or double-click table cells to edit values.ユーザー名とトークンを入力した時点で、ユーザー識別情報を含む可能性がある追加の統計情報データをyuzuが収集することに同意したと見なされます。 - - eden Web Service - - - - - By providing your username and token, you agree to allow eden to collect additional usage data, which may include user identifying information. - - - - 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サービスの設定は、公開ルームがホストされていない時にのみ変更することができます。 @@ -5281,12 +5472,12 @@ Drag points to change position, or double-click table cells to edit values.IDの再作成 - + Discord Presence Discord 連携 - + Show Current Game in your Discord Status Discordのステータスに実行中のゲームを表示 @@ -5295,24 +5486,8 @@ Drag points to change position, or double-click table cells to edit values.<a href='https://yuzu-emu.org/help/feature/telemetry/'><span style="text-decoration: underline; color:#039be5;">詳細情報</span></a> - <a href='https://profile.yuzu-emu.org/'><span style="text-decoration: underline; color:#039be5;">Sign up</span></a> - <a href='https://profile.yuzu-emu.org/'><span style="text-decoration: underline; color:#039be5;">ユーザー登録</span></a> - - - - <a href='https://evilperson1337.notion.site/Hosting-a-Room-Inside-of-Eden-20457c2edaf680108abac6215a79acdb'><span style="text-decoration: underline; color:#039be5;">What is my token?</span></a> - - - - - Warning - - - - - Verification is currently nonfunctional, instead generate a random 48-character string with only lowercase a-z. - + <a href='https://profile.yuzu-emu.org/'><span style="text-decoration: underline; color:#039be5;">ユーザー登録</span></a> <a href='https://yuzu-emu.org/wiki/yuzu-web-service/'><span style="text-decoration: underline; color:#039be5;">What is my token?</span></a> @@ -5334,12 +5509,6 @@ Drag points to change position, or double-click table cells to edit values.Token was not verified. The change to your token has not been saved. トークンは検証されていません。トークンの変更はまだ保存されていません。 - - - Unverified, please click Verify before saving configuration - Tooltip - - Verifying... 検証中... @@ -5357,20 +5526,67 @@ Drag points to change position, or double-click table cells to edit values.Verification failed. Check that you have entered your token correctly, and that your internet connection is working. 検証に失敗しました。トークンが正しく入力されていること、およびインターネット接続が機能していることを確認してください。 + + + + All Good + Tooltip + + + + + Must be between 4-20 characters + Tooltip + + + + + Must be 48 characters, and lowercase a-z + Tooltip + + ControllerDialog - + Controller P1 Controller P1 - + &Controller P1 &Controller P1 + + DepsDialog + + + Eden Dependencies + + + + + <html><head/><body><p><span style=" font-size:28pt;">Eden Dependencies</span></p></body></html> + + + + + <html><head/><body><p>The projects that make Eden possible</p></body></html> + + + + + Dependency + + + + + Version + バージョン + + DirectConnect @@ -5476,7 +5692,12 @@ Drag points to change position, or double-click table cells to edit values. - Creating a room failed. Please retry. Restarting eden might be necessary. + Creating a room failed. Please retry. Restarting Eden might be necessary. + + + + + Version mismatch! Please update to the latest version of Eden. If the problem persists, contact the room host and ask them to update the server. @@ -5484,11 +5705,6 @@ Drag points to change position, or double-click table cells to edit values.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 eden. If the problem persists, contact the room host and ask them to update the server. - - Incorrect password. @@ -5549,7 +5765,7 @@ Please go to Configure -> System -> Network and make a selection. テレメトリ - + Broken Vulkan Installation Detected 壊れたVulkanのインストールが検出されました。 @@ -5558,106 +5774,105 @@ Please go to Configure -> System -> Network and make a selection. 起動時にVulkanの初期化に失敗しました。<br><br>この問題を解決するための手順は<a href='https://yuzu-emu.org/wiki/faq/#yuzu-starts-with-the-error-broken-vulkan-installation-detected'>こちら</a>。 - + Running a game TRANSLATORS: This string is shown to the user to explain why yuzu needs to prevent the computer from sleeping - + Loading Web Applet... Webアプレットをロード中... - - + + Disable Web Applet Webアプレットの無効化 - + Disabling the web applet can lead to undefined behavior and should only be used with Super Mario 3D All-Stars. Are you sure you want to disable the web applet? (This can be re-enabled in the Debug settings.) Webアプレットを無効にすると、未定義の動作になる可能性があるため、スーパーマリオ3Dオールスターズでのみ使用するようにしてください。本当にWebアプレットを無効化しますか? (デバッグ設定で再度有効にすることができます)。 - + The amount of shaders currently being built ビルド中のシェーダー数 - + The current selected resolution scaling multiplier. 現在選択されている解像度の倍率。 - + Current emulation speed. Values higher or lower than 100% indicate emulation is running faster or slower than a Switch. 現在のエミュレーション速度。値が100%より高いか低い場合、エミュレーション速度がSwitchより速いか遅いことを示します。 - + 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 Switch frame, not counting framelimiting or v-sync. For full-speed emulation this should be at most 16.67 ms. Switchフレームをエミュレートするのにかかる時間で、フレームリミットやV-Syncは含まれません。フルスピードエミュレーションの場合、最大で16.67ミリ秒になります。 - + Unmute 消音解除 - + Mute 消音 - + Reset Volume 音量をリセット - + &Clear Recent Files 最近のファイルをクリア(&C) - + &Continue 再開(&C) - + &Pause 中断(&P) - Warning Outdated Game Format - 古いゲームフォーマットの警告 + 古いゲームフォーマットの警告 You are using the deconstructed ROM directory format for this game, which is an outdated format that has been superseded by others such as NCA, NAX, XCI, or NSP. Deconstructed ROM directories lack icons, metadata, and update support.<br><br>For an explanation of the various Switch formats yuzu supports, <a href='https://yuzu-emu.org/wiki/overview-of-switch-game-formats'>check out our wiki</a>. This message will not be shown again. このゲームでは、分解されたROMディレクトリフォーマットを使用しています。これは、NCA、NAX、XCI、またはNSPなどに取って代わられた古いフォーマットです。分解されたROMディレクトリには、アイコン、メタデータ、およびアップデートサポートがありません。<br><br>yuzuがサポートするSwitchフォーマットの説明については、<a href='https://yuzu-emu.org/wiki/overview-of-switch-game-formats'>wikiをチェックしてください</a>。このメッセージは二度と表示されません。 - - + + Error while loading ROM! ROMロード中にエラーが発生しました! - + The ROM format is not supported. このROMフォーマットはサポートされていません。 - + An error occurred initializing the video core. ビデオコア初期化中にエラーが発生しました。 @@ -5666,7 +5881,7 @@ Please go to Configure -> System -> Network and make a selection. yuzuは、ビデオコアの実行中にエラーが発生しました。これは通常、内蔵GPUも含め、古いGPUドライバが原因です。詳しくはログをご覧ください。ログへのアクセス方法については、以下のページをご覧ください:<a href='https://yuzu-emu.org/help/reference/log-files/'>ログファイルのアップロード方法について</a>。 - + Error while loading ROM! %1 %1 signifies a numeric error code. ROMのロード中にエラー! %1 @@ -5677,1027 +5892,921 @@ Please go to Configure -> System -> Network and make a selection. %1<br><a href='https://yuzu-emu.org/help/quickstart/'>yuzuクイックスタートガイド</a>を参照してファイルを再ダンプしてください。<br>またはyuzu wiki及び</a>yuzu Discord</a>を参照するとよいでしょう。 - + Vulkan initialization failed during boot.<br><br>Click <a href='https://eden-emulator.github.io/wiki/faq/#yuzu-starts-with-the-error-broken-vulkan-installation-detected'>here for instructions to fix the issue</a>. - - Game Updates Warning - - - - - The game you are trying to launch is known to have performance or booting issues when updates are applied. Please try increasing the memory layout to 6GB or 8GB if any issues occur.<br><br>Press "OK" to continue launching, or "Cancel" to cancel the launch. - - - - - Don't show again for this game - - - - - You are using the deconstructed ROM directory format for this game, which is an outdated format that has been superseded by others such as NCA, NAX, XCI, or NSP. Deconstructed ROM directories lack icons, metadata, and update support.<br><br>For an explanation of the various Switch formats eden supports, <a href='https://eden-emulator.github.io/wiki/overview-of-switch-game-formats'>check out our wiki</a>. This message will not be shown again. - - - - - eden has encountered an error while running the video core. This is usually caused by outdated GPU drivers, including integrated ones. Please see the log for more details. For more information on accessing the log, please see the following page: <a href='https://eden-emulator.github.io/help/reference/log-files/'>How to Upload the Log File</a>. - - - - - %1<br>Please redump your files or ask on Discord for help. - %1 signifies an error string. - - - - + An unknown error occurred. Please see the log for more details. 不明なエラーが発生しました。詳細はログを確認して下さい。 - + (64-bit) (64-bit) - + (32-bit) (32-bit) - + %1 %2 %1 is the title name. %2 indicates if the title is 64-bit or 32-bit %1 %2 - + Closing software... ソフトウェアを終了中... - + Save Data データのセーブ - + Mod Data Modデータ - + Error Opening %1 Folder ”%1”フォルダを開けませんでした - - + + Folder does not exist! フォルダが存在しません! - Error Opening Transferable Shader Cache - シェーダーキャッシュを開けませんでした + シェーダーキャッシュを開けませんでした - Failed to create the shader cache directory for this title. - このタイトル用のシェーダーキャッシュディレクトリの作成に失敗しました + このタイトル用のシェーダーキャッシュディレクトリの作成に失敗しました - Error Removing Contents - コンテンツの削除エラー + コンテンツの削除エラー - Error Removing Update - アップデートの削除エラー + アップデートの削除エラー - Error Removing DLC - DLC の削除エラー + DLC の削除エラー - + Remove Installed Game Contents? インストールされたゲームのコンテンツを削除しますか? - + Remove Installed Game Update? インストールされたゲームのアップデートを削除しますか? - + Remove Installed Game DLC? インストールされたゲームの DLC を削除しますか? - + Remove Entry エントリ削除 - - - - - - Successfully Removed - 削除しました + 削除しました - Successfully removed the installed base game. - インストールされたゲームを正常に削除しました。 + インストールされたゲームを正常に削除しました。 - The base game is not installed in the NAND and cannot be removed. - ゲームはNANDにインストールされていないため、削除できません。 + ゲームはNANDにインストールされていないため、削除できません。 - Successfully removed the installed update. - インストールされたアップデートを正常に削除しました。 + インストールされたアップデートを正常に削除しました。 - There is no update installed for this title. - このタイトルのアップデートはインストールされていません。 + このタイトルのアップデートはインストールされていません。 - There are no DLC installed for this title. - このタイトルにはDLCがインストールされていません。 + このタイトルにはDLCがインストールされていません。 - Successfully removed %1 installed DLC. - %1にインストールされたDLCを正常に削除しました。 + %1にインストールされたDLCを正常に削除しました。 - + Delete OpenGL Transferable Shader Cache? OpenGLシェーダーキャッシュを削除しますか? - + Delete Vulkan Transferable Shader Cache? Vulkanシェーダーキャッシュを削除しますか? - + Delete All Transferable Shader Caches? すべてのシェーダーキャッシュを削除しますか? - + Remove Custom Game Configuration? このタイトルのカスタム設定を削除しますか? - + Remove Cache Storage? キャッシュストレージを削除しますか? - + Remove File ファイル削除 - + Remove Play Time Data プレイ時間情報を削除 - + Reset play time? プレイ時間をリセットしますか? - - Error Removing Transferable Shader Cache - シェーダーキャッシュの削除エラー + シェーダーキャッシュの削除エラー - - A shader cache for this title does not exist. - このタイトル用のシェーダーキャッシュは存在しません。 + このタイトル用のシェーダーキャッシュは存在しません。 - Successfully removed the transferable shader cache. - シェーダーキャッシュを正常に削除しました。 + シェーダーキャッシュを正常に削除しました。 - Failed to remove the transferable shader cache. - シェーダーキャッシュの削除に失敗しました。 + シェーダーキャッシュの削除に失敗しました。 - - Error Removing Vulkan Driver Pipeline Cache - - - - - Failed to remove the driver pipeline cache. - - - - - Error Removing Transferable Shader Caches - シェーダーキャッシュの削除エラー + シェーダーキャッシュの削除エラー - Successfully removed the transferable shader caches. - シェーダーキャッシュを正常に削除しました。 + シェーダーキャッシュを正常に削除しました。 - Failed to remove the transferable shader cache directory. - シェーダーキャッシュディレクトリの削除に失敗しました。 + シェーダーキャッシュディレクトリの削除に失敗しました。 - - Error Removing Custom Configuration - カスタム設定の削除エラー + カスタム設定の削除エラー - A custom configuration for this title does not exist. - このタイトルのカスタム設定は存在しません。 + このタイトルのカスタム設定は存在しません。 - Successfully removed the custom game configuration. - カスタム設定を正常に削除しました。 + カスタム設定を正常に削除しました。 - Failed to remove the custom game configuration. - カスタム設定の削除に失敗しました。 + カスタム設定の削除に失敗しました。 - - + + RomFS Extraction Failed! RomFSの抽出に失敗しました! - + There was an error copying the RomFS files or the user cancelled the operation. RomFSファイルをコピー中にエラーが発生したか、ユーザー操作によりキャンセルされました。 - + Full フル - + Skeleton スケルトン - + Select RomFS Dump Mode RomFSダンプモードの選択 - + Please select the how you would like the RomFS dumped.<br>Full will copy all of the files into the new directory while <br>skeleton will only create the directory structure. RomFSのダンプ方法を選択してください。<br>”完全”はすべてのファイルが新しいディレクトリにコピーされます。<br>”スケルトン”はディレクトリ構造を作成するだけです。 - + There is not enough free space at %1 to extract the RomFS. Please free up space or select a different dump directory at Emulation > Configure > System > Filesystem > Dump Root %1 に RomFS を展開するための十分な空き領域がありません。Emulation > Configure > System > Filesystem > Dump Root で、空き容量を確保するか、別のダンプディレクトリを選択してください。 - + Extracting RomFS... RomFSを抽出中... - - - - - + + Cancel キャンセル - + RomFS Extraction Succeeded! RomFS抽出成功! - - - + The operation completed successfully. 操作は成功しました。 - Integrity verification couldn't be performed! - 整合性の確認を実行できませんでした! + 整合性の確認を実行できませんでした! - File contents were not checked for validity. - ファイルの妥当性は確認されませんでした. + ファイルの妥当性は確認されませんでした. - - Verifying integrity... - 整合性を確認中... + 整合性を確認中... - - Integrity verification succeeded! - 整合性の確認に成功しました! + 整合性の確認に成功しました! - - Integrity verification failed! - 整合性の確認に失敗しました! + 整合性の確認に失敗しました! - File contents may be corrupt. - ファイルが破損しているかもしれません。 + ファイルが破損しているかもしれません。 - - - - Create Shortcut - ショートカットを作成 + ショートカットを作成 - Do you want to launch the game in fullscreen? - フルスクリーンでゲームを起動しますか? + フルスクリーンでゲームを起動しますか? - Successfully created a shortcut to %1 - %1 へのショートカット作成に成功しました + %1 へのショートカット作成に成功しました - This will create a shortcut to the current AppImage. This may not work well if you update. Continue? - これにより、現在のAppImageへのショートカットが作成されます。アップデートした場合、うまく動作しなくなる可能性があります。続行しますか? + これにより、現在のAppImageへのショートカットが作成されます。アップデートした場合、うまく動作しなくなる可能性があります。続行しますか? - Failed to create a shortcut to %1 - %1 へのショートカット作成に失敗しました + %1 へのショートカット作成に失敗しました - Create Icon - アイコンを作成 + アイコンを作成 - - Cannot create icon file. Path "%1" does not exist and cannot be created. + + Warning: Outdated Game Format - + + You are using the deconstructed ROM directory format for this game, which is an outdated format that has been superseded by others such as NCA, NAX, XCI, or NSP. Deconstructed ROM directories lack icons, metadata, and update support.<br><br>For an explanation of the various Switch formats Eden supports, <a href='https://eden-emulator.github.io/wiki/overview-of-switch-game-formats'>check out our wiki</a>. This message will not be shown again. + + + + + Eden has encountered an error while running the video core. This is usually caused by outdated GPU drivers, including integrated ones. Please see the log for more details. For more information on accessing the log, please see the following page: <a href='https://yuzu-mirror.github.io/help/reference/log-files/'>How to Upload the Log File</a>. + + + + + %1<br>Please redump your files or ask on Discord/Revolt for help. + %1 signifies an error string. + + + + Error Opening %1 ”%1”を開けませんでした - + Select Directory ディレクトリの選択 - + Properties プロパティ - + The game properties could not be loaded. ゲームプロパティをロード出来ませんでした。 - + Switch Executable (%1);;All Files (*.*) %1 is an identifier for the Switch executable file extensions. Switch実行ファイル (%1);;すべてのファイル (*.*) - + Load File ファイルのロード - + Open Extracted ROM Directory 展開されているROMディレクトリを開く - + Invalid Directory Selected 無効なディレクトリが選択されました - + The directory you have selected does not contain a 'main' file. 選択されたディレクトリに”main”ファイルが見つかりませんでした。 - + Installable Switch File (*.nca *.nsp *.xci);;Nintendo Content Archive (*.nca);;Nintendo Submission Package (*.nsp);;NX Cartridge Image (*.xci) インストール可能なスイッチファイル (*.nca *.nsp *.xci);;任天堂コンテンツアーカイブ (*.nca);;任天堂サブミッションパッケージ (*.nsp);;NXカートリッジイメージ (*.xci) - + Install Files ファイルのインストール - + %n file(s) remaining 残り %n ファイル + 残り %n ファイル - + Installing file "%1"... "%1"ファイルをインストールしています・・・ - - + + Install Results インストール結果 - + To avoid possible conflicts, we discourage users from installing base games to the NAND. Please, only use this feature to install updates and DLC. 競合を避けるため、NANDにゲーム本体をインストールすることはお勧めしません。 この機能は、アップデートやDLCのインストールにのみ使用してください。 - + %n file(s) were newly installed - %n ファイルが新たにインストールされました - + %n ファイルが新たにインストールされました + %n ファイルが新たにインストールされました - + %n file(s) were overwritten - %n ファイルが上書きされました - + %n ファイルが上書きされました + %n ファイルが上書きされました - + %n file(s) failed to install - %n ファイルのインストールに失敗しました - + %n ファイルのインストールに失敗しました + %n ファイルのインストールに失敗しました - + System Application システムアプリケーション - + System Archive システムアーカイブ - + System Application Update システムアプリケーションアップデート - + Firmware Package (Type A) ファームウェアパッケージ(Type A) - + Firmware Package (Type B) ファームウェアパッケージ(Type B) - + Game ゲーム - + Game Update ゲームアップデート - + Game DLC ゲームDLC - + Delta Title 差分タイトル - + Select NCA Install Type... NCAインストール種別を選択・・・ - + Please select the type of title you would like to install this NCA as: (In most instances, the default 'Game' is fine.) インストールするNCAタイトル種別を選択して下さい: (ほとんどの場合、デフォルトの”ゲーム”で問題ありません。) - + Failed to Install インストール失敗 - + The title type you selected for the NCA is invalid. 選択されたNCAのタイトル種別が無効です。 - + File not found ファイルが存在しません - + File "%1" not found ファイル”%1”が存在しません - + OK OK - - + + Hardware requirements not met - - + + Your system does not meet the recommended hardware requirements. Compatibility reporting has been disabled. お使いのシステムは推奨ハードウェア要件を満たしていません。互換性レポートは無効になっています。 - + Missing yuzu Account yuzuアカウントが存在しません - - In order to submit a game compatibility test case, you must link your eden account.<br><br/>To link your eden account, go to Emulation &gt; Configuration &gt; Web. + + In order to submit a game compatibility test case, you must set up your web token and username.<br><br/>To link your eden account, go to Emulation &gt; Configuration &gt; Web. - - Install decryption keys and restart eden before attempting to install firmware. + + Select Dumped Firmware ZIP - - Firmware installation cancelled, firmware may be in bad state, restart eden or re-install firmware. + + Zipped Archives (*.zip) - - Encryption keys are missing. + + Firmware cleanup failed - - Are you sure you want to close eden? + + Failed to clean up extracted firmware cache. +Check write permissions in the system temp directory and try again. +OS reported error: %1 - - - - eden + + Please install firmware to use the Album applet. - - The currently running application has requested eden to not exit. + + Please install firmware to use the Cabinet applet. + + + + + Please install firmware to use the Mii editor. + + + + + Please install firmware to use the Controller Menu. + + + + + Please install firmware to use the Home Menu. + + + + + Firmware Corrupted + + + + + Firmware Too New + + + + + +Continue anyways? + + + + + Don't show again + + + + + Please install firmware to use Starter. + + + + + Are you sure you want to close Eden? + + + + + + + Eden + + + + + The currently running application has requested Eden to not exit. Would you like to bypass this and exit anyway? + + + Encryption keys are missing. + + In order to submit a game compatibility test case, you must link your yuzu account.<br><br/>To link your yuzu account, go to Emulation &gt; Configuration &gt; Web. ゲームの互換性テストケースを送信するには、yuzuアカウントをリンクする必要があります。<br><br/>yuzuアカウントをリンクするには、エミュレーション > 設定 > Web から行います。 - + Error opening URL URLオープンエラー - + Unable to open the URL "%1". URL"%1"を開けません。 - + TAS Recording TAS 記録中 - + Overwrite file of player 1? プレイヤー1のファイルを上書きしますか? - + Invalid config detected 無効な設定を検出しました - + Handheld controller can't be used on docked mode. Pro controller will be selected. 携帯コントローラはドックモードで使用できないため、Proコントローラが選択されます。 - - + + Amiibo Amiibo - - + + The current amiibo has been removed 現在の amiibo は削除されました - + Error エラー - - + + The current game is not looking for amiibos 現在のゲームはamiiboを要求しません - + Amiibo File (%1);; All Files (*.*) amiiboファイル (%1);;すべてのファイル (*.*) - + Load Amiibo amiiboのロード - + Error loading Amiibo data amiiboデータ読み込み中にエラーが発生しました - + The selected file is not a valid amiibo 選択されたファイルは有効な amiibo ではありません - + The selected file is already on use 選択されたファイルはすでに使用中です - + An unknown error occurred 不明なエラーが発生しました - - Verification failed for the following files: %1 - 以下のファイルの確認に失敗しました: + 以下のファイルの確認に失敗しました: %1 - + + Keys not installed - + + + Install decryption keys and restart Eden before attempting to install firmware. + + + + Select Dumped Firmware Source Location - - Installing Firmware... - - - - - - - - Firmware install failed - - - - - Unable to locate potential firmware NCA files - - - - - Failed to delete one or more firmware file. - - - - - One or more firmware files failed to copy into NAND. - - - - - Firmware integrity verification failed! - - - - - Select Dumped Keys Location - - - - - - - Decryption Keys install failed - - - - - prod.keys is a required decryption key file. - - - - - One or more keys failed to copy. - - - - - Decryption Keys install succeeded - - - - - Decryption Keys were successfully installed - - - - - Decryption Keys failed to initialize. Check that your dumping tools are up to date and re-dump keys. - - - - - - - - - - + + + + + + No firmware available ファームウェアがありません - Please install the firmware to use the Album applet. - アルバム アプレットを使用するにはファームウェアをインストールしてください. + アルバム アプレットを使用するにはファームウェアをインストールしてください. - + Album Applet アルバムアプレット - + Album applet is not available. Please reinstall firmware. アルバムアプレットは利用可能ではありません. ファームウェアを再インストールしてください. - - Please install the firmware to use the Cabinet applet. - - - - + Cabinet Applet キャビネットアプレット - + Cabinet applet is not available. Please reinstall firmware. キャビネットアプレットは利用可能ではありません. ファームウェアを再インストールしてください. - Please install the firmware to use the Mii editor. - Mii エディタを使用するにはファームウェアをインストールしてください. + Mii エディタを使用するにはファームウェアをインストールしてください. - + Mii Edit Applet Mii 編集アプレット - + Mii editor is not available. Please reinstall firmware. Mii エディタは利用可能ではありません. ファームウェアを再インストールしてください. - Please install the firmware to use the Controller Menu. - コントローラーメニューを使用するにはファームウェアをインストールしてください. + コントローラーメニューを使用するにはファームウェアをインストールしてください. - + Controller Applet コントローラー アプレット - + Controller Menu is not available. Please reinstall firmware. コントローラーメニューは利用可能ではありません. ファームウェアを再インストールしてください. - - Please install the firmware to use the Home Menu. - - - - - + Home Menu Applet - - + Home Menu is not available. Please reinstall firmware. - - Please install the firmware to use Starter. - - - - + Starter Applet - + Starter is not available. Please reinstall firmware. - - Please install firmware to use the home menu. - - - - + Capture Screenshot スクリーンショットのキャプチャ - + PNG Image (*.png) PNG画像 (*.png) - + Update Available - + Update %1 for Eden is available. Would you like to download it? - + TAS state: Running %1/%2 TAS 状態: 実行中 %1/%2 - + TAS state: Recording %1 TAS 状態: 記録中 %1 - + TAS state: Idle %1/%2 TAS 状態: アイドル %1/%2 - + TAS State: Invalid TAS 状態: 無効 - + &Stop Running 実行停止(&S) - + &Start 実行(&S) - + Stop R&ecording 記録停止(&R) - + R&ecord 記録(&R) - + Building: %n shader(s) 構築中: %n 個のシェーダー + 構築中: %n 個のシェーダー - + Scale: %1x %1 is the resolution scaling factor 拡大率: %1x - + Speed: %1% / %2% 速度:%1% / %2% - + Speed: %1% 速度:%1% @@ -6706,54 +6815,54 @@ Would you like to download it? Game: %1 FPS(制限解除) - + Game: %1 FPS ゲーム:%1 FPS - + Frame: %1 ms フレーム:%1 ms - + %1 %2 %1 %2 - - + + FSR FSR - + NO AA NO AA - + VOLUME: MUTE 音量: ミュート - + VOLUME: %1% Volume percentage (e.g. 50%) 音量: %1% - + Derivation Components Missing 派生コンポーネントがありません - + Select RomFS Dump Target RomFSダンプターゲットの選択 - + Please select which RomFS you would like to dump. ダンプしたいRomFSを選択して下さい。 @@ -6766,7 +6875,7 @@ Would you like to download it? yuzu - + Are you sure you want to stop the emulation? Any unsaved progress will be lost. エミュレーションを停止しますか?セーブされていない進行状況は失われます。 @@ -6779,102 +6888,102 @@ Would you like to bypass this and exit anyway? 無視してとにかく終了しますか? - + None なし - + FXAA FXAA - + SMAA SMAA - + Nearest Nearest - + Bilinear Bilinear - + Bicubic Bicubic - + Gaussian Gaussian - + ScaleForce ScaleForce - + Area - + Docked Docked - + Handheld 携帯モード - + Normal 標準 - + High 高い - + Extreme - + Vulkan Vulkan - + OpenGL OpenGL - + Null - + GLSL GLSL - + GLASM GLASM - + SPIRV SPIRV @@ -6882,13 +6991,13 @@ Would you like to bypass this and exit anyway? GRenderWindow - - + + OpenGL not available! OpenGLは使用できません! - + OpenGL shared contexts are not supported. @@ -6897,33 +7006,33 @@ Would you like to bypass this and exit anyway? yuzuはOpenGLサポート付きでコンパイルされていません。 - - eden has not been compiled with OpenGL support. + + Eden has not been compiled with OpenGL support. - - + + 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.6! OpenGL4.6初期化エラー! - + Your GPU may not support OpenGL 4.6, or you do not have the latest graphics driver.<br><br>GL Renderer:<br>%1 GPUがOpenGL4.6をサポートしていないか、グラフィックスドライバーが最新ではありません。<br><br>GL レンダラ:<br>%1 - + Your GPU may not support one or more required OpenGL extensions. Please ensure you have the latest graphics driver.<br><br>GL Renderer:<br>%1<br><br>Unsupported extensions:<br>%2 GPUが1つ以上の必要なOpenGL拡張機能をサポートしていない可能性があります。最新のグラフィックドライバを使用していることを確認してください。<br><br>GL レンダラ:<br>%1<br><br>サポートされていない拡張機能:<br>%2 @@ -6931,128 +7040,128 @@ Would you like to bypass this and exit anyway? GameList - + Favorite お気に入り - + Start Game ゲームを開始 - + Start Game without Custom Configuration カスタム設定なしでゲームを開始 - + Open Save Data Location セーブデータディレクトリを開く - + Open Mod Data Location Modデータディレクトリを開く - + Open Transferable Pipeline Cache パイプラインキャッシュを開く - + Remove 削除 - + Remove Installed Update インストールされているアップデートを削除 - + Remove All Installed DLC 全てのインストールされているDLCを削除 - + Remove Custom Configuration カスタム設定を削除 - + Remove Play Time Data プレイ時間情報を削除 - + Remove Cache Storage キャッシュストレージを削除 - + Remove OpenGL Pipeline Cache OpenGLパイプラインキャッシュを削除 - + Remove Vulkan Pipeline Cache Vulkanパイプラインキャッシュを削除 - + Remove All Pipeline Caches すべてのパイプラインキャッシュを削除 - + Remove All Installed Contents 全てのインストールされているコンテンツを削除 - + Dump RomFS RomFSをダンプ - + Dump RomFS to SDMC RomFSをSDMCにダンプ - + Verify Integrity 整合性を確認 - + Copy Title ID to Clipboard タイトルIDをクリップボードへコピー - + Navigate to GameDB entry GameDBエントリを表示 - + Create Shortcut ショートカットを作成 - + Add to Desktop デスクトップに追加 - + Add to Applications Menu アプリケーションメニューに追加 - + Configure Game @@ -7061,62 +7170,62 @@ Would you like to bypass this and exit anyway? プロパティ - + Scan Subfolders サブフォルダをスキャンする - + Remove Game Directory ゲームディレクトリを削除する - + ▲ Move Up ▲ 上へ移動 - + ▼ Move Down ▼ 下へ移動 - + Open Directory Location ディレクトリの場所を開く - + Clear クリア - + Name ゲーム名 - + Compatibility 互換性 - + Add-ons アドオン - + File type ファイル種別 - + Size ファイルサイズ - + Play time プレイ時間 @@ -7124,62 +7233,62 @@ Would you like to bypass this and exit anyway? GameListItemCompat - + Ingame - + Game starts, but crashes or major glitches prevent it from being completed. ゲームは始まるが、クラッシュや大きな不具合でクリアできない。 - + Perfect カンペキ - + Game can be played without issues. ゲームは問題なくプレイできる。 - + Playable プレイ可 - + Game functions with minor graphical or audio glitches and is playable from start to finish. ゲームは、グラフィックやオーディオに小さな不具合はあるが、最初から最後までプレイできる。 - + Intro/Menu イントロ - + Game loads, but is 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. このゲームはまだテストされていません。 @@ -7187,7 +7296,7 @@ Would you like to bypass this and exit anyway? GameListPlaceholder - + Double-click to add a new folder to the game list 新しいゲームリストフォルダを追加するにはダブルクリックしてください。 @@ -7195,19 +7304,20 @@ Would you like to bypass this and exit anyway? GameListSearchField - + %1 of %n result(s) + - + Filter: フィルター: - + Enter pattern to filter フィルターパターンを入力 @@ -7289,7 +7399,7 @@ Would you like to bypass this and exit anyway? - Failed to announce the room to the public lobby. In order to host a room publicly, you must have a valid eden account configured in Emulation -> Configure -> Web. If you do not want to publish a room in the public lobby, then select Unlisted instead. + Failed to announce the room to the public lobby. In order to host a room publicly, you must have a valid Eden 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: @@ -7303,190 +7413,190 @@ Debug Message: Hotkeys - + Audio Mute/Unmute 音声ミュート/解除 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Main Window メイン画面 - + Audio Volume Down 音量を下げる - + Audio Volume Up 音量を上げる - + Capture Screenshot スクリーンショットを撮る - + Change Adapting Filter 適応フィルターの変更 - + Change Docked Mode ドックモードを変更 - + Change GPU Accuracy GPU精度を変更 - + Configure 設定 - + Configure Current Game - + Continue/Pause Emulation エミュレーションの一時停止/再開 - + Exit Fullscreen フルスクリーンをやめる + + + Exit Eden + + Exit yuzu yuzuを終了 - - Exit eden - - - - + Fullscreen フルスクリーン - + Load File ファイルのロード - + Load/Remove Amiibo 読み込み/解除 Amiibo - + Multiplayer Browse Public Game Lobby - + Multiplayer Create Room - + Multiplayer Direct Connect to Room - + Multiplayer Leave Room - + Multiplayer Show Current Room - + Restart Emulation エミュレーションをリスタート - + Stop Emulation エミュレーションをやめる - + TAS Record TAS 記録 - + TAS Reset TAS リセット - + TAS Start/Stop TAS 開始/停止 - + Toggle Filter Bar フィルターバー切り替え - + Toggle Framerate Limit フレームレート制限切り替え - + Toggle Mouse Panning - + Toggle Renderdoc Capture - + Toggle Status Bar ステータスバー切り替え @@ -7494,22 +7604,22 @@ Debug Message: InstallDialog - + Please confirm these are the files you wish to install. これらがインストールするファイルであることを確認してください。 - + Installing an Update or DLC will overwrite the previously installed one. アップデート、またはDLCをインストールすると、以前にインストールしたものが上書きされます。 - + Install インストール - + Install Files to NAND ファイルをNANDへインストール @@ -7517,7 +7627,7 @@ Debug Message: LimitableInputDialog - + The text can't contain any of the following characters: %1 テキストに以下の文字を含めることはできません: @@ -7664,152 +7774,207 @@ Debug Message: 最近のファイル(&R) - + + Open &Eden Folders + + + + &Emulation エミュレーション(&E) - + &View 表示(&V) - + &Reset Window Size ウィンドウサイズのリセット(&R) - + &Debugging デバッグ(&D) - + Reset Window Size to &720p &720P - + Reset Window Size to 720p ウィンドウサイズを720Pにリセット - + Reset Window Size to &900p &900P - + Reset Window Size to 900p ウィンドウサイズを900Pにリセット - + Reset Window Size to &1080p &1080P - + Reset Window Size to 1080p ウィンドウサイズを1080Pにリセット - + &Multiplayer マルチプレイヤー (&M) - + &Tools ツール(&T) - + &Amiibo &Amiibo - + &TAS &TAS - + &Create Home Menu Shortcut - + &Help ヘルプ(&H) - + &Install Files to NAND... ファイルをNANDにインストール...(&I) - + L&oad File... ファイルをロード...(&L) - + Load &Folder... フォルダをロード...(&F) - + E&xit 終了(&E) - + &Pause 中断(&P) - + &Stop 停止(&S) - + &Verify Installed Contents インストールされたコンテンツを確認(&V) - - &About eden + + &Root Data Folder - - Open &eden Folder + + &NAND Folder - + + &SDMC Folder + + + + + &Mod Folder + + + + + &Log Folder + + + + + From Folder + + + + + From ZIP + + + + + &X + + + + + X (Twitter) + + + + + &Revolt + + + + + Revolt + + + + + &Eden Dependencies + + + + Open Home Menu - + &Discord - + Open &Setup - + &Desktop - + &Application Menu @@ -7818,97 +7983,97 @@ Debug Message: yuzuについて(&A) - + Single &Window Mode シングルウィンドウモード(&W) - + Con&figure... 設定...(&F) - + Ctrl+, - + Display D&ock Widget Headers ドックウィジェットヘッダ(&O) - + Show &Filter Bar フィルターバーを表示 (&F) - + Show &Status Bar ステータスバー(&S) - + Show Status Bar ステータスバーの表示 - + &Browse Public Game Lobby 公開ゲームロビーを参照 (&B) - + &Create Room ルームを作成 (&C) - + &Leave Room ルームを退出 (&L) - + &Direct Connect to Room ルームに直接接続 (&D) - + &Show Current Room 現在のルームを表示 (&S) - + F&ullscreen 全画面表示(&F) - + &Restart 再実行(&R) - + Load/Remove &Amiibo... &Amiibo をロード/削除... - + &Report Compatibility 互換性を報告(&R) - + Open &Mods Page &Modページを開く - + Open &Quickstart Guide クイックスタートガイドを開く(&Q) - + &FAQ &FAQ @@ -7917,77 +8082,82 @@ Debug Message: &yuzuフォルダを開く - + &Capture Screenshot スクリーンショットをキャプチャ(&C) - + Open &Album アルバムを開く (&A) - + &Set Nickname and Owner オーナーとニックネームを設定 (&S) - + &Delete Game Data ゲームデータの消去 (&D) - + &Restore Amiibo Amiibo を復旧 (&R) - + &Format Amiibo Amiibo を初期化(&F) - + Open &Mii Editor &Mii エディタを開く - + &Configure TAS... TASを設定... (&C) - + Configure C&urrent Game... 現在のゲームを設定...(&U) - + &Start 実行(&S) - + &Reset リセット(&R) - + R&ecord 記録(&R) - + Open &Controller Menu コントローラーメニューを開く (&C) - + Install Firmware - + + &About Eden + + + + Install Decryption Keys @@ -7995,26 +8165,36 @@ Debug Message: MicroProfileDialog - &MicroProfile - &MicroProfile + &MicroProfile MigrationWorker - + Data was migrated successfully. - + Linking the old directory failed. You may need to re-run with administrative privileges on Windows. OS gave error: %1 - + + + +Note that your configuration and data will be shared with %1. +If this is not desirable, delete the following files: +%2 +%3 +%4 + + + + If you wish to clean up the files which were left in the old data location, you can do so by deleting the following directory: @@ -8074,37 +8254,37 @@ If you wish to clean up the files which were left in the old data location, you MultiplayerState - + Current connection status 現在の接続状態 - + Not Connected. Click here to find a room! 接続されていません。ここをクリックしてルームを見つけてください。 - + Not Connected 未接続 - + Connected 接続の状態 - + New Messages Received 新たなメッセージを受信しました - + Error エラー - + Failed to update the room information. Please check your Internet connection and try hosting the room again. Debug Message: ルーム情報の更新に失敗しました。インターネット接続を確認し、再度ルームのホストをお試しください。 @@ -8290,56 +8470,56 @@ p, li { white-space: pre-wrap; } - + Installed SD Titles インストール済みSDタイトル - + Installed NAND Titles インストール済みNANDタイトル - + System Titles システムタイトル - + Add New Game Directory 新しいゲームディレクトリを追加する - + Favorites お気に入り - - + + Shift Shift - - + + Ctrl Ctrl - - + + Alt Alt - - - - + + + + [not set] [未設定] @@ -8350,14 +8530,14 @@ p, li { white-space: pre-wrap; } 十字キー %1 %2 - - - - - - - - + + + + + + + + Axis %1%2 スティック %1%2 @@ -8368,357 +8548,357 @@ p, li { white-space: pre-wrap; } ボタン %1 - - - - - - + + + + + + [unknown] [不明] - - - + + + Left - - - + + + Right - - - + + + Down - - - + + + Up - - + + Z Z - - + + R R - - + + L L - - + + A A - - + + B B - - + + X X - - + + Y Y - - + + Start 開始 - - + + L1 L1 - - + + L2 L2 - - + + L3 L3 - - + + R1 R1 - - + + R2 R2 - - + + R3 R3 - - + + Circle マル - - + + Cross バツ - - + + Square 四角 - - + + Triangle 三角 - - + + Share Share - - + + Options Options - - + + [undefined] [未定義] - + %1%2 %1%2 - - + + [invalid] [無効] - - + + %1%2Hat %3 - - - + + + %1%2Axis %3 - - + + %1%2Axis %3,%4,%5 - - + + %1%2Motion %3 %1%2モーション %3 - - + + %1%2Button %3 %1%2ボタン %3 - - + + [unused] [未使用] - + ZR ZR - + ZL ZL - + SR SR - + SL SL - + Stick L L スティック - + Stick R R スティック - + Plus + - + Minus - - - + + Home HOME - + Capture キャプチャ - + Touch タッチの設定 - + Wheel Indicates the mouse wheel ホイール - + Backward 後ろ - + Forward - + Task タスク - + Extra - + %1%2%3%4 %1%2%3%4 - - + + %1%2%3Hat %4 - - + + %1%2%3Axis %4 - - + + %1%2%3Button %4 %1%2%3ボタン %4 - - + + Migration - + - - + + No - + You can manually re-trigger this prompt by deleting the new config directory: %1 - + Migrating - + Migrating, this may take a while... @@ -8836,6 +9016,300 @@ p, li { white-space: pre-wrap; } + + QtCommon::Content + + + Installing Firmware... + + + + + + + Cancel + キャンセル + + + + Firmware integrity verification failed! + + + + + + Verification failed for the following files: + +%1 + 以下のファイルの確認に失敗しました: + +%1 + + + + + Verifying integrity... + 整合性を確認中... + + + + + Integrity verification succeeded! + 整合性の確認に成功しました! + + + + + The operation completed successfully. + + + + + + Integrity verification failed! + 整合性の確認に失敗しました! + + + + File contents may be corrupt or missing. + + + + + Integrity verification couldn't be performed + + + + + Firmware installation cancelled, firmware may be in a bad state or corrupted. File contents could not be checked for validity. + + + + + Select Dumped Keys Location + + + + + Decryption Keys install succeeded + + + + + Decryption Keys were successfully installed + + + + + Decryption Keys install failed + + + + + QtCommon::Game + + + Error Removing Contents + コンテンツの削除エラー + + + + Error Removing Update + アップデートの削除エラー + + + + Error Removing DLC + DLC の削除エラー + + + + The base game is not installed in the NAND and cannot be removed. + ゲームはNANDにインストールされていないため、削除できません。 + + + + There is no update installed for this title. + このタイトルのアップデートはインストールされていません。 + + + + There are no DLCs installed for this title. + + + + + + + + Successfully Removed + 削除しました + + + + Successfully removed %1 installed DLC. + %1にインストールされたDLCを正常に削除しました。 + + + + + Error Removing Transferable Shader Cache + シェーダーキャッシュの削除エラー + + + + + A shader cache for this title does not exist. + このタイトル用のシェーダーキャッシュは存在しません。 + + + + Successfully removed the transferable shader cache. + シェーダーキャッシュを正常に削除しました。 + + + + Failed to remove the transferable shader cache. + シェーダーキャッシュの削除に失敗しました。 + + + + Error Removing Vulkan Driver Pipeline Cache + + + + + Failed to remove the driver pipeline cache. + + + + + + Error Removing Transferable Shader Caches + シェーダーキャッシュの削除エラー + + + + Successfully removed the transferable shader caches. + シェーダーキャッシュを正常に削除しました。 + + + + Failed to remove the transferable shader cache directory. + シェーダーキャッシュディレクトリの削除に失敗しました。 + + + + + Error Removing Custom Configuration + カスタム設定の削除エラー + + + + A custom configuration for this title does not exist. + このタイトルのカスタム設定は存在しません。 + + + + Successfully removed the custom game configuration. + カスタム設定を正常に削除しました。 + + + + Failed to remove the custom game configuration. + カスタム設定の削除に失敗しました。 + + + + Reset Metadata Cache + メタデータのキャッシュをクリア + + + + The metadata cache is already empty. + メタデータのキャッシュはすでに空です。 + + + + The operation completed successfully. + + + + + The metadata cache couldn't be deleted. It might be in use or non-existent. + メタデータのキャッシュを削除できませんでした。使用中か存在していない可能性があります。 + + + + Create Shortcut + ショートカットを作成 + + + + Do you want to launch the game in fullscreen? + フルスクリーンでゲームを起動しますか? + + + + Shortcut Created + + + + + Successfully created a shortcut to %1 + %1 へのショートカット作成に成功しました + + + + Shortcut may be Volatile! + + + + + This will create a shortcut to the current AppImage. This may not work well if you update. Continue? + これにより、現在のAppImageへのショートカットが作成されます。アップデートした場合、うまく動作しなくなる可能性があります。続行しますか? + + + + Failed to Create Shortcut + + + + + Failed to create a shortcut to %1 + %1 へのショートカット作成に失敗しました + + + + Create Icon + アイコンを作成 + + + + Cannot create icon file. Path "%1" does not exist and cannot be created. + + + + + No firmware available + ファームウェアがありません + + + + Please install firmware to use the home menu. + + + + + Home Menu Applet + + + + + Home Menu is not available. Please reinstall firmware. + + + QtControllerSelectorDialog @@ -9131,7 +9605,7 @@ Please try again or contact the developer of the software. QtProfileSelectionDialog - + %1 %2 %1 is the profile username, %2 is the formatted UUID (e.g. 00112233-4455-6677-8899-AABBCCDDEEFF)) @@ -9139,7 +9613,7 @@ Please try again or contact the developer of the software. %2 - + Users ユーザー @@ -9263,7 +9737,7 @@ p, li { white-space: pre-wrap; } WaitTreeCallstack - + Call stack Call stack @@ -9271,12 +9745,12 @@ p, li { white-space: pre-wrap; } WaitTreeSynchronizationObject - + [%1] %2 [%1] %2 - + waited by no thread waited by no thread @@ -9284,102 +9758,102 @@ p, li { white-space: pre-wrap; } WaitTreeThread - + runnable runnable - + paused paused - + sleeping sleeping - + waiting for IPC reply waiting for IPC reply - + waiting for objects waiting for objects - + waiting for condition variable waiting for condition variable - + waiting for address arbiter waiting for address arbiter - + waiting for suspend resume waiting for suspend resume - + waiting waiting - + initialized initialized - + terminated terminated - + unknown unknown - + PC = 0x%1 LR = 0x%2 PC = 0x%1 LR = 0x%2 - + ideal ideal - + core %1 core %1 - + processor = %1 processor = %1 - + affinity mask = %1 affinity mask = %1 - + thread id = %1 thread id = %1 - + priority = %1(current) / %2(normal) priority = %1(current) / %2(normal) - + last running ticks = %1 last running ticks = %1 @@ -9387,7 +9861,7 @@ p, li { white-space: pre-wrap; } WaitTreeThreadList - + waited by thread waited by thread @@ -9395,7 +9869,7 @@ p, li { white-space: pre-wrap; } WaitTreeWidget - + &Wait Tree &Wait Tree diff --git a/dist/languages/ko_KR.ts b/dist/languages/ko_KR.ts index 554d4cf9fc..149c9af049 100644 --- a/dist/languages/ko_KR.ts +++ b/dist/languages/ko_KR.ts @@ -13,12 +13,12 @@ - About eden + About Eden - <html><head/><body><p><span style=" font-size:28pt;">eden</span></p></body></html> + <html><head/><body><p><span style=" font-size:28pt;">Eden</span></p></body></html> @@ -34,8 +34,8 @@ p, li { white-space: pre-wrap; } hr { height: 1px; border-width: 0; } li.unchecked::marker { content: "\2610"; } li.checked::marker { content: "\2612"; } -</style></head><body style=" font-family:'Adwaita Sans'; font-size:11pt; font-weight:400; font-style:normal;"> -<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;">eden is an experimental open-source emulator for the Nintendo Switch licensed under GPLv3.0+ which is based on the yuzu emulator which ended development back in March 2024. <br /><br />This software should not be used to play games you have not legally obtained.</span></p></body></html> +</style></head><body style=" font-family:'Noto Sans'; font-size:9pt; font-weight:400; font-style:normal;"> +<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;">Eden is an experimental open-source emulator for the Nintendo Switch licensed under GPLv3.0+ which is based on the yuzu emulator which ended development back in March 2024. <br /><br />This software should not be used to play games you have not legally obtained.</span></p></body></html> @@ -72,32 +72,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 확인 @@ -397,439 +397,157 @@ This would ban both their forum username and their IP address. ConfigurationShared - + % % - - Amiibo editor - - - - - Controller configuration - - - - - Data erase - - - - + Error 오류 - - Net connect - - - - - Player select - - - - + Software keyboard 소프트웨어 키보드 - - Mii Edit - - - - - Online web - - - - - Shop - - - - - Photo viewer - - - - - Offline web - - - - - Login share - - - - - Wifi web auth - - - - - My page - - - - + Output Engine: 출력 엔진: - + Output Device: 출력 장치: - + Input Device: 입력 장치: - - Mute audio - - - - + Volume: 볼륨: - + Mute audio when in background 백그라운드에서 오디오 음소거 - + Multicore CPU Emulation 멀티 코어 CPU 에뮬레이션 - - This option increases CPU emulation thread use from 1 to the Switch’s maximum of 4. -This is mainly a debug option and shouldn’t be disabled. - - - - - Memory Layout - - - - - Increases the amount of emulated RAM from the stock 4GB of the retail Switch to the developer kit's 8/6GB. -It’s doesn’t improve stability or performance and is intended to let big texture mods fit in emulated RAM. -Enabling it will increase memory use. It is not recommended to enable unless a specific game with a texture mod needs it. - - - - + Limit Speed Percent 속도 퍼센트 제한 - - Controls the game's maximum rendering speed, but it’s up to each game if it runs faster or not. -200% for a 30 FPS game is 60 FPS, and for a 60 FPS game it will be 120 FPS. -Disabling it means unlocking the framerate to the maximum your PC can reach. - - - - - Synchronize Core Speed - - - - - Synchronizes CPU core speed with the game's maximum rendering speed to boost FPS without affecting game speed (animations, physics, etc.). -Compatibility varies by game; many (especially older ones) may not respond well. -Can help reduce stuttering at lower framerates. - - - - + Accuracy: 정확도: - - This setting controls the accuracy of the emulated CPU. -Don't change this unless you know what you are doing. - - - - - - Backend: - - - - - Fast CPU Time - - - - - Overclocks the emulated CPU to remove some FPS limiters. Weaker CPUs may see reduced performance, and certain games may behave improperly. -Use Boost (1700MHz) to run at the Switch's highest native clock, or Fast (2000MHz) to run at 2x clock. - - - - + Unfuse FMA (improve performance on CPUs without FMA) FMA 분리 (FMA를 지원하지 않는 CPU에서의 성능을 향상시킵니다) - - This option improves speed by reducing accuracy of fused-multiply-add instructions on CPUs without native FMA support. - - - - + Faster FRSQRTE and FRECPE 더 빠른 FRSQRTE와 FRECPE - - This option improves the speed of some approximate floating-point functions by using less accurate native approximations. - - - - + Faster ASIMD instructions (32 bits only) 더 빠른 ASIMD 명령어(32비트 전용) - - This option improves the speed of 32 bits ASIMD floating-point functions by running with incorrect rounding modes. - - - - + Inaccurate NaN handling 부정확한 NaN 처리 - - This option improves speed by removing NaN checking. -Please note this also reduces accuracy of certain floating-point instructions. - - - - + Disable address space checks 주소 공간 검사 비활성화 - - This option improves speed by eliminating a safety check before every memory read/write in guest. -Disabling it may allow a game to read/write the emulator's memory. - - - - + Ignore global monitor 글로벌 모니터 무시 - - This option improves speed by relying only on the semantics of cmpxchg to ensure safety of exclusive access instructions. -Please note this may result in deadlocks and other race conditions. - - - - + API: API: - - Switches between the available graphics APIs. -Vulkan is recommended in most cases. - - - - + Device: 장치: - - This setting selects the GPU to use with the Vulkan backend. - - - - + Shader Backend: 셰이더 백엔드: - - The shader backend to use for the OpenGL renderer. -GLSL is the fastest in performance and the best in rendering accuracy. -GLASM is a deprecated NVIDIA-only backend that offers much better shader building performance at the cost of FPS and rendering accuracy. -SPIR-V compiles the fastest, but yields poor results on most GPU drivers. - - - - + Resolution: 해상도: - - Forces the game to render at a different resolution. -Higher resolutions require much more VRAM and bandwidth. -Options lower than 1X can cause rendering issues. - - - - + Window Adapting Filter: 윈도우 적응형 필터: - + FSR Sharpness: FSR 선명도: - - Determines how sharpened the image will look while using FSR’s dynamic contrast. - - - - + Anti-Aliasing Method: 안티에일리어싱 방식: - - The anti-aliasing method to use. -SMAA offers the best quality. -FXAA has a lower performance impact and can produce a better and more stable picture under very low resolutions. - - - - + Fullscreen Mode: 전체 화면 모드: - - The method used to render the window in fullscreen. -Borderless offers the best compatibility with the on-screen keyboard that some games request for input. -Exclusive fullscreen may offer better performance and better Freesync/Gsync support. - - - - + Aspect Ratio: 화면비: - - Stretches the game to fit the specified aspect ratio. -Switch games only support 16:9, so custom game mods are required to get other ratios. -Also controls the aspect ratio of captured screenshots. - - - - + Use disk pipeline cache 디스크 파이프라인 캐시 사용 - - Allows saving shaders to storage for faster loading on following game boots. -Disabling it is only intended for debugging. - - - - - Optimize SPIRV output shader - - - - - Runs an additional optimization pass over generated SPIRV shaders. -Will increase time required for shader compilation. -May slightly improve performance. -This feature is experimental. - - - - + Use asynchronous GPU emulation 비동기 GPU 에뮬레이션 사용 - - Uses an extra CPU thread for rendering. -This option should always remain enabled. - - - - + NVDEC emulation: NVDEC 에뮬레이션: - - Specifies how videos should be decoded. -It can either use the CPU or the GPU for decoding, or perform no decoding at all (black screen on videos). -In most cases, GPU decoding provides the best performance. - - - - - ASTC Decoding Method: - - - - - This option controls how ASTC textures should be decoded. -CPU: Use the CPU for decoding, slowest but safest method. -GPU: Use the GPU's compute shaders to decode ASTC textures, recommended for most games and users. -CPU Asynchronously: Use the CPU to decode ASTC textures as they arrive. Completely eliminates ASTC decoding -stuttering at the cost of rendering issues while the texture is being decoded. - - - - - ASTC Recompression Method: - - - - - Almost all desktop and laptop dedicated GPUs lack support for ASTC textures, forcing the emulator to decompress to an intermediate format any card supports, RGBA8. -This option recompresses RGBA8 to either the BC1 or BC3 format, saving VRAM but negatively affecting image quality. - - - - - VRAM Usage Mode: - - - - - Selects whether the emulator should prefer to conserve memory or make maximum usage of available video memory for performance. Has no effect on integrated graphics. Aggressive mode may severely impact the performance of other applications such as recording software. - - - - + VSync Mode: VSync 모드: - + FIFO (VSync) does not drop frames or exhibit tearing but is limited by the screen refresh rate. FIFO Relaxed is similar to FIFO but allows tearing as it recovers from a slow down. Mailbox can have lower latency than FIFO and does not tear but may drop frames. @@ -840,62 +558,34 @@ FIFO 릴랙스드는 FIFO와 유사하지만 속도가 느려진 후 복구할 즉시 (동기화 없음)는 사용 가능한 모든 것을 표시하며 티어링이 나타날 수 있습니다. - + Enable asynchronous presentation (Vulkan only) 비동기 프레젠테이션 활성화(Vulkan만 해당) - - Slightly improves performance by moving presentation to a separate CPU thread. - - - - + Force maximum clocks (Vulkan only) 강제 최대 클록 (Vulkan 전용) - + Runs work in the background while waiting for graphics commands to keep the GPU from lowering its clock speed. 실행은 GPU가 클럭 속도를 낮추지 않도록 그래픽 명령을 기다리는 동안 백그라운드에서 작동합니다. - + Anisotropic Filtering: 비등방성 필터링: - - Controls the quality of texture rendering at oblique angles. -It’s a light setting and safe to set at 16x on most GPUs. - - - - Accuracy Level: - 정확도 수준: + 정확도 수준: - - GPU emulation accuracy. -Most games render fine with Normal, but High is still required for some. -Particles tend to only render correctly with High accuracy. -Extreme should only be used for debugging. -This option can be changed while playing. -Some games may require booting on high to render properly. - - - - + Use asynchronous shader building (Hack) 비동기식 셰이더 빌드 사용(Hack) - - - Enables asynchronous shader compilation, which may reduce shader stutter. -This feature is experimental. - - Use Fast GPU Time (Hack) 빠른 GPU 시간 사용(Hack) @@ -905,1021 +595,1428 @@ This feature is experimental. 빠른 GPU 시간을 활성화합니다. 이 옵션을 사용하면 대부분의 게임이 가장 높은 기본 해상도에서 실행됩니다. - + Use Vulkan pipeline cache Vulkan 파이프라인 캐시 사용 - + + Enable Reactive Flushing + 반응형 플러싱 활성화 + + + + Sync to framerate of video playback + 동영상 재생 프레임 속도에 동기화 + + + + Run the game at normal speed during video playback, even when the framerate is unlocked. + 프레임 속도가 잠금 해제된 상태에서도 동영상 재생 중에 일반 속도로 게임을 실행합니다. + + + + Barrier feedback loops + 차단 피드백 루프 + + + + Improves rendering of transparency effects in specific games. + 특정 게임에서 투명도 효과의 렌더링을 개선합니다. + + + + RNG Seed + RNG 시드 + + + + Device Name + 장치 이름 + + + + Note: this can be overridden when region setting is auto-select + 참고 : 이 설정은 지역 설정이 '자동 선택'일 때 무시될 수 있습니다. + + + + Region: + 국가: + + + + Time Zone: + 시계: + + + + Sound Output Mode: + 소리 출력 모드: + + + + Prompt for user on game boot + 게임 부팅시 유저 선택 화면 표시 + + + + Pause emulation when in background + 백그라운드에 있을 시 에뮬레이션 일시중지 + + + + Hide mouse on inactivity + 비활성 상태일 때 마우스 숨기기 + + + + Disable controller applet + 컨트롤러 애플릿 비활성화 + + + + CPU + CPU + + + + GPU + GPU + + + + Uncompressed (Best quality) + 비압축(최고 품질) + + + + BC1 (Low quality) + BC1(저품질) + + + + BC3 (Medium quality) + BC3(중간 품질) + + + + OpenGL + OpenGL + + + + Vulkan + Vulcan + + + + Null + Null + + + + GLSL + GLSL + + + + GLASM (Assembly Shaders, NVIDIA Only) + GLASM(어셈블리 셰이더, NVIDIA 전용) + + + + Normal + 보통 + + + + High + 높음 + + + + Extreme + 익스트림 + + + + Auto + 자동 + + + + Accurate + 정확함 + + + + Unsafe + 최적화 (안전하지 않음) + + + + Paranoid (disables most optimizations) + 편집증(대부분의 최적화 비활성화) + + + + Borderless Windowed + 경계 없는 창 모드 + + + + Exclusive Fullscreen + 독점 전체화면 모드 + + + + No Video Output + 비디오 출력 없음 + + + + CPU Video Decoding + CPU 비디오 디코딩 + + + + GPU Video Decoding (Default) + GPU 비디오 디코딩(기본값) + + + + 0.75X (540p/810p) [EXPERIMENTAL] + 0.75X (540p/810p) [실험적] + + + + 1X (720p/1080p) + 1X (720p/1080p) + + + + 1.5X (1080p/1620p) [EXPERIMENTAL] + 1.5X (1080p/1620p) [실험적] + + + + 2X (1440p/2160p) + 2X (1440p/2160p) + + + + 3X (2160p/3240p) + 3X (2160p/3240p) + + + + 4X (2880p/4320p) + 4X (2880p/4320p) + + + + 5X (3600p/5400p) + 5X (3600p/5400p) + + + + 6X (4320p/6480p) + 6X (4320p/6480p) + + + + 7X (5040p/7560p) + 7X (5040p/7560p) + + + + 8X (5760p/8640p) + 8X (5760p/8640p) + + + + Nearest Neighbor + 최근접 보간 + + + + Bilinear + Bilinear + + + + Bicubic + Bicubic + + + + Gaussian + 가우시안 + + + + ScaleForce + ScaleForce + + + + AMD FidelityFX™️ Super Resolution + AMD FidelityFX™️ Super Resolution + + + + None + 없음 + + + + FXAA + FXAA + + + + SMAA + SMAA + + + + Default (16:9) + 기본 (16:9) + + + + Force 4:3 + 강제 4:3 + + + + Force 21:9 + 강제 21:9 + + + + Force 16:10 + 강제 16:10 + + + + Stretch to Window + 창에 맞게 늘림 + + + + Automatic + 자동 + + + + + Default + 기본값 + + + + Amiibo editor + + + + + Controller configuration + + + + + Data erase + + + + + Net connect + + + + + Player select + + + + + Mii Edit + + + + + Online web + + + + + Shop + + + + + Photo viewer + + + + + Offline web + + + + + Login share + + + + + Wifi web auth + + + + + My page + + + + + Mute audio + + + + + This option increases CPU emulation thread use from 1 to the Switch’s maximum of 4. +This is mainly a debug option and shouldn’t be disabled. + + + + + Memory Layout + + + + + Increases the amount of emulated RAM from the stock 4GB of the retail Switch to the developer kit's 8/6GB. +It’s doesn’t improve stability or performance and is intended to let big texture mods fit in emulated RAM. +Enabling it will increase memory use. It is not recommended to enable unless a specific game with a texture mod needs it. + + + + + Controls the game's maximum rendering speed, but it’s up to each game if it runs faster or not. +200% for a 30 FPS game is 60 FPS, and for a 60 FPS game it will be 120 FPS. +Disabling it means unlocking the framerate to the maximum your PC can reach. + + + + + Synchronize Core Speed + + + + + Synchronizes CPU core speed with the game's maximum rendering speed to boost FPS without affecting game speed (animations, physics, etc.). +Compatibility varies by game; many (especially older ones) may not respond well. +Can help reduce stuttering at lower framerates. + + + + + This setting controls the accuracy of the emulated CPU. +Don't change this unless you know what you are doing. + + + + + + Backend: + + + + + Fast CPU Time + + + + + Overclocks the emulated CPU to remove some FPS limiters. Weaker CPUs may see reduced performance, and certain games may behave improperly. +Use Boost (1700MHz) to run at the Switch's highest native clock, or Fast (2000MHz) to run at 2x clock. + + + + + Custom CPU Ticks + + + + + Set a custom value of CPU ticks. Higher values can increase performance, but may also cause the game to freeze. A range of 77–21000 is recommended. + + + + + Enable Host MMU Emulation (fastmem) + + + + + This optimization speeds up memory accesses by the guest program. +Enabling it causes guest memory reads/writes to be done directly into memory and make use of Host's MMU. +Disabling this forces all memory accesses to use Software MMU Emulation. + + + + + This option improves speed by reducing accuracy of fused-multiply-add instructions on CPUs without native FMA support. + + + + + This option improves the speed of some approximate floating-point functions by using less accurate native approximations. + + + + + This option improves the speed of 32 bits ASIMD floating-point functions by running with incorrect rounding modes. + + + + + This option improves speed by removing NaN checking. +Please note this also reduces accuracy of certain floating-point instructions. + + + + + This option improves speed by eliminating a safety check before every memory read/write in guest. +Disabling it may allow a game to read/write the emulator's memory. + + + + + This option improves speed by relying only on the semantics of cmpxchg to ensure safety of exclusive access instructions. +Please note this may result in deadlocks and other race conditions. + + + + + Switches between the available graphics APIs. +Vulkan is recommended in most cases. + + + + + This setting selects the GPU to use with the Vulkan backend. + + + + + The shader backend to use for the OpenGL renderer. +GLSL is the fastest in performance and the best in rendering accuracy. +GLASM is a deprecated NVIDIA-only backend that offers much better shader building performance at the cost of FPS and rendering accuracy. +SPIR-V compiles the fastest, but yields poor results on most GPU drivers. + + + + + Forces the game to render at a different resolution. +Higher resolutions require much more VRAM and bandwidth. +Options lower than 1X can cause rendering issues. + + + + + Determines how sharpened the image will look while using FSR’s dynamic contrast. + + + + + The anti-aliasing method to use. +SMAA offers the best quality. +FXAA has a lower performance impact and can produce a better and more stable picture under very low resolutions. + + + + + The method used to render the window in fullscreen. +Borderless offers the best compatibility with the on-screen keyboard that some games request for input. +Exclusive fullscreen may offer better performance and better Freesync/Gsync support. + + + + + Stretches the game to fit the specified aspect ratio. +Switch games only support 16:9, so custom game mods are required to get other ratios. +Also controls the aspect ratio of captured screenshots. + + + + + Allows saving shaders to storage for faster loading on following game boots. +Disabling it is only intended for debugging. + + + + + Optimize SPIRV output shader + + + + + Runs an additional optimization pass over generated SPIRV shaders. +Will increase time required for shader compilation. +May slightly improve performance. +This feature is experimental. + + + + + Uses an extra CPU thread for rendering. +This option should always remain enabled. + + + + + Specifies how videos should be decoded. +It can either use the CPU or the GPU for decoding, or perform no decoding at all (black screen on videos). +In most cases, GPU decoding provides the best performance. + + + + + ASTC Decoding Method: + + + + + This option controls how ASTC textures should be decoded. +CPU: Use the CPU for decoding, slowest but safest method. +GPU: Use the GPU's compute shaders to decode ASTC textures, recommended for most games and users. +CPU Asynchronously: Use the CPU to decode ASTC textures as they arrive. Completely eliminates ASTC decoding +stuttering at the cost of rendering issues while the texture is being decoded. + + + + + ASTC Recompression Method: + + + + + Almost all desktop and laptop dedicated GPUs lack support for ASTC textures, forcing the emulator to decompress to an intermediate format any card supports, RGBA8. +This option recompresses RGBA8 to either the BC1 or BC3 format, saving VRAM but negatively affecting image quality. + + + + + VRAM Usage Mode: + + + + + Selects whether the emulator should prefer to conserve memory or make maximum usage of available video memory for performance. +Aggressive mode may severely impact the performance of other applications such as recording software. + + + + + Skip CPU Inner Invalidation + + + + + Skips certain CPU-side cache invalidations during memory updates, reducing CPU usage and improving it's performance. This may cause glitches or crashes on some games. + + + + + Sync Memory Operations + + + + + Ensures data consistency between compute and memory operations. +This option should fix issues in some games, but may also reduce performance in some cases. +Unreal Engine 4 games often see the most significant changes thereof. + + + + + Slightly improves performance by moving presentation to a separate CPU thread. + + + + + Controls the quality of texture rendering at oblique angles. +It’s a light setting and safe to set at 16x on most GPUs. + + + + + GPU Accuracy: + + + + + Controls the GPU emulation accuracy. +Most games render fine with Normal, but High is still required for some. +Particles tend to only render correctly with High accuracy. +Extreme should only be used as a last resort. + + + + + DMA Accuracy: + + + + + Controls the DMA precision accuracy. Safe precision can fix issues in some games, but it can also impact performance in some cases. +If unsure, leave this on Default. + + + + + Enables asynchronous shader compilation, which may reduce shader stutter. +This feature is experimental. + + + + + Fast GPU Time (Hack) + + + + + Overclocks the emulated GPU to increase dynamic resolution and render distance. +Use 128 for maximal performance and 512 for maximal graphics fidelity. + + + + Enables GPU vendor-specific pipeline cache. This option can improve shader loading time significantly in cases where the Vulkan driver does not store pipeline cache files internally. - + Enable Compute Pipelines (Intel Vulkan Only) - + Enable compute pipelines, required by some games. This setting only exists for Intel proprietary drivers, and may crash if enabled. Compute pipelines are always enabled on all other drivers. - - Enable Reactive Flushing - 반응형 플러싱 활성화 - - - + Uses reactive flushing instead of predictive flushing, allowing more accurate memory syncing. - - Sync to framerate of video playback - 동영상 재생 프레임 속도에 동기화 + + RAII + - - Run the game at normal speed during video playback, even when the framerate is unlocked. - 프레임 속도가 잠금 해제된 상태에서도 동영상 재생 중에 일반 속도로 게임을 실행합니다. + + A method of automatic resource management in Vulkan that ensures proper release of resources when they are no longer needed, but may cause crashes in bundled games. + - - Barrier feedback loops - 차단 피드백 루프 + + Extended Dynamic State + - - Improves rendering of transparency effects in specific games. - 특정 게임에서 투명도 효과의 렌더링을 개선합니다. + + Controls the number of features that can be used in Extended Dynamic State. +Higher numbers allow for more features and can increase performance, but may cause issues with some drivers and vendors. +The default value may vary depending on your system and hardware capabilities. +This value can be changed until stability and a better visual quality are achieved. + - - RNG Seed - RNG 시드 + + Provoking Vertex + - + + Improves lighting and vertex handling in certain games. +Only Vulkan 1.0+ devices support this extension. + + + + + Descriptor Indexing + + + + + Improves texture & buffer handling and the Maxwell translation layer. +Some Vulkan 1.1+ and all 1.2+ devices support this extension. + + + + + Sample Shading + + + + + Allows the fragment shader to execute per sample in a multi-sampled fragment instead once per fragment. Improves graphics quality at the cost of some performance. +Higher values improve quality more but also reduce performance to a greater extent. + + + + Controls the seed of the random number generator. Mainly used for speedrunning purposes. - - Device Name - 장치 이름 - - - + The name of the emulated Switch. - + Custom RTC Date: - + This option allows to change the emulated clock of the Switch. Can be used to manipulate time in games. - + Language: - - Note: this can be overridden when region setting is auto-select - 참고 : 이 설정은 지역 설정이 '자동 선택'일 때 무시될 수 있습니다. - - - - Region: - 국가: - - - + The region of the emulated Switch. - - Time Zone: - 시계: - - - + The time zone of the emulated Switch. - - Sound Output Mode: - 소리 출력 모드: - - - + Console Mode: - + Selects if the console is emulated in Docked or Handheld mode. Games will change their resolution, details and supported controllers and depending on this setting. Setting to Handheld can help improve performance for low end systems. - - Prompt for user on game boot - 게임 부팅시 유저 선택 화면 표시 - - - - Pause emulation when in background - 백그라운드에 있을 시 에뮬레이션 일시중지 - - - - Fast GPU Time (Hack) + + Ask to select a user profile on each boot, useful if multiple people use Eden on the same PC. - - Overclocks the emulated GPU to increase dynamic resolution and render distance. -Use 128 for maximal performance and 512 for maximal graphics fidelity. + + This setting pauses Eden when focusing other windows. - - Extended Dynamic State - - - - - Enables the VkExtendedDynamicState* extensions. -Higher dynamic states will generally improve performance, but may cause issues on certain games or devices. - - - - - Provoking Vertex - - - - - Improves lighting and vertex handling in certain games. -Only Vulkan 1.0+ devices support this extension. - - - - - Descriptor Indexing - - - - - Improves texture & buffer handling and the Maxwell translation layer. -Some Vulkan 1.1+ and all 1.2+ devices support this extension. - - - - - Ask to select a user profile on each boot, useful if multiple people use eden on the same PC. - - - - - This setting pauses eden when focusing other windows. - - - - + Confirm before stopping emulation - + This setting overrides game prompts asking to confirm stopping the game. Enabling it bypasses such prompts and directly exits the emulation. - - Hide mouse on inactivity - 비활성 상태일 때 마우스 숨기기 - - - + This setting hides the mouse after 2.5s of inactivity. - - Disable controller applet - 컨트롤러 애플릿 비활성화 - - - + Forcibly disables the use of the controller applet by guests. When a guest attempts to open the controller applet, it is immediately closed. - + Check for updates - + Whether or not to check for updates upon startup. - + Enable Gamemode - + Custom frontend - + Real applet - + Never - + On Load - + Always - - CPU - CPU - - - - GPU - GPU - - - + CPU Asynchronous - - Uncompressed (Best quality) - 비압축(최고 품질) - - - - BC1 (Low quality) - BC1(저품질) - - - - BC3 (Medium quality) - BC3(중간 품질) - - - + Conservative - + Aggressive - - OpenGL - OpenGL - - - - Vulkan - Vulcan - - - - Null - Null - - - - GLSL - GLSL - - - - GLASM (Assembly Shaders, NVIDIA Only) - GLASM(어셈블리 셰이더, NVIDIA 전용) - - - + SPIR-V (Experimental, AMD/Mesa Only) - - Normal - 보통 + + Unsafe (fast) + - - High - 높음 + + Safe (stable) + - - Extreme - 익스트림 - - - - Auto - 자동 - - - - Accurate - 정확함 - - - - Unsafe - 최적화 (안전하지 않음) - - - - Paranoid (disables most optimizations) - 편집증(대부분의 최적화 비활성화) - - - + Dynarmic - + NCE - - Borderless Windowed - 경계 없는 창 모드 - - - - Exclusive Fullscreen - 독점 전체화면 모드 - - - - No Video Output - 비디오 출력 없음 - - - - CPU Video Decoding - CPU 비디오 디코딩 - - - - GPU Video Decoding (Default) - GPU 비디오 디코딩(기본값) - - - + 0.25X (180p/270p) [EXPERIMENTAL] - + 0.5X (360p/540p) [EXPERIMENTAL] - - 0.75X (540p/810p) [EXPERIMENTAL] - 0.75X (540p/810p) [실험적] - - - - 1X (720p/1080p) - 1X (720p/1080p) - - - - 1.5X (1080p/1620p) [EXPERIMENTAL] - 1.5X (1080p/1620p) [실험적] - - - - 2X (1440p/2160p) - 2X (1440p/2160p) - - - - 3X (2160p/3240p) - 3X (2160p/3240p) - - - - 4X (2880p/4320p) - 4X (2880p/4320p) - - - - 5X (3600p/5400p) - 5X (3600p/5400p) - - - - 6X (4320p/6480p) - 6X (4320p/6480p) - - - - 7X (5040p/7560p) - 7X (5040p/7560p) - - - - 8X (5760p/8640p) - 8X (5760p/8640p) - - - - Nearest Neighbor - 최근접 보간 - - - - Bilinear - Bilinear - - - - Bicubic - Bicubic - - - - Gaussian - 가우시안 - - - - ScaleForce - ScaleForce - - - - AMD FidelityFX™️ Super Resolution - AMD FidelityFX™️ Super Resolution - - - + Area - - None - 없음 - - - - FXAA - FXAA - - - - SMAA - SMAA - - - - Default (16:9) - 기본 (16:9) - - - - Force 4:3 - 강제 4:3 - - - - Force 21:9 - 강제 21:9 - - - - Force 16:10 - 강제 16:10 - - - - Stretch to Window - 창에 맞게 늘림 - - - - Automatic - 자동 - - - - Default - 기본값 - - - + 2x 2x - + 4x 4x - + 8x 8x - + 16x 16x - + Japanese (日本語) 일본어 (日本語) - + American English 미국 영어 - + French (français) 프랑스어(français) - + German (Deutsch) 독일어(Deutsch) - + Italian (italiano) 이탈리아어(italiano) - + Spanish (español) 스페인어(español) - + Chinese 중국어 - + Korean (한국어) 한국어 (Korean) - + Dutch (Nederlands) 네덜란드어 (Nederlands) - + Portuguese (português) 포르투갈어(português) - + Russian (Русский) 러시아어 (Русский) - + Taiwanese 대만어 - + British English 영어 (British English) - + Canadian French 캐나다 프랑스어 - + Latin American Spanish 라틴 아메리카 스페인어 - + Simplified Chinese 간체 - + Traditional Chinese (正體中文) 중국어 번체 (正體中文) - + Brazilian Portuguese (português do Brasil) 브라질 포르투갈어(português do Brasil) - - + + Serbian (српски) + + + + + Japan 일본 - + USA 미국 - + Europe 유럽 - + Australia 호주 - + China 중국 - + Korea 대한민국 - + Taiwan 대만 - + Auto (%1) Auto select time zone 자동 (%1) - + Default (%1) Default time zone 기본 (%1) - + CET 중앙유럽 표준시(CET) - + CST6CDT CST6CDT - + Cuba 쿠바 - + EET 동유럽 표준시(EET) - + Egypt 이집트 - + Eire Eire - + EST EST - + EST5EDT EST5EDT - + GB 영국 하계 표준시(GB) - + GB-Eire GB-Eire - + GMT 그리니치 표준시(GMT) - + GMT+0 GMT+0 - + GMT-0 GMT-0 - + GMT0 GMT0 - + Greenwich 그리니치 - + Hongkong 홍콩 - + HST 하와이-알류샨 표준시(HST) - + Iceland 아이슬란드 - + Iran 이란 - + Israel 이스라엘 - + Jamaica 자메이카 - + Kwajalein 크와잘린 - + Libya 리비아 - + MET 중앙유럽 표준시(MET) - + MST 산악 표준시(MST) - + MST7MDT MST7MDT - + Navajo 나바호 - + NZ 뉴질랜드 표준시(NZ) - + NZ-CHAT 채텀 표준시(NZ-CHAT) - + Poland 폴란드 - + Portugal 포르투갈 - + PRC PRC - + PST8PDT PST8PDT - + ROC ROC - + ROK 북한 표준시(ROK) - + Singapore 싱가포르 - + Turkey 터키 - + UCT UCT - + Universal Universal - + UTC 협정 세계시(UTC) - + W-SU 유럽/모스크바(W-SU) - + WET 서유럽 - + Zulu 줄루 - + Mono 모노 - + Stereo 스테레오 - + Surround 서라운드 - + 4GB DRAM (Default) - + 6GB DRAM (Unsafe) - + 8GB DRAM - + 10GB DRAM (Unsafe) - + 12GB DRAM (Unsafe) - - Low (128) - - - - - Medium (256) - - - - - High (512) - - - - + Docked 거치 모드 - + Handheld 휴대 모드 - + Boost (1700MHz) - + Fast (2000MHz) - + Always ask (Default) - + Only if game specifies not to stop - + Never ask + + + Low (128) + + + + + Medium (256) + + + + + High (512) + + ConfigureApplets @@ -2272,27 +2369,27 @@ When a guest attempts to open the controller applet, it is immediately closed.로깅 - + Open Log Location 로그 경로 열기 - + Global Log Filter 전역 로그 필터 - + When checked, the max size of the log increases from 100 MB to 1 GB 이 옵션을 활성화 시, 로그 파일의 최대 용량이 100MB에서 1GB로 증가합니다. - + Enable Extended Logging** 확장된 로깅 활성화** - + Show Log in Console 콘솔에 로그 표시 @@ -2438,7 +2535,7 @@ When a guest attempts to open the controller applet, it is immediately closed. - **This will be reset automatically when eden closes. + **This will be reset automatically when Eden closes. @@ -2500,7 +2597,7 @@ When a guest attempts to open the controller applet, it is immediately closed.**Yuzu가 종료되면 자동으로 재설정됩니다. - + Web applet not compiled 웹 애플릿이 컴파일되지 않음 @@ -2550,7 +2647,7 @@ When a guest attempts to open the controller applet, it is immediately closed. - eden Configuration + Eden Configuration @@ -2559,88 +2656,88 @@ When a guest attempts to open the controller applet, it is immediately closed.일부 설정은 게임이 실행 중이 아닐 때만 사용할 수 있습니다. - + Applets - - + + Audio 오디오 - - + + CPU CPU - + Debug 디버그 - + Filesystem 파일 시스템 - - + + General 일반 - - + + Graphics 그래픽 - + GraphicsAdvanced 그래픽 고급 - + GraphicsExtensions - + Hotkeys 단축키 - - + + Controls 조작 - + Profiles 프로필 - + Network 네트워크 - - + + System 시스템 - + Game List 게임 목록 - + Web @@ -2738,51 +2835,45 @@ When a guest attempts to open the controller applet, it is immediately closed. - - - Reset Metadata Cache 메타 데이터 캐시 초기화 - + Select Emulated NAND Directory... 가상 NAND 경로 선택 - + Select Emulated SD Directory... 가상 SD 경로 선택 - + Select Gamecard Path... 게임카드 경로 설정 - + Select Dump Directory... 덤프 경로 설정 - + Select Mod Load Directory... 모드 불러오기 경로 설정 - The metadata cache is already empty. - 메타 데이터 캐시가 이미 비어있습니다. + 메타 데이터 캐시가 이미 비어있습니다. - The operation completed successfully. - 작업이 성공적으로 끝났습니다. + 작업이 성공적으로 끝났습니다. - The metadata cache couldn't be deleted. It might be in use or non-existent. - 메타 데이터 캐시 삭제를 삭제할 수 없습니다. 해당 파일이 이미 사용 중이거나 존재하지 않을 수 있습니다. + 메타 데이터 캐시 삭제를 삭제할 수 없습니다. 해당 파일이 이미 사용 중이거나 존재하지 않을 수 있습니다. @@ -2813,12 +2904,12 @@ When a guest attempts to open the controller applet, it is immediately closed.yuzu - - eden + + Eden - + This reset all settings and remove all per-game configurations. This will not delete game directories, profiles, or input profiles. Proceed? 모든 환경 설정과 게임별 맞춤 설정이 초기화됩니다. 게임 디렉토리나 프로필, 또는 입력 프로필은 삭제되지 않습니다. 진행하시겠습니까? @@ -2851,33 +2942,33 @@ When a guest attempts to open the controller applet, it is immediately closed.배경색: - + % FSR sharpening percentage (e.g. 50%) % - + Off - + VSync Off 수직동기화 끔 - + Recommended 추천 - + On - + VSync On 수직동기화 켬 @@ -2914,14 +3005,18 @@ When a guest attempts to open the controller applet, it is immediately closed. - Vulkan Extension Settings + Vulkan Extensions Settings - - While it's recommended to use state 3, some games may perform better on lower states. Setting to 0 (disabled) may also break games. -If your GPU is older (i.e. RX570/580 or older), it may not support these features. If this is the case, set the slider to 0 and uncheck all boxes. -These settings are experimental, and may cause black screens. If your games fail to boot or are stuck on a black screen, change these settings around. + + % + Sample Shading percentage (e.g. 50%) + % + + + + Extended Dynamic State is disabled on macOS due to MoltenVK compatibility issues that cause black screens. @@ -2953,75 +3048,75 @@ These settings are experimental, and may cause black screens. If your games fail 초기화 - + Action 액션 - + Hotkey 단축키 - + Controller Hotkey 컨트롤러 단축키 - - - + + + Conflicting Key Sequence 키 시퀀스 충돌 - - + + The entered key sequence is already assigned to: %1 입력한 키 시퀀스가 %1에 이미 할당되었습니다. - + [waiting] [대기중] - + Invalid 유효하지않음 - + Invalid hotkey settings - + An error occurred. Please report this issue on github. - + Restore Default 초기화 - + Clear 비우기 - + Conflicting Button Sequence 키 시퀀스 충돌 - + The default button sequence is already assigned to: %1 기본 키 시퀀스가 %1에 이미 할당되었습니다. - + The default key sequence is already assigned to: %1 기본 키 시퀀스가 %1에 이미 할당되었습니다. @@ -3341,7 +3436,7 @@ These settings are experimental, and may cause black screens. If your games fail - Requires restarting eden + Requires restarting Eden @@ -3496,7 +3591,7 @@ These settings are experimental, and may cause black screens. If your games fail - + Left Stick L 스틱 @@ -3606,14 +3701,14 @@ These settings are experimental, and may cause black screens. If your games fail - + L L - + ZL ZL @@ -3632,7 +3727,7 @@ These settings are experimental, and may cause black screens. If your games fail - + Plus + @@ -3645,15 +3740,15 @@ These settings are experimental, and may cause black screens. If your games fail - - + + R R - + ZR ZR @@ -3698,7 +3793,7 @@ These settings are experimental, and may cause black screens. If your games fail - + Right Stick R 스틱 @@ -3713,242 +3808,242 @@ These settings are experimental, and may cause black screens. If your games fail 설정 - - - - + + + + Clear 초기화 - - - - - + + + + + [not set] [설정 안 됨] - - - + + + Invert button 버튼 반전 - - + + Toggle button 토글 버튼 - + Turbo button 터보 버튼 - - + + Invert axis 축 뒤집기 - - - + + + Set threshold 임계값 설정 - - + + Choose a value between 0% and 100% 0%에서 100% 안의 값을 고르세요 - + Toggle axis axis 토글 - + Set gyro threshold 자이로 임계값 설정 - + Calibrate sensor 센서 보정 - + Map Analog Stick 아날로그 스틱 맵핑 - + After pressing OK, first move your joystick horizontally, and then vertically. To invert the axes, first move your joystick vertically, and then horizontally. OK 버튼을 누른 후에 먼저 조이스틱을 수평으로 움직이고, 그 다음 수직으로 움직이세요. 축을 뒤집으려면 수직으로 먼저 움직인 뒤에 수평으로 움직이세요. - + Center axis 중심축 - - + + Deadzone: %1% 데드존: %1% - - + + Modifier Range: %1% 수정자 범위: %1% - - + + Pro Controller 프로 컨트롤러 - + Dual Joycons 듀얼 조이콘 - + Left Joycon 왼쪽 조이콘 - + Right Joycon 오른쪽 조이콘 - + Handheld 휴대 모드 - + GameCube Controller GameCube 컨트롤러 - + Poke Ball Plus 몬스터볼 Plus - + NES Controller NES 컨트롤러 - + SNES Controller SNES 컨트롤러 - + N64 Controller N64 컨트롤러 - + Sega Genesis 세가 제네시스 - + Start / Pause 시작 / 일시중지 - + Z Z - + Control Stick 컨트롤 스틱 - + C-Stick C-Stick - + Shake! 흔드세요! - + [waiting] [대기중] - + New Profile 새 프로필 - + Enter a profile name: 프로필 이름을 입력하세요: - - + + Create Input Profile 입력 프로필 생성 - + The given profile name is not valid! 해당 프로필 이름은 사용할 수 없습니다! - + Failed to create the input profile "%1" "%1" 입력 프로필 생성 실패 - + Delete Input Profile 입력 프로필 삭제 - + Failed to delete the input profile "%1" "%1" 입력 프로필 삭제 실패 - + Load Input Profile 입력 프로필 불러오기 - + Failed to load the input profile "%1" "%1" 입력 프로필 불러오기 실패 - + Save Input Profile 입력 프로필 저장 - + Failed to save the input profile "%1" "%1" 입력 프로필 저장 실패 @@ -4005,7 +4100,7 @@ To invert the axes, first move your joystick vertically, and then horizontally.< - + Configure 설정 @@ -4041,7 +4136,7 @@ To invert the axes, first move your joystick vertically, and then horizontally.< - + Test 테스트 @@ -4060,7 +4155,7 @@ To invert the axes, first move your joystick vertically, and then horizontally.< <a href='https://yuzu-emu.org/wiki/using-a-controller-or-android-phone-for-motion-or-touch-input'><span style="text-decoration: underline; color:#039be5;">자세히 알아보기</span></a> - + %1:%2 %1:%2 @@ -4069,77 +4164,77 @@ To invert the axes, first move your joystick vertically, and then horizontally.< yuzu - + <a href='https://eden-emulator.github.io/wiki/using-a-controller-or-android-phone-for-motion-or-touch-input'><span style="text-decoration: underline; color:#039be5;">Learn More</span></a> - + Port number has invalid characters 포트 번호에 유효하지 않은 글자가 있습니다. - - - - - - - eden + + + + + + + Eden - + Port has to be in range 0 and 65353 포트 번호는 0부터 65353까지이어야 합니다. - + IP address is not valid IP 주소가 유효하지 않습니다. - + This UDP server already exists 해당 UDP 서버는 이미 존재합니다. - + Unable to add more than 8 servers 8개보다 많은 서버를 추가하실 수는 없습니다. - + 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>서버가 올바르게 설정되어 있고 주소와 포트가 올바른지 확인하십시오. - + UDP Test or calibration configuration is in progress.<br>Please wait for them to finish. UDP 테스트와 교정 설정이 진행 중입니다.<br>끝날 때까지 기다려주세요. @@ -4265,7 +4360,12 @@ Current values are %1% and %2% respectively. 네트워크 인터페이스 - + + Enable Airplane Mode + + + + None 없음 @@ -4323,52 +4423,52 @@ Current values are %1% and %2% respectively. 일부 설정은 게임이 실행 중이 아닐 때만 사용할 수 있습니다. - + Add-Ons 부가 기능 - + System 시스템 - + CPU CPU - + Graphics 그래픽 - + Adv. Graphics 고급 그래픽 - + GPU Extensions - + Audio 오디오 - + Input Profiles 입력 프로파일 - + Linux - + Properties 속성 @@ -4386,12 +4486,12 @@ Current values are %1% and %2% respectively. 애드온 - + Patch Name 패치 이름 - + Version 버전 @@ -4429,27 +4529,32 @@ Current values are %1% and %2% respectively. 이미지 설정 - + + Select Avatar + + + + Add 추가 - + Rename 이름 변경 - + Remove 제거 - + Profile management is available only when game is not running. 프로필 관리자는 게임이 작동 중이지 않을 때만 사용 가능합니다. - + %1 %2 %1 is the profile username, %2 is the formatted UUID (e.g. 00112233-4455-6677-8899-AABBCCDDEEFF)) @@ -4457,100 +4562,189 @@ Current values are %1% and %2% respectively. %2 - + Enter Username 유저 이름을 입력하세요 - + Users 유저 - + Enter a username for the new user: 새로운 유저를 위한 유저 이름을 입력하세요: - + Enter a new username: 새로운 유저 이름을 입력하세요: - + + Error saving user image + + + + + Unable to save image to file + + + + Select User Image 유저 이미지 선택 - - JPEG Images (*.jpg *.jpeg) - JPEG 이미지 (*.jpg *.jpeg) + + Image Formats (*.jpg *.jpeg *.png *.bmp) + - + + No firmware available + + + + + Please install the firmware to use firmware avatars. + + + + + + Error loading archive + + + + + Archive is not available. Please install/reinstall firmware. + + + + + Archive does not contain romfs. It is probably corrupt. + + + + + Error extracting archive + + + + + Archive could not be extracted. It is probably corrupt. + + + + + Error finding image directory + + + + + Failed to find image directory in the archive. + + + + + No images found + + + + + No avatar images were found in the archive. + + + + JPEG Images (*.jpg *.jpeg) + JPEG 이미지 (*.jpg *.jpeg) + + + Error deleting image 이미지 삭제 오류 - + Error occurred attempting to overwrite previous image at: %1. %1에서 이전 이미지를 덮어쓰는 중 오류가 발생했습니다. - + Error deleting file 파일 삭제 오류 - + Unable to delete existing file: %1. 기존 파일을 삭제할 수 없음: %1. - + Error creating user image directory 사용자 이미지 디렉토리 생성 오류 - + Unable to create directory %1 for storing user images. 사용자 이미지를 저장하기 위한 %1 디렉토리를 만들 수 없습니다. - Error copying user image - 사용자 이미지 복사 오류 + 사용자 이미지 복사 오류 - Unable to copy image from %1 to %2 - 이미지를 %1에서 %2로 복사할 수 없습니다 + 이미지를 %1에서 %2로 복사할 수 없습니다 - Error resizing user image - 사용자 이미지 크기 조정 오류 + 사용자 이미지 크기 조정 오류 - Unable to resize image - 이미지 크기를 조정할 수 없습니다 + 이미지 크기를 조정할 수 없습니다 + + + + ConfigureProfileManagerAvatarDialog + + + Select + + + + + Cancel + 취소 + + + + Background Color + + + + + Select Firmware Avatar + ConfigureProfileManagerDeleteDialog - + Delete this user? All of the user's save data will be deleted. 이 사용자를 삭제하시겠습니까? 사용자의 저장 데이터가 모두 삭제됩니다. - + Confirm Delete 삭제 확인 - + Name: %1 UUID: %2 이름: %1 @@ -4603,7 +4797,7 @@ UUID: %2 - + Enable 활성화 @@ -4614,7 +4808,7 @@ UUID: %2 - + Not connected 연결되지 않음 @@ -4624,63 +4818,63 @@ UUID: %2 기본값으로 초기화 - + Clear 초기화 - + [not set] [설정 안 됨] - + Invert axis 축 뒤집기 - - + + Deadzone: %1% 데드존: %1% - + Error enabling ring input 링 입력 활성화 오류 - + Direct Joycon driver is not enabled 다이렉트 조이콘 드라이버가 활성화되지 않았음 - + Configuring 설정 중 - + The current mapped device doesn't support the ring controller 현재 매핑된 장치가 링 컨트롤러를 지원하지 않음 - + The current mapped device doesn't have a ring attached 현재 매핑된 장치에 링이 연결되어 있지 않음 - + The current mapped device is not connected 현재 매핑된 장치가 연결되지 않았습니다. - + Unexpected driver result %1 예기치 않은 드라이버 결과 %1 - + [waiting] [대기중] @@ -4722,7 +4916,7 @@ UUID: %2 - <html><head/><body><p>Reads controller input from scripts in the same format as TAS-nx scripts.<br/>For a more detailed explanation, please consult the <a href="https://eden-emulator.github.io/help/feature/tas/"><span style=" text-decoration: underline; color:#039be5;">help page</span></a> on the eden website.</p></body></html> + <html><head/><body><p>Reads controller input from scripts in the same format as TAS-nx scripts.<br/>For a more detailed explanation, please consult the <a href="https://eden-emulator.github.io/help/feature/tas/"><span style=" text-decoration: underline; color:#039be5;">help page</span></a> on the Eden website.</p></body></html> @@ -4774,12 +4968,12 @@ UUID: %2 ConfigureTasDialog - + TAS Configuration TAS 설정 - + Select TAS Load Directory... TAS 로드 디렉토리 선택... @@ -4889,7 +5083,7 @@ Drag points to change position, or double-click table cells to edit values. - Warning: The settings in this page affect the inner workings of eden's emulated touchscreen. Changing them may result in undesirable behavior, such as the touchscreen partially or not working. You should only use this page if you know what you are doing. + Warning: The settings in this page affect the inner workings of Eden's emulated touchscreen. Changing them may result in undesirable behavior, such as the touchscreen partially or not working. You should only use this page if you know what you are doing. @@ -5209,6 +5403,16 @@ Drag points to change position, or double-click table cells to edit values.Web + + + Eden Web Service + + + + + Generate + + yuzu Web Service yuzu 웹 서비스 @@ -5218,42 +5422,29 @@ Drag points to change position, or double-click table cells to edit values.사용자 이름과 토큰을 제공함으로써 귀하는 yuzu가 사용자 식별 정보를 포함한 추가 사용 데이터 수집 허용에 동의한 것으로 간주됩니다. - - eden Web Service - - - - - By providing your username and token, you agree to allow eden to collect additional usage data, which may include user identifying information. - - - - Verify - 인증 + 인증 - Sign up - 가입 + 가입 - + Token: 토큰: - + Username: 유저 이름: - What is my token? - 나의 토큰이 무엇인가요? + 나의 토큰이 무엇인가요? - + Web Service configuration can only be changed when a public room isn't being hosted. 웹 서비스 구성은 공개 방이 호스팅되지 않을 때만 변경할 수 있습니다. @@ -5278,12 +5469,12 @@ Drag points to change position, or double-click table cells to edit values.재생성 - + Discord Presence Discord 알림 - + Show Current Game in your Discord Status 디스코드에 실행중인 게임을 나타낼 수 있습니다. @@ -5292,24 +5483,8 @@ Drag points to change position, or double-click table cells to edit values.<a href='https://yuzu-emu.org/help/feature/telemetry/'><span style="text-decoration: underline; color:#039be5;">자세히 알아보기</span></a> - <a href='https://profile.yuzu-emu.org/'><span style="text-decoration: underline; color:#039be5;">Sign up</span></a> - <a href='https://profile.yuzu-emu.org/'><span style="text-decoration: underline; color:#039be5;">회원 가입</span></a> - - - - <a href='https://evilperson1337.notion.site/Hosting-a-Room-Inside-of-Eden-20457c2edaf680108abac6215a79acdb'><span style="text-decoration: underline; color:#039be5;">What is my token?</span></a> - - - - - Warning - - - - - Verification is currently nonfunctional, instead generate a random 48-character string with only lowercase a-z. - + <a href='https://profile.yuzu-emu.org/'><span style="text-decoration: underline; color:#039be5;">회원 가입</span></a> <a href='https://yuzu-emu.org/wiki/yuzu-web-service/'><span style="text-decoration: underline; color:#039be5;">What is my token?</span></a> @@ -5332,10 +5507,9 @@ Drag points to change position, or double-click table cells to edit values.토큰이 확인되지 않았습니다. 토큰 변경 사항이 저장되지 않을 것입니다. - Unverified, please click Verify before saving configuration Tooltip - 인증되지 않음, 구성을 저장하기 전에 인증을 클릭하십시오. + 인증되지 않음, 구성을 저장하기 전에 인증을 클릭하십시오. Verifying... @@ -5359,20 +5533,67 @@ Drag points to change position, or double-click table cells to edit values.Verification failed. Check that you have entered your token correctly, and that your internet connection is working. 인증 실패. 토큰을 올바르게 입력했는지, 그리고 인터넷이 연결되어 있는지 확인하십시오. + + + + All Good + Tooltip + + + + + Must be between 4-20 characters + Tooltip + + + + + Must be 48 characters, and lowercase a-z + Tooltip + + ControllerDialog - + Controller P1 컨트롤러 P1 - + &Controller P1 컨트롤러 P1(&C) + + DepsDialog + + + Eden Dependencies + + + + + <html><head/><body><p><span style=" font-size:28pt;">Eden Dependencies</span></p></body></html> + + + + + <html><head/><body><p>The projects that make Eden possible</p></body></html> + + + + + Dependency + + + + + Version + 버전 + + DirectConnect @@ -5478,7 +5699,12 @@ Drag points to change position, or double-click table cells to edit values. - Creating a room failed. Please retry. Restarting eden might be necessary. + Creating a room failed. Please retry. Restarting Eden might be necessary. + + + + + Version mismatch! Please update to the latest version of Eden. If the problem persists, contact the room host and ask them to update the server. @@ -5486,11 +5712,6 @@ Drag points to change position, or double-click table cells to edit values.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 eden. If the problem persists, contact the room host and ask them to update the server. - - Incorrect password. @@ -5552,7 +5773,7 @@ Please go to Configure -> System -> Network and make a selection. 원격 측정 - + Broken Vulkan Installation Detected 깨진 Vulkan 설치 감지됨 @@ -5561,106 +5782,105 @@ Please go to Configure -> System -> Network and make a selection. 부팅하는 동안 Vulkan 초기화에 실패했습니다.<br><br>문제 해결 지침을 보려면 <a href='https://yuzu-emu.org/wiki/faq/#yuzu-starts-with-the-error-broken-vulkan-installation-detected'>여기</a>를 클릭하세요. - + Running a game TRANSLATORS: This string is shown to the user to explain why yuzu needs to prevent the computer from sleeping 게임 실행중 - + Loading Web Applet... 웹 애플릿을 로드하는 중... - - + + Disable Web Applet 웹 애플릿 비활성화 - + Disabling the web applet can lead to undefined behavior and should only be used with Super Mario 3D All-Stars. Are you sure you want to disable the web applet? (This can be re-enabled in the Debug settings.) 웹 애플릿을 비활성화하면 정의되지 않은 동작이 발생할 수 있으며 Super Mario 3D All-Stars에서만 사용해야 합니다. 웹 애플릿을 비활성화하시겠습니까? (디버그 설정에서 다시 활성화할 수 있습니다.) - + The amount of shaders currently being built 현재 생성중인 셰이더의 양 - + The current selected resolution scaling multiplier. 현재 선택된 해상도 배율입니다. - + Current emulation speed. Values higher or lower than 100% indicate emulation is running faster or slower than a Switch. 현재 에뮬레이션 속도. 100%보다 높거나 낮은 값은 에뮬레이션이 Switch보다 빠르거나 느린 것을 나타냅니다. - + 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 Switch frame, not counting framelimiting or v-sync. For full-speed emulation this should be at most 16.67 ms. 프레임 제한이나 수직 동기화를 계산하지 않고 Switch 프레임을 에뮬레이션 하는 데 걸린 시간. 최대 속도로 에뮬레이트 중일 때에는 대부분 16.67 ms 근처입니다. - + Unmute 음소거 해제 - + Mute 음소거 - + Reset Volume 볼륨 재설정 - + &Clear Recent Files Clear Recent Files(&C) - + &Continue 재개(&C) - + &Pause 일시중지(&P) - Warning Outdated Game Format - 오래된 게임 포맷 경고 + 오래된 게임 포맷 경고 You are using the deconstructed ROM directory format for this game, which is an outdated format that has been superseded by others such as NCA, NAX, XCI, or NSP. Deconstructed ROM directories lack icons, metadata, and update support.<br><br>For an explanation of the various Switch formats yuzu supports, <a href='https://yuzu-emu.org/wiki/overview-of-switch-game-formats'>check out our wiki</a>. This message will not be shown again. 이 게임 파일은 '분해된 ROM 디렉토리'라는 오래된 포맷을 사용하고 있습니다. 해당 포맷은 NCA, NAX, XCI 또는 NSP와 같은 다른 포맷으로 대체되었으며 분해된 ROM 디렉토리에는 아이콘, 메타 데이터 및 업데이트가 지원되지 않습니다.<br><br>yuzu가 지원하는 다양한 Switch 포맷에 대한 설명은 <a href='https://yuzu-emu.org/wiki/overview-of-switch-game-formats'>위키를 확인하세요.</a> 이 메시지는 다시 표시되지 않습니다. - - + + Error while loading ROM! ROM 로드 중 오류 발생! - + The ROM format is not supported. 지원되지 않는 롬 포맷입니다. - + An error occurred initializing the video core. 비디오 코어를 초기화하는 동안 오류가 발생했습니다. @@ -5669,7 +5889,7 @@ Please go to Configure -> System -> Network and make a selection. 비디오 코어를 실행하는 동안 yuzu에 오류가 발생했습니다. 이것은 일반적으로 통합 드라이버를 포함하여 오래된 GPU 드라이버로 인해 발생합니다. 자세한 내용은 로그를 참조하십시오. 로그 액세스에 대한 자세한 내용은 <a href='https://yuzu-emu.org/help/reference/log-files/'>로그 파일 업로드 방법</a> 페이지를 참조하세요. - + Error while loading ROM! %1 %1 signifies a numeric error code. ROM 불러오는 중 오류 발생! %1 @@ -5680,1025 +5900,889 @@ Please go to Configure -> System -> Network and make a selection. %1<br>파일들을 다시 덤프하기 위해<a href='https://yuzu-emu.org/help/quickstart/'>yuzu 빠른 시작 가이드</a> 를 따라주세요.<br>도움이 필요할 시 yuzu 위키</a> 를 참고하거나 yuzu 디스코드</a> 를 이용해보세요. - + Vulkan initialization failed during boot.<br><br>Click <a href='https://eden-emulator.github.io/wiki/faq/#yuzu-starts-with-the-error-broken-vulkan-installation-detected'>here for instructions to fix the issue</a>. - - Game Updates Warning - - - - - The game you are trying to launch is known to have performance or booting issues when updates are applied. Please try increasing the memory layout to 6GB or 8GB if any issues occur.<br><br>Press "OK" to continue launching, or "Cancel" to cancel the launch. - - - - - Don't show again for this game - - - - - You are using the deconstructed ROM directory format for this game, which is an outdated format that has been superseded by others such as NCA, NAX, XCI, or NSP. Deconstructed ROM directories lack icons, metadata, and update support.<br><br>For an explanation of the various Switch formats eden supports, <a href='https://eden-emulator.github.io/wiki/overview-of-switch-game-formats'>check out our wiki</a>. This message will not be shown again. - - - - - eden has encountered an error while running the video core. This is usually caused by outdated GPU drivers, including integrated ones. Please see the log for more details. For more information on accessing the log, please see the following page: <a href='https://eden-emulator.github.io/help/reference/log-files/'>How to Upload the Log File</a>. - - - - - %1<br>Please redump your files or ask on Discord for help. - %1 signifies an error string. - - - - + An unknown error occurred. Please see the log for more details. 알 수 없는 오류가 발생했습니다. 자세한 내용은 로그를 참고하십시오. - + (64-bit) (64비트) - + (32-bit) (32비트) - + %1 %2 %1 is the title name. %2 indicates if the title is 64-bit or 32-bit %1 %2 - + Closing software... 소프트웨어를 닫는 중... - + Save Data 세이브 데이터 - + Mod Data 모드 데이터 - + Error Opening %1 Folder %1 폴더 열기 오류 - - + + Folder does not exist! 폴더가 존재하지 않습니다! - Error Opening Transferable Shader Cache - 전송 가능한 셰이더 캐시 열기 오류 + 전송 가능한 셰이더 캐시 열기 오류 - Failed to create the shader cache directory for this title. - 이 타이틀에 대한 셰이더 캐시 디렉토리를 생성하지 못했습니다. + 이 타이틀에 대한 셰이더 캐시 디렉토리를 생성하지 못했습니다. - Error Removing Contents - 콘텐츠 제거 중 오류 발생 + 콘텐츠 제거 중 오류 발생 - Error Removing Update - 업데이트 제거 오류 + 업데이트 제거 오류 - Error Removing DLC - DLC 제거 오류 + DLC 제거 오류 - + Remove Installed Game Contents? 설치된 게임 콘텐츠를 제거하겠습니까? - + Remove Installed Game Update? 설치된 게임 업데이트를 제거하겠습니까? - + Remove Installed Game DLC? 설치된 게임 DLC를 제거하겠습니까? - + Remove Entry 항목 제거 - - - - - - Successfully Removed - 삭제 완료 + 삭제 완료 - Successfully removed the installed base game. - 설치된 기본 게임을 성공적으로 제거했습니다. + 설치된 기본 게임을 성공적으로 제거했습니다. - The base game is not installed in the NAND and cannot be removed. - 기본 게임은 NAND에 설치되어 있지 않으며 제거 할 수 없습니다. + 기본 게임은 NAND에 설치되어 있지 않으며 제거 할 수 없습니다. - Successfully removed the installed update. - 설치된 업데이트를 성공적으로 제거했습니다. + 설치된 업데이트를 성공적으로 제거했습니다. - There is no update installed for this title. - 이 타이틀에 대해 설치된 업데이트가 없습니다. + 이 타이틀에 대해 설치된 업데이트가 없습니다. - There are no DLC installed for this title. - 이 타이틀에 설치된 DLC가 없습니다. + 이 타이틀에 설치된 DLC가 없습니다. - Successfully removed %1 installed DLC. - 설치된 %1 DLC를 성공적으로 제거했습니다. + 설치된 %1 DLC를 성공적으로 제거했습니다. - + Delete OpenGL Transferable Shader Cache? OpenGL 전송 가능한 셰이더 캐시를 삭제하시겠습니까? - + Delete Vulkan Transferable Shader Cache? Vulkan 전송 가능한 셰이더 캐시를 삭제하시겠습니까? - + Delete All Transferable Shader Caches? 모든 전송 가능한 셰이더 캐시를 삭제하시겠습니까? - + Remove Custom Game Configuration? 사용자 지정 게임 구성을 제거 하시겠습니까? - + Remove Cache Storage? 캐시 저장소를 제거하겠습니까? - + Remove File 파일 제거 - + Remove Play Time Data - + Reset play time? - - Error Removing Transferable Shader Cache - 전송 가능한 셰이더 캐시 제거 오류 + 전송 가능한 셰이더 캐시 제거 오류 - - A shader cache for this title does not exist. - 이 타이틀에 대한 셰이더 캐시가 존재하지 않습니다. + 이 타이틀에 대한 셰이더 캐시가 존재하지 않습니다. - Successfully removed the transferable shader cache. - 전송 가능한 셰이더 캐시를 성공적으로 제거했습니다. + 전송 가능한 셰이더 캐시를 성공적으로 제거했습니다. - Failed to remove the transferable shader cache. - 전송 가능한 셰이더 캐시를 제거하지 못했습니다. + 전송 가능한 셰이더 캐시를 제거하지 못했습니다. - Error Removing Vulkan Driver Pipeline Cache - Vulkan 드라이버 파이프라인 캐시 제거 오류 + Vulkan 드라이버 파이프라인 캐시 제거 오류 - Failed to remove the driver pipeline cache. - 드라이버 파이프라인 캐시를 제거하지 못했습니다. + 드라이버 파이프라인 캐시를 제거하지 못했습니다. - - Error Removing Transferable Shader Caches - 전송 가능한 셰이더 캐시 제거 오류 + 전송 가능한 셰이더 캐시 제거 오류 - Successfully removed the transferable shader caches. - 전송 가능한 셰이더 캐시를 성공적으로 제거했습니다. + 전송 가능한 셰이더 캐시를 성공적으로 제거했습니다. - Failed to remove the transferable shader cache directory. - 전송 가능한 셰이더 캐시 디렉토리를 제거하지 못했습니다. + 전송 가능한 셰이더 캐시 디렉토리를 제거하지 못했습니다. - - Error Removing Custom Configuration - 사용자 지정 구성 제거 오류 + 사용자 지정 구성 제거 오류 - A custom configuration for this title does not exist. - 이 타이틀에 대한 사용자 지정 구성이 존재하지 않습니다. + 이 타이틀에 대한 사용자 지정 구성이 존재하지 않습니다. - Successfully removed the custom game configuration. - 사용자 지정 게임 구성을 성공적으로 제거했습니다. + 사용자 지정 게임 구성을 성공적으로 제거했습니다. - Failed to remove the custom game configuration. - 사용자 지정 게임 구성을 제거하지 못했습니다. + 사용자 지정 게임 구성을 제거하지 못했습니다. - - + + RomFS Extraction Failed! RomFS 추출 실패! - + There was an error copying the RomFS files or the user cancelled the operation. RomFS 파일을 복사하는 중에 오류가 발생했거나 사용자가 작업을 취소했습니다. - + Full 전체 - + Skeleton 뼈대 - + Select RomFS Dump Mode RomFS 덤프 모드 선택 - + Please select the how you would like the RomFS dumped.<br>Full will copy all of the files into the new directory while <br>skeleton will only create the directory structure. RomFS 덤프 방법을 선택하십시오.<br>전체는 모든 파일을 새 디렉토리에 복사하고<br>뼈대는 디렉토리 구조 만 생성합니다. - + There is not enough free space at %1 to extract the RomFS. Please free up space or select a different dump directory at Emulation > Configure > System > Filesystem > Dump Root %1에 RomFS를 추출하기에 충분한 여유 공간이 없습니다. 공간을 확보하거나 에뮬레이견 > 설정 > 시스템 > 파일시스템 > 덤프 경로에서 다른 덤프 디렉토리를 선택하십시오. - + Extracting RomFS... RomFS 추출 중... - - - - - + + Cancel 취소 - + RomFS Extraction Succeeded! RomFS 추출이 성공했습니다! - - - + The operation completed successfully. 작업이 성공적으로 완료되었습니다. - - Integrity verification couldn't be performed! - - - - - File contents were not checked for validity. - - - - - - Verifying integrity... - - - - - Integrity verification succeeded! - 무결성 검증에 성공했습니다. + 무결성 검증에 성공했습니다. - - Integrity verification failed! - 무결성 검증에 실패했습니다. + 무결성 검증에 실패했습니다. - - File contents may be corrupt. - - - - - - - Create Shortcut - 바로가기 만들기 + 바로가기 만들기 - - Do you want to launch the game in fullscreen? - - - - Successfully created a shortcut to %1 - %1 바로가기를 성공적으로 만듬 + %1 바로가기를 성공적으로 만듬 - This will create a shortcut to the current AppImage. This may not work well if you update. Continue? - 현재 AppImage에 대한 바로 가기가 생성됩니다. 업데이트하면 제대로 작동하지 않을 수 있습니다. 계속합니까? + 현재 AppImage에 대한 바로 가기가 생성됩니다. 업데이트하면 제대로 작동하지 않을 수 있습니다. 계속합니까? - - Failed to create a shortcut to %1 + Create Icon + 아이콘 만들기 + + + Cannot create icon file. Path "%1" does not exist and cannot be created. + 아이콘 파일을 만들 수 없습니다. 경로 "%1"이(가) 존재하지 않으며 생성할 수 없습니다. + + + + Warning: Outdated Game Format - - Create Icon - 아이콘 만들기 + + You are using the deconstructed ROM directory format for this game, which is an outdated format that has been superseded by others such as NCA, NAX, XCI, or NSP. Deconstructed ROM directories lack icons, metadata, and update support.<br><br>For an explanation of the various Switch formats Eden supports, <a href='https://eden-emulator.github.io/wiki/overview-of-switch-game-formats'>check out our wiki</a>. This message will not be shown again. + - - Cannot create icon file. Path "%1" does not exist and cannot be created. - 아이콘 파일을 만들 수 없습니다. 경로 "%1"이(가) 존재하지 않으며 생성할 수 없습니다. + + Eden has encountered an error while running the video core. This is usually caused by outdated GPU drivers, including integrated ones. Please see the log for more details. For more information on accessing the log, please see the following page: <a href='https://yuzu-mirror.github.io/help/reference/log-files/'>How to Upload the Log File</a>. + - + + %1<br>Please redump your files or ask on Discord/Revolt for help. + %1 signifies an error string. + + + + Error Opening %1 %1 열기 오류 - + Select Directory 경로 선택 - + Properties 속성 - + The game properties could not be loaded. 게임 속성을 로드 할 수 없습니다. - + Switch Executable (%1);;All Files (*.*) %1 is an identifier for the Switch executable file extensions. Switch 실행파일 (%1);;모든 파일 (*.*) - + Load File 파일 로드 - + Open Extracted ROM Directory 추출된 ROM 디렉토리 열기 - + Invalid Directory Selected 잘못된 디렉토리 선택 - + The directory you have selected does not contain a 'main' file. 선택한 디렉토리에 'main'파일이 없습니다. - + Installable Switch File (*.nca *.nsp *.xci);;Nintendo Content Archive (*.nca);;Nintendo Submission Package (*.nsp);;NX Cartridge Image (*.xci) 설치 가능한 Switch 파일 (*.nca *.nsp *.xci);;Nintendo 컨텐츠 아카이브 (*.nca);;Nintendo 서브미션 패키지 (*.nsp);;NX 카트리지 이미지 (*.xci) - + Install Files 파일 설치 - + %n file(s) remaining %n개의 파일이 남음 + %n개의 파일이 남음 - + Installing file "%1"... 파일 "%1" 설치 중... - - + + Install Results 설치 결과 - + To avoid possible conflicts, we discourage users from installing base games to the NAND. Please, only use this feature to install updates and DLC. 충돌을 피하기 위해, 낸드에 베이스 게임을 설치하는 것을 권장하지 않습니다. 이 기능은 업데이트나 DLC를 설치할 때에만 사용해주세요. - + %n file(s) were newly installed - %n개의 파일이 새로 설치되었습니다. - + %n개의 파일이 새로 설치되었습니다. + %n개의 파일이 새로 설치되었습니다. - + %n file(s) were overwritten - %n개의 파일을 덮어썼습니다. - + %n개의 파일을 덮어썼습니다. + %n개의 파일을 덮어썼습니다. - + %n file(s) failed to install - %n개의 파일을 설치하지 못했습니다. - + %n개의 파일을 설치하지 못했습니다. + %n개의 파일을 설치하지 못했습니다. - + System Application 시스템 애플리케이션 - + System Archive 시스템 아카이브 - + System Application Update 시스템 애플리케이션 업데이트 - + Firmware Package (Type A) 펌웨어 패키지 (A타입) - + Firmware Package (Type B) 펌웨어 패키지 (B타입) - + Game 게임 - + Game Update 게임 업데이트 - + Game DLC 게임 DLC - + Delta Title 델타 타이틀 - + Select NCA Install Type... NCA 설치 유형 선택... - + Please select the type of title you would like to install this NCA as: (In most instances, the default 'Game' is fine.) 이 NCA를 설치할 타이틀 유형을 선택하세요: (대부분의 경우 기본값인 '게임'이 괜찮습니다.) - + Failed to Install 설치 실패 - + The title type you selected for the NCA is invalid. NCA 타이틀 유형이 유효하지 않습니다. - + File not found 파일을 찾을 수 없음 - + File "%1" not found 파일 "%1"을 찾을 수 없습니다 - + OK OK - - + + Hardware requirements not met 하드웨어 요구 사항이 충족되지 않음 - - + + Your system does not meet the recommended hardware requirements. Compatibility reporting has been disabled. 시스템이 권장 하드웨어 요구 사항을 충족하지 않습니다. 호환성 보고가 비활성화되었습니다. - + Missing yuzu Account yuzu 계정 누락 - - In order to submit a game compatibility test case, you must link your eden account.<br><br/>To link your eden account, go to Emulation &gt; Configuration &gt; Web. + + In order to submit a game compatibility test case, you must set up your web token and username.<br><br/>To link your eden account, go to Emulation &gt; Configuration &gt; Web. - - Install decryption keys and restart eden before attempting to install firmware. + + Select Dumped Firmware ZIP - - Firmware installation cancelled, firmware may be in bad state, restart eden or re-install firmware. + + Zipped Archives (*.zip) - - Encryption keys are missing. + + Firmware cleanup failed - - Are you sure you want to close eden? + + Failed to clean up extracted firmware cache. +Check write permissions in the system temp directory and try again. +OS reported error: %1 - - - - eden + + Please install firmware to use the Album applet. - - The currently running application has requested eden to not exit. + + Please install firmware to use the Cabinet applet. + + + + + Please install firmware to use the Mii editor. + + + + + Please install firmware to use the Controller Menu. + + + + + Please install firmware to use the Home Menu. + + + + + Firmware Corrupted + + + + + Firmware Too New + + + + + +Continue anyways? + + + + + Don't show again + + + + + Please install firmware to use Starter. + + + + + Are you sure you want to close Eden? + + + + + + + Eden + + + + + The currently running application has requested Eden to not exit. Would you like to bypass this and exit anyway? + + + Encryption keys are missing. + + In order to submit a game compatibility test case, you must link your yuzu account.<br><br/>To link your yuzu account, go to Emulation &gt; Configuration &gt; Web. 게임 호환성 테스트 결과를 제출하려면 yuzu 계정을 연결해야합니다.<br><br/>yuzu 계정을 연결하려면 에뮬레이션 &gt; 설정 &gt; 웹으로 가세요. - + Error opening URL URL 열기 오류 - + Unable to open the URL "%1". URL "%1"을 열 수 없습니다. - + TAS Recording TAS 레코딩 - + Overwrite file of player 1? 플레이어 1의 파일을 덮어쓰시겠습니까? - + Invalid config detected 유효하지 않은 설정 감지 - + Handheld controller can't be used on docked mode. Pro controller will be selected. 휴대 모드용 컨트롤러는 거치 모드에서 사용할 수 없습니다. 프로 컨트롤러로 대신 선택됩니다. - - + + Amiibo Amiibo - - + + The current amiibo has been removed 현재 amiibo가 제거되었습니다. - + Error 오류 - - + + The current game is not looking for amiibos 현재 게임은 amiibo를 찾고 있지 않습니다 - + Amiibo File (%1);; All Files (*.*) Amiibo 파일 (%1);; 모든 파일 (*.*) - + Load Amiibo Amiibo 로드 - + Error loading Amiibo data Amiibo 데이터 로드 오류 - + The selected file is not a valid amiibo 선택한 파일은 유효한 amiibo가 아닙니다 - + The selected file is already on use 선택한 파일은 이미 사용 중입니다 - + An unknown error occurred 알수없는 오류가 발생했습니다 - - - Verification failed for the following files: - -%1 - - - - + + Keys not installed - + + + Install decryption keys and restart Eden before attempting to install firmware. + + + + Select Dumped Firmware Source Location - - Installing Firmware... - - - - - - - - Firmware install failed - - - - - Unable to locate potential firmware NCA files - - - - - Failed to delete one or more firmware file. - - - - - One or more firmware files failed to copy into NAND. - - - - - Firmware integrity verification failed! - - - - - Select Dumped Keys Location - - - - - - - Decryption Keys install failed - - - - - prod.keys is a required decryption key file. - - - - - One or more keys failed to copy. - - - - - Decryption Keys install succeeded - - - - - Decryption Keys were successfully installed - - - - - Decryption Keys failed to initialize. Check that your dumping tools are up to date and re-dump keys. - - - - - - - - - - + + + + + + No firmware available - - Please install the firmware to use the Album applet. - - - - + Album Applet - + Album applet is not available. Please reinstall firmware. - - Please install the firmware to use the Cabinet applet. - - - - + Cabinet Applet - + Cabinet applet is not available. Please reinstall firmware. - - Please install the firmware to use the Mii editor. - - - - + Mii Edit Applet - + Mii editor is not available. Please reinstall firmware. - - Please install the firmware to use the Controller Menu. - - - - + Controller Applet 컨트롤러 애플릿 - + Controller Menu is not available. Please reinstall firmware. - - Please install the firmware to use the Home Menu. - - - - - + Home Menu Applet - - + Home Menu is not available. Please reinstall firmware. - - Please install the firmware to use Starter. - - - - + Starter Applet - + Starter is not available. Please reinstall firmware. - - Please install firmware to use the home menu. - - - - + Capture Screenshot 스크린샷 캡처 - + PNG Image (*.png) PNG 이미지 (*.png) - + Update Available - + Update %1 for Eden is available. Would you like to download it? - + TAS state: Running %1/%2 TAS 상태: %1/%2 실행 중 - + TAS state: Recording %1 TAS 상태: 레코딩 %1 - + TAS state: Idle %1/%2 TAS 상태: 유휴 %1/%2 - + TAS State: Invalid TAS 상태: 유효하지 않음 - + &Stop Running 실행 중지(&S) - + &Start 시작(&S) - + Stop R&ecording 레코딩 중지(&e) - + R&ecord 레코드(&R) - + Building: %n shader(s) 빌드중: %n개 셰이더 + 빌드중: %n개 셰이더 - + Scale: %1x %1 is the resolution scaling factor 스케일: %1x - + Speed: %1% / %2% 속도: %1% / %2% - + Speed: %1% 속도: %1% @@ -6707,54 +6791,54 @@ Would you like to download it? 게임: %1 FPS (제한없음) - + Game: %1 FPS 게임: %1 FPS - + Frame: %1 ms 프레임: %1 ms - + %1 %2 %1 %2 - - + + FSR FSR - + NO AA AA 없음 - + VOLUME: MUTE 볼륨: 음소거 - + VOLUME: %1% Volume percentage (e.g. 50%) 볼륨: %1% - + Derivation Components Missing 파생 구성 요소 누락 - + Select RomFS Dump Target RomFS 덤프 대상 선택 - + Please select which RomFS you would like to dump. 덤프할 RomFS를 선택하십시오. @@ -6767,7 +6851,7 @@ Would you like to download it? yuzu - + Are you sure you want to stop the emulation? Any unsaved progress will be lost. 에뮬레이션을 중지하시겠습니까? 모든 저장되지 않은 진행 상황은 사라집니다. @@ -6780,102 +6864,102 @@ Would you like to bypass this and exit anyway? 이를 무시하고 나가시겠습니까? - + None 없음 - + FXAA FXAA - + SMAA SMAA - + Nearest Nearest - + Bilinear Bilinear - + Bicubic Bicubic - + Gaussian 가우시안 - + ScaleForce 스케일포스 - + Area - + Docked 거치 모드 - + Handheld 휴대 모드 - + Normal 보통 - + High 높음 - + Extreme 익스트림 - + Vulkan 불칸 - + OpenGL OpenGL - + Null Null - + GLSL GLSL - + GLASM GLASM - + SPIRV SPIRV @@ -6883,13 +6967,13 @@ Would you like to bypass this and exit anyway? GRenderWindow - - + + OpenGL not available! OpenGL을 사용할 수 없습니다! - + OpenGL shared contexts are not supported. OpenGL 공유 컨텍스트는 지원되지 않습니다. @@ -6898,33 +6982,33 @@ Would you like to bypass this and exit anyway? yuzu는 OpenGL 지원으로 컴파일되지 않았습니다. - - eden has not been compiled with OpenGL support. + + Eden has not been compiled with OpenGL support. - - + + 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.6! OpenGL 4.6 초기화 중 오류 발생! - + Your GPU may not support OpenGL 4.6, or you do not have the latest graphics driver.<br><br>GL Renderer:<br>%1 사용하시는 GPU가 OpenGL 4.6을 지원하지 않거나 최신 그래픽 드라이버가 설치되어 있지 않습니다. <br><br>GL 렌더링 장치:<br>%1 - + Your GPU may not support one or more required OpenGL extensions. Please ensure you have the latest graphics driver.<br><br>GL Renderer:<br>%1<br><br>Unsupported extensions:<br>%2 사용하시는 GPU가 1개 이상의 OpenGL 확장 기능을 지원하지 않습니다. 최신 그래픽 드라이버가 설치되어 있는지 확인하세요. <br><br>GL 렌더링 장치:<br>%1<br><br>지원하지 않는 확장 기능:<br>%2 @@ -6932,128 +7016,128 @@ Would you like to bypass this and exit anyway? GameList - + Favorite 선호하는 게임 - + Start Game 게임 시작 - + Start Game without Custom Configuration 맞춤 설정 없이 게임 시작 - + Open Save Data Location 세이브 데이터 경로 열기 - + Open Mod Data Location MOD 데이터 경로 열기 - + Open Transferable Pipeline Cache 전송 가능한 파이프라인 캐시 열기 - + Remove 제거 - + Remove Installed Update 설치된 업데이트 삭제 - + Remove All Installed DLC 설치된 모든 DLC 삭제 - + Remove Custom Configuration 사용자 지정 구성 제거 - + Remove Play Time Data - + Remove Cache Storage 캐시 스토리지 제거 - + Remove OpenGL Pipeline Cache OpenGL 파이프라인 캐시 제거 - + Remove Vulkan Pipeline Cache Vulkan 파이프라인 캐시 제거 - + Remove All Pipeline Caches 모든 파이프라인 캐시 제거 - + Remove All Installed Contents 설치된 모든 컨텐츠 제거 - + Dump RomFS RomFS를 덤프 - + Dump RomFS to SDMC RomFS를 SDMC로 덤프 - + Verify Integrity - + Copy Title ID to Clipboard 클립보드에 타이틀 ID 복사 - + Navigate to GameDB entry GameDB 항목으로 이동 - + Create Shortcut 바로가기 만들기 - + Add to Desktop 데스크톱에 추가 - + Add to Applications Menu 애플리케이션 메뉴에 추가 - + Configure Game @@ -7062,62 +7146,62 @@ Would you like to bypass this and exit anyway? 속성 - + Scan Subfolders 하위 폴더 스캔 - + Remove Game Directory 게임 디렉토리 제거 - + ▲ Move Up ▲ 위로 이동 - + ▼ Move Down ▼ 아래로 이동 - + Open Directory Location 디렉토리 위치 열기 - + Clear 초기화 - + Name 이름 - + Compatibility 호환성 - + Add-ons 부가 기능 - + File type 파일 형식 - + Size 크기 - + Play time @@ -7125,62 +7209,62 @@ Would you like to bypass this and exit anyway? GameListItemCompat - + Ingame 게임 내 - + Game starts, but crashes or major glitches prevent it from being completed. 게임이 시작되지만, 충돌이나 주요 결함으로 인해 게임이 완료되지 않습니다. - + Perfect 완벽함 - + Game can be played without issues. 문제 없이 게임 플레이가 가능합니다. - + Playable 재생 가능 - + Game functions with minor graphical or audio glitches and is playable from start to finish. 약간의 그래픽 또는 오디오 결함이 있는 게임 기능이 있으며 처음부터 끝까지 플레이할 수 있습니다. - + Intro/Menu 인트로/메뉴 - + Game loads, but is 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. 이 게임은 아직 테스트되지 않았습니다. @@ -7188,7 +7272,7 @@ Would you like to bypass this and exit anyway? GameListPlaceholder - + Double-click to add a new folder to the game list 더블 클릭하여 게임 목록에 새 폴더 추가 @@ -7196,19 +7280,20 @@ Would you like to bypass this and exit anyway? GameListSearchField - + %1 of %n result(s) %1 중의 %n 결과 + %1 중의 %n 결과 - + Filter: 필터: - + Enter pattern to filter 검색 필터 입력 @@ -7290,7 +7375,7 @@ Would you like to bypass this and exit anyway? - Failed to announce the room to the public lobby. In order to host a room publicly, you must have a valid eden account configured in Emulation -> Configure -> Web. If you do not want to publish a room in the public lobby, then select Unlisted instead. + Failed to announce the room to the public lobby. In order to host a room publicly, you must have a valid Eden 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: @@ -7304,190 +7389,190 @@ Debug Message: Hotkeys - + Audio Mute/Unmute 오디오 음소거/음소거 해제 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Main Window 메인 윈도우 - + Audio Volume Down 오디오 볼륨 낮추기 - + Audio Volume Up 오디오 볼륨 키우기 - + Capture Screenshot 스크린샷 캡처 - + Change Adapting Filter 적응형 필터 변경 - + Change Docked Mode 독 모드 변경 - + Change GPU Accuracy GPU 정확성 변경 - + Configure 설정 - + Configure Current Game - + Continue/Pause Emulation 재개/에뮬레이션 일시중지 - + Exit Fullscreen 전체화면 종료 + + + Exit Eden + + Exit yuzu yuzu 종료 - - Exit eden - - - - + Fullscreen 전체화면 - + Load File 파일 로드 - + Load/Remove Amiibo Amiibo 로드/제거 - + Multiplayer Browse Public Game Lobby - + Multiplayer Create Room - + Multiplayer Direct Connect to Room - + Multiplayer Leave Room - + Multiplayer Show Current Room - + Restart Emulation 에뮬레이션 재시작 - + Stop Emulation 에뮬레이션 중단 - + TAS Record TAS 기록 - + TAS Reset TAS 리셋 - + TAS Start/Stop TAS 시작/멈춤 - + Toggle Filter Bar 상태 표시줄 전환 - + Toggle Framerate Limit 프레임속도 제한 토글 - + Toggle Mouse Panning 마우스 패닝 활성화 - + Toggle Renderdoc Capture - + Toggle Status Bar 상태 표시줄 전환 @@ -7495,22 +7580,22 @@ Debug Message: InstallDialog - + Please confirm these are the files you wish to install. 설치하려는 파일이 맞는지 확인하십시오. - + Installing an Update or DLC will overwrite the previously installed one. 업데이트 또는 DLC를 설치하면 이전에 설치된 업데이트를 덮어 씁니다. - + Install 설치 - + Install Files to NAND NAND에 파일 설치 @@ -7518,7 +7603,7 @@ Debug Message: LimitableInputDialog - + The text can't contain any of the following characters: %1 텍스트는 다음 문자를 포함할 수 없습니다: @@ -7665,152 +7750,207 @@ Debug Message: 최근 파일(&R) - + + Open &Eden Folders + + + + &Emulation 에뮬레이션(&E) - + &View 보기(&V) - + &Reset Window Size 창 크기 초기화 (&R) - + &Debugging 디버깅(&D) - + Reset Window Size to &720p 창 크기를 720p로 맞추기(&7) - + Reset Window Size to 720p 창 크기를 720p로 맞추기 - + Reset Window Size to &900p 창 크기를 900p로 맞추기(&9) - + Reset Window Size to 900p 창 크기를 900p로 맞추기 - + Reset Window Size to &1080p 창 크기를 1080p로 맞추기(&1) - + Reset Window Size to 1080p 창 크기를 1080p로 맞추기 - + &Multiplayer 멀티플레이어(&M) - + &Tools 도구(&T) - + &Amiibo - + &TAS TAS(&T) - + &Create Home Menu Shortcut - + &Help 도움말(&H) - + &Install Files to NAND... 낸드에 파일 설치(&I) - + L&oad File... 파일 불러오기...(&L) - + Load &Folder... 폴더 불러오기...(&F) - + E&xit 종료(&X) - + &Pause 일시중지(&P) - + &Stop 정지(&S) - + &Verify Installed Contents - - &About eden + + &Root Data Folder - - Open &eden Folder + + &NAND Folder - + + &SDMC Folder + + + + + &Mod Folder + + + + + &Log Folder + + + + + From Folder + + + + + From ZIP + + + + + &X + + + + + X (Twitter) + + + + + &Revolt + + + + + Revolt + + + + + &Eden Dependencies + + + + Open Home Menu - + &Discord - + Open &Setup - + &Desktop - + &Application Menu @@ -7819,97 +7959,97 @@ Debug Message: yuzu 정보(&A) - + Single &Window Mode 싱글 창 모드(&W) - + Con&figure... 설정(&f) - + Ctrl+, - + Display D&ock Widget Headers 독 위젯 헤더 표시(&o) - + Show &Filter Bar 필터링 바 표시(&F) - + Show &Status Bar 상태 표시줄 보이기(&S) - + Show Status Bar 상태 표시줄 보이기 - + &Browse Public Game Lobby 공개 게임 로비 찾아보기(&B) - + &Create Room 방 만들기(&C) - + &Leave Room 방에서 나가기(&L) - + &Direct Connect to Room 방에 직접 연결(&D) - + &Show Current Room 현재 방 표시(&S) - + F&ullscreen 전체 화면(&u) - + &Restart 재시작(&R) - + Load/Remove &Amiibo... Amiibo 로드/제거(&A)... - + &Report Compatibility 호환성 보고(&R) - + Open &Mods Page 게임 모드 페이지 열기(&M) - + Open &Quickstart Guide 빠른 시작 가이드 열기(&Q) - + &FAQ FAQ(&F) @@ -7918,77 +8058,82 @@ Debug Message: yuzu 폴더 열기(&y) - + &Capture Screenshot 스크린샷 찍기(&C) - + Open &Album - + &Set Nickname and Owner - + &Delete Game Data - + &Restore Amiibo - + &Format Amiibo - + Open &Mii Editor - + &Configure TAS... TAS설정...(&C) - + Configure C&urrent Game... 실행중인 게임 맞춤 설정...(&u) - + &Start 시작(&S) - + &Reset 리셋(&R) - + R&ecord 레코드(&e) - + Open &Controller Menu - + Install Firmware - + + &About Eden + + + + Install Decryption Keys @@ -7996,26 +8141,36 @@ Debug Message: MicroProfileDialog - &MicroProfile - 마이크로 프로파일(&M) + 마이크로 프로파일(&M) MigrationWorker - + Data was migrated successfully. - + Linking the old directory failed. You may need to re-run with administrative privileges on Windows. OS gave error: %1 - + + + +Note that your configuration and data will be shared with %1. +If this is not desirable, delete the following files: +%2 +%3 +%4 + + + + If you wish to clean up the files which were left in the old data location, you can do so by deleting the following directory: @@ -8075,37 +8230,37 @@ If you wish to clean up the files which were left in the old data location, you MultiplayerState - + Current connection status 현재 연결 상태 - + Not Connected. Click here to find a room! 연결되지 않았습니다. 방을 찾으려면 여기를 클릭하세요! - + Not Connected 연결되지 않음 - + Connected 연결됨 - + New Messages Received 수신된 새 메시지 - + Error 오류 - + Failed to update the room information. Please check your Internet connection and try hosting the room again. Debug Message: 방 정보를 업데이트하지 못했습니다. 인터넷 연결을 확인하고 방을 다시 호스팅해 보세요. @@ -8297,56 +8452,56 @@ p, li { white-space: pre-wrap; } 게임을 하지 않음 - + Installed SD Titles 설치된 SD 타이틀 - + Installed NAND Titles 설치된 NAND 타이틀 - + System Titles 시스템 타이틀 - + Add New Game Directory 새 게임 디렉토리 추가 - + Favorites 선호하는 게임 - - + + Shift Shift - - + + Ctrl Ctrl - - + + Alt Alt - - - - + + + + [not set] [설정 안 됨] @@ -8357,14 +8512,14 @@ p, li { white-space: pre-wrap; } 방향키 %1 %2 - - - - - - - - + + + + + + + + Axis %1%2 축 %1%2 @@ -8375,357 +8530,357 @@ p, li { white-space: pre-wrap; } %1 버튼 - - - - - - + + + + + + [unknown] [알 수 없음] - - - + + + Left 왼쪽 - - - + + + Right 오른쪽 - - - + + + Down 아래 - - - + + + Up - - + + Z Z - - + + R R - - + + L L - - + + A A - - + + B B - - + + X X - - + + Y Y - - + + Start Start - - + + L1 L1 - - + + L2 L2 - - + + L3 L3 - - + + R1 R1 - - + + R2 R2 - - + + R3 R3 - - + + Circle 동그라미 - - + + Cross 엑스 - - + + Square 네모 - - + + Triangle 세모 - - + + Share Share - - + + Options Options - - + + [undefined] [설정안됨] - + %1%2 %1%2 - - + + [invalid] [유효하지않음] - - + + %1%2Hat %3 %1%2방향키 %3 - - - + + + %1%2Axis %3 %1%2Axis %3 - - + + %1%2Axis %3,%4,%5 %1%2Axis %3,%4,%5 - - + + %1%2Motion %3 %1%2모션 %3 - - + + %1%2Button %3 %1%2버튼 %3 - - + + [unused] [미사용] - + ZR ZR - + ZL ZL - + SR SR - + SL SL - + Stick L L 스틱 - + Stick R R 스틱 - + Plus + - + Minus - - - + + Home - + Capture 캡쳐 - + Touch 터치 - + Wheel Indicates the mouse wheel - + Backward 뒤로가기 - + Forward 앞으로가기 - + Task Task - + Extra Extra - + %1%2%3%4 %1%2%3%4 - - + + %1%2%3Hat %4 %1%2%3방향키%4 - - + + %1%2%3Axis %4 %1%2%3Axis %4 - - + + %1%2%3Button %4 %1%2%3버튼%4 - - + + Migration - + - - + + No - + You can manually re-trigger this prompt by deleting the new config directory: %1 - + Migrating - + Migrating, this may take a while... @@ -8843,6 +8998,298 @@ p, li { white-space: pre-wrap; } 이 amiibo를 복원하겠습니까? + + QtCommon::Content + + + Installing Firmware... + + + + + + + Cancel + 취소 + + + + Firmware integrity verification failed! + + + + + + Verification failed for the following files: + +%1 + + + + + + Verifying integrity... + + + + + + Integrity verification succeeded! + 무결성 검증에 성공했습니다. + + + + + The operation completed successfully. + + + + + + Integrity verification failed! + 무결성 검증에 실패했습니다. + + + + File contents may be corrupt or missing. + + + + + Integrity verification couldn't be performed + + + + + Firmware installation cancelled, firmware may be in a bad state or corrupted. File contents could not be checked for validity. + + + + + Select Dumped Keys Location + + + + + Decryption Keys install succeeded + + + + + Decryption Keys were successfully installed + + + + + Decryption Keys install failed + + + + + QtCommon::Game + + + Error Removing Contents + 콘텐츠 제거 중 오류 발생 + + + + Error Removing Update + 업데이트 제거 오류 + + + + Error Removing DLC + DLC 제거 오류 + + + + The base game is not installed in the NAND and cannot be removed. + 기본 게임은 NAND에 설치되어 있지 않으며 제거 할 수 없습니다. + + + + There is no update installed for this title. + 이 타이틀에 대해 설치된 업데이트가 없습니다. + + + + There are no DLCs installed for this title. + + + + + + + + Successfully Removed + 삭제 완료 + + + + Successfully removed %1 installed DLC. + 설치된 %1 DLC를 성공적으로 제거했습니다. + + + + + Error Removing Transferable Shader Cache + 전송 가능한 셰이더 캐시 제거 오류 + + + + + A shader cache for this title does not exist. + 이 타이틀에 대한 셰이더 캐시가 존재하지 않습니다. + + + + Successfully removed the transferable shader cache. + 전송 가능한 셰이더 캐시를 성공적으로 제거했습니다. + + + + Failed to remove the transferable shader cache. + 전송 가능한 셰이더 캐시를 제거하지 못했습니다. + + + + Error Removing Vulkan Driver Pipeline Cache + Vulkan 드라이버 파이프라인 캐시 제거 오류 + + + + Failed to remove the driver pipeline cache. + 드라이버 파이프라인 캐시를 제거하지 못했습니다. + + + + + Error Removing Transferable Shader Caches + 전송 가능한 셰이더 캐시 제거 오류 + + + + Successfully removed the transferable shader caches. + 전송 가능한 셰이더 캐시를 성공적으로 제거했습니다. + + + + Failed to remove the transferable shader cache directory. + 전송 가능한 셰이더 캐시 디렉토리를 제거하지 못했습니다. + + + + + Error Removing Custom Configuration + 사용자 지정 구성 제거 오류 + + + + A custom configuration for this title does not exist. + 이 타이틀에 대한 사용자 지정 구성이 존재하지 않습니다. + + + + Successfully removed the custom game configuration. + 사용자 지정 게임 구성을 성공적으로 제거했습니다. + + + + Failed to remove the custom game configuration. + 사용자 지정 게임 구성을 제거하지 못했습니다. + + + + Reset Metadata Cache + 메타 데이터 캐시 초기화 + + + + The metadata cache is already empty. + 메타 데이터 캐시가 이미 비어있습니다. + + + + The operation completed successfully. + + + + + The metadata cache couldn't be deleted. It might be in use or non-existent. + 메타 데이터 캐시 삭제를 삭제할 수 없습니다. 해당 파일이 이미 사용 중이거나 존재하지 않을 수 있습니다. + + + + Create Shortcut + 바로가기 만들기 + + + + Do you want to launch the game in fullscreen? + + + + + Shortcut Created + + + + + Successfully created a shortcut to %1 + %1 바로가기를 성공적으로 만듬 + + + + Shortcut may be Volatile! + + + + + This will create a shortcut to the current AppImage. This may not work well if you update. Continue? + 현재 AppImage에 대한 바로 가기가 생성됩니다. 업데이트하면 제대로 작동하지 않을 수 있습니다. 계속합니까? + + + + Failed to Create Shortcut + + + + + Failed to create a shortcut to %1 + + + + + Create Icon + 아이콘 만들기 + + + + Cannot create icon file. Path "%1" does not exist and cannot be created. + 아이콘 파일을 만들 수 없습니다. 경로 "%1"이(가) 존재하지 않으며 생성할 수 없습니다. + + + + No firmware available + + + + + Please install firmware to use the home menu. + + + + + Home Menu Applet + + + + + Home Menu is not available. Please reinstall firmware. + + + QtControllerSelectorDialog @@ -9138,7 +9585,7 @@ Please try again or contact the developer of the software. QtProfileSelectionDialog - + %1 %2 %1 is the profile username, %2 is the formatted UUID (e.g. 00112233-4455-6677-8899-AABBCCDDEEFF)) @@ -9146,7 +9593,7 @@ Please try again or contact the developer of the software. %2 - + Users 사용자 @@ -9270,7 +9717,7 @@ p, li { white-space: pre-wrap; } WaitTreeCallstack - + Call stack 콜 스택 @@ -9278,12 +9725,12 @@ p, li { white-space: pre-wrap; } WaitTreeSynchronizationObject - + [%1] %2 [%1] %2 - + waited by no thread 스레드를 기다리고 있지 않습니다 @@ -9291,102 +9738,102 @@ p, li { white-space: pre-wrap; } WaitTreeThread - + runnable 실행 가능 - + paused 일시중지 - + sleeping 수면중 - + waiting for IPC reply IPC 회신을 기다립니다 - + waiting for objects 개체를 기다립니다 - + waiting for condition variable 조건 변수를 기다립니다 - + waiting for address arbiter 주소 결정인을 기다립니다 - + waiting for suspend resume 보류 재개를 기다리는 중 - + waiting 기다리는 중 - + initialized 초기화됨 - + terminated 종료됨 - + unknown 알 수 없음 - + PC = 0x%1 LR = 0x%2 PC = 0x%1 LR = 0x%2 - + ideal 이상적 - + core %1 코어 %1 - + processor = %1 프로세서 = %1 - + affinity mask = %1 선호도 마스크 = %1 - + thread id = %1 스레드 아이디 = %1 - + priority = %1(current) / %2(normal) 우선순위 = %1(현재) / %2(일반) - + last running ticks = %1 마지막 실행 틱 = %1 @@ -9394,7 +9841,7 @@ p, li { white-space: pre-wrap; } WaitTreeThreadList - + waited by thread 스레드에서 기다림 @@ -9402,7 +9849,7 @@ p, li { white-space: pre-wrap; } WaitTreeWidget - + &Wait Tree 대기 트리(&W) diff --git a/dist/languages/nb.ts b/dist/languages/nb.ts index 5a3e000a21..854615b3ed 100644 --- a/dist/languages/nb.ts +++ b/dist/languages/nb.ts @@ -13,12 +13,12 @@ - About eden + About Eden - <html><head/><body><p><span style=" font-size:28pt;">eden</span></p></body></html> + <html><head/><body><p><span style=" font-size:28pt;">Eden</span></p></body></html> @@ -34,8 +34,8 @@ p, li { white-space: pre-wrap; } hr { height: 1px; border-width: 0; } li.unchecked::marker { content: "\2610"; } li.checked::marker { content: "\2612"; } -</style></head><body style=" font-family:'Adwaita Sans'; font-size:11pt; font-weight:400; font-style:normal;"> -<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;">eden is an experimental open-source emulator for the Nintendo Switch licensed under GPLv3.0+ which is based on the yuzu emulator which ended development back in March 2024. <br /><br />This software should not be used to play games you have not legally obtained.</span></p></body></html> +</style></head><body style=" font-family:'Noto Sans'; font-size:9pt; font-weight:400; font-style:normal;"> +<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;">Eden is an experimental open-source emulator for the Nintendo Switch licensed under GPLv3.0+ which is based on the yuzu emulator which ended development back in March 2024. <br /><br />This software should not be used to play games you have not legally obtained.</span></p></body></html> @@ -72,32 +72,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. Berør øverste venstre hjørne <br>på styreplaten. - + Now touch the bottom right corner <br>of your touchpad. Berør så nederste venstre hjørne <br>på styreplaten. - + Configuration completed! Konfigurasjon ferdig! - + OK OK @@ -397,439 +397,157 @@ Dette vil bannlyse både deres forum brukernavn og deres IP adresse. ConfigurationShared - + % % - - Amiibo editor - - - - - Controller configuration - - - - - Data erase - - - - + Error Feil - - Net connect - - - - - Player select - - - - + Software keyboard Programvaretastatur - - Mii Edit - - - - - Online web - - - - - Shop - - - - - Photo viewer - - - - - Offline web - - - - - Login share - - - - - Wifi web auth - - - - - My page - - - - + Output Engine: Utgangsmotor - + Output Device: Utgangsenhet: - + Input Device: Inngangsenhet: - - Mute audio - - - - + Volume: Volum: - + Mute audio when in background Demp lyden når yuzu kjører i bakgrunnen - + Multicore CPU Emulation Fjerkjernes prosessoremulering - - This option increases CPU emulation thread use from 1 to the Switch’s maximum of 4. -This is mainly a debug option and shouldn’t be disabled. - - - - - Memory Layout - - - - - Increases the amount of emulated RAM from the stock 4GB of the retail Switch to the developer kit's 8/6GB. -It’s doesn’t improve stability or performance and is intended to let big texture mods fit in emulated RAM. -Enabling it will increase memory use. It is not recommended to enable unless a specific game with a texture mod needs it. - - - - + Limit Speed Percent Begrens Farts-Prosent - - Controls the game's maximum rendering speed, but it’s up to each game if it runs faster or not. -200% for a 30 FPS game is 60 FPS, and for a 60 FPS game it will be 120 FPS. -Disabling it means unlocking the framerate to the maximum your PC can reach. - - - - - Synchronize Core Speed - - - - - Synchronizes CPU core speed with the game's maximum rendering speed to boost FPS without affecting game speed (animations, physics, etc.). -Compatibility varies by game; many (especially older ones) may not respond well. -Can help reduce stuttering at lower framerates. - - - - + Accuracy: Nøyaktighet: - - This setting controls the accuracy of the emulated CPU. -Don't change this unless you know what you are doing. - - - - - - Backend: - - - - - Fast CPU Time - - - - - Overclocks the emulated CPU to remove some FPS limiters. Weaker CPUs may see reduced performance, and certain games may behave improperly. -Use Boost (1700MHz) to run at the Switch's highest native clock, or Fast (2000MHz) to run at 2x clock. - - - - + Unfuse FMA (improve performance on CPUs without FMA) Del opp FMA (forbedre ytelsen på prosessorer uten FMA) - - This option improves speed by reducing accuracy of fused-multiply-add instructions on CPUs without native FMA support. - - - - + Faster FRSQRTE and FRECPE Raskere FRSQRTE og FRECPE - - This option improves the speed of some approximate floating-point functions by using less accurate native approximations. - - - - + Faster ASIMD instructions (32 bits only) Raskere ASIMD-instruksjoner (kun 32-bit) - - This option improves the speed of 32 bits ASIMD floating-point functions by running with incorrect rounding modes. - - - - + Inaccurate NaN handling Unøyaktig NaN-håndtering - - This option improves speed by removing NaN checking. -Please note this also reduces accuracy of certain floating-point instructions. - - - - + Disable address space checks Slå av adresseromskontroller - - This option improves speed by eliminating a safety check before every memory read/write in guest. -Disabling it may allow a game to read/write the emulator's memory. - - - - + Ignore global monitor Ignorer global overvåkning - - This option improves speed by relying only on the semantics of cmpxchg to ensure safety of exclusive access instructions. -Please note this may result in deadlocks and other race conditions. - - - - + API: API: - - Switches between the available graphics APIs. -Vulkan is recommended in most cases. - - - - + Device: Enhet: - - This setting selects the GPU to use with the Vulkan backend. - - - - + Shader Backend: Shader-backend: - - The shader backend to use for the OpenGL renderer. -GLSL is the fastest in performance and the best in rendering accuracy. -GLASM is a deprecated NVIDIA-only backend that offers much better shader building performance at the cost of FPS and rendering accuracy. -SPIR-V compiles the fastest, but yields poor results on most GPU drivers. - - - - + Resolution: Oppløsning: - - Forces the game to render at a different resolution. -Higher resolutions require much more VRAM and bandwidth. -Options lower than 1X can cause rendering issues. - - - - + Window Adapting Filter: Vindustilpasningsfilter: - + FSR Sharpness: FSR Skarphet: - - Determines how sharpened the image will look while using FSR’s dynamic contrast. - - - - + Anti-Aliasing Method: Anti-aliasing–metode: - - The anti-aliasing method to use. -SMAA offers the best quality. -FXAA has a lower performance impact and can produce a better and more stable picture under very low resolutions. - - - - + Fullscreen Mode: Fullskjermmodus: - - The method used to render the window in fullscreen. -Borderless offers the best compatibility with the on-screen keyboard that some games request for input. -Exclusive fullscreen may offer better performance and better Freesync/Gsync support. - - - - + Aspect Ratio: Størrelsesforhold: - - Stretches the game to fit the specified aspect ratio. -Switch games only support 16:9, so custom game mods are required to get other ratios. -Also controls the aspect ratio of captured screenshots. - - - - + Use disk pipeline cache Bruk diskens rørledningsmellomlagring - - Allows saving shaders to storage for faster loading on following game boots. -Disabling it is only intended for debugging. - - - - - Optimize SPIRV output shader - - - - - Runs an additional optimization pass over generated SPIRV shaders. -Will increase time required for shader compilation. -May slightly improve performance. -This feature is experimental. - - - - + Use asynchronous GPU emulation Bruk asynkron GPU-emulering - - Uses an extra CPU thread for rendering. -This option should always remain enabled. - - - - + NVDEC emulation: NVDEC-emulering: - - Specifies how videos should be decoded. -It can either use the CPU or the GPU for decoding, or perform no decoding at all (black screen on videos). -In most cases, GPU decoding provides the best performance. - - - - - ASTC Decoding Method: - - - - - This option controls how ASTC textures should be decoded. -CPU: Use the CPU for decoding, slowest but safest method. -GPU: Use the GPU's compute shaders to decode ASTC textures, recommended for most games and users. -CPU Asynchronously: Use the CPU to decode ASTC textures as they arrive. Completely eliminates ASTC decoding -stuttering at the cost of rendering issues while the texture is being decoded. - - - - - ASTC Recompression Method: - - - - - Almost all desktop and laptop dedicated GPUs lack support for ASTC textures, forcing the emulator to decompress to an intermediate format any card supports, RGBA8. -This option recompresses RGBA8 to either the BC1 or BC3 format, saving VRAM but negatively affecting image quality. - - - - - VRAM Usage Mode: - - - - - Selects whether the emulator should prefer to conserve memory or make maximum usage of available video memory for performance. Has no effect on integrated graphics. Aggressive mode may severely impact the performance of other applications such as recording software. - - - - + VSync Mode: VSync Modus: - + FIFO (VSync) does not drop frames or exhibit tearing but is limited by the screen refresh rate. FIFO Relaxed is similar to FIFO but allows tearing as it recovers from a slow down. Mailbox can have lower latency than FIFO and does not tear but may drop frames. @@ -840,62 +558,34 @@ Mailbox kan ha lavere ventetid enn FIFO og river ikke, men kan slippe rammer. Umiddelbar (ingen synkronisering) presenterer bare det som er tilgjengelig og kan vise riving. - + Enable asynchronous presentation (Vulkan only) Aktiver asynkron presentasjon (kun Vulkan) - - Slightly improves performance by moving presentation to a separate CPU thread. - - - - + Force maximum clocks (Vulkan only) Tving maksikal klokkehastighet (kun Vulkan) - + Runs work in the background while waiting for graphics commands to keep the GPU from lowering its clock speed. Kjører arbeid i bakgrunnen mens den venter på grafikkommandoer for å forhindre at GPU-en senker klokkehastigheten. - + Anisotropic Filtering: Anisotropisk filtrering: - - Controls the quality of texture rendering at oblique angles. -It’s a light setting and safe to set at 16x on most GPUs. - - - - Accuracy Level: - Nøyaktighetsnivå: + Nøyaktighetsnivå: - - GPU emulation accuracy. -Most games render fine with Normal, but High is still required for some. -Particles tend to only render correctly with High accuracy. -Extreme should only be used for debugging. -This option can be changed while playing. -Some games may require booting on high to render properly. - - - - + Use asynchronous shader building (Hack) Bruk asynkron shader-bygging (hack) - - - Enables asynchronous shader compilation, which may reduce shader stutter. -This feature is experimental. - - Use Fast GPU Time (Hack) Bruk Rask GPU-Tid (Hack) @@ -905,1021 +595,1428 @@ This feature is experimental. Aktiverer rask GPU-tid. Dette alternativet vil tvinge de fleste spill til å kjøre med sin høyeste opprinnelige oppløsning. - + Use Vulkan pipeline cache Bruk Vulkan rørledningsbuffer - + + Enable Reactive Flushing + Aktiver Reaktiv Tømming + + + + Sync to framerate of video playback + Synkroniser med bildefrekvensen for videoavspilling + + + + Run the game at normal speed during video playback, even when the framerate is unlocked. + Kjør spillet i normal hastighet under videoavspilling, selv når bildefrekvensen er låst opp. + + + + Barrier feedback loops + Tilbakekoblingssløyfer for barrierer + + + + Improves rendering of transparency effects in specific games. + Forbedrer gjengivelsen av transparenseffekter i spesifikke spill. + + + + RNG Seed + Frø For Tilfeldig Nummergenerering + + + + Device Name + Enhetsnavn + + + + Note: this can be overridden when region setting is auto-select + NB: dette kan bli overstyrt når regionsinnstillingen er satt til auto-valg + + + + Region: + Region: + + + + Time Zone: + Tidssone: + + + + Sound Output Mode: + Lydutgangsmodus: + + + + Prompt for user on game boot + Spør om bruker når et spill starter + + + + Pause emulation when in background + Paus emulering når yuzu kjører i bakgrunnen + + + + Hide mouse on inactivity + Gjem mus under inaktivitet + + + + Disable controller applet + Deaktiver kontroller-appleten + + + + CPU + CPU + + + + Uncompressed (Best quality) + Ukomprimert (beste kvalitet) + + + + BC1 (Low quality) + BC1 (Lav kvalitet) + + + + BC3 (Medium quality) + BC3 (Medium kvalitet) + + + + OpenGL + OpenGL + + + + Vulkan + Vulkan + + + + Null + Null + + + + GLSL + GLSL + + + + GLASM (Assembly Shaders, NVIDIA Only) + GLASM (assembly-shader-e, kun med NVIDIA) + + + + Normal + Normal + + + + High + Høy + + + + Extreme + Ekstrem + + + + Auto + Auto + + + + Accurate + Nøyaktig + + + + Unsafe + Utrygt + + + + Paranoid (disables most optimizations) + Paranoid (deaktiverer de fleste optimaliseringer) + + + + Borderless Windowed + Rammeløst vindu + + + + Exclusive Fullscreen + Eksklusiv fullskjerm + + + + No Video Output + Ingen videoutdata + + + + CPU Video Decoding + Prosessorvideodekoding + + + + GPU Video Decoding (Default) + GPU-videodekoding (standard) + + + + 0.75X (540p/810p) [EXPERIMENTAL] + 0.75X (540p/810p) [EKSPERIMENTELL] + + + + 1X (720p/1080p) + 1X (720p/1080p) + + + + 1.5X (1080p/1620p) [EXPERIMENTAL] + 1.5X (1080p/1620p) [EXPERIMENTELL] + + + + 2X (1440p/2160p) + 2X (1440p/2160p) + + + + 3X (2160p/3240p) + 3X (2160p/3240p) + + + + 4X (2880p/4320p) + 4X (2880p/4320p) + + + + 5X (3600p/5400p) + 5X (3600p/5400p) + + + + 6X (4320p/6480p) + 6X (4320p/6480p) + + + + 7X (5040p/7560p) + 7X (5040p/7560p) + + + + 8X (5760p/8640p) + 8X (5760p/8640p) + + + + Nearest Neighbor + Nærmeste nabo + + + + Bilinear + Bilineær + + + + Bicubic + Bikubisk + + + + Gaussian + Gaussisk + + + + ScaleForce + ScaleForce + + + + AMD FidelityFX™️ Super Resolution + AMD FidelityFX™️ Super Resolution + + + + None + Ingen + + + + FXAA + FXAA + + + + SMAA + SMAA + + + + Default (16:9) + Standard (16:9) + + + + Force 4:3 + Tving 4:3 + + + + Force 21:9 + Tving 21:9 + + + + Force 16:10 + Tving 16:10 + + + + Stretch to Window + Strekk til Vindu + + + + Automatic + Automatisk + + + + + Default + Standard + + + + Amiibo editor + + + + + Controller configuration + + + + + Data erase + + + + + Net connect + + + + + Player select + + + + + Mii Edit + + + + + Online web + + + + + Shop + + + + + Photo viewer + + + + + Offline web + + + + + Login share + + + + + Wifi web auth + + + + + My page + + + + + Mute audio + + + + + This option increases CPU emulation thread use from 1 to the Switch’s maximum of 4. +This is mainly a debug option and shouldn’t be disabled. + + + + + Memory Layout + + + + + Increases the amount of emulated RAM from the stock 4GB of the retail Switch to the developer kit's 8/6GB. +It’s doesn’t improve stability or performance and is intended to let big texture mods fit in emulated RAM. +Enabling it will increase memory use. It is not recommended to enable unless a specific game with a texture mod needs it. + + + + + Controls the game's maximum rendering speed, but it’s up to each game if it runs faster or not. +200% for a 30 FPS game is 60 FPS, and for a 60 FPS game it will be 120 FPS. +Disabling it means unlocking the framerate to the maximum your PC can reach. + + + + + Synchronize Core Speed + + + + + Synchronizes CPU core speed with the game's maximum rendering speed to boost FPS without affecting game speed (animations, physics, etc.). +Compatibility varies by game; many (especially older ones) may not respond well. +Can help reduce stuttering at lower framerates. + + + + + This setting controls the accuracy of the emulated CPU. +Don't change this unless you know what you are doing. + + + + + + Backend: + + + + + Fast CPU Time + + + + + Overclocks the emulated CPU to remove some FPS limiters. Weaker CPUs may see reduced performance, and certain games may behave improperly. +Use Boost (1700MHz) to run at the Switch's highest native clock, or Fast (2000MHz) to run at 2x clock. + + + + + Custom CPU Ticks + + + + + Set a custom value of CPU ticks. Higher values can increase performance, but may also cause the game to freeze. A range of 77–21000 is recommended. + + + + + Enable Host MMU Emulation (fastmem) + + + + + This optimization speeds up memory accesses by the guest program. +Enabling it causes guest memory reads/writes to be done directly into memory and make use of Host's MMU. +Disabling this forces all memory accesses to use Software MMU Emulation. + + + + + This option improves speed by reducing accuracy of fused-multiply-add instructions on CPUs without native FMA support. + + + + + This option improves the speed of some approximate floating-point functions by using less accurate native approximations. + + + + + This option improves the speed of 32 bits ASIMD floating-point functions by running with incorrect rounding modes. + + + + + This option improves speed by removing NaN checking. +Please note this also reduces accuracy of certain floating-point instructions. + + + + + This option improves speed by eliminating a safety check before every memory read/write in guest. +Disabling it may allow a game to read/write the emulator's memory. + + + + + This option improves speed by relying only on the semantics of cmpxchg to ensure safety of exclusive access instructions. +Please note this may result in deadlocks and other race conditions. + + + + + Switches between the available graphics APIs. +Vulkan is recommended in most cases. + + + + + This setting selects the GPU to use with the Vulkan backend. + + + + + The shader backend to use for the OpenGL renderer. +GLSL is the fastest in performance and the best in rendering accuracy. +GLASM is a deprecated NVIDIA-only backend that offers much better shader building performance at the cost of FPS and rendering accuracy. +SPIR-V compiles the fastest, but yields poor results on most GPU drivers. + + + + + Forces the game to render at a different resolution. +Higher resolutions require much more VRAM and bandwidth. +Options lower than 1X can cause rendering issues. + + + + + Determines how sharpened the image will look while using FSR’s dynamic contrast. + + + + + The anti-aliasing method to use. +SMAA offers the best quality. +FXAA has a lower performance impact and can produce a better and more stable picture under very low resolutions. + + + + + The method used to render the window in fullscreen. +Borderless offers the best compatibility with the on-screen keyboard that some games request for input. +Exclusive fullscreen may offer better performance and better Freesync/Gsync support. + + + + + Stretches the game to fit the specified aspect ratio. +Switch games only support 16:9, so custom game mods are required to get other ratios. +Also controls the aspect ratio of captured screenshots. + + + + + Allows saving shaders to storage for faster loading on following game boots. +Disabling it is only intended for debugging. + + + + + Optimize SPIRV output shader + + + + + Runs an additional optimization pass over generated SPIRV shaders. +Will increase time required for shader compilation. +May slightly improve performance. +This feature is experimental. + + + + + Uses an extra CPU thread for rendering. +This option should always remain enabled. + + + + + Specifies how videos should be decoded. +It can either use the CPU or the GPU for decoding, or perform no decoding at all (black screen on videos). +In most cases, GPU decoding provides the best performance. + + + + + ASTC Decoding Method: + + + + + This option controls how ASTC textures should be decoded. +CPU: Use the CPU for decoding, slowest but safest method. +GPU: Use the GPU's compute shaders to decode ASTC textures, recommended for most games and users. +CPU Asynchronously: Use the CPU to decode ASTC textures as they arrive. Completely eliminates ASTC decoding +stuttering at the cost of rendering issues while the texture is being decoded. + + + + + ASTC Recompression Method: + + + + + Almost all desktop and laptop dedicated GPUs lack support for ASTC textures, forcing the emulator to decompress to an intermediate format any card supports, RGBA8. +This option recompresses RGBA8 to either the BC1 or BC3 format, saving VRAM but negatively affecting image quality. + + + + + VRAM Usage Mode: + + + + + Selects whether the emulator should prefer to conserve memory or make maximum usage of available video memory for performance. +Aggressive mode may severely impact the performance of other applications such as recording software. + + + + + Skip CPU Inner Invalidation + + + + + Skips certain CPU-side cache invalidations during memory updates, reducing CPU usage and improving it's performance. This may cause glitches or crashes on some games. + + + + + Sync Memory Operations + + + + + Ensures data consistency between compute and memory operations. +This option should fix issues in some games, but may also reduce performance in some cases. +Unreal Engine 4 games often see the most significant changes thereof. + + + + + Slightly improves performance by moving presentation to a separate CPU thread. + + + + + Controls the quality of texture rendering at oblique angles. +It’s a light setting and safe to set at 16x on most GPUs. + + + + + GPU Accuracy: + + + + + Controls the GPU emulation accuracy. +Most games render fine with Normal, but High is still required for some. +Particles tend to only render correctly with High accuracy. +Extreme should only be used as a last resort. + + + + + DMA Accuracy: + + + + + Controls the DMA precision accuracy. Safe precision can fix issues in some games, but it can also impact performance in some cases. +If unsure, leave this on Default. + + + + + Enables asynchronous shader compilation, which may reduce shader stutter. +This feature is experimental. + + + + + Fast GPU Time (Hack) + + + + + Overclocks the emulated GPU to increase dynamic resolution and render distance. +Use 128 for maximal performance and 512 for maximal graphics fidelity. + + + + Enables GPU vendor-specific pipeline cache. This option can improve shader loading time significantly in cases where the Vulkan driver does not store pipeline cache files internally. - + Enable Compute Pipelines (Intel Vulkan Only) - + Enable compute pipelines, required by some games. This setting only exists for Intel proprietary drivers, and may crash if enabled. Compute pipelines are always enabled on all other drivers. - - Enable Reactive Flushing - Aktiver Reaktiv Tømming - - - + Uses reactive flushing instead of predictive flushing, allowing more accurate memory syncing. - - Sync to framerate of video playback - Synkroniser med bildefrekvensen for videoavspilling + + RAII + - - Run the game at normal speed during video playback, even when the framerate is unlocked. - Kjør spillet i normal hastighet under videoavspilling, selv når bildefrekvensen er låst opp. + + A method of automatic resource management in Vulkan that ensures proper release of resources when they are no longer needed, but may cause crashes in bundled games. + - - Barrier feedback loops - Tilbakekoblingssløyfer for barrierer + + Extended Dynamic State + - - Improves rendering of transparency effects in specific games. - Forbedrer gjengivelsen av transparenseffekter i spesifikke spill. + + Controls the number of features that can be used in Extended Dynamic State. +Higher numbers allow for more features and can increase performance, but may cause issues with some drivers and vendors. +The default value may vary depending on your system and hardware capabilities. +This value can be changed until stability and a better visual quality are achieved. + - - RNG Seed - Frø For Tilfeldig Nummergenerering + + Provoking Vertex + - + + Improves lighting and vertex handling in certain games. +Only Vulkan 1.0+ devices support this extension. + + + + + Descriptor Indexing + + + + + Improves texture & buffer handling and the Maxwell translation layer. +Some Vulkan 1.1+ and all 1.2+ devices support this extension. + + + + + Sample Shading + + + + + Allows the fragment shader to execute per sample in a multi-sampled fragment instead once per fragment. Improves graphics quality at the cost of some performance. +Higher values improve quality more but also reduce performance to a greater extent. + + + + Controls the seed of the random number generator. Mainly used for speedrunning purposes. - - Device Name - Enhetsnavn - - - + The name of the emulated Switch. - + Custom RTC Date: - + This option allows to change the emulated clock of the Switch. Can be used to manipulate time in games. - + Language: - - Note: this can be overridden when region setting is auto-select - NB: dette kan bli overstyrt når regionsinnstillingen er satt til auto-valg - - - - Region: - Region: - - - + The region of the emulated Switch. - - Time Zone: - Tidssone: - - - + The time zone of the emulated Switch. - - Sound Output Mode: - Lydutgangsmodus: - - - + Console Mode: - + Selects if the console is emulated in Docked or Handheld mode. Games will change their resolution, details and supported controllers and depending on this setting. Setting to Handheld can help improve performance for low end systems. - - Prompt for user on game boot - Spør om bruker når et spill starter - - - - Pause emulation when in background - Paus emulering når yuzu kjører i bakgrunnen - - - - Fast GPU Time (Hack) + + Ask to select a user profile on each boot, useful if multiple people use Eden on the same PC. - - Overclocks the emulated GPU to increase dynamic resolution and render distance. -Use 128 for maximal performance and 512 for maximal graphics fidelity. + + This setting pauses Eden when focusing other windows. - - Extended Dynamic State - - - - - Enables the VkExtendedDynamicState* extensions. -Higher dynamic states will generally improve performance, but may cause issues on certain games or devices. - - - - - Provoking Vertex - - - - - Improves lighting and vertex handling in certain games. -Only Vulkan 1.0+ devices support this extension. - - - - - Descriptor Indexing - - - - - Improves texture & buffer handling and the Maxwell translation layer. -Some Vulkan 1.1+ and all 1.2+ devices support this extension. - - - - - Ask to select a user profile on each boot, useful if multiple people use eden on the same PC. - - - - - This setting pauses eden when focusing other windows. - - - - + Confirm before stopping emulation - + This setting overrides game prompts asking to confirm stopping the game. Enabling it bypasses such prompts and directly exits the emulation. - - Hide mouse on inactivity - Gjem mus under inaktivitet - - - + This setting hides the mouse after 2.5s of inactivity. - - Disable controller applet - Deaktiver kontroller-appleten - - - + Forcibly disables the use of the controller applet by guests. When a guest attempts to open the controller applet, it is immediately closed. - + Check for updates - + Whether or not to check for updates upon startup. - + Enable Gamemode - + Custom frontend - + Real applet - + Never - + On Load - + Always - - CPU - CPU - - - + GPU - + CPU Asynchronous - - Uncompressed (Best quality) - Ukomprimert (beste kvalitet) - - - - BC1 (Low quality) - BC1 (Lav kvalitet) - - - - BC3 (Medium quality) - BC3 (Medium kvalitet) - - - + Conservative - + Aggressive - - OpenGL - OpenGL - - - - Vulkan - Vulkan - - - - Null - Null - - - - GLSL - GLSL - - - - GLASM (Assembly Shaders, NVIDIA Only) - GLASM (assembly-shader-e, kun med NVIDIA) - - - + SPIR-V (Experimental, AMD/Mesa Only) - - Normal - Normal + + Unsafe (fast) + - - High - Høy + + Safe (stable) + - - Extreme - Ekstrem - - - - Auto - Auto - - - - Accurate - Nøyaktig - - - - Unsafe - Utrygt - - - - Paranoid (disables most optimizations) - Paranoid (deaktiverer de fleste optimaliseringer) - - - + Dynarmic - + NCE - - Borderless Windowed - Rammeløst vindu - - - - Exclusive Fullscreen - Eksklusiv fullskjerm - - - - No Video Output - Ingen videoutdata - - - - CPU Video Decoding - Prosessorvideodekoding - - - - GPU Video Decoding (Default) - GPU-videodekoding (standard) - - - + 0.25X (180p/270p) [EXPERIMENTAL] - + 0.5X (360p/540p) [EXPERIMENTAL] - - 0.75X (540p/810p) [EXPERIMENTAL] - 0.75X (540p/810p) [EKSPERIMENTELL] - - - - 1X (720p/1080p) - 1X (720p/1080p) - - - - 1.5X (1080p/1620p) [EXPERIMENTAL] - 1.5X (1080p/1620p) [EXPERIMENTELL] - - - - 2X (1440p/2160p) - 2X (1440p/2160p) - - - - 3X (2160p/3240p) - 3X (2160p/3240p) - - - - 4X (2880p/4320p) - 4X (2880p/4320p) - - - - 5X (3600p/5400p) - 5X (3600p/5400p) - - - - 6X (4320p/6480p) - 6X (4320p/6480p) - - - - 7X (5040p/7560p) - 7X (5040p/7560p) - - - - 8X (5760p/8640p) - 8X (5760p/8640p) - - - - Nearest Neighbor - Nærmeste nabo - - - - Bilinear - Bilineær - - - - Bicubic - Bikubisk - - - - Gaussian - Gaussisk - - - - ScaleForce - ScaleForce - - - - AMD FidelityFX™️ Super Resolution - AMD FidelityFX™️ Super Resolution - - - + Area - - None - Ingen - - - - FXAA - FXAA - - - - SMAA - SMAA - - - - Default (16:9) - Standard (16:9) - - - - Force 4:3 - Tving 4:3 - - - - Force 21:9 - Tving 21:9 - - - - Force 16:10 - Tving 16:10 - - - - Stretch to Window - Strekk til Vindu - - - - Automatic - Automatisk - - - - Default - Standard - - - + 2x 2x - + 4x 4x - + 8x 8x - + 16x 16x - + Japanese (日本語) Japansk (日本語) - + American English Amerikans Engelsk - + French (français) Fransk (français) - + German (Deutsch) Tysk (Deutsch) - + Italian (italiano) Italiensk (italiano) - + Spanish (español) Spansk (español) - + Chinese Kinesisk - + Korean (한국어) Koreansk (한국어) - + Dutch (Nederlands) Nederlandsk (Nederlands) - + Portuguese (português) Portugisisk (português) - + Russian (Русский) Russisk (Русский) - + Taiwanese Taiwansk - + British English Britisk Engelsk - + Canadian French Kanadisk Fransk - + Latin American Spanish Latinamerikansk Spansk - + Simplified Chinese Forenklet Kinesisk - + Traditional Chinese (正體中文) Tradisjonell Kinesisk (正體中文) - + Brazilian Portuguese (português do Brasil) Brasiliansk portugisisk (português do Brasil) - - + + Serbian (српски) + + + + + Japan Japan - + USA USA - + Europe Europa - + Australia Australia - + China Kina - + Korea Korea - + Taiwan Taiwan - + Auto (%1) Auto select time zone Auto (%1) - + Default (%1) Default time zone Normalverdi (%1) - + CET CET - + CST6CDT CST6CDT - + Cuba Cuba - + EET EET - + Egypt Egypt - + Eire Eire - + EST EST - + EST5EDT EST5EDT - + GB GB - + GB-Eire GB-Eire - + GMT GMT - + GMT+0 GMT+0 - + GMT-0 GMT-0 - + GMT0 GMT0 - + Greenwich Greenwich - + Hongkong Hongkong - + HST HST - + Iceland Island - + Iran Iran - + Israel Israel - + Jamaica Jamaica - + Kwajalein Kwajalein - + Libya Libya - + MET MET - + MST MST - + MST7MDT MST7MDT - + Navajo Navajo - + NZ NZ - + NZ-CHAT NZ-CHAT - + Poland Polen - + Portugal Portugal - + PRC PRC - + PST8PDT PST8PDT - + ROC ROC - + ROK ROK - + Singapore Singapore - + Turkey Tyrkia - + UCT UCT - + Universal Universalt - + UTC UTC - + W-SU W-SU - + WET WET - + Zulu Zulu - + Mono Mono - + Stereo Stereo - + Surround Surround - + 4GB DRAM (Default) - + 6GB DRAM (Unsafe) - + 8GB DRAM - + 10GB DRAM (Unsafe) - + 12GB DRAM (Unsafe) - - Low (128) - - - - - Medium (256) - - - - - High (512) - - - - + Docked Dokket - + Handheld Håndholdt - + Boost (1700MHz) - + Fast (2000MHz) - + Always ask (Default) - + Only if game specifies not to stop - + Never ask + + + Low (128) + + + + + Medium (256) + + + + + High (512) + + ConfigureApplets @@ -2271,27 +2368,27 @@ When a guest attempts to open the controller applet, it is immediately closed.Loggføring - + Open Log Location Åpne Logg-Plassering - + Global Log Filter Global Loggfilter - + When checked, the max size of the log increases from 100 MB to 1 GB Når dette er på øker maksstørrelsen til loggen fra 100 MB til 1 GB - + Enable Extended Logging** Slå på utvidet loggføring** - + Show Log in Console Vis logg i konsollen @@ -2437,7 +2534,7 @@ When a guest attempts to open the controller applet, it is immediately closed. - **This will be reset automatically when eden closes. + **This will be reset automatically when Eden closes. @@ -2499,7 +2596,7 @@ When a guest attempts to open the controller applet, it is immediately closed.**Dette blir automatisk tilbakestilt når yuzu lukkes. - + Web applet not compiled Web-applet ikke kompilert @@ -2549,7 +2646,7 @@ When a guest attempts to open the controller applet, it is immediately closed. - eden Configuration + Eden Configuration @@ -2558,88 +2655,88 @@ When a guest attempts to open the controller applet, it is immediately closed.Noen innstillinger er bare tilgjengelige når spillet ikke er i gang. - + Applets - - + + Audio Lyd - - + + CPU CPU - + Debug Feilsøk - + Filesystem Filsystem - - + + General Generelt - - + + Graphics Grafikk - + GraphicsAdvanced AvnsertGrafikk - + GraphicsExtensions - + Hotkeys Hurtigtaster - - + + Controls Kontrollere - + Profiles Profiler - + Network Nettverk - - + + System System - + Game List Spill Liste - + Web Nett @@ -2737,51 +2834,45 @@ When a guest attempts to open the controller applet, it is immediately closed. - - - Reset Metadata Cache Tilbakestill Mellomlagringen for Metadata - + Select Emulated NAND Directory... Velg Emulert NAND-Mappe... - + Select Emulated SD Directory... Velg Emulert SD-Mappe... - + Select Gamecard Path... Velg Spillkortbane... - + Select Dump Directory... Velg Dump-Katalog - + Select Mod Load Directory... Velg Mod-Lastingsmappe... - The metadata cache is already empty. - Mellomlagringen for metadata er allerede tom. + Mellomlagringen for metadata er allerede tom. - The operation completed successfully. - Operasjonen ble fullført vellykket. + Operasjonen ble fullført vellykket. - The metadata cache couldn't be deleted. It might be in use or non-existent. - Mellomlagringen for metadata kunne ikke slettes. Den kan være i bruk eller ikke-eksisterende. + Mellomlagringen for metadata kunne ikke slettes. Den kan være i bruk eller ikke-eksisterende. @@ -2812,12 +2903,12 @@ When a guest attempts to open the controller applet, it is immediately closed.yuzu - - eden + + Eden - + This reset all settings and remove all per-game configurations. This will not delete game directories, profiles, or input profiles. Proceed? Dette tilbakestiller alle innstillinger og fjerner alle spillinnstillinger. Spillmapper, profiler og inndataprofiler blir ikke slettet. Fortsett? @@ -2850,33 +2941,33 @@ When a guest attempts to open the controller applet, it is immediately closed.Bakgrunnsfarge: - + % FSR sharpening percentage (e.g. 50%) % - + Off Av - + VSync Off VSync Av - + Recommended Anbefalt - + On - + VSync On VSync På @@ -2913,14 +3004,18 @@ When a guest attempts to open the controller applet, it is immediately closed. - Vulkan Extension Settings + Vulkan Extensions Settings - - While it's recommended to use state 3, some games may perform better on lower states. Setting to 0 (disabled) may also break games. -If your GPU is older (i.e. RX570/580 or older), it may not support these features. If this is the case, set the slider to 0 and uncheck all boxes. -These settings are experimental, and may cause black screens. If your games fail to boot or are stuck on a black screen, change these settings around. + + % + Sample Shading percentage (e.g. 50%) + % + + + + Extended Dynamic State is disabled on macOS due to MoltenVK compatibility issues that cause black screens. @@ -2952,75 +3047,75 @@ These settings are experimental, and may cause black screens. If your games fail Gjenopprett Standardverdier - + Action Handling - + Hotkey Hurtigtast - + Controller Hotkey Kontrollerhurtigtast - - - + + + Conflicting Key Sequence Mostridende tastesekvens - - + + The entered key sequence is already assigned to: %1 Den inntastede tastesekvensen er allerede tildelt til: %1 - + [waiting] [venter] - + Invalid Ugyldig - + Invalid hotkey settings - + An error occurred. Please report this issue on github. - + Restore Default Gjenopprett Standardverdi - + Clear Fjern - + Conflicting Button Sequence Motstridende knappesekvens - + The default button sequence is already assigned to: %1 Standardknappesekvensen er allerede tildelt til: %1 - + The default key sequence is already assigned to: %1 Standardtastesekvensen er allerede tildelt til: %1 @@ -3340,7 +3435,7 @@ These settings are experimental, and may cause black screens. If your games fail - Requires restarting eden + Requires restarting Eden @@ -3495,7 +3590,7 @@ These settings are experimental, and may cause black screens. If your games fail - + Left Stick Venstre Pinne @@ -3605,14 +3700,14 @@ These settings are experimental, and may cause black screens. If your games fail - + L L - + ZL ZL @@ -3631,7 +3726,7 @@ These settings are experimental, and may cause black screens. If your games fail - + Plus Pluss @@ -3644,15 +3739,15 @@ These settings are experimental, and may cause black screens. If your games fail - - + + R R - + ZR ZR @@ -3697,7 +3792,7 @@ These settings are experimental, and may cause black screens. If your games fail - + Right Stick Høyre Pinne @@ -3712,242 +3807,242 @@ These settings are experimental, and may cause black screens. If your games fail Konfigurer - - - - + + + + Clear Fjern - - - - - + + + + + [not set] [ikke satt] - - - + + + Invert button Inverter knapp - - + + Toggle button Veksle knapp - + Turbo button Turbo-Knapp - - + + Invert axis Inverter akse - - - + + + Set threshold Set grense - - + + Choose a value between 0% and 100% Velg en verdi mellom 0% og 100% - + Toggle axis veksle akse - + Set gyro threshold Angi gyroterskel - + Calibrate sensor Kalibrer sensor - + Map Analog Stick Kartlegg Analog Spak - + After pressing OK, first move your joystick horizontally, and then vertically. To invert the axes, first move your joystick vertically, and then horizontally. Etter du har trykker på OK, flytt først stikken horisontalt, og så vertikalt. For å invertere aksene, flytt først stikken vertikalt, og så horistonalt. - + Center axis Senterakse - - + + Deadzone: %1% Dødsone: %1% - - + + Modifier Range: %1% Modifikatorområde: %1% - - + + Pro Controller Pro-Kontroller - + Dual Joycons Doble Joycons - + Left Joycon Venstre Joycon - + Right Joycon Høyre Joycon - + Handheld Håndholdt - + GameCube Controller GameCube-kontroller - + Poke Ball Plus Poke Ball Plus - + NES Controller NES-kontroller - + SNES Controller SNES-kontroller - + N64 Controller N64-kontroller - + Sega Genesis Sega Genesis - + Start / Pause Start / paus - + Z Z - + Control Stick Kontrollstikke - + C-Stick C-stikke - + Shake! Rist! - + [waiting] [venter] - + New Profile Ny Profil - + Enter a profile name: Skriv inn et profilnavn: - - + + Create Input Profile Lag inndataprofil - + The given profile name is not valid! Det oppgitte profilenavnet er ugyldig! - + Failed to create the input profile "%1" Klarte ikke lage inndataprofil "%1" - + Delete Input Profile Slett inndataprofil - + Failed to delete the input profile "%1" Klarte ikke slette inndataprofil "%1" - + Load Input Profile Last inn inndataprofil - + Failed to load the input profile "%1" Klarte ikke laste inn inndataprofil "%1" - + Save Input Profile Lagre inndataprofil - + Failed to save the input profile "%1" Klarte ikke lagre inndataprofil "%1" @@ -4004,7 +4099,7 @@ For å invertere aksene, flytt først stikken vertikalt, og så horistonalt. - + Configure Konfigurer @@ -4040,7 +4135,7 @@ For å invertere aksene, flytt først stikken vertikalt, og så horistonalt. - + Test Test @@ -4059,7 +4154,7 @@ For å invertere aksene, flytt først stikken vertikalt, og så horistonalt.<a href='https://yuzu-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> - + %1:%2 %1:%2 @@ -4068,77 +4163,77 @@ For å invertere aksene, flytt først stikken vertikalt, og så horistonalt.yuzu - + <a href='https://eden-emulator.github.io/wiki/using-a-controller-or-android-phone-for-motion-or-touch-input'><span style="text-decoration: underline; color:#039be5;">Learn More</span></a> - + Port number has invalid characters Portnummeret har ugyldige tegn - - - - - - - eden + + + + + + + Eden - + Port has to be in range 0 and 65353 Porten må være i intervallet 0 til 65353 - + IP address is not valid IP-adressen er ugyldig - + This UDP server already exists Denne UDP-tjeneren eksisterer allerede - + Unable to add more than 8 servers Kan ikke legge til mer enn 8 tjenere - + Testing Testing - + Configuring Konfigurering - + Test Successful Test Vellykket - + Successfully received data from the server. Mottatt data fra serveren vellykket. - + Test Failed Test Feilet - + 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 gyldig data fra serveren.<br>Vennligst bekreft at serveren er satt opp riktig og at adressen og porten er riktige. - + UDP Test or calibration configuration is in progress.<br>Please wait for them to finish. UDP-Test eller kalibrasjonskonfigurering er i fremgang.<br>Vennligst vent for dem til å bli ferdig. @@ -4265,7 +4360,12 @@ Gjeldende verdier er henholdsvis %1% og %2%. Nettverksgrensesnitt - + + Enable Airplane Mode + + + + None Ingen @@ -4323,52 +4423,52 @@ Gjeldende verdier er henholdsvis %1% og %2%. Noen innstillinger er bare tilgjengelige når spillet ikke er i gang. - + Add-Ons Tillegg - + System System - + CPU CPU - + Graphics Grafikk - + Adv. Graphics Avn. Grafikk - + GPU Extensions - + Audio Lyd - + Input Profiles Inndataprofiler - + Linux - + Properties Egenskaper @@ -4386,12 +4486,12 @@ Gjeldende verdier er henholdsvis %1% og %2%. Tillegg - + Patch Name Oppdateringsnavn - + Version Versjon @@ -4429,27 +4529,32 @@ Gjeldende verdier er henholdsvis %1% og %2%. Sett Bilde - + + Select Avatar + + + + Add Legg til - + Rename Gi nytt navn - + Remove Fjern - + Profile management is available only when game is not running. Profil-administrering er bare tilgjengelig når ingen spill kjører. - + %1 %2 %1 is the profile username, %2 is the formatted UUID (e.g. 00112233-4455-6677-8899-AABBCCDDEEFF)) @@ -4457,100 +4562,189 @@ Gjeldende verdier er henholdsvis %1% og %2%. %2 - + Enter Username Skriv inn Brukernavn - + Users Brukere - + Enter a username for the new user: Tast inn et brukernavn for den nye brukeren: - + Enter a new username: Skriv inn et nytt brukernavn - + + Error saving user image + + + + + Unable to save image to file + + + + Select User Image Sett Bruker Bilde - - JPEG Images (*.jpg *.jpeg) - JPEG Bilder (*.jpg *.jpeg) + + Image Formats (*.jpg *.jpeg *.png *.bmp) + - + + No firmware available + + + + + Please install the firmware to use firmware avatars. + + + + + + Error loading archive + + + + + Archive is not available. Please install/reinstall firmware. + + + + + Archive does not contain romfs. It is probably corrupt. + + + + + Error extracting archive + + + + + Archive could not be extracted. It is probably corrupt. + + + + + Error finding image directory + + + + + Failed to find image directory in the archive. + + + + + No images found + + + + + No avatar images were found in the archive. + + + + JPEG Images (*.jpg *.jpeg) + JPEG Bilder (*.jpg *.jpeg) + + + Error deleting image Feil ved sletting av bilde - + Error occurred attempting to overwrite previous image at: %1. En feil oppstod under overskrivelse av det forrige bildet på: %1. - + Error deleting file Feil ved sletting av fil - + Unable to delete existing file: %1. Kunne ikke slette eksisterende fil: %1. - + Error creating user image directory Feil under opprettelse av profilbildemappe - + Unable to create directory %1 for storing user images. Kunne ikke opprette mappe %1 for å lagre profilbilder. - Error copying user image - Feil under kopiering av profilbilde + Feil under kopiering av profilbilde - Unable to copy image from %1 to %2 - Kunne ikke kopiere bilde fra %1 til %2 + Kunne ikke kopiere bilde fra %1 til %2 - Error resizing user image - Feil under endring av størrelse på brukerbilde + Feil under endring av størrelse på brukerbilde - Unable to resize image - Klarte ikke endre bildestørrelse + Klarte ikke endre bildestørrelse + + + + ConfigureProfileManagerAvatarDialog + + + Select + + + + + Cancel + Avbryt + + + + Background Color + + + + + Select Firmware Avatar + ConfigureProfileManagerDeleteDialog - + Delete this user? All of the user's save data will be deleted. Slett denne brukeren? Alle brukerens lagrede data vil bli slettet. - + Confirm Delete Bekreft Sletting - + Name: %1 UUID: %2 Navn: %1 @@ -4603,7 +4797,7 @@ UUID: %2 - + Enable Aktiver @@ -4614,7 +4808,7 @@ UUID: %2 - + Not connected Ikke Tilkoblet @@ -4624,63 +4818,63 @@ UUID: %2 Gjenopprett Standardverdier - + Clear Fjern - + [not set] [ikke satt] - + Invert axis Inverter akse - - + + Deadzone: %1% Dødsone: %1% - + Error enabling ring input Feil ved aktivering av ringinndata - + Direct Joycon driver is not enabled Driver for direkte JoyCon tilkobling er ikke aktivert - + Configuring Konfigurering - + The current mapped device doesn't support the ring controller Den gjeldende tilordnede enheten støtter ikke ringkontrolleren. - + The current mapped device doesn't have a ring attached Den gjeldende kartlagte enheten har ikke en ring festet - + The current mapped device is not connected Den tilordnede enheten er ikke tilkoblet - + Unexpected driver result %1 Uventet driverresultat %1 - + [waiting] [venter] @@ -4722,7 +4916,7 @@ UUID: %2 - <html><head/><body><p>Reads controller input from scripts in the same format as TAS-nx scripts.<br/>For a more detailed explanation, please consult the <a href="https://eden-emulator.github.io/help/feature/tas/"><span style=" text-decoration: underline; color:#039be5;">help page</span></a> on the eden website.</p></body></html> + <html><head/><body><p>Reads controller input from scripts in the same format as TAS-nx scripts.<br/>For a more detailed explanation, please consult the <a href="https://eden-emulator.github.io/help/feature/tas/"><span style=" text-decoration: underline; color:#039be5;">help page</span></a> on the Eden website.</p></body></html> @@ -4774,12 +4968,12 @@ UUID: %2 ConfigureTasDialog - + TAS Configuration TAS-konfigurasjon - + Select TAS Load Directory... Velg TAS-lastemappe... @@ -4889,7 +5083,7 @@ Dra punkter for å endre posisjon, eller dobbelttrykk på tabellfelter for å re - Warning: The settings in this page affect the inner workings of eden's emulated touchscreen. Changing them may result in undesirable behavior, such as the touchscreen partially or not working. You should only use this page if you know what you are doing. + Warning: The settings in this page affect the inner workings of Eden's emulated touchscreen. Changing them may result in undesirable behavior, such as the touchscreen partially or not working. You should only use this page if you know what you are doing. @@ -5209,6 +5403,16 @@ Dra punkter for å endre posisjon, eller dobbelttrykk på tabellfelter for å re Web Nett + + + Eden Web Service + + + + + Generate + + yuzu Web Service yuzu Nettservice @@ -5218,42 +5422,29 @@ Dra punkter for å endre posisjon, eller dobbelttrykk på tabellfelter for å re Ved å gi ditt brukernavn og token, sier du deg enig til å la yuzu samle inn ytterlige brukerdataer, som kan inkludere brukeridentifiserende informasjon. - - eden Web Service - - - - - By providing your username and token, you agree to allow eden to collect additional usage data, which may include user identifying information. - - - - Verify - Verifiser + Verifiser - Sign up - Registrer deg + Registrer deg - + Token: Token: - + Username: Brukernavn: - What is my token? - Hva er min token? + Hva er min token? - + Web Service configuration can only be changed when a public room isn't being hosted. Webtjenestekonfigurasjonen kan bare endres når et offentlig rom ikke blir arangert. @@ -5278,12 +5469,12 @@ Dra punkter for å endre posisjon, eller dobbelttrykk på tabellfelter for å re Regenerer - + Discord Presence Discord Nærvær - + Show Current Game in your Discord Status Vis Gjeldene Spill på din Discord Status @@ -5292,24 +5483,8 @@ Dra punkter for å endre posisjon, eller dobbelttrykk på tabellfelter for å re <a href='https://yuzu-emu.org/help/feature/telemetry/'><span style="text-decoration: underline; color:#039be5;">Lær mer</span></a> - <a href='https://profile.yuzu-emu.org/'><span style="text-decoration: underline; color:#039be5;">Sign up</span></a> - <a href='https://profile.yuzu-emu.org/'><span style="text-decoration: underline; color:#039be5;">Registrer deg</span></a> - - - - <a href='https://evilperson1337.notion.site/Hosting-a-Room-Inside-of-Eden-20457c2edaf680108abac6215a79acdb'><span style="text-decoration: underline; color:#039be5;">What is my token?</span></a> - - - - - Warning - - - - - Verification is currently nonfunctional, instead generate a random 48-character string with only lowercase a-z. - + <a href='https://profile.yuzu-emu.org/'><span style="text-decoration: underline; color:#039be5;">Registrer deg</span></a> <a href='https://yuzu-emu.org/wiki/yuzu-web-service/'><span style="text-decoration: underline; color:#039be5;">What is my token?</span></a> @@ -5332,10 +5507,9 @@ Dra punkter for å endre posisjon, eller dobbelttrykk på tabellfelter for å re Token ble ikke bekreftet. Endringen av tokenet ditt er ikke lagret. - Unverified, please click Verify before saving configuration Tooltip - Ubekreftet, klikk på Bekreft før du lagrer konfigurasjonen. + Ubekreftet, klikk på Bekreft før du lagrer konfigurasjonen. Verifying... @@ -5359,20 +5533,67 @@ Dra punkter for å endre posisjon, eller dobbelttrykk på tabellfelter for å re Verification failed. Check that you have entered your token correctly, and that your internet connection is working. Bekreftelsen mislyktes. Kontroller at du har tastet inn tokenet ditt riktig, og at internettforbindelsen din fungerer. + + + + All Good + Tooltip + + + + + Must be between 4-20 characters + Tooltip + + + + + Must be 48 characters, and lowercase a-z + Tooltip + + ControllerDialog - + Controller P1 Kontroller P1 - + &Controller P1 &Controller P1 + + DepsDialog + + + Eden Dependencies + + + + + <html><head/><body><p><span style=" font-size:28pt;">Eden Dependencies</span></p></body></html> + + + + + <html><head/><body><p>The projects that make Eden possible</p></body></html> + + + + + Dependency + + + + + Version + Versjon + + DirectConnect @@ -5478,7 +5699,12 @@ Dra punkter for å endre posisjon, eller dobbelttrykk på tabellfelter for å re - Creating a room failed. Please retry. Restarting eden might be necessary. + Creating a room failed. Please retry. Restarting Eden might be necessary. + + + + + Version mismatch! Please update to the latest version of Eden. If the problem persists, contact the room host and ask them to update the server. @@ -5486,11 +5712,6 @@ Dra punkter for å endre posisjon, eller dobbelttrykk på tabellfelter for å re The host of the room has banned you. Speak with the host to unban you or try a different room. Verten for rommet har utestengt deg. Snakk med verten for å oppheve utestengingen eller prøv et annet rom. - - - Version mismatch! Please update to the latest version of eden. If the problem persists, contact the room host and ask them to update the server. - - Incorrect password. @@ -5552,7 +5773,7 @@ Gå til Konfigurer -> System -> Nettverk og gjør et valg. Telemetri - + Broken Vulkan Installation Detected Ødelagt Vulkan-installasjon oppdaget @@ -5561,106 +5782,105 @@ Gå til Konfigurer -> System -> Nettverk og gjør et valg. Vulkan-initialisering mislyktes under oppstart.<br><br>Klikk<a href='https://yuzu-emu.org/wiki/faq/#yuzu-starts-with-the-error-broken-vulkan-installation-detected'>her for instruksjoner for å løse problemet</a>. - + Running a game TRANSLATORS: This string is shown to the user to explain why yuzu needs to prevent the computer from sleeping Kjører et spill - + Loading Web Applet... Laster web-applet... - - + + Disable Web Applet Slå av web-applet - + Disabling the web applet can lead to undefined behavior and should only be used with Super Mario 3D All-Stars. Are you sure you want to disable the web applet? (This can be re-enabled in the Debug settings.) Deaktivering av webappleten kan føre til udefinert oppførsel og bør bare brukes med Super Mario 3D All-Stars. Er du sikker på at du vil deaktivere webappleten? (Dette kan aktiveres på nytt i feilsøkingsinnstillingene). - + The amount of shaders currently being built Antall shader-e som bygges for øyeblikket - + The current selected resolution scaling multiplier. Den valgte oppløsningsskaleringsfaktoren. - + Current emulation speed. Values higher or lower than 100% indicate emulation is running faster or slower than a Switch. Nåværende emuleringshastighet. Verdier høyere eller lavere en 100% indikerer at emuleringen kjører raskere eller tregere enn en Switch. - + 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 spiller viser. Dette vil variere fra spill til spill og scene til scene. - + Time taken to emulate a Switch frame, not counting framelimiting or v-sync. For full-speed emulation this should be at most 16.67 ms. Tid det tar for å emulere et Switch bilde. Teller ikke med bildebegrensing eller v-sync. For full-hastighet emulering burde dette være 16.67 ms. på det høyeste. - + Unmute Slå på lyden - + Mute Lydløs - + Reset Volume Tilbakestill volum - + &Clear Recent Files &Tøm Nylige Filer - + &Continue &Fortsett - + &Pause &Paus - Warning Outdated Game Format - Advarsel: Utdatert Spillformat + Advarsel: Utdatert Spillformat You are using the deconstructed ROM directory format for this game, which is an outdated format that has been superseded by others such as NCA, NAX, XCI, or NSP. Deconstructed ROM directories lack icons, metadata, and update support.<br><br>For an explanation of the various Switch formats yuzu supports, <a href='https://yuzu-emu.org/wiki/overview-of-switch-game-formats'>check out our wiki</a>. This message will not be shown again. Du bruker en dekonstruert ROM-mappe for dette spillet, som er et utdatert format som har blitt erstattet av andre formater som NCA, NAX, XCI, eller NSP. Dekonstruerte ROM-mapper mangler ikoner, metadata, og oppdateringsstøtte.<br><br>For en forklaring på diverse Switch-formater som yuzu støtter,<a href='https://yuzu-emu.org/wiki/overview-of-switch-game-formats'>sjekk vår wiki</a>. Denne meldingen vil ikke bli vist igjen. - - + + Error while loading ROM! Feil under innlasting av ROM! - + The ROM format is not supported. Dette ROM-formatet er ikke støttet. - + An error occurred initializing the video core. En feil oppstod under initialisering av videokjernen. @@ -5669,7 +5889,7 @@ Gå til Konfigurer -> System -> Nettverk og gjør et valg. yuzu har oppdaget en feil under kjøring av videokjernen. Dette er vanligvis forårsaket av utdaterte GPU-drivere, inkludert for integrert grafikk. Vennligst sjekk loggen for flere detaljer. For mer informasjon om å finne loggen, besøk følgende side: <a href='https://yuzu-emu.org/help/reference/log-files/'>How to Uploadd the Log File</a>. - + Error while loading ROM! %1 %1 signifies a numeric error code. Feil under lasting av ROM! %1 @@ -5680,473 +5900,397 @@ Gå til Konfigurer -> System -> Nettverk og gjør et valg. %1<br>Vennligst følg <a href='https://yuzu-emu.org/help/quickstart/'>hurtigstartsguiden</a> for å redumpe filene dine. <br>Du kan henvise til yuzu wikien</a> eller yuzu Discorden</a> for hjelp. - + Vulkan initialization failed during boot.<br><br>Click <a href='https://eden-emulator.github.io/wiki/faq/#yuzu-starts-with-the-error-broken-vulkan-installation-detected'>here for instructions to fix the issue</a>. - - Game Updates Warning - - - - - The game you are trying to launch is known to have performance or booting issues when updates are applied. Please try increasing the memory layout to 6GB or 8GB if any issues occur.<br><br>Press "OK" to continue launching, or "Cancel" to cancel the launch. - - - - - Don't show again for this game - - - - - You are using the deconstructed ROM directory format for this game, which is an outdated format that has been superseded by others such as NCA, NAX, XCI, or NSP. Deconstructed ROM directories lack icons, metadata, and update support.<br><br>For an explanation of the various Switch formats eden supports, <a href='https://eden-emulator.github.io/wiki/overview-of-switch-game-formats'>check out our wiki</a>. This message will not be shown again. - - - - - eden has encountered an error while running the video core. This is usually caused by outdated GPU drivers, including integrated ones. Please see the log for more details. For more information on accessing the log, please see the following page: <a href='https://eden-emulator.github.io/help/reference/log-files/'>How to Upload the Log File</a>. - - - - - %1<br>Please redump your files or ask on Discord for help. - %1 signifies an error string. - - - - + An unknown error occurred. Please see the log for more details. En ukjent feil oppstod. Se loggen for flere detaljer. - + (64-bit) (64-bit) - + (32-bit) (32-bit) - + %1 %2 %1 is the title name. %2 indicates if the title is 64-bit or 32-bit %1 %2 - + Closing software... Lukker programvare... - + Save Data Lagre Data - + Mod Data Mod Data - + Error Opening %1 Folder Feil Under Åpning av %1 Mappen - - + + Folder does not exist! Mappen eksisterer ikke! - Error Opening Transferable Shader Cache - Feil ved åpning av overførbar shaderbuffer + Feil ved åpning av overførbar shaderbuffer - Failed to create the shader cache directory for this title. - Kunne ikke opprette shader cache-katalogen for denne tittelen. + Kunne ikke opprette shader cache-katalogen for denne tittelen. - Error Removing Contents - Feil ved fjerning av innhold + Feil ved fjerning av innhold - Error Removing Update - Feil ved fjerning av oppdatering + Feil ved fjerning av oppdatering - Error Removing DLC - Feil ved fjerning av DLC + Feil ved fjerning av DLC - + Remove Installed Game Contents? Fjern Innstallert Spillinnhold? - + Remove Installed Game Update? Fjern Installert Spilloppdatering? - + Remove Installed Game DLC? Fjern Installert Spill DLC? - + Remove Entry Fjern oppføring - - - - - - Successfully Removed - Fjerning lykkes + Fjerning lykkes - Successfully removed the installed base game. - Vellykket fjerning av det installerte basisspillet. + Vellykket fjerning av det installerte basisspillet. - The base game is not installed in the NAND and cannot be removed. - Grunnspillet er ikke installert i NAND og kan ikke bli fjernet. + Grunnspillet er ikke installert i NAND og kan ikke bli fjernet. - Successfully removed the installed update. - Fjernet vellykket den installerte oppdateringen. + Fjernet vellykket den installerte oppdateringen. - There is no update installed for this title. - Det er ingen oppdatering installert for denne tittelen. + Det er ingen oppdatering installert for denne tittelen. - There are no DLC installed for this title. - Det er ingen DLC installert for denne tittelen. + Det er ingen DLC installert for denne tittelen. - Successfully removed %1 installed DLC. - Fjernet vellykket %1 installerte DLC-er. + Fjernet vellykket %1 installerte DLC-er. - + Delete OpenGL Transferable Shader Cache? Slette OpenGL Overførbar Shaderbuffer? - + Delete Vulkan Transferable Shader Cache? Slette Vulkan Overførbar Shaderbuffer? - + Delete All Transferable Shader Caches? Slette Alle Overførbare Shaderbuffere? - + Remove Custom Game Configuration? Fjern Tilpasset Spillkonfigurasjon? - + Remove Cache Storage? Fjerne Hurtiglagringen? - + Remove File Fjern Fil - + Remove Play Time Data - + Reset play time? - - Error Removing Transferable Shader Cache - Feil under fjerning av overførbar shader cache + Feil under fjerning av overførbar shader cache - - A shader cache for this title does not exist. - En shaderbuffer for denne tittelen eksisterer ikke. + En shaderbuffer for denne tittelen eksisterer ikke. - Successfully removed the transferable shader cache. - Lykkes i å fjerne den overførbare shader cachen. + Lykkes i å fjerne den overførbare shader cachen. - Failed to remove the transferable shader cache. - Feil under fjerning av den overførbare shader cachen. + Feil under fjerning av den overførbare shader cachen. - Error Removing Vulkan Driver Pipeline Cache - Feil ved fjerning av Vulkan Driver-Rørledningsbuffer + Feil ved fjerning av Vulkan Driver-Rørledningsbuffer - Failed to remove the driver pipeline cache. - Kunne ikke fjerne driverens rørledningsbuffer. + Kunne ikke fjerne driverens rørledningsbuffer. - - Error Removing Transferable Shader Caches - Feil ved fjerning av overførbare shaderbuffere + Feil ved fjerning av overførbare shaderbuffere - Successfully removed the transferable shader caches. - Vellykket fjerning av overførbare shaderbuffere. + Vellykket fjerning av overførbare shaderbuffere. - Failed to remove the transferable shader cache directory. - Feil ved fjerning av overførbar shaderbuffer katalog. + Feil ved fjerning av overførbar shaderbuffer katalog. - - Error Removing Custom Configuration - Feil Under Fjerning Av Tilpasset Konfigurasjon + Feil Under Fjerning Av Tilpasset Konfigurasjon - A custom configuration for this title does not exist. - En tilpasset konfigurasjon for denne tittelen finnes ikke. + En tilpasset konfigurasjon for denne tittelen finnes ikke. - Successfully removed the custom game configuration. - Fjernet vellykket den tilpassede spillkonfigurasjonen. + Fjernet vellykket den tilpassede spillkonfigurasjonen. - Failed to remove the custom game configuration. - Feil under fjerning av den tilpassede spillkonfigurasjonen. + Feil under fjerning av den tilpassede spillkonfigurasjonen. - - + + RomFS Extraction Failed! Utvinning av RomFS Feilet! - + There was an error copying the RomFS files or the user cancelled the operation. Det oppstod en feil under kopiering av RomFS filene eller så kansellerte brukeren operasjonen. - + Full Fullstendig - + Skeleton Skjelett - + Select RomFS Dump Mode Velg RomFS Dump Modus - + Please select the how you would like the RomFS dumped.<br>Full will copy all of the files into the new directory while <br>skeleton will only create the directory structure. Velg hvordan du vil dumpe RomFS.<br>Fullstendig vil kopiere alle filene til en ny mappe mens <br>skjelett vil bare skape mappestrukturen. - + There is not enough free space at %1 to extract the RomFS. Please free up space or select a different dump directory at Emulation > Configure > System > Filesystem > Dump Root Det er ikke nok ledig plass på %1 til å pakke ut RomFS. Vennligst frigjør plass eller velg en annen dump-katalog under Emulering > Konfigurer > System > Filsystem > Dump Root. - + Extracting RomFS... Utvinner RomFS... - - - - - + + Cancel Avbryt - + RomFS Extraction Succeeded! RomFS Utpakking lyktes! - - - + The operation completed successfully. Operasjonen fullført vellykket. - Integrity verification couldn't be performed! - Integritetsverifisering kunne ikke utføres! + Integritetsverifisering kunne ikke utføres! - File contents were not checked for validity. - Filinnholdet ble ikke kontrollert for gyldighet. + Filinnholdet ble ikke kontrollert for gyldighet. - - Verifying integrity... - Verifiserer integritet... + Verifiserer integritet... - - Integrity verification succeeded! - Integritetsverifisering vellykket! + Integritetsverifisering vellykket! - - Integrity verification failed! - Integritetsverifisering mislyktes! + Integritetsverifisering mislyktes! - File contents may be corrupt. - Filinnholdet kan være skadet. + Filinnholdet kan være skadet. - - - - Create Shortcut - Lag Snarvei + Lag Snarvei - - Do you want to launch the game in fullscreen? - - - - Successfully created a shortcut to %1 - Opprettet en snarvei til %1 + Opprettet en snarvei til %1 - This will create a shortcut to the current AppImage. This may not work well if you update. Continue? - Dette vil opprette en snarvei til gjeldende AppImage. Dette fungerer kanskje ikke bra hvis du oppdaterer. Fortsette? + Dette vil opprette en snarvei til gjeldende AppImage. Dette fungerer kanskje ikke bra hvis du oppdaterer. Fortsette? - - Failed to create a shortcut to %1 + Create Icon + Lag Ikon + + + Cannot create icon file. Path "%1" does not exist and cannot be created. + Kan ikke opprette ikonfil. Stien "%1" finnes ikke og kan ikke opprettes. + + + + Warning: Outdated Game Format - - Create Icon - Lag Ikon + + You are using the deconstructed ROM directory format for this game, which is an outdated format that has been superseded by others such as NCA, NAX, XCI, or NSP. Deconstructed ROM directories lack icons, metadata, and update support.<br><br>For an explanation of the various Switch formats Eden supports, <a href='https://eden-emulator.github.io/wiki/overview-of-switch-game-formats'>check out our wiki</a>. This message will not be shown again. + - - Cannot create icon file. Path "%1" does not exist and cannot be created. - Kan ikke opprette ikonfil. Stien "%1" finnes ikke og kan ikke opprettes. + + Eden has encountered an error while running the video core. This is usually caused by outdated GPU drivers, including integrated ones. Please see the log for more details. For more information on accessing the log, please see the following page: <a href='https://yuzu-mirror.github.io/help/reference/log-files/'>How to Upload the Log File</a>. + - + + %1<br>Please redump your files or ask on Discord/Revolt for help. + %1 signifies an error string. + + + + Error Opening %1 Feil ved åpning av %1 - + Select Directory Velg Mappe - + Properties Egenskaper - + The game properties could not be loaded. Spillets egenskaper kunne ikke bli lastet inn. - + Switch Executable (%1);;All Files (*.*) %1 is an identifier for the Switch executable file extensions. Switch Kjørbar Fil (%1);;Alle Filer (*.*) - + Load File Last inn Fil - + Open Extracted ROM Directory Åpne Utpakket ROM Mappe - + Invalid Directory Selected Ugyldig Mappe Valgt - + The directory you have selected does not contain a 'main' file. Mappen du valgte inneholder ikke en 'main' fil. - + Installable Switch File (*.nca *.nsp *.xci);;Nintendo Content Archive (*.nca);;Nintendo Submission Package (*.nsp);;NX Cartridge Image (*.xci) Installerbar Switch-Fil (*.nca *.nsp *.xci);;Nintendo Content Archive (*.nca);;Nintendo Submission Package (*.nsp);;NX Cartridge Image (*.xcI) - + Install Files Installer Filer - + %n file(s) remaining %n fil gjenstår @@ -6154,25 +6298,25 @@ Gå til Konfigurer -> System -> Nettverk og gjør et valg. - + Installing file "%1"... Installerer fil "%1"... - - + + Install Results Insallasjonsresultater - + To avoid possible conflicts, we discourage users from installing base games to the NAND. Please, only use this feature to install updates and DLC. For å unngå mulige konflikter fraråder vi brukere å installere basisspill på NAND. Bruk kun denne funksjonen til å installere oppdateringer og DLC. - + %n file(s) were newly installed @@ -6183,7 +6327,7 @@ Bruk kun denne funksjonen til å installere oppdateringer og DLC. - + %n file(s) were overwritten @@ -6194,7 +6338,7 @@ Bruk kun denne funksjonen til å installere oppdateringer og DLC. - + %n file(s) failed to install @@ -6205,491 +6349,451 @@ Bruk kun denne funksjonen til å installere oppdateringer og DLC. - + System Application Systemapplikasjon - + System Archive Systemarkiv - + System Application Update Systemapplikasjonsoppdatering - + Firmware Package (Type A) Firmware Pakke (Type A) - + Firmware Package (Type B) Firmware-Pakke (Type B) - + Game Spill - + Game Update Spilloppdatering - + Game DLC Spill tilleggspakke - + Delta Title Delta Tittel - + Select NCA Install Type... Velg NCA Installasjonstype... - + Please select the type of title you would like to install this NCA as: (In most instances, the default 'Game' is fine.) Vennligst velg typen tittel du vil installere denne NCA-en som: (I de fleste tilfellene, standarden 'Spill' fungerer.) - + Failed to Install Feil under Installasjon - + The title type you selected for the NCA is invalid. Titteltypen du valgte for NCA-en er ugyldig. - + File not found Fil ikke funnet - + File "%1" not found Filen "%1" ikke funnet - + OK OK - - + + Hardware requirements not met Krav til maskinvare ikke oppfylt - - + + Your system does not meet the recommended hardware requirements. Compatibility reporting has been disabled. Systemet ditt oppfyller ikke de anbefalte maskinvarekravene. Kompatibilitetsrapportering er deaktivert. - + Missing yuzu Account Mangler yuzu Bruker - - In order to submit a game compatibility test case, you must link your eden account.<br><br/>To link your eden account, go to Emulation &gt; Configuration &gt; Web. + + In order to submit a game compatibility test case, you must set up your web token and username.<br><br/>To link your eden account, go to Emulation &gt; Configuration &gt; Web. - - Install decryption keys and restart eden before attempting to install firmware. + + Select Dumped Firmware ZIP - - Firmware installation cancelled, firmware may be in bad state, restart eden or re-install firmware. + + Zipped Archives (*.zip) - - Encryption keys are missing. + + Firmware cleanup failed - - Are you sure you want to close eden? + + Failed to clean up extracted firmware cache. +Check write permissions in the system temp directory and try again. +OS reported error: %1 - - - - eden + + Please install firmware to use the Album applet. - - The currently running application has requested eden to not exit. + + Please install firmware to use the Cabinet applet. + + + + + Please install firmware to use the Mii editor. + + + + + Please install firmware to use the Controller Menu. + + + + + Please install firmware to use the Home Menu. + + + + + Firmware Corrupted + + + + + Firmware Too New + + + + + +Continue anyways? + + + + + Don't show again + + + + + Please install firmware to use Starter. + + + + + Are you sure you want to close Eden? + + + + + + + Eden + + + + + The currently running application has requested Eden to not exit. Would you like to bypass this and exit anyway? + + + Encryption keys are missing. + + In order to submit a game compatibility test case, you must link your yuzu account.<br><br/>To link your yuzu account, go to Emulation &gt; Configuration &gt; Web. For å sende inn et testtilfelle for spillkompatibilitet, må du linke yuzu-brukeren din.<br><br/>For å linke yuzu-brukeren din, gå til Emulasjon &gt; Konfigurasjon &gt; Nett. - + Error opening URL Feil under åpning av URL - + Unable to open the URL "%1". Kunne ikke åpne URL "%1". - + TAS Recording TAS-innspilling - + Overwrite file of player 1? Overskriv filen til spiller 1? - + Invalid config detected Ugyldig konfigurasjon oppdaget - + Handheld controller can't be used on docked mode. Pro controller will be selected. Håndholdt kontroller kan ikke brukes i dokket modus. Pro-kontroller vil bli valgt. - - + + Amiibo Amiibo - - + + The current amiibo has been removed Den valgte amiibo-en har blitt fjernet - + Error Feil - - + + The current game is not looking for amiibos Det kjørende spillet sjekker ikke for amiibo-er - + Amiibo File (%1);; All Files (*.*) Amiibo-Fil (%1);; Alle Filer (*.*) - + Load Amiibo Last inn Amiibo - + Error loading Amiibo data Feil ved lasting av Amiibo data - + The selected file is not a valid amiibo Den valgte filen er ikke en gyldig amiibo - + The selected file is already on use Den valgte filen er allerede i bruk - + An unknown error occurred En ukjent feil oppso - - Verification failed for the following files: %1 - Verifisering mislyktes for følgende filer: + Verifisering mislyktes for følgende filer: %1 - + + Keys not installed - + + + Install decryption keys and restart Eden before attempting to install firmware. + + + + Select Dumped Firmware Source Location - - Installing Firmware... - - - - - - - - Firmware install failed - - - - - Unable to locate potential firmware NCA files - - - - - Failed to delete one or more firmware file. - - - - - One or more firmware files failed to copy into NAND. - - - - - Firmware integrity verification failed! - - - - - Select Dumped Keys Location - - - - - - - Decryption Keys install failed - - - - - prod.keys is a required decryption key file. - - - - - One or more keys failed to copy. - - - - - Decryption Keys install succeeded - - - - - Decryption Keys were successfully installed - - - - - Decryption Keys failed to initialize. Check that your dumping tools are up to date and re-dump keys. - - - - - - - - - - + + + + + + No firmware available - - Please install the firmware to use the Album applet. - - - - + Album Applet - + Album applet is not available. Please reinstall firmware. - - Please install the firmware to use the Cabinet applet. - - - - + Cabinet Applet - + Cabinet applet is not available. Please reinstall firmware. - - Please install the firmware to use the Mii editor. - - - - + Mii Edit Applet - + Mii editor is not available. Please reinstall firmware. - - Please install the firmware to use the Controller Menu. - - - - + Controller Applet Applet for kontroller - + Controller Menu is not available. Please reinstall firmware. - - Please install the firmware to use the Home Menu. - - - - - + Home Menu Applet - - + Home Menu is not available. Please reinstall firmware. - - Please install the firmware to use Starter. - - - - + Starter Applet - + Starter is not available. Please reinstall firmware. - - Please install firmware to use the home menu. - - - - + Capture Screenshot Ta Skjermbilde - + PNG Image (*.png) PNG Bilde (*.png) - + Update Available - + Update %1 for Eden is available. Would you like to download it? - + TAS state: Running %1/%2 TAS-tilstand: Kjører %1/%2 - + TAS state: Recording %1 TAS-tilstand: Spiller inn %1 - + TAS state: Idle %1/%2 TAS-tilstand: Venter %1%2 - + TAS State: Invalid TAS-tilstand: Ugyldig - + &Stop Running &Stopp kjøring - + &Start &Start - + Stop R&ecording Stopp innspilling (&E) - + R&ecord Spill inn (%E) - + Building: %n shader(s) Bygger: %n shader @@ -6697,18 +6801,18 @@ Would you like to download it? - + Scale: %1x %1 is the resolution scaling factor Skala: %1x - + Speed: %1% / %2% Hastighet: %1% / %2% - + Speed: %1% Hastighet: %1% @@ -6717,54 +6821,54 @@ Would you like to download it? Spill: %1 FPS (ubegrenset) - + Game: %1 FPS Spill: %1 FPS - + Frame: %1 ms Ramme: %1 ms - + %1 %2 %1 %2 - - + + FSR FSR - + NO AA INGEN AA - + VOLUME: MUTE VOLUM: DEMPET - + VOLUME: %1% Volume percentage (e.g. 50%) VOLUM: %1% - + Derivation Components Missing Derivasjonskomponenter Mangler - + Select RomFS Dump Target Velg RomFS Dump-Mål - + Please select which RomFS you would like to dump. Vennligst velg hvilken RomFS du vil dumpe. @@ -6777,7 +6881,7 @@ Would you like to download it? yuzu - + Are you sure you want to stop the emulation? Any unsaved progress will be lost. Er du sikker på at du vil stoppe emulasjonen? All ulagret fremgang vil bli tapt. @@ -6790,102 +6894,102 @@ Would you like to bypass this and exit anyway? Vil du overstyre dette og lukke likevel? - + None Ingen - + FXAA FXAA - + SMAA SMAA - + Nearest Nærmest - + Bilinear Bilineær - + Bicubic Bikubisk - + Gaussian Gaussisk - + ScaleForce ScaleForce - + Area - + Docked Dokket - + Handheld Håndholdt - + Normal Normal - + High Høy - + Extreme Ekstrem - + Vulkan Vulkan - + OpenGL OpenGL - + Null Null - + GLSL GLSL - + GLASM GLASM - + SPIRV SPIRV @@ -6893,13 +6997,13 @@ Vil du overstyre dette og lukke likevel? GRenderWindow - - + + OpenGL not available! OpenGL ikke tilgjengelig! - + OpenGL shared contexts are not supported. Delte OpenGL-kontekster støttes ikke. @@ -6908,33 +7012,33 @@ Vil du overstyre dette og lukke likevel? yuzu har ikke blitt kompilert med OpenGL-støtte. - - eden has not been compiled with OpenGL support. + + Eden has not been compiled with OpenGL support. - - + + Error while initializing OpenGL! Feil under initialisering av OpenGL! - + Your GPU may not support OpenGL, or you do not have the latest graphics driver. Det kan hende at GPU-en din ikke støtter OpenGL, eller at du ikke har den nyeste grafikkdriveren. - + Error while initializing OpenGL 4.6! Feil under initialisering av OpenGL 4.6! - + Your GPU may not support OpenGL 4.6, or you do not have the latest graphics driver.<br><br>GL Renderer:<br>%1 Det kan hende at GPU-en din ikke støtter OpenGL 4.6, eller at du ikke har den nyeste grafikkdriveren.<br><br>GL-renderer:<br>%1 - + Your GPU may not support one or more required OpenGL extensions. Please ensure you have the latest graphics driver.<br><br>GL Renderer:<br>%1<br><br>Unsupported extensions:<br>%2 Det kan hende at GPU-en din ikke støtter én eller flere nødvendige OpenGL-utvidelser. Vennligst sørg for at du har den nyeste grafikkdriveren.<br><br>GL-renderer: <br>%1<br><br>Ikke-støttede utvidelser:<br>%2 @@ -6942,128 +7046,128 @@ Vil du overstyre dette og lukke likevel? GameList - + Favorite Legg til som favoritt - + Start Game Start Spill - + Start Game without Custom Configuration Star Spill Uten Tilpasset Konfigurasjon - + Open Save Data Location Åpne Lagret Data plassering - + Open Mod Data Location Åpne Mod Data plassering - + Open Transferable Pipeline Cache Åpne Overførbar Rørledningsbuffer - + Remove Fjern - + Remove Installed Update Fjern Installert Oppdatering - + Remove All Installed DLC Fjern All Installert DLC - + Remove Custom Configuration Fjern Tilpasset Konfigurasjon - + Remove Play Time Data - + Remove Cache Storage Fjern Hurtiglagring - + Remove OpenGL Pipeline Cache Fjer OpenGL Rørledningsbuffer - + Remove Vulkan Pipeline Cache Fjern Vulkan Rørledningsbuffer - + Remove All Pipeline Caches Fjern Alle Rørledningsbuffere - + Remove All Installed Contents Fjern All Installert Innhold - + Dump RomFS Dump RomFS - + Dump RomFS to SDMC Dump RomFS til SDMC - + Verify Integrity Verifiser integritet - + Copy Title ID to Clipboard Kopier Tittel-ID til Utklippstavle - + Navigate to GameDB entry Naviger til GameDB-oppføring - + Create Shortcut lag Snarvei - + Add to Desktop Legg Til På Skrivebordet - + Add to Applications Menu Legg Til Applikasjonsmenyen - + Configure Game @@ -7072,62 +7176,62 @@ Vil du overstyre dette og lukke likevel? Egenskaper - + Scan Subfolders Skann Undermapper - + Remove Game Directory Fjern Spillmappe - + ▲ Move Up ▲ Flytt Opp - + ▼ Move Down ▼ Flytt Ned - + Open Directory Location Åpne Spillmappe - + Clear Fjern - + Name Navn - + Compatibility Kompatibilitet - + Add-ons Tilleggsprogrammer - + File type Fil Type - + Size Størrelse - + Play time @@ -7135,62 +7239,62 @@ Vil du overstyre dette og lukke likevel? GameListItemCompat - + Ingame i Spillet - + Game starts, but crashes or major glitches prevent it from being completed. Spillet starter, men krasjer eller større feil gjør at det ikke kan fullføres. - + Perfect Perfekt - + Game can be played without issues. Spillet kan spilles uten problemer. - + Playable Spillbart - + Game functions with minor graphical or audio glitches and is playable from start to finish. Spillet fungerer med mindre grafiske eller lydfeil og kan spilles fra start til slutt. - + Intro/Menu Intro/Meny - + Game loads, but is unable to progress past the Start Screen. Spillet lastes inn, men kan ikke gå videre forbi startskjermen. - + Won't Boot Vil ikke starte - + The game crashes when attempting to startup. Spillet krasjer under oppstart. - + Not Tested Ikke testet - + The game has not yet been tested. Spillet har ikke blitt testet ennå. @@ -7198,7 +7302,7 @@ Vil du overstyre dette og lukke likevel? GameListPlaceholder - + Double-click to add a new folder to the game list Dobbeltrykk for å legge til en ny mappe i spillisten @@ -7206,7 +7310,7 @@ Vil du overstyre dette og lukke likevel? GameListSearchField - + %1 of %n result(s) %1 of %n resultat @@ -7214,12 +7318,12 @@ Vil du overstyre dette og lukke likevel? - + Filter: Filter: - + Enter pattern to filter Angi mønster for å filtrere @@ -7301,7 +7405,7 @@ Vil du overstyre dette og lukke likevel? - Failed to announce the room to the public lobby. In order to host a room publicly, you must have a valid eden account configured in Emulation -> Configure -> Web. If you do not want to publish a room in the public lobby, then select Unlisted instead. + Failed to announce the room to the public lobby. In order to host a room publicly, you must have a valid Eden 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: @@ -7315,190 +7419,190 @@ Feilmelding: Hotkeys - + Audio Mute/Unmute Lyd av/på - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Main Window Hovedvindu - + Audio Volume Down Lydvolum Ned - + Audio Volume Up Lydvolum Opp - + Capture Screenshot Ta Skjermbilde - + Change Adapting Filter Endre tilpasningsfilter - + Change Docked Mode Endre forankret modus - + Change GPU Accuracy Endre GPU-nøyaktighet - + Configure Konfigurer - + Configure Current Game - + Continue/Pause Emulation Fortsett/Pause Emuleringen - + Exit Fullscreen Avslutt fullskjerm + + + Exit Eden + + Exit yuzu Avslutt yuzu - - Exit eden - - - - + Fullscreen Fullskjerm - + Load File Last inn Fil - + Load/Remove Amiibo Last/Fjern Amiibo - + Multiplayer Browse Public Game Lobby - + Multiplayer Create Room - + Multiplayer Direct Connect to Room - + Multiplayer Leave Room - + Multiplayer Show Current Room - + Restart Emulation Omstart Emuleringen - + Stop Emulation Stopp Emuleringen - + TAS Record Spill inn TAS - + TAS Reset Tilbakestill TAS - + TAS Start/Stop Start/Stopp TAS - + Toggle Filter Bar Veksle Filterlinje - + Toggle Framerate Limit Veksle Bildefrekvensgrense - + Toggle Mouse Panning Veksle Muspanorering - + Toggle Renderdoc Capture - + Toggle Status Bar Veksle Statuslinje @@ -7506,22 +7610,22 @@ Feilmelding: InstallDialog - + Please confirm these are the files you wish to install. Vennligst bekreft at dette er filene du ønsker å installere. - + Installing an Update or DLC will overwrite the previously installed one. Installering av en oppdatering eller DLC vil overskrive den tidligere installerte. - + Install Installer - + Install Files to NAND Installer filer til NAND @@ -7529,7 +7633,7 @@ Feilmelding: LimitableInputDialog - + The text can't contain any of the following characters: %1 Teksten kan ikke inneholde noen av de følgende tegnene: @@ -7676,152 +7780,207 @@ Feilmelding: Nylige file&r - + + Open &Eden Folders + + + + &Emulation &Emulering - + &View &Vis - + &Reset Window Size Nullstill vindusstø&rrelse - + &Debugging Feilsøking (&D) - + Reset Window Size to &720p Tilbakestill vindusstørrelse til &720p - + Reset Window Size to 720p Tilbakestill vindusstørrelse til 720p - + Reset Window Size to &900p Tilbakestill vindusstørrelse til &900p - + Reset Window Size to 900p Tilbakestill vindusstørrelse til 900p - + Reset Window Size to &1080p Tilbakestill vindusstørrelse til &1080p - + Reset Window Size to 1080p Tilbakestill vindusstørrelse til 1080p - + &Multiplayer Flerspiller (&M) - + &Tools Verk&tøy - + &Amiibo - + &TAS &TAS - + &Create Home Menu Shortcut - + &Help &Hjelp - + &Install Files to NAND... &Installer filer til NAND... - + L&oad File... Last inn fil... (&O) - + Load &Folder... Last inn mappe (&F) - + E&xit &Avslutt - + &Pause &Paus - + &Stop &Stop - + &Verify Installed Contents - - &About eden + + &Root Data Folder - - Open &eden Folder + + &NAND Folder - + + &SDMC Folder + + + + + &Mod Folder + + + + + &Log Folder + + + + + From Folder + + + + + From ZIP + + + + + &X + + + + + X (Twitter) + + + + + &Revolt + + + + + Revolt + + + + + &Eden Dependencies + + + + Open Home Menu - + &Discord - + Open &Setup - + &Desktop - + &Application Menu @@ -7830,97 +7989,97 @@ Feilmelding: Om yuzu (&A) - + Single &Window Mode Énvindusmodus (&W) - + Con&figure... Kon&figurer... - + Ctrl+, - + Display D&ock Widget Headers Vis Overskrifter for Dock Widget (&O) - + Show &Filter Bar Vis &filterlinje - + Show &Status Bar Vis &statuslinje - + Show Status Bar Vis statuslinje - + &Browse Public Game Lobby Bla gjennom den offentlige spillobbyen (&B) - + &Create Room Opprett Rom (&C) - + &Leave Room Forlat Rommet (&L) - + &Direct Connect to Room Direkte Tilkobling Til Rommet (&D) - + &Show Current Room Vis nåværende rom (&S) - + F&ullscreen F&ullskjerm - + &Restart Omstart (&R) - + Load/Remove &Amiibo... Last/Fjern Amiibo (&A) - + &Report Compatibility Rapporter kompatibilitet (&R) - + Open &Mods Page Åpne Modifikasjonssiden (&M) - + Open &Quickstart Guide Åpne Hurtigstartsguiden (&Q) - + &FAQ &FAQ @@ -7929,77 +8088,82 @@ Feilmelding: Åpne &yuzu Mappen - + &Capture Screenshot Ta Skjermbilde (&C) - + Open &Album - + &Set Nickname and Owner - + &Delete Game Data - + &Restore Amiibo - + &Format Amiibo - + Open &Mii Editor - + &Configure TAS... Konfigurer TAS (&C) - + Configure C&urrent Game... Konfigurer Gjeldende Spill (&U) - + &Start &Start - + &Reset Tilbakestill (&R) - + R&ecord Spill inn (%E) - + Open &Controller Menu - + Install Firmware - + + &About Eden + + + + Install Decryption Keys @@ -8007,26 +8171,36 @@ Feilmelding: MicroProfileDialog - &MicroProfile - Mikroprofil (&M) + Mikroprofil (&M) MigrationWorker - + Data was migrated successfully. - + Linking the old directory failed. You may need to re-run with administrative privileges on Windows. OS gave error: %1 - + + + +Note that your configuration and data will be shared with %1. +If this is not desirable, delete the following files: +%2 +%3 +%4 + + + + If you wish to clean up the files which were left in the old data location, you can do so by deleting the following directory: @@ -8086,37 +8260,37 @@ If you wish to clean up the files which were left in the old data location, you MultiplayerState - + Current connection status Gjeldende tilkoblingsstatus - + Not Connected. Click here to find a room! Ikke tilkoblet. Klikk her for å finne et rom! - + Not Connected Ikke Tilkoblet - + Connected Tilkoblet - + New Messages Received Nye meldinger mottatt - + Error Feil - + Failed to update the room information. Please check your Internet connection and try hosting the room again. Debug Message: Kunne ikke oppdatere rominformasjonen. Kontroller Internett-tilkoblingen din og prøv å være vert for rommet på nytt. @@ -8308,56 +8482,56 @@ p, li { white-space: pre-wrap; } Spiller ikke et spill - + Installed SD Titles Installerte SD-titler - + Installed NAND Titles Installerte NAND-titler - + System Titles System Titler - + Add New Game Directory Legg til ny spillmappe - + Favorites Favoritter - - + + Shift Shift - - + + Ctrl Ctrl - - + + Alt Alt - - - - + + + + [not set] [ikke satt] @@ -8368,14 +8542,14 @@ p, li { white-space: pre-wrap; } Hatt %1 %2 - - - - - - - - + + + + + + + + Axis %1%2 Akse %1%2 @@ -8386,357 +8560,357 @@ p, li { white-space: pre-wrap; } Knapp %1 - - - - - - + + + + + + [unknown] [ukjent] - - - + + + Left Venstre - - - + + + Right Høyre - - - + + + Down Ned - - - + + + Up Opp - - + + Z Z - - + + R R - - + + L L - - + + A A - - + + B B - - + + X X - - + + Y Y - - + + Start Start - - + + L1 L1 - - + + L2 L2 - - + + L3 L3 - - + + R1 R1 - - + + R2 R2 - - + + R3 R3 - - + + Circle Sirkel - - + + Cross Kryss - - + + Square Firkant - - + + Triangle Trekant - - + + Share Del - - + + Options Instillinger - - + + [undefined] [udefinert] - + %1%2 %1%2 - - + + [invalid] [ugyldig] - - + + %1%2Hat %3 %1%2Hat %3 - - - + + + %1%2Axis %3 %1%2Akse %3 - - + + %1%2Axis %3,%4,%5 %1%2Akse %3,%4,%5 - - + + %1%2Motion %3 %1%2Bevegelse %3 - - + + %1%2Button %3 %1%2Knapp %3 - - + + [unused] [ubrukt] - + ZR ZR - + ZL ZL - + SR SR - + SL SL - + Stick L Venstre Stikke - + Stick R Høyre Stikke - + Plus Pluss - + Minus Minus - - + + Home Hjem - + Capture Opptak - + Touch Touch - + Wheel Indicates the mouse wheel Hjul - + Backward Bakover - + Forward Fremover - + Task oppgave - + Extra Ekstra - + %1%2%3%4 %1%2%3%4 - - + + %1%2%3Hat %4 %1%2%3Hat %4 - - + + %1%2%3Axis %4 %1%2%3Akse %4 - - + + %1%2%3Button %4 %1%2%3Knapp %4 - - + + Migration - + - - + + No - + You can manually re-trigger this prompt by deleting the new config directory: %1 - + Migrating - + Migrating, this may take a while... @@ -8854,6 +9028,300 @@ p, li { white-space: pre-wrap; } Ønsker du å gjenopprette denne amiiboen? + + QtCommon::Content + + + Installing Firmware... + + + + + + + Cancel + Avbryt + + + + Firmware integrity verification failed! + + + + + + Verification failed for the following files: + +%1 + Verifisering mislyktes for følgende filer: + +%1 + + + + + Verifying integrity... + Verifiserer integritet... + + + + + Integrity verification succeeded! + Integritetsverifisering vellykket! + + + + + The operation completed successfully. + + + + + + Integrity verification failed! + Integritetsverifisering mislyktes! + + + + File contents may be corrupt or missing. + + + + + Integrity verification couldn't be performed + + + + + Firmware installation cancelled, firmware may be in a bad state or corrupted. File contents could not be checked for validity. + + + + + Select Dumped Keys Location + + + + + Decryption Keys install succeeded + + + + + Decryption Keys were successfully installed + + + + + Decryption Keys install failed + + + + + QtCommon::Game + + + Error Removing Contents + Feil ved fjerning av innhold + + + + Error Removing Update + Feil ved fjerning av oppdatering + + + + Error Removing DLC + Feil ved fjerning av DLC + + + + The base game is not installed in the NAND and cannot be removed. + Grunnspillet er ikke installert i NAND og kan ikke bli fjernet. + + + + There is no update installed for this title. + Det er ingen oppdatering installert for denne tittelen. + + + + There are no DLCs installed for this title. + + + + + + + + Successfully Removed + Fjerning lykkes + + + + Successfully removed %1 installed DLC. + Fjernet vellykket %1 installerte DLC-er. + + + + + Error Removing Transferable Shader Cache + Feil under fjerning av overførbar shader cache + + + + + A shader cache for this title does not exist. + En shaderbuffer for denne tittelen eksisterer ikke. + + + + Successfully removed the transferable shader cache. + Lykkes i å fjerne den overførbare shader cachen. + + + + Failed to remove the transferable shader cache. + Feil under fjerning av den overførbare shader cachen. + + + + Error Removing Vulkan Driver Pipeline Cache + Feil ved fjerning av Vulkan Driver-Rørledningsbuffer + + + + Failed to remove the driver pipeline cache. + Kunne ikke fjerne driverens rørledningsbuffer. + + + + + Error Removing Transferable Shader Caches + Feil ved fjerning av overførbare shaderbuffere + + + + Successfully removed the transferable shader caches. + Vellykket fjerning av overførbare shaderbuffere. + + + + Failed to remove the transferable shader cache directory. + Feil ved fjerning av overførbar shaderbuffer katalog. + + + + + Error Removing Custom Configuration + Feil Under Fjerning Av Tilpasset Konfigurasjon + + + + A custom configuration for this title does not exist. + En tilpasset konfigurasjon for denne tittelen finnes ikke. + + + + Successfully removed the custom game configuration. + Fjernet vellykket den tilpassede spillkonfigurasjonen. + + + + Failed to remove the custom game configuration. + Feil under fjerning av den tilpassede spillkonfigurasjonen. + + + + Reset Metadata Cache + Tilbakestill Mellomlagringen for Metadata + + + + The metadata cache is already empty. + Mellomlagringen for metadata er allerede tom. + + + + The operation completed successfully. + + + + + The metadata cache couldn't be deleted. It might be in use or non-existent. + Mellomlagringen for metadata kunne ikke slettes. Den kan være i bruk eller ikke-eksisterende. + + + + Create Shortcut + + + + + Do you want to launch the game in fullscreen? + + + + + Shortcut Created + + + + + Successfully created a shortcut to %1 + Opprettet en snarvei til %1 + + + + Shortcut may be Volatile! + + + + + This will create a shortcut to the current AppImage. This may not work well if you update. Continue? + Dette vil opprette en snarvei til gjeldende AppImage. Dette fungerer kanskje ikke bra hvis du oppdaterer. Fortsette? + + + + Failed to Create Shortcut + + + + + Failed to create a shortcut to %1 + + + + + Create Icon + Lag Ikon + + + + Cannot create icon file. Path "%1" does not exist and cannot be created. + Kan ikke opprette ikonfil. Stien "%1" finnes ikke og kan ikke opprettes. + + + + No firmware available + + + + + Please install firmware to use the home menu. + + + + + Home Menu Applet + + + + + Home Menu is not available. Please reinstall firmware. + + + QtControllerSelectorDialog @@ -9149,7 +9617,7 @@ Prøv igjen eller kontakt utvikleren av programvaren. QtProfileSelectionDialog - + %1 %2 %1 is the profile username, %2 is the formatted UUID (e.g. 00112233-4455-6677-8899-AABBCCDDEEFF)) @@ -9157,7 +9625,7 @@ Prøv igjen eller kontakt utvikleren av programvaren. %2 - + Users Brukere @@ -9281,7 +9749,7 @@ p, li { white-space: pre-wrap; } WaitTreeCallstack - + Call stack Anropsstabel @@ -9289,12 +9757,12 @@ p, li { white-space: pre-wrap; } WaitTreeSynchronizationObject - + [%1] %2 [%1] %2 - + waited by no thread ventet på ingen tråd @@ -9302,102 +9770,102 @@ p, li { white-space: pre-wrap; } WaitTreeThread - + runnable kjørbar - + paused pauset - + sleeping sover - + waiting for IPC reply venter på IPC-svar - + waiting for objects venter på objekter - + waiting for condition variable venter på tilstandsvariabel - + waiting for address arbiter venter på adresseforhandler - + waiting for suspend resume venter på gjenopptakelse av suspensjon - + waiting venter - + initialized initialisert - + terminated terminert - + unknown ukjent - + PC = 0x%1 LR = 0x%2 PC = 0x%1 LR = 0x%2 - + ideal ideell - + core %1 kjerne %1 - + processor = %1 prosessor = %1 - + affinity mask = %1 affinitetsmaske = %1 - + thread id = %1 tråd id = %1 - + priority = %1(current) / %2(normal) prioritet = %1(nåværende) / %2(normal) - + last running ticks = %1 siste løpende tick = %1 @@ -9405,7 +9873,7 @@ p, li { white-space: pre-wrap; } WaitTreeThreadList - + waited by thread ventet med tråd @@ -9413,7 +9881,7 @@ p, li { white-space: pre-wrap; } WaitTreeWidget - + &Wait Tree Ventetre (&W) diff --git a/dist/languages/nl.ts b/dist/languages/nl.ts index e58b12429f..240a9b70a0 100644 --- a/dist/languages/nl.ts +++ b/dist/languages/nl.ts @@ -13,12 +13,12 @@ - About eden + About Eden - <html><head/><body><p><span style=" font-size:28pt;">eden</span></p></body></html> + <html><head/><body><p><span style=" font-size:28pt;">Eden</span></p></body></html> @@ -34,8 +34,8 @@ p, li { white-space: pre-wrap; } hr { height: 1px; border-width: 0; } li.unchecked::marker { content: "\2610"; } li.checked::marker { content: "\2612"; } -</style></head><body style=" font-family:'Adwaita Sans'; font-size:11pt; font-weight:400; font-style:normal;"> -<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;">eden is an experimental open-source emulator for the Nintendo Switch licensed under GPLv3.0+ which is based on the yuzu emulator which ended development back in March 2024. <br /><br />This software should not be used to play games you have not legally obtained.</span></p></body></html> +</style></head><body style=" font-family:'Noto Sans'; font-size:9pt; font-weight:400; font-style:normal;"> +<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;">Eden is an experimental open-source emulator for the Nintendo Switch licensed under GPLv3.0+ which is based on the yuzu emulator which ended development back in March 2024. <br /><br />This software should not be used to play games you have not legally obtained.</span></p></body></html> @@ -72,32 +72,32 @@ p, li { white-space: pre-wrap; } CalibrationConfigurationDialog - + Communicating with the server... Communiceren met de server... - + Cancel Annuleer - + Touch the top left corner <br>of your touchpad. Raak de linkerbovenhoek <br> van je touchpad aan. - + Now touch the bottom right corner <br>of your touchpad. Raak nu de rechterbenedenhoek <br>van je touchpad aan. - + Configuration completed! Configuratie compleet! - + OK OK @@ -397,439 +397,152 @@ Dit zou zowel hun forum gebruikersnaam als hun IP-adres verbannen. ConfigurationShared - + % % - - Amiibo editor - - - - - Controller configuration - - - - - Data erase - - - - + Error Fout - - Net connect - - - - - Player select - - - - - Software keyboard - - - - - Mii Edit - - - - - Online web - - - - - Shop - - - - - Photo viewer - - - - - Offline web - - - - - Login share - - - - - Wifi web auth - - - - - My page - - - - + Output Engine: Uitvoer-engine: - + Output Device: Uitvoerapparaat: - + Input Device: Invoerapparaat: - - Mute audio - - - - + Volume: Volume: - + Mute audio when in background Demp audio op de achtergrond - + Multicore CPU Emulation Multicore CPU-emulatie - - This option increases CPU emulation thread use from 1 to the Switch’s maximum of 4. -This is mainly a debug option and shouldn’t be disabled. - - - - - Memory Layout - - - - - Increases the amount of emulated RAM from the stock 4GB of the retail Switch to the developer kit's 8/6GB. -It’s doesn’t improve stability or performance and is intended to let big texture mods fit in emulated RAM. -Enabling it will increase memory use. It is not recommended to enable unless a specific game with a texture mod needs it. - - - - + Limit Speed Percent Beperk Snelheidspercentage - - Controls the game's maximum rendering speed, but it’s up to each game if it runs faster or not. -200% for a 30 FPS game is 60 FPS, and for a 60 FPS game it will be 120 FPS. -Disabling it means unlocking the framerate to the maximum your PC can reach. - - - - - Synchronize Core Speed - - - - - Synchronizes CPU core speed with the game's maximum rendering speed to boost FPS without affecting game speed (animations, physics, etc.). -Compatibility varies by game; many (especially older ones) may not respond well. -Can help reduce stuttering at lower framerates. - - - - + Accuracy: Nauwkeurigheid: - - This setting controls the accuracy of the emulated CPU. -Don't change this unless you know what you are doing. - - - - - - Backend: - - - - - Fast CPU Time - - - - - Overclocks the emulated CPU to remove some FPS limiters. Weaker CPUs may see reduced performance, and certain games may behave improperly. -Use Boost (1700MHz) to run at the Switch's highest native clock, or Fast (2000MHz) to run at 2x clock. - - - - + Unfuse FMA (improve performance on CPUs without FMA) Ontbind FMA (verbeterd prestatie op CPU's zonder FMA) - - This option improves speed by reducing accuracy of fused-multiply-add instructions on CPUs without native FMA support. - - - - + Faster FRSQRTE and FRECPE Snellere FRSRTE en FRECPE - - This option improves the speed of some approximate floating-point functions by using less accurate native approximations. - - - - + Faster ASIMD instructions (32 bits only) Snellere ASIMD-instructies (alleen 32-bits) - - This option improves the speed of 32 bits ASIMD floating-point functions by running with incorrect rounding modes. - - - - + Inaccurate NaN handling Onnauwkeurige NaN-verwerking - - This option improves speed by removing NaN checking. -Please note this also reduces accuracy of certain floating-point instructions. - - - - + Disable address space checks Schakel adresruimtecontroles uit - - This option improves speed by eliminating a safety check before every memory read/write in guest. -Disabling it may allow a game to read/write the emulator's memory. - - - - + Ignore global monitor Negeer globale monitor - - This option improves speed by relying only on the semantics of cmpxchg to ensure safety of exclusive access instructions. -Please note this may result in deadlocks and other race conditions. - - - - + API: API: - - Switches between the available graphics APIs. -Vulkan is recommended in most cases. - - - - + Device: Apparaat: - - This setting selects the GPU to use with the Vulkan backend. - - - - + Shader Backend: Shader Backend: - - The shader backend to use for the OpenGL renderer. -GLSL is the fastest in performance and the best in rendering accuracy. -GLASM is a deprecated NVIDIA-only backend that offers much better shader building performance at the cost of FPS and rendering accuracy. -SPIR-V compiles the fastest, but yields poor results on most GPU drivers. - - - - + Resolution: Resolutie: - - Forces the game to render at a different resolution. -Higher resolutions require much more VRAM and bandwidth. -Options lower than 1X can cause rendering issues. - - - - + Window Adapting Filter: Window Adapting Filter: - + FSR Sharpness: FSR-scherpte: - - Determines how sharpened the image will look while using FSR’s dynamic contrast. - - - - + Anti-Aliasing Method: Antialiasing-methode: - - The anti-aliasing method to use. -SMAA offers the best quality. -FXAA has a lower performance impact and can produce a better and more stable picture under very low resolutions. - - - - + Fullscreen Mode: Volledig scherm modus: - - The method used to render the window in fullscreen. -Borderless offers the best compatibility with the on-screen keyboard that some games request for input. -Exclusive fullscreen may offer better performance and better Freesync/Gsync support. - - - - + Aspect Ratio: Aspect Ratio: - - Stretches the game to fit the specified aspect ratio. -Switch games only support 16:9, so custom game mods are required to get other ratios. -Also controls the aspect ratio of captured screenshots. - - - - + Use disk pipeline cache Gebruik schijfpijplijn-cache - - Allows saving shaders to storage for faster loading on following game boots. -Disabling it is only intended for debugging. - - - - - Optimize SPIRV output shader - - - - - Runs an additional optimization pass over generated SPIRV shaders. -Will increase time required for shader compilation. -May slightly improve performance. -This feature is experimental. - - - - + Use asynchronous GPU emulation Gebruik asynchrone GPU-emulatie - - Uses an extra CPU thread for rendering. -This option should always remain enabled. - - - - + NVDEC emulation: NVDEC-emulatie: - - Specifies how videos should be decoded. -It can either use the CPU or the GPU for decoding, or perform no decoding at all (black screen on videos). -In most cases, GPU decoding provides the best performance. - - - - - ASTC Decoding Method: - - - - - This option controls how ASTC textures should be decoded. -CPU: Use the CPU for decoding, slowest but safest method. -GPU: Use the GPU's compute shaders to decode ASTC textures, recommended for most games and users. -CPU Asynchronously: Use the CPU to decode ASTC textures as they arrive. Completely eliminates ASTC decoding -stuttering at the cost of rendering issues while the texture is being decoded. - - - - - ASTC Recompression Method: - - - - - Almost all desktop and laptop dedicated GPUs lack support for ASTC textures, forcing the emulator to decompress to an intermediate format any card supports, RGBA8. -This option recompresses RGBA8 to either the BC1 or BC3 format, saving VRAM but negatively affecting image quality. - - - - - VRAM Usage Mode: - - - - - Selects whether the emulator should prefer to conserve memory or make maximum usage of available video memory for performance. Has no effect on integrated graphics. Aggressive mode may severely impact the performance of other applications such as recording software. - - - - + VSync Mode: VSync-modus: - + FIFO (VSync) does not drop frames or exhibit tearing but is limited by the screen refresh rate. FIFO Relaxed is similar to FIFO but allows tearing as it recovers from a slow down. Mailbox can have lower latency than FIFO and does not tear but may drop frames. @@ -840,62 +553,34 @@ Mailbox kan een lagere latentie hebben dan FIFO en scheurt niet, maar kan frames Immediate (geen synchronisatie) presenteert gewoon wat beschikbaar is en kan scheuren vertonen. - + Enable asynchronous presentation (Vulkan only) Schakel asynchrone presentatie in (alleen Vulkan) - - Slightly improves performance by moving presentation to a separate CPU thread. - - - - + Force maximum clocks (Vulkan only) Forceer maximale klokken (alleen Vulkan) - + Runs work in the background while waiting for graphics commands to keep the GPU from lowering its clock speed. Werkt op de achtergrond terwijl er wordt gewacht op grafische opdrachten om te voorkomen dat de GPU zijn kloksnelheid verlaagt. - + Anisotropic Filtering: Anisotrope Filtering: - - Controls the quality of texture rendering at oblique angles. -It’s a light setting and safe to set at 16x on most GPUs. - - - - Accuracy Level: - Nauwkeurigheidsniveau: + Nauwkeurigheidsniveau: - - GPU emulation accuracy. -Most games render fine with Normal, but High is still required for some. -Particles tend to only render correctly with High accuracy. -Extreme should only be used for debugging. -This option can be changed while playing. -Some games may require booting on high to render properly. - - - - + Use asynchronous shader building (Hack) Gebruik asynchrone shaderbouw (Hack) - - - Enables asynchronous shader compilation, which may reduce shader stutter. -This feature is experimental. - - Use Fast GPU Time (Hack) Gebruik Snelle GPU-tijd (Hack) @@ -905,1021 +590,1433 @@ This feature is experimental. Schakelt Snelle GPU-tijd in. Deze optie forceert de meeste games om op hun hoogste native resolutie te draaien. - + Use Vulkan pipeline cache Gebruik Vulkan-pijplijn-cache - + + Enable Reactive Flushing + Schakel Reactive Flushing In + + + + RNG Seed + RNG Seed + + + + Device Name + Apparaatnaam + + + + Note: this can be overridden when region setting is auto-select + Opmerking: dit kan worden overschreven wanneer de regio-instelling automatisch wordt geselecteerd + + + + Region: + Regio: + + + + Time Zone: + Tijdzone: + + + + Sound Output Mode: + Geluidsuitvoermodus: + + + + Prompt for user on game boot + Vraag aan gebruiker bij opstarten van het spel + + + + Pause emulation when in background + Emulatie onderbreken op de achtergrond + + + + Hide mouse on inactivity + Verberg muis wanneer inactief + + + + CPU + CPU + + + + BC1 (Low quality) + BC1 (Lage Kwaliteit) + + + + BC3 (Medium quality) + BC3 (Gemiddelde kwaliteit) + + + + OpenGL + OpenGL + + + + Vulkan + Vulkan + + + + Null + Null + + + + GLSL + GLSL + + + + GLASM (Assembly Shaders, NVIDIA Only) + GLASM (Assembly Shaders, alleen NVIDIA) + + + + Normal + Normaal + + + + High + Hoog + + + + Extreme + Extreme + + + + Auto + Auto + + + + Accurate + Accuraat + + + + Unsafe + Onveilig + + + + Paranoid (disables most optimizations) + Paranoid (schakelt de meeste optimalisaties uit) + + + + Borderless Windowed + Randloos Venster + + + + Exclusive Fullscreen + Exclusief Volledig Scherm + + + + No Video Output + Geen Video-uitvoer + + + + CPU Video Decoding + CPU Videodecodering + + + + GPU Video Decoding (Default) + GPU Videodecodering (Standaard) + + + + 0.75X (540p/810p) [EXPERIMENTAL] + 0.75X (540p/810p) [EXPERIMENTEEL] + + + + 1X (720p/1080p) + 1X (720p/1080p) + + + + 1.5X (1080p/1620p) [EXPERIMENTAL] + 1.5X (1080p/1620p) [EXPERIMENTEEL] + + + + 2X (1440p/2160p) + 2X (1440p/2160p) + + + + 3X (2160p/3240p) + 3X (2160p/3240p) + + + + 4X (2880p/4320p) + 4X (2880p/4320p) + + + + 5X (3600p/5400p) + 5X (3600p/5400p) + + + + 6X (4320p/6480p) + 6X (4320p/6480p) + + + + 7X (5040p/7560p) + 7X (5040p/7560p) + + + + 8X (5760p/8640p) + 8X (5760p/8640p) + + + + Nearest Neighbor + Nearest Neighbor + + + + Bilinear + Bilinear + + + + Bicubic + Bicubic + + + + Gaussian + Gaussian + + + + ScaleForce + ScaleForce + + + + AMD FidelityFX™️ Super Resolution + AMD FidelityFX™️ Super Resolution + + + + None + Geen + + + + FXAA + FXAA + + + + SMAA + SMAA + + + + Default (16:9) + Standaart (16:9) + + + + Force 4:3 + Forceer 4:3 + + + + Force 21:9 + Forceer 21:9 + + + + Force 16:10 + Forceer 16:10 + + + + Stretch to Window + Uitrekken naar Venster + + + + Automatic + Automatisch + + + + + Default + Standaard + + + + Amiibo editor + + + + + Controller configuration + + + + + Data erase + + + + + Net connect + + + + + Player select + + + + + Software keyboard + + + + + Mii Edit + + + + + Online web + + + + + Shop + + + + + Photo viewer + + + + + Offline web + + + + + Login share + + + + + Wifi web auth + + + + + My page + + + + + Mute audio + + + + + This option increases CPU emulation thread use from 1 to the Switch’s maximum of 4. +This is mainly a debug option and shouldn’t be disabled. + + + + + Memory Layout + + + + + Increases the amount of emulated RAM from the stock 4GB of the retail Switch to the developer kit's 8/6GB. +It’s doesn’t improve stability or performance and is intended to let big texture mods fit in emulated RAM. +Enabling it will increase memory use. It is not recommended to enable unless a specific game with a texture mod needs it. + + + + + Controls the game's maximum rendering speed, but it’s up to each game if it runs faster or not. +200% for a 30 FPS game is 60 FPS, and for a 60 FPS game it will be 120 FPS. +Disabling it means unlocking the framerate to the maximum your PC can reach. + + + + + Synchronize Core Speed + + + + + Synchronizes CPU core speed with the game's maximum rendering speed to boost FPS without affecting game speed (animations, physics, etc.). +Compatibility varies by game; many (especially older ones) may not respond well. +Can help reduce stuttering at lower framerates. + + + + + This setting controls the accuracy of the emulated CPU. +Don't change this unless you know what you are doing. + + + + + + Backend: + + + + + Fast CPU Time + + + + + Overclocks the emulated CPU to remove some FPS limiters. Weaker CPUs may see reduced performance, and certain games may behave improperly. +Use Boost (1700MHz) to run at the Switch's highest native clock, or Fast (2000MHz) to run at 2x clock. + + + + + Custom CPU Ticks + + + + + Set a custom value of CPU ticks. Higher values can increase performance, but may also cause the game to freeze. A range of 77–21000 is recommended. + + + + + Enable Host MMU Emulation (fastmem) + + + + + This optimization speeds up memory accesses by the guest program. +Enabling it causes guest memory reads/writes to be done directly into memory and make use of Host's MMU. +Disabling this forces all memory accesses to use Software MMU Emulation. + + + + + This option improves speed by reducing accuracy of fused-multiply-add instructions on CPUs without native FMA support. + + + + + This option improves the speed of some approximate floating-point functions by using less accurate native approximations. + + + + + This option improves the speed of 32 bits ASIMD floating-point functions by running with incorrect rounding modes. + + + + + This option improves speed by removing NaN checking. +Please note this also reduces accuracy of certain floating-point instructions. + + + + + This option improves speed by eliminating a safety check before every memory read/write in guest. +Disabling it may allow a game to read/write the emulator's memory. + + + + + This option improves speed by relying only on the semantics of cmpxchg to ensure safety of exclusive access instructions. +Please note this may result in deadlocks and other race conditions. + + + + + Switches between the available graphics APIs. +Vulkan is recommended in most cases. + + + + + This setting selects the GPU to use with the Vulkan backend. + + + + + The shader backend to use for the OpenGL renderer. +GLSL is the fastest in performance and the best in rendering accuracy. +GLASM is a deprecated NVIDIA-only backend that offers much better shader building performance at the cost of FPS and rendering accuracy. +SPIR-V compiles the fastest, but yields poor results on most GPU drivers. + + + + + Forces the game to render at a different resolution. +Higher resolutions require much more VRAM and bandwidth. +Options lower than 1X can cause rendering issues. + + + + + Determines how sharpened the image will look while using FSR’s dynamic contrast. + + + + + The anti-aliasing method to use. +SMAA offers the best quality. +FXAA has a lower performance impact and can produce a better and more stable picture under very low resolutions. + + + + + The method used to render the window in fullscreen. +Borderless offers the best compatibility with the on-screen keyboard that some games request for input. +Exclusive fullscreen may offer better performance and better Freesync/Gsync support. + + + + + Stretches the game to fit the specified aspect ratio. +Switch games only support 16:9, so custom game mods are required to get other ratios. +Also controls the aspect ratio of captured screenshots. + + + + + Allows saving shaders to storage for faster loading on following game boots. +Disabling it is only intended for debugging. + + + + + Optimize SPIRV output shader + + + + + Runs an additional optimization pass over generated SPIRV shaders. +Will increase time required for shader compilation. +May slightly improve performance. +This feature is experimental. + + + + + Uses an extra CPU thread for rendering. +This option should always remain enabled. + + + + + Specifies how videos should be decoded. +It can either use the CPU or the GPU for decoding, or perform no decoding at all (black screen on videos). +In most cases, GPU decoding provides the best performance. + + + + + ASTC Decoding Method: + + + + + This option controls how ASTC textures should be decoded. +CPU: Use the CPU for decoding, slowest but safest method. +GPU: Use the GPU's compute shaders to decode ASTC textures, recommended for most games and users. +CPU Asynchronously: Use the CPU to decode ASTC textures as they arrive. Completely eliminates ASTC decoding +stuttering at the cost of rendering issues while the texture is being decoded. + + + + + ASTC Recompression Method: + + + + + Almost all desktop and laptop dedicated GPUs lack support for ASTC textures, forcing the emulator to decompress to an intermediate format any card supports, RGBA8. +This option recompresses RGBA8 to either the BC1 or BC3 format, saving VRAM but negatively affecting image quality. + + + + + VRAM Usage Mode: + + + + + Selects whether the emulator should prefer to conserve memory or make maximum usage of available video memory for performance. +Aggressive mode may severely impact the performance of other applications such as recording software. + + + + + Skip CPU Inner Invalidation + + + + + Skips certain CPU-side cache invalidations during memory updates, reducing CPU usage and improving it's performance. This may cause glitches or crashes on some games. + + + + + Sync Memory Operations + + + + + Ensures data consistency between compute and memory operations. +This option should fix issues in some games, but may also reduce performance in some cases. +Unreal Engine 4 games often see the most significant changes thereof. + + + + + Slightly improves performance by moving presentation to a separate CPU thread. + + + + + Controls the quality of texture rendering at oblique angles. +It’s a light setting and safe to set at 16x on most GPUs. + + + + + GPU Accuracy: + + + + + Controls the GPU emulation accuracy. +Most games render fine with Normal, but High is still required for some. +Particles tend to only render correctly with High accuracy. +Extreme should only be used as a last resort. + + + + + DMA Accuracy: + + + + + Controls the DMA precision accuracy. Safe precision can fix issues in some games, but it can also impact performance in some cases. +If unsure, leave this on Default. + + + + + Enables asynchronous shader compilation, which may reduce shader stutter. +This feature is experimental. + + + + + Fast GPU Time (Hack) + + + + + Overclocks the emulated GPU to increase dynamic resolution and render distance. +Use 128 for maximal performance and 512 for maximal graphics fidelity. + + + + Enables GPU vendor-specific pipeline cache. This option can improve shader loading time significantly in cases where the Vulkan driver does not store pipeline cache files internally. - + Enable Compute Pipelines (Intel Vulkan Only) - + Enable compute pipelines, required by some games. This setting only exists for Intel proprietary drivers, and may crash if enabled. Compute pipelines are always enabled on all other drivers. - - Enable Reactive Flushing - Schakel Reactive Flushing In - - - + Uses reactive flushing instead of predictive flushing, allowing more accurate memory syncing. - + Sync to framerate of video playback - + Run the game at normal speed during video playback, even when the framerate is unlocked. - + Barrier feedback loops - + Improves rendering of transparency effects in specific games. - - RNG Seed - RNG Seed + + RAII + - + + A method of automatic resource management in Vulkan that ensures proper release of resources when they are no longer needed, but may cause crashes in bundled games. + + + + + Extended Dynamic State + + + + + Controls the number of features that can be used in Extended Dynamic State. +Higher numbers allow for more features and can increase performance, but may cause issues with some drivers and vendors. +The default value may vary depending on your system and hardware capabilities. +This value can be changed until stability and a better visual quality are achieved. + + + + + Provoking Vertex + + + + + Improves lighting and vertex handling in certain games. +Only Vulkan 1.0+ devices support this extension. + + + + + Descriptor Indexing + + + + + Improves texture & buffer handling and the Maxwell translation layer. +Some Vulkan 1.1+ and all 1.2+ devices support this extension. + + + + + Sample Shading + + + + + Allows the fragment shader to execute per sample in a multi-sampled fragment instead once per fragment. Improves graphics quality at the cost of some performance. +Higher values improve quality more but also reduce performance to a greater extent. + + + + Controls the seed of the random number generator. Mainly used for speedrunning purposes. - - Device Name - Apparaatnaam - - - + The name of the emulated Switch. - + Custom RTC Date: - + This option allows to change the emulated clock of the Switch. Can be used to manipulate time in games. - + Language: - - Note: this can be overridden when region setting is auto-select - Opmerking: dit kan worden overschreven wanneer de regio-instelling automatisch wordt geselecteerd - - - - Region: - Regio: - - - + The region of the emulated Switch. - - Time Zone: - Tijdzone: - - - + The time zone of the emulated Switch. - - Sound Output Mode: - Geluidsuitvoermodus: - - - + Console Mode: - + Selects if the console is emulated in Docked or Handheld mode. Games will change their resolution, details and supported controllers and depending on this setting. Setting to Handheld can help improve performance for low end systems. - - Prompt for user on game boot - Vraag aan gebruiker bij opstarten van het spel - - - - Pause emulation when in background - Emulatie onderbreken op de achtergrond - - - - Fast GPU Time (Hack) + + Ask to select a user profile on each boot, useful if multiple people use Eden on the same PC. - - Overclocks the emulated GPU to increase dynamic resolution and render distance. -Use 128 for maximal performance and 512 for maximal graphics fidelity. + + This setting pauses Eden when focusing other windows. - - Extended Dynamic State - - - - - Enables the VkExtendedDynamicState* extensions. -Higher dynamic states will generally improve performance, but may cause issues on certain games or devices. - - - - - Provoking Vertex - - - - - Improves lighting and vertex handling in certain games. -Only Vulkan 1.0+ devices support this extension. - - - - - Descriptor Indexing - - - - - Improves texture & buffer handling and the Maxwell translation layer. -Some Vulkan 1.1+ and all 1.2+ devices support this extension. - - - - - Ask to select a user profile on each boot, useful if multiple people use eden on the same PC. - - - - - This setting pauses eden when focusing other windows. - - - - + Confirm before stopping emulation - + This setting overrides game prompts asking to confirm stopping the game. Enabling it bypasses such prompts and directly exits the emulation. - - Hide mouse on inactivity - Verberg muis wanneer inactief - - - + This setting hides the mouse after 2.5s of inactivity. - + Disable controller applet - + Forcibly disables the use of the controller applet by guests. When a guest attempts to open the controller applet, it is immediately closed. - + Check for updates - + Whether or not to check for updates upon startup. - + Enable Gamemode - + Custom frontend - + Real applet - + Never - + On Load - + Always - - CPU - CPU - - - + GPU - + CPU Asynchronous - + Uncompressed (Best quality) - - BC1 (Low quality) - BC1 (Lage Kwaliteit) - - - - BC3 (Medium quality) - BC3 (Gemiddelde kwaliteit) - - - + Conservative - + Aggressive - - OpenGL - OpenGL - - - - Vulkan - Vulkan - - - - Null - Null - - - - GLSL - GLSL - - - - GLASM (Assembly Shaders, NVIDIA Only) - GLASM (Assembly Shaders, alleen NVIDIA) - - - + SPIR-V (Experimental, AMD/Mesa Only) - - Normal - Normaal + + Unsafe (fast) + - - High - Hoog + + Safe (stable) + - - Extreme - Extreme - - - - Auto - Auto - - - - Accurate - Accuraat - - - - Unsafe - Onveilig - - - - Paranoid (disables most optimizations) - Paranoid (schakelt de meeste optimalisaties uit) - - - + Dynarmic - + NCE - - Borderless Windowed - Randloos Venster - - - - Exclusive Fullscreen - Exclusief Volledig Scherm - - - - No Video Output - Geen Video-uitvoer - - - - CPU Video Decoding - CPU Videodecodering - - - - GPU Video Decoding (Default) - GPU Videodecodering (Standaard) - - - + 0.25X (180p/270p) [EXPERIMENTAL] - + 0.5X (360p/540p) [EXPERIMENTAL] - - 0.75X (540p/810p) [EXPERIMENTAL] - 0.75X (540p/810p) [EXPERIMENTEEL] - - - - 1X (720p/1080p) - 1X (720p/1080p) - - - - 1.5X (1080p/1620p) [EXPERIMENTAL] - 1.5X (1080p/1620p) [EXPERIMENTEEL] - - - - 2X (1440p/2160p) - 2X (1440p/2160p) - - - - 3X (2160p/3240p) - 3X (2160p/3240p) - - - - 4X (2880p/4320p) - 4X (2880p/4320p) - - - - 5X (3600p/5400p) - 5X (3600p/5400p) - - - - 6X (4320p/6480p) - 6X (4320p/6480p) - - - - 7X (5040p/7560p) - 7X (5040p/7560p) - - - - 8X (5760p/8640p) - 8X (5760p/8640p) - - - - Nearest Neighbor - Nearest Neighbor - - - - Bilinear - Bilinear - - - - Bicubic - Bicubic - - - - Gaussian - Gaussian - - - - ScaleForce - ScaleForce - - - - AMD FidelityFX™️ Super Resolution - AMD FidelityFX™️ Super Resolution - - - + Area - - None - Geen - - - - FXAA - FXAA - - - - SMAA - SMAA - - - - Default (16:9) - Standaart (16:9) - - - - Force 4:3 - Forceer 4:3 - - - - Force 21:9 - Forceer 21:9 - - - - Force 16:10 - Forceer 16:10 - - - - Stretch to Window - Uitrekken naar Venster - - - - Automatic - Automatisch - - - - Default - Standaard - - - + 2x 2x - + 4x 4x - + 8x 8x - + 16x 16x - + Japanese (日本語) Japans (日本語) - + American English Amerikaans-Engels - + French (français) Frans (Français) - + German (Deutsch) Duits (Deutsch) - + Italian (italiano) Italiaans (italiano) - + Spanish (español) Spaans (Español) - + Chinese Chinees - + Korean (한국어) Koreaans (한국어) - + Dutch (Nederlands) Nederlands (Nederlands) - + Portuguese (português) Portugees (português) - + Russian (Русский) Russisch (Русский) - + Taiwanese Taiwanese - + British English Brits-Engels - + Canadian French Canadees-Frans - + Latin American Spanish Latijns-Amerikaans Spaans - + Simplified Chinese Vereenvoudigd Chinees - + Traditional Chinese (正體中文) Traditioneel Chinees (正體中文) - + Brazilian Portuguese (português do Brasil) Braziliaans-Portugees (português do Brasil) - - + + Serbian (српски) + + + + + Japan Japan - + USA USA - + Europe Europa - + Australia Australië - + China China - + Korea Korea - + Taiwan Taiwan - + Auto (%1) Auto select time zone Auto (%1) - + Default (%1) Default time zone Standaard (%1) - + CET CET - + CST6CDT CST6CDT - + Cuba Cuba - + EET EET - + Egypt Egypte - + Eire Eire - + EST EST - + EST5EDT EST5EDT - + GB GB - + GB-Eire GB-Eire - + GMT GMT - + GMT+0 GMT+0 - + GMT-0 GMT-0 - + GMT0 GMT0 - + Greenwich Greenwich - + Hongkong Hongkong - + HST HST - + Iceland Ijsland - + Iran Iran - + Israel Israel - + Jamaica Jamaica - + Kwajalein Kwajalein - + Libya Libië - + MET MET - + MST MST - + MST7MDT MST7MDT - + Navajo Navajo - + NZ NZ - + NZ-CHAT NZ-CHAT - + Poland Polen - + Portugal Portugal - + PRC PRC - + PST8PDT PST8PDT - + ROC ROC - + ROK ROK - + Singapore Singapore - + Turkey Turkije - + UCT UCT - + Universal Universeel - + UTC UTC - + W-SU W-SU - + WET WET - + Zulu Zulu - + Mono Mono - + Stereo Stereo - + Surround Surround - + 4GB DRAM (Default) - + 6GB DRAM (Unsafe) - + 8GB DRAM - + 10GB DRAM (Unsafe) - + 12GB DRAM (Unsafe) - - Low (128) - - - - - Medium (256) - - - - - High (512) - - - - + Docked Docked - + Handheld Handheld - + Boost (1700MHz) - + Fast (2000MHz) - + Always ask (Default) - + Only if game specifies not to stop - + Never ask + + + Low (128) + + + + + Medium (256) + + + + + High (512) + + ConfigureApplets @@ -2259,27 +2356,27 @@ When a guest attempts to open the controller applet, it is immediately closed.Loggen - + Open Log Location Open Loglocatie - + Global Log Filter Globale Log Filter - + When checked, the max size of the log increases from 100 MB to 1 GB Indien aangevinkt, neemt de maximale grootte van de log toe van 100 MB tot 1 GB - + Enable Extended Logging** Schakel Uitgebreid Loggen** in - + Show Log in Console Toon Login-console @@ -2425,7 +2522,7 @@ When a guest attempts to open the controller applet, it is immediately closed. - **This will be reset automatically when eden closes. + **This will be reset automatically when Eden closes. @@ -2487,7 +2584,7 @@ When a guest attempts to open the controller applet, it is immediately closed.**Deze optie wordt automatisch gereset wanneer yuzu is gesloten. - + Web applet not compiled Webapplet niet gecompileerd @@ -2537,7 +2634,7 @@ When a guest attempts to open the controller applet, it is immediately closed. - eden Configuration + Eden Configuration @@ -2546,88 +2643,88 @@ When a guest attempts to open the controller applet, it is immediately closed.Sommige instellingen zijn alleen beschikbaar als een spel niet actief is. - + Applets - - + + Audio Audio - - + + CPU CPU - + Debug Debug - + Filesystem Bestandssysteem - - + + General Algemeen - - + + Graphics Graphics - + GraphicsAdvanced Geavanceerde Graphics - + GraphicsExtensions - + Hotkeys Sneltoetsen - - + + Controls Bediening - + Profiles Profielen - + Network Netwerk - - + + System Systeem - + Game List Spellijst - + Web Web @@ -2725,51 +2822,45 @@ When a guest attempts to open the controller applet, it is immediately closed. - - - Reset Metadata Cache Herstel Metagegevenscache - + Select Emulated NAND Directory... Selecteer Geëmuleerde NAND-map... - + Select Emulated SD Directory... Selecteer Geëmuleerde SD-map... - + Select Gamecard Path... Selecteer Spelkaartpad... - + Select Dump Directory... Selecteer Dump-map... - + Select Mod Load Directory... Selecteer Mod-laadmap... - The metadata cache is already empty. - De metagegevenscache is al leeg. + De metagegevenscache is al leeg. - The operation completed successfully. - De operatie is succesvol voltooid. + De operatie is succesvol voltooid. - The metadata cache couldn't be deleted. It might be in use or non-existent. - De metagegevenscache kon niet worden verwijderd. Het wordt mogelijk gebruikt of bestaat niet. + De metagegevenscache kon niet worden verwijderd. Het wordt mogelijk gebruikt of bestaat niet. @@ -2800,12 +2891,12 @@ When a guest attempts to open the controller applet, it is immediately closed.yuzu - - eden + + Eden - + This reset all settings and remove all per-game configurations. This will not delete game directories, profiles, or input profiles. Proceed? Hiermee worden alle instellingen gereset en alle configuraties per game verwijderd. Hiermee worden gamedirectory's, profielen of invoerprofielen niet verwijderd. Doorgaan? @@ -2838,33 +2929,33 @@ When a guest attempts to open the controller applet, it is immediately closed.Achtergrondkleur: - + % FSR sharpening percentage (e.g. 50%) % - + Off Uit - + VSync Off VSync Uit - + Recommended Aanbevolen - + On Aan - + VSync On VSync Aan @@ -2901,14 +2992,18 @@ When a guest attempts to open the controller applet, it is immediately closed. - Vulkan Extension Settings + Vulkan Extensions Settings - - While it's recommended to use state 3, some games may perform better on lower states. Setting to 0 (disabled) may also break games. -If your GPU is older (i.e. RX570/580 or older), it may not support these features. If this is the case, set the slider to 0 and uncheck all boxes. -These settings are experimental, and may cause black screens. If your games fail to boot or are stuck on a black screen, change these settings around. + + % + Sample Shading percentage (e.g. 50%) + % + + + + Extended Dynamic State is disabled on macOS due to MoltenVK compatibility issues that cause black screens. @@ -2940,75 +3035,75 @@ These settings are experimental, and may cause black screens. If your games fail Standaard Herstellen - + Action Actie - + Hotkey Sneltoets - + Controller Hotkey Controller-sneltoets - - - + + + Conflicting Key Sequence Ongeldige Toetsvolgorde - - + + The entered key sequence is already assigned to: %1 De ingevoerde toetsencombinatie is al in gebruik door: %1 - + [waiting] [aan het wachten] - + Invalid Ongeldig - + Invalid hotkey settings - + An error occurred. Please report this issue on github. - + Restore Default Standaard Herstellen - + Clear Wis - + Conflicting Button Sequence Conflicterende Knoppencombinatie - + The default button sequence is already assigned to: %1 De standaard knoppencombinatie is al toegewezen aan: %1 - + The default key sequence is already assigned to: %1 De ingevoerde toetsencombinatie is al in gebruik door: %1 @@ -3328,7 +3423,7 @@ These settings are experimental, and may cause black screens. If your games fail - Requires restarting eden + Requires restarting Eden @@ -3483,7 +3578,7 @@ These settings are experimental, and may cause black screens. If your games fail - + Left Stick Linker Stick @@ -3593,14 +3688,14 @@ These settings are experimental, and may cause black screens. If your games fail - + L L - + ZL ZL @@ -3619,7 +3714,7 @@ These settings are experimental, and may cause black screens. If your games fail - + Plus Plus @@ -3632,15 +3727,15 @@ These settings are experimental, and may cause black screens. If your games fail - - + + R R - + ZR ZR @@ -3685,7 +3780,7 @@ These settings are experimental, and may cause black screens. If your games fail - + Right Stick Rechter Stick @@ -3700,242 +3795,242 @@ These settings are experimental, and may cause black screens. If your games fail Configureer - - - - + + + + Clear Wis - - - - - + + + + + [not set] [niet ingesteld] - - - + + + Invert button Knop omkeren - - + + Toggle button Schakel-knop - + Turbo button Turbo-knop - - + + Invert axis Spiegel as - - - + + + Set threshold Stel drempel in - - + + Choose a value between 0% and 100% Kies een waarde tussen 0% en 100% - + Toggle axis Schakel as - + Set gyro threshold Stel gyro-drempel in - + Calibrate sensor Kalibreer sensor - + Map Analog Stick Analoge Stick Toewijzen - + After pressing OK, first move your joystick horizontally, and then vertically. To invert the axes, first move your joystick vertically, and then horizontally. Nadat je op OK hebt gedrukt, beweeg je de joystick eerst horizontaal en vervolgens verticaal. Om de assen om te keren, beweeg je de joystick eerst verticaal en vervolgens horizontaal. - + Center axis Midden as - - + + Deadzone: %1% Deadzone: %1% - - + + Modifier Range: %1% Modificatorbereik: %1% - - + + Pro Controller Pro Controller - + Dual Joycons Twee Joycons - + Left Joycon Linker Joycon - + Right Joycon Rechter Joycon - + Handheld Handheld - + GameCube Controller GameCube-controller - + Poke Ball Plus Poke Ball Plus - + NES Controller NES-controller - + SNES Controller SNES-controller - + N64 Controller N64-controller - + Sega Genesis Sega Genesis - + Start / Pause Begin / Onderbreken - + Z Z - + Control Stick Control Stick - + C-Stick C-Stick - + Shake! Schud! - + [waiting] [aan het wachten] - + New Profile Nieuw Profiel - + Enter a profile name: Voer een profielnaam in: - - + + Create Input Profile Maak Invoerprofiel - + The given profile name is not valid! De ingevoerde profielnaam is niet geldig! - + Failed to create the input profile "%1" Kon invoerprofiel "%1" niet maken - + Delete Input Profile Verwijder Invoerprofiel - + Failed to delete the input profile "%1" Kon invoerprofiel "%1" niet verwijderen - + Load Input Profile Laad Invoerprofiel - + Failed to load the input profile "%1" Kon invoerprofiel "%1" niet laden - + Save Input Profile Sla Invoerprofiel op - + Failed to save the input profile "%1" Kon invoerprofiel "%1" niet opslaan @@ -3992,7 +4087,7 @@ Om de assen om te keren, beweeg je de joystick eerst verticaal en vervolgens hor - + Configure Configureer @@ -4028,7 +4123,7 @@ Om de assen om te keren, beweeg je de joystick eerst verticaal en vervolgens hor - + Test Test @@ -4047,7 +4142,7 @@ Om de assen om te keren, beweeg je de joystick eerst verticaal en vervolgens hor <a href='https://yuzu-emu.org/wiki/using-a-controller-or-android-phone-for-motion-or-touch-input'><span style="text-decoration: underline; color:#039be5;">Meer Info</span></a> - + %1:%2 %1:%2 @@ -4056,77 +4151,77 @@ Om de assen om te keren, beweeg je de joystick eerst verticaal en vervolgens hor yuzu - + <a href='https://eden-emulator.github.io/wiki/using-a-controller-or-android-phone-for-motion-or-touch-input'><span style="text-decoration: underline; color:#039be5;">Learn More</span></a> - + Port number has invalid characters Poortnummer bevat ongeldige tekens - - - - - - - eden + + + + + + + Eden - + Port has to be in range 0 and 65353 Poort moet in bereik 0 en 65353 zijn - + IP address is not valid IP-adress is niet geldig - + This UDP server already exists Deze UDP-server bestaat al - + Unable to add more than 8 servers Kan niet meer dan 8 servers toevoegen - + Testing Testen - + Configuring Configureren - + Test Successful Test Succesvol - + Successfully received data from the server. De data van de server is succesvol ontvangen. - + Test Failed Test Gefaald - + 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 niet de juiste data van de server ontvangen.<br>Controleer of de server correct is ingesteld en of het adres en de poort correct zijn. - + UDP Test or calibration configuration is in progress.<br>Please wait for them to finish. UDP-test of kalibratieconfiguratie is bezig.<br>Wacht tot ze klaar zijn. @@ -4253,7 +4348,12 @@ De huidige waarden zijn %1% en %2%. Netwerkinterface - + + Enable Airplane Mode + + + + None Geen @@ -4311,52 +4411,52 @@ De huidige waarden zijn %1% en %2%. Sommige instellingen zijn alleen beschikbaar als een spel niet actief is. - + Add-Ons Add-Ons - + System Systeem - + CPU CPU - + Graphics Graphics - + Adv. Graphics Adv. Graphics - + GPU Extensions - + Audio Audio - + Input Profiles Invoerprofielen - + Linux - + Properties Eigenschappen @@ -4374,12 +4474,12 @@ De huidige waarden zijn %1% en %2%. Add-Ons - + Patch Name Patch-naam - + Version Versie @@ -4417,27 +4517,32 @@ De huidige waarden zijn %1% en %2%. Stel Afbeelding In - + + Select Avatar + + + + Add Toevoegen - + Rename Hernoem - + Remove Verwijder - + Profile management is available only when game is not running. Profielbeheer is alleen beschikbaar wanneer het spel niet bezig is. - + %1 %2 %1 is the profile username, %2 is the formatted UUID (e.g. 00112233-4455-6677-8899-AABBCCDDEEFF)) @@ -4445,100 +4550,189 @@ De huidige waarden zijn %1% en %2%. %2 - + Enter Username Voer Gebruikersnaam in - + Users Gebruikers - + Enter a username for the new user: Voer een gebruikersnaam in voor de nieuwe gebruiker: - + Enter a new username: Voer nieuwe gebruikersnaam in: - + + Error saving user image + + + + + Unable to save image to file + + + + Select User Image Selecteer Gebruikersfoto - - JPEG Images (*.jpg *.jpeg) - JPEG-foto's (*.jpg *.jpeg) + + Image Formats (*.jpg *.jpeg *.png *.bmp) + - + + No firmware available + + + + + Please install the firmware to use firmware avatars. + + + + + + Error loading archive + + + + + Archive is not available. Please install/reinstall firmware. + + + + + Archive does not contain romfs. It is probably corrupt. + + + + + Error extracting archive + + + + + Archive could not be extracted. It is probably corrupt. + + + + + Error finding image directory + + + + + Failed to find image directory in the archive. + + + + + No images found + + + + + No avatar images were found in the archive. + + + + JPEG Images (*.jpg *.jpeg) + JPEG-foto's (*.jpg *.jpeg) + + + Error deleting image Fout tijdens verwijderen afbeelding - + Error occurred attempting to overwrite previous image at: %1. Er is een fout opgetreden bij het overschrijven van de vorige afbeelding in: %1. - + Error deleting file Fout tijdens verwijderen bestand - + Unable to delete existing file: %1. Kan bestaand bestand niet verwijderen: %1. - + Error creating user image directory Fout tijdens het maken van de map met afbeeldingen van de gebruiker - + Unable to create directory %1 for storing user images. Fout tijdens het maken van map %1 om gebruikersafbeeldingen in te bewaren. - Error copying user image - Fout tijdens het kopiëren van de gebruiker afbeelding + Fout tijdens het kopiëren van de gebruiker afbeelding - Unable to copy image from %1 to %2 - Kan afbeelding niet kopiëren van %1 naar %2 + Kan afbeelding niet kopiëren van %1 naar %2 - Error resizing user image - Fout bij het aanpassen van grootte van gebruikersafbeelding + Fout bij het aanpassen van grootte van gebruikersafbeelding - Unable to resize image - Kon de grootte van de afbeelding niet wijzigen + Kon de grootte van de afbeelding niet wijzigen + + + + ConfigureProfileManagerAvatarDialog + + + Select + + + + + Cancel + + + + + Background Color + + + + + Select Firmware Avatar + ConfigureProfileManagerDeleteDialog - + Delete this user? All of the user's save data will be deleted. Deze gebruiker verwijderen? Alle opgeslagen gegevens van de gebruiker worden verwijderd. - + Confirm Delete Bevestig Verwijdering - + Name: %1 UUID: %2 Naam: %1 @@ -4591,7 +4785,7 @@ UUID: %2 - + Enable Inschakelen @@ -4602,7 +4796,7 @@ UUID: %2 - + Not connected Niet verbonden @@ -4612,63 +4806,63 @@ UUID: %2 Standaard Herstellen - + Clear Wis - + [not set] [niet ingesteld] - + Invert axis Spiegel as - - + + Deadzone: %1% Deadzone: %1% - + Error enabling ring input Fout tijdens inschakelen van ringinvoer - + Direct Joycon driver is not enabled Direct Joycon-driver niet ingeschakeld - + Configuring Configureren - + The current mapped device doesn't support the ring controller Het huidige apparaat ondersteunt de ringcontroller niet - + The current mapped device doesn't have a ring attached Het huidige apparaat heeft geen ring - + The current mapped device is not connected Het huidige toegewezen apparaat is niet aangesloten - + Unexpected driver result %1 Onverwacht driverresultaat %1 - + [waiting] [aan het wachten] @@ -4710,7 +4904,7 @@ UUID: %2 - <html><head/><body><p>Reads controller input from scripts in the same format as TAS-nx scripts.<br/>For a more detailed explanation, please consult the <a href="https://eden-emulator.github.io/help/feature/tas/"><span style=" text-decoration: underline; color:#039be5;">help page</span></a> on the eden website.</p></body></html> + <html><head/><body><p>Reads controller input from scripts in the same format as TAS-nx scripts.<br/>For a more detailed explanation, please consult the <a href="https://eden-emulator.github.io/help/feature/tas/"><span style=" text-decoration: underline; color:#039be5;">help page</span></a> on the Eden website.</p></body></html> @@ -4762,12 +4956,12 @@ UUID: %2 ConfigureTasDialog - + TAS Configuration TAS-configuratie - + Select TAS Load Directory... Selecteer TAS-laadmap... @@ -4877,7 +5071,7 @@ Versleep punten om de positie te veranderen, of dubbelklik op tabelcellen om waa - Warning: The settings in this page affect the inner workings of eden's emulated touchscreen. Changing them may result in undesirable behavior, such as the touchscreen partially or not working. You should only use this page if you know what you are doing. + Warning: The settings in this page affect the inner workings of Eden's emulated touchscreen. Changing them may result in undesirable behavior, such as the touchscreen partially or not working. You should only use this page if you know what you are doing. @@ -5197,6 +5391,16 @@ Versleep punten om de positie te veranderen, of dubbelklik op tabelcellen om waa Web Web + + + Eden Web Service + + + + + Generate + + yuzu Web Service yuzu-webservice @@ -5206,42 +5410,29 @@ Versleep punten om de positie te veranderen, of dubbelklik op tabelcellen om waa Door je gebruikersnaam en token op te geven, ga je ermee akkoord dat yuzu aanvullende gebruiksgegevens verzamelt, die informatie ter identificatie van de gebruiker kunnen bevatten. - - eden Web Service - - - - - By providing your username and token, you agree to allow eden to collect additional usage data, which may include user identifying information. - - - - Verify - Verifieer + Verifieer - Sign up - Registreer + Registreer - + Token: Token: - + Username: Gebruikersnaam: - What is my token? - Wat is mijn token? + Wat is mijn token? - + Web Service configuration can only be changed when a public room isn't being hosted. De configuratie van de webservice kan alleen worden gewijzigd als er geen openbare ruimte wordt gehost. @@ -5266,12 +5457,12 @@ Versleep punten om de positie te veranderen, of dubbelklik op tabelcellen om waa Regenereer - + Discord Presence Aanwezigheid in Discord - + Show Current Game in your Discord Status Toon huidige game in uw Discord-status @@ -5280,24 +5471,8 @@ Versleep punten om de positie te veranderen, of dubbelklik op tabelcellen om waa <a href='https://yuzu-emu.org/help/feature/telemetry/'><span style="text-decoration: underline; color:#039be5;">Meer info</span></a> - <a href='https://profile.yuzu-emu.org/'><span style="text-decoration: underline; color:#039be5;">Sign up</span></a> - <a href='https://profile.yuzu-emu.org/'><span style="text-decoration: underline; color:#039be5;">Registreer</span></a> - - - - <a href='https://evilperson1337.notion.site/Hosting-a-Room-Inside-of-Eden-20457c2edaf680108abac6215a79acdb'><span style="text-decoration: underline; color:#039be5;">What is my token?</span></a> - - - - - Warning - - - - - Verification is currently nonfunctional, instead generate a random 48-character string with only lowercase a-z. - + <a href='https://profile.yuzu-emu.org/'><span style="text-decoration: underline; color:#039be5;">Registreer</span></a> <a href='https://yuzu-emu.org/wiki/yuzu-web-service/'><span style="text-decoration: underline; color:#039be5;">What is my token?</span></a> @@ -5320,10 +5495,9 @@ Versleep punten om de positie te veranderen, of dubbelklik op tabelcellen om waa Token is niet geverifieerd. De verandering aan uw token zijn niet opgeslagen. - Unverified, please click Verify before saving configuration Tooltip - Niet geverifieerd, klik op Verifiëren voordat je de configuratie opslaat + Niet geverifieerd, klik op Verifiëren voordat je de configuratie opslaat Verifying... @@ -5347,20 +5521,67 @@ Versleep punten om de positie te veranderen, of dubbelklik op tabelcellen om waa 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 je internetverbinding werkt. + + + + All Good + Tooltip + + + + + Must be between 4-20 characters + Tooltip + + + + + Must be 48 characters, and lowercase a-z + Tooltip + + ControllerDialog - + Controller P1 Controller P1 - + &Controller P1 &Controller P1 + + DepsDialog + + + Eden Dependencies + + + + + <html><head/><body><p><span style=" font-size:28pt;">Eden Dependencies</span></p></body></html> + + + + + <html><head/><body><p>The projects that make Eden possible</p></body></html> + + + + + Dependency + + + + + Version + Versie + + DirectConnect @@ -5466,7 +5687,12 @@ Versleep punten om de positie te veranderen, of dubbelklik op tabelcellen om waa - Creating a room failed. Please retry. Restarting eden might be necessary. + Creating a room failed. Please retry. Restarting Eden might be necessary. + + + + + Version mismatch! Please update to the latest version of Eden. If the problem persists, contact the room host and ask them to update the server. @@ -5474,11 +5700,6 @@ Versleep punten om de positie te veranderen, of dubbelklik op tabelcellen om waa 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 je verbannen. Praat met de host om je ban op te heffen of probeer een andere kamer. - - - Version mismatch! Please update to the latest version of eden. If the problem persists, contact the room host and ask them to update the server. - - Incorrect password. @@ -5540,7 +5761,7 @@ Ga naar Configuratie -> Systeem -> Netwerk en maak een selectie.Telemetrie - + Broken Vulkan Installation Detected Beschadigde Vulkan-installatie gedetecteerd @@ -5549,106 +5770,105 @@ Ga naar Configuratie -> Systeem -> Netwerk en maak een selectie.Vulkan-initialisatie mislukt tijdens het opstarten.<br><br>Klik <a href='https://yuzu-emu.org/wiki/faq/#yuzu-starts-with-the-error-broken-vulkan-installation-detected'>hier voor instructies om het probleem op te lossen</a>. - + Running a game TRANSLATORS: This string is shown to the user to explain why yuzu needs to prevent the computer from sleeping Een spel uitvoeren - + Loading Web Applet... Web Applet Laden... - - + + Disable Web Applet Schakel Webapplet uit - + Disabling the web applet can lead to undefined behavior and should only be used with Super Mario 3D All-Stars. Are you sure you want to disable the web applet? (This can be re-enabled in the Debug settings.) Het uitschakelen van de webapplet kan leiden tot ongedefinieerd gedrag en mag alleen gebruikt worden met Super Mario 3D All-Stars. Weet je zeker dat je de webapplet wilt uitschakelen? (Deze kan opnieuw worden ingeschakeld in de Debug-instellingen). - + The amount of shaders currently being built Het aantal shaders dat momenteel wordt gebouwd - + The current selected resolution scaling multiplier. De huidige geselecteerde resolutieschaalmultiplier. - + Current emulation speed. Values higher or lower than 100% indicate emulation is running faster or slower than a Switch. Huidige emulatiesnelheid. Waarden hoger of lager dan 100% geven aan dat de emulatie sneller of langzamer werkt dan een Switch. - + How many frames per second the game is currently displaying. This will vary from game to game and scene to scene. Hoeveel beelden per seconde het spel momenteel weergeeft. Dit varieert van spel tot spel en van scène tot scène. - + Time taken to emulate a Switch frame, not counting framelimiting or v-sync. For full-speed emulation this should be at most 16.67 ms. Tijd die nodig is om een Switch-beeld te emuleren, beeldbeperking of v-sync niet meegerekend. Voor emulatie op volle snelheid mag dit maximaal 16,67 ms zijn. - + Unmute Dempen opheffen - + Mute Dempen - + Reset Volume Herstel Volume - + &Clear Recent Files &Wis Recente Bestanden - + &Continue &Doorgaan - + &Pause &Onderbreken - Warning Outdated Game Format - Waarschuwing Verouderd Spelformaat + Waarschuwing Verouderd Spelformaat You are using the deconstructed ROM directory format for this game, which is an outdated format that has been superseded by others such as NCA, NAX, XCI, or NSP. Deconstructed ROM directories lack icons, metadata, and update support.<br><br>For an explanation of the various Switch formats yuzu supports, <a href='https://yuzu-emu.org/wiki/overview-of-switch-game-formats'>check out our wiki</a>. This message will not be shown again. Je gebruikt het gedeconstrueerde ROM-mapformaat voor dit spel, wat een verouderd formaat is dat vervangen is door andere zoals NCA, NAX, XCI, of NSP. Deconstructed ROM-mappen missen iconen, metadata, en update-ondersteuning.<br><br>Voor een uitleg van de verschillende Switch-formaten die yuzu ondersteunt,<a href='https://yuzu-emu.org/wiki/overview-of-switch-game-formats'> bekijk onze wiki</a>. Dit bericht wordt niet meer getoond. - - + + Error while loading ROM! Fout tijdens het laden van een ROM! - + The ROM format is not supported. Het ROM-formaat wordt niet ondersteund. - + An error occurred initializing the video core. Er is een fout opgetreden tijdens het initialiseren van de videokern. @@ -5657,7 +5877,7 @@ Ga naar Configuratie -> Systeem -> Netwerk en maak een selectie.yuzu is een fout tegengekomen tijdens het uitvoeren van de videokern. Dit wordt meestal veroorzaakt door verouderde GPU-drivers, inclusief geïntegreerde. Zie het logboek voor meer details. Voor meer informatie over toegang tot het log, zie de volgende pagina: <a href='https://yuzu-emu.org/help/reference/log-files/'>Hoe upload je het logbestand</a>. - + Error while loading ROM! %1 %1 signifies a numeric error code. Fout tijdens het laden van ROM! %1 @@ -5668,473 +5888,397 @@ Ga naar Configuratie -> Systeem -> Netwerk en maak een selectie.%1<br>Volg de <a href='https://yuzu-emu.org/help/quickstart/'>yuzu snelstartgids</a> om je bestanden te redumpen.<br>Je kunt de yuzu-wiki</a>of de yuzu-Discord</a> raadplegen voor hulp. - + Vulkan initialization failed during boot.<br><br>Click <a href='https://eden-emulator.github.io/wiki/faq/#yuzu-starts-with-the-error-broken-vulkan-installation-detected'>here for instructions to fix the issue</a>. - - Game Updates Warning - - - - - The game you are trying to launch is known to have performance or booting issues when updates are applied. Please try increasing the memory layout to 6GB or 8GB if any issues occur.<br><br>Press "OK" to continue launching, or "Cancel" to cancel the launch. - - - - - Don't show again for this game - - - - - You are using the deconstructed ROM directory format for this game, which is an outdated format that has been superseded by others such as NCA, NAX, XCI, or NSP. Deconstructed ROM directories lack icons, metadata, and update support.<br><br>For an explanation of the various Switch formats eden supports, <a href='https://eden-emulator.github.io/wiki/overview-of-switch-game-formats'>check out our wiki</a>. This message will not be shown again. - - - - - eden has encountered an error while running the video core. This is usually caused by outdated GPU drivers, including integrated ones. Please see the log for more details. For more information on accessing the log, please see the following page: <a href='https://eden-emulator.github.io/help/reference/log-files/'>How to Upload the Log File</a>. - - - - - %1<br>Please redump your files or ask on Discord for help. - %1 signifies an error string. - - - - + An unknown error occurred. Please see the log for more details. Een onbekende fout heeft plaatsgevonden. Kijk in de log voor meer details. - + (64-bit) (64-bit) - + (32-bit) (32-bit) - + %1 %2 %1 is the title name. %2 indicates if the title is 64-bit or 32-bit %1 %2 - + Closing software... Software sluiten... - + Save Data Save Data - + Mod Data Mod Data - + Error Opening %1 Folder Fout tijdens het openen van %1 map - - + + Folder does not exist! Map bestaat niet! - Error Opening Transferable Shader Cache - Fout bij het openen van overdraagbare shader-cache + Fout bij het openen van overdraagbare shader-cache - Failed to create the shader cache directory for this title. - Kon de shader-cache-map voor dit spel niet aanmaken. + Kon de shader-cache-map voor dit spel niet aanmaken. - Error Removing Contents - Fout bij het verwijderen van de inhoud + Fout bij het verwijderen van de inhoud - Error Removing Update - Fout bij het verwijderen van de update + Fout bij het verwijderen van de update - Error Removing DLC - Fout bij het verwijderen van DLC + Fout bij het verwijderen van DLC - + Remove Installed Game Contents? Geïnstalleerde Spelinhoud Verwijderen? - + Remove Installed Game Update? Geïnstalleerde Spel-update Verwijderen? - + Remove Installed Game DLC? Geïnstalleerde Spel-DLC Verwijderen? - + Remove Entry Verwijder Invoer - - - - - - Successfully Removed - Met Succes Verwijderd + Met Succes Verwijderd - Successfully removed the installed base game. - Het geïnstalleerde basisspel is succesvol verwijderd. + Het geïnstalleerde basisspel is succesvol verwijderd. - The base game is not installed in the NAND and cannot be removed. - Het basisspel is niet geïnstalleerd in de NAND en kan niet worden verwijderd. + Het basisspel is niet geïnstalleerd in de NAND en kan niet worden verwijderd. - Successfully removed the installed update. - De geïnstalleerde update is succesvol verwijderd. + De geïnstalleerde update is succesvol verwijderd. - There is no update installed for this title. - Er is geen update geïnstalleerd voor dit spel. + Er is geen update geïnstalleerd voor dit spel. - There are no DLC installed for this title. - Er is geen DLC geïnstalleerd voor dit spel. + Er is geen DLC geïnstalleerd voor dit spel. - Successfully removed %1 installed DLC. - %1 geïnstalleerde DLC met succes verwijderd. + %1 geïnstalleerde DLC met succes verwijderd. - + Delete OpenGL Transferable Shader Cache? Overdraagbare OpenGL-shader-cache Verwijderen? - + Delete Vulkan Transferable Shader Cache? Overdraagbare Vulkan-shader-cache Verwijderen? - + Delete All Transferable Shader Caches? Alle Overdraagbare Shader-caches Verwijderen? - + Remove Custom Game Configuration? Aangepaste Spelconfiguratie Verwijderen? - + Remove Cache Storage? Verwijder Cache-opslag? - + Remove File Verwijder Bestand - + Remove Play Time Data - + Reset play time? - - Error Removing Transferable Shader Cache - Fout bij het verwijderen van Overdraagbare Shader-cache + Fout bij het verwijderen van Overdraagbare Shader-cache - - A shader cache for this title does not exist. - Er bestaat geen shader-cache voor dit spel. + Er bestaat geen shader-cache voor dit spel. - Successfully removed the transferable shader cache. - De overdraagbare shader-cache is verwijderd. + De overdraagbare shader-cache is verwijderd. - Failed to remove the transferable shader cache. - Kon de overdraagbare shader-cache niet verwijderen. + Kon de overdraagbare shader-cache niet verwijderen. - Error Removing Vulkan Driver Pipeline Cache - Fout bij het verwijderen van Pijplijn-cache van Vulkan-driver + Fout bij het verwijderen van Pijplijn-cache van Vulkan-driver - Failed to remove the driver pipeline cache. - Kon de pijplijn-cache van de driver niet verwijderen. + Kon de pijplijn-cache van de driver niet verwijderen. - - Error Removing Transferable Shader Caches - Fout bij het verwijderen van overdraagbare shader-caches + Fout bij het verwijderen van overdraagbare shader-caches - Successfully removed the transferable shader caches. - De overdraagbare shader-caches zijn verwijderd. + De overdraagbare shader-caches zijn verwijderd. - Failed to remove the transferable shader cache directory. - Kon de overdraagbare shader-cache-map niet verwijderen. + Kon de overdraagbare shader-cache-map niet verwijderen. - - Error Removing Custom Configuration - Fout bij het verwijderen van aangepaste configuratie + Fout bij het verwijderen van aangepaste configuratie - A custom configuration for this title does not exist. - Er bestaat geen aangepaste configuratie voor dit spel. + Er bestaat geen aangepaste configuratie voor dit spel. - Successfully removed the custom game configuration. - De aangepaste spelconfiguratie is verwijderd. + De aangepaste spelconfiguratie is verwijderd. - Failed to remove the custom game configuration. - Kon de aangepaste spelconfiguratie niet verwijderen. + Kon de aangepaste spelconfiguratie niet verwijderen. - - + + RomFS Extraction Failed! RomFS-extractie Mislukt! - + There was an error copying the RomFS files or the user cancelled the operation. Er is een fout opgetreden bij het kopiëren van de RomFS-bestanden of de gebruiker heeft de bewerking geannuleerd. - + Full Volledig - + Skeleton Skelet - + Select RomFS Dump Mode Selecteer RomFS-dumpmodus - + Please select the how you would like the RomFS dumped.<br>Full will copy all of the files into the new directory while <br>skeleton will only create the directory structure. Selecteer hoe je de RomFS gedumpt wilt hebben.<br>Volledig zal alle bestanden naar de nieuwe map kopiëren, terwijl <br>Skelet alleen de mapstructuur zal aanmaken. - + There is not enough free space at %1 to extract the RomFS. Please free up space or select a different dump directory at Emulation > Configure > System > Filesystem > Dump Root Er is niet genoeg vrije ruimte op %1 om de RomFS uit te pakken. Maak ruimte vrij of kies een andere dumpmap bij Emulatie > Configuratie > Systeem > Bestandssysteem > Dump Root. - + Extracting RomFS... RomFS uitpakken... - - - - - + + Cancel Annuleren - + RomFS Extraction Succeeded! RomFS-extractie Geslaagd! - - - + The operation completed successfully. De bewerking is succesvol voltooid. - Integrity verification couldn't be performed! - Integriteitsverificatie kon niet worden uitgevoerd! + Integriteitsverificatie kon niet worden uitgevoerd! - File contents were not checked for validity. - De inhoud van bestanden werd niet gecontroleerd op geldigheid. + De inhoud van bestanden werd niet gecontroleerd op geldigheid. - - Verifying integrity... - Integriteit verifiëren... + Integriteit verifiëren... - - Integrity verification succeeded! - Integriteitsverificatie geslaagd! + Integriteitsverificatie geslaagd! - - Integrity verification failed! - Integriteitsverificatie mislukt! + Integriteitsverificatie mislukt! - File contents may be corrupt. - Bestandsinhoud kan corrupt zijn. + Bestandsinhoud kan corrupt zijn. - - - - Create Shortcut - Maak Snelkoppeling + Maak Snelkoppeling - - Do you want to launch the game in fullscreen? - - - - Successfully created a shortcut to %1 - Succesvol een snelkoppeling naar %1 gemaakt + Succesvol een snelkoppeling naar %1 gemaakt - This will create a shortcut to the current AppImage. This may not work well if you update. Continue? - Dit maakt een snelkoppeling naar de huidige AppImage. Dit werkt mogelijk niet goed als je een update uitvoert. Doorgaan? + Dit maakt een snelkoppeling naar de huidige AppImage. Dit werkt mogelijk niet goed als je een update uitvoert. Doorgaan? - - Failed to create a shortcut to %1 + Create Icon + Maak Icoon + + + Cannot create icon file. Path "%1" does not exist and cannot be created. + Kan geen icoonbestand maken. Pad "%1" bestaat niet en kan niet worden aangemaakt. + + + + Warning: Outdated Game Format - - Create Icon - Maak Icoon + + You are using the deconstructed ROM directory format for this game, which is an outdated format that has been superseded by others such as NCA, NAX, XCI, or NSP. Deconstructed ROM directories lack icons, metadata, and update support.<br><br>For an explanation of the various Switch formats Eden supports, <a href='https://eden-emulator.github.io/wiki/overview-of-switch-game-formats'>check out our wiki</a>. This message will not be shown again. + - - Cannot create icon file. Path "%1" does not exist and cannot be created. - Kan geen icoonbestand maken. Pad "%1" bestaat niet en kan niet worden aangemaakt. + + Eden has encountered an error while running the video core. This is usually caused by outdated GPU drivers, including integrated ones. Please see the log for more details. For more information on accessing the log, please see the following page: <a href='https://yuzu-mirror.github.io/help/reference/log-files/'>How to Upload the Log File</a>. + - + + %1<br>Please redump your files or ask on Discord/Revolt for help. + %1 signifies an error string. + + + + Error Opening %1 Fout bij openen %1 - + Select Directory Selecteer Map - + Properties Eigenschappen - + The game properties could not be loaded. De speleigenschappen kunnen niet geladen worden. - + Switch Executable (%1);;All Files (*.*) %1 is an identifier for the Switch executable file extensions. Switch Executable (%1);;Alle Bestanden (*.*) - + Load File Laad Bestand - + Open Extracted ROM Directory Open Uitgepakte ROM-map - + Invalid Directory Selected Ongeldige Map Geselecteerd - + The directory you have selected does not contain a 'main' file. De map die je hebt geselecteerd bevat geen 'main'-bestand. - + Installable Switch File (*.nca *.nsp *.xci);;Nintendo Content Archive (*.nca);;Nintendo Submission Package (*.nsp);;NX Cartridge Image (*.xci) Installeerbaar Switch-bestand (*.nca *.nsp *.xci);;Nintendo Content Archive (*.nca);;Nintendo Submission Package (*.nsp);;NX Cartridge Image (*.xci) - + Install Files Installeer Bestanden - + %n file(s) remaining %n bestand(en) resterend @@ -6142,25 +6286,25 @@ Ga naar Configuratie -> Systeem -> Netwerk en maak een selectie. - + Installing file "%1"... Bestand "%1" Installeren... - - + + Install Results Installeerresultaten - + To avoid possible conflicts, we discourage users from installing base games to the NAND. Please, only use this feature to install updates and DLC. Om mogelijke conflicten te voorkomen, raden we gebruikers af om basisgames te installeren op de NAND. Gebruik deze functie alleen om updates en DLC te installeren. - + %n file(s) were newly installed @@ -6171,7 +6315,7 @@ Gebruik deze functie alleen om updates en DLC te installeren. - + %n file(s) were overwritten @@ -6182,7 +6326,7 @@ Gebruik deze functie alleen om updates en DLC te installeren. - + %n file(s) failed to install @@ -6193,491 +6337,451 @@ Gebruik deze functie alleen om updates en DLC te installeren. - + System Application Systeemapplicatie - + System Archive Systeemarchief - + System Application Update Systeemapplicatie-update - + Firmware Package (Type A) Filmware-pakket (Type A) - + Firmware Package (Type B) Filmware-pakket (Type B) - + Game Spel - + Game Update Spelupdate - + Game DLC Spel-DLC - + Delta Title Delta Titel - + Select NCA Install Type... Selecteer NCA-installatiesoort... - + Please select the type of title you would like to install this NCA as: (In most instances, the default 'Game' is fine.) Selecteer het type titel waarin je deze NCA wilt installeren: (In de meeste gevallen is de standaard "Spel" prima). - + Failed to Install Installatie Mislukt - + The title type you selected for the NCA is invalid. Het soort title dat je hebt geselecteerd voor de NCA is ongeldig. - + File not found Bestand niet gevonden - + File "%1" not found Bestand "%1" niet gevonden - + OK OK - - + + Hardware requirements not met Er is niet voldaan aan de hardwarevereisten - - + + Your system does not meet the recommended hardware requirements. Compatibility reporting has been disabled. Je systeem voldoet niet aan de aanbevolen hardwarevereisten. Compatibiliteitsrapportage is uitgeschakeld. - + Missing yuzu Account yuzu-account Ontbreekt - - In order to submit a game compatibility test case, you must link your eden account.<br><br/>To link your eden account, go to Emulation &gt; Configuration &gt; Web. + + In order to submit a game compatibility test case, you must set up your web token and username.<br><br/>To link your eden account, go to Emulation &gt; Configuration &gt; Web. - - Install decryption keys and restart eden before attempting to install firmware. + + Select Dumped Firmware ZIP - - Firmware installation cancelled, firmware may be in bad state, restart eden or re-install firmware. + + Zipped Archives (*.zip) - - Encryption keys are missing. + + Firmware cleanup failed - - Are you sure you want to close eden? + + Failed to clean up extracted firmware cache. +Check write permissions in the system temp directory and try again. +OS reported error: %1 - - - - eden + + Please install firmware to use the Album applet. - - The currently running application has requested eden to not exit. + + Please install firmware to use the Cabinet applet. + + + + + Please install firmware to use the Mii editor. + + + + + Please install firmware to use the Controller Menu. + + + + + Please install firmware to use the Home Menu. + + + + + Firmware Corrupted + + + + + Firmware Too New + + + + + +Continue anyways? + + + + + Don't show again + + + + + Please install firmware to use Starter. + + + + + Are you sure you want to close Eden? + + + + + + + Eden + + + + + The currently running application has requested Eden to not exit. Would you like to bypass this and exit anyway? + + + Encryption keys are missing. + + In order to submit a game compatibility test case, you must link your yuzu account.<br><br/>To link your yuzu account, go to Emulation &gt; Configuration &gt; Web. Om een spelcompatibiliteitstest in te dienen, moet je je yuzu-account koppelen.<br><br/>Om je yuzu-account te koppelen, ga naar Emulatie &gt; Configuratie &gt; Web. - + Error opening URL Fout bij het openen van URL - + Unable to open the URL "%1". Kan de URL "%1" niet openen. - + TAS Recording TAS-opname - + Overwrite file of player 1? Het bestand van speler 1 overschrijven? - + Invalid config detected Ongeldige configuratie gedetecteerd - + Handheld controller can't be used on docked mode. Pro controller will be selected. Handheld-controller kan niet gebruikt worden in docked-modus. Pro controller wordt geselecteerd. - - + + Amiibo Amiibo - - + + The current amiibo has been removed De huidige amiibo is verwijderd - + Error Fout - - + + The current game is not looking for amiibos Het huidige spel is niet op zoek naar amiibo's - + Amiibo File (%1);; All Files (*.*) Amiibo-bestand (%1);; Alle Bestanden (*.*) - + Load Amiibo Laad Amiibo - + Error loading Amiibo data Fout tijdens het laden van de Amiibo-gegevens - + The selected file is not a valid amiibo Het geselecteerde bestand is geen geldige amiibo - + The selected file is already on use Het geselecteerde bestand is al in gebruik - + An unknown error occurred Er is een onbekende fout opgetreden - - Verification failed for the following files: %1 - Verificatie mislukt voor de volgende bestanden: + Verificatie mislukt voor de volgende bestanden: %1 - + + Keys not installed - + + + Install decryption keys and restart Eden before attempting to install firmware. + + + + Select Dumped Firmware Source Location - - Installing Firmware... - - - - - - - - Firmware install failed - - - - - Unable to locate potential firmware NCA files - - - - - Failed to delete one or more firmware file. - - - - - One or more firmware files failed to copy into NAND. - - - - - Firmware integrity verification failed! - - - - - Select Dumped Keys Location - - - - - - - Decryption Keys install failed - - - - - prod.keys is a required decryption key file. - - - - - One or more keys failed to copy. - - - - - Decryption Keys install succeeded - - - - - Decryption Keys were successfully installed - - - - - Decryption Keys failed to initialize. Check that your dumping tools are up to date and re-dump keys. - - - - - - - - - - + + + + + + No firmware available - - Please install the firmware to use the Album applet. - - - - + Album Applet - + Album applet is not available. Please reinstall firmware. - - Please install the firmware to use the Cabinet applet. - - - - + Cabinet Applet - + Cabinet applet is not available. Please reinstall firmware. - - Please install the firmware to use the Mii editor. - - - - + Mii Edit Applet - + Mii editor is not available. Please reinstall firmware. - - Please install the firmware to use the Controller Menu. - - - - + Controller Applet Controller Applet - + Controller Menu is not available. Please reinstall firmware. - - Please install the firmware to use the Home Menu. - - - - - + Home Menu Applet - - + Home Menu is not available. Please reinstall firmware. - - Please install the firmware to use Starter. - - - - + Starter Applet - + Starter is not available. Please reinstall firmware. - - Please install firmware to use the home menu. - - - - + Capture Screenshot Leg Schermafbeelding Vast - + PNG Image (*.png) PNG-afbeelding (*.png) - + Update Available - + Update %1 for Eden is available. Would you like to download it? - + TAS state: Running %1/%2 TAS-status: %1/%2 In werking - + TAS state: Recording %1 TAS-status: %1 Aan het opnemen - + TAS state: Idle %1/%2 TAS-status: %1/%2 Inactief - + TAS State: Invalid TAS-status: Ongeldig - + &Stop Running &Stop Uitvoering - + &Start &Start - + Stop R&ecording Stop Opname - + R&ecord Opnemen - + Building: %n shader(s) Bouwen: %n shader(s) @@ -6685,18 +6789,18 @@ Would you like to download it? - + Scale: %1x %1 is the resolution scaling factor Schaal: %1x - + Speed: %1% / %2% Snelheid: %1% / %2% - + Speed: %1% Snelheid: %1% @@ -6705,54 +6809,54 @@ Would you like to download it? Spel: %1 FPS (Ontgrendeld) - + Game: %1 FPS Game: %1 FPS - + Frame: %1 ms Frame: %1 ms - + %1 %2 %1 %2 - - + + FSR FSR - + NO AA GEEN AA - + VOLUME: MUTE VOLUME: GEDEMPT - + VOLUME: %1% Volume percentage (e.g. 50%) VOLUME: %1% - + Derivation Components Missing Afleidingscomponenten ontbreken - + Select RomFS Dump Target Selecteer RomFS-dumpdoel - + Please select which RomFS you would like to dump. Selecteer welke RomFS je zou willen dumpen. @@ -6765,7 +6869,7 @@ Would you like to download it? yuzu - + Are you sure you want to stop the emulation? Any unsaved progress will be lost. Weet je zeker dat je de emulatie wilt stoppen? Alle niet opgeslagen voortgang zal verloren gaan. @@ -6778,102 +6882,102 @@ Would you like to bypass this and exit anyway? Wil je toch afsluiten? - + None Geen - + FXAA FXAA - + SMAA SMAA - + Nearest Nearest - + Bilinear Bilinear - + Bicubic Bicubic - + Gaussian Gaussian - + ScaleForce ScaleForce - + Area - + Docked Docked - + Handheld Handheld - + Normal Normaal - + High Hoog - + Extreme Extreme - + Vulkan Vulkan - + OpenGL OpenGL - + Null Null - + GLSL GLSL - + GLASM GLASM - + SPIRV SPIRV @@ -6881,13 +6985,13 @@ Wil je toch afsluiten? GRenderWindow - - + + OpenGL not available! OpenGL niet beschikbaar! - + OpenGL shared contexts are not supported. OpenGL gedeelde contexten worden niet ondersteund. @@ -6896,33 +7000,33 @@ Wil je toch afsluiten? yuzu is niet gecompileerd met OpenGL-ondersteuning. - - eden has not been compiled with OpenGL support. + + Eden has not been compiled with OpenGL support. - - + + Error while initializing OpenGL! Fout tijdens het initialiseren van OpenGL! - + Your GPU may not support OpenGL, or you do not have the latest graphics driver. Je GPU ondersteunt mogelijk geen OpenGL, of je hebt niet de laatste grafische stuurprogramma. - + Error while initializing OpenGL 4.6! Fout tijdens het initialiseren van OpenGL 4.6! - + Your GPU may not support OpenGL 4.6, or you do not have the latest graphics driver.<br><br>GL Renderer:<br>%1 Je GPU ondersteunt mogelijk OpenGL 4.6 niet, of je hebt niet het laatste grafische stuurprogramma.<br><br>GL Renderer:<br>%1 - + Your GPU may not support one or more required OpenGL extensions. Please ensure you have the latest graphics driver.<br><br>GL Renderer:<br>%1<br><br>Unsupported extensions:<br>%2 Je GPU ondersteunt mogelijk een of meer vereiste OpenGL-extensies niet. Zorg ervoor dat je het laatste grafische stuurprogramma hebt.<br><br>GL Renderer:<br>%1<br><br>Ondersteunde extensies:<br>%2 @@ -6930,128 +7034,128 @@ Wil je toch afsluiten? GameList - + Favorite Favoriet - + Start Game Start Spel - + Start Game without Custom Configuration Start Spel zonder Aangepaste Configuratie - + Open Save Data Location Open Locatie van Save-data - + Open Mod Data Location Open Locatie van Mod-data - + Open Transferable Pipeline Cache Open Overdraagbare Pijplijn-cache - + Remove Verwijder - + Remove Installed Update Verwijder Geïnstalleerde Update - + Remove All Installed DLC Verwijder Alle Geïnstalleerde DLC's - + Remove Custom Configuration Verwijder Aangepaste Configuraties - + Remove Play Time Data - + Remove Cache Storage Verwijder Cache-opslag - + Remove OpenGL Pipeline Cache Verwijder OpenGL-pijplijn-cache - + Remove Vulkan Pipeline Cache Verwijder Vulkan-pijplijn-cache - + Remove All Pipeline Caches Verwijder Alle Pijplijn-caches - + Remove All Installed Contents Verwijder Alle Geïnstalleerde Inhoud - + Dump RomFS Dump RomFS - + Dump RomFS to SDMC Dump RomFS naar SDMC - + Verify Integrity Verifieer Integriteit - + Copy Title ID to Clipboard Kopiëer Titel-ID naar Klembord - + Navigate to GameDB entry Navigeer naar GameDB-invoer - + Create Shortcut Maak Snelkoppeling - + Add to Desktop Toevoegen aan Bureaublad - + Add to Applications Menu Toevoegen aan menu Toepassingen - + Configure Game @@ -7060,62 +7164,62 @@ Wil je toch afsluiten? Eigenschappen - + Scan Subfolders Scan Submappen - + Remove Game Directory Verwijder Spelmap - + ▲ Move Up ▲ Omhoog - + ▼ Move Down ▼ Omlaag - + Open Directory Location Open Maplocatie - + Clear Verwijder - + Name Naam - + Compatibility Compatibiliteit - + Add-ons Add-ons - + File type Bestandssoort - + Size Grootte - + Play time @@ -7123,62 +7227,62 @@ Wil je toch afsluiten? GameListItemCompat - + Ingame In het spel - + Game starts, but crashes or major glitches prevent it from being completed. Het spel start, maar crashes of grote glitches voorkomen dat het wordt voltooid. - + Perfect Perfect - + Game can be played without issues. Het spel kan zonder problemen gespeeld worden. - + Playable Speelbaar - + Game functions with minor graphical or audio glitches and is playable from start to finish. Het spel werkt met kleine grafische of audiofouten en is speelbaar van begin tot eind. - + Intro/Menu Intro/Menu - + Game loads, but is unable to progress past the Start Screen. Het spel wordt geladen, maar komt niet verder dan het startscherm. - + Won't Boot Start niet op - + The game crashes when attempting to startup. Het spel loopt vast bij het opstarten. - + Not Tested Niet Getest - + The game has not yet been tested. Het spel is nog niet getest. @@ -7186,7 +7290,7 @@ Wil je toch afsluiten? GameListPlaceholder - + Double-click to add a new folder to the game list Dubbel-klik om een ​​nieuwe map toe te voegen aan de spellijst @@ -7194,7 +7298,7 @@ Wil je toch afsluiten? GameListSearchField - + %1 of %n result(s) %1 van %n resultaat(en) @@ -7202,12 +7306,12 @@ Wil je toch afsluiten? - + Filter: Filter: - + Enter pattern to filter Voer patroon in om te filteren @@ -7289,7 +7393,7 @@ Wil je toch afsluiten? - Failed to announce the room to the public lobby. In order to host a room publicly, you must have a valid eden account configured in Emulation -> Configure -> Web. If you do not want to publish a room in the public lobby, then select Unlisted instead. + Failed to announce the room to the public lobby. In order to host a room publicly, you must have a valid Eden 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: @@ -7303,190 +7407,190 @@ Debug-bericht: Hotkeys - + Audio Mute/Unmute Audio Dempen/Dempen Opheffen - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Main Window Hoofdvenster - + Audio Volume Down Audiovolume Omlaag - + Audio Volume Up Audiovolume Omhoog - + Capture Screenshot Leg Schermafbeelding Vast - + Change Adapting Filter Wijzig Aanpassingsfilter - + Change Docked Mode Wijzig Docked-modus - + Change GPU Accuracy Wijzig GPU-nauwkeurigheid - + Configure Configureer - + Configure Current Game - + Continue/Pause Emulation Emulatie Doorgaan/Onderbreken - + Exit Fullscreen Volledig Scherm Afsluiten + + + Exit Eden + + Exit yuzu yuzu afsluiten - - Exit eden - - - - + Fullscreen Volledig Scherm - + Load File Laad Bestand - + Load/Remove Amiibo Laad/Verwijder Amiibo - + Multiplayer Browse Public Game Lobby - + Multiplayer Create Room - + Multiplayer Direct Connect to Room - + Multiplayer Leave Room - + Multiplayer Show Current Room - + Restart Emulation Herstart Emulatie - + Stop Emulation Stop Emulatie - + TAS Record TAS Opname - + TAS Reset TAS Reset - + TAS Start/Stop TAS Start/Stop - + Toggle Filter Bar Schakel Filterbalk - + Toggle Framerate Limit Schakel Frameratelimiet - + Toggle Mouse Panning Schakel Muispanning - + Toggle Renderdoc Capture - + Toggle Status Bar Schakel Statusbalk @@ -7494,22 +7598,22 @@ Debug-bericht: InstallDialog - + Please confirm these are the files you wish to install. Bevestig dat dit de bestanden zijn die je wilt installeren. - + Installing an Update or DLC will overwrite the previously installed one. Het installeren van een Update of DLC overschrijft de eerder geïnstalleerde. - + Install Installeer - + Install Files to NAND Installeer Bestanden naar NAND @@ -7517,7 +7621,7 @@ Debug-bericht: LimitableInputDialog - + The text can't contain any of the following characters: %1 De tekst kan geen van de volgende tekens bevatten: @@ -7664,152 +7768,207 @@ Debug-bericht: &Recente Bestanden - + + Open &Eden Folders + + + + &Emulation &Emulatie - + &View &Weergeven - + &Reset Window Size &Herstel Venstergrootte - + &Debugging &Debuggen - + Reset Window Size to &720p Herstel Venstergrootte naar &720p - + Reset Window Size to 720p Herstel Venstergrootte naar 720p - + Reset Window Size to &900p Herstel Venstergrootte naar &900p - + Reset Window Size to 900p Herstel Venstergrootte naar 900p - + Reset Window Size to &1080p Herstel Venstergrootte naar &1080p - + Reset Window Size to 1080p Herstel Venstergrootte naar 1080p - + &Multiplayer &Multiplayer - + &Tools &Tools - + &Amiibo - + &TAS &TAS - + &Create Home Menu Shortcut - + &Help &Help - + &Install Files to NAND... &Installeer Bestanden naar NAND... - + L&oad File... L&aad Bestand... - + Load &Folder... Laad &Map... - + E&xit A&fsluiten - + &Pause &Onderbreken - + &Stop &Stop - + &Verify Installed Contents - - &About eden + + &Root Data Folder - - Open &eden Folder + + &NAND Folder - + + &SDMC Folder + + + + + &Mod Folder + + + + + &Log Folder + + + + + From Folder + + + + + From ZIP + + + + + &X + + + + + X (Twitter) + + + + + &Revolt + + + + + Revolt + + + + + &Eden Dependencies + + + + Open Home Menu - + &Discord - + Open &Setup - + &Desktop - + &Application Menu @@ -7818,97 +7977,97 @@ Debug-bericht: &Over yuzu - + Single &Window Mode Modus Enkel Venster - + Con&figure... Con&figureer... - + Ctrl+, - + Display D&ock Widget Headers Toon Dock Widget Kopteksten - + Show &Filter Bar Toon &Filterbalk - + Show &Status Bar Toon &Statusbalk - + Show Status Bar Toon Statusbalk - + &Browse Public Game Lobby &Bladeren door Openbare Spellobby - + &Create Room &Maak Kamer - + &Leave Room &Verlaat Kamer - + &Direct Connect to Room &Directe Verbinding met Kamer - + &Show Current Room &Toon Huidige Kamer - + F&ullscreen Volledig Scherm - + &Restart &Herstart - + Load/Remove &Amiibo... Laad/Verwijder &Amiibo... - + &Report Compatibility &Rapporteer Compatibiliteit - + Open &Mods Page Open &Mod-pagina - + Open &Quickstart Guide Open &Snelstartgids - + &FAQ &FAQ @@ -7917,77 +8076,82 @@ Debug-bericht: Open &yuzu-map - + &Capture Screenshot &Leg Schermafbeelding Vast - + Open &Album - + &Set Nickname and Owner - + &Delete Game Data - + &Restore Amiibo - + &Format Amiibo - + Open &Mii Editor - + &Configure TAS... &Configureer TAS... - + Configure C&urrent Game... Configureer Huidig Spel... - + &Start &Start - + &Reset &Herstel - + R&ecord Opnemen - + Open &Controller Menu - + Install Firmware - + + &About Eden + + + + Install Decryption Keys @@ -7995,26 +8159,36 @@ Debug-bericht: MicroProfileDialog - &MicroProfile - &MicroProfile + &MicroProfile MigrationWorker - + Data was migrated successfully. - + Linking the old directory failed. You may need to re-run with administrative privileges on Windows. OS gave error: %1 - + + + +Note that your configuration and data will be shared with %1. +If this is not desirable, delete the following files: +%2 +%3 +%4 + + + + If you wish to clean up the files which were left in the old data location, you can do so by deleting the following directory: @@ -8074,37 +8248,37 @@ If you wish to clean up the files which were left in the old data location, you MultiplayerState - + Current connection status Huidige verbindingsstatus - + Not Connected. Click here to find a room! Niet Verbonden. Klik hier om een kamer te vinden! - + Not Connected Niet Verbonden - + Connected Verbonden - + New Messages Received Nieuwe Berichten Ontvangen - + 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. @@ -8296,56 +8470,56 @@ p, li { white-space: pre-wrap; } Geen spel aan het spelen - + Installed SD Titles Geïnstalleerde SD-titels - + Installed NAND Titles Geïnstalleerde NAND-titels - + System Titles Systeemtitels - + Add New Game Directory Voeg Nieuwe Spelmap Toe - + Favorites Favorieten - - + + Shift Shift - - + + Ctrl Ctrl - - + + Alt Alt - - - - + + + + [not set] [niet aangegeven] @@ -8356,14 +8530,14 @@ p, li { white-space: pre-wrap; } Hat %1 %2 - - - - - - - - + + + + + + + + Axis %1%2 Axis %1%2 @@ -8374,357 +8548,357 @@ p, li { white-space: pre-wrap; } Knop %1 - - - - - - + + + + + + [unknown] [onbekend] - - - + + + Left Links - - - + + + Right Rechts - - - + + + Down Omlaag - - - + + + Up Omhoog - - + + Z Z - - + + R R - - + + L L - - + + A A - - + + B B - - + + X X - - + + Y Y - - + + Start Start - - + + L1 L1 - - + + L2 L2 - - + + L3 L3 - - + + R1 R1 - - + + R2 R2 - - + + R3 R3 - - + + Circle Cirkel - - + + Cross Kruis - - + + Square Vierkant - - + + Triangle Driehoek - - + + Share Deel - - + + Options Opties - - + + [undefined] [ongedefinieerd] - + %1%2 %1%2 - - + + [invalid] [ongeldig] - - + + %1%2Hat %3 %1%2Hat %3 - - - + + + %1%2Axis %3 %1%2As %3 - - + + %1%2Axis %3,%4,%5 %1%2As %3,%4,%5 - - + + %1%2Motion %3 %1%2Beweging %3 - - + + %1%2Button %3 %1%2Knop %3 - - + + [unused] [ongebruikt] - + ZR ZR - + ZL ZL - + SR SR - + SL SL - + Stick L Stick L - + Stick R Stick R - + Plus Plus - + Minus Min - - + + Home Home - + Capture Vastleggen - + Touch Touch - + Wheel Indicates the mouse wheel Wiel - + Backward Achteruit - + Forward Vooruit - + Task Taak - + Extra Extra - + %1%2%3%4 %1%2%3%4 - - + + %1%2%3Hat %4 %1%2%3Hat %4 - - + + %1%2%3Axis %4 %1%2%3As %4 - - + + %1%2%3Button %4 %1%2%3Knop %4 - - + + Migration - + - - + + No - + You can manually re-trigger this prompt by deleting the new config directory: %1 - + Migrating - + Migrating, this may take a while... @@ -8842,6 +9016,300 @@ p, li { white-space: pre-wrap; } Wil je deze amiibo herstellen? + + QtCommon::Content + + + Installing Firmware... + + + + + + + Cancel + + + + + Firmware integrity verification failed! + + + + + + Verification failed for the following files: + +%1 + Verificatie mislukt voor de volgende bestanden: + +%1 + + + + + Verifying integrity... + Integriteit verifiëren... + + + + + Integrity verification succeeded! + Integriteitsverificatie geslaagd! + + + + + The operation completed successfully. + + + + + + Integrity verification failed! + Integriteitsverificatie mislukt! + + + + File contents may be corrupt or missing. + + + + + Integrity verification couldn't be performed + + + + + Firmware installation cancelled, firmware may be in a bad state or corrupted. File contents could not be checked for validity. + + + + + Select Dumped Keys Location + + + + + Decryption Keys install succeeded + + + + + Decryption Keys were successfully installed + + + + + Decryption Keys install failed + + + + + QtCommon::Game + + + Error Removing Contents + Fout bij het verwijderen van de inhoud + + + + Error Removing Update + Fout bij het verwijderen van de update + + + + Error Removing DLC + Fout bij het verwijderen van DLC + + + + The base game is not installed in the NAND and cannot be removed. + Het basisspel is niet geïnstalleerd in de NAND en kan niet worden verwijderd. + + + + There is no update installed for this title. + Er is geen update geïnstalleerd voor dit spel. + + + + There are no DLCs installed for this title. + + + + + + + + Successfully Removed + Met Succes Verwijderd + + + + Successfully removed %1 installed DLC. + %1 geïnstalleerde DLC met succes verwijderd. + + + + + Error Removing Transferable Shader Cache + Fout bij het verwijderen van Overdraagbare Shader-cache + + + + + A shader cache for this title does not exist. + Er bestaat geen shader-cache voor dit spel. + + + + Successfully removed the transferable shader cache. + De overdraagbare shader-cache is verwijderd. + + + + Failed to remove the transferable shader cache. + Kon de overdraagbare shader-cache niet verwijderen. + + + + Error Removing Vulkan Driver Pipeline Cache + Fout bij het verwijderen van Pijplijn-cache van Vulkan-driver + + + + Failed to remove the driver pipeline cache. + Kon de pijplijn-cache van de driver niet verwijderen. + + + + + Error Removing Transferable Shader Caches + Fout bij het verwijderen van overdraagbare shader-caches + + + + Successfully removed the transferable shader caches. + De overdraagbare shader-caches zijn verwijderd. + + + + Failed to remove the transferable shader cache directory. + Kon de overdraagbare shader-cache-map niet verwijderen. + + + + + Error Removing Custom Configuration + Fout bij het verwijderen van aangepaste configuratie + + + + A custom configuration for this title does not exist. + Er bestaat geen aangepaste configuratie voor dit spel. + + + + Successfully removed the custom game configuration. + De aangepaste spelconfiguratie is verwijderd. + + + + Failed to remove the custom game configuration. + Kon de aangepaste spelconfiguratie niet verwijderen. + + + + Reset Metadata Cache + Herstel Metagegevenscache + + + + The metadata cache is already empty. + De metagegevenscache is al leeg. + + + + The operation completed successfully. + + + + + The metadata cache couldn't be deleted. It might be in use or non-existent. + De metagegevenscache kon niet worden verwijderd. Het wordt mogelijk gebruikt of bestaat niet. + + + + Create Shortcut + Maak Snelkoppeling + + + + Do you want to launch the game in fullscreen? + + + + + Shortcut Created + + + + + Successfully created a shortcut to %1 + Succesvol een snelkoppeling naar %1 gemaakt + + + + Shortcut may be Volatile! + + + + + This will create a shortcut to the current AppImage. This may not work well if you update. Continue? + Dit maakt een snelkoppeling naar de huidige AppImage. Dit werkt mogelijk niet goed als je een update uitvoert. Doorgaan? + + + + Failed to Create Shortcut + + + + + Failed to create a shortcut to %1 + + + + + Create Icon + Maak Icoon + + + + Cannot create icon file. Path "%1" does not exist and cannot be created. + Kan geen icoonbestand maken. Pad "%1" bestaat niet en kan niet worden aangemaakt. + + + + No firmware available + + + + + Please install firmware to use the home menu. + + + + + Home Menu Applet + + + + + Home Menu is not available. Please reinstall firmware. + + + QtControllerSelectorDialog @@ -9137,7 +9605,7 @@ Probeer het opnieuw of neem contact op met de software-ontwikkelaar. QtProfileSelectionDialog - + %1 %2 %1 is the profile username, %2 is the formatted UUID (e.g. 00112233-4455-6677-8899-AABBCCDDEEFF)) @@ -9145,7 +9613,7 @@ Probeer het opnieuw of neem contact op met de software-ontwikkelaar. - + Users Gebruikers @@ -9269,7 +9737,7 @@ p, li { white-space: pre-wrap; } WaitTreeCallstack - + Call stack Call stack @@ -9277,12 +9745,12 @@ p, li { white-space: pre-wrap; } WaitTreeSynchronizationObject - + [%1] %2 [%1] %2 - + waited by no thread wachtend door geen thread @@ -9290,102 +9758,102 @@ p, li { white-space: pre-wrap; } WaitTreeThread - + runnable uitvoerbaar - + paused onderbroken - + sleeping slapen - + waiting for IPC reply wachten op IPC-antwoord - + waiting for objects wachten op objecten - + waiting for condition variable wachten op conditie variabele - + waiting for address arbiter wachten op adres arbiter - + waiting for suspend resume wachtend op hervatten onderbreking - + waiting aan het wachten - + initialized geïnitialiseerd - + terminated beëindigd - + unknown onbekend - + PC = 0x%1 LR = 0x%2 PC = 0x%1 LR = 0x%2 - + ideal ideaal - + core %1 kern %1 - + processor = %1 processor = %1 - + affinity mask = %1 affiniteit masker = %1 - + thread id = %1 thread-id = %1 - + priority = %1(current) / %2(normal) prioriteit = %1(huidige) / %2(normaal) - + last running ticks = %1 laatste lopende ticks = %1 @@ -9393,7 +9861,7 @@ p, li { white-space: pre-wrap; } WaitTreeThreadList - + waited by thread wachtend door thread @@ -9401,7 +9869,7 @@ p, li { white-space: pre-wrap; } WaitTreeWidget - + &Wait Tree &Wait Tree diff --git a/dist/languages/pl.ts b/dist/languages/pl.ts index 07232eed27..5540e88048 100644 --- a/dist/languages/pl.ts +++ b/dist/languages/pl.ts @@ -13,12 +13,12 @@ - About eden + About Eden - <html><head/><body><p><span style=" font-size:28pt;">eden</span></p></body></html> + <html><head/><body><p><span style=" font-size:28pt;">Eden</span></p></body></html> @@ -34,8 +34,8 @@ p, li { white-space: pre-wrap; } hr { height: 1px; border-width: 0; } li.unchecked::marker { content: "\2610"; } li.checked::marker { content: "\2612"; } -</style></head><body style=" font-family:'Adwaita Sans'; font-size:11pt; font-weight:400; font-style:normal;"> -<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;">eden is an experimental open-source emulator for the Nintendo Switch licensed under GPLv3.0+ which is based on the yuzu emulator which ended development back in March 2024. <br /><br />This software should not be used to play games you have not legally obtained.</span></p></body></html> +</style></head><body style=" font-family:'Noto Sans'; font-size:9pt; font-weight:400; font-style:normal;"> +<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;">Eden is an experimental open-source emulator for the Nintendo Switch licensed under GPLv3.0+ which is based on the yuzu emulator which ended development back in March 2024. <br /><br />This software should not be used to play games you have not legally obtained.</span></p></body></html> @@ -72,32 +72,32 @@ p, li { white-space: pre-wrap; } CalibrationConfigurationDialog - + Communicating with the server... Łączenie z serwerem... - + Cancel Anuluj - + Touch the top left corner <br>of your touchpad. Dotknij lewy górny róg <br> swojego touchpada - + Now touch the bottom right corner <br>of your touchpad. Dotknij prawy dolny róg <br> swojego touchpada - + Configuration completed! Konfiguracja zakończona! - + OK OK @@ -397,502 +397,184 @@ To zbanuje jego/jej nick na forum, oraz jego/jej adres IP. ConfigurationShared - + % % - - Amiibo editor - - - - - Controller configuration - - - - - Data erase - - - - + Error Błąd - - Net connect - - - - - Player select - - - - + Software keyboard Klawiatura programowa - - Mii Edit - - - - - Online web - - - - - Shop - - - - - Photo viewer - - - - - Offline web - - - - - Login share - - - - - Wifi web auth - - - - - My page - - - - + Output Engine: Silnik wyjściowy - + Output Device: Urządzenie wyjściowe: - + Input Device: Urządzenie wejściowe: - + Mute audio Wycisz dźwięk - + Volume: Głośność: - + Mute audio when in background Wyciszaj audio gdy yuzu działa w tle - + Multicore CPU Emulation Emulacja CPU Wielordzeniowa - - This option increases CPU emulation thread use from 1 to the Switch’s maximum of 4. -This is mainly a debug option and shouldn’t be disabled. - - - - - Memory Layout - - - - - Increases the amount of emulated RAM from the stock 4GB of the retail Switch to the developer kit's 8/6GB. -It’s doesn’t improve stability or performance and is intended to let big texture mods fit in emulated RAM. -Enabling it will increase memory use. It is not recommended to enable unless a specific game with a texture mod needs it. - - - - + Limit Speed Percent Procent limitu prędkości - - Controls the game's maximum rendering speed, but it’s up to each game if it runs faster or not. -200% for a 30 FPS game is 60 FPS, and for a 60 FPS game it will be 120 FPS. -Disabling it means unlocking the framerate to the maximum your PC can reach. - - - - - Synchronize Core Speed - - - - - Synchronizes CPU core speed with the game's maximum rendering speed to boost FPS without affecting game speed (animations, physics, etc.). -Compatibility varies by game; many (especially older ones) may not respond well. -Can help reduce stuttering at lower framerates. - - - - + Accuracy: Precyzja: - - This setting controls the accuracy of the emulated CPU. -Don't change this unless you know what you are doing. - - - - - - Backend: - - - - - Fast CPU Time - - - - - Overclocks the emulated CPU to remove some FPS limiters. Weaker CPUs may see reduced performance, and certain games may behave improperly. -Use Boost (1700MHz) to run at the Switch's highest native clock, or Fast (2000MHz) to run at 2x clock. - - - - + Unfuse FMA (improve performance on CPUs without FMA) Unfuse FMA (zwiększ wydajność na procesorach bez FMA) - - This option improves speed by reducing accuracy of fused-multiply-add instructions on CPUs without native FMA support. - - - - + Faster FRSQRTE and FRECPE Szybsze FRSQRTE i FRECPE - - This option improves the speed of some approximate floating-point functions by using less accurate native approximations. - - - - + Faster ASIMD instructions (32 bits only) Szybsze instrukcje ASIMD (Tylko 32-bit) - - This option improves the speed of 32 bits ASIMD floating-point functions by running with incorrect rounding modes. - - - - + Inaccurate NaN handling Niedokładna obsługa NaN - - This option improves speed by removing NaN checking. -Please note this also reduces accuracy of certain floating-point instructions. - - - - + Disable address space checks Wyłącz sprawdzanie przestrzeni adresów - - This option improves speed by eliminating a safety check before every memory read/write in guest. -Disabling it may allow a game to read/write the emulator's memory. - - - - + Ignore global monitor Ignoruj ogólne monitorowanie - - This option improves speed by relying only on the semantics of cmpxchg to ensure safety of exclusive access instructions. -Please note this may result in deadlocks and other race conditions. - - - - + API: API: - - Switches between the available graphics APIs. -Vulkan is recommended in most cases. - - - - + Device: Urządzenie: - - This setting selects the GPU to use with the Vulkan backend. - - - - + Shader Backend: Backend Shaderów: - - The shader backend to use for the OpenGL renderer. -GLSL is the fastest in performance and the best in rendering accuracy. -GLASM is a deprecated NVIDIA-only backend that offers much better shader building performance at the cost of FPS and rendering accuracy. -SPIR-V compiles the fastest, but yields poor results on most GPU drivers. - - - - + Resolution: Rozdzielczość: - - Forces the game to render at a different resolution. -Higher resolutions require much more VRAM and bandwidth. -Options lower than 1X can cause rendering issues. - - - - + Window Adapting Filter: Filtr Adaptującego Okna: - + FSR Sharpness: Ostrość FSR: - - Determines how sharpened the image will look while using FSR’s dynamic contrast. - - - - + Anti-Aliasing Method: Metoda Anty-Aliasingu: - - The anti-aliasing method to use. -SMAA offers the best quality. -FXAA has a lower performance impact and can produce a better and more stable picture under very low resolutions. - - - - + Fullscreen Mode: Tryb Pełnoekranowy: - - The method used to render the window in fullscreen. -Borderless offers the best compatibility with the on-screen keyboard that some games request for input. -Exclusive fullscreen may offer better performance and better Freesync/Gsync support. - - - - + Aspect Ratio: Format obrazu: - - Stretches the game to fit the specified aspect ratio. -Switch games only support 16:9, so custom game mods are required to get other ratios. -Also controls the aspect ratio of captured screenshots. - - - - + Use disk pipeline cache Użyj Pamięci Podręcznej Pipeline z dysku - - Allows saving shaders to storage for faster loading on following game boots. -Disabling it is only intended for debugging. - - - - - Optimize SPIRV output shader - - - - - Runs an additional optimization pass over generated SPIRV shaders. -Will increase time required for shader compilation. -May slightly improve performance. -This feature is experimental. - - - - + Use asynchronous GPU emulation Użyj asynchronicznej emulacji GPU - - Uses an extra CPU thread for rendering. -This option should always remain enabled. - - - - + NVDEC emulation: Emulacja NVDEC: - - Specifies how videos should be decoded. -It can either use the CPU or the GPU for decoding, or perform no decoding at all (black screen on videos). -In most cases, GPU decoding provides the best performance. - - - - - ASTC Decoding Method: - - - - - This option controls how ASTC textures should be decoded. -CPU: Use the CPU for decoding, slowest but safest method. -GPU: Use the GPU's compute shaders to decode ASTC textures, recommended for most games and users. -CPU Asynchronously: Use the CPU to decode ASTC textures as they arrive. Completely eliminates ASTC decoding -stuttering at the cost of rendering issues while the texture is being decoded. - - - - - ASTC Recompression Method: - - - - - Almost all desktop and laptop dedicated GPUs lack support for ASTC textures, forcing the emulator to decompress to an intermediate format any card supports, RGBA8. -This option recompresses RGBA8 to either the BC1 or BC3 format, saving VRAM but negatively affecting image quality. - - - - - VRAM Usage Mode: - - - - - Selects whether the emulator should prefer to conserve memory or make maximum usage of available video memory for performance. Has no effect on integrated graphics. Aggressive mode may severely impact the performance of other applications such as recording software. - - - - + VSync Mode: Tryb synchronizacji pionowej: - - FIFO (VSync) does not drop frames or exhibit tearing but is limited by the screen refresh rate. -FIFO Relaxed is similar to FIFO but allows tearing as it recovers from a slow down. -Mailbox can have lower latency than FIFO and does not tear but may drop frames. -Immediate (no synchronization) just presents whatever is available and can exhibit tearing. - - - - - Enable asynchronous presentation (Vulkan only) - - - - - Slightly improves performance by moving presentation to a separate CPU thread. - - - - + Force maximum clocks (Vulkan only) Wymuś maksymalne zegary (Tylko Vulkan) - + Runs work in the background while waiting for graphics commands to keep the GPU from lowering its clock speed. Uruchamia pracę w tle podczas oczekiwania na komendy graficzne aby GPU nie obniżało taktowania. - + Anisotropic Filtering: Filtrowanie anizotropowe: - - Controls the quality of texture rendering at oblique angles. -It’s a light setting and safe to set at 16x on most GPUs. - - - - Accuracy Level: - Precyzja: + Precyzja: - - GPU emulation accuracy. -Most games render fine with Normal, but High is still required for some. -Particles tend to only render correctly with High accuracy. -Extreme should only be used for debugging. -This option can be changed while playing. -Some games may require booting on high to render properly. - - - - + Use asynchronous shader building (Hack) Użyj asynchronicznego budowania shaderów (Hack) - - - Enables asynchronous shader compilation, which may reduce shader stutter. -This feature is experimental. - - Use Fast GPU Time (Hack) Użyj Szybszego Czasu GPU (Hack) @@ -902,1021 +584,1436 @@ This feature is experimental. Włącza Szybszy Czas GPU. Ta opcja zmusza większość gier do wyświetlania w swojej najwyższej natywnej rozdzielczości. - + Use Vulkan pipeline cache Użyj pamięci podręcznej strumienia dla Vulkana - + + RNG Seed + Ziarno RNG + + + + Device Name + Nazwa urządzenia + + + + Note: this can be overridden when region setting is auto-select + Uwaga: można to zmienić, gdy ustawienie regionu jest wybierane automatycznie + + + + Region: + Region: + + + + Time Zone: + Strefa czasowa: + + + + Sound Output Mode: + Tryb wyjścia dźwięku: + + + + Prompt for user on game boot + Pytaj o użytkownika podczas uruchamiania gry + + + + Pause emulation when in background + Wstrzymaj emulację w tle + + + + Hide mouse on inactivity + Ukryj mysz przy braku aktywności + + + + CPU + CPU + + + + Uncompressed (Best quality) + Brak (najlepsza jakość) + + + + BC1 (Low quality) + BC1 (niska jakość) + + + + BC3 (Medium quality) + BC3 (średnia jakość) + + + + Vulkan + Vulkan + + + + GLASM (Assembly Shaders, NVIDIA Only) + GLASM (Zgromadzone Shadery, tylko NVIDIA) + + + + Normal + Normalny + + + + High + Wysoki + + + + Auto + Automatyczny + + + + Accurate + Dokładny + + + + Unsafe + Niebezpieczny + + + + Paranoid (disables most optimizations) + Paranoiczne (wyłącza większość optymalizacji) + + + + Borderless Windowed + W oknie (Bezramkowy) + + + + Exclusive Fullscreen + Exclusive Fullscreen + + + + No Video Output + Brak wyjścia wideo + + + + CPU Video Decoding + Dekodowanie Wideo przez CPU + + + + GPU Video Decoding (Default) + Dekodowanie Wideo przez GPU (Domyślne) + + + + 0.75X (540p/810p) [EXPERIMENTAL] + 0.75X (540p/810p) [EKSPERYMENTALNE] + + + + 1X (720p/1080p) + 1X (720p/1080p) + + + + 1.5X (1080p/1620p) [EXPERIMENTAL] + 1.5X (1080p/1620p) [Ekperymentalnie] + + + + 2X (1440p/2160p) + 2X (1440p/2160p) + + + + 3X (2160p/3240p) + 3X (2160p/3240p) + + + + 4X (2880p/4320p) + 4X (2880p/4320p) + + + + 5X (3600p/5400p) + 5X (3600p/5400p) + + + + 6X (4320p/6480p) + 6X (4320p/6480p) + + + + 7X (5040p/7560p) + 7X (5040p/7560p) + + + + 8X (5760p/8640p) + 8X (5760p/8640p) + + + + Nearest Neighbor + Najbliższy sąsiadujący + + + + Bilinear + Bilinearny + + + + Bicubic + Bikubiczny + + + + Gaussian + Kulisty + + + + ScaleForce + ScaleForce + + + + AMD FidelityFX™️ Super Resolution + AMD FidelityFX™️ Super Resolution + + + + None + Żadna (wyłączony) + + + + FXAA + FXAA + + + + SMAA + SMAA + + + + Default (16:9) + Domyślne (16:9) + + + + Force 4:3 + Wymuś 4:3 + + + + Force 21:9 + Wymuś 21:9 + + + + Force 16:10 + Wymuś 16:10 + + + + Stretch to Window + Rozciągnij do Okna + + + + Automatic + Automatyczne + + + + + Default + Domyślny + + + + Amiibo editor + + + + + Controller configuration + + + + + Data erase + + + + + Net connect + + + + + Player select + + + + + Mii Edit + + + + + Online web + + + + + Shop + + + + + Photo viewer + + + + + Offline web + + + + + Login share + + + + + Wifi web auth + + + + + My page + + + + + This option increases CPU emulation thread use from 1 to the Switch’s maximum of 4. +This is mainly a debug option and shouldn’t be disabled. + + + + + Memory Layout + + + + + Increases the amount of emulated RAM from the stock 4GB of the retail Switch to the developer kit's 8/6GB. +It’s doesn’t improve stability or performance and is intended to let big texture mods fit in emulated RAM. +Enabling it will increase memory use. It is not recommended to enable unless a specific game with a texture mod needs it. + + + + + Controls the game's maximum rendering speed, but it’s up to each game if it runs faster or not. +200% for a 30 FPS game is 60 FPS, and for a 60 FPS game it will be 120 FPS. +Disabling it means unlocking the framerate to the maximum your PC can reach. + + + + + Synchronize Core Speed + + + + + Synchronizes CPU core speed with the game's maximum rendering speed to boost FPS without affecting game speed (animations, physics, etc.). +Compatibility varies by game; many (especially older ones) may not respond well. +Can help reduce stuttering at lower framerates. + + + + + This setting controls the accuracy of the emulated CPU. +Don't change this unless you know what you are doing. + + + + + + Backend: + + + + + Fast CPU Time + + + + + Overclocks the emulated CPU to remove some FPS limiters. Weaker CPUs may see reduced performance, and certain games may behave improperly. +Use Boost (1700MHz) to run at the Switch's highest native clock, or Fast (2000MHz) to run at 2x clock. + + + + + Custom CPU Ticks + + + + + Set a custom value of CPU ticks. Higher values can increase performance, but may also cause the game to freeze. A range of 77–21000 is recommended. + + + + + Enable Host MMU Emulation (fastmem) + + + + + This optimization speeds up memory accesses by the guest program. +Enabling it causes guest memory reads/writes to be done directly into memory and make use of Host's MMU. +Disabling this forces all memory accesses to use Software MMU Emulation. + + + + + This option improves speed by reducing accuracy of fused-multiply-add instructions on CPUs without native FMA support. + + + + + This option improves the speed of some approximate floating-point functions by using less accurate native approximations. + + + + + This option improves the speed of 32 bits ASIMD floating-point functions by running with incorrect rounding modes. + + + + + This option improves speed by removing NaN checking. +Please note this also reduces accuracy of certain floating-point instructions. + + + + + This option improves speed by eliminating a safety check before every memory read/write in guest. +Disabling it may allow a game to read/write the emulator's memory. + + + + + This option improves speed by relying only on the semantics of cmpxchg to ensure safety of exclusive access instructions. +Please note this may result in deadlocks and other race conditions. + + + + + Switches between the available graphics APIs. +Vulkan is recommended in most cases. + + + + + This setting selects the GPU to use with the Vulkan backend. + + + + + The shader backend to use for the OpenGL renderer. +GLSL is the fastest in performance and the best in rendering accuracy. +GLASM is a deprecated NVIDIA-only backend that offers much better shader building performance at the cost of FPS and rendering accuracy. +SPIR-V compiles the fastest, but yields poor results on most GPU drivers. + + + + + Forces the game to render at a different resolution. +Higher resolutions require much more VRAM and bandwidth. +Options lower than 1X can cause rendering issues. + + + + + Determines how sharpened the image will look while using FSR’s dynamic contrast. + + + + + The anti-aliasing method to use. +SMAA offers the best quality. +FXAA has a lower performance impact and can produce a better and more stable picture under very low resolutions. + + + + + The method used to render the window in fullscreen. +Borderless offers the best compatibility with the on-screen keyboard that some games request for input. +Exclusive fullscreen may offer better performance and better Freesync/Gsync support. + + + + + Stretches the game to fit the specified aspect ratio. +Switch games only support 16:9, so custom game mods are required to get other ratios. +Also controls the aspect ratio of captured screenshots. + + + + + Allows saving shaders to storage for faster loading on following game boots. +Disabling it is only intended for debugging. + + + + + Optimize SPIRV output shader + + + + + Runs an additional optimization pass over generated SPIRV shaders. +Will increase time required for shader compilation. +May slightly improve performance. +This feature is experimental. + + + + + Uses an extra CPU thread for rendering. +This option should always remain enabled. + + + + + Specifies how videos should be decoded. +It can either use the CPU or the GPU for decoding, or perform no decoding at all (black screen on videos). +In most cases, GPU decoding provides the best performance. + + + + + ASTC Decoding Method: + + + + + This option controls how ASTC textures should be decoded. +CPU: Use the CPU for decoding, slowest but safest method. +GPU: Use the GPU's compute shaders to decode ASTC textures, recommended for most games and users. +CPU Asynchronously: Use the CPU to decode ASTC textures as they arrive. Completely eliminates ASTC decoding +stuttering at the cost of rendering issues while the texture is being decoded. + + + + + ASTC Recompression Method: + + + + + Almost all desktop and laptop dedicated GPUs lack support for ASTC textures, forcing the emulator to decompress to an intermediate format any card supports, RGBA8. +This option recompresses RGBA8 to either the BC1 or BC3 format, saving VRAM but negatively affecting image quality. + + + + + VRAM Usage Mode: + + + + + Selects whether the emulator should prefer to conserve memory or make maximum usage of available video memory for performance. +Aggressive mode may severely impact the performance of other applications such as recording software. + + + + + Skip CPU Inner Invalidation + + + + + Skips certain CPU-side cache invalidations during memory updates, reducing CPU usage and improving it's performance. This may cause glitches or crashes on some games. + + + + + FIFO (VSync) does not drop frames or exhibit tearing but is limited by the screen refresh rate. +FIFO Relaxed is similar to FIFO but allows tearing as it recovers from a slow down. +Mailbox can have lower latency than FIFO and does not tear but may drop frames. +Immediate (no synchronization) just presents whatever is available and can exhibit tearing. + + + + + Sync Memory Operations + + + + + Ensures data consistency between compute and memory operations. +This option should fix issues in some games, but may also reduce performance in some cases. +Unreal Engine 4 games often see the most significant changes thereof. + + + + + Enable asynchronous presentation (Vulkan only) + + + + + Slightly improves performance by moving presentation to a separate CPU thread. + + + + + Controls the quality of texture rendering at oblique angles. +It’s a light setting and safe to set at 16x on most GPUs. + + + + + GPU Accuracy: + + + + + Controls the GPU emulation accuracy. +Most games render fine with Normal, but High is still required for some. +Particles tend to only render correctly with High accuracy. +Extreme should only be used as a last resort. + + + + + DMA Accuracy: + + + + + Controls the DMA precision accuracy. Safe precision can fix issues in some games, but it can also impact performance in some cases. +If unsure, leave this on Default. + + + + + Enables asynchronous shader compilation, which may reduce shader stutter. +This feature is experimental. + + + + + Fast GPU Time (Hack) + + + + + Overclocks the emulated GPU to increase dynamic resolution and render distance. +Use 128 for maximal performance and 512 for maximal graphics fidelity. + + + + Enables GPU vendor-specific pipeline cache. This option can improve shader loading time significantly in cases where the Vulkan driver does not store pipeline cache files internally. - + Enable Compute Pipelines (Intel Vulkan Only) - + Enable compute pipelines, required by some games. This setting only exists for Intel proprietary drivers, and may crash if enabled. Compute pipelines are always enabled on all other drivers. - + Enable Reactive Flushing - + Uses reactive flushing instead of predictive flushing, allowing more accurate memory syncing. - + Sync to framerate of video playback - + Run the game at normal speed during video playback, even when the framerate is unlocked. - + Barrier feedback loops - + Improves rendering of transparency effects in specific games. - - RNG Seed - Ziarno RNG + + RAII + - + + A method of automatic resource management in Vulkan that ensures proper release of resources when they are no longer needed, but may cause crashes in bundled games. + + + + + Extended Dynamic State + + + + + Controls the number of features that can be used in Extended Dynamic State. +Higher numbers allow for more features and can increase performance, but may cause issues with some drivers and vendors. +The default value may vary depending on your system and hardware capabilities. +This value can be changed until stability and a better visual quality are achieved. + + + + + Provoking Vertex + + + + + Improves lighting and vertex handling in certain games. +Only Vulkan 1.0+ devices support this extension. + + + + + Descriptor Indexing + + + + + Improves texture & buffer handling and the Maxwell translation layer. +Some Vulkan 1.1+ and all 1.2+ devices support this extension. + + + + + Sample Shading + + + + + Allows the fragment shader to execute per sample in a multi-sampled fragment instead once per fragment. Improves graphics quality at the cost of some performance. +Higher values improve quality more but also reduce performance to a greater extent. + + + + Controls the seed of the random number generator. Mainly used for speedrunning purposes. - - Device Name - Nazwa urządzenia - - - + The name of the emulated Switch. - + Custom RTC Date: - + This option allows to change the emulated clock of the Switch. Can be used to manipulate time in games. - + Language: - - Note: this can be overridden when region setting is auto-select - Uwaga: można to zmienić, gdy ustawienie regionu jest wybierane automatycznie - - - - Region: - Region: - - - + The region of the emulated Switch. - - Time Zone: - Strefa czasowa: - - - + The time zone of the emulated Switch. - - Sound Output Mode: - Tryb wyjścia dźwięku: - - - + Console Mode: - + Selects if the console is emulated in Docked or Handheld mode. Games will change their resolution, details and supported controllers and depending on this setting. Setting to Handheld can help improve performance for low end systems. - - Prompt for user on game boot - Pytaj o użytkownika podczas uruchamiania gry - - - - Pause emulation when in background - Wstrzymaj emulację w tle - - - - Fast GPU Time (Hack) + + Ask to select a user profile on each boot, useful if multiple people use Eden on the same PC. - - Overclocks the emulated GPU to increase dynamic resolution and render distance. -Use 128 for maximal performance and 512 for maximal graphics fidelity. + + This setting pauses Eden when focusing other windows. - - Extended Dynamic State - - - - - Enables the VkExtendedDynamicState* extensions. -Higher dynamic states will generally improve performance, but may cause issues on certain games or devices. - - - - - Provoking Vertex - - - - - Improves lighting and vertex handling in certain games. -Only Vulkan 1.0+ devices support this extension. - - - - - Descriptor Indexing - - - - - Improves texture & buffer handling and the Maxwell translation layer. -Some Vulkan 1.1+ and all 1.2+ devices support this extension. - - - - - Ask to select a user profile on each boot, useful if multiple people use eden on the same PC. - - - - - This setting pauses eden when focusing other windows. - - - - + Confirm before stopping emulation - + This setting overrides game prompts asking to confirm stopping the game. Enabling it bypasses such prompts and directly exits the emulation. - - Hide mouse on inactivity - Ukryj mysz przy braku aktywności - - - + This setting hides the mouse after 2.5s of inactivity. - + Disable controller applet - + Forcibly disables the use of the controller applet by guests. When a guest attempts to open the controller applet, it is immediately closed. - + Check for updates - + Whether or not to check for updates upon startup. - + Enable Gamemode - + Custom frontend - + Real applet - + Never - + On Load - + Always - - CPU - CPU - - - + GPU - + CPU Asynchronous - - Uncompressed (Best quality) - Brak (najlepsza jakość) - - - - BC1 (Low quality) - BC1 (niska jakość) - - - - BC3 (Medium quality) - BC3 (średnia jakość) - - - + Conservative - + Aggressive - + OpenGL - - Vulkan - Vulkan - - - + Null - + GLSL - - GLASM (Assembly Shaders, NVIDIA Only) - GLASM (Zgromadzone Shadery, tylko NVIDIA) - - - + SPIR-V (Experimental, AMD/Mesa Only) - - Normal - Normalny - - - - High - Wysoki - - - + Extreme - - Auto - Automatyczny + + Unsafe (fast) + - - Accurate - Dokładny + + Safe (stable) + - - Unsafe - Niebezpieczny - - - - Paranoid (disables most optimizations) - Paranoiczne (wyłącza większość optymalizacji) - - - + Dynarmic - + NCE - - Borderless Windowed - W oknie (Bezramkowy) - - - - Exclusive Fullscreen - Exclusive Fullscreen - - - - No Video Output - Brak wyjścia wideo - - - - CPU Video Decoding - Dekodowanie Wideo przez CPU - - - - GPU Video Decoding (Default) - Dekodowanie Wideo przez GPU (Domyślne) - - - + 0.25X (180p/270p) [EXPERIMENTAL] - + 0.5X (360p/540p) [EXPERIMENTAL] - - 0.75X (540p/810p) [EXPERIMENTAL] - 0.75X (540p/810p) [EKSPERYMENTALNE] - - - - 1X (720p/1080p) - 1X (720p/1080p) - - - - 1.5X (1080p/1620p) [EXPERIMENTAL] - 1.5X (1080p/1620p) [Ekperymentalnie] - - - - 2X (1440p/2160p) - 2X (1440p/2160p) - - - - 3X (2160p/3240p) - 3X (2160p/3240p) - - - - 4X (2880p/4320p) - 4X (2880p/4320p) - - - - 5X (3600p/5400p) - 5X (3600p/5400p) - - - - 6X (4320p/6480p) - 6X (4320p/6480p) - - - - 7X (5040p/7560p) - 7X (5040p/7560p) - - - - 8X (5760p/8640p) - 8X (5760p/8640p) - - - - Nearest Neighbor - Najbliższy sąsiadujący - - - - Bilinear - Bilinearny - - - - Bicubic - Bikubiczny - - - - Gaussian - Kulisty - - - - ScaleForce - ScaleForce - - - - AMD FidelityFX™️ Super Resolution - AMD FidelityFX™️ Super Resolution - - - + Area - - None - Żadna (wyłączony) - - - - FXAA - FXAA - - - - SMAA - SMAA - - - - Default (16:9) - Domyślne (16:9) - - - - Force 4:3 - Wymuś 4:3 - - - - Force 21:9 - Wymuś 21:9 - - - - Force 16:10 - Wymuś 16:10 - - - - Stretch to Window - Rozciągnij do Okna - - - - Automatic - Automatyczne - - - - Default - Domyślny - - - + 2x 2x - + 4x 4x - + 8x 8x - + 16x 16x - + Japanese (日本語) Japoński (日本語) - + American English Angielski Amerykański - + French (français) Francuski (français) - + German (Deutsch) Niemiecki (Niemcy) - + Italian (italiano) Włoski (italiano) - + Spanish (español) Hiszpański (español) - + Chinese Chiński - + Korean (한국어) Koreański (한국어) - + Dutch (Nederlands) Duński (Holandia) - + Portuguese (português) Portugalski (português) - + Russian (Русский) Rosyjski (Русский) - + Taiwanese Tajwański - + British English Angielski Brytyjski - + Canadian French Fancuski (Kanada) - + Latin American Spanish Hiszpański (Latin American) - + Simplified Chinese Chiński (Uproszczony) - + Traditional Chinese (正體中文) Chiński tradycyjny (正體中文) - + Brazilian Portuguese (português do Brasil) Portugalski (português do Brasil) - - + + Serbian (српски) + + + + + Japan Japonia - + USA USA - + Europe Europa - + Australia Australia - + China Chiny - + Korea Korea - + Taiwan Tajwan - + Auto (%1) Auto select time zone - + Default (%1) Default time zone - + CET CET - + CST6CDT CST6CDT - + Cuba Cuba - + EET EET - + Egypt Egipt - + Eire Irlandia - + EST EST - + EST5EDT EST5EDT - + GB GB - + GB-Eire GB-Eire - + GMT GMT - + GMT+0 GMT+0 - + GMT-0 GMT-0 - + GMT0 GMT0 - + Greenwich Greenwich - + Hongkong Hongkong - + HST HST - + Iceland Islandia - + Iran Iran - + Israel Izrael - + Jamaica Jamajka - + Kwajalein Kwajalein - + Libya Libia - + MET MET - + MST MST - + MST7MDT MST7MDT - + Navajo Navajo - + NZ NZ - + NZ-CHAT NZ-CHAT - + Poland Polska - + Portugal Portugalia - + PRC PRC - + PST8PDT PST8PDT - + ROC ROC - + ROK ROK - + Singapore Singapur - + Turkey Turcja - + UCT UCT - + Universal Uniwersalny - + UTC UTC - + W-SU W-SU - + WET WET - + Zulu Zulu - + Mono Mono - + Stereo Stereo - + Surround Surround - + 4GB DRAM (Default) - + 6GB DRAM (Unsafe) - + 8GB DRAM - + 10GB DRAM (Unsafe) - + 12GB DRAM (Unsafe) - - Low (128) - - - - - Medium (256) - - - - - High (512) - - - - + Docked Zadokowany - + Handheld Przenośnie - + Boost (1700MHz) - + Fast (2000MHz) - + Always ask (Default) - + Only if game specifies not to stop - + Never ask + + + Low (128) + + + + + Medium (256) + + + + + High (512) + + ConfigureApplets @@ -2266,27 +2363,27 @@ Gdy ta opcja jest włączona, niedopasowanie jest uruchamiane tylko wtedy, gdy d Logowanie - + Open Log Location Otwórz miejsce rejestrów - + Global Log Filter Globalny filtr rejestrów - + When checked, the max size of the log increases from 100 MB to 1 GB Kiedy zaznaczony, maksymalny rozmiar logu wzrasta ze 100 MB do 1 GB - + Enable Extended Logging** Włącz Przedłużony Logging** - + Show Log in Console Pokaż Log w konsoli @@ -2432,7 +2529,7 @@ Gdy ta opcja jest włączona, niedopasowanie jest uruchamiane tylko wtedy, gdy d - **This will be reset automatically when eden closes. + **This will be reset automatically when Eden closes. @@ -2494,7 +2591,7 @@ Gdy ta opcja jest włączona, niedopasowanie jest uruchamiane tylko wtedy, gdy d **To zresetuje się automatycznie po wyłączeniu yuzu. - + Web applet not compiled Aplet sieciowy nie został skompilowany @@ -2544,7 +2641,7 @@ Gdy ta opcja jest włączona, niedopasowanie jest uruchamiane tylko wtedy, gdy d - eden Configuration + Eden Configuration @@ -2553,88 +2650,88 @@ Gdy ta opcja jest włączona, niedopasowanie jest uruchamiane tylko wtedy, gdy d - + Applets - - + + Audio Dźwięk - - + + CPU CPU - + Debug Wyszukiwanie usterek - + Filesystem System plików - - + + General Ogólne - - + + Graphics Grafika - + GraphicsAdvanced Zaawansowana grafika - + GraphicsExtensions - + Hotkeys Skróty klawiszowe - - + + Controls Sterowanie - + Profiles Profile - + Network Sieć - - + + System System - + Game List Lista Gier - + Web Web @@ -2732,51 +2829,45 @@ Gdy ta opcja jest włączona, niedopasowanie jest uruchamiane tylko wtedy, gdy d - - - Reset Metadata Cache Zresetuj pamięć podręczną metadanych - + Select Emulated NAND Directory... Wybierz emulowany katalog NAND... - + Select Emulated SD Directory... Wybierz Emulowany katalog SD... - + Select Gamecard Path... Wybierz Ścieżkę karty gry... - + Select Dump Directory... Wybierz katalog zrzutu... - + Select Mod Load Directory... Wybierz katalog ładowania modów... - The metadata cache is already empty. - Pamięć podręczna metadanych jest już pusta. + Pamięć podręczna metadanych jest już pusta. - The operation completed successfully. - Operacja zakończona sukcesem. + Operacja zakończona sukcesem. - The metadata cache couldn't be deleted. It might be in use or non-existent. - Nie udało się usunąć pamięci podręcznej metadanych. Może być używana lub nie istnieje. + Nie udało się usunąć pamięci podręcznej metadanych. Może być używana lub nie istnieje. @@ -2807,12 +2898,12 @@ Gdy ta opcja jest włączona, niedopasowanie jest uruchamiane tylko wtedy, gdy d yuzu - - eden + + Eden - + This reset all settings and remove all per-game configurations. This will not delete game directories, profiles, or input profiles. Proceed? Spowoduje to zresetowanie wszystkich ustawień i usunięcie wszystkich konfiguracji gier. Nie spowoduje to usunięcia katalogów gier, profili ani profili wejściowych. Kontynuować? @@ -2845,33 +2936,33 @@ Gdy ta opcja jest włączona, niedopasowanie jest uruchamiane tylko wtedy, gdy d Kolor tła - + % FSR sharpening percentage (e.g. 50%) % - + Off Wyłączone - + VSync Off VSync wyłączony - + Recommended Zalecane - + On Włączone - + VSync On VSync aktywny @@ -2908,14 +2999,18 @@ Gdy ta opcja jest włączona, niedopasowanie jest uruchamiane tylko wtedy, gdy d - Vulkan Extension Settings + Vulkan Extensions Settings - - While it's recommended to use state 3, some games may perform better on lower states. Setting to 0 (disabled) may also break games. -If your GPU is older (i.e. RX570/580 or older), it may not support these features. If this is the case, set the slider to 0 and uncheck all boxes. -These settings are experimental, and may cause black screens. If your games fail to boot or are stuck on a black screen, change these settings around. + + % + Sample Shading percentage (e.g. 50%) + % + + + + Extended Dynamic State is disabled on macOS due to MoltenVK compatibility issues that cause black screens. @@ -2947,75 +3042,75 @@ These settings are experimental, and may cause black screens. If your games fail Przywróć domyślne - + Action Akcja - + Hotkey Skrót klawiszowy - + Controller Hotkey Skrót Klawiszowy Kontrolera - - - + + + Conflicting Key Sequence Sprzeczna sekwencja klawiszy - - + + The entered key sequence is already assigned to: %1 Wprowadzona sekwencja klawiszy jest już przypisana do: %1 - + [waiting] [oczekiwanie] - + Invalid Nieprawidłowe - + Invalid hotkey settings - + An error occurred. Please report this issue on github. - + Restore Default Przywróć ustawienia domyślne - + Clear Wyczyść - + Conflicting Button Sequence Sprzeczna Sekwencja Przycisków - + The default button sequence is already assigned to: %1 Domyślna sekwencja przycisków już jest przypisana do: %1 - + The default key sequence is already assigned to: %1 Domyślna sekwencja klawiszy jest już przypisana do: %1 @@ -3335,7 +3430,7 @@ These settings are experimental, and may cause black screens. If your games fail - Requires restarting eden + Requires restarting Eden @@ -3490,7 +3585,7 @@ These settings are experimental, and may cause black screens. If your games fail - + Left Stick Lewa gałka @@ -3600,14 +3695,14 @@ These settings are experimental, and may cause black screens. If your games fail - + L L - + ZL ZL @@ -3626,7 +3721,7 @@ These settings are experimental, and may cause black screens. If your games fail - + Plus Plus @@ -3639,15 +3734,15 @@ These settings are experimental, and may cause black screens. If your games fail - - + + R R - + ZR ZR @@ -3692,7 +3787,7 @@ These settings are experimental, and may cause black screens. If your games fail - + Right Stick Prawa gałka @@ -3707,242 +3802,242 @@ These settings are experimental, and may cause black screens. If your games fail Konfiguruj - - - - + + + + Clear Wyczyść - - - - - + + + + + [not set] [nie ustawione] - - - + + + Invert button Odwróć przycisk - - + + Toggle button Przycisk Toggle - + Turbo button Przycisk TURBO - - + + Invert axis Odwróć oś - - - + + + Set threshold Ustaw próg - - + + Choose a value between 0% and 100% Wybierz wartość od 0% do 100% - + Toggle axis Przełącz oś - + Set gyro threshold Ustaw próg gyro - + Calibrate sensor Kalibracja sensora - + Map Analog Stick Przypisz Drążek Analogowy - + After pressing OK, first move your joystick horizontally, and then vertically. To invert the axes, first move your joystick vertically, and then horizontally. Po naciśnięciu OK, najpierw przesuń joystick w poziomie, a następnie w pionie. Aby odwrócić osie, najpierw przesuń joystick pionowo, a następnie poziomo. - + Center axis Środkowa oś - - + + Deadzone: %1% Martwa strefa: %1% - - + + Modifier Range: %1% Zasięg Modyfikatora: %1% - - + + Pro Controller Pro Controller - + Dual Joycons Para Joyconów - + Left Joycon Lewy Joycon - + Right Joycon Prawy Joycon - + Handheld Handheld - + GameCube Controller Kontroler GameCube - + Poke Ball Plus Poke Ball Plus - + NES Controller Kontroler NES/Pegasus - + SNES Controller Kontroler SNES - + N64 Controller Kontroler N64 - + Sega Genesis Sega Mega Drive - + Start / Pause Start / Pauza - + Z Z - + Control Stick Lewa gałka - + C-Stick C-gałka - + Shake! Potrząśnij! - + [waiting] [oczekiwanie] - + New Profile Nowy profil - + Enter a profile name: Wpisz nazwę profilu: - - + + Create Input Profile Utwórz profil wejściowy - + The given profile name is not valid! Podana nazwa profilu jest nieprawidłowa! - + Failed to create the input profile "%1" Nie udało się utworzyć profilu wejściowego "%1" - + Delete Input Profile Usuń profil wejściowy - + Failed to delete the input profile "%1" Nie udało się usunąć profilu wejściowego "%1" - + Load Input Profile Załaduj profil wejściowy - + Failed to load the input profile "%1" Nie udało się wczytać profilu wejściowego "%1" - + Save Input Profile Zapisz profil wejściowy - + Failed to save the input profile "%1" Nie udało się zapisać profilu wejściowego "%1" @@ -3999,7 +4094,7 @@ Aby odwrócić osie, najpierw przesuń joystick pionowo, a następnie poziomo. - + Configure Konfiguruj @@ -4035,7 +4130,7 @@ Aby odwrócić osie, najpierw przesuń joystick pionowo, a następnie poziomo. - + Test Test @@ -4054,7 +4149,7 @@ Aby odwrócić osie, najpierw przesuń joystick pionowo, a następnie poziomo.<a href='https://yuzu-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> - + %1:%2 %1:%2 @@ -4063,77 +4158,77 @@ Aby odwrócić osie, najpierw przesuń joystick pionowo, a następnie poziomo.yuzu - + <a href='https://eden-emulator.github.io/wiki/using-a-controller-or-android-phone-for-motion-or-touch-input'><span style="text-decoration: underline; color:#039be5;">Learn More</span></a> - + Port number has invalid characters Port zawiera nieprawidłowe znaki - - - - - - - eden + + + + + + + Eden - + Port has to be in range 0 and 65353 Port musi być w zakresie 0-65353 - + IP address is not valid Adres IP nie jest prawidłowy - + This UDP server already exists Ten serwer UDP już istnieje - + Unable to add more than 8 servers Nie można dodać więcej niż 8 serwerów - + Testing Testowanie - + Configuring Konfigurowanie - + Test Successful Test Udany - + Successfully received data from the server. Pomyślnie 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 można odebrać poprawnych danych z serwera.<br>Sprawdź, czy serwer jest poprawnie skonfigurowany, a adres i port są prawidłowe. - + UDP Test or calibration configuration is in progress.<br>Please wait for them to finish. Trwa konfiguracja testu UDP lub kalibracji.<br>Poczekaj na zakończenie. @@ -4259,7 +4354,12 @@ Current values are %1% and %2% respectively. Interfejs Sieciowy - + + Enable Airplane Mode + + + + None Żadny @@ -4317,52 +4417,52 @@ Current values are %1% and %2% respectively. - + Add-Ons Dodatki - + System System - + CPU CPU - + Graphics Grafika - + Adv. Graphics Zaaw. Grafika - + GPU Extensions - + Audio Dźwięk - + Input Profiles Profil wejściowy - + Linux - + Properties Właściwości @@ -4380,12 +4480,12 @@ Current values are %1% and %2% respectively. Dodatki - + Patch Name Nazwa łatki - + Version Wersja @@ -4423,27 +4523,32 @@ Current values are %1% and %2% respectively. Ustaw zdjęcie - + + Select Avatar + + + + Add Dodaj - + Rename Zmień nazwę - + Remove Usuń - + Profile management is available only when game is not running. Menedżer Profili nie jest dostępny gdy gra jest uruchomiona. - + %1 %2 %1 is the profile username, %2 is the formatted UUID (e.g. 00112233-4455-6677-8899-AABBCCDDEEFF)) @@ -4451,100 +4556,189 @@ Current values are %1% and %2% respectively. %2 - + Enter Username Wpisz nazwę użytkownika - + Users Użytkownicy - + Enter a username for the new user: Wprowadź nazwę dla nowego użytkownika: - + Enter a new username: Wpisz nową nazwę użytkownika: - + + Error saving user image + + + + + Unable to save image to file + + + + Select User Image Ustaw zdjęcie użytkownika - - JPEG Images (*.jpg *.jpeg) - Obrazki JPEG (*.jpg *.jpeg) + + Image Formats (*.jpg *.jpeg *.png *.bmp) + - + + No firmware available + + + + + Please install the firmware to use firmware avatars. + + + + + + Error loading archive + + + + + Archive is not available. Please install/reinstall firmware. + + + + + Archive does not contain romfs. It is probably corrupt. + + + + + Error extracting archive + + + + + Archive could not be extracted. It is probably corrupt. + + + + + Error finding image directory + + + + + Failed to find image directory in the archive. + + + + + No images found + + + + + No avatar images were found in the archive. + + + + JPEG Images (*.jpg *.jpeg) + Obrazki JPEG (*.jpg *.jpeg) + + + Error deleting image Bład usunięcia zdjęcia - + Error occurred attempting to overwrite previous image at: %1. Błąd podczas próby nadpisania poprzedniego zdjęcia dla: %1. - + Error deleting file Błąd usunięcia pliku - + Unable to delete existing file: %1. Nie można usunąć istniejącego pliku: %1 - + Error creating user image directory Błąd podczas tworzenia folderu ze zdjęciem użytkownika - + Unable to create directory %1 for storing user images. Nie można utworzyć ścieżki %1 do przechowywania zdjęć użytkownika. - Error copying user image - Błąd kopiowania zdjęcia użytkownika + Błąd kopiowania zdjęcia użytkownika - Unable to copy image from %1 to %2 - Nie można skopiować zdjęcia z %1 do %2 + Nie można skopiować zdjęcia z %1 do %2 - Error resizing user image - Błąd podczas zmieniania rozmiaru obrazu użytkownika + Błąd podczas zmieniania rozmiaru obrazu użytkownika - Unable to resize image - Nie można zmienić rozmiaru obrazu + Nie można zmienić rozmiaru obrazu + + + + ConfigureProfileManagerAvatarDialog + + + Select + + + + + Cancel + Anuluj + + + + Background Color + + + + + Select Firmware Avatar + ConfigureProfileManagerDeleteDialog - + Delete this user? All of the user's save data will be deleted. Czy usunąć tego użytkownika? Wszystkie dane zapisu użytkownika zostaną usunięte. - + Confirm Delete Potwierdź usunięcie - + Name: %1 UUID: %2 Nazwa: %1 @@ -4597,7 +4791,7 @@ UUID: %2 - + Enable @@ -4608,7 +4802,7 @@ UUID: %2 - + Not connected Niepodłączony @@ -4618,63 +4812,63 @@ UUID: %2 Przywróć domyślne - + Clear Wyczyść - + [not set] [nie ustawione] - + Invert axis Odwróć oś - - + + Deadzone: %1% Martwa strefa: %1% - + Error enabling ring input - + Direct Joycon driver is not enabled - + Configuring Konfigurowanie - + The current mapped device doesn't support the ring controller - + The current mapped device doesn't have a ring attached - + The current mapped device is not connected - + Unexpected driver result %1 - + [waiting] [oczekiwanie] @@ -4716,7 +4910,7 @@ UUID: %2 - <html><head/><body><p>Reads controller input from scripts in the same format as TAS-nx scripts.<br/>For a more detailed explanation, please consult the <a href="https://eden-emulator.github.io/help/feature/tas/"><span style=" text-decoration: underline; color:#039be5;">help page</span></a> on the eden website.</p></body></html> + <html><head/><body><p>Reads controller input from scripts in the same format as TAS-nx scripts.<br/>For a more detailed explanation, please consult the <a href="https://eden-emulator.github.io/help/feature/tas/"><span style=" text-decoration: underline; color:#039be5;">help page</span></a> on the Eden website.</p></body></html> @@ -4768,12 +4962,12 @@ UUID: %2 ConfigureTasDialog - + TAS Configuration Konfiguracja TAS - + Select TAS Load Directory... Wybierz Ścieżkę Załadowania TAS-a @@ -4883,7 +5077,7 @@ Przeciągnij punkty, aby zmienić pozycję, lub kliknij dwukrotnie komórki tabe - Warning: The settings in this page affect the inner workings of eden's emulated touchscreen. Changing them may result in undesirable behavior, such as the touchscreen partially or not working. You should only use this page if you know what you are doing. + Warning: The settings in this page affect the inner workings of Eden's emulated touchscreen. Changing them may result in undesirable behavior, such as the touchscreen partially or not working. You should only use this page if you know what you are doing. @@ -5203,6 +5397,16 @@ Przeciągnij punkty, aby zmienić pozycję, lub kliknij dwukrotnie komórki tabe Web Web + + + Eden Web Service + + + + + Generate + + yuzu Web Service Usługa internetowa yuzu @@ -5212,42 +5416,29 @@ Przeciągnij punkty, aby zmienić pozycję, lub kliknij dwukrotnie komórki tabe Podając swoją nazwę użytkownika i token, zgadzasz się na umożliwienie yuzu zbierania dodatkowych danych o użytkowaniu, które mogą zawierać informacje umożliwiające identyfikację użytkownika. - - eden Web Service - - - - - By providing your username and token, you agree to allow eden to collect additional usage data, which may include user identifying information. - - - - Verify - Zweryfikuj + Zweryfikuj - Sign up - Zaloguj się + Zaloguj się - + Token: Token: - + Username: Nazwa użytkownika: - What is my token? - Czym jest mój token? + Czym jest mój token? - + Web Service configuration can only be changed when a public room isn't being hosted. Konfigurację usług sieciowych można tylko zmienić kiedy pokój publiczny nie jest hostowany. @@ -5272,12 +5463,12 @@ Przeciągnij punkty, aby zmienić pozycję, lub kliknij dwukrotnie komórki tabe Wygeneruj ponownie - + Discord Presence Obecność na discordzie - + Show Current Game in your Discord Status Pokazuj obecną grę w twoim statusie Discorda @@ -5286,24 +5477,8 @@ Przeciągnij punkty, aby zmienić pozycję, lub kliknij dwukrotnie komórki tabe <a href='https://yuzu-emu.org/help/feature/telemetry/'><span style="text-decoration: underline; color:#039be5;">Dowiedz się więcej</span></a> - <a href='https://profile.yuzu-emu.org/'><span style="text-decoration: underline; color:#039be5;">Sign up</span></a> - <a href='https://profile.yuzu-emu.org/'><span style="text-decoration: underline; color:#039be5;">Zaloguj się</span></a> - - - - <a href='https://evilperson1337.notion.site/Hosting-a-Room-Inside-of-Eden-20457c2edaf680108abac6215a79acdb'><span style="text-decoration: underline; color:#039be5;">What is my token?</span></a> - - - - - Warning - - - - - Verification is currently nonfunctional, instead generate a random 48-character string with only lowercase a-z. - + <a href='https://profile.yuzu-emu.org/'><span style="text-decoration: underline; color:#039be5;">Zaloguj się</span></a> <a href='https://yuzu-emu.org/wiki/yuzu-web-service/'><span style="text-decoration: underline; color:#039be5;">What is my token?</span></a> @@ -5326,10 +5501,9 @@ Przeciągnij punkty, aby zmienić pozycję, lub kliknij dwukrotnie komórki tabe Token nie został zweryfikowany. Zmiana w Twoim tokenie nie została zapisana. - Unverified, please click Verify before saving configuration Tooltip - Niezweryfikowany, kliknij proszę przycisk Weryfikacji przed zapisaniem konfiguracji + Niezweryfikowany, kliknij proszę przycisk Weryfikacji przed zapisaniem konfiguracji Verifying... @@ -5353,20 +5527,67 @@ Przeciągnij punkty, aby zmienić pozycję, lub kliknij dwukrotnie komórki tabe Verification failed. Check that you have entered your token correctly, and that your internet connection is working. Weryfikacja nie powiodła się. Sprawdź, czy poprawnie podałeś swój token oraz czy działa twoje połączenie internetowe. + + + + All Good + Tooltip + + + + + Must be between 4-20 characters + Tooltip + + + + + Must be 48 characters, and lowercase a-z + Tooltip + + ControllerDialog - + Controller P1 Kontroler P1 - + &Controller P1 &Kontroler P1 + + DepsDialog + + + Eden Dependencies + + + + + <html><head/><body><p><span style=" font-size:28pt;">Eden Dependencies</span></p></body></html> + + + + + <html><head/><body><p>The projects that make Eden possible</p></body></html> + + + + + Dependency + + + + + Version + Wersja + + DirectConnect @@ -5472,7 +5693,12 @@ Przeciągnij punkty, aby zmienić pozycję, lub kliknij dwukrotnie komórki tabe - Creating a room failed. Please retry. Restarting eden might be necessary. + Creating a room failed. Please retry. Restarting Eden might be necessary. + + + + + Version mismatch! Please update to the latest version of Eden. If the problem persists, contact the room host and ask them to update the server. @@ -5480,11 +5706,6 @@ Przeciągnij punkty, aby zmienić pozycję, lub kliknij dwukrotnie komórki tabe The host of the room has banned you. Speak with the host to unban you or try a different room. Host tego pokoju cię zbanował. Porozmawiaj z hostem, i poproś go, żeby cię odbanował, albo zagraj w innym pokoju. - - - Version mismatch! Please update to the latest version of eden. If the problem persists, contact the room host and ask them to update the server. - - Incorrect password. @@ -5546,7 +5767,7 @@ Przejdź do Konfiguruj... -> System -> Sieć i dokonaj wyboru.Telemetria - + Broken Vulkan Installation Detected Wykryto uszkodzoną instalację Vulkana @@ -5555,106 +5776,105 @@ Przejdź do Konfiguruj... -> System -> Sieć i dokonaj wyboru.Inicjalizacja Vulkana nie powiodła się podczas uruchamiania.<br><br>Kliknij<a href='https://yuzu-emu.org/wiki/faq/#yuzu-starts-with-the-error-broken-vulkan-installation-detected'>tutaj aby uzyskać instrukcje dotyczące rozwiązania tego problemu</a>. - + Running a game TRANSLATORS: This string is shown to the user to explain why yuzu needs to prevent the computer from sleeping - + Loading Web Applet... Ładowanie apletu internetowego... - - + + Disable Web Applet Wyłącz Aplet internetowy - + Disabling the web applet can lead to undefined behavior and should only be used with Super Mario 3D All-Stars. Are you sure you want to disable the web applet? (This can be re-enabled in the Debug settings.) Wyłączanie web appletu może doprowadzić do nieokreślonych zachowań - wyłączyć applet należy jedynie grając w Super Mario 3D All-Stars. Na pewno chcesz wyłączyć web applet? (Można go ponownie włączyć w ustawieniach debug.) - + The amount of shaders currently being built Ilość budowanych shaderów - + The current selected resolution scaling multiplier. Obecnie wybrany mnożnik rozdzielczości. - + Current emulation speed. Values higher or lower than 100% indicate emulation is running faster or slower than a Switch. Aktualna prędkość emulacji. Wartości większe lub niższe niż 100% wskazują, że emulacja działa szybciej lub wolniej niż Switch. - + How many frames per second the game is currently displaying. This will vary from game to game and scene to scene. Ile klatek na sekundę gra aktualnie wyświetla. To będzie się różnić w zależności od gry, od sceny do sceny. - + Time taken to emulate a Switch frame, not counting framelimiting or v-sync. For full-speed emulation this should be at most 16.67 ms. Czas potrzebny do emulacji klatki na sekundę Switcha, nie licząc ograniczania klatek ani v-sync. Dla emulacji pełnej szybkości powinno to wynosić co najwyżej 16,67 ms. - + Unmute - + Mute - + Reset Volume - + &Clear Recent Files &Usuń Ostatnie pliki - + &Continue &Kontynuuj - + &Pause &Pauza - Warning Outdated Game Format - OSTRZEŻENIE! Nieaktualny format gry + OSTRZEŻENIE! Nieaktualny format gry You are using the deconstructed ROM directory format for this game, which is an outdated format that has been superseded by others such as NCA, NAX, XCI, or NSP. Deconstructed ROM directories lack icons, metadata, and update support.<br><br>For an explanation of the various Switch formats yuzu supports, <a href='https://yuzu-emu.org/wiki/overview-of-switch-game-formats'>check out our wiki</a>. This message will not be shown again. Używasz zdekonstruowanego formatu katalogu ROM dla tej gry, który jest przestarzałym formatem, który został zastąpiony przez inne, takie jak NCA, NAX, XCI lub NSP. W zdekonstruowanych katalogach ROM brakuje ikon, metadanych i obsługi aktualizacji.<br><br> Aby znaleźć wyjaśnienie różnych formatów Switch obsługiwanych przez yuzu,<a href='https://yuzu-emu.org/wiki/overview-of-switch-game-formats'> sprawdź nasze wiki</a>. Ta wiadomość nie pojawi się ponownie. - - + + Error while loading ROM! Błąd podczas wczytywania ROMu! - + The ROM format is not supported. Ten format ROMu nie jest wspierany. - + An error occurred initializing the video core. Wystąpił błąd podczas inicjowania rdzenia wideo. @@ -5663,7 +5883,7 @@ Przejdź do Konfiguruj... -> System -> Sieć i dokonaj wyboru.yuzu napotkał błąd podczas uruchamiania rdzenia wideo. Jest to zwykle spowodowane przestarzałymi sterownikami GPU, w tym zintegrowanymi. Więcej szczegółów znajdziesz w pliku log. Więcej informacji na temat dostępu do log-u można znaleźć na następującej stronie: <a href='https://yuzu-emu.org/help/reference/log-files/'>Jak przesłać plik log</a>. - + Error while loading ROM! %1 %1 signifies a numeric error code. Błąd podczas wczytywania ROMu! %1 @@ -5674,1036 +5894,884 @@ Przejdź do Konfiguruj... -> System -> Sieć i dokonaj wyboru.%1<br>Postępuj zgodnie z<a href='https://yuzu-emu.org/help/quickstart/'>yuzu quickstart guide</a> aby zrzucić ponownie swoje pliki.<br>Możesz odwołać się do wiki yuzu</a>lub discord yuzu </a> po pomoc. - + Vulkan initialization failed during boot.<br><br>Click <a href='https://eden-emulator.github.io/wiki/faq/#yuzu-starts-with-the-error-broken-vulkan-installation-detected'>here for instructions to fix the issue</a>. - - Game Updates Warning - - - - - The game you are trying to launch is known to have performance or booting issues when updates are applied. Please try increasing the memory layout to 6GB or 8GB if any issues occur.<br><br>Press "OK" to continue launching, or "Cancel" to cancel the launch. - - - - - Don't show again for this game - - - - - You are using the deconstructed ROM directory format for this game, which is an outdated format that has been superseded by others such as NCA, NAX, XCI, or NSP. Deconstructed ROM directories lack icons, metadata, and update support.<br><br>For an explanation of the various Switch formats eden supports, <a href='https://eden-emulator.github.io/wiki/overview-of-switch-game-formats'>check out our wiki</a>. This message will not be shown again. - - - - - eden has encountered an error while running the video core. This is usually caused by outdated GPU drivers, including integrated ones. Please see the log for more details. For more information on accessing the log, please see the following page: <a href='https://eden-emulator.github.io/help/reference/log-files/'>How to Upload the Log File</a>. - - - - - %1<br>Please redump your files or ask on Discord for help. - %1 signifies an error string. - - - - + An unknown error occurred. Please see the log for more details. Wystąpił nieznany błąd. Więcej informacji można znaleźć w pliku log. - + (64-bit) (64-bit) - + (32-bit) (32-bit) - + %1 %2 %1 is the title name. %2 indicates if the title is 64-bit or 32-bit %1 %2 - + Closing software... Zamykanie aplikacji... - + Save Data Zapis danych - + Mod Data Dane modów - + Error Opening %1 Folder Błąd podczas otwarcia folderu %1 - - + + Folder does not exist! Folder nie istnieje! - Error Opening Transferable Shader Cache - Błąd podczas otwierania przenośnej pamięci podręcznej Shaderów. + Błąd podczas otwierania przenośnej pamięci podręcznej Shaderów. - Failed to create the shader cache directory for this title. - Nie udało się stworzyć ścieżki shaderów dla tego tytułu. + Nie udało się stworzyć ścieżki shaderów dla tego tytułu. - Error Removing Contents - Błąd podczas usuwania zawartości + Błąd podczas usuwania zawartości - Error Removing Update - Błąd podczas usuwania aktualizacji + Błąd podczas usuwania aktualizacji - Error Removing DLC - Błąd podczas usuwania dodatków + Błąd podczas usuwania dodatków - + Remove Installed Game Contents? Czy usunąć zainstalowaną zawartość gry? - + Remove Installed Game Update? Czy usunąć zainstalowaną aktualizację gry? - + Remove Installed Game DLC? Czy usunąć zainstalowane dodatki gry? - + Remove Entry Usuń wpis - - - - - - Successfully Removed - Pomyślnie usunięto + Pomyślnie usunięto - Successfully removed the installed base game. - Pomyślnie usunięto zainstalowaną grę. + Pomyślnie usunięto zainstalowaną grę. - The base game is not installed in the NAND and cannot be removed. - Gra nie jest zainstalowana w NAND i nie może zostać usunięta. + Gra nie jest zainstalowana w NAND i nie może zostać usunięta. - Successfully removed the installed update. - Pomyślnie usunięto zainstalowaną łatkę. + Pomyślnie usunięto zainstalowaną łatkę. - There is no update installed for this title. - Brak zainstalowanych łatek dla tego tytułu. + Brak zainstalowanych łatek dla tego tytułu. - There are no DLC installed for this title. - Brak zainstalowanych DLC dla tego tytułu. + Brak zainstalowanych DLC dla tego tytułu. - Successfully removed %1 installed DLC. - Pomyślnie usunięto %1 zainstalowane DLC. + Pomyślnie usunięto %1 zainstalowane DLC. - + Delete OpenGL Transferable Shader Cache? Usunąć Transferowalne Shadery OpenGL? - + Delete Vulkan Transferable Shader Cache? Usunąć Transferowalne Shadery Vulkan? - + Delete All Transferable Shader Caches? Usunąć Wszystkie Transferowalne Shadery? - + Remove Custom Game Configuration? Usunąć niestandardową konfigurację gry? - + Remove Cache Storage? Usunąć pamięć podręczną? - + Remove File Usuń plik - + Remove Play Time Data - + Reset play time? - - Error Removing Transferable Shader Cache - Błąd podczas usuwania przenośnej pamięci podręcznej Shaderów. + Błąd podczas usuwania przenośnej pamięci podręcznej Shaderów. - - A shader cache for this title does not exist. - Pamięć podręczna Shaderów dla tego tytułu nie istnieje. + Pamięć podręczna Shaderów dla tego tytułu nie istnieje. - Successfully removed the transferable shader cache. - Pomyślnie usunięto przenośną pamięć podręczną Shaderów. + Pomyślnie usunięto przenośną pamięć podręczną Shaderów. - Failed to remove the transferable shader cache. - Nie udało się usunąć przenośnej pamięci Shaderów. + Nie udało się usunąć przenośnej pamięci Shaderów. - Error Removing Vulkan Driver Pipeline Cache - Błąd podczas usuwania pamięci podręcznej strumienia sterownika Vulkana + Błąd podczas usuwania pamięci podręcznej strumienia sterownika Vulkana - Failed to remove the driver pipeline cache. - Błąd podczas usuwania pamięci podręcznej strumienia sterownika. + Błąd podczas usuwania pamięci podręcznej strumienia sterownika. - - Error Removing Transferable Shader Caches - Błąd podczas usuwania Transferowalnych Shaderów + Błąd podczas usuwania Transferowalnych Shaderów - Successfully removed the transferable shader caches. - Pomyślnie usunięto transferowalne shadery. + Pomyślnie usunięto transferowalne shadery. - Failed to remove the transferable shader cache directory. - Nie udało się usunąć ścieżki transferowalnych shaderów. + Nie udało się usunąć ścieżki transferowalnych shaderów. - - Error Removing Custom Configuration - Błąd podczas usuwania niestandardowej konfiguracji + Błąd podczas usuwania niestandardowej konfiguracji - A custom configuration for this title does not exist. - Niestandardowa konfiguracja nie istnieje dla tego tytułu. + Niestandardowa konfiguracja nie istnieje dla tego tytułu. - Successfully removed the custom game configuration. - Pomyślnie usunięto niestandardową konfiguracje gry. + Pomyślnie usunięto niestandardową konfiguracje gry. - Failed to remove the custom game configuration. - Nie udało się usunąć niestandardowej konfiguracji gry. + Nie udało się usunąć niestandardowej konfiguracji gry. - - + + RomFS Extraction Failed! Wypakowanie RomFS nieudane! - + There was an error copying the RomFS files or the user cancelled the operation. Wystąpił błąd podczas kopiowania plików RomFS lub użytkownik anulował operację. - + Full Pełny - + Skeleton Szkielet - + Select RomFS Dump Mode Wybierz tryb zrzutu RomFS - + Please select the how you would like the RomFS dumped.<br>Full will copy all of the files into the new directory while <br>skeleton will only create the directory structure. Proszę wybrać w jaki sposób chcesz, aby zrzut pliku RomFS został wykonany. <br>Pełna kopia ze wszystkimi plikami do nowego folderu, gdy <br>skielet utworzy tylko strukturę folderu. - + There is not enough free space at %1 to extract the RomFS. Please free up space or select a different dump directory at Emulation > Configure > System > Filesystem > Dump Root Nie ma wystarczająco miejsca w %1 aby wyodrębnić RomFS. Zwolnij trochę miejsca, albo zmień ścieżkę zrzutu RomFs w Emulacja> Konfiguruj> System> System Plików> Źródło Zrzutu - + Extracting RomFS... Wypakowywanie RomFS... - - - - - + + Cancel Anuluj - + RomFS Extraction Succeeded! Wypakowanie RomFS zakończone pomyślnie! - - - + The operation completed successfully. Operacja zakończona sukcesem. - - Integrity verification couldn't be performed! - - - - - File contents were not checked for validity. - - - - - - Verifying integrity... - - - - - - Integrity verification succeeded! - - - - - - Integrity verification failed! - - - - - File contents may be corrupt. - - - - - - - Create Shortcut - Utwórz skrót + Utwórz skrót - - Do you want to launch the game in fullscreen? - - - - Successfully created a shortcut to %1 - Pomyślnie utworzono skrót do %1 + Pomyślnie utworzono skrót do %1 - This will create a shortcut to the current AppImage. This may not work well if you update. Continue? - Utworzy to skrót do obecnego AppImage. Może nie działać dobrze po aktualizacji. Kontynuować? + Utworzy to skrót do obecnego AppImage. Może nie działać dobrze po aktualizacji. Kontynuować? - - Failed to create a shortcut to %1 + Create Icon + Utwórz ikonę + + + Cannot create icon file. Path "%1" does not exist and cannot be created. + Nie można utworzyć pliku ikony. Ścieżka "%1" nie istnieje oraz nie może być utworzona. + + + + Warning: Outdated Game Format - - Create Icon - Utwórz ikonę + + You are using the deconstructed ROM directory format for this game, which is an outdated format that has been superseded by others such as NCA, NAX, XCI, or NSP. Deconstructed ROM directories lack icons, metadata, and update support.<br><br>For an explanation of the various Switch formats Eden supports, <a href='https://eden-emulator.github.io/wiki/overview-of-switch-game-formats'>check out our wiki</a>. This message will not be shown again. + - - Cannot create icon file. Path "%1" does not exist and cannot be created. - Nie można utworzyć pliku ikony. Ścieżka "%1" nie istnieje oraz nie może być utworzona. + + Eden has encountered an error while running the video core. This is usually caused by outdated GPU drivers, including integrated ones. Please see the log for more details. For more information on accessing the log, please see the following page: <a href='https://yuzu-mirror.github.io/help/reference/log-files/'>How to Upload the Log File</a>. + - + + %1<br>Please redump your files or ask on Discord/Revolt for help. + %1 signifies an error string. + + + + Error Opening %1 Błąd podczas otwierania %1 - + Select Directory Wybierz folder... - + Properties Właściwości - + The game properties could not be loaded. Właściwości tej gry nie mogły zostać załadowane. - + Switch Executable (%1);;All Files (*.*) %1 is an identifier for the Switch executable file extensions. Plik wykonywalny Switcha (%1);;Wszystkie pliki (*.*) - + Load File Załaduj plik... - + Open Extracted ROM Directory Otwórz folder wypakowanego ROMu - + Invalid Directory Selected Wybrano niewłaściwy folder - + The directory you have selected does not contain a 'main' file. Folder wybrany przez ciebie nie zawiera 'głownego' pliku. - + Installable Switch File (*.nca *.nsp *.xci);;Nintendo Content Archive (*.nca);;Nintendo Submission Package (*.nsp);;NX Cartridge Image (*.xci) Instalacyjne pliki Switch'a (*.nca *.nsp *.xci);;Archiwum zawartości Nintendo (*.nca);;Pakiet poddany Nintendo (*.nsp);;Obraz z kartridża NX (*.xci) - + Install Files Zainstaluj pliki - + %n file(s) remaining 1 plik został %n plików zostało - %n plików zostało - + Installing file "%1"... Instalowanie pliku "%1"... - - + + Install Results Wynik instalacji - + To avoid possible conflicts, we discourage users from installing base games to the NAND. Please, only use this feature to install updates and DLC. Aby uniknąć ewentualnych konfliktów, odradzamy użytkownikom instalowanie gier na NAND. Proszę, używaj tej funkcji tylko do instalowania łatek i DLC. - + %n file(s) were newly installed 1 nowy plik został zainstalowany %n nowych plików zostało zainstalowane - - %n nowych plików zostało zainstalowane - + %n file(s) were overwritten 1 plik został nadpisany %n plików zostało nadpisane - %n plików zostało nadpisane - + %n file(s) failed to install 1 pliku nie udało się zainstalować %n plików nie udało się zainstalować - %n plików nie udało się zainstalować - + System Application Aplikacja systemowa - + System Archive Archiwum systemu - + System Application Update Aktualizacja aplikacji systemowej - + Firmware Package (Type A) Paczka systemowa (Typ A) - + Firmware Package (Type B) Paczka systemowa (Typ B) - + Game Gra - + Game Update Aktualizacja gry - + Game DLC Dodatek do gry - + Delta Title Tytuł Delta - + Select NCA Install Type... Wybierz typ instalacji NCA... - + Please select the type of title you would like to install this NCA as: (In most instances, the default 'Game' is fine.) Wybierz typ tytułu, do którego chcesz zainstalować ten NCA, jako: (W większości przypadków domyślna "gra" jest w porządku.) - + Failed to Install Instalacja nieudana - + The title type you selected for the NCA is invalid. Typ tytułu wybrany dla NCA jest nieprawidłowy. - + File not found Nie znaleziono pliku - + File "%1" not found Nie znaleziono pliku "%1" - + OK OK - - + + Hardware requirements not met Wymagania sprzętowe nie są spełnione - - + + Your system does not meet the recommended hardware requirements. Compatibility reporting has been disabled. Twój system nie spełnia rekomendowanych wymagań sprzętowych. Raportowanie kompatybilności zostało wyłączone. - + Missing yuzu Account Brakuje konta Yuzu - - In order to submit a game compatibility test case, you must link your eden account.<br><br/>To link your eden account, go to Emulation &gt; Configuration &gt; Web. + + In order to submit a game compatibility test case, you must set up your web token and username.<br><br/>To link your eden account, go to Emulation &gt; Configuration &gt; Web. - - Install decryption keys and restart eden before attempting to install firmware. + + Select Dumped Firmware ZIP - - Firmware installation cancelled, firmware may be in bad state, restart eden or re-install firmware. + + Zipped Archives (*.zip) - - Encryption keys are missing. + + Firmware cleanup failed - - Are you sure you want to close eden? + + Failed to clean up extracted firmware cache. +Check write permissions in the system temp directory and try again. +OS reported error: %1 - - - - eden + + Please install firmware to use the Album applet. - - The currently running application has requested eden to not exit. + + Please install firmware to use the Cabinet applet. + + + + + Please install firmware to use the Mii editor. + + + + + Please install firmware to use the Controller Menu. + + + + + Please install firmware to use the Home Menu. + + + + + Firmware Corrupted + + + + + Firmware Too New + + + + + +Continue anyways? + + + + + Don't show again + + + + + Please install firmware to use Starter. + + + + + Are you sure you want to close Eden? + + + + + + + Eden + + + + + The currently running application has requested Eden to not exit. Would you like to bypass this and exit anyway? + + + Encryption keys are missing. + + In order to submit a game compatibility test case, you must link your yuzu account.<br><br/>To link your yuzu account, go to Emulation &gt; Configuration &gt; Web. Aby przesłać test zgodności gry, musisz połączyć swoje konto yuzu.<br><br/> Aby połączyć swoje konto yuzu, przejdź do opcji Emulacja &gt; Konfiguracja &gt; Sieć. - + Error opening URL Błąd otwierania adresu URL - + Unable to open the URL "%1". Nie można otworzyć adresu URL "%1". - + TAS Recording Nagrywanie TAS - + Overwrite file of player 1? Nadpisać plik gracza 1? - + Invalid config detected Wykryto nieprawidłową konfigurację - + Handheld controller can't be used on docked mode. Pro controller will be selected. Nie można używać kontrolera handheld w trybie zadokowanym. Zostanie wybrany kontroler Pro. - - + + Amiibo Amiibo - - + + The current amiibo has been removed Amiibo zostało "zdjęte" - + Error Błąd - - + + The current game is not looking for amiibos Ta gra nie szuka amiibo - + Amiibo File (%1);; All Files (*.*) Plik Amiibo (%1);;Wszyskie pliki (*.*) - + Load Amiibo Załaduj Amiibo - + Error loading Amiibo data Błąd podczas ładowania pliku danych Amiibo - + The selected file is not a valid amiibo Wybrany plik nie jest poprawnym amiibo - + The selected file is already on use Wybrany plik jest już w użyciu - + An unknown error occurred Wystąpił nieznany błąd - - - Verification failed for the following files: - -%1 - - - - + + Keys not installed - + + + Install decryption keys and restart Eden before attempting to install firmware. + + + + Select Dumped Firmware Source Location - - Installing Firmware... - - - - - - - - Firmware install failed - - - - - Unable to locate potential firmware NCA files - - - - - Failed to delete one or more firmware file. - - - - - One or more firmware files failed to copy into NAND. - - - - - Firmware integrity verification failed! - - - - - Select Dumped Keys Location - - - - - - - Decryption Keys install failed - - - - - prod.keys is a required decryption key file. - - - - - One or more keys failed to copy. - - - - - Decryption Keys install succeeded - - - - - Decryption Keys were successfully installed - - - - - Decryption Keys failed to initialize. Check that your dumping tools are up to date and re-dump keys. - - - - - - - - - - + + + + + + No firmware available - - Please install the firmware to use the Album applet. - - - - + Album Applet - + Album applet is not available. Please reinstall firmware. - - Please install the firmware to use the Cabinet applet. - - - - + Cabinet Applet - + Cabinet applet is not available. Please reinstall firmware. - - Please install the firmware to use the Mii editor. - - - - + Mii Edit Applet - + Mii editor is not available. Please reinstall firmware. - - Please install the firmware to use the Controller Menu. - - - - + Controller Applet Aplet kontrolera - + Controller Menu is not available. Please reinstall firmware. - - Please install the firmware to use the Home Menu. - - - - - + Home Menu Applet - - + Home Menu is not available. Please reinstall firmware. - - Please install the firmware to use Starter. - - - - + Starter Applet - + Starter is not available. Please reinstall firmware. - - Please install firmware to use the home menu. - - - - + Capture Screenshot Zrób zrzut ekranu - + PNG Image (*.png) Obrazek PNG (*.png) - + Update Available - + Update %1 for Eden is available. Would you like to download it? - + TAS state: Running %1/%2 Status TAS: Działa %1%2 - + TAS state: Recording %1 Status TAS: Nagrywa %1 - + TAS state: Idle %1/%2 Status TAS: Bezczynny %1%2 - + TAS State: Invalid Status TAS: Niepoprawny - + &Stop Running &Wyłącz - + &Start &Start - + Stop R&ecording Przestań N&agrywać - + R&ecord N&agraj - + Building: %n shader(s) Budowanie shadera Budowanie: %n shaderów - Budowanie: %n shaderów - + Scale: %1x %1 is the resolution scaling factor Skala: %1x - + Speed: %1% / %2% Prędkość: %1% / %2% - + Speed: %1% Prędkość: %1% @@ -6712,54 +6780,54 @@ Would you like to download it? Gra: %1 FPS (Odblokowane) - + Game: %1 FPS Gra: %1 FPS - + Frame: %1 ms Klatka: %1 ms - + %1 %2 %1 %2 - - + + FSR FSR - + NO AA BEZ AA - + VOLUME: MUTE Głośność: Wyciszony - + VOLUME: %1% Volume percentage (e.g. 50%) Głośność: %1% - + Derivation Components Missing Brak komponentów wyprowadzania - + Select RomFS Dump Target Wybierz cel zrzutu RomFS - + Please select which RomFS you would like to dump. Proszę wybrać RomFS, jakie chcesz zrzucić. @@ -6772,7 +6840,7 @@ Would you like to download it? yuzu - + Are you sure you want to stop the emulation? Any unsaved progress will be lost. Czy na pewno chcesz zatrzymać emulację? Wszystkie niezapisane postępy zostaną utracone. @@ -6785,102 +6853,102 @@ Would you like to bypass this and exit anyway? Czy chcesz to ominąć i mimo to wyjść? - + None Żadna (wyłączony) - + FXAA FXAA - + SMAA SMAA - + Nearest - + Bilinear Bilinearny - + Bicubic Bikubiczny - + Gaussian Kulisty - + ScaleForce ScaleForce - + Area - + Docked Zadokowany - + Handheld Przenośnie - + Normal Normalny - + High Wysoki - + Extreme - + Vulkan Vulkan - + OpenGL - + Null - + GLSL - + GLASM - + SPIRV @@ -6888,13 +6956,13 @@ Czy chcesz to ominąć i mimo to wyjść? GRenderWindow - - + + OpenGL not available! OpenGL niedostępny! - + OpenGL shared contexts are not supported. Współdzielone konteksty OpenGL nie są obsługiwane. @@ -6903,33 +6971,33 @@ Czy chcesz to ominąć i mimo to wyjść? yuzu nie zostało skompilowane z obsługą OpenGL. - - eden has not been compiled with OpenGL support. + + Eden has not been compiled with OpenGL support. - - + + Error while initializing OpenGL! Błąd podczas inicjowania OpenGL! - + Your GPU may not support OpenGL, or you do not have the latest graphics driver. Twoja karta graficzna może nie obsługiwać OpenGL lub nie masz najnowszych sterowników karty graficznej. - + Error while initializing OpenGL 4.6! Błąd podczas inicjowania OpenGL 4.6! - + Your GPU may not support OpenGL 4.6, or you do not have the latest graphics driver.<br><br>GL Renderer:<br>%1 Twoja karta graficzna może nie obsługiwać OpenGL 4.6 lub nie masz najnowszych sterowników karty graficznej.<br><br>GL Renderer:<br>%1 - + Your GPU may not support one or more required OpenGL extensions. Please ensure you have the latest graphics driver.<br><br>GL Renderer:<br>%1<br><br>Unsupported extensions:<br>%2 Twoja karta graficzna może nie obsługiwać co najmniej jednego wymaganego rozszerzenia OpenGL. Upewnij się, że masz najnowsze sterowniki karty graficznej<br><br>GL Renderer:<br>%1<br><br>Nieobsługiwane rozszerzenia:<br>%2 @@ -6937,128 +7005,128 @@ Czy chcesz to ominąć i mimo to wyjść? GameList - + Favorite Ulubione - + Start Game Uruchom grę - + Start Game without Custom Configuration Uruchom grę bez niestandardowej konfiguracji - + Open Save Data Location Otwórz lokalizację zapisów - + Open Mod Data Location Otwórz lokalizację modyfikacji - + Open Transferable Pipeline Cache Otwórz Transferowalną Pamięć Podręczną Pipeline - + Remove Usuń - + Remove Installed Update Usuń zainstalowaną łatkę - + Remove All Installed DLC Usuń wszystkie zainstalowane DLC - + Remove Custom Configuration Usuń niestandardową konfigurację - + Remove Play Time Data - + Remove Cache Storage Usuń pamięć podręczną - + Remove OpenGL Pipeline Cache Usuń Pamięć Podręczną Pipeline OpenGL - + Remove Vulkan Pipeline Cache Usuń Pamięć Podręczną Pipeline Vulkan - + Remove All Pipeline Caches Usuń całą pamięć podręczną Pipeline - + Remove All Installed Contents Usuń całą zainstalowaną zawartość - + Dump RomFS Zrzuć RomFS - + Dump RomFS to SDMC Zrzuć RomFS do SDMC - + Verify Integrity - + Copy Title ID to Clipboard Kopiuj identyfikator gry do schowka - + Navigate to GameDB entry Nawiguj do wpisu kompatybilności gry - + Create Shortcut Utwórz skrót - + Add to Desktop Dodaj do pulpitu - + Add to Applications Menu Dodaj do menu aplikacji - + Configure Game @@ -7067,62 +7135,62 @@ Czy chcesz to ominąć i mimo to wyjść? Właściwości - + Scan Subfolders Skanuj podfoldery - + Remove Game Directory Usuń katalog gier - + ▲ Move Up ▲ Przenieś w górę - + ▼ Move Down ▼ Przenieś w dół - + Open Directory Location Otwórz lokalizacje katalogu - + Clear Wyczyść - + Name Nazwa gry - + Compatibility Kompatybilność - + Add-ons Dodatki - + File type Typ pliku - + Size Rozmiar - + Play time @@ -7130,62 +7198,62 @@ Czy chcesz to ominąć i mimo to wyjść? GameListItemCompat - + Ingame W grze - + Game starts, but crashes or major glitches prevent it from being completed. Gra uruchamia się, ale awarie lub poważne błędy uniemożliwiają jej ukończenie. - + Perfect Perfekcyjnie - + Game can be played without issues. Można grać bez problemów. - + Playable Grywalna - + Game functions with minor graphical or audio glitches and is playable from start to finish. Gra działa z drobnymi błędami graficznymi lub dźwiękowymi oraz jest grywalna od początku aż do końca. - + Intro/Menu Intro/Menu - + Game loads, but is unable to progress past the Start Screen. Gra się ładuje, ale nie może przejść przez ekran początkowy. - + Won't Boot Nie uruchamia się - + The game crashes when attempting to startup. Ta gra się zawiesza przy próbie startu. - + Not Tested Nie testowane - + The game has not yet been tested. Ta gra nie została jeszcze przetestowana. @@ -7193,7 +7261,7 @@ Czy chcesz to ominąć i mimo to wyjść? GameListPlaceholder - + Double-click to add a new folder to the game list Kliknij podwójnie aby dodać folder do listy gier @@ -7201,21 +7269,20 @@ Czy chcesz to ominąć i mimo to wyjść? GameListSearchField - + %1 of %n result(s) 1 z %n rezultatów %1 z %n rezultatów - %1 z %n rezultatów - + Filter: Filter: - + Enter pattern to filter Wpisz typ do filtra @@ -7297,7 +7364,7 @@ Czy chcesz to ominąć i mimo to wyjść? - Failed to announce the room to the public lobby. In order to host a room publicly, you must have a valid eden account configured in Emulation -> Configure -> Web. If you do not want to publish a room in the public lobby, then select Unlisted instead. + Failed to announce the room to the public lobby. In order to host a room publicly, you must have a valid Eden 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: @@ -7311,190 +7378,190 @@ Komunikat debugowania: Hotkeys - + Audio Mute/Unmute Wycisz/Odcisz Audio - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Main Window Okno główne - + Audio Volume Down Zmniejsz głośność dźwięku - + Audio Volume Up Zwiększ głośność dźwięku - + Capture Screenshot Zrób zrzut ekranu - + Change Adapting Filter Zmień filtr adaptacyjny - + Change Docked Mode Zmień tryb dokowania - + Change GPU Accuracy Zmień dokładność GPU - + Configure - + Configure Current Game - + Continue/Pause Emulation Kontynuuj/Zatrzymaj Emulację - + Exit Fullscreen Wyłącz Pełny Ekran + + + Exit Eden + + Exit yuzu Wyjdź z yuzu - - Exit eden - - - - + Fullscreen Pełny ekran - + Load File Załaduj plik... - + Load/Remove Amiibo Załaduj/Usuń Amiibo - + Multiplayer Browse Public Game Lobby - + Multiplayer Create Room - + Multiplayer Direct Connect to Room - + Multiplayer Leave Room - + Multiplayer Show Current Room - + Restart Emulation Zrestartuj Emulację - + Stop Emulation Zatrzymaj Emulację - + TAS Record Nagrywanie TAS - + TAS Reset Reset TAS - + TAS Start/Stop TAS Start/Stop - + Toggle Filter Bar Pokaż pasek filtrowania - + Toggle Framerate Limit Przełącz limit liczby klatek na sekundę - + Toggle Mouse Panning Włącz przesuwanie myszką - + Toggle Renderdoc Capture - + Toggle Status Bar Przełącz pasek stanu @@ -7502,22 +7569,22 @@ Komunikat debugowania: InstallDialog - + Please confirm these are the files you wish to install. Potwierdź, że są to pliki, które chcesz zainstalować. - + Installing an Update or DLC will overwrite the previously installed one. Zainstalowanie łatki lub DLC spowoduje nadpisanie poprzednio zainstalowanego. - + Install Zainstaluj - + Install Files to NAND Zainstaluj pliki na NAND @@ -7525,7 +7592,7 @@ Komunikat debugowania: LimitableInputDialog - + The text can't contain any of the following characters: %1 Tekst nie może zawierać tych znaków: @@ -7672,152 +7739,207 @@ Komunikat debugowania: &Ostatnie Pliki - + + Open &Eden Folders + + + + &Emulation &Emulacja - + &View &Widok - + &Reset Window Size &Zresetuj Rozmiar Okna - + &Debugging &Debugowanie - + Reset Window Size to &720p Zresetuj rozmiar okna do &720p - + Reset Window Size to 720p Zresetuj rozmiar okna do 720p - + Reset Window Size to &900p Zresetuj Rozmiar okna do &900p - + Reset Window Size to 900p Zresetuj Rozmiar okna do 900p - + Reset Window Size to &1080p Zresetuj rozmiar okna do &1080p - + Reset Window Size to 1080p Zresetuj rozmiar okna do 1080p - + &Multiplayer &Multiplayer - + &Tools &Narzędzia - + &Amiibo - + &TAS &TAS - + &Create Home Menu Shortcut - + &Help &Pomoc - + &Install Files to NAND... &Zainstaluj pliki na NAND... - + L&oad File... Z&aładuj Plik... - + Load &Folder... Załaduj &Folder... - + E&xit &Wyjście - + &Pause &Pauza - + &Stop &Stop - + &Verify Installed Contents - - &About eden + + &Root Data Folder - - Open &eden Folder + + &NAND Folder - + + &SDMC Folder + + + + + &Mod Folder + + + + + &Log Folder + + + + + From Folder + + + + + From ZIP + + + + + &X + + + + + X (Twitter) + + + + + &Revolt + + + + + Revolt + + + + + &Eden Dependencies + + + + Open Home Menu - + &Discord - + Open &Setup - + &Desktop - + &Application Menu @@ -7826,97 +7948,97 @@ Komunikat debugowania: &O yuzu - + Single &Window Mode Tryb &Pojedyńczego Okna - + Con&figure... Kon&figuruj... - + Ctrl+, - + Display D&ock Widget Headers Wyłącz Nagłówek Widżetu Docku - + Show &Filter Bar Pokaż &Pasek Filtrów - + Show &Status Bar Pokaż &Pasek Statusu - + Show Status Bar Pokaż pasek statusu - + &Browse Public Game Lobby &Przeglądaj publiczne lobby gier - + &Create Room &Utwórz Pokój - + &Leave Room &Wyjdź z Pokoju - + &Direct Connect to Room &Bezpośrednie połączenie z pokojem - + &Show Current Room &Pokaż bieżący pokój - + F&ullscreen P&ełny Ekran - + &Restart &Restart - + Load/Remove &Amiibo... Załaduj/Usuń &Amiibo... - + &Report Compatibility &Zraportuj Kompatybilność - + Open &Mods Page Otwórz &Stronę z Modami - + Open &Quickstart Guide Otwórz &Poradnik Szybkiego Startu - + &FAQ &FAQ @@ -7925,77 +8047,82 @@ Komunikat debugowania: Otwórz &Folder yuzu - + &Capture Screenshot &Zrób Zdjęcie - + Open &Album - + &Set Nickname and Owner - + &Delete Game Data - + &Restore Amiibo - + &Format Amiibo - + Open &Mii Editor - + &Configure TAS... &Skonfiguruj TAS - + Configure C&urrent Game... Skonfiguruj O&becną Grę... - + &Start &Start - + &Reset &Zresetuj - + R&ecord N&agraj - + Open &Controller Menu - + Install Firmware - + + &About Eden + + + + Install Decryption Keys @@ -8003,26 +8130,36 @@ Komunikat debugowania: MicroProfileDialog - &MicroProfile - &MikroProfil + &MikroProfil MigrationWorker - + Data was migrated successfully. - + Linking the old directory failed. You may need to re-run with administrative privileges on Windows. OS gave error: %1 - + + + +Note that your configuration and data will be shared with %1. +If this is not desirable, delete the following files: +%2 +%3 +%4 + + + + If you wish to clean up the files which were left in the old data location, you can do so by deleting the following directory: @@ -8082,37 +8219,37 @@ If you wish to clean up the files which were left in the old data location, you MultiplayerState - + Current connection status Bieżący stan połączenia - + Not Connected. Click here to find a room! Nie połączono. Kliknij tutaj aby znaleźć pokój! - + Not Connected Nie połączono - + Connected Połączony - + New Messages Received Otrzymano nowe wiadomości - + Error Błąd - + Failed to update the room information. Please check your Internet connection and try hosting the room again. Debug Message: Nie udało się zaktualizować informacji o pokoju. Sprawdź swoje połączenie internetowe i spróbuj ponownie zahostować pokój. @@ -8304,56 +8441,56 @@ p, li { white-space: pre-wrap; } Nie gra w żadną grę - + Installed SD Titles Zainstalowane tytuły SD - + Installed NAND Titles Zainstalowane tytuły NAND - + System Titles Tytuły systemu - + Add New Game Directory Dodaj nowy katalog gier - + Favorites Ulubione - - + + Shift Shift - - + + Ctrl Ctrl - - + + Alt Alt - - - - + + + + [not set] [nie ustawione] @@ -8364,14 +8501,14 @@ p, li { white-space: pre-wrap; } Krzyżak %1 %2 - - - - - - - - + + + + + + + + Axis %1%2 Oś %1%2 @@ -8382,357 +8519,357 @@ p, li { white-space: pre-wrap; } Przycisk %1 - - - - - - + + + + + + [unknown] [nieznane] - - - + + + Left Lewo - - - + + + Right Prawo - - - + + + Down Dół - - - + + + Up Góra - - + + Z Z - - + + R R - - + + L L - - + + A A - - + + B B - - + + X X - - + + Y Y - - + + Start Start - - + + L1 L1 - - + + L2 L2 - - + + L3 L3 - - + + R1 R1 - - + + R2 R2 - - + + R3 R3 - - + + Circle Kółko - - + + Cross Krzyż - - + + Square Kwadrat - - + + Triangle Trójkąt - - + + Share Udostępnij - - + + Options Opcje - - + + [undefined] [niezdefiniowane] - + %1%2 %1%2 - - + + [invalid] [niepoprawne] - - + + %1%2Hat %3 %1%2Drążek %3 - - - + + + %1%2Axis %3 %1%2Oś %3 - - + + %1%2Axis %3,%4,%5 %1%2Oś %3,%4,%5 - - + + %1%2Motion %3 %1%2Ruch %3 - - + + %1%2Button %3 %1%2Przycisk %3 - - + + [unused] [nieużywane] - + ZR ZR - + ZL ZL - + SR SR - + SL SL - + Stick L Lewa gałka - + Stick R Prawa gałka - + Plus Plus - + Minus Minus - - + + Home Home - + Capture Zrzut ekranu - + Touch Dotyk - + Wheel Indicates the mouse wheel Kółko - + Backward Do tyłu - + Forward Do przodu - + Task Zadanie - + Extra Dodatkowe - + %1%2%3%4 %1%2%3%4 - - + + %1%2%3Hat %4 %1%2%3Krzyżak %4 - - + + %1%2%3Axis %4 %1%2%3Oś %4 - - + + %1%2%3Button %4 %1%2%3Przycisk %4 - - + + Migration - + - - + + No - + You can manually re-trigger this prompt by deleting the new config directory: %1 - + Migrating - + Migrating, this may take a while... @@ -8850,6 +8987,298 @@ p, li { white-space: pre-wrap; } Czy chcesz odnowić to amiibo? + + QtCommon::Content + + + Installing Firmware... + + + + + + + Cancel + Anuluj + + + + Firmware integrity verification failed! + + + + + + Verification failed for the following files: + +%1 + + + + + + Verifying integrity... + + + + + + Integrity verification succeeded! + + + + + + The operation completed successfully. + Operacja zakończona sukcesem. + + + + + Integrity verification failed! + + + + + File contents may be corrupt or missing. + + + + + Integrity verification couldn't be performed + + + + + Firmware installation cancelled, firmware may be in a bad state or corrupted. File contents could not be checked for validity. + + + + + Select Dumped Keys Location + + + + + Decryption Keys install succeeded + + + + + Decryption Keys were successfully installed + + + + + Decryption Keys install failed + + + + + QtCommon::Game + + + Error Removing Contents + Błąd podczas usuwania zawartości + + + + Error Removing Update + Błąd podczas usuwania aktualizacji + + + + Error Removing DLC + Błąd podczas usuwania dodatków + + + + The base game is not installed in the NAND and cannot be removed. + Gra nie jest zainstalowana w NAND i nie może zostać usunięta. + + + + There is no update installed for this title. + Brak zainstalowanych łatek dla tego tytułu. + + + + There are no DLCs installed for this title. + + + + + + + + Successfully Removed + Pomyślnie usunięto + + + + Successfully removed %1 installed DLC. + Pomyślnie usunięto %1 zainstalowane DLC. + + + + + Error Removing Transferable Shader Cache + Błąd podczas usuwania przenośnej pamięci podręcznej Shaderów. + + + + + A shader cache for this title does not exist. + Pamięć podręczna Shaderów dla tego tytułu nie istnieje. + + + + Successfully removed the transferable shader cache. + Pomyślnie usunięto przenośną pamięć podręczną Shaderów. + + + + Failed to remove the transferable shader cache. + Nie udało się usunąć przenośnej pamięci Shaderów. + + + + Error Removing Vulkan Driver Pipeline Cache + Błąd podczas usuwania pamięci podręcznej strumienia sterownika Vulkana + + + + Failed to remove the driver pipeline cache. + Błąd podczas usuwania pamięci podręcznej strumienia sterownika. + + + + + Error Removing Transferable Shader Caches + Błąd podczas usuwania Transferowalnych Shaderów + + + + Successfully removed the transferable shader caches. + Pomyślnie usunięto transferowalne shadery. + + + + Failed to remove the transferable shader cache directory. + Nie udało się usunąć ścieżki transferowalnych shaderów. + + + + + Error Removing Custom Configuration + Błąd podczas usuwania niestandardowej konfiguracji + + + + A custom configuration for this title does not exist. + Niestandardowa konfiguracja nie istnieje dla tego tytułu. + + + + Successfully removed the custom game configuration. + Pomyślnie usunięto niestandardową konfiguracje gry. + + + + Failed to remove the custom game configuration. + Nie udało się usunąć niestandardowej konfiguracji gry. + + + + Reset Metadata Cache + Zresetuj pamięć podręczną metadanych + + + + The metadata cache is already empty. + Pamięć podręczna metadanych jest już pusta. + + + + The operation completed successfully. + Operacja zakończona sukcesem. + + + + The metadata cache couldn't be deleted. It might be in use or non-existent. + Nie udało się usunąć pamięci podręcznej metadanych. Może być używana lub nie istnieje. + + + + Create Shortcut + Utwórz skrót + + + + Do you want to launch the game in fullscreen? + + + + + Shortcut Created + + + + + Successfully created a shortcut to %1 + Pomyślnie utworzono skrót do %1 + + + + Shortcut may be Volatile! + + + + + This will create a shortcut to the current AppImage. This may not work well if you update. Continue? + Utworzy to skrót do obecnego AppImage. Może nie działać dobrze po aktualizacji. Kontynuować? + + + + Failed to Create Shortcut + + + + + Failed to create a shortcut to %1 + + + + + Create Icon + Utwórz ikonę + + + + Cannot create icon file. Path "%1" does not exist and cannot be created. + Nie można utworzyć pliku ikony. Ścieżka "%1" nie istnieje oraz nie może być utworzona. + + + + No firmware available + + + + + Please install firmware to use the home menu. + + + + + Home Menu Applet + + + + + Home Menu is not available. Please reinstall firmware. + + + QtControllerSelectorDialog @@ -9145,7 +9574,7 @@ Spróbuj ponownie lub skontaktuj się z twórcą oprogramowania. QtProfileSelectionDialog - + %1 %2 %1 is the profile username, %2 is the formatted UUID (e.g. 00112233-4455-6677-8899-AABBCCDDEEFF)) @@ -9153,7 +9582,7 @@ Spróbuj ponownie lub skontaktuj się z twórcą oprogramowania. %2 - + Users Użytkownicy @@ -9277,7 +9706,7 @@ p, li { white-space: pre-wrap; } WaitTreeCallstack - + Call stack Stos wywołań @@ -9285,12 +9714,12 @@ p, li { white-space: pre-wrap; } WaitTreeSynchronizationObject - + [%1] %2 - + waited by no thread czekam bez żadnego wątku @@ -9298,102 +9727,102 @@ p, li { white-space: pre-wrap; } WaitTreeThread - + runnable Jakoś działa - + paused Spauzowana - + sleeping spanie - + waiting for IPC reply czekam na odpowiedź IPC - + waiting for objects oczekiwanie na obiekty - + waiting for condition variable oczekiwanie na zmienną warunkową - + waiting for address arbiter czekam na arbitra adresu - + waiting for suspend resume czekam na zawieszenie wznowienia - + waiting oczekiwanie - + initialized zainicjowano - + terminated zakończony - + unknown nieznany - + PC = 0x%1 LR = 0x%2 PC = 0x%1 LR = 0x%2 - + ideal Idealnie - + core %1 rdzeń %1 - + processor = %1 procesor = %1 - + affinity mask = %1 maska powinowactwa = %1 - + thread id = %1 identyfikator wątku = %1 - + priority = %1(current) / %2(normal) piorytet = %1(obecny) / %2(normalny) - + last running ticks = %1 ostatnie działające kleszcze = %1 @@ -9401,7 +9830,7 @@ p, li { white-space: pre-wrap; } WaitTreeThreadList - + waited by thread czekanie na wątek @@ -9409,7 +9838,7 @@ p, li { white-space: pre-wrap; } WaitTreeWidget - + &Wait Tree &Drzewo Czekania diff --git a/dist/languages/pt_BR.ts b/dist/languages/pt_BR.ts index 9fa987646b..79e88d1eb7 100644 --- a/dist/languages/pt_BR.ts +++ b/dist/languages/pt_BR.ts @@ -13,12 +13,12 @@ - About eden + About Eden - <html><head/><body><p><span style=" font-size:28pt;">eden</span></p></body></html> + <html><head/><body><p><span style=" font-size:28pt;">Eden</span></p></body></html> @@ -34,8 +34,8 @@ p, li { white-space: pre-wrap; } hr { height: 1px; border-width: 0; } li.unchecked::marker { content: "\2610"; } li.checked::marker { content: "\2612"; } -</style></head><body style=" font-family:'Adwaita Sans'; font-size:11pt; font-weight:400; font-style:normal;"> -<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;">eden is an experimental open-source emulator for the Nintendo Switch licensed under GPLv3.0+ which is based on the yuzu emulator which ended development back in March 2024. <br /><br />This software should not be used to play games you have not legally obtained.</span></p></body></html> +</style></head><body style=" font-family:'Noto Sans'; font-size:9pt; font-weight:400; font-style:normal;"> +<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;">Eden is an experimental open-source emulator for the Nintendo Switch licensed under GPLv3.0+ which is based on the yuzu emulator which ended development back in March 2024. <br /><br />This software should not be used to play games you have not legally obtained.</span></p></body></html> @@ -72,32 +72,32 @@ p, li { white-space: pre-wrap; } CalibrationConfigurationDialog - + Communicating with the server... Comunicando com o 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 @@ -397,134 +397,134 @@ Isto banirá tanto o nome de usuário do fórum como o endereço IP. ConfigurationShared - + % % - + Amiibo editor Editor de Amiibo - + Controller configuration Configuração de controles - + Data erase Apagamento de dados - + Error Erro - + Net connect Conectar à rede - + Player select Seleção de jogador - + Software keyboard Teclado do software - + Mii Edit Editar Mii - + Online web Rede online - + Shop Loja - + Photo viewer Visualizador de imagens - + Offline web Rede offline - + Login share Compartilhamento de Login - + Wifi web auth Autenticação web por Wifi - + My page Minha página - + Output Engine: Mecanismo de Saída: - + Output Device: Dispositivo de Saída - + Input Device: Dispositivo de Entrada - + Mute audio Mutar Áudio - + Volume: Volume: - + Mute audio when in background Silencia o áudio quando a janela ficar em segundo plano - + Multicore CPU Emulation Emulação de CPU multinúcleo - + This option increases CPU emulation thread use from 1 to the Switch’s maximum of 4. This is mainly a debug option and shouldn’t be disabled. Esta opção aumenta o uso de threads de emulação da CPU de 1 para o máximo de 4 do switch. Isso é prioritariamente uma opção de depuração e não deve ser desabilitada. - + Memory Layout Layout de Memória - + Increases the amount of emulated RAM from the stock 4GB of the retail Switch to the developer kit's 8/6GB. It’s doesn’t improve stability or performance and is intended to let big texture mods fit in emulated RAM. Enabling it will increase memory use. It is not recommended to enable unless a specific game with a texture mod needs it. @@ -533,12 +533,12 @@ Isso não melhora a estabilidade ou performance e só serve para comportar grand Habilitar essa opção aumentará o uso de memória. Não é recomendado habilitar isso a não ser que um jogo específico com um mod de textura precise. - + Limit Speed Percent Limitar percentual de velocidade - + Controls the game's maximum rendering speed, but it’s up to each game if it runs faster or not. 200% for a 30 FPS game is 60 FPS, and for a 60 FPS game it will be 120 FPS. Disabling it means unlocking the framerate to the maximum your PC can reach. @@ -547,141 +547,118 @@ Disabling it means unlocking the framerate to the maximum your PC can reach. - - Synchronize Core Speed - - - - - Synchronizes CPU core speed with the game's maximum rendering speed to boost FPS without affecting game speed (animations, physics, etc.). -Compatibility varies by game; many (especially older ones) may not respond well. -Can help reduce stuttering at lower framerates. - - - - + Accuracy: Precisão: - + This setting controls the accuracy of the emulated CPU. Don't change this unless you know what you are doing. Esta configuração controla a precisão da CPU emulada. Não altere isso a menos que saiba o que está fazendo. - - + + Backend: Backend: - - Fast CPU Time - - - - - Overclocks the emulated CPU to remove some FPS limiters. Weaker CPUs may see reduced performance, and certain games may behave improperly. -Use Boost (1700MHz) to run at the Switch's highest native clock, or Fast (2000MHz) to run at 2x clock. - - - - + Unfuse FMA (improve performance on CPUs without FMA) Não usar FMA (melhora o desempenho em CPUs sem FMA) - + This option improves speed by reducing accuracy of fused-multiply-add instructions on CPUs without native FMA support. Essa opção melhora a velocidade ao reduzir a precisão de instruções de fused-multiply-add em CPUs sem suporte nativo ao FMA. - + Faster FRSQRTE and FRECPE FRSQRTE e FRECPE mais rápidos - + This option improves the speed of some approximate floating-point functions by using less accurate native approximations. Essa opção melhora a velocidade de algumas funções aproximadas de pontos flutuantes ao usar aproximações nativas menos precisas. - + Faster ASIMD instructions (32 bits only) Instruções ASIMD mais rápidas (apenas 32 bits) - + This option improves the speed of 32 bits ASIMD floating-point functions by running with incorrect rounding modes. Essa opção melhora a velocidade de funções de pontos flutuantes de 32 bits ASIMD ao executá-las com modos de arredondamento incorretos. - + Inaccurate NaN handling Tratamento impreciso de NaN - + This option improves speed by removing NaN checking. Please note this also reduces accuracy of certain floating-point instructions. Esta opção melhora a velocidade ao remover a checagem NaN. Por favor, note que isso também reduzirá a precisão de certas instruções de ponto flutuante. - + Disable address space checks Desativar a verificação do espaço de endereços - + This option improves speed by eliminating a safety check before every memory read/write in guest. Disabling it may allow a game to read/write the emulator's memory. Esta opção melhora a velocidade ao eliminar a checagem de segurança antes de cada leitura/escrita de memória no dispositivo convidado. Desabilitar essa opção pode permitir que um jogo leia/escreva na memória do emulador. - + Ignore global monitor Ignorar monitor global - + This option improves speed by relying only on the semantics of cmpxchg to ensure safety of exclusive access instructions. Please note this may result in deadlocks and other race conditions. Esta opção melhora a velocidade ao depender apenas das semânticas do cmpxchg pra garantir a segurança das instruções de acesso exclusivo. Por favor, note que isso pode resultar em travamentos e outras condições de execução. - + API: API: - + Switches between the available graphics APIs. Vulkan is recommended in most cases. Alterna entre as APIs gráficas disponíveis. Vulkan é a recomendada na maioria dos casos. - + Device: Dispositivo: - + This setting selects the GPU to use with the Vulkan backend. Esta opção seleciona a GPU a ser usada com a Vulkan. - + Shader Backend: Backend de Shaders: - + The shader backend to use for the OpenGL renderer. GLSL is the fastest in performance and the best in rendering accuracy. GLASM is a deprecated NVIDIA-only backend that offers much better shader building performance at the cost of FPS and rendering accuracy. @@ -692,12 +669,12 @@ GLASM é um backend exclusivo descontinuado da NVIDIA que oferece uma performanc SPIR-V é o mais rápido ao compilar shaders, mas produz resultados ruins na maioria dos drivers de GPU. - + Resolution: Resolução: - + Forces the game to render at a different resolution. Higher resolutions require much more VRAM and bandwidth. Options lower than 1X can cause rendering issues. @@ -706,27 +683,27 @@ Resoluções maiores requerem mais VRAM e largura de banda. Opções menores do que 1X podem causar problemas na renderização. - + Window Adapting Filter: Filtro de adaptação de janela: - + FSR Sharpness: Nitidez do FSR: - + Determines how sharpened the image will look while using FSR’s dynamic contrast. Determina a nitidez da imagem ao utilizar o contraste dinâmico do FSR. - + Anti-Aliasing Method: Método de Anti-Aliasing: - + The anti-aliasing method to use. SMAA offers the best quality. FXAA has a lower performance impact and can produce a better and more stable picture under very low resolutions. @@ -735,12 +712,12 @@ SMAA oferece a melhor qualidade. FXAA tem um impacto menor na performance e pode produzir uma imagem melhor e mais estável em resoluções muito baixas. - + Fullscreen Mode: Modo de Tela Cheia: - + The method used to render the window in fullscreen. Borderless offers the best compatibility with the on-screen keyboard that some games request for input. Exclusive fullscreen may offer better performance and better Freesync/Gsync support. @@ -749,12 +726,12 @@ Sem borda oferece a melhor compatibilidade com o teclado na tela que alguns jogo Tela cheia exclusiva pode oferecer melhor performance e melhor suporte a Freesync/Gsync. - + Aspect Ratio: Proporção de Tela: - + Stretches the game to fit the specified aspect ratio. Switch games only support 16:9, so custom game mods are required to get other ratios. Also controls the aspect ratio of captured screenshots. @@ -763,49 +740,36 @@ Jogos do Switch somente suportam 16:9, por isso mods customizados por jogo são Isso também controla a proporção de aspecto de capturas de telas. - + Use disk pipeline cache Usar cache de pipeline em disco - + Allows saving shaders to storage for faster loading on following game boots. Disabling it is only intended for debugging. Permite guardar os shaders para carregar os jogos nas execuções seguintes. Desabiltar essa opção só serve para propósitos de depuração. - - Optimize SPIRV output shader - - - - - Runs an additional optimization pass over generated SPIRV shaders. -Will increase time required for shader compilation. -May slightly improve performance. -This feature is experimental. - - - - + Use asynchronous GPU emulation Usar emulação assíncrona da GPU - + Uses an extra CPU thread for rendering. This option should always remain enabled. Usa uma thread de CPU extra para renderização. Esta opção deve estar sempre habilitada. - + NVDEC emulation: Emulação NVDEC: - + Specifies how videos should be decoded. It can either use the CPU or the GPU for decoding, or perform no decoding at all (black screen on videos). In most cases, GPU decoding provides the best performance. @@ -814,12 +778,12 @@ Tanto a CPU quanto a GPU podem ser utilizadas para decodificação, ou não deco Na maioria dos casos, a decodificação pela GPU fornece uma melhor performance. - + ASTC Decoding Method: Método de Decodificação ASTC: - + This option controls how ASTC textures should be decoded. CPU: Use the CPU for decoding, slowest but safest method. GPU: Use the GPU's compute shaders to decode ASTC textures, recommended for most games and users. @@ -832,34 +796,33 @@ CPU de Forma Assíncrona: Usa a CPU para decodificar texturas ASTC à medida que decodificação ASTC ao custo de problemas na renderização enquanto as texturas estão sendo decodificadas. - + ASTC Recompression Method: Método de Recompressão ASTC: - + Almost all desktop and laptop dedicated GPUs lack support for ASTC textures, forcing the emulator to decompress to an intermediate format any card supports, RGBA8. This option recompresses RGBA8 to either the BC1 or BC3 format, saving VRAM but negatively affecting image quality. Quase todas as GPUs de desktop e laptop não possuem suporte para texturas ASTC, o que força o emulador a descompactá-las para um formato intermediário que qualquer placa suporta, o RGBA8. Esta opção recompacta o RGBA8 ou pro formato BC1 ou pro BC3, economizando VRAM mas afetando negativamente a qualidade da imagem. - + VRAM Usage Mode: Modo de Uso da VRAM: - Selects whether the emulator should prefer to conserve memory or make maximum usage of available video memory for performance. Has no effect on integrated graphics. Aggressive mode may severely impact the performance of other applications such as recording software. - Define se o emulador deve preferir conservar ou fazer o uso máximo da memória de vídeo disponível para melhorar a performance. Não tem efeito em gráficos integrados. O modo Agressivo pode impactar fortemente na performance de outras aplicações, tipo programas de gravação de tela. + Define se o emulador deve preferir conservar ou fazer o uso máximo da memória de vídeo disponível para melhorar a performance. Não tem efeito em gráficos integrados. O modo Agressivo pode impactar fortemente na performance de outras aplicações, tipo programas de gravação de tela. - + VSync Mode: Modo de VSync: - + FIFO (VSync) does not drop frames or exhibit tearing but is limited by the screen refresh rate. FIFO Relaxed is similar to FIFO but allows tearing as it recovers from a slow down. Mailbox can have lower latency than FIFO and does not tear but may drop frames. @@ -870,51 +833,49 @@ Caixa de entrada pode ter a latência mais baixa do que o FIFO e não causa tear Imediata (sem sincronização) simplesmente apresenta o que estiver disponível e pode exibir tearing. - + Enable asynchronous presentation (Vulkan only) Ativar apresentação assíncrona (Somente Vulkan) - + Slightly improves performance by moving presentation to a separate CPU thread. Melhora ligeiramente o desempenho ao mover a apresentação para uma thread de CPU separada. - + Force maximum clocks (Vulkan only) Forçar velocidade máxima (somente Vulkan) - + Runs work in the background while waiting for graphics commands to keep the GPU from lowering its clock speed. Executa trabalho em segundo plano aguardando pelos comandos gráficos para evitar a GPU de reduzir sua velocidade. - + Anisotropic Filtering: Filtragem anisotrópica: - + Controls the quality of texture rendering at oblique angles. It’s a light setting and safe to set at 16x on most GPUs. Controla a qualidade da renderização de texturas em ângulos oblíquos. É uma configuração leve, e é seguro deixar em 16x na maioria das GPUs. - Accuracy Level: - Nível de precisão: + Nível de precisão: - GPU emulation accuracy. Most games render fine with Normal, but High is still required for some. Particles tend to only render correctly with High accuracy. Extreme should only be used for debugging. This option can be changed while playing. Some games may require booting on high to render properly. - Precisão da emulação da GPU. + Precisão da emulação da GPU. A maioria dos jogos renderiza bem na precisão Normal, mas a Alta ainda é obrigatória para alguns. Partículas tendem a renderizar corretamente somente com a precisão Alta. Extrema só deve ser utilizada para depuração. @@ -922,12 +883,12 @@ Esta opção pode ser alterada durante o jogo. Alguns jogos podem exigir serem iniciados na precisão alta pra renderizarem corretamente. - + Use asynchronous shader building (Hack) Usar compilação assíncrona de shaders (Hack) - + Enables asynchronous shader compilation, which may reduce shader stutter. This feature is experimental. Ativa a compilação de shaders assíncrona, o que pode reduzir engasgos. @@ -942,24 +903,24 @@ Esta opção é experimental. Ativa um tempo de resposta rápido da GPU. Esta opção forçará a maioria dos jogos a rodar em sua resolução nativa mais alta. - + Use Vulkan pipeline cache Utilizar cache de pipeline do Vulkan - + Enables GPU vendor-specific pipeline cache. This option can improve shader loading time significantly in cases where the Vulkan driver does not store pipeline cache files internally. Ativa o cache de pipeline da fabricante da GPU. Esta opção pode melhorar o tempo de carregamento de shaders significantemente em casos onde o driver Vulkan não armazena o cache de pipeline internamente. - + Enable Compute Pipelines (Intel Vulkan Only) Habilitar Pipelines de Computação (Somente Vulkan da Intel) - + Enable compute pipelines, required by some games. This setting only exists for Intel proprietary drivers, and may crash if enabled. Compute pipelines are always enabled on all other drivers. @@ -968,111 +929,111 @@ Essa configuração só existe para drivers proprietários Intel, e pode travar Pipelines de computação estão sempre habilitadas em todos os outros drivers. - + Enable Reactive Flushing Ativar Flushing Reativo - + Uses reactive flushing instead of predictive flushing, allowing more accurate memory syncing. Usa flushing reativo ao invés de flushing preditivo, permitindo mais precisão na sincronização da memória. - + Sync to framerate of video playback Sincronizar com o framerate da reprodução de vídeo - + Run the game at normal speed during video playback, even when the framerate is unlocked. Executa o jogo na velocidade normal durante a reprodução de vídeo, mesmo se o framerate estiver desbloqueado. - + Barrier feedback loops Ciclos de feedback de barreira - + Improves rendering of transparency effects in specific games. Melhora a renderização de efeitos de transparência em jogos específicos. - + RNG Seed Semente RNG - + Controls the seed of the random number generator. Mainly used for speedrunning purposes. Controla a semente do gerador de números aleatórios. Usado principalmente para propósitos de speedrunning. - + Device Name Nome do Dispositivo - + The name of the emulated Switch. O nome do Switch emulado. - + Custom RTC Date: Data personalizada do sistema: - + This option allows to change the emulated clock of the Switch. Can be used to manipulate time in games. Esta opção permite alterar o relógio do Switch emulado. Pode ser utilizada para manipular o tempo nos jogos. - + Language: Idioma: - + Note: this can be overridden when region setting is auto-select Nota: isso pode ser substituído caso a configuração de região automática esteja ativada - + Region: Região: - + The region of the emulated Switch. A região do Switch emulado. - + Time Zone: Fuso horário: - + The time zone of the emulated Switch. O fuso horário do Switch emulado. - + Sound Output Mode: Modo de Saída de Som: - + Console Mode: Modo Console: - + Selects if the console is emulated in Docked or Handheld mode. Games will change their resolution, details and supported controllers and depending on this setting. Setting to Handheld can help improve performance for low end systems. @@ -1081,7 +1042,7 @@ Os jogos mudarão suas resoluções, detalhes e controles suportados de acordo c Configurar essa opção para o Modo Portátil pode ajudar a melhorar a performance em sistemas mais fracos. - + Prompt for user on game boot Escolher um usuário ao iniciar um jogo @@ -1090,7 +1051,7 @@ Configurar essa opção para o Modo Portátil pode ajudar a melhorar a performan Pede para selecionar um perfil de usuário a cada boot, útil se várias pessoas utilizam o yuzu no mesmo PC. - + Pause emulation when in background Pausar emulação quando a janela ficar em segundo plano @@ -1099,843 +1060,992 @@ Configurar essa opção para o Modo Portátil pode ajudar a melhorar a performan Esta opção pausa o yuzu quando outras janelas estão ativas. - - Fast GPU Time (Hack) - - - - - Overclocks the emulated GPU to increase dynamic resolution and render distance. -Use 128 for maximal performance and 512 for maximal graphics fidelity. - - - - - Extended Dynamic State - - - - - Enables the VkExtendedDynamicState* extensions. -Higher dynamic states will generally improve performance, but may cause issues on certain games or devices. - - - - - Provoking Vertex - - - - - Improves lighting and vertex handling in certain games. -Only Vulkan 1.0+ devices support this extension. - - - - - Descriptor Indexing - - - - - Improves texture & buffer handling and the Maxwell translation layer. -Some Vulkan 1.1+ and all 1.2+ devices support this extension. - - - - - Ask to select a user profile on each boot, useful if multiple people use eden on the same PC. - - - - - This setting pauses eden when focusing other windows. - - - - + Confirm before stopping emulation Confirmar antes de parar a emulação - + This setting overrides game prompts asking to confirm stopping the game. Enabling it bypasses such prompts and directly exits the emulation. Esta configuração desconsidera as solicitações dos jogos que pedem pra confirmarem a interrupção deles. Ativar essa configuração ignora essas solicitações e sai da emulação direto. - + Hide mouse on inactivity Esconder cursor do mouse enquanto ele estiver inativo - + This setting hides the mouse after 2.5s of inactivity. Esta configuração esconde o mouse após 2,5s de inatividade. - + Disable controller applet Desativar miniaplicativo dos controles - + Forcibly disables the use of the controller applet by guests. When a guest attempts to open the controller applet, it is immediately closed. Força a desativação do uso do miniaplicativo dos controles pelos dispositivos convidados. Quando um dispositivo convidado tenta abrir o miniaplicativo dos controles, ele é imediatamente fechado. - - Check for updates - - - - - Whether or not to check for updates upon startup. - - - - + Enable Gamemode Ativar Gamemode - + Custom frontend Frontend customizado - + Real applet Miniaplicativo real - - Never - - - - - On Load - - - - - Always - - - - + CPU CPU - + GPU GPU - + CPU Asynchronous CPU Assíncrona - + Uncompressed (Best quality) Descompactado (Melhor qualidade) - + BC1 (Low quality) BC1 (Baixa qualidade) - + BC3 (Medium quality) BC3 (Média qualidade) - + Conservative Conservador - + Aggressive Agressivo - + OpenGL OpenGL - + Vulkan Vulkan - + Null Nenhuma (desativado) - + GLSL GLSL - + GLASM (Assembly Shaders, NVIDIA Only) GLASM (Shaders Assembly, apenas NVIDIA) - + SPIR-V (Experimental, AMD/Mesa Only) SPIR-V (Experimental, Somente para AMD/Mesa) - + Normal Normal - + High Alta - + Extreme Extrema - + Auto Automática - + Accurate Precisa - + Unsafe Não segura - + Paranoid (disables most optimizations) Paranoica (desativa a maioria das otimizações) - + Dynarmic Dynarmic - + NCE NCE - + Borderless Windowed Janela em Tela Cheia - + Exclusive Fullscreen Tela Cheia Exclusiva - + No Video Output Sem Saída de Vídeo - + CPU Video Decoding Decodificação de Vídeo pela CPU - + GPU Video Decoding (Default) Decodificação de Vídeo pela GPU (Padrão) - - 0.25X (180p/270p) [EXPERIMENTAL] - - - - + 0.5X (360p/540p) [EXPERIMENTAL] 0.5X (360p/540p) [EXPERIMENTAL] - + 0.75X (540p/810p) [EXPERIMENTAL] 0.75X (540p/810p) [EXPERIMENTAL] - + 1X (720p/1080p) 1X (720p/1080p) - + 1.5X (1080p/1620p) [EXPERIMENTAL] 1.5X (1080p/1620p) [EXPERIMENTAL] - + 2X (1440p/2160p) 2X (1440p/2160p) - + 3X (2160p/3240p) 3X (2160p/3240p) - + 4X (2880p/4320p) 4X (2880p/4320p) - + 5X (3600p/5400p) 5X (3600p/5400p) - + 6X (4320p/6480p) 6X (4320p/6480p) - + 7X (5040p/7560p) 7X (5040p/7560p) - + 8X (5760p/8640p) 8X (5760p/8640p) - + Nearest Neighbor Vizinho mais próximo - + Bilinear Bilinear - + Bicubic Bicúbico - + Gaussian Gaussiano - + ScaleForce ScaleForce - + AMD FidelityFX™️ Super Resolution AMD FidelityFX™️ Super Resolution - - Area - - - - + None Nenhum - + FXAA FXAA - + SMAA SMAA - + Default (16:9) Padrão (16:9) - + Force 4:3 Forçar 4:3 - + Force 21:9 Forçar 21:9 - + Force 16:10 Forçar 16:10 - + Stretch to Window Esticar à janela - + Automatic Automática - + + Default Padrão - + + Synchronize Core Speed + + + + + Synchronizes CPU core speed with the game's maximum rendering speed to boost FPS without affecting game speed (animations, physics, etc.). +Compatibility varies by game; many (especially older ones) may not respond well. +Can help reduce stuttering at lower framerates. + + + + + Fast CPU Time + + + + + Overclocks the emulated CPU to remove some FPS limiters. Weaker CPUs may see reduced performance, and certain games may behave improperly. +Use Boost (1700MHz) to run at the Switch's highest native clock, or Fast (2000MHz) to run at 2x clock. + + + + + Custom CPU Ticks + + + + + Set a custom value of CPU ticks. Higher values can increase performance, but may also cause the game to freeze. A range of 77–21000 is recommended. + + + + + Enable Host MMU Emulation (fastmem) + + + + + This optimization speeds up memory accesses by the guest program. +Enabling it causes guest memory reads/writes to be done directly into memory and make use of Host's MMU. +Disabling this forces all memory accesses to use Software MMU Emulation. + + + + + Optimize SPIRV output shader + + + + + Runs an additional optimization pass over generated SPIRV shaders. +Will increase time required for shader compilation. +May slightly improve performance. +This feature is experimental. + + + + + Selects whether the emulator should prefer to conserve memory or make maximum usage of available video memory for performance. +Aggressive mode may severely impact the performance of other applications such as recording software. + + + + + Skip CPU Inner Invalidation + + + + + Skips certain CPU-side cache invalidations during memory updates, reducing CPU usage and improving it's performance. This may cause glitches or crashes on some games. + + + + + Sync Memory Operations + + + + + Ensures data consistency between compute and memory operations. +This option should fix issues in some games, but may also reduce performance in some cases. +Unreal Engine 4 games often see the most significant changes thereof. + + + + + GPU Accuracy: + + + + + Controls the GPU emulation accuracy. +Most games render fine with Normal, but High is still required for some. +Particles tend to only render correctly with High accuracy. +Extreme should only be used as a last resort. + + + + + DMA Accuracy: + + + + + Controls the DMA precision accuracy. Safe precision can fix issues in some games, but it can also impact performance in some cases. +If unsure, leave this on Default. + + + + + Fast GPU Time (Hack) + + + + + Overclocks the emulated GPU to increase dynamic resolution and render distance. +Use 128 for maximal performance and 512 for maximal graphics fidelity. + + + + + RAII + + + + + A method of automatic resource management in Vulkan that ensures proper release of resources when they are no longer needed, but may cause crashes in bundled games. + + + + + Extended Dynamic State + + + + + Controls the number of features that can be used in Extended Dynamic State. +Higher numbers allow for more features and can increase performance, but may cause issues with some drivers and vendors. +The default value may vary depending on your system and hardware capabilities. +This value can be changed until stability and a better visual quality are achieved. + + + + + Provoking Vertex + + + + + Improves lighting and vertex handling in certain games. +Only Vulkan 1.0+ devices support this extension. + + + + + Descriptor Indexing + + + + + Improves texture & buffer handling and the Maxwell translation layer. +Some Vulkan 1.1+ and all 1.2+ devices support this extension. + + + + + Sample Shading + + + + + Allows the fragment shader to execute per sample in a multi-sampled fragment instead once per fragment. Improves graphics quality at the cost of some performance. +Higher values improve quality more but also reduce performance to a greater extent. + + + + + Ask to select a user profile on each boot, useful if multiple people use Eden on the same PC. + + + + + This setting pauses Eden when focusing other windows. + + + + + Check for updates + + + + + Whether or not to check for updates upon startup. + + + + + Never + + + + + On Load + + + + + Always + + + + + Unsafe (fast) + + + + + Safe (stable) + + + + + 0.25X (180p/270p) [EXPERIMENTAL] + + + + + Area + + + + 2x 2x - + 4x 4x - + 8x 8x - + 16x 16x - + Japanese (日本語) Japônes (日本語) - + American English Inglês Americano - + French (français) Francês (français) - + German (Deutsch) Alemão (Deutsch) - + Italian (italiano) Italiano (italiano) - + Spanish (español) Espanhol (español) - + Chinese Chinês - + Korean (한국어) Coreano (한국어) - + Dutch (Nederlands) Holandês (Nederlands) - + Portuguese (português) Português - + Russian (Русский) Russo (Русский) - + Taiwanese Taiwanês - + British English Inglês Britânico (British English) - + Canadian French Francês canadense (Canadian French) - + Latin American Spanish Espanhol latino-americano - + Simplified Chinese Chinês simplificado - + Traditional Chinese (正體中文) Chinês tradicional (正體中文) - + Brazilian Portuguese (português do Brasil) Português do Brasil - - + + Serbian (српски) + + + + + Japan Japão - + USA EUA - + Europe Europa - + Australia Austrália - + China China - + Korea Coréia - + Taiwan Taiwan - + Auto (%1) Auto select time zone Auto (%1) - + Default (%1) Default time zone Padrão (%1) - + CET CET - + CST6CDT CST6CDT - + Cuba Cuba - + EET EET - + Egypt Egito - + Eire Eire - + EST EST - + EST5EDT EST5EDT - + GB GB - + GB-Eire GB-Eire - + GMT GMT - + GMT+0 GMT+0 - + GMT-0 GMT-0 - + GMT0 GMT0 - + Greenwich Greenwich - + Hongkong Hong Kong - + HST HST - + Iceland Islândia - + Iran Irã - + Israel Israel - + Jamaica Jamaica - + Kwajalein Ilhas Marshall - + Libya Líbia - + MET MET - + MST MST - + MST7MDT MST7MDT - + Navajo Navajo - + NZ NZ - + NZ-CHAT NZ-CHAT - + Poland Polônia - + Portugal Portugal - + PRC PRC - + PST8PDT PST8PDT - + ROC ROC - + ROK ROK - + Singapore Singapura - + Turkey Turquia - + UCT UCT - + Universal Universal - + UTC UTC - + W-SU W-SU - + WET WET - + Zulu Zulu - + Mono Mono - + Stereo Estéreo - + Surround Surround - + 4GB DRAM (Default) 4GB DRAM (Padrão) - + 6GB DRAM (Unsafe) 6GB DRAM (Não seguro) - + 8GB DRAM - + 10GB DRAM (Unsafe) - + 12GB DRAM (Unsafe) - + Low (128) - + Medium (256) - + High (512) @@ -1944,37 +2054,37 @@ Quando um dispositivo convidado tenta abrir o miniaplicativo dos controles, ele 8GB DRAM (Não seguro) - + Docked Modo TV - + Handheld Portátil - + Boost (1700MHz) - + Fast (2000MHz) - + Always ask (Default) Sempre perguntar (Padrão) - + Only if game specifies not to stop Somente se o jogo especificar para não parar - + Never ask Nunca perguntar @@ -2329,27 +2439,27 @@ Quando um dispositivo convidado tenta abrir o miniaplicativo dos controles, ele Registros de depuração - + Open Log Location Abrir local dos registros - + Global Log Filter Filtro global de registros - + When checked, the max size of the log increases from 100 MB to 1 GB Quando ativado, o tamanho máximo do arquivo de registro aumenta de 100 MB para 1 GB - + Enable Extended Logging** Ativar registros avançados** - + Show Log in Console Mostrar registro no console @@ -2495,7 +2605,7 @@ Quando um dispositivo convidado tenta abrir o miniaplicativo dos controles, ele - **This will be reset automatically when eden closes. + **This will be reset automatically when Eden closes. @@ -2557,7 +2667,7 @@ Quando um dispositivo convidado tenta abrir o miniaplicativo dos controles, ele **Isto será restaurado automaticamente assim que o yuzu for fechado. - + Web applet not compiled Miniaplicativo Web não compilado @@ -2607,7 +2717,7 @@ Quando um dispositivo convidado tenta abrir o miniaplicativo dos controles, ele - eden Configuration + Eden Configuration @@ -2616,88 +2726,88 @@ Quando um dispositivo convidado tenta abrir o miniaplicativo dos controles, ele Algumas configurações estão disponíveis apenas quando não houver nenhum jogo em execução. - + Applets Miniaplicativos - - + + Audio Áudio - - + + CPU CPU - + Debug Depuração - + Filesystem Sistema de arquivos - - + + General Geral - - + + Graphics Gráficos - + GraphicsAdvanced GráficosAvançado - + GraphicsExtensions - + Hotkeys Teclas de atalho - - + + Controls Controles - + Profiles Perfis - + Network Rede - - + + System Sistema - + Game List Lista de jogos - + Web Rede @@ -2795,51 +2905,45 @@ Quando um dispositivo convidado tenta abrir o miniaplicativo dos controles, ele - - - Reset Metadata Cache Restaurar cache de metadados - + Select Emulated NAND Directory... Selecione a pasta da NAND emulada... - + Select Emulated SD Directory... Selecione a pasta do SD emulado... - + Select Gamecard Path... Selecione o local do Gamecard... - + Select Dump Directory... Selecione a pasta de extração... - + Select Mod Load Directory... Selecione a pasta de carregamento de mods... - The metadata cache is already empty. - O cache de metadados já está vazio. + O cache de metadados já está vazio. - The operation completed successfully. - A operação foi concluída com sucesso. + A operação foi concluída com sucesso. - The metadata cache couldn't be deleted. It might be in use or non-existent. - O cache de metadados não pôde ser excluído. Ele pode estar em uso no momento ou não existe. + O cache de metadados não pôde ser excluído. Ele pode estar em uso no momento ou não existe. @@ -2870,12 +2974,12 @@ Quando um dispositivo convidado tenta abrir o miniaplicativo dos controles, ele yuzu - - eden + + Eden - + This reset all settings and remove all per-game configurations. This will not delete game directories, profiles, or input profiles. Proceed? Isto restaura todas as configurações e exclui as configurações individuais de todos os jogos. As pastas de jogos, perfis de jogos e perfis de controles não serão excluídos. Deseja prosseguir? @@ -2908,33 +3012,33 @@ Quando um dispositivo convidado tenta abrir o miniaplicativo dos controles, ele Cor de fundo: - + % FSR sharpening percentage (e.g. 50%) % - + Off Desligado - + VSync Off Desligar VSync - + Recommended Recomendado - + On Ligado - + VSync On Ligar VSync @@ -2971,14 +3075,18 @@ Quando um dispositivo convidado tenta abrir o miniaplicativo dos controles, ele - Vulkan Extension Settings + Vulkan Extensions Settings - - While it's recommended to use state 3, some games may perform better on lower states. Setting to 0 (disabled) may also break games. -If your GPU is older (i.e. RX570/580 or older), it may not support these features. If this is the case, set the slider to 0 and uncheck all boxes. -These settings are experimental, and may cause black screens. If your games fail to boot or are stuck on a black screen, change these settings around. + + % + Sample Shading percentage (e.g. 50%) + % + + + + Extended Dynamic State is disabled on macOS due to MoltenVK compatibility issues that cause black screens. @@ -3010,75 +3118,75 @@ These settings are experimental, and may cause black screens. If your games fail Restaurar padrões - + Action Ação - + Hotkey Atalho - + Controller Hotkey Atalho do controle - - - + + + Conflicting Key Sequence Combinação de teclas já utilizada - - + + The entered key sequence is already assigned to: %1 A sequência de teclas pressionada já esta atribuída para: %1 - + [waiting] [aguardando] - + Invalid Inválido - + Invalid hotkey settings Configurações de atalho inválidas - + An error occurred. Please report this issue on github. Houve um erro. Por favor relate o problema no GitHub. - + Restore Default Restaurar padrão - + Clear Limpar - + Conflicting Button Sequence Sequência de botões conflitante - + The default button sequence is already assigned to: %1 A sequência de botões padrão já está vinculada a %1 - + The default key sequence is already assigned to: %1 A sequência de teclas padrão já esta atribuida para: %1 @@ -3398,7 +3506,7 @@ These settings are experimental, and may cause black screens. If your games fail - Requires restarting eden + Requires restarting Eden @@ -3553,7 +3661,7 @@ These settings are experimental, and may cause black screens. If your games fail - + Left Stick Analógico esquerdo @@ -3663,14 +3771,14 @@ These settings are experimental, and may cause black screens. If your games fail - + L L - + ZL ZL @@ -3689,7 +3797,7 @@ These settings are experimental, and may cause black screens. If your games fail - + Plus Mais @@ -3702,15 +3810,15 @@ These settings are experimental, and may cause black screens. If your games fail - - + + R R - + ZR ZR @@ -3755,7 +3863,7 @@ These settings are experimental, and may cause black screens. If your games fail - + Right Stick Analógico direito @@ -3770,242 +3878,242 @@ These settings are experimental, and may cause black screens. If your games fail Configurar - - - - + + + + Clear Limpar - - - - - + + + + + [not set] [não definido] - - - + + + Invert button Inverter botão - - + + Toggle button Alternar pressionamento do botão - + Turbo button Botão Turbo - - + + Invert axis Inverter eixo - - - + + + Set threshold Definir limite - - + + Choose a value between 0% and 100% Escolha um valor entre 0% e 100% - + Toggle axis Alternar eixos - + Set gyro threshold Definir limite do giroscópio - + Calibrate sensor Calibrar sensor - + Map Analog Stick Mapear analógico - + After pressing OK, first move your joystick horizontally, and then vertically. To invert the axes, first move your joystick vertically, and then horizontally. Após pressionar OK, mova o seu direcional analógico primeiro horizontalmente e depois verticalmente. Para inverter os eixos, mova seu analógico primeiro verticalmente e depois horizontalmente. - + Center axis Eixo central - - + + Deadzone: %1% Zona morta: %1% - - + + Modifier Range: %1% Alcance de modificador: %1% - - + + Pro Controller Pro Controller - + Dual Joycons Par de Joycons - + Left Joycon Joycon Esquerdo - + Right Joycon Joycon Direito - + Handheld Portátil - + GameCube Controller Controle de GameCube - + Poke Ball Plus Poke Ball Plus - + NES Controller Controle NES - + SNES Controller Controle SNES - + N64 Controller Controle N64 - + Sega Genesis Mega Drive - + Start / Pause Iniciar / Pausar - + Z Z - + Control Stick Direcional de controle - + C-Stick C-Stick - + Shake! Balance! - + [waiting] [esperando] - + New Profile Novo perfil - + Enter a profile name: Insira um nome para o perfil: - - + + Create Input Profile Criar perfil de controle - + The given profile name is not valid! O nome de perfil inserido não é válido! - + Failed to create the input profile "%1" Falha ao criar o perfil de controle "%1" - + Delete Input Profile Excluir perfil de controle - + Failed to delete the input profile "%1" Falha ao excluir o perfil de controle "%1" - + Load Input Profile Carregar perfil de controle - + Failed to load the input profile "%1" Falha ao carregar o perfil de controle "%1" - + Save Input Profile Salvar perfil de controle - + Failed to save the input profile "%1" Falha ao salvar o perfil de controle "%1" @@ -4062,7 +4170,7 @@ Para inverter os eixos, mova seu analógico primeiro verticalmente e depois hori - + Configure Configurar @@ -4098,7 +4206,7 @@ Para inverter os eixos, mova seu analógico primeiro verticalmente e depois hori - + Test Teste @@ -4117,7 +4225,7 @@ Para inverter os eixos, mova seu analógico primeiro verticalmente e depois hori <a href='https://yuzu-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> - + %1:%2 %1:%2 @@ -4126,77 +4234,77 @@ Para inverter os eixos, mova seu analógico primeiro verticalmente e depois hori yuzu - + <a href='https://eden-emulator.github.io/wiki/using-a-controller-or-android-phone-for-motion-or-touch-input'><span style="text-decoration: underline; color:#039be5;">Learn More</span></a> - + Port number has invalid characters O número da porta tem caracteres inválidos - - - - - - - eden + + + + + + + Eden - + Port has to be in range 0 and 65353 A porta tem que estar entre 0 e 65353 - + IP address is not valid O endereço IP não é válido - + This UDP server already exists Este servidor UDP já existe - + Unable to add more than 8 servers Não é possível adicionar mais de 8 servidores - + Testing Testando - + Configuring Configurando - + Test Successful Teste bem-sucedido - + Successfully received data from the server. Dados foram recebidos do servidor com sucesso. - + Test Failed O teste falhou - + 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. - + UDP Test or calibration configuration is in progress.<br>Please wait for them to finish. Um teste UDP ou configuração de calibração está em curso no momento.<br>Aguarde até a sua conclusão. @@ -4323,7 +4431,12 @@ Os valores atuais são %1% e %2% respectivamente. Interface de rede - + + Enable Airplane Mode + + + + None Nenhum @@ -4381,52 +4494,52 @@ Os valores atuais são %1% e %2% respectivamente. Algumas configurações estão disponíveis apenas quando não houver nenhum jogo em execução. - + Add-Ons Adicionais - + System Sistema - + CPU CPU - + Graphics Gráficos - + Adv. Graphics Gráf. avançados - + GPU Extensions - + Audio Áudio - + Input Profiles Perfis de Controle - + Linux Linux - + Properties Propriedades @@ -4444,12 +4557,12 @@ Os valores atuais são %1% e %2% respectivamente. Adicionais - + Patch Name Nome do patch - + Version Versão @@ -4487,27 +4600,32 @@ Os valores atuais são %1% e %2% respectivamente. Definir imagem - + + Select Avatar + + + + Add Adicionar - + Rename Renomear - + Remove Excluir - + Profile management is available only when game is not running. Esta tela só fica disponível apenas quando não houver nenhum jogo em execução. - + %1 %2 %1 is the profile username, %2 is the formatted UUID (e.g. 00112233-4455-6677-8899-AABBCCDDEEFF)) @@ -4515,100 +4633,189 @@ Os valores atuais são %1% e %2% respectivamente. %2 - + Enter Username Escreva o nome de usuário - + Users Usuários - + Enter a username for the new user: Digite o nome do novo usuário: - + Enter a new username: Digite um novo nome de usuário: - + + Error saving user image + + + + + Unable to save image to file + + + + Select User Image Selecione a imagem do usuário - - JPEG Images (*.jpg *.jpeg) - Imagens JPEG (*.jpg *.jpeg) + + Image Formats (*.jpg *.jpeg *.png *.bmp) + - + + No firmware available + Nenhum firmware disponível + + + + Please install the firmware to use firmware avatars. + + + + + + Error loading archive + + + + + Archive is not available. Please install/reinstall firmware. + + + + + Archive does not contain romfs. It is probably corrupt. + + + + + Error extracting archive + + + + + Archive could not be extracted. It is probably corrupt. + + + + + Error finding image directory + + + + + Failed to find image directory in the archive. + + + + + No images found + + + + + No avatar images were found in the archive. + + + + JPEG Images (*.jpg *.jpeg) + Imagens JPEG (*.jpg *.jpeg) + + + Error deleting image Erro ao excluir a imagem - + Error occurred attempting to overwrite previous image at: %1. Ocorreu um erro ao tentar substituir a imagem anterior em: %1. - + Error deleting file Erro ao excluir arquivo - + Unable to delete existing file: %1. Não foi possível excluir o arquivo existente: %1. - + Error creating user image directory Erro ao criar a pasta de imagens do usuário - + Unable to create directory %1 for storing user images. Não foi possível criar a pasta %1 para armazenar as imagens do usuário. - Error copying user image - Erro ao copiar a imagem do usuário + Erro ao copiar a imagem do usuário - Unable to copy image from %1 to %2 - Não foi possível copiar a imagem de %1 para %2 + Não foi possível copiar a imagem de %1 para %2 - Error resizing user image - Erro no redimensionamento da imagem do usuário + Erro no redimensionamento da imagem do usuário - Unable to resize image - Não foi possível redimensionar a imagem + Não foi possível redimensionar a imagem + + + + ConfigureProfileManagerAvatarDialog + + + Select + + + + + Cancel + Cancelar + + + + Background Color + + + + + Select Firmware Avatar + ConfigureProfileManagerDeleteDialog - + Delete this user? All of the user's save data will be deleted. Apagar esse usuário? Todos os dados salvos desse usuário serão removidos. - + Confirm Delete Confirmar exclusão - + Name: %1 UUID: %2 Nome: %1 @@ -4661,7 +4868,7 @@ UUID: %2 - + Enable Ativar @@ -4672,7 +4879,7 @@ UUID: %2 - + Not connected Não conectado @@ -4682,63 +4889,63 @@ UUID: %2 Restaurar padrões - + Clear Limpar - + [not set] [não definido] - + Invert axis Inverter eixo - - + + Deadzone: %1% Zona morta: %1% - + Error enabling ring input Erro ao ativar o comando do Ring-Con - + Direct Joycon driver is not enabled Driver direto do Joycon não está ativado - + Configuring Configurando - + The current mapped device doesn't support the ring controller O dispositivo atualmente mapeado não suporta o Ring-Con - + The current mapped device doesn't have a ring attached O dispositivo mapeado não tem um Ring-Con conectado - + The current mapped device is not connected O dispositivo atualmente mapeado não está conectado - + Unexpected driver result %1 Resultado inesperado do driver %1 - + [waiting] [aguardando] @@ -4780,7 +4987,7 @@ UUID: %2 - <html><head/><body><p>Reads controller input from scripts in the same format as TAS-nx scripts.<br/>For a more detailed explanation, please consult the <a href="https://eden-emulator.github.io/help/feature/tas/"><span style=" text-decoration: underline; color:#039be5;">help page</span></a> on the eden website.</p></body></html> + <html><head/><body><p>Reads controller input from scripts in the same format as TAS-nx scripts.<br/>For a more detailed explanation, please consult the <a href="https://eden-emulator.github.io/help/feature/tas/"><span style=" text-decoration: underline; color:#039be5;">help page</span></a> on the Eden website.</p></body></html> @@ -4832,12 +5039,12 @@ UUID: %2 ConfigureTasDialog - + TAS Configuration Configurar TAS - + Select TAS Load Directory... Selecionar diretório de carregamento TAS @@ -4947,7 +5154,7 @@ Mova os pontos para mudar a posição, ou clique duas vezes nas células da tabe - Warning: The settings in this page affect the inner workings of eden's emulated touchscreen. Changing them may result in undesirable behavior, such as the touchscreen partially or not working. You should only use this page if you know what you are doing. + Warning: The settings in this page affect the inner workings of Eden's emulated touchscreen. Changing them may result in undesirable behavior, such as the touchscreen partially or not working. You should only use this page if you know what you are doing. @@ -5267,6 +5474,16 @@ Mova os pontos para mudar a posição, ou clique duas vezes nas células da tabe Web Web + + + Eden Web Service + + + + + Generate + + yuzu Web Service yuzu Web Service @@ -5276,42 +5493,29 @@ Mova os pontos para mudar a posição, ou clique duas vezes nas células da tabe Ao informar seu usuário e token, você concorda em permitir ao yuzu recolher dados de uso adicionais, que podem incluir informações de identificação de usuário. - - eden Web Service - - - - - By providing your username and token, you agree to allow eden to collect additional usage data, which may include user identifying information. - - - - Verify - Verificar + Verificar - Sign up - Cadastrar-se + Cadastrar-se - + Token: Token: - + Username: Nome de usuário: - What is my token? - Qual é o meu token? + Qual é o meu token? - + Web Service configuration can only be changed when a public room isn't being hosted. A configuração do Serviço Web só pode ser alterada quando uma sala pública não está sendo hospedada. @@ -5336,12 +5540,12 @@ Mova os pontos para mudar a posição, ou clique duas vezes nas células da tabe Gerar um novo - + Discord Presence Presença no Discord - + Show Current Game in your Discord Status Mostrar o jogo atual no seu status do Discord @@ -5350,24 +5554,8 @@ Mova os pontos para mudar a posição, ou clique duas vezes nas células da tabe <a href='https://yuzu-emu.org/help/feature/telemetry/'><span style="text-decoration: underline; color:#039be5;">Saiba mais</span></a> - <a href='https://profile.yuzu-emu.org/'><span style="text-decoration: underline; color:#039be5;">Sign up</span></a> - <a href='https://profile.yuzu-emu.org/'><span style="text-decoration: underline; color:#039be5;">Cadastrar-se</span></a> - - - - <a href='https://evilperson1337.notion.site/Hosting-a-Room-Inside-of-Eden-20457c2edaf680108abac6215a79acdb'><span style="text-decoration: underline; color:#039be5;">What is my token?</span></a> - - - - - Warning - - - - - Verification is currently nonfunctional, instead generate a random 48-character string with only lowercase a-z. - + <a href='https://profile.yuzu-emu.org/'><span style="text-decoration: underline; color:#039be5;">Cadastrar-se</span></a> <a href='https://yuzu-emu.org/wiki/yuzu-web-service/'><span style="text-decoration: underline; color:#039be5;">What is my token?</span></a> @@ -5390,10 +5578,9 @@ Mova os pontos para mudar a posição, ou clique duas vezes nas células da tabe O token não foi verificado. A alteração no seu token não foi salva. - Unverified, please click Verify before saving configuration Tooltip - Não verificado, por favor clique sobre Verificar antes de salvar as configurações + Não verificado, por favor clique sobre Verificar antes de salvar as configurações Verifying... @@ -5417,20 +5604,67 @@ Mova os pontos para mudar a posição, ou clique duas vezes nas células da tabe Verification failed. Check that you have entered your token correctly, and that your internet connection is working. Falha na verificação. Verifique se o seu token foi inserido corretamente e se a sua conexão à internet está funcionando. + + + + All Good + Tooltip + + + + + Must be between 4-20 characters + Tooltip + + + + + Must be 48 characters, and lowercase a-z + Tooltip + + ControllerDialog - + Controller P1 Controle J1 - + &Controller P1 &Controle J1 + + DepsDialog + + + Eden Dependencies + + + + + <html><head/><body><p><span style=" font-size:28pt;">Eden Dependencies</span></p></body></html> + + + + + <html><head/><body><p>The projects that make Eden possible</p></body></html> + + + + + Dependency + + + + + Version + Versão + + DirectConnect @@ -5536,7 +5770,12 @@ Mova os pontos para mudar a posição, ou clique duas vezes nas células da tabe - Creating a room failed. Please retry. Restarting eden might be necessary. + Creating a room failed. Please retry. Restarting Eden might be necessary. + + + + + Version mismatch! Please update to the latest version of Eden. If the problem persists, contact the room host and ask them to update the server. @@ -5544,11 +5783,6 @@ Mova os pontos para mudar a posição, ou clique duas vezes nas células da tabe The host of the room has banned you. Speak with the host to unban you or try a different room. O anfitrião da sala baniu você. Fale com o anfitrião para que ele remova seu banimento ou tente uma sala diferente. - - - Version mismatch! Please update to the latest version of eden. If the problem persists, contact the room host and ask them to update the server. - - Incorrect password. @@ -5610,7 +5844,7 @@ Vá para Configurar -> Sistema -> Rede e selecione uma. Telemetria - + Broken Vulkan Installation Detected Detectada Instalação Defeituosa do Vulkan @@ -5619,106 +5853,105 @@ Vá para Configurar -> Sistema -> Rede e selecione uma. A inicialização do Vulkan falhou durante a execução. <br><br>Clique <a href='https://yuzu-emu.org/wiki/faq/#yuzu-starts-with-the-error-broken-vulkan-installation-detected'>aqui para instruções de como resolver o problema</a>. - + Running a game TRANSLATORS: This string is shown to the user to explain why yuzu needs to prevent the computer from sleeping Rodando um jogo - + Loading Web Applet... Carregando applet web... - - + + Disable Web Applet Desativar o applet da web - + Disabling the web applet can lead to undefined behavior and should only be used with Super Mario 3D All-Stars. Are you sure you want to disable the web applet? (This can be re-enabled in the Debug settings.) A desativação do applet da web pode causar comportamento inesperado e deve apenas ser usada com Super Mario 3D All-Stars. Você deseja mesmo desativar o applet da web? (Ele pode ser reativado nas configurações de depuração.) - + The amount of shaders currently being built A quantidade de shaders sendo construídos - + The current selected resolution scaling multiplier. O atualmente multiplicador de escala de resolução selecionado. - + Current emulation speed. Values higher or lower than 100% indicate emulation is running faster or slower than a Switch. Velocidade atual de emulação. Valores maiores ou menores que 100% indicam que a emulação está rodando mais rápida ou lentamente que em um Switch. - + 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 o jogo está exibindo atualmente. Isto irá variar de jogo para jogo e cena para cena. - + Time taken to emulate a Switch frame, not counting framelimiting or v-sync. For full-speed emulation this should be at most 16.67 ms. Tempo que leva para emular um quadro do Switch, sem considerar o limitador de taxa de quadros ou a sincronização vertical. Um valor menor ou igual a 16.67 ms indica que a emulação está em velocidade plena. - + Unmute Tirar do mudo - + Mute Mudo - + Reset Volume Redefinir volume - + &Clear Recent Files &Limpar arquivos recentes - + &Continue &Continuar - + &Pause &Pausar - Warning Outdated Game Format - Aviso - formato de jogo desatualizado + Aviso - formato de jogo desatualizado You are using the deconstructed ROM directory format for this game, which is an outdated format that has been superseded by others such as NCA, NAX, XCI, or NSP. Deconstructed ROM directories lack icons, metadata, and update support.<br><br>For an explanation of the various Switch formats yuzu supports, <a href='https://yuzu-emu.org/wiki/overview-of-switch-game-formats'>check out our wiki</a>. This message will not be shown again. Você está usando neste jogo o formato de ROM desconstruída e extraída em uma pasta, que é um formato desatualizado que foi substituído por outros, como NCA, NAX, XCI ou NSP. Pastas desconstruídas de ROMs não possuem ícones, metadados e suporte a atualizações.<br><br>Para saber mais sobre os vários formatos de ROMs de Switch compatíveis com o yuzu, <a href='https://yuzu-emu.org/wiki/overview-of-switch-game-formats'>confira a nossa wiki</a>. Esta mensagem não será exibida novamente. - - + + Error while loading ROM! Erro ao carregar a ROM! - + The ROM format is not supported. O formato da ROM não é suportado. - + An error occurred initializing the video core. Ocorreu um erro ao inicializar o núcleo de vídeo. @@ -5727,7 +5960,7 @@ Vá para Configurar -> Sistema -> Rede e selecione uma. yuzu encontrou um erro enquanto rodando o núcleo de vídeo. Normalmente isto é causado por drivers de GPU desatualizados, incluindo integrados. Por favor veja o registro para mais detalhes. Para mais informações em acesso ao registro por favor veja a seguinte página: <a href='https://yuzu-emu.org/help/reference/log-files/'>Como fazer envio de arquivo de registro</a>. - + Error while loading ROM! %1 %1 signifies a numeric error code. Erro ao carregar a ROM! %1 @@ -5738,473 +5971,405 @@ Vá para Configurar -> Sistema -> Rede e selecione uma. %1<br>Por favor, siga <a href='https://yuzu-emu.org/help/quickstart/'>o guia de início rápido</a> para reextrair os seus arquivos.<br>Você pode consultar a wiki do yuzu</a> ou o Discord do yuzu</a> para obter ajuda. - + Vulkan initialization failed during boot.<br><br>Click <a href='https://eden-emulator.github.io/wiki/faq/#yuzu-starts-with-the-error-broken-vulkan-installation-detected'>here for instructions to fix the issue</a>. - - Game Updates Warning - - - - - The game you are trying to launch is known to have performance or booting issues when updates are applied. Please try increasing the memory layout to 6GB or 8GB if any issues occur.<br><br>Press "OK" to continue launching, or "Cancel" to cancel the launch. - - - - - Don't show again for this game - - - - - You are using the deconstructed ROM directory format for this game, which is an outdated format that has been superseded by others such as NCA, NAX, XCI, or NSP. Deconstructed ROM directories lack icons, metadata, and update support.<br><br>For an explanation of the various Switch formats eden supports, <a href='https://eden-emulator.github.io/wiki/overview-of-switch-game-formats'>check out our wiki</a>. This message will not be shown again. - - - - - eden has encountered an error while running the video core. This is usually caused by outdated GPU drivers, including integrated ones. Please see the log for more details. For more information on accessing the log, please see the following page: <a href='https://eden-emulator.github.io/help/reference/log-files/'>How to Upload the Log File</a>. - - - - - %1<br>Please redump your files or ask on Discord for help. - %1 signifies an error string. - - - - + An unknown error occurred. Please see the log for more details. Ocorreu um erro desconhecido. Consulte o registro para mais detalhes. - + (64-bit) (64-bit) - + (32-bit) (32-bit) - + %1 %2 %1 is the title name. %2 indicates if the title is 64-bit or 32-bit %1 %2 - + Closing software... Encerrando software... - + Save Data Dados de jogos salvos - + Mod Data Dados de mods - + Error Opening %1 Folder Erro ao abrir a pasta %1 - - + + Folder does not exist! A pasta não existe! - Error Opening Transferable Shader Cache - Erro ao abrir o cache de shaders transferível + Erro ao abrir o cache de shaders transferível - Failed to create the shader cache directory for this title. - Falha ao criar o diretório de cache de shaders para este título. + Falha ao criar o diretório de cache de shaders para este título. - Error Removing Contents - Erro ao Remover Conteúdos + Erro ao Remover Conteúdos - Error Removing Update - Erro ao Remover Atualização + Erro ao Remover Atualização - Error Removing DLC - Erro ao Remover DLC + Erro ao Remover DLC - + Remove Installed Game Contents? Remover Conteúdo do Jogo Instalado? - + Remove Installed Game Update? Remover Atualização do Jogo Instalada? - + Remove Installed Game DLC? Remover DLC do Jogo Instalada? - + Remove Entry Remover item - - - - - - Successfully Removed - Removido com sucesso + Removido com sucesso - Successfully removed the installed base game. - O jogo base foi removido com sucesso. + O jogo base foi removido com sucesso. - The base game is not installed in the NAND and cannot be removed. - O jogo base não está instalado na NAND e não pode ser removido. + O jogo base não está instalado na NAND e não pode ser removido. - Successfully removed the installed update. - A atualização instalada foi removida com sucesso. + A atualização instalada foi removida com sucesso. - There is no update installed for this title. - Não há nenhuma atualização instalada para este título. + Não há nenhuma atualização instalada para este título. - There are no DLC installed for this title. - Não há nenhum DLC instalado para este título. + Não há nenhum DLC instalado para este título. - Successfully removed %1 installed DLC. - %1 DLC(s) instalados foram removidos com sucesso. + %1 DLC(s) instalados foram removidos com sucesso. - + Delete OpenGL Transferable Shader Cache? Apagar o cache de shaders transferível do OpenGL? - + Delete Vulkan Transferable Shader Cache? Apagar o cache de shaders transferível do Vulkan? - + Delete All Transferable Shader Caches? Apagar todos os caches de shaders transferíveis? - + Remove Custom Game Configuration? Remover configurações customizadas do jogo? - + Remove Cache Storage? Remover Armazenamento do Cache? - + Remove File Remover arquivo - + Remove Play Time Data Remover Dados de Tempo Jogado - + Reset play time? Deseja mesmo redefinir o tempo jogado? - - Error Removing Transferable Shader Cache - Erro ao remover cache de shaders transferível + Erro ao remover cache de shaders transferível - - A shader cache for this title does not exist. - Não existe um cache de shaders para este título. + Não existe um cache de shaders para este título. - Successfully removed the transferable shader cache. - O cache de shaders transferível foi removido com sucesso. + O cache de shaders transferível foi removido com sucesso. - Failed to remove the transferable shader cache. - Falha ao remover o cache de shaders transferível. + Falha ao remover o cache de shaders transferível. - Error Removing Vulkan Driver Pipeline Cache - Erro ao Remover Cache de Pipeline do Driver Vulkan + Erro ao Remover Cache de Pipeline do Driver Vulkan - Failed to remove the driver pipeline cache. - Falha ao remover o pipeline de cache do driver. + Falha ao remover o pipeline de cache do driver. - - Error Removing Transferable Shader Caches - Erro ao remover os caches de shaders transferíveis + Erro ao remover os caches de shaders transferíveis - Successfully removed the transferable shader caches. - Os caches de shaders transferíveis foram removidos com sucesso. + Os caches de shaders transferíveis foram removidos com sucesso. - Failed to remove the transferable shader cache directory. - Falha ao remover o diretório do cache de shaders transferível. + Falha ao remover o diretório do cache de shaders transferível. - - Error Removing Custom Configuration - Erro ao remover as configurações customizadas do jogo. + Erro ao remover as configurações customizadas do jogo. - A custom configuration for this title does not exist. - Não há uma configuração customizada para este título. + Não há uma configuração customizada para este título. - Successfully removed the custom game configuration. - As configurações customizadas do jogo foram removidas com sucesso. + As configurações customizadas do jogo foram removidas com sucesso. - Failed to remove the custom game configuration. - Falha ao remover as configurações customizadas do jogo. + Falha ao remover as configurações customizadas do jogo. - - + + RomFS Extraction Failed! Falha ao extrair RomFS! - + There was an error copying the RomFS files or the user cancelled the operation. Houve um erro ao copiar os arquivos RomFS ou o usuário cancelou a operação. - + Full Extração completa - + Skeleton Apenas estrutura - + Select RomFS Dump Mode Selecione o modo de extração do RomFS - + Please select the how you would like the RomFS dumped.<br>Full will copy all of the files into the new directory while <br>skeleton will only create the directory structure. Selecione a forma como você gostaria que o RomFS seja extraído.<br>"Extração completa" copiará todos os arquivos para a nova pasta, enquanto que <br>"Apenas estrutura" criará apenas a estrutura de pastas. - + There is not enough free space at %1 to extract the RomFS. Please free up space or select a different dump directory at Emulation > Configure > System > Filesystem > Dump Root Não há espaço suficiente em %1 para extrair o RomFS. Por favor abra espaço ou selecione um diretório diferente em Emulação > Configurar > Sistema > Sistema de arquivos > Extrair raiz - + Extracting RomFS... Extraindo RomFS... - - - - - + + Cancel Cancelar - + RomFS Extraction Succeeded! Extração do RomFS concluida! - - - + The operation completed successfully. A operação foi concluída com sucesso. - Integrity verification couldn't be performed! - A verificação de integridade não pôde ser realizada! + A verificação de integridade não pôde ser realizada! - File contents were not checked for validity. - Os conteúdos do arquivo não foram analisados. + Os conteúdos do arquivo não foram analisados. - - Verifying integrity... - Verificando integridade… + Verificando integridade… - - Integrity verification succeeded! - Verificação de integridade concluída! + Verificação de integridade concluída! - - Integrity verification failed! - Houve uma falha na verificação de integridade! + Houve uma falha na verificação de integridade! - File contents may be corrupt. - Os conteúdos do arquivo podem estar corrompidos. + Os conteúdos do arquivo podem estar corrompidos. - - - - Create Shortcut - Criar Atalho + Criar Atalho - Do you want to launch the game in fullscreen? - Gostaria de iniciar o jogo em tela cheia? + Gostaria de iniciar o jogo em tela cheia? - Successfully created a shortcut to %1 - Atalho criado em %1 com sucesso + Atalho criado em %1 com sucesso - This will create a shortcut to the current AppImage. This may not work well if you update. Continue? - Isso irá criar um atalho para o AppImage atual. Isso pode não funcionar corretamente se você fizer uma atualização. Continuar? + Isso irá criar um atalho para o AppImage atual. Isso pode não funcionar corretamente se você fizer uma atualização. Continuar? - Failed to create a shortcut to %1 - Falha ao criar atalho em %1 + Falha ao criar atalho em %1 - Create Icon - Criar Ícone + Criar Ícone - Cannot create icon file. Path "%1" does not exist and cannot be created. - Não foi possível criar o arquivo de ícone. O caminho "%1" não existe e não pode ser criado. + Não foi possível criar o arquivo de ícone. O caminho "%1" não existe e não pode ser criado. - + + Warning: Outdated Game Format + + + + + You are using the deconstructed ROM directory format for this game, which is an outdated format that has been superseded by others such as NCA, NAX, XCI, or NSP. Deconstructed ROM directories lack icons, metadata, and update support.<br><br>For an explanation of the various Switch formats Eden supports, <a href='https://eden-emulator.github.io/wiki/overview-of-switch-game-formats'>check out our wiki</a>. This message will not be shown again. + + + + + Eden has encountered an error while running the video core. This is usually caused by outdated GPU drivers, including integrated ones. Please see the log for more details. For more information on accessing the log, please see the following page: <a href='https://yuzu-mirror.github.io/help/reference/log-files/'>How to Upload the Log File</a>. + + + + + %1<br>Please redump your files or ask on Discord/Revolt for help. + %1 signifies an error string. + + + + Error Opening %1 Erro ao abrir %1 - + Select Directory Selecionar pasta - + Properties Propriedades - + The game properties could not be loaded. As propriedades do jogo não puderam ser carregadas. - + Switch Executable (%1);;All Files (*.*) %1 is an identifier for the Switch executable file extensions. Executável do Switch (%1);;Todos os arquivos (*.*) - + Load File Carregar arquivo - + Open Extracted ROM Directory Abrir pasta da ROM extraída - + Invalid Directory Selected Pasta inválida selecionada - + The directory you have selected does not contain a 'main' file. A pasta que você selecionou não contém um arquivo 'main'. - + Installable Switch File (*.nca *.nsp *.xci);;Nintendo Content Archive (*.nca);;Nintendo Submission Package (*.nsp);;NX Cartridge Image (*.xci) Arquivo de Switch instalável (*.nca *.nsp *.xci);; Nintendo Content Archive (*.nca);;Nintendo Submission Package (*.nsp);;NX Cartridge Image (*.xci) - + Install Files Instalar arquivos - + %n file(s) remaining %n arquivo restante @@ -6212,25 +6377,25 @@ Vá para Configurar -> Sistema -> Rede e selecione uma. - + Installing file "%1"... Instalando arquivo "%1"... - - + + Install Results Resultados da instalação - + To avoid possible conflicts, we discourage users from installing base games to the NAND. Please, only use this feature to install updates and DLC. Para evitar possíveis conflitos, desencorajamos que os usuários instalem os jogos base na NAND. Por favor, use esse recurso apenas para instalar atualizações e DLCs. - + %n file(s) were newly installed @@ -6241,7 +6406,7 @@ Por favor, use esse recurso apenas para instalar atualizações e DLCs. - + %n file(s) were overwritten @@ -6252,7 +6417,7 @@ Por favor, use esse recurso apenas para instalar atualizações e DLCs. - + %n file(s) failed to install @@ -6263,242 +6428,310 @@ Por favor, use esse recurso apenas para instalar atualizações e DLCs. - + System Application Aplicativo do sistema - + System Archive Arquivo do sistema - + System Application Update Atualização de aplicativo do sistema - + Firmware Package (Type A) Pacote de firmware (tipo A) - + Firmware Package (Type B) Pacote de firmware (tipo B) - + Game Jogo - + Game Update Atualização de jogo - + Game DLC DLC de jogo - + Delta Title Título delta - + Select NCA Install Type... Selecione o tipo de instalação do NCA... - + Please select the type of title you would like to install this NCA as: (In most instances, the default 'Game' is fine.) Selecione o tipo de título como o qual você gostaria de instalar este NCA: (Na maioria dos casos, o padrão 'Jogo' serve bem.) - + Failed to Install Falha ao instalar - + The title type you selected for the NCA is invalid. O tipo de título que você selecionou para o NCA é inválido. - + File not found Arquivo não encontrado - + File "%1" not found Arquivo "%1" não encontrado - + OK OK - - + + Hardware requirements not met Requisitos de hardware não atendidos - - + + Your system does not meet the recommended hardware requirements. Compatibility reporting has been disabled. Seu sistema não atende os requisitos de harwdare. O relatório de compatibilidade foi desabilitado. - + Missing yuzu Account Conta do yuzu faltando - - In order to submit a game compatibility test case, you must link your eden account.<br><br/>To link your eden account, go to Emulation &gt; Configuration &gt; Web. + + In order to submit a game compatibility test case, you must set up your web token and username.<br><br/>To link your eden account, go to Emulation &gt; Configuration &gt; Web. - - Install decryption keys and restart eden before attempting to install firmware. + + + Install decryption keys and restart Eden before attempting to install firmware. - - Firmware installation cancelled, firmware may be in bad state, restart eden or re-install firmware. + + Select Dumped Firmware ZIP - - Encryption keys are missing. + + Zipped Archives (*.zip) - - Are you sure you want to close eden? + + Firmware cleanup failed - - - - eden + + Failed to clean up extracted firmware cache. +Check write permissions in the system temp directory and try again. +OS reported error: %1 - - The currently running application has requested eden to not exit. + + Please install firmware to use the Album applet. + + + + + Please install firmware to use the Cabinet applet. + + + + + Please install firmware to use the Mii editor. + + + + + Please install firmware to use the Controller Menu. + + + + + Please install firmware to use the Home Menu. + + + + + Firmware Corrupted + + + + + Firmware Too New + + + + + +Continue anyways? + + + + + Don't show again + + + + + Please install firmware to use Starter. + + + + + Are you sure you want to close Eden? + + + + + + + Eden + + + + + The currently running application has requested Eden to not exit. Would you like to bypass this and exit anyway? + + + Encryption keys are missing. + + In order to submit a game compatibility test case, you must link your yuzu account.<br><br/>To link your yuzu account, go to Emulation &gt; Configuration &gt; Web. Para enviar um caso de teste de compatibilidade de jogo, você precisa entrar com a sua conta do yuzu.<br><br/>Para isso, vá para Emulação &gt; Configurar... &gt; Rede. - + Error opening URL Erro ao abrir URL - + Unable to open the URL "%1". Não foi possível abrir o URL "%1". - + TAS Recording Gravando TAS - + Overwrite file of player 1? Sobrescrever arquivo do jogador 1? - + Invalid config detected Configuração inválida detectada - + Handheld controller can't be used on docked mode. Pro controller will be selected. O controle portátil não pode ser usado no modo encaixado na base. O Pro Controller será selecionado. - - + + Amiibo Amiibo - - + + The current amiibo has been removed O amiibo atual foi removido - + Error Erro - - + + The current game is not looking for amiibos O jogo atual não está procurando amiibos - + Amiibo File (%1);; All Files (*.*) Arquivo Amiibo (%1);; Todos os arquivos (*.*) - + Load Amiibo Carregar Amiibo - + Error loading Amiibo data Erro ao carregar dados do Amiibo - + The selected file is not a valid amiibo O arquivo selecionado não é um amiibo válido - + The selected file is already on use O arquivo selecionado já está em uso - + An unknown error occurred Ocorreu um erro desconhecido - - Verification failed for the following files: %1 - Houve uma falha na verificação dos seguintes arquivos: + Houve uma falha na verificação dos seguintes arquivos: %1 - + + Keys not installed Chaves não instaladas @@ -6507,255 +6740,215 @@ Would you like to bypass this and exit anyway? Instale as chaves de descriptografia e reinicie o yuzu antes de tentar instalar o firmware. - + Select Dumped Firmware Source Location Selecione o Local de Armazenamento do Firmware Extraído - Installing Firmware... - Instalando Firmware... + Instalando Firmware... - - - - Firmware install failed - A instalação do Firmware falhou + A instalação do Firmware falhou - Unable to locate potential firmware NCA files - Possíveis arquivos NCA do firmware não foram localizados + Possíveis arquivos NCA do firmware não foram localizados - Failed to delete one or more firmware file. - Falha ao deletar um ou mais arquivo de firmware. + Falha ao deletar um ou mais arquivo de firmware. Firmware installation cancelled, firmware may be in bad state, restart yuzu or re-install firmware. A instalação do firmware foi cancelada, o firmware pode estar danificado. Reinicie o yuzu ou reinstale o firmware. - One or more firmware files failed to copy into NAND. - Falha ao copiar um ou mais arquivos de firmware para a NAND. + Falha ao copiar um ou mais arquivos de firmware para a NAND. - Firmware integrity verification failed! - A verificação de integridade do Firmware falhou! + A verificação de integridade do Firmware falhou! - Select Dumped Keys Location - Selecione o Local das Chaves Extraídas + Selecione o Local das Chaves Extraídas - - - Decryption Keys install failed - Falha na instalação das Chaves de Descriptografia + Falha na instalação das Chaves de Descriptografia - prod.keys is a required decryption key file. - prod.keys é um arquivo de descriptografia obrigatório. + prod.keys é um arquivo de descriptografia obrigatório. - One or more keys failed to copy. - Falha ao copiar uma ou mais chaves. + Falha ao copiar uma ou mais chaves. - Decryption Keys install succeeded - Chaves de Descriptografia instaladas com sucesso + Chaves de Descriptografia instaladas com sucesso - Decryption Keys were successfully installed - As Chaves de Descriptografia foram instaladas com sucesso + As Chaves de Descriptografia foram instaladas com sucesso - Decryption Keys failed to initialize. Check that your dumping tools are up to date and re-dump keys. - Falha ao inicializar as Chaves de Descriptografia. Verifique se as suas ferramentas de extração estão atualizadas e extraia as chaves novamente. + Falha ao inicializar as Chaves de Descriptografia. Verifique se as suas ferramentas de extração estão atualizadas e extraia as chaves novamente. - - - - - - - + + + + + + No firmware available Nenhum firmware disponível - Please install the firmware to use the Album applet. - Por favor Instale o firmware para usar o miniaplicativo Álbum. + Por favor Instale o firmware para usar o miniaplicativo Álbum. - + Album Applet Miniaplicativo Álbum - + Album applet is not available. Please reinstall firmware. O miniaplicativo Álbum não está disponível. Por favor reinstale o firmware. - Please install the firmware to use the Cabinet applet. - Por favor Instale o firmware para usar o miniaplicativo Arquivo. + Por favor Instale o firmware para usar o miniaplicativo Arquivo. - + Cabinet Applet Miniaplicativo Arquivo - + Cabinet applet is not available. Please reinstall firmware. O miniaplicativo Arquivo não está disponível. Por favor reinstale o firmware. - Please install the firmware to use the Mii editor. - Por favor instale o firmware para usar o miniaplicativo Editor de Mii. + Por favor instale o firmware para usar o miniaplicativo Editor de Mii. - + Mii Edit Applet Miniaplicativo Editor de Mii - + Mii editor is not available. Please reinstall firmware. O miniaplicativo Editor de Mii não está disponível. Por favor reinstale o firmware. - Please install the firmware to use the Controller Menu. - Por favor instale o firmware para usar o Menu de Controles. + Por favor instale o firmware para usar o Menu de Controles. - + Controller Applet Miniaplicativo de Controle - + Controller Menu is not available. Please reinstall firmware. Menu de Controles não está disponível. Por favor reinstale o firmware. - - Please install the firmware to use the Home Menu. - - - - - + Home Menu Applet - - + Home Menu is not available. Please reinstall firmware. - - Please install the firmware to use Starter. - - - - + Starter Applet - + Starter is not available. Please reinstall firmware. - - Please install firmware to use the home menu. - - - - + Capture Screenshot Capturar tela - + PNG Image (*.png) Imagem PNG (*.png) - + Update Available - + Update %1 for Eden is available. Would you like to download it? - + TAS state: Running %1/%2 Situação TAS: Rodando %1%2 - + TAS state: Recording %1 Situação TAS: Gravando %1 - + TAS state: Idle %1/%2 Situação TAS: Repouso %1%2 - + TAS State: Invalid Situação TAS: Inválido - + &Stop Running &Parar de rodar - + &Start &Iniciar - + Stop R&ecording Parar G&ravação - + R&ecord G&ravação - + Building: %n shader(s) Compilando: %n shader(s) @@ -6763,18 +6956,18 @@ Would you like to download it? - + Scale: %1x %1 is the resolution scaling factor Escala: %1x - + Speed: %1% / %2% Velocidade: %1% / %2% - + Speed: %1% Velocidade: %1% @@ -6783,44 +6976,44 @@ Would you like to download it? Jogo: %1 FPS (Desbloqueado) - + Game: %1 FPS Jogo: %1 FPS - + Frame: %1 ms Quadro: %1 ms - + %1 %2 %1 %2 - - + + FSR FSR - + NO AA Sem AA - + VOLUME: MUTE VOLUME: MUDO - + VOLUME: %1% Volume percentage (e.g. 50%) VOLUME: %1% - + Derivation Components Missing Faltando componentes de derivação @@ -6829,12 +7022,12 @@ Would you like to download it? Faltando chaves de encriptação. <br>Por favor siga <a href='https://yuzu-emu.org/help/quickstart/'>o guia de início rápido do yuzu</a> para obter todas as suas chaves, firmware e jogos. - + Select RomFS Dump Target Selecionar alvo de extração do RomFS - + Please select which RomFS you would like to dump. Selecione qual RomFS você quer extrair. @@ -6847,7 +7040,7 @@ Would you like to download it? yuzu - + Are you sure you want to stop the emulation? Any unsaved progress will be lost. Deseja mesmo parar a emulação? Qualquer progresso não salvo será perdido. @@ -6860,102 +7053,102 @@ Would you like to bypass this and exit anyway? Deseja ignorar isso e sair mesmo assim? - + None Nenhum - + FXAA FXAA - + SMAA SMAA - + Nearest Mais próximo - + Bilinear Bilinear - + Bicubic Bicúbico - + Gaussian Gaussiano - + ScaleForce ScaleForce - + Area - + Docked Modo TV - + Handheld Portátil - + Normal Normal - + High Alto - + Extreme Extremo - + Vulkan Vulkan - + OpenGL OpenGL - + Null Nenhum (desativado) - + GLSL GLSL - + GLASM GLASM - + SPIRV SPIRV @@ -6963,13 +7156,13 @@ Deseja ignorar isso e sair mesmo assim? GRenderWindow - - + + OpenGL not available! OpenGL não disponível! - + OpenGL shared contexts are not supported. Shared contexts do OpenGL não são suportados. @@ -6978,33 +7171,33 @@ Deseja ignorar isso e sair mesmo assim? O yuzu não foi compilado com suporte para OpenGL. - - eden has not been compiled with OpenGL support. + + Eden has not been compiled with OpenGL support. - - + + 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.6! Erro ao inicializar o OpenGL 4.6! - + Your GPU may not support OpenGL 4.6, or you do not have the latest graphics driver.<br><br>GL Renderer:<br>%1 Sua GPU pode não suportar o OpenGL 4.6, ou você não possui os drivers gráficos mais recentes.<br><br>Renderizador GL:<br>%1 - + Your GPU may not support one or more required OpenGL extensions. Please ensure you have the latest graphics driver.<br><br>GL Renderer:<br>%1<br><br>Unsupported extensions:<br>%2 Sua GPU pode não suportar uma ou mais extensões necessárias do OpenGL. Verifique se você possui a última versão dos drivers gráficos.<br><br>Renderizador GL:<br>%1<br><br>Extensões não suportadas:<br>%2 @@ -7012,128 +7205,128 @@ Deseja ignorar isso e sair mesmo assim? GameList - + Favorite Favorito - + Start Game Iniciar jogo - + Start Game without Custom Configuration Iniciar jogo sem configuração personalizada - + Open Save Data Location Abrir local dos jogos salvos - + Open Mod Data Location Abrir local dos dados de mods - + Open Transferable Pipeline Cache Abrir cache de pipeline transferível - + Remove Remover - + Remove Installed Update Remover atualização instalada - + Remove All Installed DLC Remover todos os DLCs instalados - + Remove Custom Configuration Remover configuração customizada - + Remove Play Time Data Remover Dados de Tempo Jogado - + Remove Cache Storage Remover Cache do Armazenamento - + Remove OpenGL Pipeline Cache Remover cache de pipeline do OpenGL - + Remove Vulkan Pipeline Cache Remover cache de pipeline do Vulkan - + Remove All Pipeline Caches Remover todos os caches de pipeline - + Remove All Installed Contents Remover todo o conteúdo instalado - + Dump RomFS Extrair RomFS - + Dump RomFS to SDMC Extrair RomFS para SDMC - + Verify Integrity Verificar integridade - + Copy Title ID to Clipboard Copiar ID do título para a área de transferência - + Navigate to GameDB entry Abrir artigo do jogo no GameDB - + Create Shortcut Criar atalho - + Add to Desktop Adicionar à Área de Trabalho - + Add to Applications Menu Adicionar ao Menu de Aplicativos - + Configure Game @@ -7142,62 +7335,62 @@ Deseja ignorar isso e sair mesmo assim? Propriedades - + Scan Subfolders Examinar subpastas - + Remove Game Directory Remover pasta de jogo - + ▲ Move Up ▲ Mover para cima - + ▼ Move Down ▼ Mover para baixo - + Open Directory Location Abrir local da pasta - + Clear Limpar - + Name Nome - + Compatibility Compatibilidade - + Add-ons Adicionais - + File type Tipo de arquivo - + Size Tamanho - + Play time Tempo jogado @@ -7205,62 +7398,62 @@ Deseja ignorar isso e sair mesmo assim? GameListItemCompat - + Ingame Inicializável - + Game starts, but crashes or major glitches prevent it from being completed. O jogo inicia, porém problemas ou grandes falhas impedem que ele seja concluído. - + Perfect Perfeito - + Game can be played without issues. O jogo pode ser jogado sem problemas. - + Playable Jogável - + Game functions with minor graphical or audio glitches and is playable from start to finish. O jogo funciona com pequenas falhas gráficas ou de áudio e é jogável do início ao fim. - + Intro/Menu Intro/menu - + Game loads, but is unable to progress past the Start Screen. O jogo carrega, porém não consegue passar da Tela Inicial. - + Won't Boot Não inicia - + The game crashes when attempting to startup. O jogo trava ou se encerra abruptamente ao se tentar iniciá-lo. - + Not Tested Não testado - + The game has not yet been tested. Esse jogo ainda não foi testado. @@ -7268,7 +7461,7 @@ Deseja ignorar isso e sair mesmo assim? GameListPlaceholder - + Double-click to add a new folder to the game list Clique duas vezes para adicionar uma pasta à lista de jogos @@ -7276,7 +7469,7 @@ Deseja ignorar isso e sair mesmo assim? GameListSearchField - + %1 of %n result(s) %1 de %n resultado(s) @@ -7284,12 +7477,12 @@ Deseja ignorar isso e sair mesmo assim? - + Filter: Filtro: - + Enter pattern to filter Digite o padrão para filtrar @@ -7371,7 +7564,7 @@ Deseja ignorar isso e sair mesmo assim? - Failed to announce the room to the public lobby. In order to host a room publicly, you must have a valid eden account configured in Emulation -> Configure -> Web. If you do not want to publish a room in the public lobby, then select Unlisted instead. + Failed to announce the room to the public lobby. In order to host a room publicly, you must have a valid Eden 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: @@ -7385,91 +7578,91 @@ Mensagem de depuração: Hotkeys - + Audio Mute/Unmute Mutar/Desmutar Áudio - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Main Window Janela Principal - + Audio Volume Down Abaixar volume - + Audio Volume Up Aumentar volume - + Capture Screenshot Capturar Tela - + Change Adapting Filter Alterar Filtro de Adaptação - + Change Docked Mode Alterar Modo TV - + Change GPU Accuracy Alterar Precisão da GPU - + Configure Configurar - + Configure Current Game - + Continue/Pause Emulation Continuar/Pausar emulação - + Exit Fullscreen Sair da Tela Cheia @@ -7478,97 +7671,97 @@ Mensagem de depuração: Sair do yuzu - - Exit eden + + Exit Eden - + Fullscreen Tela Cheia - + Load File Carregar Arquivo - + Load/Remove Amiibo Carregar/Remover Amiibo - + Multiplayer Browse Public Game Lobby Multiplayer Navegar no Lobby de Salas Públicas - + Multiplayer Create Room Multiplayer Criar Sala - + Multiplayer Direct Connect to Room Multiplayer Conectar Diretamente à Sala - + Multiplayer Leave Room Multiplayer Sair da Sala - + Multiplayer Show Current Room Multiplayer Mostrar a Sala Atual - + Restart Emulation Reiniciar emulação - + Stop Emulation Parar emulação - + TAS Record Gravar TAS - + TAS Reset Reiniciar TAS - + TAS Start/Stop Iniciar/Parar TAS - + Toggle Filter Bar Alternar Barra de Filtro - + Toggle Framerate Limit Alternar Limite de Quadros por Segundo - + Toggle Mouse Panning Alternar o Mouse Panorâmico - + Toggle Renderdoc Capture Alternar a Captura do Renderdoc - + Toggle Status Bar Alternar Barra de Status @@ -7576,22 +7769,22 @@ Mensagem de depuração: InstallDialog - + Please confirm these are the files you wish to install. Por favor, confirme que esses são os arquivos que deseja instalar. - + Installing an Update or DLC will overwrite the previously installed one. Instalar uma atualização ou DLC irá sobrescrever a instalada anteriormente. - + Install Instalar - + Install Files to NAND Instalar arquivos para a NAND @@ -7599,7 +7792,7 @@ Mensagem de depuração: LimitableInputDialog - + The text can't contain any of the following characters: %1 O texto não pode conter nenhum dos seguintes caracteres: @@ -7746,152 +7939,207 @@ Mensagem de depuração: &Arquivos recentes - + + Open &Eden Folders + + + + &Emulation &Emulação - + &View &Exibir - + &Reset Window Size &Restaurar tamanho da janela - + &Debugging &Depurar - + Reset Window Size to &720p Restaurar tamanho da janela para &720p - + Reset Window Size to 720p Restaurar tamanho da janela para 720p - + Reset Window Size to &900p Restaurar tamanho da janela para &900p - + Reset Window Size to 900p Restaurar tamanho da janela para 900p - + Reset Window Size to &1080p Restaurar tamanho da janela para &1080p - + Reset Window Size to 1080p Restaurar tamanho da janela para 1080p - + &Multiplayer &Multiplayer - + &Tools &Ferramentas - + &Amiibo &Amiibo - + &TAS &TAS - + &Create Home Menu Shortcut - + &Help &Ajuda - + &Install Files to NAND... &Instalar arquivos para NAND... - + L&oad File... &Carregar arquivo... - + Load &Folder... Carregar &pasta... - + E&xit S&air - + &Pause &Pausar - + &Stop &Parar - + &Verify Installed Contents &Verificar Conteúdo Instalado - - &About eden + + &Root Data Folder - - Open &eden Folder + + &NAND Folder - + + &SDMC Folder + + + + + &Mod Folder + + + + + &Log Folder + + + + + From Folder + + + + + From ZIP + + + + + &X + + + + + X (Twitter) + + + + + &Revolt + + + + + Revolt + + + + + &Eden Dependencies + + + + Open Home Menu - + &Discord - + Open &Setup - + &Desktop - + &Application Menu @@ -7900,97 +8148,97 @@ Mensagem de depuração: &Sobre o yuzu - + Single &Window Mode Modo de &janela única - + Con&figure... Con&figurar... - + Ctrl+, - + Display D&ock Widget Headers Exibir barra de títul&os de widgets afixados - + Show &Filter Bar Exibir barra de &filtro - + Show &Status Bar Exibir barra de &status - + Show Status Bar Exibir barra de status - + &Browse Public Game Lobby &Navegar no Lobby de Salas Públicas - + &Create Room &Criar Sala - + &Leave Room &Sair da Sala - + &Direct Connect to Room &Entrar Diretamente numa Sala - + &Show Current Room &Mostrar Sala Atual - + F&ullscreen &Tela cheia - + &Restart &Reiniciar - + Load/Remove &Amiibo... Carregar/Remover &Amiibo... - + &Report Compatibility &Reportar compatibilidade - + Open &Mods Page Abrir página de &mods - + Open &Quickstart Guide Abrir &guia de início rápido - + &FAQ &Perguntas frequentes @@ -7999,77 +8247,82 @@ Mensagem de depuração: Abrir pasta do &yuzu - + &Capture Screenshot &Captura de tela - + Open &Album Abrir &Álbum - + &Set Nickname and Owner &Definir Apelido e Proprietário - + &Delete Game Data &Remover Dados do Jogo - + &Restore Amiibo &Recuperar Amiibo - + &Format Amiibo &Formatar Amiibo - + Open &Mii Editor Abrir &Editor de Mii - + &Configure TAS... &Configurar TAS - + Configure C&urrent Game... Configurar jogo &atual.. - + &Start &Iniciar - + &Reset &Restaurar - + R&ecord G&ravar - + Open &Controller Menu Menu Abrir &Controles - + Install Firmware Instalar Firmware - + + &About Eden + + + + Install Decryption Keys Instalar Chaves de Descriptografia @@ -8077,26 +8330,36 @@ Mensagem de depuração: MicroProfileDialog - &MicroProfile - &MicroPerfil + &MicroPerfil MigrationWorker - + Data was migrated successfully. - + Linking the old directory failed. You may need to re-run with administrative privileges on Windows. OS gave error: %1 - + + + +Note that your configuration and data will be shared with %1. +If this is not desirable, delete the following files: +%2 +%3 +%4 + + + + If you wish to clean up the files which were left in the old data location, you can do so by deleting the following directory: @@ -8156,37 +8419,37 @@ If you wish to clean up the files which were left in the old data location, you MultiplayerState - + Current connection status Estado atual da conexão - + Not Connected. Click here to find a room! Não conectado. Clique aqui para procurar uma sala! - + Not Connected Não conectado - + Connected Conectado - + New Messages Received Novas mensagens recebidas - + 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. Por favor verifique sua conexão com a internet e tente hospedar a sala novamente. @@ -8378,56 +8641,56 @@ p, li { white-space: pre-wrap; } Não está jogando um jogo - + Installed SD Titles Títulos instalados no SD - + Installed NAND Titles Títulos instalados na NAND - + System Titles Títulos do sistema - + Add New Game Directory Adicionar pasta de jogos - + Favorites Favoritos - - + + Shift Shift - - + + Ctrl Ctrl - - + + Alt Alt - - - - + + + + [not set] [não definido] @@ -8438,14 +8701,14 @@ p, li { white-space: pre-wrap; } Direcional %1 %2 - - - - - - - - + + + + + + + + Axis %1%2 Eixo %1%2 @@ -8456,357 +8719,357 @@ p, li { white-space: pre-wrap; } Botão %1 - - - - - - + + + + + + [unknown] [desconhecido] - - - + + + Left Esquerda - - - + + + Right Direita - - - + + + Down Baixo - - - + + + Up Cima - - + + Z Z - - + + R R - - + + L L - - + + A A - - + + B B - - + + X X - - + + Y Y - - + + Start Start - - + + L1 L1 - - + + L2 L2 - - + + L3 L3 - - + + R1 R1 - - + + R2 R2 - - + + R3 R3 - - + + Circle Círculo - - + + Cross Cruz - - + + Square Quadrado - - + + Triangle Triângulo - - + + Share Compartilhar - - + + Options Opções - - + + [undefined] [indefinido] - + %1%2 %1%2 - - + + [invalid] [inválido] - - + + %1%2Hat %3 %1%2Direcional %3 - - - + + + %1%2Axis %3 %1%2Eixo %3 - - + + %1%2Axis %3,%4,%5 %1%2Eixo %3,%4,%5 - - + + %1%2Motion %3 %1%2Movimentação %3 - - + + %1%2Button %3 %1%2Botão %3 - - + + [unused] [não utilizado] - + ZR ZR - + ZL ZL - + SR SR - + SL SL - + Stick L Analógico esquerdo - + Stick R Analógico direito - + Plus Mais - + Minus Menos - - + + Home Botão Home - + Capture Capturar - + Touch Toque - + Wheel Indicates the mouse wheel Volante - + Backward Para trás - + Forward Para a frente - + Task Tarefa - + Extra Extra - + %1%2%3%4 %1%2%3%4 - - + + %1%2%3Hat %4 %1%2%3Alavanca %4 - - + + %1%2%3Axis %4 %1%2%3Eixo %4 - - + + %1%2%3Button %4 %1%2%3Botão %4 - - + + Migration - + - - + + No - + You can manually re-trigger this prompt by deleting the new config directory: %1 - + Migrating - + Migrating, this may take a while... @@ -8924,6 +9187,300 @@ p, li { white-space: pre-wrap; } Deseja restaurar este amiibo? + + QtCommon::Content + + + Installing Firmware... + Instalando Firmware... + + + + + + Cancel + Cancelar + + + + Firmware integrity verification failed! + A verificação de integridade do Firmware falhou! + + + + + Verification failed for the following files: + +%1 + Houve uma falha na verificação dos seguintes arquivos: + +%1 + + + + + Verifying integrity... + Verificando integridade… + + + + + Integrity verification succeeded! + Verificação de integridade concluída! + + + + + The operation completed successfully. + A operação foi concluída com sucesso. + + + + + Integrity verification failed! + Houve uma falha na verificação de integridade! + + + + File contents may be corrupt or missing. + + + + + Integrity verification couldn't be performed + + + + + Firmware installation cancelled, firmware may be in a bad state or corrupted. File contents could not be checked for validity. + + + + + Select Dumped Keys Location + Selecione o Local das Chaves Extraídas + + + + Decryption Keys install succeeded + Chaves de Descriptografia instaladas com sucesso + + + + Decryption Keys were successfully installed + As Chaves de Descriptografia foram instaladas com sucesso + + + + Decryption Keys install failed + Falha na instalação das Chaves de Descriptografia + + + + QtCommon::Game + + + Error Removing Contents + Erro ao Remover Conteúdos + + + + Error Removing Update + Erro ao Remover Atualização + + + + Error Removing DLC + Erro ao Remover DLC + + + + The base game is not installed in the NAND and cannot be removed. + O jogo base não está instalado na NAND e não pode ser removido. + + + + There is no update installed for this title. + Não há nenhuma atualização instalada para este título. + + + + There are no DLCs installed for this title. + + + + + + + + Successfully Removed + Removido com sucesso + + + + Successfully removed %1 installed DLC. + %1 DLC(s) instalados foram removidos com sucesso. + + + + + Error Removing Transferable Shader Cache + Erro ao remover cache de shaders transferível + + + + + A shader cache for this title does not exist. + Não existe um cache de shaders para este título. + + + + Successfully removed the transferable shader cache. + O cache de shaders transferível foi removido com sucesso. + + + + Failed to remove the transferable shader cache. + Falha ao remover o cache de shaders transferível. + + + + Error Removing Vulkan Driver Pipeline Cache + Erro ao Remover Cache de Pipeline do Driver Vulkan + + + + Failed to remove the driver pipeline cache. + Falha ao remover o pipeline de cache do driver. + + + + + Error Removing Transferable Shader Caches + Erro ao remover os caches de shaders transferíveis + + + + Successfully removed the transferable shader caches. + Os caches de shaders transferíveis foram removidos com sucesso. + + + + Failed to remove the transferable shader cache directory. + Falha ao remover o diretório do cache de shaders transferível. + + + + + Error Removing Custom Configuration + Erro ao remover as configurações customizadas do jogo. + + + + A custom configuration for this title does not exist. + Não há uma configuração customizada para este título. + + + + Successfully removed the custom game configuration. + As configurações customizadas do jogo foram removidas com sucesso. + + + + Failed to remove the custom game configuration. + Falha ao remover as configurações customizadas do jogo. + + + + Reset Metadata Cache + Restaurar cache de metadados + + + + The metadata cache is already empty. + O cache de metadados já está vazio. + + + + The operation completed successfully. + A operação foi concluída com sucesso. + + + + The metadata cache couldn't be deleted. It might be in use or non-existent. + O cache de metadados não pôde ser excluído. Ele pode estar em uso no momento ou não existe. + + + + Create Shortcut + + + + + Do you want to launch the game in fullscreen? + Gostaria de iniciar o jogo em tela cheia? + + + + Shortcut Created + + + + + Successfully created a shortcut to %1 + Atalho criado em %1 com sucesso + + + + Shortcut may be Volatile! + + + + + This will create a shortcut to the current AppImage. This may not work well if you update. Continue? + Isso irá criar um atalho para o AppImage atual. Isso pode não funcionar corretamente se você fizer uma atualização. Continuar? + + + + Failed to Create Shortcut + + + + + Failed to create a shortcut to %1 + Falha ao criar atalho em %1 + + + + Create Icon + Criar Ícone + + + + Cannot create icon file. Path "%1" does not exist and cannot be created. + Não foi possível criar o arquivo de ícone. O caminho "%1" não existe e não pode ser criado. + + + + No firmware available + Nenhum firmware disponível + + + + Please install firmware to use the home menu. + + + + + Home Menu Applet + + + + + Home Menu is not available. Please reinstall firmware. + + + QtControllerSelectorDialog @@ -9219,7 +9776,7 @@ Tente novamente ou entre em contato com o desenvolvedor do software. QtProfileSelectionDialog - + %1 %2 %1 is the profile username, %2 is the formatted UUID (e.g. 00112233-4455-6677-8899-AABBCCDDEEFF)) @@ -9227,7 +9784,7 @@ Tente novamente ou entre em contato com o desenvolvedor do software. - + Users Usuários @@ -9351,7 +9908,7 @@ p, li { white-space: pre-wrap; } WaitTreeCallstack - + Call stack Pilha de chamadas @@ -9359,12 +9916,12 @@ p, li { white-space: pre-wrap; } WaitTreeSynchronizationObject - + [%1] %2 [%1] %2 - + waited by no thread não aguardando pelo thread @@ -9372,102 +9929,102 @@ p, li { white-space: pre-wrap; } WaitTreeThread - + runnable rodável - + paused pausado - + sleeping dormindo - + waiting for IPC reply esperando para resposta do IPC - + waiting for objects esperando por objetos - + waiting for condition variable aguardando por variável da condição - + waiting for address arbiter esperando para endereção o árbitro - + waiting for suspend resume esperando pra suspender o resumo - + waiting aguardando - + initialized inicializado - + terminated terminado - + unknown desconhecido - + PC = 0x%1 LR = 0x%2 PC = 0x%1 LR = 0x%2 - + ideal ideal - + core %1 núcleo %1 - + processor = %1 processador = %1 - + affinity mask = %1 máscara de afinidade = %1 - + thread id = %1 thread id = %1 - + priority = %1(current) / %2(normal) prioridade = %1(atual) / %2(normal) - + last running ticks = %1 últimos ticks executados = %1 @@ -9475,7 +10032,7 @@ p, li { white-space: pre-wrap; } WaitTreeThreadList - + waited by thread aguardado pelo thread @@ -9483,7 +10040,7 @@ p, li { white-space: pre-wrap; } WaitTreeWidget - + &Wait Tree &Árvore de espera diff --git a/dist/languages/pt_PT.ts b/dist/languages/pt_PT.ts index 2077c4be80..f38a8b113c 100644 --- a/dist/languages/pt_PT.ts +++ b/dist/languages/pt_PT.ts @@ -13,12 +13,12 @@ - About eden + About Eden - <html><head/><body><p><span style=" font-size:28pt;">eden</span></p></body></html> + <html><head/><body><p><span style=" font-size:28pt;">Eden</span></p></body></html> @@ -34,8 +34,8 @@ p, li { white-space: pre-wrap; } hr { height: 1px; border-width: 0; } li.unchecked::marker { content: "\2610"; } li.checked::marker { content: "\2612"; } -</style></head><body style=" font-family:'Adwaita Sans'; font-size:11pt; font-weight:400; font-style:normal;"> -<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;">eden is an experimental open-source emulator for the Nintendo Switch licensed under GPLv3.0+ which is based on the yuzu emulator which ended development back in March 2024. <br /><br />This software should not be used to play games you have not legally obtained.</span></p></body></html> +</style></head><body style=" font-family:'Noto Sans'; font-size:9pt; font-weight:400; font-style:normal;"> +<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;">Eden is an experimental open-source emulator for the Nintendo Switch licensed under GPLv3.0+ which is based on the yuzu emulator which ended development back in March 2024. <br /><br />This software should not be used to play games you have not legally obtained.</span></p></body></html> @@ -72,32 +72,32 @@ p, li { white-space: pre-wrap; } CalibrationConfigurationDialog - + Communicating with the server... A comunicar com o servidor... - + Cancel Cancelar - + Touch the top left corner <br>of your touchpad. Toca no canto superior esquerdo <br>do teu touchpad. - + Now touch the bottom right corner <br>of your touchpad. Agora toca no canto inferior direito <br> do teu touchpad. - + Configuration completed! Configuração completa! - + OK OK @@ -397,134 +397,134 @@ Isto banirá tanto o nome de usuário do fórum como o endereço IP. ConfigurationShared - + % % - + Amiibo editor Editor de Amiibo - + Controller configuration Configuração de controles - + Data erase Apagamento de dados - + Error Erro - + Net connect Conectar à rede - + Player select Seleção de jogador - + Software keyboard Teclado de software - + Mii Edit Editar Mii - + Online web Serviço online - + Shop Loja - + Photo viewer Visualizador de imagens - + Offline web Rede offline - + Login share Compartilhamento de Login - + Wifi web auth Autenticação web por Wifi - + My page Minha página - + Output Engine: Motor de Saída: - + Output Device: Dispositivo de Saída - + Input Device: Dispositivo de Entrada - + Mute audio Mutar Áudio - + Volume: Volume: - + Mute audio when in background Silenciar audio quando a janela ficar em segundo plano - + Multicore CPU Emulation Emulação de CPU Multicore - + This option increases CPU emulation thread use from 1 to the Switch’s maximum of 4. This is mainly a debug option and shouldn’t be disabled. Esta opção aumenta o uso de threads de emulação da CPU de 1 para o máximo de 4 do switch. Isso é prioritariamente uma opção de depuração e não deve ser desabilitada. - + Memory Layout Layout de memória - + Increases the amount of emulated RAM from the stock 4GB of the retail Switch to the developer kit's 8/6GB. It’s doesn’t improve stability or performance and is intended to let big texture mods fit in emulated RAM. Enabling it will increase memory use. It is not recommended to enable unless a specific game with a texture mod needs it. @@ -533,12 +533,12 @@ Isso não melhora a estabilidade ou performance e só serve para comportar grand Habilitar essa opção aumentará o uso de memória. Não é recomendado habilitar isso a não ser que um jogo específico com um mod de textura precise. - + Limit Speed Percent Percentagem do limitador de velocidade - + Controls the game's maximum rendering speed, but it’s up to each game if it runs faster or not. 200% for a 30 FPS game is 60 FPS, and for a 60 FPS game it will be 120 FPS. Disabling it means unlocking the framerate to the maximum your PC can reach. @@ -547,141 +547,118 @@ Disabling it means unlocking the framerate to the maximum your PC can reach. - - Synchronize Core Speed - - - - - Synchronizes CPU core speed with the game's maximum rendering speed to boost FPS without affecting game speed (animations, physics, etc.). -Compatibility varies by game; many (especially older ones) may not respond well. -Can help reduce stuttering at lower framerates. - - - - + Accuracy: Precisão: - + This setting controls the accuracy of the emulated CPU. Don't change this unless you know what you are doing. Esta configuração controla a precisão da CPU emulada. Não altere isso a menos que saiba o que está fazendo. - - + + Backend: Backend: - - Fast CPU Time - - - - - Overclocks the emulated CPU to remove some FPS limiters. Weaker CPUs may see reduced performance, and certain games may behave improperly. -Use Boost (1700MHz) to run at the Switch's highest native clock, or Fast (2000MHz) to run at 2x clock. - - - - + Unfuse FMA (improve performance on CPUs without FMA) FMA inseguro (Melhorar performance no CPU sem FMA) - + This option improves speed by reducing accuracy of fused-multiply-add instructions on CPUs without native FMA support. Essa opção melhora a velocidade ao reduzir a precisão de instruções de fused-multiply-add em CPUs sem suporte nativo ao FMA. - + Faster FRSQRTE and FRECPE FRSQRTE e FRECPE mais rápido - + This option improves the speed of some approximate floating-point functions by using less accurate native approximations. Essa opção melhora a velocidade de algumas funções aproximadas de pontos flutuantes ao usar aproximações nativas precisas. - + Faster ASIMD instructions (32 bits only) Instruções ASIMD mais rápidas (apenas 32 bits) - + This option improves the speed of 32 bits ASIMD floating-point functions by running with incorrect rounding modes. Essa opção melhora a velocidade de funções de pontos flutuantes de 32 bits ASIMD ao executá-las com modos de arredondamento incorretos. - + Inaccurate NaN handling Tratamento impreciso de NaN - + This option improves speed by removing NaN checking. Please note this also reduces accuracy of certain floating-point instructions. Esta opção melhora a velocidade ao remover a checagem NaN. Por favor, note que isso também reduzirá a precisão de certas instruções de ponto flutuante. - + Disable address space checks Desativar a verificação do espaço de endereços - + This option improves speed by eliminating a safety check before every memory read/write in guest. Disabling it may allow a game to read/write the emulator's memory. Esta opção melhora a velocidade ao eliminar a checagem de segurança antes de cada leitura/escrita de memória no dispositivo convidado. Desabilitar essa opção pode permitir que um jogo leia/escreva na memória do emulador. - + Ignore global monitor Ignorar monitor global - + This option improves speed by relying only on the semantics of cmpxchg to ensure safety of exclusive access instructions. Please note this may result in deadlocks and other race conditions. Esta opção melhora a velocidade ao depender apenas das semânticas do cmpxchg pra garantir a segurança das instruções de acesso exclusivo. Por favor, note que isso pode resultar em travamentos e outras condições de execução. - + API: API: - + Switches between the available graphics APIs. Vulkan is recommended in most cases. Alterna entre as APIs gráficas disponíveis. Vulkan é a recomendada na maioria dos casos. - + Device: Dispositivo: - + This setting selects the GPU to use with the Vulkan backend. Esta opção seleciona a GPU a ser usada com a Vulkan. - + Shader Backend: Suporte de shaders: - + The shader backend to use for the OpenGL renderer. GLSL is the fastest in performance and the best in rendering accuracy. GLASM is a deprecated NVIDIA-only backend that offers much better shader building performance at the cost of FPS and rendering accuracy. @@ -692,12 +669,12 @@ GLASM é um backend exclusivo descontinuado da NVIDIA que oferece uma performanc SPIR-V é o mais rápido ao compilar shaders, mas produz resultados ruins na maioria dos drivers de GPU. - + Resolution: Resolução: - + Forces the game to render at a different resolution. Higher resolutions require much more VRAM and bandwidth. Options lower than 1X can cause rendering issues. @@ -706,27 +683,27 @@ Resoluções maiores requerem mais VRAM e largura de banda. Opções menores do que 1X podem causar problemas na renderização. - + Window Adapting Filter: Filtro de adaptação de janela: - + FSR Sharpness: FSR Sharpness: - + Determines how sharpened the image will look while using FSR’s dynamic contrast. Determina a nitidez da imagem ao utilizar contraste dinâmico do FSR. - + Anti-Aliasing Method: Método de Anti-Aliasing - + The anti-aliasing method to use. SMAA offers the best quality. FXAA has a lower performance impact and can produce a better and more stable picture under very low resolutions. @@ -735,12 +712,12 @@ SMAA oferece a melhor qualidade. FXAA tem um impacto menor na performance e pode produzir uma imagem melhor e mais estável em resoluções muito baixas. - + Fullscreen Mode: Tela Cheia - + The method used to render the window in fullscreen. Borderless offers the best compatibility with the on-screen keyboard that some games request for input. Exclusive fullscreen may offer better performance and better Freesync/Gsync support. @@ -749,12 +726,12 @@ Sem borda oferece a melhor compatibilidade com o teclado na tela que alguns jogo Tela cheia exclusiva pode oferecer melhor performance e melhor suporte a Freesync/Gsync. - + Aspect Ratio: Proporção do Ecrã: - + Stretches the game to fit the specified aspect ratio. Switch games only support 16:9, so custom game mods are required to get other ratios. Also controls the aspect ratio of captured screenshots. @@ -763,49 +740,36 @@ Jogos do Switch somente suportam 16:9, por isso mods customizados por jogo são Isso também controla a proporção de aspecto de capturas de telas. - + Use disk pipeline cache Usar cache de pipeline em disco - + Allows saving shaders to storage for faster loading on following game boots. Disabling it is only intended for debugging. Permite guardar os shaders para carregar os jogos nas execuções seguintes. Desabiltar essa opção só serve para propósitos de depuração. - - Optimize SPIRV output shader - - - - - Runs an additional optimization pass over generated SPIRV shaders. -Will increase time required for shader compilation. -May slightly improve performance. -This feature is experimental. - - - - + Use asynchronous GPU emulation Usar emulação assíncrona de GPU - + Uses an extra CPU thread for rendering. This option should always remain enabled. Usa uma thread de CPU extra para renderização. Esta opção deve estar sempre habilitada. - + NVDEC emulation: Emulação NVDEC: - + Specifies how videos should be decoded. It can either use the CPU or the GPU for decoding, or perform no decoding at all (black screen on videos). In most cases, GPU decoding provides the best performance. @@ -814,12 +778,12 @@ Tanto a CPU quanto a GPU podem ser utilizadas para decodificação, ou não deco Na maioria dos casos, a decodificação pela GPU fornece uma melhor performance. - + ASTC Decoding Method: Método de Decodificação ASTC: - + This option controls how ASTC textures should be decoded. CPU: Use the CPU for decoding, slowest but safest method. GPU: Use the GPU's compute shaders to decode ASTC textures, recommended for most games and users. @@ -832,34 +796,33 @@ CPU de Forma Assíncrona: Usa a CPU para decodificar texturas ASTC à medida que decodificação ASTC ao custo de problemas na renderização enquanto as texturas estão sendo decodificadas. - + ASTC Recompression Method: Método de Recompressão ASTC: - + Almost all desktop and laptop dedicated GPUs lack support for ASTC textures, forcing the emulator to decompress to an intermediate format any card supports, RGBA8. This option recompresses RGBA8 to either the BC1 or BC3 format, saving VRAM but negatively affecting image quality. Quase todas as GPUs de desktop e laptop não possuem suporte para texturas ASTC, o que força o emulador a descompactá-las para um formato intermediário que qualquer placa suporta, o RGBA8. Esta opção recompacta o RGBA8 ou pro formato BC1 ou pro BC3, economizando VRAM mas afetando negativamente a qualidade da imagem. - + VRAM Usage Mode: Modo de Uso da VRAM: - Selects whether the emulator should prefer to conserve memory or make maximum usage of available video memory for performance. Has no effect on integrated graphics. Aggressive mode may severely impact the performance of other applications such as recording software. - Define se o emulador deve preferir conservar ou fazer o uso máximo da memória de vídeo disponível para melhorar a performance. Não tem efeito em gráficos integrados. O modo Agressivo pode impactar fortemente na performance de outras aplicações, tipo programas de gravação de tela. + Define se o emulador deve preferir conservar ou fazer o uso máximo da memória de vídeo disponível para melhorar a performance. Não tem efeito em gráficos integrados. O modo Agressivo pode impactar fortemente na performance de outras aplicações, tipo programas de gravação de tela. - + VSync Mode: Modo de Sincronização vertical: - + FIFO (VSync) does not drop frames or exhibit tearing but is limited by the screen refresh rate. FIFO Relaxed is similar to FIFO but allows tearing as it recovers from a slow down. Mailbox can have lower latency than FIFO and does not tear but may drop frames. @@ -870,51 +833,49 @@ Caixa de entrada pode ter a latência mais baixa do que o FIFO e não causa tear Imediato (sem sincronização) simplesmente apresenta o que estiver disponível e pode exibir tearing. - + Enable asynchronous presentation (Vulkan only) Ativar apresentação assíncrona (Somente Vulkan) - + Slightly improves performance by moving presentation to a separate CPU thread. Melhora ligeiramente o desempenho ao mover a apresentação para uma thread de CPU separada. - + Force maximum clocks (Vulkan only) Forçar clock máximo (somente Vulkan) - + Runs work in the background while waiting for graphics commands to keep the GPU from lowering its clock speed. Executa trabalho em segundo plano aguardando pelos comandos gráficos para evitar a GPU de reduzir seu clock. - + Anisotropic Filtering: Filtro Anisotrópico: - + Controls the quality of texture rendering at oblique angles. It’s a light setting and safe to set at 16x on most GPUs. Controla a qualidade da renderização de texturas em ângulos oblíquos. É uma configuração leve, e é seguro deixar em 16x na maioria das GPUs. - Accuracy Level: - Nível de Precisão: + Nível de Precisão: - GPU emulation accuracy. Most games render fine with Normal, but High is still required for some. Particles tend to only render correctly with High accuracy. Extreme should only be used for debugging. This option can be changed while playing. Some games may require booting on high to render properly. - Precisão da emulação da GPU. + Precisão da emulação da GPU. A maioria dos jogos renderiza bem na precisão Normal, mas a Alta ainda é obrigatória para alguns. Partículas tendem a render corretamente somente com a precisão Alta. Extrema só deve ser utilizada para depuração. @@ -922,12 +883,12 @@ Esta opção pode ser alterada durante o jogo. Alguns jogos podem exigir serem iniciados na precisão alta pra renderizarem corretamente. - + Use asynchronous shader building (Hack) Usar compilação assíncrona de shaders (Hack) - + Enables asynchronous shader compilation, which may reduce shader stutter. This feature is experimental. Habilita a compilação de shaders assíncrona, o que pode reduzir engasgos. @@ -942,24 +903,24 @@ Esta opção é experimental. Ativa um tempo de resposta rápido da GPU. Esta opção forçará a maioria dos jogos a rodar em sua resolução nativa mais alta. - + Use Vulkan pipeline cache Utilizar cache de pipeline do Vulkan - + Enables GPU vendor-specific pipeline cache. This option can improve shader loading time significantly in cases where the Vulkan driver does not store pipeline cache files internally. Habilita o cache de pipeline da fabricante da GPU. Esta opção pode melhorar o tempo de carregamento de shaders significantemente em casos onde o driver Vulkan não armazena o cache de pipeline internamente. - + Enable Compute Pipelines (Intel Vulkan Only) Habilitar Pipeline de Computação (Somente Intel Vulkan) - + Enable compute pipelines, required by some games. This setting only exists for Intel proprietary drivers, and may crash if enabled. Compute pipelines are always enabled on all other drivers. @@ -968,111 +929,111 @@ Essa configuração só existe para drivers proprietários Intel, e pode travar Pipelines de computação estão sempre habilitadas em todos os outros drivers. - + Enable Reactive Flushing Habilitar Flushing Reativo - + Uses reactive flushing instead of predictive flushing, allowing more accurate memory syncing. Usa flushing reativo ao invés de flushing preditivo, permitindo mais precisão na sincronização da memória. - + Sync to framerate of video playback Sincronizar com o framerate da reprodução de vídeo - + Run the game at normal speed during video playback, even when the framerate is unlocked. Executa o jogo na velocidade normal durante a reprodução de vídeo, mesmo se o framerate estiver desbloqueado. - + Barrier feedback loops Ciclos de feedback de barreira - + Improves rendering of transparency effects in specific games. Melhora a renderização de efeitos de transparência em jogos específicos. - + RNG Seed Semente de RNG - + Controls the seed of the random number generator. Mainly used for speedrunning purposes. Controla a semente do gerador de números aleatórios. Usado principalmente para propósitos de speedrunning. - + Device Name Nome do Dispositivo - + The name of the emulated Switch. O nome do Switch emulado. - + Custom RTC Date: Data personalizada do RTC: - + This option allows to change the emulated clock of the Switch. Can be used to manipulate time in games. Esta opção permite alterar o relógio do Switch emulado. Pode ser utilizada para manipular o tempo nos jogos. - + Language: Idioma: - + Note: this can be overridden when region setting is auto-select Nota: isto pode ser substituído quando a configuração da região é de seleção automática - + Region: Região: - + The region of the emulated Switch. A região do Switch emulado. - + Time Zone: Fuso Horário: - + The time zone of the emulated Switch. O fuso horário do Switch emulado. - + Sound Output Mode: Modo de saída de som - + Console Mode: Modo Console: - + Selects if the console is emulated in Docked or Handheld mode. Games will change their resolution, details and supported controllers and depending on this setting. Setting to Handheld can help improve performance for low end systems. @@ -1081,7 +1042,7 @@ Os jogos mudarão suas resoluções, detalhes e controles suportados de acordo c Configurar essa opção para o Modo Portátil pode ajudar a melhorar a performance em sistemas mais fracos. - + Prompt for user on game boot Solicitar para o utilizador na inicialização do jogo @@ -1090,7 +1051,7 @@ Configurar essa opção para o Modo Portátil pode ajudar a melhorar a performan Pede para selecionar um perfil de usuário a cada boot, útil se várias pessoas utilizam o yuzu no mesmo PC. - + Pause emulation when in background Pausar o emulador quando estiver em segundo plano @@ -1099,843 +1060,992 @@ Configurar essa opção para o Modo Portátil pode ajudar a melhorar a performan Esta opção pausa o yuzu quando outras janelas estão ativas. - - Fast GPU Time (Hack) - - - - - Overclocks the emulated GPU to increase dynamic resolution and render distance. -Use 128 for maximal performance and 512 for maximal graphics fidelity. - - - - - Extended Dynamic State - - - - - Enables the VkExtendedDynamicState* extensions. -Higher dynamic states will generally improve performance, but may cause issues on certain games or devices. - - - - - Provoking Vertex - - - - - Improves lighting and vertex handling in certain games. -Only Vulkan 1.0+ devices support this extension. - - - - - Descriptor Indexing - - - - - Improves texture & buffer handling and the Maxwell translation layer. -Some Vulkan 1.1+ and all 1.2+ devices support this extension. - - - - - Ask to select a user profile on each boot, useful if multiple people use eden on the same PC. - - - - - This setting pauses eden when focusing other windows. - - - - + Confirm before stopping emulation Confirmar antes de parar a emulação - + This setting overrides game prompts asking to confirm stopping the game. Enabling it bypasses such prompts and directly exits the emulation. Esta configuração desconsidera as solicitações dos jogos que pedem pra confirmarem a interrupção deles. Habilitar essa configuração ignora essas solicitações e sai da emulação direto. - + Hide mouse on inactivity Esconder rato quando inactivo. - + This setting hides the mouse after 2.5s of inactivity. Esta configuração esconde o mouse após 2,5s de inativadade. - + Disable controller applet Desabilitar miniaplicativo de controle - + Forcibly disables the use of the controller applet by guests. When a guest attempts to open the controller applet, it is immediately closed. Força a desativação do uso do miniaplicativo de controle pelos dispositivos convidados. Quando um dispositivo convidado tenta abrir o miniaplicativo do controle, ele é imediatamente fechado. - - Check for updates - - - - - Whether or not to check for updates upon startup. - - - - + Enable Gamemode Habilitar Gamemode - + Custom frontend Frontend customizado - + Real applet Miniaplicativo real - - Never - - - - - On Load - - - - - Always - - - - + CPU CPU - + GPU GPU - + CPU Asynchronous CPU Assíncrona - + Uncompressed (Best quality) Descompactado (Melhor Q - + BC1 (Low quality) BC1 (Baixa qualidade) - + BC3 (Medium quality) BC3 (Média qualidade) - + Conservative Conservador - + Aggressive Agressivo - + OpenGL OpenGL - + Vulkan Vulcano - + Null Nenhum (desativado) - + GLSL GLSL - + GLASM (Assembly Shaders, NVIDIA Only) GLASM (Shaders Assembly, apenas NVIDIA) - + SPIR-V (Experimental, AMD/Mesa Only) SPIR-V (Experimental, Somente AMD/Mesa) - + Normal Normal - + High Alto - + Extreme Extremo - + Auto Automático - + Accurate Preciso - + Unsafe Inseguro - + Paranoid (disables most optimizations) Paranoia (desativa a maioria das otimizações) - + Dynarmic Dynarmic - + NCE NCE - + Borderless Windowed Janela sem bordas - + Exclusive Fullscreen Tela cheia exclusiva - + No Video Output Sem saída de vídeo - + CPU Video Decoding Decodificação de vídeo pela CPU - + GPU Video Decoding (Default) Decodificação de vídeo pela GPU (Padrão) - - 0.25X (180p/270p) [EXPERIMENTAL] - - - - + 0.5X (360p/540p) [EXPERIMENTAL] 0.5X (360p/540p) [EXPERIMENTAL] - + 0.75X (540p/810p) [EXPERIMENTAL] 0.75X (540p/810p) [EXPERIMENTAL] - + 1X (720p/1080p) 1X (720p/1080p) - + 1.5X (1080p/1620p) [EXPERIMENTAL] 1.5X (1080p/1620p) [EXPERIMENTAL] - + 2X (1440p/2160p) 2X (1440p/2160p) - + 3X (2160p/3240p) 3X (2160p/3240p) - + 4X (2880p/4320p) 4X (2880p/4320p) - + 5X (3600p/5400p) 5X (3600p/5400p) - + 6X (4320p/6480p) 6X (4320p/6480p) - + 7X (5040p/7560p) 7X (5040p/7560p) - + 8X (5760p/8640p) 8X (5760p/8640p) - + Nearest Neighbor Vizinho mais próximo - + Bilinear Bilinear - + Bicubic Bicúbico - + Gaussian Gaussiano - + ScaleForce ScaleForce - + AMD FidelityFX™️ Super Resolution AMD FidelityFX™️ Super Resolution - - Area - - - - + None Nenhum - + FXAA FXAA - + SMAA SMAA - + Default (16:9) Padrão (16:9) - + Force 4:3 Forçar 4:3 - + Force 21:9 Forçar 21:9 - + Force 16:10 Forçar 16:10 - + Stretch to Window Esticar à Janela - + Automatic Automático - + + Default Padrão - + + Synchronize Core Speed + + + + + Synchronizes CPU core speed with the game's maximum rendering speed to boost FPS without affecting game speed (animations, physics, etc.). +Compatibility varies by game; many (especially older ones) may not respond well. +Can help reduce stuttering at lower framerates. + + + + + Fast CPU Time + + + + + Overclocks the emulated CPU to remove some FPS limiters. Weaker CPUs may see reduced performance, and certain games may behave improperly. +Use Boost (1700MHz) to run at the Switch's highest native clock, or Fast (2000MHz) to run at 2x clock. + + + + + Custom CPU Ticks + + + + + Set a custom value of CPU ticks. Higher values can increase performance, but may also cause the game to freeze. A range of 77–21000 is recommended. + + + + + Enable Host MMU Emulation (fastmem) + + + + + This optimization speeds up memory accesses by the guest program. +Enabling it causes guest memory reads/writes to be done directly into memory and make use of Host's MMU. +Disabling this forces all memory accesses to use Software MMU Emulation. + + + + + Optimize SPIRV output shader + + + + + Runs an additional optimization pass over generated SPIRV shaders. +Will increase time required for shader compilation. +May slightly improve performance. +This feature is experimental. + + + + + Selects whether the emulator should prefer to conserve memory or make maximum usage of available video memory for performance. +Aggressive mode may severely impact the performance of other applications such as recording software. + + + + + Skip CPU Inner Invalidation + + + + + Skips certain CPU-side cache invalidations during memory updates, reducing CPU usage and improving it's performance. This may cause glitches or crashes on some games. + + + + + Sync Memory Operations + + + + + Ensures data consistency between compute and memory operations. +This option should fix issues in some games, but may also reduce performance in some cases. +Unreal Engine 4 games often see the most significant changes thereof. + + + + + GPU Accuracy: + + + + + Controls the GPU emulation accuracy. +Most games render fine with Normal, but High is still required for some. +Particles tend to only render correctly with High accuracy. +Extreme should only be used as a last resort. + + + + + DMA Accuracy: + + + + + Controls the DMA precision accuracy. Safe precision can fix issues in some games, but it can also impact performance in some cases. +If unsure, leave this on Default. + + + + + Fast GPU Time (Hack) + + + + + Overclocks the emulated GPU to increase dynamic resolution and render distance. +Use 128 for maximal performance and 512 for maximal graphics fidelity. + + + + + RAII + + + + + A method of automatic resource management in Vulkan that ensures proper release of resources when they are no longer needed, but may cause crashes in bundled games. + + + + + Extended Dynamic State + + + + + Controls the number of features that can be used in Extended Dynamic State. +Higher numbers allow for more features and can increase performance, but may cause issues with some drivers and vendors. +The default value may vary depending on your system and hardware capabilities. +This value can be changed until stability and a better visual quality are achieved. + + + + + Provoking Vertex + + + + + Improves lighting and vertex handling in certain games. +Only Vulkan 1.0+ devices support this extension. + + + + + Descriptor Indexing + + + + + Improves texture & buffer handling and the Maxwell translation layer. +Some Vulkan 1.1+ and all 1.2+ devices support this extension. + + + + + Sample Shading + + + + + Allows the fragment shader to execute per sample in a multi-sampled fragment instead once per fragment. Improves graphics quality at the cost of some performance. +Higher values improve quality more but also reduce performance to a greater extent. + + + + + Ask to select a user profile on each boot, useful if multiple people use Eden on the same PC. + + + + + This setting pauses Eden when focusing other windows. + + + + + Check for updates + + + + + Whether or not to check for updates upon startup. + + + + + Never + + + + + On Load + + + + + Always + + + + + Unsafe (fast) + + + + + Safe (stable) + + + + + 0.25X (180p/270p) [EXPERIMENTAL] + + + + + Area + + + + 2x 2x - + 4x 4x - + 8x 8x - + 16x 16x - + Japanese (日本語) Japonês (日本語) - + American English Inglês Americano - + French (français) Francês (français) - + German (Deutsch) Alemão (Deutsch) - + Italian (italiano) Italiano (italiano) - + Spanish (español) Espanhol (español) - + Chinese Chinês - + Korean (한국어) Coreano (한국어) - + Dutch (Nederlands) Holandês (Nederlands) - + Portuguese (português) Português (português) - + Russian (Русский) Russo (Русский) - + Taiwanese Taiwanês - + British English Inglês Britânico - + Canadian French Francês Canadense - + Latin American Spanish Espanhol Latino-Americano - + Simplified Chinese Chinês Simplificado - + Traditional Chinese (正體中文) Chinês Tradicional (正 體 中文) - + Brazilian Portuguese (português do Brasil) Português do Brasil (Brazilian Portuguese) - - + + Serbian (српски) + + + + + Japan Japão - + USA EUA - + Europe Europa - + Australia Austrália - + China China - + Korea Coreia - + Taiwan Taiwan - + Auto (%1) Auto select time zone Auto (%1) - + Default (%1) Default time zone Padrão (%1) - + CET CET - + CST6CDT CST6CDT - + Cuba Cuba - + EET EET - + Egypt Egipto - + Eire Irlanda - + EST EST - + EST5EDT EST5EDT - + GB GB - + GB-Eire GB-Irlanda - + GMT GMT - + GMT+0 GMT+0 - + GMT-0 GMT-0 - + GMT0 GMT0 - + Greenwich Greenwich - + Hongkong Hongkong - + HST HST - + Iceland Islândia - + Iran Irão - + Israel Israel - + Jamaica Jamaica - + Kwajalein Kwajalein - + Libya Líbia - + MET MET - + MST MST - + MST7MDT MST7MDT - + Navajo Navajo - + NZ NZ - + NZ-CHAT NZ-CHAT - + Poland Polónia - + Portugal Portugal - + PRC PRC - + PST8PDT PST8PDT - + ROC ROC - + ROK ROK - + Singapore Singapura - + Turkey Turquia - + UCT UCT - + Universal Universal - + UTC UTC - + W-SU W-SU - + WET WET - + Zulu Zulu - + Mono Mono - + Stereo Estéreo - + Surround Surround - + 4GB DRAM (Default) 4GB DRAM (Padrão) - + 6GB DRAM (Unsafe) 6GB DRAM (Não seguro) - + 8GB DRAM - + 10GB DRAM (Unsafe) - + 12GB DRAM (Unsafe) - + Low (128) - + Medium (256) - + High (512) @@ -1944,37 +2054,37 @@ Quando um dispositivo convidado tenta abrir o miniaplicativo do controle, ele é 8GB DRAM (Não seguro) - + Docked Ancorado - + Handheld Portátil - + Boost (1700MHz) - + Fast (2000MHz) - + Always ask (Default) Sempre perguntar (Padrão) - + Only if game specifies not to stop Somente se o jogo especificar para não parar - + Never ask Nunca perguntar @@ -2321,27 +2431,27 @@ Quando um dispositivo convidado tenta abrir o miniaplicativo do controle, ele é Entrando - + Open Log Location Abrir a localização do registro - + Global Log Filter Filtro de registro global - + When checked, the max size of the log increases from 100 MB to 1 GB Quando ativado, o tamanho máximo do registo aumenta de 100 MB para 1 GB - + Enable Extended Logging** Ativar registros avançados** - + Show Log in Console Mostrar Relatório na Consola @@ -2487,7 +2597,7 @@ Quando um dispositivo convidado tenta abrir o miniaplicativo do controle, ele é - **This will be reset automatically when eden closes. + **This will be reset automatically when Eden closes. @@ -2549,7 +2659,7 @@ Quando um dispositivo convidado tenta abrir o miniaplicativo do controle, ele é **Isto será restaurado automaticamente assim que o yuzu for fechado. - + Web applet not compiled Applet Web não compilado @@ -2599,7 +2709,7 @@ Quando um dispositivo convidado tenta abrir o miniaplicativo do controle, ele é - eden Configuration + Eden Configuration @@ -2608,88 +2718,88 @@ Quando um dispositivo convidado tenta abrir o miniaplicativo do controle, ele é Algumas configurações só estão disponíveis apenas quando não houver nenhum jogo em execução. - + Applets Miniaplicativos - - + + Audio Audio - - + + CPU CPU - + Debug Depurar - + Filesystem Sistema de Ficheiros - - + + General Geral - - + + Graphics Gráficos - + GraphicsAdvanced GráficosAvançados - + GraphicsExtensions - + Hotkeys Teclas de Atalhos - - + + Controls Controlos - + Profiles Perfis - + Network Rede - - + + System Sistema - + Game List Lista de Jogos - + Web Rede @@ -2787,51 +2897,45 @@ Quando um dispositivo convidado tenta abrir o miniaplicativo do controle, ele é - - - Reset Metadata Cache Resetar a Cache da Metadata - + Select Emulated NAND Directory... Selecione o Diretório NAND Emulado... - + Select Emulated SD Directory... Selecione o Diretório SD Emulado... - + Select Gamecard Path... Selecione o Diretório do Cartão de Jogo... - + Select Dump Directory... Selecionar o diretório do Dump... - + Select Mod Load Directory... Selecionar o Diretório do Mod Load ... - The metadata cache is already empty. - O cache de metadata já está vazio. + O cache de metadata já está vazio. - The operation completed successfully. - A operação foi completa com sucesso. + A operação foi completa com sucesso. - The metadata cache couldn't be deleted. It might be in use or non-existent. - Não foi possível excluir o cache de metadata. Pode estar em uso ou inexistente. + Não foi possível excluir o cache de metadata. Pode estar em uso ou inexistente. @@ -2862,12 +2966,12 @@ Quando um dispositivo convidado tenta abrir o miniaplicativo do controle, ele é yuzu - - eden + + Eden - + This reset all settings and remove all per-game configurations. This will not delete game directories, profiles, or input profiles. Proceed? Isto restaura todas as configurações e remove as configurações específicas de cada jogo. As pastas de jogos, perfis de jogos e perfis de controlo não serão removidos. Continuar? @@ -2900,33 +3004,33 @@ Quando um dispositivo convidado tenta abrir o miniaplicativo do controle, ele é Cor de fundo: - + % FSR sharpening percentage (e.g. 50%) % - + Off Desligado - + VSync Off Sincronização vertical desligada - + Recommended Recomendado - + On Ligado - + VSync On Sincronização vertical ligada @@ -2963,14 +3067,18 @@ Quando um dispositivo convidado tenta abrir o miniaplicativo do controle, ele é - Vulkan Extension Settings + Vulkan Extensions Settings - - While it's recommended to use state 3, some games may perform better on lower states. Setting to 0 (disabled) may also break games. -If your GPU is older (i.e. RX570/580 or older), it may not support these features. If this is the case, set the slider to 0 and uncheck all boxes. -These settings are experimental, and may cause black screens. If your games fail to boot or are stuck on a black screen, change these settings around. + + % + Sample Shading percentage (e.g. 50%) + % + + + + Extended Dynamic State is disabled on macOS due to MoltenVK compatibility issues that cause black screens. @@ -3002,75 +3110,75 @@ These settings are experimental, and may cause black screens. If your games fail Restaurar Padrões - + Action Ação - + Hotkey Tecla de Atalho - + Controller Hotkey Atalho do controle - - - + + + Conflicting Key Sequence Sequência de teclas em conflito - - + + The entered key sequence is already assigned to: %1 A sequência de teclas inserida já está atribuída a: %1 - + [waiting] [em espera] - + Invalid Inválido - + Invalid hotkey settings Configurações de atalho inválidas - + An error occurred. Please report this issue on github. Houve um erro. Relate o problema no GitHub. - + Restore Default Restaurar Padrão - + Clear Limpar - + Conflicting Button Sequence Sequência de botões conflitante - + The default button sequence is already assigned to: %1 A sequência de botões padrão já está vinculada a %1 - + The default key sequence is already assigned to: %1 A sequência de teclas padrão já está atribuída a: %1 @@ -3390,7 +3498,7 @@ These settings are experimental, and may cause black screens. If your games fail - Requires restarting eden + Requires restarting Eden @@ -3545,7 +3653,7 @@ These settings are experimental, and may cause black screens. If your games fail - + Left Stick Analógico Esquerdo @@ -3655,14 +3763,14 @@ These settings are experimental, and may cause black screens. If your games fail - + L L - + ZL ZL @@ -3681,7 +3789,7 @@ These settings are experimental, and may cause black screens. If your games fail - + Plus Mais @@ -3694,15 +3802,15 @@ These settings are experimental, and may cause black screens. If your games fail - - + + R R - + ZR ZR @@ -3747,7 +3855,7 @@ These settings are experimental, and may cause black screens. If your games fail - + Right Stick Analógico Direito @@ -3762,242 +3870,242 @@ These settings are experimental, and may cause black screens. If your games fail Configurar - - - - + + + + Clear Limpar - - - - - + + + + + [not set] [não definido] - - - + + + Invert button Inverter botão - - + + Toggle button Alternar pressionamento do botão - + Turbo button Botão Turbo - - + + Invert axis Inverter eixo - - - + + + Set threshold Definir limite - - + + Choose a value between 0% and 100% Escolha um valor entre 0% e 100% - + Toggle axis Alternar eixos - + Set gyro threshold Definir limite do giroscópio - + Calibrate sensor Calibrar sensor - + Map Analog Stick Mapear analógicos - + After pressing OK, first move your joystick horizontally, and then vertically. To invert the axes, first move your joystick vertically, and then horizontally. Após pressionar OK, mova o seu analógico primeiro horizontalmente e depois verticalmente. Para inverter os eixos, mova o seu analógico primeiro verticalmente e depois horizontalmente. - + Center axis Eixo central - - + + Deadzone: %1% Ponto Morto: %1% - - + + Modifier Range: %1% Modificador de Alcance: %1% - - + + Pro Controller Comando Pro - + Dual Joycons Joycons Duplos - + Left Joycon Joycon Esquerdo - + Right Joycon Joycon Direito - + Handheld Portátil - + GameCube Controller Controlador de depuração - + Poke Ball Plus Poke Ball Plus - + NES Controller Controle NES - + SNES Controller Controle SNES - + N64 Controller Controle N64 - + Sega Genesis Mega Drive - + Start / Pause Iniciar / Pausar - + Z Z - + Control Stick Direcional de controle - + C-Stick C-Stick - + Shake! Abane! - + [waiting] [em espera] - + New Profile Novo Perfil - + Enter a profile name: Introduza um novo nome de perfil: - - + + Create Input Profile Criar perfil de controlo - + The given profile name is not valid! O nome de perfil dado não é válido! - + Failed to create the input profile "%1" Falha ao criar o perfil de controlo "%1" - + Delete Input Profile Apagar Perfil de Controlo - + Failed to delete the input profile "%1" Falha ao apagar o perfil de controlo "%1" - + Load Input Profile Carregar perfil de controlo - + Failed to load the input profile "%1" Falha ao carregar o perfil de controlo "%1" - + Save Input Profile Guardar perfil de controlo - + Failed to save the input profile "%1" Falha ao guardar o perfil de controlo "%1" @@ -4054,7 +4162,7 @@ Para inverter os eixos, mova o seu analógico primeiro verticalmente e depois ho - + Configure Configurar @@ -4090,7 +4198,7 @@ Para inverter os eixos, mova o seu analógico primeiro verticalmente e depois ho - + Test Testar @@ -4109,7 +4217,7 @@ Para inverter os eixos, mova o seu analógico primeiro verticalmente e depois ho <a href='https://yuzu-emu.org/wiki/using-a-controller-or-android-phone-for-motion-or-touch-input'><span style="text-decoration: underline; color:#039be5;">Saber Mais</span></a> - + %1:%2 %1:%2 @@ -4118,77 +4226,77 @@ Para inverter os eixos, mova o seu analógico primeiro verticalmente e depois ho yuzu - + <a href='https://eden-emulator.github.io/wiki/using-a-controller-or-android-phone-for-motion-or-touch-input'><span style="text-decoration: underline; color:#039be5;">Learn More</span></a> - + Port number has invalid characters O número da porta tem caracteres inválidos - - - - - - - eden + + + + + + + Eden - + Port has to be in range 0 and 65353 A porta tem que estar entre 0 e 65353 - + IP address is not valid O endereço IP não é válido - + This UDP server already exists Este servidor UDP já existe - + Unable to add more than 8 servers Não é possível adicionar mais de 8 servidores - + Testing Testando - + Configuring Configurando - + Test Successful Teste Bem-Sucedido - + Successfully received data from the server. Dados recebidos do servidor com êxito. - + Test Failed Teste Falhou - + 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>Por favor verifica que o servidor está configurado correctamente e o endereço e porta estão correctos. - + UDP Test or calibration configuration is in progress.<br>Please wait for them to finish. Teste UDP ou configuração de calibragem em progresso.<br> Por favor espera que termine. @@ -4315,7 +4423,12 @@ Os valores atuais são %1% e %2% respectivamente. Interface de rede - + + Enable Airplane Mode + + + + None Nenhum @@ -4373,52 +4486,52 @@ Os valores atuais são %1% e %2% respectivamente. Algumas configurações só estão disponíveis apenas quando não houver nenhum jogo em execução. - + Add-Ons Add-Ons - + System Sistema - + CPU CPU - + Graphics Gráficos - + Adv. Graphics Gráficos Avç. - + GPU Extensions - + Audio Audio - + Input Profiles Perfis de controle - + Linux Linux - + Properties Propriedades @@ -4436,12 +4549,12 @@ Os valores atuais são %1% e %2% respectivamente. Add-Ons - + Patch Name Nome da Patch - + Version Versão @@ -4479,27 +4592,32 @@ Os valores atuais são %1% e %2% respectivamente. Definir Imagem - + + Select Avatar + + + + Add Adicionar - + Rename Renomear - + Remove Remover - + Profile management is available only when game is not running. O gestor de perfis só está disponível apenas quando o jogo não está em execução. - + %1 %2 %1 is the profile username, %2 is the formatted UUID (e.g. 00112233-4455-6677-8899-AABBCCDDEEFF)) @@ -4507,100 +4625,189 @@ Os valores atuais são %1% e %2% respectivamente. %2 - + Enter Username Introduza o Nome de Utilizador - + Users Utilizadores - + Enter a username for the new user: Introduza um nome de utilizador para o novo utilizador: - + Enter a new username: Introduza um novo nome de utilizador: - + + Error saving user image + + + + + Unable to save image to file + + + + Select User Image Definir Imagem de utilizador - - JPEG Images (*.jpg *.jpeg) - Imagens JPEG (*.jpg *.jpeg) + + Image Formats (*.jpg *.jpeg *.png *.bmp) + - + + No firmware available + Nenhum firmware disponível + + + + Please install the firmware to use firmware avatars. + + + + + + Error loading archive + + + + + Archive is not available. Please install/reinstall firmware. + + + + + Archive does not contain romfs. It is probably corrupt. + + + + + Error extracting archive + + + + + Archive could not be extracted. It is probably corrupt. + + + + + Error finding image directory + + + + + Failed to find image directory in the archive. + + + + + No images found + + + + + No avatar images were found in the archive. + + + + JPEG Images (*.jpg *.jpeg) + Imagens JPEG (*.jpg *.jpeg) + + + Error deleting image Error ao eliminar a imagem - + Error occurred attempting to overwrite previous image at: %1. Ocorreu um erro ao tentar substituir imagem anterior em: %1. - + Error deleting file Erro ao eliminar o arquivo - + Unable to delete existing file: %1. Não é possível eliminar o arquivo existente: %1. - + Error creating user image directory Erro ao criar o diretório de imagens do utilizador - + Unable to create directory %1 for storing user images. Não é possível criar o diretório %1 para armazenar imagens do utilizador. - Error copying user image - Erro ao copiar a imagem do utilizador + Erro ao copiar a imagem do utilizador - Unable to copy image from %1 to %2 - Não é possível copiar a imagem de %1 para %2 + Não é possível copiar a imagem de %1 para %2 - Error resizing user image - Erro no redimensionamento da imagem do usuário + Erro no redimensionamento da imagem do usuário - Unable to resize image - Não foi possível redimensionar a imagem + Não foi possível redimensionar a imagem + + + + ConfigureProfileManagerAvatarDialog + + + Select + + + + + Cancel + Cancelar + + + + Background Color + + + + + Select Firmware Avatar + ConfigureProfileManagerDeleteDialog - + Delete this user? All of the user's save data will be deleted. Excluir esse usuário? Todos os dados salvos desse usuário serão removidos. - + Confirm Delete Confirmar para eliminar - + Name: %1 UUID: %2 Nome: %1 @@ -4653,7 +4860,7 @@ UUID: %2 - + Enable Habilitar @@ -4664,7 +4871,7 @@ UUID: %2 - + Not connected Não conectado @@ -4674,63 +4881,63 @@ UUID: %2 Restaurar Padrões - + Clear Limpar - + [not set] [não definido] - + Invert axis Inverter eixo - - + + Deadzone: %1% Ponto Morto: %1% - + Error enabling ring input Erro habilitando controle de anel - + Direct Joycon driver is not enabled Driver direto do Joycon não está habilitado - + Configuring Configurando - + The current mapped device doesn't support the ring controller O dispositivo atualmente mapeado não suporta o controle de anel - + The current mapped device doesn't have a ring attached O dispositivo mapeado não tem um anel conectado - + The current mapped device is not connected O dispositivo atualmente mapeado não está conectado - + Unexpected driver result %1 Resultado inesperado do driver %1 - + [waiting] [em espera] @@ -4772,7 +4979,7 @@ UUID: %2 - <html><head/><body><p>Reads controller input from scripts in the same format as TAS-nx scripts.<br/>For a more detailed explanation, please consult the <a href="https://eden-emulator.github.io/help/feature/tas/"><span style=" text-decoration: underline; color:#039be5;">help page</span></a> on the eden website.</p></body></html> + <html><head/><body><p>Reads controller input from scripts in the same format as TAS-nx scripts.<br/>For a more detailed explanation, please consult the <a href="https://eden-emulator.github.io/help/feature/tas/"><span style=" text-decoration: underline; color:#039be5;">help page</span></a> on the Eden website.</p></body></html> @@ -4824,12 +5031,12 @@ UUID: %2 ConfigureTasDialog - + TAS Configuration Configurar TAS - + Select TAS Load Directory... Selecionar diretório de carregamento TAS @@ -4939,7 +5146,7 @@ Arrasta os pontos para mudar a posição, ou dá duplo-clique nas células da ta - Warning: The settings in this page affect the inner workings of eden's emulated touchscreen. Changing them may result in undesirable behavior, such as the touchscreen partially or not working. You should only use this page if you know what you are doing. + Warning: The settings in this page affect the inner workings of Eden's emulated touchscreen. Changing them may result in undesirable behavior, such as the touchscreen partially or not working. You should only use this page if you know what you are doing. @@ -5259,6 +5466,16 @@ Arrasta os pontos para mudar a posição, ou dá duplo-clique nas células da ta Web Rede + + + Eden Web Service + + + + + Generate + + yuzu Web Service Serviço Web do Yuzu @@ -5268,42 +5485,29 @@ Arrasta os pontos para mudar a posição, ou dá duplo-clique nas células da ta Ao fornecer seu nome de usuário e token, você concorda em permitir que o yuzu colete dados de uso adicionais, que podem incluir informações de identificação do usuário. - - eden Web Service - - - - - By providing your username and token, you agree to allow eden to collect additional usage data, which may include user identifying information. - - - - Verify - Verificar + Verificar - Sign up - Inscrever-se + Inscrever-se - + Token: Token: - + Username: Nome de usuário: - What is my token? - O que é o meu token? + O que é o meu token? - + Web Service configuration can only be changed when a public room isn't being hosted. Configuração de Serviço Web só podem ser alteradas quando uma sala pública não está sendo hospedada. @@ -5328,12 +5532,12 @@ Arrasta os pontos para mudar a posição, ou dá duplo-clique nas células da ta Regenerar - + Discord Presence Presença do Discord - + Show Current Game in your Discord Status Mostrar o Jogo Atual no seu Estado de Discord @@ -5342,24 +5546,8 @@ Arrasta os pontos para mudar a posição, ou dá duplo-clique nas células da ta <a href='https://yuzu-emu.org/help/feature/telemetry/'><span style="text-decoration: underline; color:#039be5;">Saber mais</span></a> - <a href='https://profile.yuzu-emu.org/'><span style="text-decoration: underline; color:#039be5;">Sign up</span></a> - <a href='https://profile.yuzu-emu.org/'><span style="text-decoration: underline; color:#039be5;">Inscrever-se</span></a> - - - - <a href='https://evilperson1337.notion.site/Hosting-a-Room-Inside-of-Eden-20457c2edaf680108abac6215a79acdb'><span style="text-decoration: underline; color:#039be5;">What is my token?</span></a> - - - - - Warning - - - - - Verification is currently nonfunctional, instead generate a random 48-character string with only lowercase a-z. - + <a href='https://profile.yuzu-emu.org/'><span style="text-decoration: underline; color:#039be5;">Inscrever-se</span></a> <a href='https://yuzu-emu.org/wiki/yuzu-web-service/'><span style="text-decoration: underline; color:#039be5;">What is my token?</span></a> @@ -5382,10 +5570,9 @@ Arrasta os pontos para mudar a posição, ou dá duplo-clique nas células da ta O token não foi verificado. A alteração do token não foi gravada. - Unverified, please click Verify before saving configuration Tooltip - Não verificado, por favor clique sobre Verificar antes de salvar as configurações + Não verificado, por favor clique sobre Verificar antes de salvar as configurações Verifying... @@ -5409,20 +5596,67 @@ Arrasta os pontos para mudar a posição, ou dá duplo-clique nas células da ta Verification failed. Check that you have entered your token correctly, and that your internet connection is working. Verificação Falhada. Verifique se introduziu seu nome de utilizador e o token correctamente e se a conexão com a Internet está operacional. + + + + All Good + Tooltip + + + + + Must be between 4-20 characters + Tooltip + + + + + Must be 48 characters, and lowercase a-z + Tooltip + + ControllerDialog - + Controller P1 Comando J1 - + &Controller P1 &Comando J1 + + DepsDialog + + + Eden Dependencies + + + + + <html><head/><body><p><span style=" font-size:28pt;">Eden Dependencies</span></p></body></html> + + + + + <html><head/><body><p>The projects that make Eden possible</p></body></html> + + + + + Dependency + + + + + Version + Versão + + DirectConnect @@ -5528,7 +5762,12 @@ Arrasta os pontos para mudar a posição, ou dá duplo-clique nas células da ta - Creating a room failed. Please retry. Restarting eden might be necessary. + Creating a room failed. Please retry. Restarting Eden might be necessary. + + + + + Version mismatch! Please update to the latest version of Eden. If the problem persists, contact the room host and ask them to update the server. @@ -5536,11 +5775,6 @@ Arrasta os pontos para mudar a posição, ou dá duplo-clique nas células da ta The host of the room has banned you. Speak with the host to unban you or try a different room. O anfitrião da sala baniu você. Fale com o anfitrião para que ele remova seu banimento ou tente uma sala diferente. - - - Version mismatch! Please update to the latest version of eden. If the problem persists, contact the room host and ask them to update the server. - - Incorrect password. @@ -5601,7 +5835,7 @@ Please go to Configure -> System -> Network and make a selection. Telemetria - + Broken Vulkan Installation Detected Detectada Instalação Defeituosa do Vulkan @@ -5610,106 +5844,105 @@ Please go to Configure -> System -> Network and make a selection. A inicialização do Vulkan falhou durante a carga do programa. <br><br>Clique <a href='https://yuzu-emu.org/wiki/faq/#yuzu-starts-with-the-error-broken-vulkan-installation-detected'>aqui para instruções de como resolver o problema</a>. - + Running a game TRANSLATORS: This string is shown to the user to explain why yuzu needs to prevent the computer from sleeping Rodando um jogo - + Loading Web Applet... A Carregar o Web Applet ... - - + + Disable Web Applet Desativar Web Applet - + Disabling the web applet can lead to undefined behavior and should only be used with Super Mario 3D All-Stars. Are you sure you want to disable the web applet? (This can be re-enabled in the Debug settings.) A desativação do applet da web pode causar comportamento inesperado e deve apenas ser usada com Super Mario 3D All-Stars. Você deseja mesmo desativar o applet da web? (Ele pode ser reativado nas configurações de depuração.) - + The amount of shaders currently being built Quantidade de shaders a serem construídos - + The current selected resolution scaling multiplier. O atualmente multiplicador de escala de resolução selecionado. - + Current emulation speed. Values higher or lower than 100% indicate emulation is running faster or slower than a Switch. Velocidade da emulação actual. Valores acima ou abaixo de 100% indicam que a emulação está sendo executada mais depressa ou mais devagar do que a Switch - + 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 o jogo está exibindo de momento. Isto irá variar de jogo para jogo e de cena para cena. - + Time taken to emulate a Switch frame, not counting framelimiting or v-sync. For full-speed emulation this should be at most 16.67 ms. Tempo gasto para emular um frame da Switch, sem contar o a limitação de quadros ou o v-sync. Para emulação de velocidade máxima, esta deve ser no máximo 16.67 ms. - + Unmute Unmute - + Mute Mute - + Reset Volume Redefinir volume - + &Clear Recent Files &Limpar arquivos recentes - + &Continue &Continuar - + &Pause &Pausa - Warning Outdated Game Format - Aviso de Formato de Jogo Desactualizado + Aviso de Formato de Jogo Desactualizado You are using the deconstructed ROM directory format for this game, which is an outdated format that has been superseded by others such as NCA, NAX, XCI, or NSP. Deconstructed ROM directories lack icons, metadata, and update support.<br><br>For an explanation of the various Switch formats yuzu supports, <a href='https://yuzu-emu.org/wiki/overview-of-switch-game-formats'>check out our wiki</a>. This message will not be shown again. Você está usando o formato de directório ROM desconstruído para este jogo, que é um formato desactualizado que foi substituído por outros, como NCA, NAX, XCI ou NSP. Os directórios de ROM não construídos não possuem ícones, metadados e suporte de actualização.<br><br>Para uma explicação dos vários formatos de Switch que o yuzu suporta,<a href='https://yuzu-emu.org/wiki/overview-of-switch-game-formats'>Verifique a nossa Wiki</a>. Esta mensagem não será mostrada novamente. - - + + Error while loading ROM! Erro ao carregar o ROM! - + The ROM format is not supported. O formato do ROM não é suportado. - + An error occurred initializing the video core. Ocorreu um erro ao inicializar o núcleo do vídeo. @@ -5718,7 +5951,7 @@ Please go to Configure -> System -> Network and make a selection. yuzu encontrou um erro enquanto rodando o núcleo de vídeo. Normalmente isto é causado por drivers de GPU desatualizados, incluindo integrados. Por favor veja o registro para mais detalhes. Para mais informações em acesso ao registro por favor veja a seguinte página: <a href='https://yuzu-emu.org/help/reference/log-files/'>Como fazer envio de arquivo de registro</a>. - + Error while loading ROM! %1 %1 signifies a numeric error code. Erro ao carregar a ROM! %1 @@ -5729,473 +5962,405 @@ Please go to Configure -> System -> Network and make a selection. %1<br>Por favor, siga <a href='https://yuzu-emu.org/help/quickstart/'>a guia de início rápido do yuzu</a> para fazer o redespejo dos seus arquivos.<br>Você pode consultar a wiki do yuzu</a> ou o Discord do yuzu</a> para obter ajuda. - + Vulkan initialization failed during boot.<br><br>Click <a href='https://eden-emulator.github.io/wiki/faq/#yuzu-starts-with-the-error-broken-vulkan-installation-detected'>here for instructions to fix the issue</a>. - - Game Updates Warning - - - - - The game you are trying to launch is known to have performance or booting issues when updates are applied. Please try increasing the memory layout to 6GB or 8GB if any issues occur.<br><br>Press "OK" to continue launching, or "Cancel" to cancel the launch. - - - - - Don't show again for this game - - - - - You are using the deconstructed ROM directory format for this game, which is an outdated format that has been superseded by others such as NCA, NAX, XCI, or NSP. Deconstructed ROM directories lack icons, metadata, and update support.<br><br>For an explanation of the various Switch formats eden supports, <a href='https://eden-emulator.github.io/wiki/overview-of-switch-game-formats'>check out our wiki</a>. This message will not be shown again. - - - - - eden has encountered an error while running the video core. This is usually caused by outdated GPU drivers, including integrated ones. Please see the log for more details. For more information on accessing the log, please see the following page: <a href='https://eden-emulator.github.io/help/reference/log-files/'>How to Upload the Log File</a>. - - - - - %1<br>Please redump your files or ask on Discord for help. - %1 signifies an error string. - - - - + An unknown error occurred. Please see the log for more details. Ocorreu um erro desconhecido. Por favor, veja o log para mais detalhes. - + (64-bit) (64-bit) - + (32-bit) (32-bit) - + %1 %2 %1 is the title name. %2 indicates if the title is 64-bit or 32-bit %1 %2 - + Closing software... Encerrando software... - + Save Data Save Data - + Mod Data Mod Data - + Error Opening %1 Folder Erro ao abrir a pasta %1 - - + + Folder does not exist! A Pasta não existe! - Error Opening Transferable Shader Cache - Erro ao abrir os Shader Cache transferíveis + Erro ao abrir os Shader Cache transferíveis - Failed to create the shader cache directory for this title. - Falha ao criar o diretório de cache de shaders para este título. + Falha ao criar o diretório de cache de shaders para este título. - Error Removing Contents - Erro Removendo Conteúdos + Erro Removendo Conteúdos - Error Removing Update - Erro ao Remover Atualização + Erro ao Remover Atualização - Error Removing DLC - Erro Removendo DLC + Erro Removendo DLC - + Remove Installed Game Contents? Remover Conteúdo Instalado do Jogo? - + Remove Installed Game Update? Remover Atualização Instalada do Jogo? - + Remove Installed Game DLC? Remover DLC Instalada do Jogo? - + Remove Entry Remover Entrada - - - - - - Successfully Removed - Removido com Sucesso + Removido com Sucesso - Successfully removed the installed base game. - Removida a instalação do jogo base com sucesso. + Removida a instalação do jogo base com sucesso. - The base game is not installed in the NAND and cannot be removed. - O jogo base não está instalado no NAND e não pode ser removido. + O jogo base não está instalado no NAND e não pode ser removido. - Successfully removed the installed update. - Removida a actualização instalada com sucesso. + Removida a actualização instalada com sucesso. - There is no update installed for this title. - Não há actualização instalada neste título. + Não há actualização instalada neste título. - There are no DLC installed for this title. - Não há DLC instalado neste título. + Não há DLC instalado neste título. - Successfully removed %1 installed DLC. - Removido DLC instalado %1 com sucesso. + Removido DLC instalado %1 com sucesso. - + Delete OpenGL Transferable Shader Cache? Apagar o cache de shaders transferível do OpenGL? - + Delete Vulkan Transferable Shader Cache? Apagar o cache de shaders transferível do Vulkan? - + Delete All Transferable Shader Caches? Apagar todos os caches de shaders transferíveis? - + Remove Custom Game Configuration? Remover Configuração Personalizada do Jogo? - + Remove Cache Storage? Remover Armazenamento da Cache? - + Remove File Remover Ficheiro - + Remove Play Time Data Remover dados de tempo jogado - + Reset play time? Deseja mesmo resetar o tempo jogado? - - Error Removing Transferable Shader Cache - Error ao Remover Cache de Shader Transferível + Error ao Remover Cache de Shader Transferível - - A shader cache for this title does not exist. - O Shader Cache para este titulo não existe. + O Shader Cache para este titulo não existe. - Successfully removed the transferable shader cache. - Removido a Cache de Shader Transferível com Sucesso. + Removido a Cache de Shader Transferível com Sucesso. - Failed to remove the transferable shader cache. - Falha ao remover a cache de shader transferível. + Falha ao remover a cache de shader transferível. - Error Removing Vulkan Driver Pipeline Cache - Erro ao Remover Cache de Pipeline do Driver Vulkan + Erro ao Remover Cache de Pipeline do Driver Vulkan - Failed to remove the driver pipeline cache. - Falha ao remover o pipeline de cache do driver. + Falha ao remover o pipeline de cache do driver. - - Error Removing Transferable Shader Caches - Erro ao remover os caches de shaders transferíveis + Erro ao remover os caches de shaders transferíveis - Successfully removed the transferable shader caches. - Os caches de shaders transferíveis foram removidos com sucesso. + Os caches de shaders transferíveis foram removidos com sucesso. - Failed to remove the transferable shader cache directory. - Falha ao remover o diretório do cache de shaders transferível. + Falha ao remover o diretório do cache de shaders transferível. - - Error Removing Custom Configuration - Erro ao Remover Configuração Personalizada + Erro ao Remover Configuração Personalizada - A custom configuration for this title does not exist. - Não existe uma configuração personalizada para este titúlo. + Não existe uma configuração personalizada para este titúlo. - Successfully removed the custom game configuration. - Removida a configuração personalizada do jogo com sucesso. + Removida a configuração personalizada do jogo com sucesso. - Failed to remove the custom game configuration. - Falha ao remover a configuração personalizada do jogo. + Falha ao remover a configuração personalizada do jogo. - - + + RomFS Extraction Failed! A Extração de RomFS falhou! - + There was an error copying the RomFS files or the user cancelled the operation. Houve um erro ao copiar os arquivos RomFS ou o usuário cancelou a operação. - + Full Cheio - + Skeleton Esqueleto - + Select RomFS Dump Mode Selecione o modo de despejo do RomFS - + Please select the how you would like the RomFS dumped.<br>Full will copy all of the files into the new directory while <br>skeleton will only create the directory structure. Por favor, selecione a forma como você gostaria que o RomFS fosse despejado<br>Full irá copiar todos os arquivos para o novo diretório enquanto<br>skeleton criará apenas a estrutura de diretórios. - + There is not enough free space at %1 to extract the RomFS. Please free up space or select a different dump directory at Emulation > Configure > System > Filesystem > Dump Root Não há espaço suficiente em %1 para extrair o RomFS. Por favor abra espaço ou selecione um diretório diferente em Emulação > Configurar > Sistema > Sistema de arquivos > Extrair raiz - + Extracting RomFS... Extraindo o RomFS ... - - - - - + + Cancel Cancelar - + RomFS Extraction Succeeded! Extração de RomFS Bem-Sucedida! - - - + The operation completed successfully. A operação foi completa com sucesso. - Integrity verification couldn't be performed! - A verificação de integridade não foi realizada. + A verificação de integridade não foi realizada. - File contents were not checked for validity. - O conteúdo do arquivo não foi analisado. + O conteúdo do arquivo não foi analisado. - - Verifying integrity... - Verificando integridade… + Verificando integridade… - - Integrity verification succeeded! - Verificação de integridade concluída! + Verificação de integridade concluída! - - Integrity verification failed! - Houve uma falha na verificação de integridade! + Houve uma falha na verificação de integridade! - File contents may be corrupt. - O conteúdo do arquivo pode estar corrompido. + O conteúdo do arquivo pode estar corrompido. - - - - Create Shortcut - Criar Atalho + Criar Atalho - Do you want to launch the game in fullscreen? - Gostaria de iniciar o jogo em tela cheia? + Gostaria de iniciar o jogo em tela cheia? - Successfully created a shortcut to %1 - Atalho criado com sucesso em %1 + Atalho criado com sucesso em %1 - This will create a shortcut to the current AppImage. This may not work well if you update. Continue? - Isso irá criar um atalho para o AppImage atual. Isso pode não funcionar corretamente se você fizer uma atualização. Continuar? + Isso irá criar um atalho para o AppImage atual. Isso pode não funcionar corretamente se você fizer uma atualização. Continuar? - Failed to create a shortcut to %1 - Falha ao criar atalho para %1 + Falha ao criar atalho para %1 - Create Icon - Criar Ícone + Criar Ícone - Cannot create icon file. Path "%1" does not exist and cannot be created. - Não foi possível criar o arquivo de ícone. O caminho "%1" não existe e não pode ser criado. + Não foi possível criar o arquivo de ícone. O caminho "%1" não existe e não pode ser criado. - + + Warning: Outdated Game Format + + + + + You are using the deconstructed ROM directory format for this game, which is an outdated format that has been superseded by others such as NCA, NAX, XCI, or NSP. Deconstructed ROM directories lack icons, metadata, and update support.<br><br>For an explanation of the various Switch formats Eden supports, <a href='https://eden-emulator.github.io/wiki/overview-of-switch-game-formats'>check out our wiki</a>. This message will not be shown again. + + + + + Eden has encountered an error while running the video core. This is usually caused by outdated GPU drivers, including integrated ones. Please see the log for more details. For more information on accessing the log, please see the following page: <a href='https://yuzu-mirror.github.io/help/reference/log-files/'>How to Upload the Log File</a>. + + + + + %1<br>Please redump your files or ask on Discord/Revolt for help. + %1 signifies an error string. + + + + Error Opening %1 Erro ao abrir %1 - + Select Directory Selecione o Diretório - + Properties Propriedades - + The game properties could not be loaded. As propriedades do jogo não puderam ser carregadas. - + Switch Executable (%1);;All Files (*.*) %1 is an identifier for the Switch executable file extensions. Executáveis Switch (%1);;Todos os Ficheiros (*.*) - + Load File Carregar Ficheiro - + Open Extracted ROM Directory Abrir o directório ROM extraído - + Invalid Directory Selected Diretório inválido selecionado - + The directory you have selected does not contain a 'main' file. O diretório que você selecionou não contém um arquivo 'Main'. - + Installable Switch File (*.nca *.nsp *.xci);;Nintendo Content Archive (*.nca);;Nintendo Submission Package (*.nsp);;NX Cartridge Image (*.xci) Ficheiro Switch Instalável (*.nca *.nsp *.xci);;Arquivo de Conteúdo Nintendo (*.nca);;Pacote de Envio Nintendo (*.nsp);;Imagem de Cartucho NX (*.xci) - + Install Files Instalar Ficheiros - + %n file(s) remaining %n arquivo restante @@ -6203,25 +6368,25 @@ Please go to Configure -> System -> Network and make a selection. - + Installing file "%1"... Instalando arquivo "%1"... - - + + Install Results Instalar Resultados - + To avoid possible conflicts, we discourage users from installing base games to the NAND. Please, only use this feature to install updates and DLC. Para evitar possíveis conflitos, desencorajamos que os utilizadores instalem os jogos base na NAND. Por favor, use esse recurso apenas para instalar atualizações e DLC. - + %n file(s) were newly installed @@ -6230,7 +6395,7 @@ Por favor, use esse recurso apenas para instalar atualizações e DLC. - + %n file(s) were overwritten @@ -6239,7 +6404,7 @@ Por favor, use esse recurso apenas para instalar atualizações e DLC. - + %n file(s) failed to install @@ -6248,242 +6413,310 @@ Por favor, use esse recurso apenas para instalar atualizações e DLC. - + System Application Aplicação do sistema - + System Archive Arquivo do sistema - + System Application Update Atualização do aplicativo do sistema - + Firmware Package (Type A) Pacote de Firmware (Tipo A) - + Firmware Package (Type B) Pacote de Firmware (Tipo B) - + Game Jogo - + Game Update Actualização do Jogo - + Game DLC DLC do Jogo - + Delta Title Título Delta - + Select NCA Install Type... Selecione o tipo de instalação do NCA ... - + Please select the type of title you would like to install this NCA as: (In most instances, the default 'Game' is fine.) Por favor, selecione o tipo de título que você gostaria de instalar este NCA como: (Na maioria dos casos, o padrão 'Jogo' é suficiente). - + Failed to Install Falha na instalação - + The title type you selected for the NCA is invalid. O tipo de título que você selecionou para o NCA é inválido. - + File not found Arquivo não encontrado - + File "%1" not found Arquivo "%1" não encontrado - + OK OK - - + + Hardware requirements not met Requisitos de hardware não atendidos - - + + Your system does not meet the recommended hardware requirements. Compatibility reporting has been disabled. Seu sistema não atende os requisitos de harwdare. O relatório de compatibilidade foi desabilitado. - + Missing yuzu Account Conta Yuzu Ausente - - In order to submit a game compatibility test case, you must link your eden account.<br><br/>To link your eden account, go to Emulation &gt; Configuration &gt; Web. + + In order to submit a game compatibility test case, you must set up your web token and username.<br><br/>To link your eden account, go to Emulation &gt; Configuration &gt; Web. - - Install decryption keys and restart eden before attempting to install firmware. + + + Install decryption keys and restart Eden before attempting to install firmware. - - Firmware installation cancelled, firmware may be in bad state, restart eden or re-install firmware. + + Select Dumped Firmware ZIP - - Encryption keys are missing. + + Zipped Archives (*.zip) - - Are you sure you want to close eden? + + Firmware cleanup failed - - - - eden + + Failed to clean up extracted firmware cache. +Check write permissions in the system temp directory and try again. +OS reported error: %1 - - The currently running application has requested eden to not exit. + + Please install firmware to use the Album applet. + + + + + Please install firmware to use the Cabinet applet. + + + + + Please install firmware to use the Mii editor. + + + + + Please install firmware to use the Controller Menu. + + + + + Please install firmware to use the Home Menu. + + + + + Firmware Corrupted + + + + + Firmware Too New + + + + + +Continue anyways? + + + + + Don't show again + + + + + Please install firmware to use Starter. + + + + + Are you sure you want to close Eden? + + + + + + + Eden + + + + + The currently running application has requested Eden to not exit. Would you like to bypass this and exit anyway? + + + Encryption keys are missing. + + In order to submit a game compatibility test case, you must link your yuzu account.<br><br/>To link your yuzu account, go to Emulation &gt; Configuration &gt; Web. Para enviar um caso de teste de compatibilidade de jogos, você deve vincular sua conta yuzu.<br><br/>Para vincular sua conta yuzu, vá para Emulação &gt; Configuração &gt; Rede. - + Error opening URL Erro ao abrir URL - + Unable to open the URL "%1". Não foi possível abrir o URL "%1". - + TAS Recording Gravando TAS - + Overwrite file of player 1? Sobrescrever arquivo do jogador 1? - + Invalid config detected Configação inválida detectada - + Handheld controller can't be used on docked mode. Pro controller will be selected. O comando portátil não pode ser usado no modo encaixado na base. O Pro controller será selecionado. - - + + Amiibo Amiibo - - + + The current amiibo has been removed O amiibo atual foi removido - + Error Erro - - + + The current game is not looking for amiibos O jogo atual não está procurando amiibos - + Amiibo File (%1);; All Files (*.*) Arquivo Amiibo (%1);; Todos os Arquivos (*.*) - + Load Amiibo Carregar Amiibo - + Error loading Amiibo data Erro ao carregar dados do Amiibo - + The selected file is not a valid amiibo O arquivo selecionado não é um amiibo válido - + The selected file is already on use O arquivo selecionado já está em uso - + An unknown error occurred Ocorreu um erro desconhecido - - Verification failed for the following files: %1 - Houve uma falha na verificação dos seguintes arquivos: + Houve uma falha na verificação dos seguintes arquivos: %1 - + + Keys not installed Chaves não instaladas @@ -6492,255 +6725,215 @@ Would you like to bypass this and exit anyway? Instale as chaves de descriptografia e reinicie o yuzu antes de tentar instalar o firmware. - + Select Dumped Firmware Source Location Selecione o Local de Armazenamento do Firmware Extraído - Installing Firmware... - Instalando Firmware... + Instalando Firmware... - - - - Firmware install failed - A instalação do Firmware falhou + A instalação do Firmware falhou - Unable to locate potential firmware NCA files - Não foi possível localizar os possíveis arquivos NCA do firmware + Não foi possível localizar os possíveis arquivos NCA do firmware - Failed to delete one or more firmware file. - Falha ao deletar um ou mais arquivo de firmware. + Falha ao deletar um ou mais arquivo de firmware. Firmware installation cancelled, firmware may be in bad state, restart yuzu or re-install firmware. A instalação do firmware foi cancelada, o firmware pode estar danificado. Reinicie o yuzu ou reinstale o firmware. - One or more firmware files failed to copy into NAND. - Falha ao copiar um ou mais arquivos de firmware para a NAND. + Falha ao copiar um ou mais arquivos de firmware para a NAND. - Firmware integrity verification failed! - A verificação de integridade do Firmware falhou! + A verificação de integridade do Firmware falhou! - Select Dumped Keys Location - Selecione o Local das Chaves Extraídas + Selecione o Local das Chaves Extraídas - - - Decryption Keys install failed - Falha na instalação das Chaves de Decriptação + Falha na instalação das Chaves de Decriptação - prod.keys is a required decryption key file. - prod.keys é um arquivo de descriptografia obrigatório. + prod.keys é um arquivo de descriptografia obrigatório. - One or more keys failed to copy. - Falha ao copiar uma ou mais chaves. + Falha ao copiar uma ou mais chaves. - Decryption Keys install succeeded - Chaves de Descriptografia instaladas com sucesso + Chaves de Descriptografia instaladas com sucesso - Decryption Keys were successfully installed - As Chaves de Descriptografia foram instaladas com sucesso + As Chaves de Descriptografia foram instaladas com sucesso - Decryption Keys failed to initialize. Check that your dumping tools are up to date and re-dump keys. - Falha ao inicializar as Chaves de Descriptografia. Verifique se as suas ferramentas de extração estão atualizadas e extraia as chaves novamente. + Falha ao inicializar as Chaves de Descriptografia. Verifique se as suas ferramentas de extração estão atualizadas e extraia as chaves novamente. - - - - - - - + + + + + + No firmware available Nenhum firmware disponível - Please install the firmware to use the Album applet. - Instale o firmware para usar o applet Album. + Instale o firmware para usar o applet Album. - + Album Applet Applet Álbum - + Album applet is not available. Please reinstall firmware. O applet Álbum não está disponível. Reinstale o firmware. - Please install the firmware to use the Cabinet applet. - Instale o firmware para usar o applet Armário. + Instale o firmware para usar o applet Armário. - + Cabinet Applet Applet Armário - + Cabinet applet is not available. Please reinstall firmware. O applet Armário não está disponível. Reinstale o firmware. - Please install the firmware to use the Mii editor. - Instale o firmware para usar o applet Editor de Miis. + Instale o firmware para usar o applet Editor de Miis. - + Mii Edit Applet Applet Editor de Miis - + Mii editor is not available. Please reinstall firmware. O applet Editor de Miis não está disponível. Reinstale o firmware. - Please install the firmware to use the Controller Menu. - Por favor instale o firmware para usar o Menu de Controles. + Por favor instale o firmware para usar o Menu de Controles. - + Controller Applet Applet de controle - + Controller Menu is not available. Please reinstall firmware. Menu de Controles não está disponível. Por favor reinstale o firmware. - - Please install the firmware to use the Home Menu. - - - - - + Home Menu Applet - - + Home Menu is not available. Please reinstall firmware. - - Please install the firmware to use Starter. - - - - + Starter Applet - + Starter is not available. Please reinstall firmware. - - Please install firmware to use the home menu. - - - - + Capture Screenshot Captura de Tela - + PNG Image (*.png) Imagem PNG (*.png) - + Update Available - + Update %1 for Eden is available. Would you like to download it? - + TAS state: Running %1/%2 Situação TAS: Rodando %1%2 - + TAS state: Recording %1 Situação TAS: Gravando %1 - + TAS state: Idle %1/%2 Situação TAS: Repouso %1%2 - + TAS State: Invalid Situação TAS: Inválido - + &Stop Running &Parar de rodar - + &Start &Começar - + Stop R&ecording Parar G&ravação - + R&ecord G&ravação - + Building: %n shader(s) @@ -6748,18 +6941,18 @@ Would you like to download it? - + Scale: %1x %1 is the resolution scaling factor Escala: %1x - + Speed: %1% / %2% Velocidade: %1% / %2% - + Speed: %1% Velocidade: %1% @@ -6768,44 +6961,44 @@ Would you like to download it? Jogo: %1 FPS (Desbloqueado) - + Game: %1 FPS Jogo: %1 FPS - + Frame: %1 ms Quadro: %1 ms - + %1 %2 %1 %2 - - + + FSR FSR - + NO AA Sem AA - + VOLUME: MUTE VOLUME: MUDO - + VOLUME: %1% Volume percentage (e.g. 50%) VOLUME: %1% - + Derivation Components Missing Componentes de Derivação em Falta @@ -6814,12 +7007,12 @@ Would you like to download it? Faltando chaves de encriptação. <br>Por favor siga <a href='https://yuzu-emu.org/help/quickstart/'>o guia de início rápido do yuzu</a> para obter todas as suas chaves, firmware e jogos. - + Select RomFS Dump Target Selecione o destino de despejo do RomFS - + Please select which RomFS you would like to dump. Por favor, selecione qual o RomFS que você gostaria de despejar. @@ -6832,7 +7025,7 @@ Would you like to download it? yuzu - + Are you sure you want to stop the emulation? Any unsaved progress will be lost. Tem a certeza de que quer parar a emulação? Qualquer progresso não salvo será perdido. @@ -6845,102 +7038,102 @@ Would you like to bypass this and exit anyway? Deseja ignorar isso e sair mesmo assim? - + None Nenhum - + FXAA FXAA - + SMAA SMAA - + Nearest Mais próximo - + Bilinear Bilinear - + Bicubic Bicúbico - + Gaussian Gaussiano - + ScaleForce ScaleForce - + Area - + Docked Ancorado - + Handheld Portátil - + Normal Normal - + High Alto - + Extreme Extremo - + Vulkan Vulcano - + OpenGL OpenGL - + Null Nenhum (desativado) - + GLSL GLSL - + GLASM GLASM - + SPIRV SPIRV @@ -6948,13 +7141,13 @@ Deseja ignorar isso e sair mesmo assim? GRenderWindow - - + + OpenGL not available! OpenGL não está disponível! - + OpenGL shared contexts are not supported. Shared contexts do OpenGL não são suportados. @@ -6963,33 +7156,33 @@ Deseja ignorar isso e sair mesmo assim? yuzu não foi compilado com suporte OpenGL. - - eden has not been compiled with OpenGL support. + + Eden has not been compiled with OpenGL support. - - + + Error while initializing OpenGL! Erro ao inicializar OpenGL! - + Your GPU may not support OpenGL, or you do not have the latest graphics driver. O seu GPU pode não suportar OpenGL, ou não tem os drivers gráficos mais recentes. - + Error while initializing OpenGL 4.6! Erro ao inicializar o OpenGL 4.6! - + Your GPU may not support OpenGL 4.6, or you do not have the latest graphics driver.<br><br>GL Renderer:<br>%1 O teu GPU pode não suportar OpenGL 4.6, ou não tem os drivers gráficos mais recentes. - + Your GPU may not support one or more required OpenGL extensions. Please ensure you have the latest graphics driver.<br><br>GL Renderer:<br>%1<br><br>Unsupported extensions:<br>%2 Sua GPU pode não suportar uma ou mais extensões necessárias do OpenGL. Verifique se você possui a última versão dos drivers gráficos.<br><br>Renderizador GL:<br>%1<br><br>Extensões não suportadas:<br>%2 @@ -6997,128 +7190,128 @@ Deseja ignorar isso e sair mesmo assim? GameList - + Favorite Favorito - + Start Game Iniciar jogo - + Start Game without Custom Configuration Iniciar jogo sem configuração personalizada - + Open Save Data Location Abrir Localização de Dados Salvos - + Open Mod Data Location Abrir a Localização de Dados do Mod - + Open Transferable Pipeline Cache Abrir cache de pipeline transferível - + Remove Remover - + Remove Installed Update Remover Actualizações Instaladas - + Remove All Installed DLC Remover Todos os DLC Instalados - + Remove Custom Configuration Remover Configuração Personalizada - + Remove Play Time Data Remover dados de tempo jogado - + Remove Cache Storage Remove a Cache do Armazenamento - + Remove OpenGL Pipeline Cache Remover cache de pipeline do OpenGL - + Remove Vulkan Pipeline Cache Remover cache de pipeline do Vulkan - + Remove All Pipeline Caches Remover todos os caches de pipeline - + Remove All Installed Contents Remover Todos os Conteúdos Instalados - + Dump RomFS Despejar RomFS - + Dump RomFS to SDMC Extrair RomFS para SDMC - + Verify Integrity Verificar integridade - + Copy Title ID to Clipboard Copiar título de ID para a área de transferência - + Navigate to GameDB entry Navegue para a Entrada da Base de Dados de Jogos - + Create Shortcut Criar Atalho - + Add to Desktop Adicionar à Área de Trabalho - + Add to Applications Menu Adicionar ao Menu de Aplicativos - + Configure Game @@ -7127,62 +7320,62 @@ Deseja ignorar isso e sair mesmo assim? Propriedades - + Scan Subfolders Examinar Sub-pastas - + Remove Game Directory Remover diretório do Jogo - + ▲ Move Up ▲ Mover para Cima - + ▼ Move Down ▼ Mover para Baixo - + Open Directory Location Abrir Localização do diretório - + Clear Limpar - + Name Nome - + Compatibility Compatibilidade - + Add-ons Add-ons - + File type Tipo de Arquivo - + Size Tamanho - + Play time Tempo jogado @@ -7190,62 +7383,62 @@ Deseja ignorar isso e sair mesmo assim? GameListItemCompat - + Ingame Não Jogável - + Game starts, but crashes or major glitches prevent it from being completed. O jogo inicia, porém problemas ou grandes falhas impedem que ele seja concluído. - + Perfect Perfeito - + Game can be played without issues. O jogo pode ser jogado sem problemas. - + Playable Jogável - + Game functions with minor graphical or audio glitches and is playable from start to finish. O jogo funciona com pequenas falhas gráficas ou de áudio e pode ser reproduzido do início ao fim. - + Intro/Menu Introdução / Menu - + Game loads, but is unable to progress past the Start Screen. O jogo carrega, porém não consegue passar da tela inicial. - + Won't Boot Não Inicia - + The game crashes when attempting to startup. O jogo trava ao tentar iniciar. - + Not Tested Não Testado - + The game has not yet been tested. O jogo ainda não foi testado. @@ -7253,7 +7446,7 @@ Deseja ignorar isso e sair mesmo assim? GameListPlaceholder - + Double-click to add a new folder to the game list Clique duas vezes para adicionar uma nova pasta à lista de jogos @@ -7261,7 +7454,7 @@ Deseja ignorar isso e sair mesmo assim? GameListSearchField - + %1 of %n result(s) @@ -7269,12 +7462,12 @@ Deseja ignorar isso e sair mesmo assim? - + Filter: Filtro: - + Enter pattern to filter Digite o padrão para filtrar @@ -7356,7 +7549,7 @@ Deseja ignorar isso e sair mesmo assim? - Failed to announce the room to the public lobby. In order to host a room publicly, you must have a valid eden account configured in Emulation -> Configure -> Web. If you do not want to publish a room in the public lobby, then select Unlisted instead. + Failed to announce the room to the public lobby. In order to host a room publicly, you must have a valid Eden 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: @@ -7370,91 +7563,91 @@ Mensagem de depuração: Hotkeys - + Audio Mute/Unmute Mutar/Desmutar Áudio - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Main Window Janela Principal - + Audio Volume Down Volume Menos - + Audio Volume Up Volume Mais - + Capture Screenshot Captura de Tela - + Change Adapting Filter Alterar Filtro de Adaptação - + Change Docked Mode Alterar Modo de Ancoragem - + Change GPU Accuracy Alterar Precisão da GPU - + Configure Configurar - + Configure Current Game - + Continue/Pause Emulation Continuar/Pausar Emulação - + Exit Fullscreen Sair da Tela Cheia @@ -7463,97 +7656,97 @@ Mensagem de depuração: Sair do yuzu - - Exit eden + + Exit Eden - + Fullscreen Tela Cheia - + Load File Carregar Ficheiro - + Load/Remove Amiibo Carregar/Remover Amiibo - + Multiplayer Browse Public Game Lobby Multiplayer Navegar no Lobby de Salas Públicas - + Multiplayer Create Room Multiplayer Criar Sala - + Multiplayer Direct Connect to Room Multiplayer Conectar Diretamente à Sala - + Multiplayer Leave Room Multiplayer Sair da Sala - + Multiplayer Show Current Room Multiplayer Mostrar a Sala Atual - + Restart Emulation Reiniciar Emulação - + Stop Emulation Parar Emulação - + TAS Record Gravar TAS - + TAS Reset Reiniciar TAS - + TAS Start/Stop Iniciar/Parar TAS - + Toggle Filter Bar Alternar Barra de Filtro - + Toggle Framerate Limit Alternar Limite de Quadros por Segundo - + Toggle Mouse Panning Alternar o Giro do Mouse - + Toggle Renderdoc Capture Alternar a Captura do Renderdoc - + Toggle Status Bar Alternar Barra de Status @@ -7561,22 +7754,22 @@ Mensagem de depuração: InstallDialog - + Please confirm these are the files you wish to install. Por favor confirma que estes são os ficheiros que desejas instalar. - + Installing an Update or DLC will overwrite the previously installed one. Instalar uma Actualização ou DLC irá substituir a instalação anterior. - + Install Instalar - + Install Files to NAND Instalar Ficheiros no NAND @@ -7584,7 +7777,7 @@ Mensagem de depuração: LimitableInputDialog - + The text can't contain any of the following characters: %1 O texto não pode conter nenhum dos seguintes caracteres: @@ -7731,152 +7924,207 @@ Mensagem de depuração: &Arquivos recentes - + + Open &Eden Folders + + + + &Emulation &Emulação - + &View &Vista - + &Reset Window Size &Restaurar tamanho da janela - + &Debugging &Depurar - + Reset Window Size to &720p Restaurar tamanho da janela para &720p - + Reset Window Size to 720p Restaurar tamanho da janela para 720p - + Reset Window Size to &900p Restaurar tamanho da janela para &900p - + Reset Window Size to 900p Restaurar tamanho da janela para 900p - + Reset Window Size to &1080p Restaurar tamanho da janela para &1080p - + Reset Window Size to 1080p Restaurar tamanho da janela para 1080p - + &Multiplayer &Multijogador - + &Tools &Ferramentas - + &Amiibo &Amiibo - + &TAS &TAS - + &Create Home Menu Shortcut - + &Help &Ajuda - + &Install Files to NAND... &Instalar arquivos na NAND... - + L&oad File... C&arregar arquivo... - + Load &Folder... Carregar &pasta... - + E&xit &Sair - + &Pause &Pausa - + &Stop &Parar - + &Verify Installed Contents &Verificar conteúdo instalado - - &About eden + + &Root Data Folder - - Open &eden Folder + + &NAND Folder - + + &SDMC Folder + + + + + &Mod Folder + + + + + &Log Folder + + + + + From Folder + + + + + From ZIP + + + + + &X + + + + + X (Twitter) + + + + + &Revolt + + + + + Revolt + + + + + &Eden Dependencies + + + + Open Home Menu - + &Discord - + Open &Setup - + &Desktop - + &Application Menu @@ -7885,97 +8133,97 @@ Mensagem de depuração: &Sobre o yuzu - + Single &Window Mode Modo de &janela única - + Con&figure... Con&figurar... - + Ctrl+, - + Display D&ock Widget Headers Exibir barra de títul&os de widgets afixados - + Show &Filter Bar Mostrar Barra de &Filtros - + Show &Status Bar Mostrar Barra de &Estado - + Show Status Bar Mostrar Barra de Estado - + &Browse Public Game Lobby &Navegar no Lobby de Salas Públicas - + &Create Room &Criar Sala - + &Leave Room &Sair da Sala - + &Direct Connect to Room Conectar &Diretamente Numa Sala - + &Show Current Room Exibir &Sala Atual - + F&ullscreen T&ela cheia - + &Restart &Reiniciar - + Load/Remove &Amiibo... Carregar/Remover &Amiibo... - + &Report Compatibility &Reportar compatibilidade - + Open &Mods Page Abrir Página de &Mods - + Open &Quickstart Guide Abrir &guia de início rápido - + &FAQ &Perguntas frequentes @@ -7984,77 +8232,82 @@ Mensagem de depuração: Abrir pasta &yuzu - + &Capture Screenshot &Captura de Tela - + Open &Album Abrir &Álbum - + &Set Nickname and Owner &Definir apelido e proprietário - + &Delete Game Data &Remover dados do jogo - + &Restore Amiibo &Recuperar Amiibo - + &Format Amiibo &Formatar Amiibo - + Open &Mii Editor Abrir &Editor de Miis - + &Configure TAS... &Configurar TAS - + Configure C&urrent Game... Configurar jogo atual... - + &Start &Começar - + &Reset &Restaurar - + R&ecord G&ravar - + Open &Controller Menu Menu Abrir &Controles - + Install Firmware Instalar Firmware - + + &About Eden + + + + Install Decryption Keys Instalar Chaves de Descriptografia @@ -8062,26 +8315,36 @@ Mensagem de depuração: MicroProfileDialog - &MicroProfile - &MicroPerfil + &MicroPerfil MigrationWorker - + Data was migrated successfully. - + Linking the old directory failed. You may need to re-run with administrative privileges on Windows. OS gave error: %1 - + + + +Note that your configuration and data will be shared with %1. +If this is not desirable, delete the following files: +%2 +%3 +%4 + + + + If you wish to clean up the files which were left in the old data location, you can do so by deleting the following directory: @@ -8141,37 +8404,37 @@ If you wish to clean up the files which were left in the old data location, you MultiplayerState - + Current connection status Status da conexão atual - + Not Connected. Click here to find a room! Não conectado. Clique aqui para procurar uma sala! - + Not Connected Não Conectado - + Connected Conectado - + New Messages Received Novas Mensagens Recebidas - + 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. Por favor verifique sua conexão com a internet e tente hospedar a sala novamente. @@ -8362,56 +8625,56 @@ p, li { white-space: pre-wrap; } Não está jogando um jogo - + Installed SD Titles Títulos SD instalados - + Installed NAND Titles Títulos NAND instalados - + System Titles Títulos do sistema - + Add New Game Directory Adicionar novo diretório de jogos - + Favorites Favoritos - - + + Shift Shift - - + + Ctrl Ctrl - - + + Alt Alt - - - - + + + + [not set] [não configurado] @@ -8422,14 +8685,14 @@ p, li { white-space: pre-wrap; } Hat %1 %2 - - - - - - - - + + + + + + + + Axis %1%2 Eixo %1%2 @@ -8440,357 +8703,357 @@ p, li { white-space: pre-wrap; } Botão %1 - - - - - - + + + + + + [unknown] [Desconhecido] - - - + + + Left Esquerda - - - + + + Right Direita - - - + + + Down Baixo - - - + + + Up Cima - - + + Z Z - - + + R R - - + + L L - - + + A A - - + + B B - - + + X X - - + + Y Y - - + + Start Começar - - + + L1 L1 - - + + L2 L2 - - + + L3 L3 - - + + R1 R1 - - + + R2 R2 - - + + R3 R3 - - + + Circle Círculo - - + + Cross Cruz - - + + Square Quadrado - - + + Triangle Triângulo - - + + Share Compartilhar - - + + Options Opções - - + + [undefined] [indefinido] - + %1%2 %1%2 - - + + [invalid] [inválido] - - + + %1%2Hat %3 %1%2Direcional %3 - - - + + + %1%2Axis %3 %1%2Eixo %3 - - + + %1%2Axis %3,%4,%5 %1%2Eixo %3,%4,%5 - - + + %1%2Motion %3 %1%2Movimentação %3 - - + + %1%2Button %3 %1%2Botão %3 - - + + [unused] [sem uso] - + ZR ZR - + ZL ZL - + SR SR - + SL SL - + Stick L Analógico esquerdo - + Stick R Analógico direito - + Plus Mais - + Minus Menos - - + + Home Home - + Capture Capturar - + Touch Toque - + Wheel Indicates the mouse wheel Volante - + Backward Para trás - + Forward Para a frente - + Task Tarefa - + Extra Extra - + %1%2%3%4 %1%2%3%4 - - + + %1%2%3Hat %4 %1%2%3Alavanca %4 - - + + %1%2%3Axis %4 %1%2%3Eixo %4 - - + + %1%2%3Button %4 %1%2%3Botão %4 - - + + Migration - + - - + + No - + You can manually re-trigger this prompt by deleting the new config directory: %1 - + Migrating - + Migrating, this may take a while... @@ -8908,6 +9171,300 @@ p, li { white-space: pre-wrap; } Deseja restaurar este amiibo? + + QtCommon::Content + + + Installing Firmware... + Instalando Firmware... + + + + + + Cancel + Cancelar + + + + Firmware integrity verification failed! + A verificação de integridade do Firmware falhou! + + + + + Verification failed for the following files: + +%1 + Houve uma falha na verificação dos seguintes arquivos: + +%1 + + + + + Verifying integrity... + Verificando integridade… + + + + + Integrity verification succeeded! + Verificação de integridade concluída! + + + + + The operation completed successfully. + A operação foi completa com sucesso. + + + + + Integrity verification failed! + Houve uma falha na verificação de integridade! + + + + File contents may be corrupt or missing. + + + + + Integrity verification couldn't be performed + + + + + Firmware installation cancelled, firmware may be in a bad state or corrupted. File contents could not be checked for validity. + + + + + Select Dumped Keys Location + Selecione o Local das Chaves Extraídas + + + + Decryption Keys install succeeded + Chaves de Descriptografia instaladas com sucesso + + + + Decryption Keys were successfully installed + As Chaves de Descriptografia foram instaladas com sucesso + + + + Decryption Keys install failed + Falha na instalação das Chaves de Decriptação + + + + QtCommon::Game + + + Error Removing Contents + Erro Removendo Conteúdos + + + + Error Removing Update + Erro ao Remover Atualização + + + + Error Removing DLC + Erro Removendo DLC + + + + The base game is not installed in the NAND and cannot be removed. + O jogo base não está instalado no NAND e não pode ser removido. + + + + There is no update installed for this title. + Não há actualização instalada neste título. + + + + There are no DLCs installed for this title. + + + + + + + + Successfully Removed + Removido com Sucesso + + + + Successfully removed %1 installed DLC. + Removido DLC instalado %1 com sucesso. + + + + + Error Removing Transferable Shader Cache + Error ao Remover Cache de Shader Transferível + + + + + A shader cache for this title does not exist. + O Shader Cache para este titulo não existe. + + + + Successfully removed the transferable shader cache. + Removido a Cache de Shader Transferível com Sucesso. + + + + Failed to remove the transferable shader cache. + Falha ao remover a cache de shader transferível. + + + + Error Removing Vulkan Driver Pipeline Cache + Erro ao Remover Cache de Pipeline do Driver Vulkan + + + + Failed to remove the driver pipeline cache. + Falha ao remover o pipeline de cache do driver. + + + + + Error Removing Transferable Shader Caches + Erro ao remover os caches de shaders transferíveis + + + + Successfully removed the transferable shader caches. + Os caches de shaders transferíveis foram removidos com sucesso. + + + + Failed to remove the transferable shader cache directory. + Falha ao remover o diretório do cache de shaders transferível. + + + + + Error Removing Custom Configuration + Erro ao Remover Configuração Personalizada + + + + A custom configuration for this title does not exist. + Não existe uma configuração personalizada para este titúlo. + + + + Successfully removed the custom game configuration. + Removida a configuração personalizada do jogo com sucesso. + + + + Failed to remove the custom game configuration. + Falha ao remover a configuração personalizada do jogo. + + + + Reset Metadata Cache + Resetar a Cache da Metadata + + + + The metadata cache is already empty. + O cache de metadata já está vazio. + + + + The operation completed successfully. + A operação foi completa com sucesso. + + + + The metadata cache couldn't be deleted. It might be in use or non-existent. + Não foi possível excluir o cache de metadata. Pode estar em uso ou inexistente. + + + + Create Shortcut + Criar Atalho + + + + Do you want to launch the game in fullscreen? + Gostaria de iniciar o jogo em tela cheia? + + + + Shortcut Created + + + + + Successfully created a shortcut to %1 + Atalho criado com sucesso em %1 + + + + Shortcut may be Volatile! + + + + + This will create a shortcut to the current AppImage. This may not work well if you update. Continue? + Isso irá criar um atalho para o AppImage atual. Isso pode não funcionar corretamente se você fizer uma atualização. Continuar? + + + + Failed to Create Shortcut + + + + + Failed to create a shortcut to %1 + Falha ao criar atalho para %1 + + + + Create Icon + Criar Ícone + + + + Cannot create icon file. Path "%1" does not exist and cannot be created. + Não foi possível criar o arquivo de ícone. O caminho "%1" não existe e não pode ser criado. + + + + No firmware available + Nenhum firmware disponível + + + + Please install firmware to use the home menu. + + + + + Home Menu Applet + + + + + Home Menu is not available. Please reinstall firmware. + + + QtControllerSelectorDialog @@ -9203,7 +9760,7 @@ Tente novamente ou entre em contato com o desenvolvedor do software. QtProfileSelectionDialog - + %1 %2 %1 is the profile username, %2 is the formatted UUID (e.g. 00112233-4455-6677-8899-AABBCCDDEEFF)) @@ -9211,7 +9768,7 @@ Tente novamente ou entre em contato com o desenvolvedor do software. - + Users Utilizadores @@ -9335,7 +9892,7 @@ p, li { white-space: pre-wrap; } WaitTreeCallstack - + Call stack Pilha de Chamadas @@ -9343,12 +9900,12 @@ p, li { white-space: pre-wrap; } WaitTreeSynchronizationObject - + [%1] %2 [%1] %2 - + waited by no thread esperado por nenhuma thread @@ -9356,102 +9913,102 @@ p, li { white-space: pre-wrap; } WaitTreeThread - + runnable executável - + paused pausado - + sleeping dormindo - + waiting for IPC reply aguardando resposta do IPC - + waiting for objects esperando por objectos - + waiting for condition variable A espera da variável de condição - + waiting for address arbiter esperando pelo árbitro de endereço - + waiting for suspend resume esperando pra suspender o resumo - + waiting aguardando - + initialized inicializado - + terminated terminado - + unknown desconhecido - + PC = 0x%1 LR = 0x%2 PC = 0x%1 LR = 0x%2 - + ideal ideal - + core %1 núcleo %1 - + processor = %1 processador = %1 - + affinity mask = %1 máscara de afinidade =% 1 - + thread id = %1 id do segmento =% 1 - + priority = %1(current) / %2(normal) prioridade =%1(atual) / %2(normal) - + last running ticks = %1 últimos tiques em execução =%1 @@ -9459,7 +10016,7 @@ p, li { white-space: pre-wrap; } WaitTreeThreadList - + waited by thread esperado por thread @@ -9467,7 +10024,7 @@ p, li { white-space: pre-wrap; } WaitTreeWidget - + &Wait Tree &Árvore de espera diff --git a/dist/languages/ru_RU.ts b/dist/languages/ru_RU.ts index 9ff0c1bbd7..2b0b3755a7 100644 --- a/dist/languages/ru_RU.ts +++ b/dist/languages/ru_RU.ts @@ -13,12 +13,12 @@ - About eden + About Eden - <html><head/><body><p><span style=" font-size:28pt;">eden</span></p></body></html> + <html><head/><body><p><span style=" font-size:28pt;">Eden</span></p></body></html> @@ -34,8 +34,8 @@ p, li { white-space: pre-wrap; } hr { height: 1px; border-width: 0; } li.unchecked::marker { content: "\2610"; } li.checked::marker { content: "\2612"; } -</style></head><body style=" font-family:'Adwaita Sans'; font-size:11pt; font-weight:400; font-style:normal;"> -<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;">eden is an experimental open-source emulator for the Nintendo Switch licensed under GPLv3.0+ which is based on the yuzu emulator which ended development back in March 2024. <br /><br />This software should not be used to play games you have not legally obtained.</span></p></body></html> +</style></head><body style=" font-family:'Noto Sans'; font-size:9pt; font-weight:400; font-style:normal;"> +<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;">Eden is an experimental open-source emulator for the Nintendo Switch licensed under GPLv3.0+ which is based on the yuzu emulator which ended development back in March 2024. <br /><br />This software should not be used to play games you have not legally obtained.</span></p></body></html> @@ -72,32 +72,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 ОК @@ -397,134 +397,134 @@ This would ban both their forum username and their IP address. ConfigurationShared - + % % - + Amiibo editor Amiibo редактор - + Controller configuration Конфигурация контроллера - + Data erase Стирание данных - + Error Ошибка - + Net connect Соединение по сети - + Player select Выбор игрока - + Software keyboard Виртуальная клавиатура - + Mii Edit Mii редактор - + Online web Онлайн веб - + Shop Магазин - + Photo viewer Просмотр фотографий - + Offline web Оффлайн веб - + Login share Поделиться логином - + Wifi web auth Веб вход в wi-fi - + My page Моя страница - + Output Engine: Движок вывода: - + Output Device: Устройство вывода: - + Input Device: Устройство ввода: - + Mute audio Отключить звук - + Volume: Громкость: - + Mute audio when in background Заглушить звук в фоновом режиме - + Multicore CPU Emulation Многоядерная эмуляция ЦП - + This option increases CPU emulation thread use from 1 to the Switch’s maximum of 4. This is mainly a debug option and shouldn’t be disabled. Этот параметр увеличивает использование потоков эмуляции ЦП с 1 до 4. Это в основном параметр отладки и не должен быть отключен. - + Memory Layout Схема памяти - + Increases the amount of emulated RAM from the stock 4GB of the retail Switch to the developer kit's 8/6GB. It’s doesn’t improve stability or performance and is intended to let big texture mods fit in emulated RAM. Enabling it will increase memory use. It is not recommended to enable unless a specific game with a texture mod needs it. @@ -533,12 +533,12 @@ Enabling it will increase memory use. It is not recommended to enable unless a s Включение этой функции увеличит использование памяти. Рекомендуется включать только в случае необходимости для конкретной игры с модом текстур. - + Limit Speed Percent Ограничение процента cкорости - + Controls the game's maximum rendering speed, but it’s up to each game if it runs faster or not. 200% for a 30 FPS game is 60 FPS, and for a 60 FPS game it will be 120 FPS. Disabling it means unlocking the framerate to the maximum your PC can reach. @@ -547,139 +547,116 @@ Disabling it means unlocking the framerate to the maximum your PC can reach. - - Synchronize Core Speed - - - - - Synchronizes CPU core speed with the game's maximum rendering speed to boost FPS without affecting game speed (animations, physics, etc.). -Compatibility varies by game; many (especially older ones) may not respond well. -Can help reduce stuttering at lower framerates. - - - - + Accuracy: Точность: - + This setting controls the accuracy of the emulated CPU. Don't change this unless you know what you are doing. Эта настройка контролирует точность эмулции процессора. Не изменяйте ее, если не знаете, что делаете. - - + + Backend: Бэкэнд: - - Fast CPU Time - - - - - Overclocks the emulated CPU to remove some FPS limiters. Weaker CPUs may see reduced performance, and certain games may behave improperly. -Use Boost (1700MHz) to run at the Switch's highest native clock, or Fast (2000MHz) to run at 2x clock. - - - - + Unfuse FMA (improve performance on CPUs without FMA) Отключить FMA (улучшает производительность на ЦП без FMA) - + This option improves speed by reducing accuracy of fused-multiply-add instructions on CPUs without native FMA support. Этот вариант улучшает скорость путем снижения точности инструкций слияния-умножения-сложения на процессорах без поддержки нативной FMA. - + Faster FRSQRTE and FRECPE Ускоренные FRSQRTE и FRECPE - + This option improves the speed of some approximate floating-point functions by using less accurate native approximations. Этот вариант улучшает скорость некоторых приближенных функций с плавающей запятой за счет использования менее точных встроенных приближений. - + Faster ASIMD instructions (32 bits only) Ускоренные инструкции ASIMD (только 32 бит) - + This option improves the speed of 32 bits ASIMD floating-point functions by running with incorrect rounding modes. Этот вариант улучшает скорость 32-битных функций с плавающей запятой ASIMD путем выполнения с неправильными режимами округления. - + Inaccurate NaN handling Неточная обработка NaN - + This option improves speed by removing NaN checking. Please note this also reduces accuracy of certain floating-point instructions. Этот вариант улучшает скорость отключая проверки на NaN. Обратите внимание, что это также снижает точность некоторых операций с плавающей запятой. - + Disable address space checks Отключить проверку адресного пространства - + This option improves speed by eliminating a safety check before every memory read/write in guest. Disabling it may allow a game to read/write the emulator's memory. Эта опция повышает скорость за счет исключения проверки безопасности перед каждым чтением/записью памяти в гостевом режиме. Отключение этой опции может позволить игре читать/записывать память эмулятора. - + Ignore global monitor Игнорировать глобальный мониторинг - + This option improves speed by relying only on the semantics of cmpxchg to ensure safety of exclusive access instructions. Please note this may result in deadlocks and other race conditions. Эта опция повышает скорость, полагаясь только на семантику cmpxchg для обеспечения безопасности инструкций исключительного доступа. Обратите внимание, что это может привести к дедлокам и race condition. - + API: API: - + Switches between the available graphics APIs. Vulkan is recommended in most cases. Переключение между доступными графическими API. В большинстве случаев рекомендуется использовать Vulkan. - + Device: Устройство: - + This setting selects the GPU to use with the Vulkan backend. Эта настройка выбирает GPU для Vulkan. - + Shader Backend: Бэкенд шейдеров: - + The shader backend to use for the OpenGL renderer. GLSL is the fastest in performance and the best in rendering accuracy. GLASM is a deprecated NVIDIA-only backend that offers much better shader building performance at the cost of FPS and rendering accuracy. @@ -690,12 +667,12 @@ GLASM - устаревший бэкэнд, доступный только дл SPIR-V компилирует быстрее всего, но дает плохие результаты на большинстве драйверов GPU. - + Resolution: Разрешение: - + Forces the game to render at a different resolution. Higher resolutions require much more VRAM and bandwidth. Options lower than 1X can cause rendering issues. @@ -704,27 +681,27 @@ Options lower than 1X can cause rendering issues. Опции ниже 1X могут вызывать проблемы с отображением. - + Window Adapting Filter: Фильтр адаптации окна: - + FSR Sharpness: Резкость FSR: - + Determines how sharpened the image will look while using FSR’s dynamic contrast. Определяет, насколько чётким будет изображение при использовании динамического контраста FSR. - + Anti-Aliasing Method: Метод сглаживания: - + The anti-aliasing method to use. SMAA offers the best quality. FXAA has a lower performance impact and can produce a better and more stable picture under very low resolutions. @@ -733,12 +710,12 @@ SMAA предлагает лучшее качество. FXAA имеет меньшее влияние на производительность и может создавать лучшую и более стабильную картинку на очень низком разрешении. - + Fullscreen Mode: Полноэкранный режим: - + The method used to render the window in fullscreen. Borderless offers the best compatibility with the on-screen keyboard that some games request for input. Exclusive fullscreen may offer better performance and better Freesync/Gsync support. @@ -747,12 +724,12 @@ Borderless более совместим с экранной клавиатур Эксклюзивный полноэкранный режим может иметь лучшую производительность и лучшую поддержку Freesync/Gsync. - + Aspect Ratio: Соотношение сторон: - + Stretches the game to fit the specified aspect ratio. Switch games only support 16:9, so custom game mods are required to get other ratios. Also controls the aspect ratio of captured screenshots. @@ -761,48 +738,35 @@ Also controls the aspect ratio of captured screenshots. Также контролирует соотношение сторон захваченных скриншотов. - + Use disk pipeline cache Использовать кэш конвейера на диске - + Allows saving shaders to storage for faster loading on following game boots. Disabling it is only intended for debugging. Позволяет сохранять шейдеры на диск для более быстрой загрузки при последующем запуске игры. Отключение этой функции предназначено только для отладки. - - Optimize SPIRV output shader - - - - - Runs an additional optimization pass over generated SPIRV shaders. -Will increase time required for shader compilation. -May slightly improve performance. -This feature is experimental. - - - - + Use asynchronous GPU emulation Использовать асинхронную эмуляцию ГП - + Uses an extra CPU thread for rendering. This option should always remain enabled. Использует дополнительный поток ЦП для рендеринга. Эта опция всегда должна оставаться включенной. - + NVDEC emulation: Эмуляция NVDEC: - + Specifies how videos should be decoded. It can either use the CPU or the GPU for decoding, or perform no decoding at all (black screen on videos). In most cases, GPU decoding provides the best performance. @@ -811,12 +775,12 @@ In most cases, GPU decoding provides the best performance. В большинстве случаев декодирование с использованием ГП обеспечивает лучшую производительность. - + ASTC Decoding Method: Метод декодирования ASTC: - + This option controls how ASTC textures should be decoded. CPU: Use the CPU for decoding, slowest but safest method. GPU: Use the GPU's compute shaders to decode ASTC textures, recommended for most games and users. @@ -828,34 +792,24 @@ GPU: Использовать вычислительные шейдеры ГП CPU Асинхронно: Использовать ЦП для декодирования текстур ASTC по мере их поступления. Полностью устраняет заикание при декодировании ASTC, но вызывает артефакты во время декодирования текстуры. - + ASTC Recompression Method: Метод пересжатия ASTC: - + Almost all desktop and laptop dedicated GPUs lack support for ASTC textures, forcing the emulator to decompress to an intermediate format any card supports, RGBA8. This option recompresses RGBA8 to either the BC1 or BC3 format, saving VRAM but negatively affecting image quality. Почти все выделенные графические процессоры для настольных и портативных компьютеров не поддерживают текстуры ASTC, что заставляет эмулятор распаковывать их в промежуточный формат, поддерживаемый любой картой, RGBA8. Эта опция повторно сжимает RGBA8 в формат BC1 или BC3, экономя видеопамять, но негативно влияя на качество изображения. - - VRAM Usage Mode: - - - - - Selects whether the emulator should prefer to conserve memory or make maximum usage of available video memory for performance. Has no effect on integrated graphics. Aggressive mode may severely impact the performance of other applications such as recording software. - - - - + VSync Mode: Режим верт. синхронизации: - + FIFO (VSync) does not drop frames or exhibit tearing but is limited by the screen refresh rate. FIFO Relaxed is similar to FIFO but allows tearing as it recovers from a slow down. Mailbox can have lower latency than FIFO and does not tear but may drop frames. @@ -866,51 +820,49 @@ Mailbox может иметь меньшую задержку, чем FIFO, и Моментальная (без синхронизации) просто показывает все кадры и может иметь разрывы. - + Enable asynchronous presentation (Vulkan only) Включите асинхронное отображение (только для Vulkan) - + Slightly improves performance by moving presentation to a separate CPU thread. Немного улучшает производительность, перемещая презентацию на отдельный поток ЦП. - + Force maximum clocks (Vulkan only) Принудительно заставить максимальную тактовую частоту (только для Vulkan) - + Runs work in the background while waiting for graphics commands to keep the GPU from lowering its clock speed. Выполняет работу в фоновом режиме в ожидании графических команд, не позволяя ГП снижать тактовую частоту. - + Anisotropic Filtering: Анизотропная фильтрация: - + Controls the quality of texture rendering at oblique angles. It’s a light setting and safe to set at 16x on most GPUs. Контролирует качество отображения текстур под наклонными углами. Это нетребовательная настройка, можно выбрать 16x на большинстве графических процессоров. - Accuracy Level: - Уровень точности: + Уровень точности: - GPU emulation accuracy. Most games render fine with Normal, but High is still required for some. Particles tend to only render correctly with High accuracy. Extreme should only be used for debugging. This option can be changed while playing. Some games may require booting on high to render properly. - Точность эмуляции GPU. + Точность эмуляции GPU. Большинство игр отображаются нормально с настройкой "Нормальная", но для некоторых требуется "Высокая". Частицы обычно отображаются правильно только с высокой точностью. "Экстремальная" следует использовать только для отладки. @@ -918,12 +870,12 @@ Some games may require booting on high to render properly. Некоторые игры могут требовать запуска с высокой точностью для правильного отображения. - + Use asynchronous shader building (Hack) Использовать асинхронное построение шейдеров (Хак) - + Enables asynchronous shader compilation, which may reduce shader stutter. This feature is experimental. Включает асинхронную компиляцию шейдеров, что уменьшит зависания из-за шейдеров. Функция является экспериментальной. @@ -937,24 +889,24 @@ This feature is experimental. Включает функцию Fast GPU Time. Этот параметр заставит большинство игр работать в максимальном родном разрешении. - + Use Vulkan pipeline cache Использовать конвейерный кэш Vulkan - + Enables GPU vendor-specific pipeline cache. This option can improve shader loading time significantly in cases where the Vulkan driver does not store pipeline cache files internally. Включает кэш конвейера, специфичный для производителя ГП. Эта опция может значительно улучшить время загрузки шейдеров в тех случаях, когда драйвер Vulkan не хранит внутренние файлы кэша конвейера. - + Enable Compute Pipelines (Intel Vulkan Only) Включить вычислительные конвейеры (только для Intel Vulkan) - + Enable compute pipelines, required by some games. This setting only exists for Intel proprietary drivers, and may crash if enabled. Compute pipelines are always enabled on all other drivers. @@ -963,110 +915,110 @@ Compute pipelines are always enabled on all other drivers. Вычислительные конвейеры включены по умолчанию во всех остальных драйверах. - + Enable Reactive Flushing Включить реактивную очистку - + Uses reactive flushing instead of predictive flushing, allowing more accurate memory syncing. Вместо прогнозирующей очистки используется реактивная очистка, что обеспечивает более точную синхронизацию памяти. - + Sync to framerate of video playback Привязать к фреймрейту видео. - + Run the game at normal speed during video playback, even when the framerate is unlocked. Обычная скорость игры во время видео, даже если фреймрейт разблокирован. - + Barrier feedback loops Обратная связь с барьерами. - + Improves rendering of transparency effects in specific games. Улучшает эффекты прозрачности в некоторых играх. - + RNG Seed Сид RNG - + Controls the seed of the random number generator. Mainly used for speedrunning purposes. Управляет начальным значением генератора случайных чисел. В основном используется для спидранов. - + Device Name Название устройства - + The name of the emulated Switch. Имя эмулируемого Switch. - + Custom RTC Date: Пользовательская RTC-дата: - + This option allows to change the emulated clock of the Switch. Can be used to manipulate time in games. Этот параметр позволяет изменить эмулируемые часы на Switch. Может использоваться для манипуляции временем в играх. - + Language: Язык: - + Note: this can be overridden when region setting is auto-select Примечание: может быть перезаписано если регион выбирается автоматически - + Region: Регион: - + The region of the emulated Switch. Регион эмулируемого Switch. - + Time Zone: Часовой пояс: - + The time zone of the emulated Switch. Часовой пояс эмулируемого Switch. - + Sound Output Mode: Режим вывода звука: - + Console Mode: Консольный режим: - + Selects if the console is emulated in Docked or Handheld mode. Games will change their resolution, details and supported controllers and depending on this setting. Setting to Handheld can help improve performance for low end systems. @@ -1075,7 +1027,7 @@ Setting to Handheld can help improve performance for low end systems. Установка в режим портативной консоли может помочь улучшить производительность для слабых устройств. - + Prompt for user on game boot Спрашивать пользователя при запуске игры @@ -1084,7 +1036,7 @@ Setting to Handheld can help improve performance for low end systems. Спрашивать выбрать профиль пользователя при каждой загрузке - полезно, если несколько людей используют yuzu на одном компьютере. - + Pause emulation when in background Приостанавливать эмуляцию в фоновом режиме @@ -1093,842 +1045,996 @@ Setting to Handheld can help improve performance for low end systems. Эта настройка приостанавливает работу yuzu при переключении на другие окна. - - Fast GPU Time (Hack) - - - - - Overclocks the emulated GPU to increase dynamic resolution and render distance. -Use 128 for maximal performance and 512 for maximal graphics fidelity. - - - - - Extended Dynamic State - - - - - Enables the VkExtendedDynamicState* extensions. -Higher dynamic states will generally improve performance, but may cause issues on certain games or devices. - - - - - Provoking Vertex - - - - - Improves lighting and vertex handling in certain games. -Only Vulkan 1.0+ devices support this extension. - - - - - Descriptor Indexing - - - - - Improves texture & buffer handling and the Maxwell translation layer. -Some Vulkan 1.1+ and all 1.2+ devices support this extension. - - - - - Ask to select a user profile on each boot, useful if multiple people use eden on the same PC. - - - - - This setting pauses eden when focusing other windows. - - - - + Confirm before stopping emulation Подтвердите перед остановкой эмуляции - + This setting overrides game prompts asking to confirm stopping the game. Enabling it bypasses such prompts and directly exits the emulation. Эта настройка переопределяет запросы игры, запрашивающие подтверждение остановки игры. Включение этой настройки обходит такие запросы и непосредственно завершает эмуляцию. - + Hide mouse on inactivity Спрятать мышь при неактивности - + This setting hides the mouse after 2.5s of inactivity. Эта настройка скрывает указатель мыши после 2,5 секунды бездействия. - + Disable controller applet Отключить веб-апплет - + Forcibly disables the use of the controller applet by guests. When a guest attempts to open the controller applet, it is immediately closed. Принудительно отключает использование приложения контроллера гостями. При попытке гостя открыть приложение контроллера оно немедленно закрывается. - - Check for updates - - - - - Whether or not to check for updates upon startup. - - - - + Enable Gamemode Включить режим игры - + Custom frontend Свой фронтенд - + Real applet Реальное приложение - - Never - - - - - On Load - - - - - Always - - - - + CPU ЦП - + GPU графический процессор - + CPU Asynchronous Асинхронный ГП - + Uncompressed (Best quality) Без сжатия (наилучшее качество) - + BC1 (Low quality) BC1 (низкое качество) - + BC3 (Medium quality) BC3 (среднее качество) - - Conservative - - - - - Aggressive - - - - + OpenGL OpenGL - + Vulkan Vulkan - + Null Null - + GLSL GLSL - + GLASM (Assembly Shaders, NVIDIA Only) GLASM (ассемблерные шейдеры, только для NVIDIA) - + SPIR-V (Experimental, AMD/Mesa Only) SPIR-V (Экспериментальный, только для AMD/Mesa) - + Normal Нормальная - + High Высокая - + Extreme Экстрим - + Auto Авто - + Accurate Точно - + Unsafe Небезопасно - + Paranoid (disables most optimizations) Параноик (отключает большинство оптимизаций) - + Dynarmic Dynarmic - + NCE NCE - + Borderless Windowed Окно без границ - + Exclusive Fullscreen Эксклюзивный полноэкранный - + No Video Output Отсутствие видеовыхода - + CPU Video Decoding Декодирование видео на ЦП - + GPU Video Decoding (Default) Декодирование видео на ГП (по умолчанию) - - 0.25X (180p/270p) [EXPERIMENTAL] - - - - + 0.5X (360p/540p) [EXPERIMENTAL] 0.5X (360p/540p) [ЭКСПЕРИМЕНТАЛЬНО] - + 0.75X (540p/810p) [EXPERIMENTAL] 0.75X (540p/810p) [ЭКСПЕРИМЕНТАЛЬНО] - + 1X (720p/1080p) 1X (720p/1080p) - + 1.5X (1080p/1620p) [EXPERIMENTAL] 1.5X (1080p/1620p) [ЭКСПЕРИМЕНТАЛЬНО] - + 2X (1440p/2160p) 2X (1440p/2160p) - + 3X (2160p/3240p) 3X (2160p/3240p) - + 4X (2880p/4320p) 4X (2880p/4320p) - + 5X (3600p/5400p) 5X (3600p/5400p) - + 6X (4320p/6480p) 6X (4320p/6480p) - + 7X (5040p/7560p) 7X (5040p/7560p) - + 8X (5760p/8640p) 8X (5760p/8640p) - + Nearest Neighbor Ближайший сосед - + Bilinear Билинейный - + Bicubic Бикубический - + Gaussian Гаусс - + ScaleForce ScaleForce - + AMD FidelityFX™️ Super Resolution AMD FidelityFX™️ Super Resolution - - Area - - - - + None Никакой - + FXAA FXAA - + SMAA SMAA - + Default (16:9) Стандартное (16:9) - + Force 4:3 Заставить 4:3 - + Force 21:9 Заставить 21:9 - + Force 16:10 Заставить 16:10 - + Stretch to Window Растянуть до окна - + Automatic Автоматически - + + Default По умолчанию - + + Synchronize Core Speed + + + + + Synchronizes CPU core speed with the game's maximum rendering speed to boost FPS without affecting game speed (animations, physics, etc.). +Compatibility varies by game; many (especially older ones) may not respond well. +Can help reduce stuttering at lower framerates. + + + + + Fast CPU Time + + + + + Overclocks the emulated CPU to remove some FPS limiters. Weaker CPUs may see reduced performance, and certain games may behave improperly. +Use Boost (1700MHz) to run at the Switch's highest native clock, or Fast (2000MHz) to run at 2x clock. + + + + + Custom CPU Ticks + + + + + Set a custom value of CPU ticks. Higher values can increase performance, but may also cause the game to freeze. A range of 77–21000 is recommended. + + + + + Enable Host MMU Emulation (fastmem) + + + + + This optimization speeds up memory accesses by the guest program. +Enabling it causes guest memory reads/writes to be done directly into memory and make use of Host's MMU. +Disabling this forces all memory accesses to use Software MMU Emulation. + + + + + Optimize SPIRV output shader + + + + + Runs an additional optimization pass over generated SPIRV shaders. +Will increase time required for shader compilation. +May slightly improve performance. +This feature is experimental. + + + + + VRAM Usage Mode: + + + + + Selects whether the emulator should prefer to conserve memory or make maximum usage of available video memory for performance. +Aggressive mode may severely impact the performance of other applications such as recording software. + + + + + Skip CPU Inner Invalidation + + + + + Skips certain CPU-side cache invalidations during memory updates, reducing CPU usage and improving it's performance. This may cause glitches or crashes on some games. + + + + + Sync Memory Operations + + + + + Ensures data consistency between compute and memory operations. +This option should fix issues in some games, but may also reduce performance in some cases. +Unreal Engine 4 games often see the most significant changes thereof. + + + + + GPU Accuracy: + + + + + Controls the GPU emulation accuracy. +Most games render fine with Normal, but High is still required for some. +Particles tend to only render correctly with High accuracy. +Extreme should only be used as a last resort. + + + + + DMA Accuracy: + + + + + Controls the DMA precision accuracy. Safe precision can fix issues in some games, but it can also impact performance in some cases. +If unsure, leave this on Default. + + + + + Fast GPU Time (Hack) + + + + + Overclocks the emulated GPU to increase dynamic resolution and render distance. +Use 128 for maximal performance and 512 for maximal graphics fidelity. + + + + + RAII + + + + + A method of automatic resource management in Vulkan that ensures proper release of resources when they are no longer needed, but may cause crashes in bundled games. + + + + + Extended Dynamic State + + + + + Controls the number of features that can be used in Extended Dynamic State. +Higher numbers allow for more features and can increase performance, but may cause issues with some drivers and vendors. +The default value may vary depending on your system and hardware capabilities. +This value can be changed until stability and a better visual quality are achieved. + + + + + Provoking Vertex + + + + + Improves lighting and vertex handling in certain games. +Only Vulkan 1.0+ devices support this extension. + + + + + Descriptor Indexing + + + + + Improves texture & buffer handling and the Maxwell translation layer. +Some Vulkan 1.1+ and all 1.2+ devices support this extension. + + + + + Sample Shading + + + + + Allows the fragment shader to execute per sample in a multi-sampled fragment instead once per fragment. Improves graphics quality at the cost of some performance. +Higher values improve quality more but also reduce performance to a greater extent. + + + + + Ask to select a user profile on each boot, useful if multiple people use Eden on the same PC. + + + + + This setting pauses Eden when focusing other windows. + + + + + Check for updates + + + + + Whether or not to check for updates upon startup. + + + + + Never + + + + + On Load + + + + + Always + + + + + Conservative + + + + + Aggressive + + + + + Unsafe (fast) + + + + + Safe (stable) + + + + + 0.25X (180p/270p) [EXPERIMENTAL] + + + + + Area + + + + 2x 2x - + 4x 4x - + 8x 8x - + 16x 16x - + Japanese (日本語) Японский (日本語) - + American English Американский английский - + French (français) Французский (français) - + German (Deutsch) Немецкий (Deutsch) - + Italian (italiano) Итальянский (italiano) - + Spanish (español) Испанский (español) - + Chinese Китайский - + Korean (한국어) Корейский (한국어) - + Dutch (Nederlands) Голландский (Nederlands) - + Portuguese (português) Португальский (português) - + Russian (Русский) Русский - + Taiwanese Тайваньский - + British English Британский английский - + Canadian French Канадский французский - + Latin American Spanish Латиноамериканский испанский - + Simplified Chinese Упрощённый китайский - + Traditional Chinese (正體中文) Традиционный китайский (正體中文) - + Brazilian Portuguese (português do Brasil) Бразильский португальский (português do Brasil) - - + + Serbian (српски) + + + + + Japan Япония - + USA США - + Europe Европа - + Australia Австралия - + China Китай - + Korea Корея - + Taiwan Тайвань - + Auto (%1) Auto select time zone Авто (%1) - + Default (%1) Default time zone По умолчанию (%1) - + CET CET - + CST6CDT CST6CDT - + Cuba Куба - + EET EET - + Egypt Египт - + Eire Эйре - + EST EST - + EST5EDT EST5EDT - + GB GB - + GB-Eire GB-Эйре - + GMT GMT - + GMT+0 GMT+0 - + GMT-0 GMT-0 - + GMT0 GMT0 - + Greenwich Гринвич - + Hongkong Гонконг - + HST HST - + Iceland Исландия - + Iran Иран - + Israel Израиль - + Jamaica Ямайка - + Kwajalein Кваджалейн - + Libya Ливия - + MET MET - + MST MST - + MST7MDT MST7MDT - + Navajo Навахо - + NZ NZ - + NZ-CHAT NZ-CHAT - + Poland Польша - + Portugal Португалия - + PRC PRC - + PST8PDT PST8PDT - + ROC ROC - + ROK ROK - + Singapore Сингапур - + Turkey Турция - + UCT UCT - + Universal Универсальный - + UTC UTC - + W-SU W-SU - + WET WET - + Zulu Зулусы - + Mono Моно - + Stereo Стерео - + Surround Объёмный звук - + 4GB DRAM (Default) 4 ГБ ОЗУ (по умолчанию) - + 6GB DRAM (Unsafe) 6GB ОЗУ (Небезопасно) - + 8GB DRAM - + 10GB DRAM (Unsafe) - + 12GB DRAM (Unsafe) - + Low (128) - + Medium (256) - + High (512) @@ -1937,37 +2043,37 @@ When a guest attempts to open the controller applet, it is immediately closed.8GB ОЗУ (Небезопасно) - + Docked В док-станции - + Handheld Портативный - + Boost (1700MHz) - + Fast (2000MHz) - + Always ask (Default) Всегда спрашивать (По умолчанию) - + Only if game specifies not to stop Только если игра указывает не останавливаться - + Never ask Никогда не спрашивать @@ -2322,27 +2428,27 @@ When a guest attempts to open the controller applet, it is immediately closed.Журналирование - + Open Log Location Открыть папку для журналов - + Global Log Filter Глобальный фильтр журналов - + When checked, the max size of the log increases from 100 MB to 1 GB Если включено, максимальный размер журнала увеличивается со 100 МБ до 1 ГБ - + Enable Extended Logging** Включить расширенное ведение журнала** - + Show Log in Console Показывать журнал в консоли @@ -2488,7 +2594,7 @@ When a guest attempts to open the controller applet, it is immediately closed. - **This will be reset automatically when eden closes. + **This will be reset automatically when Eden closes. @@ -2550,7 +2656,7 @@ When a guest attempts to open the controller applet, it is immediately closed.**Это будет автоматически сброшено после закрытия yuzu. - + Web applet not compiled Веб-апплет не скомпилирован @@ -2600,7 +2706,7 @@ When a guest attempts to open the controller applet, it is immediately closed. - eden Configuration + Eden Configuration @@ -2609,88 +2715,88 @@ When a guest attempts to open the controller applet, it is immediately closed.Некоторые настройки доступны только тогда, когда игра не запущена. - + Applets Апплеты - - + + Audio Звук - - + + CPU ЦП - + Debug Отладка - + Filesystem Файловая система - - + + General Общие - - + + Graphics Графика - + GraphicsAdvanced ГрафикаРасширенные - + GraphicsExtensions - + Hotkeys Горячие клавиши - - + + Controls Управление - + Profiles Профили - + Network Сеть - - + + System Система - + Game List Список игр - + Web Сеть @@ -2788,51 +2894,45 @@ When a guest attempts to open the controller applet, it is immediately closed. - - - Reset Metadata Cache Сбросить кэш метаданных - + Select Emulated NAND Directory... Выберите папку для эмулируемого NAND... - + Select Emulated SD Directory... Выберите папку для эмулируемого SD... - + Select Gamecard Path... Выберите папку для картриджей... - + Select Dump Directory... Выберите папку для дампов... - + Select Mod Load Directory... Выберите папку для модов... - The metadata cache is already empty. - Кэш метаданных уже пустой. + Кэш метаданных уже пустой. - The operation completed successfully. - Операция выполнена успешно. + Операция выполнена успешно. - The metadata cache couldn't be deleted. It might be in use or non-existent. - Кэш метаданных не может быть удален. Возможно, он используется или отсутствует. + Кэш метаданных не может быть удален. Возможно, он используется или отсутствует. @@ -2863,12 +2963,12 @@ When a guest attempts to open the controller applet, it is immediately closed.yuzu - - eden + + Eden - + This reset all settings and remove all per-game configurations. This will not delete game directories, profiles, or input profiles. Proceed? Это сбросит все настройки и удалит все конфигурации под отдельные игры. При этом не будут удалены пути для игр, профили или профили ввода. Продолжить? @@ -2901,33 +3001,33 @@ When a guest attempts to open the controller applet, it is immediately closed.Фоновый цвет: - + % FSR sharpening percentage (e.g. 50%) % - + Off Отключена - + VSync Off Верт. синхронизация отключена - + Recommended Рекомендуется - + On Включена - + VSync On Верт. синхронизация включена @@ -2964,14 +3064,18 @@ When a guest attempts to open the controller applet, it is immediately closed. - Vulkan Extension Settings + Vulkan Extensions Settings - - While it's recommended to use state 3, some games may perform better on lower states. Setting to 0 (disabled) may also break games. -If your GPU is older (i.e. RX570/580 or older), it may not support these features. If this is the case, set the slider to 0 and uncheck all boxes. -These settings are experimental, and may cause black screens. If your games fail to boot or are stuck on a black screen, change these settings around. + + % + Sample Shading percentage (e.g. 50%) + % + + + + Extended Dynamic State is disabled on macOS due to MoltenVK compatibility issues that cause black screens. @@ -3003,75 +3107,75 @@ These settings are experimental, and may cause black screens. If your games fail Ввостановить значения по умолчанию. - + Action Действие - + Hotkey Горячая клавиша - + Controller Hotkey Горячая клавиша контроллера - - - + + + Conflicting Key Sequence Конфликтующее сочетание клавиш - - + + The entered key sequence is already assigned to: %1 Введенное сочетание уже назначено на: %1 - + [waiting] [ожидание] - + Invalid Недопустимо - + Invalid hotkey settings Неверные настройки горячих клавиш - + An error occurred. Please report this issue on github. Произошла ошибка. Пожалуйста, сообщите об этой проблеме на github. - + Restore Default Ввостановить значение по умолчанию - + Clear Очистить - + Conflicting Button Sequence Конфликтующее сочетание кнопок - + The default button sequence is already assigned to: %1 Сочетание кнопок по умолчанию уже назначено на: %1 - + The default key sequence is already assigned to: %1 Сочетание клавиш по умолчанию уже назначено на: %1 @@ -3391,7 +3495,7 @@ These settings are experimental, and may cause black screens. If your games fail - Requires restarting eden + Requires restarting Eden @@ -3546,7 +3650,7 @@ These settings are experimental, and may cause black screens. If your games fail - + Left Stick Левый мини-джойстик @@ -3656,14 +3760,14 @@ These settings are experimental, and may cause black screens. If your games fail - + L L - + ZL ZL @@ -3682,7 +3786,7 @@ These settings are experimental, and may cause black screens. If your games fail - + Plus Плюс @@ -3695,15 +3799,15 @@ These settings are experimental, and may cause black screens. If your games fail - - + + R R - + ZR ZR @@ -3748,7 +3852,7 @@ These settings are experimental, and may cause black screens. If your games fail - + Right Stick Правый мини-джойстик @@ -3763,242 +3867,242 @@ These settings are experimental, and may cause black screens. If your games fail Настроить - - - - + + + + Clear Очистить - - - - - + + + + + [not set] [не задано] - - - + + + Invert button Инвертировать кнопку - - + + Toggle button Переключить кнопку - + Turbo button Турбо кнопка - - + + Invert axis Инвертировать оси - - - + + + Set threshold Установить порог - - + + Choose a value between 0% and 100% Выберите значение между 0% и 100% - + Toggle axis Переключить оси - + Set gyro threshold Установить порог гироскопа - + Calibrate sensor Калибровка датчика - + Map Analog Stick Задать аналоговый мини-джойстик - + After pressing OK, first move your joystick horizontally, and then vertically. To invert the axes, first move your joystick vertically, and then horizontally. После нажатия на ОК, двигайте ваш мини-джойстик горизонтально, а затем вертикально. Чтобы инвертировать оси, сначала двигайте ваш мини-джойстик вертикально, а затем горизонтально. - + Center axis Центрировать оси - - + + Deadzone: %1% Мёртвая зона: %1% - - + + Modifier Range: %1% Диапазон модификатора: %1% - - + + Pro Controller Контроллер Pro - + Dual Joycons Двойные Joy-Con'ы - + Left Joycon Левый Joy-Сon - + Right Joycon Правый Joy-Сon - + Handheld Портативный - + GameCube Controller Контроллер GameCube - + Poke Ball Plus Poke Ball Plus - + NES Controller Контроллер NES - + SNES Controller Контроллер SNES - + N64 Controller Контроллер N64 - + Sega Genesis Sega Genesis - + Start / Pause Старт / Пауза - + Z Z - + Control Stick Мини-джойстик управления - + C-Stick C-Джойстик - + Shake! Встряхните! - + [waiting] [ожидание] - + New Profile Новый профиль - + Enter a profile name: Введите имя профиля: - - + + Create Input Profile Создать профиль управления - + The given profile name is not valid! Заданное имя профиля недействительно! - + Failed to create the input profile "%1" Не удалось создать профиль управления "%1" - + Delete Input Profile Удалить профиль управления - + Failed to delete the input profile "%1" Не удалось удалить профиль управления "%1" - + Load Input Profile Загрузить профиль управления - + Failed to load the input profile "%1" Не удалось загрузить профиль управления "%1" - + Save Input Profile Сохранить профиль управления - + Failed to save the input profile "%1" Не удалось сохранить профиль управления "%1" @@ -4055,7 +4159,7 @@ To invert the axes, first move your joystick vertically, and then horizontally.< - + Configure Настроить @@ -4091,7 +4195,7 @@ To invert the axes, first move your joystick vertically, and then horizontally.< - + Test Тест @@ -4110,7 +4214,7 @@ To invert the axes, first move your joystick vertically, and then horizontally.< <a href='https://yuzu-emu.org/wiki/using-a-controller-or-android-phone-for-motion-or-touch-input'><span style="text-decoration: underline; color:#039be5;">Узнать больше</span></a> - + %1:%2 %1:%2 @@ -4119,77 +4223,77 @@ To invert the axes, first move your joystick vertically, and then horizontally.< yuzu - + <a href='https://eden-emulator.github.io/wiki/using-a-controller-or-android-phone-for-motion-or-touch-input'><span style="text-decoration: underline; color:#039be5;">Learn More</span></a> - + Port number has invalid characters Номер порта содержит недопустимые символы - - - - - - - eden + + + + + + + Eden - + Port has to be in range 0 and 65353 Порт должен быть в районе от 0 до 65353 - + IP address is not valid IP-адрес недействителен - + This UDP server already exists Этот UDP сервер уже существует - + Unable to add more than 8 servers Невозможно добавить более 8 серверов - + 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>Убедитесь, что сервер правильно настроен, а также проверьте адрес и порт. - + UDP Test or calibration configuration is in progress.<br>Please wait for them to finish. Тест UDP или калибрация в процессе.<br>Пожалуйста, подождите завершения. @@ -4316,7 +4420,12 @@ Current values are %1% and %2% respectively. Интерфейс сети - + + Enable Airplane Mode + + + + None Нет @@ -4374,52 +4483,52 @@ Current values are %1% and %2% respectively. Некоторые настройки доступны только тогда, когда игра не запущена. - + Add-Ons Дополнения - + System Система - + CPU ЦП - + Graphics Графика - + Adv. Graphics Расш. Графика - + GPU Extensions - + Audio Звук - + Input Profiles Профили управления - + Linux Linux - + Properties Свойства @@ -4437,12 +4546,12 @@ Current values are %1% and %2% respectively. Дополнения - + Patch Name Название патча - + Version Версия @@ -4480,27 +4589,32 @@ Current values are %1% and %2% respectively. Выбрать изображение - + + Select Avatar + + + + Add Добавить - + Rename Переименовать - + Remove Удалить - + Profile management is available only when game is not running. Управление профилями недоступно пока запущена игра. - + %1 %2 %1 is the profile username, %2 is the formatted UUID (e.g. 00112233-4455-6677-8899-AABBCCDDEEFF)) @@ -4508,100 +4622,189 @@ Current values are %1% and %2% respectively. %2 - + Enter Username Введите имя пользователя - + Users Пользователи - + Enter a username for the new user: Введите имя пользователя для нового профиля: - + Enter a new username: Введите новое имя пользователя: - + + Error saving user image + + + + + Unable to save image to file + + + + Select User Image Выберите изображение пользователя - - JPEG Images (*.jpg *.jpeg) - Изображения JPEG (*.jpg, *.jpeg) + + Image Formats (*.jpg *.jpeg *.png *.bmp) + - + + No firmware available + Нет доступной прошивки + + + + Please install the firmware to use firmware avatars. + + + + + + Error loading archive + + + + + Archive is not available. Please install/reinstall firmware. + + + + + Archive does not contain romfs. It is probably corrupt. + + + + + Error extracting archive + + + + + Archive could not be extracted. It is probably corrupt. + + + + + Error finding image directory + + + + + Failed to find image directory in the archive. + + + + + No images found + + + + + No avatar images were found in the archive. + + + + JPEG Images (*.jpg *.jpeg) + Изображения JPEG (*.jpg, *.jpeg) + + + Error deleting image Ошибка при удалении изображения - + Error occurred attempting to overwrite previous image at: %1. Ошибка при попытке перезаписи предыдущего изображения в: %1. - + Error deleting file Ошибка при удалении файла - + Unable to delete existing file: %1. Не удалось удалить существующий файл: %1. - + Error creating user image directory Ошибка при создании папки пользовательских изображений - + Unable to create directory %1 for storing user images. Не получилось создать папку %1 для хранения изображений пользователя. - Error copying user image - Ошибка при копировании изображения пользователя + Ошибка при копировании изображения пользователя - Unable to copy image from %1 to %2 - Не получилось скопировать изображение из %1 в %2 + Не получилось скопировать изображение из %1 в %2 - Error resizing user image - Ошибка при изменении размера изображения пользователя + Ошибка при изменении размера изображения пользователя - Unable to resize image - Невозможно изменить размер изображения + Невозможно изменить размер изображения + + + + ConfigureProfileManagerAvatarDialog + + + Select + + + + + Cancel + Отмена + + + + Background Color + + + + + Select Firmware Avatar + ConfigureProfileManagerDeleteDialog - + Delete this user? All of the user's save data will be deleted. Удалить этого пользователя? Все сохраненные данные пользователя будут удалены. - + Confirm Delete Подтвердите удаление - + Name: %1 UUID: %2 Имя: %1 @@ -4654,7 +4857,7 @@ UUID: %2 - + Enable Включить @@ -4665,7 +4868,7 @@ UUID: %2 - + Not connected Не подключено @@ -4675,63 +4878,63 @@ UUID: %2 По умолчанию - + Clear Очистить - + [not set] [не задано] - + Invert axis Инвертировать оси - - + + Deadzone: %1% Мёртвая зона: %1% - + Error enabling ring input Ошибка при включении ввода кольца - + Direct Joycon driver is not enabled Прямой драйвер Joycon не активен - + Configuring Настройка - + The current mapped device doesn't support the ring controller Текущее выбранное устройство не поддерживает контроллер Ring - + The current mapped device doesn't have a ring attached К текущему устройству не прикреплено кольцо - + The current mapped device is not connected Текущее устройство не подключено - + Unexpected driver result %1 Неожиданный результат драйвера %1 - + [waiting] [ожидание] @@ -4773,7 +4976,7 @@ UUID: %2 - <html><head/><body><p>Reads controller input from scripts in the same format as TAS-nx scripts.<br/>For a more detailed explanation, please consult the <a href="https://eden-emulator.github.io/help/feature/tas/"><span style=" text-decoration: underline; color:#039be5;">help page</span></a> on the eden website.</p></body></html> + <html><head/><body><p>Reads controller input from scripts in the same format as TAS-nx scripts.<br/>For a more detailed explanation, please consult the <a href="https://eden-emulator.github.io/help/feature/tas/"><span style=" text-decoration: underline; color:#039be5;">help page</span></a> on the Eden website.</p></body></html> @@ -4825,12 +5028,12 @@ UUID: %2 ConfigureTasDialog - + TAS Configuration Настройка TAS - + Select TAS Load Directory... Выбрать папку загрузки TAS... @@ -4940,7 +5143,7 @@ Drag points to change position, or double-click table cells to edit values. - Warning: The settings in this page affect the inner workings of eden's emulated touchscreen. Changing them may result in undesirable behavior, such as the touchscreen partially or not working. You should only use this page if you know what you are doing. + Warning: The settings in this page affect the inner workings of Eden's emulated touchscreen. Changing them may result in undesirable behavior, such as the touchscreen partially or not working. You should only use this page if you know what you are doing. @@ -5260,6 +5463,16 @@ Drag points to change position, or double-click table cells to edit values.Web Сеть + + + Eden Web Service + + + + + Generate + + yuzu Web Service Веб-сервис yuzu @@ -5269,42 +5482,29 @@ Drag points to change position, or double-click table cells to edit values.Предоставляя свое имя пользователя и токен, вы соглашаетесь разрешить yuzu собирать дополнительные данные об использовании, которые могут включать информацию, идентифицирующую пользователя. - - eden Web Service - - - - - By providing your username and token, you agree to allow eden to collect additional usage data, which may include user identifying information. - - - - Verify - Подтвердить + Подтвердить - Sign up - Регистрация + Регистрация - + Token: Токен: - + Username: Имя пользователя: - What is my token? - Что такое токен и где его найти? + Что такое токен и где его найти? - + Web Service configuration can only be changed when a public room isn't being hosted. Настройки веб-службы могут быть изменены только в том случае, когда не хостится публичная комната. @@ -5329,12 +5529,12 @@ Drag points to change position, or double-click table cells to edit values.Перегенерировать - + Discord Presence Discord Presence - + Show Current Game in your Discord Status Показывать текущую игру в вашем статусе Discord @@ -5343,24 +5543,8 @@ Drag points to change position, or double-click table cells to edit values.<a href='https://yuzu-emu.org/help/feature/telemetry/'><span style="text-decoration: underline; color:#039be5;">Узнать больше</span></a> - <a href='https://profile.yuzu-emu.org/'><span style="text-decoration: underline; color:#039be5;">Sign up</span></a> - <a href='https://profile.yuzu-emu.org/'><span style="text-decoration: underline; color:#039be5;">Регистрация</span></a> - - - - <a href='https://evilperson1337.notion.site/Hosting-a-Room-Inside-of-Eden-20457c2edaf680108abac6215a79acdb'><span style="text-decoration: underline; color:#039be5;">What is my token?</span></a> - - - - - Warning - - - - - Verification is currently nonfunctional, instead generate a random 48-character string with only lowercase a-z. - + <a href='https://profile.yuzu-emu.org/'><span style="text-decoration: underline; color:#039be5;">Регистрация</span></a> <a href='https://yuzu-emu.org/wiki/yuzu-web-service/'><span style="text-decoration: underline; color:#039be5;">What is my token?</span></a> @@ -5383,10 +5567,9 @@ Drag points to change position, or double-click table cells to edit values.Токен не был подтвержден. Изменение вашего токена не было сохранено. - Unverified, please click Verify before saving configuration Tooltip - Не подтверждено, пожалуйста нажмите кнопку Подтвердить прежде чем сохранять конфигурацию. + Не подтверждено, пожалуйста нажмите кнопку Подтвердить прежде чем сохранять конфигурацию. Verifying... @@ -5410,20 +5593,67 @@ Drag points to change position, or double-click table cells to edit values.Verification failed. Check that you have entered your token correctly, and that your internet connection is working. Ошибка подтверждения. Убедитесь, что вы правильно ввели свой токен и что ваше подключение к Интернету работает. + + + + All Good + Tooltip + + + + + Must be between 4-20 characters + Tooltip + + + + + Must be 48 characters, and lowercase a-z + Tooltip + + ControllerDialog - + Controller P1 Контроллер P1 - + &Controller P1 [&C] Контроллер P1 + + DepsDialog + + + Eden Dependencies + + + + + <html><head/><body><p><span style=" font-size:28pt;">Eden Dependencies</span></p></body></html> + + + + + <html><head/><body><p>The projects that make Eden possible</p></body></html> + + + + + Dependency + + + + + Version + Версия + + DirectConnect @@ -5529,7 +5759,12 @@ Drag points to change position, or double-click table cells to edit values. - Creating a room failed. Please retry. Restarting eden might be necessary. + Creating a room failed. Please retry. Restarting Eden might be necessary. + + + + + Version mismatch! Please update to the latest version of Eden. If the problem persists, contact the room host and ask them to update the server. @@ -5537,11 +5772,6 @@ Drag points to change position, or double-click table cells to edit values.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 eden. If the problem persists, contact the room host and ask them to update the server. - - Incorrect password. @@ -5603,7 +5833,7 @@ Please go to Configure -> System -> Network and make a selection. Телеметрия - + Broken Vulkan Installation Detected Обнаружена поврежденная установка Vulkan @@ -5612,106 +5842,105 @@ Please go to Configure -> System -> Network and make a selection. Не удалось выполнить инициализацию Vulkan во время загрузки.<br><br>Нажмите <a href='https://yuzu-emu.org/wiki/faq/#yuzu-starts-with-the-error-broken-vulkan-installation-detected'>здесь для получения инструкций по устранению проблемы</a>. - + Running a game TRANSLATORS: This string is shown to the user to explain why yuzu needs to prevent the computer from sleeping Запущена игра - + Loading Web Applet... Загрузка веб-апплета... - - + + Disable Web Applet Отключить веб-апплет - + Disabling the web applet can lead to undefined behavior and should only be used with Super Mario 3D All-Stars. Are you sure you want to disable the web applet? (This can be re-enabled in the Debug settings.) Отключение веб-апплета может привести к неожиданному поведению и должно использоваться только с Super Mario 3D All-Stars. Вы уверены, что хотите отключить веб-апплет? (Его можно снова включить в настройках отладки.) - + The amount of shaders currently being built Количество создаваемых шейдеров на данный момент - + The current selected resolution scaling multiplier. Текущий выбранный множитель масштабирования разрешения. - + Current emulation speed. Values higher or lower than 100% indicate emulation is running faster or slower than a Switch. Текущая скорость эмуляции. Значения выше или ниже 100% указывают на то, что эмуляция идет быстрее или медленнее, чем на Switch. - + 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 Switch frame, not counting framelimiting or v-sync. For full-speed emulation this should be at most 16.67 ms. Время, которое нужно для эмуляции 1 кадра Switch, не принимая во внимание ограничение FPS или вертикальную синхронизацию. Для эмуляции в полной скорости значение должно быть не больше 16,67 мс. - + Unmute Включить звук - + Mute Выключить звук - + Reset Volume Сбросить громкость - + &Clear Recent Files [&C] Очистить недавние файлы - + &Continue [&C] Продолжить - + &Pause [&P] Пауза - Warning Outdated Game Format - Предупреждение устаревший формат игры + Предупреждение устаревший формат игры You are using the deconstructed ROM directory format for this game, which is an outdated format that has been superseded by others such as NCA, NAX, XCI, or NSP. Deconstructed ROM directories lack icons, metadata, and update support.<br><br>For an explanation of the various Switch formats yuzu supports, <a href='https://yuzu-emu.org/wiki/overview-of-switch-game-formats'>check out our wiki</a>. This message will not be shown again. Для этой игры вы используете разархивированный формат ROM'а, который является устаревшим и был заменен другими, такими как NCA, NAX, XCI или NSP. В разархивированных каталогах ROM'а отсутствуют иконки, метаданные и поддержка обновлений. <br><br>Для получения информации о различных форматах Switch, поддерживаемых yuzu, <a href='https://yuzu-emu.org/wiki/overview-of-switch-game-formats'>просмотрите нашу вики</a>. Это сообщение больше не будет отображаться. - - + + Error while loading ROM! Ошибка при загрузке ROM'а! - + The ROM format is not supported. Формат ROM'а не поддерживается. - + An error occurred initializing the video core. Произошла ошибка при инициализации видеоядра. @@ -5720,7 +5949,7 @@ Please go to Configure -> System -> Network and make a selection. yuzu столкнулся с ошибкой при запуске видеоядра. Обычно это вызвано устаревшими драйверами ГП, включая интегрированные. Проверьте журнал для получения более подробной информации. Дополнительную информацию о доступе к журналу смотрите на следующей странице: <a href='https://yuzu-emu.org/help/reference/log-files/'>Как загрузить файл журнала</a>. - + Error while loading ROM! %1 %1 signifies a numeric error code. Ошибка при загрузке ROM'а! %1 @@ -5731,774 +5960,767 @@ Please go to Configure -> System -> Network and make a selection. %1<br>Пожалуйста, следуйте <a href='https://yuzu-emu.org/help/quickstart/'>краткому руководству пользователя yuzu</a> чтобы пере-дампить ваши файлы<br>Вы можете обратиться к вики yuzu</a> или Discord yuzu</a> для помощи. - + Vulkan initialization failed during boot.<br><br>Click <a href='https://eden-emulator.github.io/wiki/faq/#yuzu-starts-with-the-error-broken-vulkan-installation-detected'>here for instructions to fix the issue</a>. - - Game Updates Warning - - - - - The game you are trying to launch is known to have performance or booting issues when updates are applied. Please try increasing the memory layout to 6GB or 8GB if any issues occur.<br><br>Press "OK" to continue launching, or "Cancel" to cancel the launch. - - - - - Don't show again for this game - - - - - You are using the deconstructed ROM directory format for this game, which is an outdated format that has been superseded by others such as NCA, NAX, XCI, or NSP. Deconstructed ROM directories lack icons, metadata, and update support.<br><br>For an explanation of the various Switch formats eden supports, <a href='https://eden-emulator.github.io/wiki/overview-of-switch-game-formats'>check out our wiki</a>. This message will not be shown again. - - - - - eden has encountered an error while running the video core. This is usually caused by outdated GPU drivers, including integrated ones. Please see the log for more details. For more information on accessing the log, please see the following page: <a href='https://eden-emulator.github.io/help/reference/log-files/'>How to Upload the Log File</a>. - - - - - %1<br>Please redump your files or ask on Discord for help. - %1 signifies an error string. - - - - + An unknown error occurred. Please see the log for more details. Произошла неизвестная ошибка. Пожалуйста, проверьте журнал для подробностей. - + (64-bit) (64-х битный) - + (32-bit) (32-х битный) - + %1 %2 %1 is the title name. %2 indicates if the title is 64-bit or 32-bit %1 %2 - + Closing software... Закрываем программу... - + Save Data Сохранения - + Mod Data Данные модов - + Error Opening %1 Folder Ошибка при открытии папки %1 - - + + Folder does not exist! Папка не существует! - Error Opening Transferable Shader Cache - Ошибка при открытии переносного кэша шейдеров + Ошибка при открытии переносного кэша шейдеров - Failed to create the shader cache directory for this title. - Не удалось создать папку кэша шейдеров для этой игры. + Не удалось создать папку кэша шейдеров для этой игры. - Error Removing Contents - Ошибка при удалении содержимого + Ошибка при удалении содержимого - Error Removing Update - Ошибка при удалении обновлений + Ошибка при удалении обновлений - Error Removing DLC - Ошибка при удалении DLC + Ошибка при удалении DLC - + Remove Installed Game Contents? Удалить установленное содержимое игр? - + Remove Installed Game Update? Удалить установленные обновления игры? - + Remove Installed Game DLC? Удалить установленные DLC игры? - + Remove Entry Удалить запись - - - - - - Successfully Removed - Успешно удалено + Успешно удалено - Successfully removed the installed base game. - Установленная игра успешно удалена. + Установленная игра успешно удалена. - The base game is not installed in the NAND and cannot be removed. - Игра не установлена в NAND и не может быть удалена. + Игра не установлена в NAND и не может быть удалена. - Successfully removed the installed update. - Установленное обновление успешно удалено. + Установленное обновление успешно удалено. - There is no update installed for this title. - Для этой игры не было установлено обновление. + Для этой игры не было установлено обновление. - There are no DLC installed for this title. - Для этой игры не были установлены DLC. + Для этой игры не были установлены DLC. - Successfully removed %1 installed DLC. - Установленное DLC %1 было успешно удалено + Установленное DLC %1 было успешно удалено - + Delete OpenGL Transferable Shader Cache? Удалить переносной кэш шейдеров OpenGL? - + Delete Vulkan Transferable Shader Cache? Удалить переносной кэш шейдеров Vulkan? - + Delete All Transferable Shader Caches? Удалить весь переносной кэш шейдеров? - + Remove Custom Game Configuration? Удалить пользовательскую настройку игры? - + Remove Cache Storage? Удалить кэш-хранилище? - + Remove File Удалить файл - + Remove Play Time Data Удалить данные о времени игры - + Reset play time? Сбросить время игры? - - Error Removing Transferable Shader Cache - Ошибка при удалении переносного кэша шейдеров + Ошибка при удалении переносного кэша шейдеров - - A shader cache for this title does not exist. - Кэш шейдеров для этой игры не существует. + Кэш шейдеров для этой игры не существует. - Successfully removed the transferable shader cache. - Переносной кэш шейдеров успешно удалён. + Переносной кэш шейдеров успешно удалён. - Failed to remove the transferable shader cache. - Не удалось удалить переносной кэш шейдеров. + Не удалось удалить переносной кэш шейдеров. - Error Removing Vulkan Driver Pipeline Cache - Ошибка при удалении конвейерного кэша Vulkan + Ошибка при удалении конвейерного кэша Vulkan - Failed to remove the driver pipeline cache. - Не удалось удалить конвейерный кэш шейдеров. + Не удалось удалить конвейерный кэш шейдеров. - - Error Removing Transferable Shader Caches - Ошибка при удалении переносного кэша шейдеров + Ошибка при удалении переносного кэша шейдеров - Successfully removed the transferable shader caches. - Переносной кэш шейдеров успешно удален. + Переносной кэш шейдеров успешно удален. - Failed to remove the transferable shader cache directory. - Ошибка при удалении папки переносного кэша шейдеров. + Ошибка при удалении папки переносного кэша шейдеров. - - Error Removing Custom Configuration - Ошибка при удалении пользовательской настройки + Ошибка при удалении пользовательской настройки - A custom configuration for this title does not exist. - Пользовательская настройка для этой игры не существует. + Пользовательская настройка для этой игры не существует. - Successfully removed the custom game configuration. - Пользовательская настройка игры успешно удалена. + Пользовательская настройка игры успешно удалена. - Failed to remove the custom game configuration. - Не удалось удалить пользовательскую настройку игры. + Не удалось удалить пользовательскую настройку игры. - - + + RomFS Extraction Failed! Не удалось извлечь RomFS! - + There was an error copying the RomFS files or the user cancelled the operation. Произошла ошибка при копировании файлов RomFS или пользователь отменил операцию. - + Full Полный - + Skeleton Скелет - + Select RomFS Dump Mode Выберите режим дампа RomFS - + Please select the how you would like the RomFS dumped.<br>Full will copy all of the files into the new directory while <br>skeleton will only create the directory structure. Пожалуйста, выберите, как вы хотите выполнить дамп RomFS. <br>Полный скопирует все файлы в новую папку, в то время как <br>скелет создаст только структуру папок. - + There is not enough free space at %1 to extract the RomFS. Please free up space or select a different dump directory at Emulation > Configure > System > Filesystem > Dump Root В %1 недостаточно свободного места для извлечения RomFS. Пожалуйста, освободите место или выберите другую папку для дампа в Эмуляция > Настройка > Система > Файловая система > Корень дампа - + Extracting RomFS... Извлечение RomFS... - - - - - + + Cancel Отмена - + RomFS Extraction Succeeded! Извлечение RomFS прошло успешно! - - - + The operation completed successfully. Операция выполнена. - Integrity verification couldn't be performed! - Проверка целостности не может быть выполнена! + Проверка целостности не может быть выполнена! - File contents were not checked for validity. - Файл не проверялся на корректность. + Файл не проверялся на корректность. - - Verifying integrity... - Проверка целостности... + Проверка целостности... - - Integrity verification succeeded! - Проверка целостности прошла успешно! + Проверка целостности прошла успешно! - - Integrity verification failed! - Проверка целостности не удалась! + Проверка целостности не удалась! - File contents may be corrupt. - Файл может быть поврежден. + Файл может быть поврежден. - - - - Create Shortcut - Создать ярлык + Создать ярлык - Do you want to launch the game in fullscreen? - Вы хотите запустить игру в полноэкранном режиме? + Вы хотите запустить игру в полноэкранном режиме? - Successfully created a shortcut to %1 - Успешно создан ярлык в %1 + Успешно создан ярлык в %1 - This will create a shortcut to the current AppImage. This may not work well if you update. Continue? - Это создаст ярлык для текущего AppImage. Он может не работать после обновлений. Продолжить? + Это создаст ярлык для текущего AppImage. Он может не работать после обновлений. Продолжить? - Failed to create a shortcut to %1 - Не удалось создать ярлык для %1 + Не удалось создать ярлык для %1 - Create Icon - Создать иконку + Создать иконку - Cannot create icon file. Path "%1" does not exist and cannot be created. - Невозможно создать файл иконки. Путь "%1" не существует и не может быть создан. + Невозможно создать файл иконки. Путь "%1" не существует и не может быть создан. - + + Warning: Outdated Game Format + + + + + You are using the deconstructed ROM directory format for this game, which is an outdated format that has been superseded by others such as NCA, NAX, XCI, or NSP. Deconstructed ROM directories lack icons, metadata, and update support.<br><br>For an explanation of the various Switch formats Eden supports, <a href='https://eden-emulator.github.io/wiki/overview-of-switch-game-formats'>check out our wiki</a>. This message will not be shown again. + + + + + Eden has encountered an error while running the video core. This is usually caused by outdated GPU drivers, including integrated ones. Please see the log for more details. For more information on accessing the log, please see the following page: <a href='https://yuzu-mirror.github.io/help/reference/log-files/'>How to Upload the Log File</a>. + + + + + %1<br>Please redump your files or ask on Discord/Revolt for help. + %1 signifies an error string. + + + + Error Opening %1 Ошибка открытия %1 - + Select Directory Выбрать папку - + Properties Свойства - + The game properties could not be loaded. Не удалось загрузить свойства игры. - + Switch Executable (%1);;All Files (*.*) %1 is an identifier for the Switch executable file extensions. Исполняемый файл Switch (%1);;Все файлы (*.*) - + Load File Загрузить файл - + Open Extracted ROM Directory Открыть папку извлечённого ROM'а - + Invalid Directory Selected Выбрана недопустимая папка - + The directory you have selected does not contain a 'main' file. Папка, которую вы выбрали, не содержит файла 'main'. - + Installable Switch File (*.nca *.nsp *.xci);;Nintendo Content Archive (*.nca);;Nintendo Submission Package (*.nsp);;NX Cartridge Image (*.xci) Устанавливаемый файл Switch (*.nca, *.nsp, *.xci);;Архив контента Nintendo (*.nca);;Пакет подачи Nintendo (*.nsp);;Образ картриджа NX (*.xci) - + Install Files Установить файлы - + %n file(s) remaining Остался %n файл Осталось %n файл(ов) - Осталось %n файл(ов) - + Installing file "%1"... Установка файла "%1"... - - + + Install Results Результаты установки - + To avoid possible conflicts, we discourage users from installing base games to the NAND. Please, only use this feature to install updates and DLC. Чтобы избежать возможных конфликтов, мы не рекомендуем пользователям устанавливать игры в NAND. Пожалуйста, используйте эту функцию только для установки обновлений и DLC. - + %n file(s) were newly installed %n файл был недавно установлен %n файл(ов) было недавно установлено - - %n файл(ов) было недавно установлено - + %n file(s) were overwritten %n файл был перезаписан %n файл(ов) было перезаписано - - %n файл(ов) было перезаписано - + %n file(s) failed to install %n файл не удалось установить %n файл(ов) не удалось установить - - %n файл(ов) не удалось установить - + System Application Системное приложение - + System Archive Системный архив - + System Application Update Обновление системного приложения - + Firmware Package (Type A) Пакет прошивки (Тип А) - + Firmware Package (Type B) Пакет прошивки (Тип Б) - + Game Игра - + Game Update Обновление игры - + Game DLC DLC игры - + Delta Title Дельта-титул - + Select NCA Install Type... Выберите тип установки NCA... - + Please select the type of title you would like to install this NCA as: (In most instances, the default 'Game' is fine.) Пожалуйста, выберите тип приложения, который вы хотите установить для этого NCA: (В большинстве случаев, подходит стандартный выбор «Игра».) - + Failed to Install Ошибка установки - + The title type you selected for the NCA is invalid. Тип приложения, который вы выбрали для NCA, недействителен. - + File not found Файл не найден - + File "%1" not found Файл "%1" не найден - + OK ОК - - + + Hardware requirements not met Не удовлетворены системные требования - - + + Your system does not meet the recommended hardware requirements. Compatibility reporting has been disabled. Ваша система не соответствует рекомендуемым системным требованиям. Отчеты о совместимости были отключены. - + Missing yuzu Account Отсутствует аккаунт yuzu - - In order to submit a game compatibility test case, you must link your eden account.<br><br/>To link your eden account, go to Emulation &gt; Configuration &gt; Web. + + In order to submit a game compatibility test case, you must set up your web token and username.<br><br/>To link your eden account, go to Emulation &gt; Configuration &gt; Web. - - Install decryption keys and restart eden before attempting to install firmware. + + + Install decryption keys and restart Eden before attempting to install firmware. - - Firmware installation cancelled, firmware may be in bad state, restart eden or re-install firmware. + + Select Dumped Firmware ZIP - - Encryption keys are missing. + + Zipped Archives (*.zip) - - Are you sure you want to close eden? + + Firmware cleanup failed - - - - eden + + Failed to clean up extracted firmware cache. +Check write permissions in the system temp directory and try again. +OS reported error: %1 - - The currently running application has requested eden to not exit. + + Please install firmware to use the Album applet. + + + + + Please install firmware to use the Cabinet applet. + + + + + Please install firmware to use the Mii editor. + + + + + Please install firmware to use the Controller Menu. + + + + + Please install firmware to use the Home Menu. + + + + + Firmware Corrupted + + + + + Firmware Too New + + + + + +Continue anyways? + + + + + Don't show again + + + + + Please install firmware to use Starter. + + + + + Are you sure you want to close Eden? + + + + + + + Eden + + + + + The currently running application has requested Eden to not exit. Would you like to bypass this and exit anyway? + + + Encryption keys are missing. + + In order to submit a game compatibility test case, you must link your yuzu account.<br><br/>To link your yuzu account, go to Emulation &gt; Configuration &gt; Web. Чтобы отправить отчет о совместимости игры, необходимо привязать свою учетную запись yuzu.<br><br/>Чтобы привязать свою учетную запись yuzu, перейдите в раздел Эмуляция &gt; Параметры &gt; Сеть. - + Error opening URL Ошибка при открытии URL - + Unable to open the URL "%1". Не удалось открыть URL: "%1". - + TAS Recording Запись TAS - + Overwrite file of player 1? Перезаписать файл игрока 1? - + Invalid config detected Обнаружена недопустимая конфигурация - + Handheld controller can't be used on docked mode. Pro controller will be selected. Портативный контроллер не может быть использован в режиме док-станции. Будет выбран контроллер Pro. - - + + Amiibo Amiibo - - + + The current amiibo has been removed Текущий amiibo был убран - + Error Ошибка - - + + The current game is not looking for amiibos Текущая игра не ищет amiibo - + Amiibo File (%1);; All Files (*.*) Файл Amiibo (%1);; Все Файлы (*.*) - + Load Amiibo Загрузить Amiibo - + Error loading Amiibo data Ошибка загрузки данных Amiibo - + The selected file is not a valid amiibo Выбранный файл не является допустимым amiibo - + The selected file is already on use Выбранный файл уже используется - + An unknown error occurred Произошла неизвестная ошибка - - Verification failed for the following files: %1 - Проверка не удалась для следующих файлов: + Проверка не удалась для следующих файлов: %1 - + + Keys not installed Ключи не установлены @@ -6507,275 +6729,234 @@ Would you like to bypass this and exit anyway? Установите ключи дешифрования и перезапустите yuzu перед попыткой установки прошивки. - + Select Dumped Firmware Source Location Выберите местоположение прошивки. - Installing Firmware... - Установка прошивки... + Установка прошивки... - - - - Firmware install failed - Не удалось установить прошивку + Не удалось установить прошивку - Unable to locate potential firmware NCA files - Не удалось найти возможные NCA файлы прошивки . + Не удалось найти возможные NCA файлы прошивки . - Failed to delete one or more firmware file. - Не удалось удалить один или несколько файлов прошивки. + Не удалось удалить один или несколько файлов прошивки. Firmware installation cancelled, firmware may be in bad state, restart yuzu or re-install firmware. Установка прошивки отменена, прошивка может быть в плохом состоянии, перезапустите yuzu или переустановите прошивку. - One or more firmware files failed to copy into NAND. - Один или несколько файлов прошивки не удалось скопировать в NAND. + Один или несколько файлов прошивки не удалось скопировать в NAND. - Firmware integrity verification failed! - Сбой проверки целостности прошивки! + Сбой проверки целостности прошивки! - Select Dumped Keys Location - Выберите местоположение сохранения ключей. + Выберите местоположение сохранения ключей. - - - Decryption Keys install failed - Ошибка установки ключей дешифровки + Ошибка установки ключей дешифровки - prod.keys is a required decryption key file. - prod.keys - это обязательный файл ключа для дешифровки. + prod.keys - это обязательный файл ключа для дешифровки. - One or more keys failed to copy. - Один или несколько ключей не удалось скопировать. + Один или несколько ключей не удалось скопировать. - Decryption Keys install succeeded - Установка ключей дешифровки прошла успешно. + Установка ключей дешифровки прошла успешно. - Decryption Keys were successfully installed - Установка ключей для дешифровки прошла успешно. + Установка ключей для дешифровки прошла успешно. - Decryption Keys failed to initialize. Check that your dumping tools are up to date and re-dump keys. - Ошибка инициализации ключей дешифровки. Проверьте, что ваши инструменты для дампа обновлены и повторно выполните дамп ключей. + Ошибка инициализации ключей дешифровки. Проверьте, что ваши инструменты для дампа обновлены и повторно выполните дамп ключей. - - - - - - - + + + + + + No firmware available Нет доступной прошивки - Please install the firmware to use the Album applet. - Пожалуйста, установите прошивку, чтобы использовать приложение Альбом. + Пожалуйста, установите прошивку, чтобы использовать приложение Альбом. - + Album Applet Апплет Альбом - + Album applet is not available. Please reinstall firmware. Апплет Альбом недоступен. Пожалуйста, переустановите прошивку. - Please install the firmware to use the Cabinet applet. - Пожалуйста, установите прошивку, чтобы использовать приложение Кабинет. + Пожалуйста, установите прошивку, чтобы использовать приложение Кабинет. - + Cabinet Applet Кабинет - + Cabinet applet is not available. Please reinstall firmware. Приложение Кабинет недоступно. Пожалуйста, переустановите прошивку. - Please install the firmware to use the Mii editor. - Пожалуйста, установите прошивку, чтобы использовать редактор Mii. + Пожалуйста, установите прошивку, чтобы использовать редактор Mii. - + Mii Edit Applet Mii Edit Applet - + Mii editor is not available. Please reinstall firmware. Mii редактор недоступен. Пожалуйста, переустановите прошивку. - Please install the firmware to use the Controller Menu. - Пожалуйста, установите прошивку, чтобы использовать меню контроллера. + Пожалуйста, установите прошивку, чтобы использовать меню контроллера. - + Controller Applet Апплет контроллера - + Controller Menu is not available. Please reinstall firmware. Меню контроллера недоступно. Пожалуйста, переустановите прошивку. - - Please install the firmware to use the Home Menu. - - - - - + Home Menu Applet - - + Home Menu is not available. Please reinstall firmware. - - Please install the firmware to use Starter. - - - - + Starter Applet - + Starter is not available. Please reinstall firmware. - - Please install firmware to use the home menu. - - - - + Capture Screenshot Сделать скриншот - + PNG Image (*.png) Изображение PNG (*.png) - + Update Available - + Update %1 for Eden is available. Would you like to download it? - + TAS state: Running %1/%2 Состояние TAS: Выполняется %1/%2 - + TAS state: Recording %1 Состояние TAS: Записывается %1 - + TAS state: Idle %1/%2 Состояние TAS: Простой %1/%2 - + TAS State: Invalid Состояние TAS: Неверное - + &Stop Running [&S] Остановка - + &Start [&S] Начать - + Stop R&ecording [&E] Закончить запись - + R&ecord [&E] Запись - + Building: %n shader(s) Постройка: %n шейдер Постройка: %n шейдер(ов) - Постройка: %n шейдер(ов) - + Scale: %1x %1 is the resolution scaling factor Масштаб: %1x - + Speed: %1% / %2% Скорость: %1% / %2% - + Speed: %1% Скорость: %1% @@ -6784,44 +6965,44 @@ Would you like to download it? Игра: %1 FPS (Неограниченно) - + Game: %1 FPS Игра: %1 FPS - + Frame: %1 ms Кадр: %1 мс - + %1 %2 %1 %2 - - + + FSR FSR - + NO AA БЕЗ СГЛАЖИВАНИЯ - + VOLUME: MUTE ГРОМКОСТЬ: ЗАГЛУШЕНА - + VOLUME: %1% Volume percentage (e.g. 50%) ГРОМКОСТЬ: %1% - + Derivation Components Missing Компоненты расчета отсутствуют @@ -6830,12 +7011,12 @@ Would you like to download it? Ключи шифрования отсутствуют. <br>Пожалуйста, следуйте <a href='https://yuzu-emu.org/help/quickstart/'>краткому руководству пользователя yuzu</a>, чтобы получить все ваши ключи, прошивку и игры. - + Select RomFS Dump Target Выберите цель для дампа RomFS - + Please select which RomFS you would like to dump. Пожалуйста, выберите, какой RomFS вы хотите сдампить. @@ -6848,7 +7029,7 @@ Would you like to download it? yuzu - + Are you sure you want to stop the emulation? Any unsaved progress will be lost. Вы уверены, что хотите остановить эмуляцию? Любой несохраненный прогресс будет потерян. @@ -6861,102 +7042,102 @@ Would you like to bypass this and exit anyway? Хотите ли вы обойти это и выйти в любом случае? - + None Никакой - + FXAA FXAA - + SMAA SMAA - + Nearest Ближайший - + Bilinear Билинейный - + Bicubic Бикубический - + Gaussian Гаусс - + ScaleForce ScaleForce - + Area - + Docked В док-станции - + Handheld Портативный - + Normal Нормальная - + High Высокая - + Extreme Экстрим - + Vulkan Vulkan - + OpenGL OpenGL - + Null Null - + GLSL GLSL - + GLASM GLASM - + SPIRV SPIRV @@ -6964,13 +7145,13 @@ Would you like to bypass this and exit anyway? GRenderWindow - - + + OpenGL not available! OpenGL не доступен! - + OpenGL shared contexts are not supported. Общие контексты OpenGL не поддерживаются. @@ -6979,33 +7160,33 @@ Would you like to bypass this and exit anyway? yuzu не был скомпилирован с поддержкой OpenGL. - - eden has not been compiled with OpenGL support. + + Eden has not been compiled with OpenGL support. - - + + Error while initializing OpenGL! Ошибка при инициализации OpenGL! - + Your GPU may not support OpenGL, or you do not have the latest graphics driver. Ваш ГП может не поддерживать OpenGL, или у вас установлен устаревший графический драйвер. - + Error while initializing OpenGL 4.6! Ошибка при инициализации OpenGL 4.6! - + Your GPU may not support OpenGL 4.6, or you do not have the latest graphics driver.<br><br>GL Renderer:<br>%1 Ваш ГП может не поддерживать OpenGL 4.6, или у вас установлен устаревший графический драйвер.<br><br>Рендерер GL:<br>%1 - + Your GPU may not support one or more required OpenGL extensions. Please ensure you have the latest graphics driver.<br><br>GL Renderer:<br>%1<br><br>Unsupported extensions:<br>%2 Ваш ГП может не поддерживать одно или несколько требуемых расширений OpenGL. Пожалуйста, убедитесь в том, что у вас установлен последний графический драйвер.<br><br>Рендерер GL:<br>%1<br><br>Неподдерживаемые расширения:<br>%2 @@ -7013,128 +7194,128 @@ Would you like to bypass this and exit anyway? GameList - + Favorite Избранное - + Start Game Запустить игру - + Start Game without Custom Configuration Запустить игру без пользовательской настройки - + Open Save Data Location Открыть папку для сохранений - + Open Mod Data Location Открыть папку для модов - + Open Transferable Pipeline Cache Открыть переносной кэш конвейера - + Remove Удалить - + Remove Installed Update Удалить установленное обновление - + Remove All Installed DLC Удалить все установленные DLC - + Remove Custom Configuration Удалить пользовательскую настройку - + Remove Play Time Data Удалить данные о времени игры - + Remove Cache Storage Удалить кэш-хранилище? - + Remove OpenGL Pipeline Cache Удалить кэш конвейера OpenGL - + Remove Vulkan Pipeline Cache Удалить кэш конвейера Vulkan - + Remove All Pipeline Caches Удалить весь кэш конвейеров - + Remove All Installed Contents Удалить все установленное содержимое - + Dump RomFS Дамп RomFS - + Dump RomFS to SDMC Сдампить RomFS в SDMC - + Verify Integrity Проверить целостность - + Copy Title ID to Clipboard Скопировать ID приложения в буфер обмена - + Navigate to GameDB entry Перейти к странице GameDB - + Create Shortcut Создать ярлык - + Add to Desktop Добавить на Рабочий стол - + Add to Applications Menu Добавить в меню приложений - + Configure Game @@ -7143,62 +7324,62 @@ Would you like to bypass this and exit anyway? Свойства - + Scan Subfolders Сканировать подпапки - + Remove Game Directory Удалить папку с играми - + ▲ Move Up ▲ Переместить вверх - + ▼ Move Down ▼ Переместить вниз - + Open Directory Location Открыть расположение папки - + Clear Очистить - + Name Имя - + Compatibility Совместимость - + Add-ons Дополнения - + File type Тип файла - + Size Размер - + Play time Время игры @@ -7206,62 +7387,62 @@ Would you like to bypass this and exit anyway? GameListItemCompat - + Ingame Запускается - + Game starts, but crashes or major glitches prevent it from being completed. Игра запускается, но вылеты или серьезные баги не позволяют ее завершить. - + Perfect Идеально - + Game can be played without issues. В игру можно играть без проблем. - + Playable Играбельно - + Game functions with minor graphical or audio glitches and is playable from start to finish. Игра работает с незначительными графическими и/или звуковыми ошибками и проходима от начала до конца. - + Intro/Menu Вступление/Меню - + Game loads, but is 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. Игру ещё не проверяли на совместимость. @@ -7269,7 +7450,7 @@ Would you like to bypass this and exit anyway? GameListPlaceholder - + Double-click to add a new folder to the game list Нажмите дважды, чтобы добавить новую папку в список игр @@ -7277,21 +7458,20 @@ Would you like to bypass this and exit anyway? GameListSearchField - + %1 of %n result(s) %1 из %n результат(ов) %1 из %n результат(ов) - %1 из %n результат(ов) - + Filter: Поиск: - + Enter pattern to filter Введите текст для поиска @@ -7373,7 +7553,7 @@ Would you like to bypass this and exit anyway? - Failed to announce the room to the public lobby. In order to host a room publicly, you must have a valid eden account configured in Emulation -> Configure -> Web. If you do not want to publish a room in the public lobby, then select Unlisted instead. + Failed to announce the room to the public lobby. In order to host a room publicly, you must have a valid Eden 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: @@ -7387,91 +7567,91 @@ Debug Message: Hotkeys - + Audio Mute/Unmute Включение/отключение звука - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Main Window Основное окно - + Audio Volume Down Уменьшить громкость звука - + Audio Volume Up Повысить громкость звука - + Capture Screenshot Сделать скриншот - + Change Adapting Filter Изменить адаптирующий фильтр - + Change Docked Mode Изменить режим консоли - + Change GPU Accuracy Изменить точность ГП - + Configure Настроить - + Configure Current Game - + Continue/Pause Emulation Продолжение/Пауза эмуляции - + Exit Fullscreen Выйти из полноэкранного режима @@ -7480,97 +7660,97 @@ Debug Message: Выйти из yuzu - - Exit eden + + Exit Eden - + Fullscreen Полный экран - + Load File Загрузить файл - + Load/Remove Amiibo Загрузить/удалить Amiibo - + Multiplayer Browse Public Game Lobby Мультиплеер - просмотр общего игрового лобби - + Multiplayer Create Room Мультиплеер - создать лобби - + Multiplayer Direct Connect to Room Мультилеер - прямое подключение к комнате - + Multiplayer Leave Room Мультиплеер - покинуть лобби - + Multiplayer Show Current Room Мультиплеер - показать текущую комнату - + Restart Emulation Перезапустить эмуляцию - + Stop Emulation Остановить эмуляцию - + TAS Record Запись TAS - + TAS Reset Сброс TAS - + TAS Start/Stop Старт/Стоп TAS - + Toggle Filter Bar Переключить панель поиска - + Toggle Framerate Limit Переключить ограничение частоты кадров - + Toggle Mouse Panning Переключить панорамирование мыши - + Toggle Renderdoc Capture Переключить захват Renderdoc - + Toggle Status Bar Переключить панель состояния @@ -7578,22 +7758,22 @@ Debug Message: InstallDialog - + Please confirm these are the files you wish to install. Пожалуйста, убедитесь что это те файлы, что вы хотите установить. - + Installing an Update or DLC will overwrite the previously installed one. Установка обновления или DLC перезапишет ранее установленное. - + Install Установить - + Install Files to NAND Установить файлы в NAND @@ -7601,7 +7781,7 @@ Debug Message: LimitableInputDialog - + The text can't contain any of the following characters: %1 В тексте недопустимы следующие символы: @@ -7748,152 +7928,207 @@ Debug Message: [&R] Недавние файлы - + + Open &Eden Folders + + + + &Emulation [&E] Эмуляция - + &View [&V] Вид - + &Reset Window Size [&R] Сбросить размер окна - + &Debugging [&D] Отладка - + Reset Window Size to &720p Сбросить размер окна до &720p - + Reset Window Size to 720p Сбросить размер окна до 720p - + Reset Window Size to &900p Сбросить размер окна до &900p - + Reset Window Size to 900p Сбросить размер окна до 900p - + Reset Window Size to &1080p Сбросить размер окна до &1080p - + Reset Window Size to 1080p Сбросить размер окна до 1080p - + &Multiplayer [&M] Мультиплеер - + &Tools [&T] Инструменты - + &Amiibo &Amiibo - + &TAS [&T] TAS - + &Create Home Menu Shortcut - + &Help [&H] Помощь - + &Install Files to NAND... [&I] Установить файлы в NAND... - + L&oad File... [&O] Загрузить файл... - + Load &Folder... [&F] Загрузить папку... - + E&xit [&X] Выход - + &Pause [&P] Пауза - + &Stop [&S] Стоп - + &Verify Installed Contents &Проверить установленное содержимое - - &About eden + + &Root Data Folder - - Open &eden Folder + + &NAND Folder - + + &SDMC Folder + + + + + &Mod Folder + + + + + &Log Folder + + + + + From Folder + + + + + From ZIP + + + + + &X + + + + + X (Twitter) + + + + + &Revolt + + + + + Revolt + + + + + &Eden Dependencies + + + + Open Home Menu - + &Discord - + Open &Setup - + &Desktop - + &Application Menu @@ -7902,97 +8137,97 @@ Debug Message: [&A] О yuzu - + Single &Window Mode [&W] Режим одного окна - + Con&figure... [&F] Параметры... - + Ctrl+, - + Display D&ock Widget Headers [&O] Отображать заголовки виджетов дока - + Show &Filter Bar [&F] Показать панель поиска - + Show &Status Bar [&S] Показать панель статуса - + Show Status Bar Показать панель статуса - + &Browse Public Game Lobby [&B] Просмотреть публичные игровые лобби - + &Create Room [&C] Создать комнату - + &Leave Room [&L] Покинуть комнату - + &Direct Connect to Room [&D] Прямое подключение к комнате - + &Show Current Room [&S] Показать текущую комнату - + F&ullscreen [&U] Полноэкранный - + &Restart [&R] Перезапустить - + Load/Remove &Amiibo... [&A] Загрузить/Удалить Amiibo... - + &Report Compatibility [&R] Сообщить о совместимости - + Open &Mods Page [&M] Открыть страницу модов - + Open &Quickstart Guide [&Q] Открыть руководство пользователя - + &FAQ [&F] ЧАВО @@ -8001,77 +8236,82 @@ Debug Message: [&Y] Открыть папку yuzu - + &Capture Screenshot [&C] Сделать скриншот - + Open &Album Открыть &Album - + &Set Nickname and Owner &Установить никнейм и владельца - + &Delete Game Data &Удалить данные игры - + &Restore Amiibo &Восстановить Amiibo - + &Format Amiibo &Форматировать Amiibo - + Open &Mii Editor Открыть &Mii Editor - + &Configure TAS... [&C] Настройка TAS... - + Configure C&urrent Game... [&U] Настроить текущую игру... - + &Start [&S] Запустить - + &Reset [&S] Сбросить - + R&ecord [&E] Запись - + Open &Controller Menu Открыть &меню контроллера - + Install Firmware Установить прошивку - + + &About Eden + + + + Install Decryption Keys Установите ключи дешифровки @@ -8079,26 +8319,36 @@ Debug Message: MicroProfileDialog - &MicroProfile - [&M] MicroProfile + [&M] MicroProfile MigrationWorker - + Data was migrated successfully. - + Linking the old directory failed. You may need to re-run with administrative privileges on Windows. OS gave error: %1 - + + + +Note that your configuration and data will be shared with %1. +If this is not desirable, delete the following files: +%2 +%3 +%4 + + + + If you wish to clean up the files which were left in the old data location, you can do so by deleting the following directory: @@ -8158,37 +8408,37 @@ If you wish to clean up the files which were left in the old data location, you MultiplayerState - + Current connection status Текущий статус подключения - + Not Connected. Click here to find a room! Не подключено. Нажмите здесь, чтобы найти комнату! - + Not Connected Не подключено - + Connected Подключено - + New Messages Received Получены новые сообщения - + Error Ошибка - + Failed to update the room information. Please check your Internet connection and try hosting the room again. Debug Message: Не удалось обновить информацию о комнате. Пожалуйста, проверьте подключение к Интернету и попробуйте снова захостить комнату. @@ -8380,56 +8630,56 @@ p, li { white-space: pre-wrap; } Не играет в игру - + Installed SD Titles Установленные SD игры - + Installed NAND Titles Установленные NAND игры - + System Titles Системные игры - + Add New Game Directory Добавить новую папку с играми - + Favorites Избранные - - + + Shift Shift - - + + Ctrl Ctrl - - + + Alt Alt - - - - + + + + [not set] [не задано] @@ -8440,14 +8690,14 @@ p, li { white-space: pre-wrap; } Крестовина %1 %2 - - - - - - - - + + + + + + + + Axis %1%2 Ось %1%2 @@ -8458,357 +8708,357 @@ p, li { white-space: pre-wrap; } Кнопка %1 - - - - - - + + + + + + [unknown] [неизвестно] - - - + + + Left Влево - - - + + + Right Вправо - - - + + + Down Вниз - - - + + + Up Вверх - - + + Z Z - - + + R R - - + + L L - - + + A A - - + + B B - - + + X X - - + + Y Y - - + + Start Start - - + + L1 L1 - - + + L2 L2 - - + + L3 L3 - - + + R1 R1 - - + + R2 R2 - - + + R3 R3 - - + + Circle Круг - - + + Cross Крестик - - + + Square Квадрат - - + + Triangle Треугольник - - + + Share Share - - + + Options Options - - + + [undefined] [не определено] - + %1%2 %1%2 - - + + [invalid] [недопустимо] - - + + %1%2Hat %3 %1%2Крест. %3 - - - + + + %1%2Axis %3 %1%2Ось %3 - - + + %1%2Axis %3,%4,%5 %1%2Ось %3,%4,%5 - - + + %1%2Motion %3 %1%2Движение %3 - - + + %1%2Button %3 %1%2Кнопка %3 - - + + [unused] [не используется] - + ZR ZR - + ZL ZL - + SR SR - + SL SL - + Stick L Левый стик - + Stick R Правый стик - + Plus Плюс - + Minus Минус - - + + Home Home - + Capture Захват - + Touch Сенсор - + Wheel Indicates the mouse wheel Колёсико - + Backward Назад - + Forward Вперёд - + Task Задача - + Extra Дополнительная - + %1%2%3%4 %1%2%3%4 - - + + %1%2%3Hat %4 %1%2%3Крест. %4 - - + + %1%2%3Axis %4 %1%2%3Ось %4 - - + + %1%2%3Button %4 %1%2%3Кнопка %4 - - + + Migration - + - - + + No - + You can manually re-trigger this prompt by deleting the new config directory: %1 - + Migrating - + Migrating, this may take a while... @@ -8926,6 +9176,300 @@ p, li { white-space: pre-wrap; } Хотите ли вы восстановить эту amiibo? + + QtCommon::Content + + + Installing Firmware... + Установка прошивки... + + + + + + Cancel + Отмена + + + + Firmware integrity verification failed! + Сбой проверки целостности прошивки! + + + + + Verification failed for the following files: + +%1 + Проверка не удалась для следующих файлов: + +%1 + + + + + Verifying integrity... + Проверка целостности... + + + + + Integrity verification succeeded! + Проверка целостности прошла успешно! + + + + + The operation completed successfully. + + + + + + Integrity verification failed! + Проверка целостности не удалась! + + + + File contents may be corrupt or missing. + + + + + Integrity verification couldn't be performed + + + + + Firmware installation cancelled, firmware may be in a bad state or corrupted. File contents could not be checked for validity. + + + + + Select Dumped Keys Location + Выберите местоположение сохранения ключей. + + + + Decryption Keys install succeeded + Установка ключей дешифровки прошла успешно. + + + + Decryption Keys were successfully installed + Установка ключей для дешифровки прошла успешно. + + + + Decryption Keys install failed + Ошибка установки ключей дешифровки + + + + QtCommon::Game + + + Error Removing Contents + Ошибка при удалении содержимого + + + + Error Removing Update + Ошибка при удалении обновлений + + + + Error Removing DLC + Ошибка при удалении DLC + + + + The base game is not installed in the NAND and cannot be removed. + Игра не установлена в NAND и не может быть удалена. + + + + There is no update installed for this title. + Для этой игры не было установлено обновление. + + + + There are no DLCs installed for this title. + + + + + + + + Successfully Removed + Успешно удалено + + + + Successfully removed %1 installed DLC. + Установленное DLC %1 было успешно удалено + + + + + Error Removing Transferable Shader Cache + Ошибка при удалении переносного кэша шейдеров + + + + + A shader cache for this title does not exist. + Кэш шейдеров для этой игры не существует. + + + + Successfully removed the transferable shader cache. + Переносной кэш шейдеров успешно удалён. + + + + Failed to remove the transferable shader cache. + Не удалось удалить переносной кэш шейдеров. + + + + Error Removing Vulkan Driver Pipeline Cache + Ошибка при удалении конвейерного кэша Vulkan + + + + Failed to remove the driver pipeline cache. + Не удалось удалить конвейерный кэш шейдеров. + + + + + Error Removing Transferable Shader Caches + Ошибка при удалении переносного кэша шейдеров + + + + Successfully removed the transferable shader caches. + Переносной кэш шейдеров успешно удален. + + + + Failed to remove the transferable shader cache directory. + Ошибка при удалении папки переносного кэша шейдеров. + + + + + Error Removing Custom Configuration + Ошибка при удалении пользовательской настройки + + + + A custom configuration for this title does not exist. + Пользовательская настройка для этой игры не существует. + + + + Successfully removed the custom game configuration. + Пользовательская настройка игры успешно удалена. + + + + Failed to remove the custom game configuration. + Не удалось удалить пользовательскую настройку игры. + + + + Reset Metadata Cache + Сбросить кэш метаданных + + + + The metadata cache is already empty. + Кэш метаданных уже пустой. + + + + The operation completed successfully. + + + + + The metadata cache couldn't be deleted. It might be in use or non-existent. + Кэш метаданных не может быть удален. Возможно, он используется или отсутствует. + + + + Create Shortcut + Создать ярлык + + + + Do you want to launch the game in fullscreen? + Вы хотите запустить игру в полноэкранном режиме? + + + + Shortcut Created + + + + + Successfully created a shortcut to %1 + Успешно создан ярлык в %1 + + + + Shortcut may be Volatile! + + + + + This will create a shortcut to the current AppImage. This may not work well if you update. Continue? + Это создаст ярлык для текущего AppImage. Он может не работать после обновлений. Продолжить? + + + + Failed to Create Shortcut + + + + + Failed to create a shortcut to %1 + Не удалось создать ярлык для %1 + + + + Create Icon + Создать иконку + + + + Cannot create icon file. Path "%1" does not exist and cannot be created. + Невозможно создать файл иконки. Путь "%1" не существует и не может быть создан. + + + + No firmware available + Нет доступной прошивки + + + + Please install firmware to use the home menu. + + + + + Home Menu Applet + + + + + Home Menu is not available. Please reinstall firmware. + + + QtControllerSelectorDialog @@ -9221,7 +9765,7 @@ Please try again or contact the developer of the software. QtProfileSelectionDialog - + %1 %2 %1 is the profile username, %2 is the formatted UUID (e.g. 00112233-4455-6677-8899-AABBCCDDEEFF)) @@ -9229,7 +9773,7 @@ Please try again or contact the developer of the software. %2 - + Users Пользователи @@ -9353,7 +9897,7 @@ p, li { white-space: pre-wrap; } WaitTreeCallstack - + Call stack Стэк вызовов @@ -9361,12 +9905,12 @@ p, li { white-space: pre-wrap; } WaitTreeSynchronizationObject - + [%1] %2 [%1] %2 - + waited by no thread не ожидается ни одним потоком @@ -9374,102 +9918,102 @@ p, li { white-space: pre-wrap; } WaitTreeThread - + runnable runnable - + paused paused - + sleeping sleeping - + waiting for IPC reply ожидание ответа IPC - + waiting for objects ожидание объектов - + waiting for condition variable waiting for condition variable - + waiting for address arbiter waiting for address arbiter - + waiting for suspend resume waiting for suspend resume - + waiting waiting - + initialized initialized - + terminated terminated - + unknown неизвестно - + PC = 0x%1 LR = 0x%2 PC = 0x%1 LR = 0x%2 - + ideal ideal - + core %1 ядро %1 - + processor = %1 процессор = %1 - + affinity mask = %1 маска сходства = %1 - + thread id = %1 идентификатор потока = %1 - + priority = %1(current) / %2(normal) приоритет = %1(текущий) / %2(обычный) - + last running ticks = %1 last running ticks = %1 @@ -9477,7 +10021,7 @@ p, li { white-space: pre-wrap; } WaitTreeThreadList - + waited by thread ожидается потоком @@ -9485,7 +10029,7 @@ p, li { white-space: pre-wrap; } WaitTreeWidget - + &Wait Tree [&W] Дерево ожидания diff --git a/dist/languages/sv.ts b/dist/languages/sv.ts index c09132e468..2260c87cec 100644 --- a/dist/languages/sv.ts +++ b/dist/languages/sv.ts @@ -13,12 +13,12 @@ - About eden + About Eden - <html><head/><body><p><span style=" font-size:28pt;">eden</span></p></body></html> + <html><head/><body><p><span style=" font-size:28pt;">Eden</span></p></body></html> @@ -34,8 +34,8 @@ p, li { white-space: pre-wrap; } hr { height: 1px; border-width: 0; } li.unchecked::marker { content: "\2610"; } li.checked::marker { content: "\2612"; } -</style></head><body style=" font-family:'Adwaita Sans'; font-size:11pt; font-weight:400; font-style:normal;"> -<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;">eden is an experimental open-source emulator for the Nintendo Switch licensed under GPLv3.0+ which is based on the yuzu emulator which ended development back in March 2024. <br /><br />This software should not be used to play games you have not legally obtained.</span></p></body></html> +</style></head><body style=" font-family:'Noto Sans'; font-size:9pt; font-weight:400; font-style:normal;"> +<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;">Eden is an experimental open-source emulator for the Nintendo Switch licensed under GPLv3.0+ which is based on the yuzu emulator which ended development back in March 2024. <br /><br />This software should not be used to play games you have not legally obtained.</span></p></body></html> @@ -72,32 +72,32 @@ p, li { white-space: pre-wrap; } CalibrationConfigurationDialog - + Communicating with the server... Kommunicerar med servern... - + Cancel Avbryt - + Touch the top left corner <br>of your touchpad. Tryck på det övre vänstra hörnet <br>på pekplattan. - + Now touch the bottom right corner <br>of your touchpad. Tryck nu på det nedre högra hörnet <br> på pekplattan - + Configuration completed! Konfiguration slutförd! - + OK OK @@ -397,281 +397,413 @@ Detta kommer bannlysa både dennes användarnamn på forum samt IP-adress. ConfigurationShared - + % % - - Amiibo editor - - - - - Controller configuration - - - - - Data erase - - - - + Error Fel - - Net connect - - - - - Player select - - - - - Software keyboard - - - - - Mii Edit - - - - - Online web - - - - - Shop - - - - - Photo viewer - - - - - Offline web - - - - - Login share - - - - - Wifi web auth - - - - - My page - - - - + Output Engine: Utgångsmotor: - - Output Device: - - - - - Input Device: - - - - - Mute audio - - - - + Volume: Volym: - - Mute audio when in background - - - - + Multicore CPU Emulation Flerkärnig CPU-emulering - + + Limit Speed Percent + Begränsa hastighetsprocent + + + + Accuracy: + Noggrannhet: + + + + Unfuse FMA (improve performance on CPUs without FMA) + Sära FMA (förbättra prestanda på CPU:er utan FMA) + + + + Faster FRSQRTE and FRECPE + Snabbare FRSQRTE och FRECPE + + + + Faster ASIMD instructions (32 bits only) + Snabbare ASIMD instruktioner (enbart 32-bitars) + + + + API: + API: + + + + Device: + Enhet: + + + + Aspect Ratio: + Bildförhållande: + + + + Use asynchronous GPU emulation + Använd asynkron GPU-emulering + + + + Anisotropic Filtering: + Anisotropisk filtrering: + + + Accuracy Level: + Noggranhetsnivå: + + + + RNG Seed + RNG Seed + + + + Note: this can be overridden when region setting is auto-select + Notera: detta kan bli överskritt medans regionsinställningarna är satta till auto-select + + + + Region: + Region: + + + + Time Zone: + Tidszon: + + + + Prompt for user on game boot + Fråga efter användare vid spelstart + + + + Pause emulation when in background + Pausa emulationen när fönstret är i bakgrunden + + + + Hide mouse on inactivity + Göm mus när inaktiv + + + + CPU + CPU + + + + Auto + Auto + + + + Accurate + Noggrann + + + + Unsafe + Osäker + + + + Paranoid (disables most optimizations) + Paranoid (stänger av de flesta optimeringar) + + + + None + Ingen + + + + Default (16:9) + Standard (16:9) + + + + Force 4:3 + Tvinga 4:3 + + + + Force 21:9 + Tvinga 21:9 + + + + Stretch to Window + Tänj över fönster + + + + + Default + Standard + + + + Amiibo editor + + + + + Controller configuration + + + + + Data erase + + + + + Net connect + + + + + Player select + + + + + Software keyboard + + + + + Mii Edit + + + + + Online web + + + + + Shop + + + + + Photo viewer + + + + + Offline web + + + + + Login share + + + + + Wifi web auth + + + + + My page + + + + + Output Device: + + + + + Input Device: + + + + + Mute audio + + + + + Mute audio when in background + + + + This option increases CPU emulation thread use from 1 to the Switch’s maximum of 4. This is mainly a debug option and shouldn’t be disabled. - + Memory Layout - + Increases the amount of emulated RAM from the stock 4GB of the retail Switch to the developer kit's 8/6GB. It’s doesn’t improve stability or performance and is intended to let big texture mods fit in emulated RAM. Enabling it will increase memory use. It is not recommended to enable unless a specific game with a texture mod needs it. - - Limit Speed Percent - Begränsa hastighetsprocent - - - + Controls the game's maximum rendering speed, but it’s up to each game if it runs faster or not. 200% for a 30 FPS game is 60 FPS, and for a 60 FPS game it will be 120 FPS. Disabling it means unlocking the framerate to the maximum your PC can reach. - + Synchronize Core Speed - + Synchronizes CPU core speed with the game's maximum rendering speed to boost FPS without affecting game speed (animations, physics, etc.). Compatibility varies by game; many (especially older ones) may not respond well. Can help reduce stuttering at lower framerates. - - Accuracy: - Noggrannhet: - - - + This setting controls the accuracy of the emulated CPU. Don't change this unless you know what you are doing. - - + + Backend: - + Fast CPU Time - + Overclocks the emulated CPU to remove some FPS limiters. Weaker CPUs may see reduced performance, and certain games may behave improperly. Use Boost (1700MHz) to run at the Switch's highest native clock, or Fast (2000MHz) to run at 2x clock. - - Unfuse FMA (improve performance on CPUs without FMA) - Sära FMA (förbättra prestanda på CPU:er utan FMA) + + Custom CPU Ticks + - + + Set a custom value of CPU ticks. Higher values can increase performance, but may also cause the game to freeze. A range of 77–21000 is recommended. + + + + + Enable Host MMU Emulation (fastmem) + + + + + This optimization speeds up memory accesses by the guest program. +Enabling it causes guest memory reads/writes to be done directly into memory and make use of Host's MMU. +Disabling this forces all memory accesses to use Software MMU Emulation. + + + + This option improves speed by reducing accuracy of fused-multiply-add instructions on CPUs without native FMA support. - - Faster FRSQRTE and FRECPE - Snabbare FRSQRTE och FRECPE - - - + This option improves the speed of some approximate floating-point functions by using less accurate native approximations. - - Faster ASIMD instructions (32 bits only) - Snabbare ASIMD instruktioner (enbart 32-bitars) - - - + This option improves the speed of 32 bits ASIMD floating-point functions by running with incorrect rounding modes. - + Inaccurate NaN handling - + This option improves speed by removing NaN checking. Please note this also reduces accuracy of certain floating-point instructions. - + Disable address space checks - + This option improves speed by eliminating a safety check before every memory read/write in guest. Disabling it may allow a game to read/write the emulator's memory. - + Ignore global monitor - + This option improves speed by relying only on the semantics of cmpxchg to ensure safety of exclusive access instructions. Please note this may result in deadlocks and other race conditions. - - API: - API: - - - + Switches between the available graphics APIs. Vulkan is recommended in most cases. - - Device: - Enhet: - - - + This setting selects the GPU to use with the Vulkan backend. - + Shader Backend: - + The shader backend to use for the OpenGL renderer. GLSL is the fastest in performance and the best in rendering accuracy. GLASM is a deprecated NVIDIA-only backend that offers much better shader building performance at the cost of FPS and rendering accuracy. @@ -679,86 +811,81 @@ SPIR-V compiles the fastest, but yields poor results on most GPU drivers. - + Resolution: - + Forces the game to render at a different resolution. Higher resolutions require much more VRAM and bandwidth. Options lower than 1X can cause rendering issues. - + Window Adapting Filter: - + FSR Sharpness: - + Determines how sharpened the image will look while using FSR’s dynamic contrast. - + Anti-Aliasing Method: - + The anti-aliasing method to use. SMAA offers the best quality. FXAA has a lower performance impact and can produce a better and more stable picture under very low resolutions. - + Fullscreen Mode: - + The method used to render the window in fullscreen. Borderless offers the best compatibility with the on-screen keyboard that some games request for input. Exclusive fullscreen may offer better performance and better Freesync/Gsync support. - - Aspect Ratio: - Bildförhållande: - - - + Stretches the game to fit the specified aspect ratio. Switch games only support 16:9, so custom game mods are required to get other ratios. Also controls the aspect ratio of captured screenshots. - + Use disk pipeline cache - + Allows saving shaders to storage for faster loading on following game boots. Disabling it is only intended for debugging. - + Optimize SPIRV output shader - + Runs an additional optimization pass over generated SPIRV shaders. Will increase time required for shader compilation. May slightly improve performance. @@ -766,35 +893,30 @@ This feature is experimental. - - Use asynchronous GPU emulation - Använd asynkron GPU-emulering - - - + Uses an extra CPU thread for rendering. This option should always remain enabled. - + NVDEC emulation: - + Specifies how videos should be decoded. It can either use the CPU or the GPU for decoding, or perform no decoding at all (black screen on videos). In most cases, GPU decoding provides the best performance. - + ASTC Decoding Method: - + This option controls how ASTC textures should be decoded. CPU: Use the CPU for decoding, slowest but safest method. GPU: Use the GPU's compute shaders to decode ASTC textures, recommended for most games and users. @@ -803,33 +925,44 @@ stuttering at the cost of rendering issues while the texture is being decoded. - + ASTC Recompression Method: - + Almost all desktop and laptop dedicated GPUs lack support for ASTC textures, forcing the emulator to decompress to an intermediate format any card supports, RGBA8. This option recompresses RGBA8 to either the BC1 or BC3 format, saving VRAM but negatively affecting image quality. - + VRAM Usage Mode: - - Selects whether the emulator should prefer to conserve memory or make maximum usage of available video memory for performance. Has no effect on integrated graphics. Aggressive mode may severely impact the performance of other applications such as recording software. + + Selects whether the emulator should prefer to conserve memory or make maximum usage of available video memory for performance. +Aggressive mode may severely impact the performance of other applications such as recording software. - + + Skip CPU Inner Invalidation + + + + + Skips certain CPU-side cache invalidations during memory updates, reducing CPU usage and improving it's performance. This may cause glitches or crashes on some games. + + + + VSync Mode: - + FIFO (VSync) does not drop frames or exhibit tearing but is limited by the screen refresh rate. FIFO Relaxed is similar to FIFO but allows tearing as it recovers from a slow down. Mailbox can have lower latency than FIFO and does not tear but may drop frames. @@ -837,1078 +970,1042 @@ Immediate (no synchronization) just presents whatever is available and can exhib - + + Sync Memory Operations + + + + + Ensures data consistency between compute and memory operations. +This option should fix issues in some games, but may also reduce performance in some cases. +Unreal Engine 4 games often see the most significant changes thereof. + + + + Enable asynchronous presentation (Vulkan only) - + Slightly improves performance by moving presentation to a separate CPU thread. - + Force maximum clocks (Vulkan only) - + Runs work in the background while waiting for graphics commands to keep the GPU from lowering its clock speed. - - Anisotropic Filtering: - Anisotropisk filtrering: - - - + Controls the quality of texture rendering at oblique angles. It’s a light setting and safe to set at 16x on most GPUs. - - Accuracy Level: - Noggranhetsnivå: - - - - GPU emulation accuracy. -Most games render fine with Normal, but High is still required for some. -Particles tend to only render correctly with High accuracy. -Extreme should only be used for debugging. -This option can be changed while playing. -Some games may require booting on high to render properly. + + GPU Accuracy: - + + Controls the GPU emulation accuracy. +Most games render fine with Normal, but High is still required for some. +Particles tend to only render correctly with High accuracy. +Extreme should only be used as a last resort. + + + + + DMA Accuracy: + + + + + Controls the DMA precision accuracy. Safe precision can fix issues in some games, but it can also impact performance in some cases. +If unsure, leave this on Default. + + + + Use asynchronous shader building (Hack) - + Enables asynchronous shader compilation, which may reduce shader stutter. This feature is experimental. - + + Fast GPU Time (Hack) + + + + + Overclocks the emulated GPU to increase dynamic resolution and render distance. +Use 128 for maximal performance and 512 for maximal graphics fidelity. + + + + Use Vulkan pipeline cache - + Enables GPU vendor-specific pipeline cache. This option can improve shader loading time significantly in cases where the Vulkan driver does not store pipeline cache files internally. - + Enable Compute Pipelines (Intel Vulkan Only) - + Enable compute pipelines, required by some games. This setting only exists for Intel proprietary drivers, and may crash if enabled. Compute pipelines are always enabled on all other drivers. - + Enable Reactive Flushing - + Uses reactive flushing instead of predictive flushing, allowing more accurate memory syncing. - + Sync to framerate of video playback - + Run the game at normal speed during video playback, even when the framerate is unlocked. - + Barrier feedback loops - + Improves rendering of transparency effects in specific games. - - RNG Seed - RNG Seed + + RAII + - + + A method of automatic resource management in Vulkan that ensures proper release of resources when they are no longer needed, but may cause crashes in bundled games. + + + + + Extended Dynamic State + + + + + Controls the number of features that can be used in Extended Dynamic State. +Higher numbers allow for more features and can increase performance, but may cause issues with some drivers and vendors. +The default value may vary depending on your system and hardware capabilities. +This value can be changed until stability and a better visual quality are achieved. + + + + + Provoking Vertex + + + + + Improves lighting and vertex handling in certain games. +Only Vulkan 1.0+ devices support this extension. + + + + + Descriptor Indexing + + + + + Improves texture & buffer handling and the Maxwell translation layer. +Some Vulkan 1.1+ and all 1.2+ devices support this extension. + + + + + Sample Shading + + + + + Allows the fragment shader to execute per sample in a multi-sampled fragment instead once per fragment. Improves graphics quality at the cost of some performance. +Higher values improve quality more but also reduce performance to a greater extent. + + + + Controls the seed of the random number generator. Mainly used for speedrunning purposes. - + Device Name - + The name of the emulated Switch. - + Custom RTC Date: - + This option allows to change the emulated clock of the Switch. Can be used to manipulate time in games. - + Language: - - Note: this can be overridden when region setting is auto-select - Notera: detta kan bli överskritt medans regionsinställningarna är satta till auto-select - - - - Region: - Region: - - - + The region of the emulated Switch. - - Time Zone: - Tidszon: - - - + The time zone of the emulated Switch. - + Sound Output Mode: - + Console Mode: - + Selects if the console is emulated in Docked or Handheld mode. Games will change their resolution, details and supported controllers and depending on this setting. Setting to Handheld can help improve performance for low end systems. - - Prompt for user on game boot - Fråga efter användare vid spelstart - - - - Pause emulation when in background - Pausa emulationen när fönstret är i bakgrunden - - - - Fast GPU Time (Hack) + + Ask to select a user profile on each boot, useful if multiple people use Eden on the same PC. - - Overclocks the emulated GPU to increase dynamic resolution and render distance. -Use 128 for maximal performance and 512 for maximal graphics fidelity. + + This setting pauses Eden when focusing other windows. - - Extended Dynamic State - - - - - Enables the VkExtendedDynamicState* extensions. -Higher dynamic states will generally improve performance, but may cause issues on certain games or devices. - - - - - Provoking Vertex - - - - - Improves lighting and vertex handling in certain games. -Only Vulkan 1.0+ devices support this extension. - - - - - Descriptor Indexing - - - - - Improves texture & buffer handling and the Maxwell translation layer. -Some Vulkan 1.1+ and all 1.2+ devices support this extension. - - - - - Ask to select a user profile on each boot, useful if multiple people use eden on the same PC. - - - - - This setting pauses eden when focusing other windows. - - - - + Confirm before stopping emulation - + This setting overrides game prompts asking to confirm stopping the game. Enabling it bypasses such prompts and directly exits the emulation. - - Hide mouse on inactivity - Göm mus när inaktiv - - - + This setting hides the mouse after 2.5s of inactivity. - + Disable controller applet - + Forcibly disables the use of the controller applet by guests. When a guest attempts to open the controller applet, it is immediately closed. - + Check for updates - + Whether or not to check for updates upon startup. - + Enable Gamemode - + Custom frontend - + Real applet - + Never - + On Load - + Always - - CPU - CPU - - - + GPU - + CPU Asynchronous - + Uncompressed (Best quality) - + BC1 (Low quality) - + BC3 (Medium quality) - + Conservative - + Aggressive - + OpenGL - + Vulkan - + Null - + GLSL - + GLASM (Assembly Shaders, NVIDIA Only) - + SPIR-V (Experimental, AMD/Mesa Only) - + Normal - + High - + Extreme - - Auto - Auto + + Unsafe (fast) + - - Accurate - Noggrann + + Safe (stable) + - - Unsafe - Osäker - - - - Paranoid (disables most optimizations) - Paranoid (stänger av de flesta optimeringar) - - - + Dynarmic - + NCE - + Borderless Windowed - + Exclusive Fullscreen - + No Video Output - + CPU Video Decoding - + GPU Video Decoding (Default) - + 0.25X (180p/270p) [EXPERIMENTAL] - + 0.5X (360p/540p) [EXPERIMENTAL] - + 0.75X (540p/810p) [EXPERIMENTAL] - + 1X (720p/1080p) - + 1.5X (1080p/1620p) [EXPERIMENTAL] - + 2X (1440p/2160p) - + 3X (2160p/3240p) - + 4X (2880p/4320p) - + 5X (3600p/5400p) - + 6X (4320p/6480p) - + 7X (5040p/7560p) - + 8X (5760p/8640p) - + Nearest Neighbor - + Bilinear - + Bicubic - + Gaussian - + ScaleForce - + AMD FidelityFX™️ Super Resolution - + Area - - None - Ingen - - - + FXAA - + SMAA - - Default (16:9) - Standard (16:9) - - - - Force 4:3 - Tvinga 4:3 - - - - Force 21:9 - Tvinga 21:9 - - - + Force 16:10 - - Stretch to Window - Tänj över fönster - - - + Automatic - - Default - Standard - - - + 2x 2x - + 4x 4x - + 8x 8x - + 16x 16x - + Japanese (日本語) Japanska (日本語) - + American English - + French (français) Franska (français) - + German (Deutsch) Tyska (Deutsch) - + Italian (italiano) Italienska (italiano) - + Spanish (español) Spanska (español) - + Chinese Kinesiska - + Korean (한국어) Koreanska (한국어) - + Dutch (Nederlands) Holländska (Nederlands) - + Portuguese (português) Portugisiska (português) - + Russian (Русский) Ryska (Русский) - + Taiwanese Taiwanesiska - + British English Brittisk Engelska - + Canadian French Kanadensisk Franska - + Latin American Spanish Latinamerikansk Spanska - + Simplified Chinese Förenklad Kinesiska - + Traditional Chinese (正體中文) Traditionell Kinesiska (正體中文) - + Brazilian Portuguese (português do Brasil) - - + + Serbian (српски) + + + + + Japan Japan - + USA USA - + Europe Europe - + Australia Australien - + China Kina - + Korea Korea - + Taiwan Taiwan - + Auto (%1) Auto select time zone - + Default (%1) Default time zone - + CET CET - + CST6CDT CST6CDT - + Cuba Kuba - + EET EET - + Egypt Egypten - + Eire Eire - + EST EST - + EST5EDT EST5EDT - + GB GB - + GB-Eire GB-Eire - + GMT GMT - + GMT+0 GMT+0 - + GMT-0 GMT-0 - + GMT0 GMT0 - + Greenwich Greenwich - + Hongkong Hongkong - + HST HST - + Iceland Island - + Iran Iran - + Israel Israel - + Jamaica Jamaica - + Kwajalein Kwajalein - + Libya Libyen - + MET MET - + MST MST - + MST7MDT MST7MDT - + Navajo Navajo - + NZ NZ - + NZ-CHAT NZ-CHAT - + Poland Polen - + Portugal Portugal - + PRC PRC - + PST8PDT PST8PDT - + ROC ROC - + ROK ROK - + Singapore Singapore - + Turkey Turkiet - + UCT UCT - + Universal Universal - + UTC UTC - + W-SU W-SU - + WET WET - + Zulu Zulu - + Mono Mono - + Stereo Stereo - + Surround Surround - + 4GB DRAM (Default) - + 6GB DRAM (Unsafe) - + 8GB DRAM - + 10GB DRAM (Unsafe) - + 12GB DRAM (Unsafe) - - Low (128) - - - - - Medium (256) - - - - - High (512) - - - - + Docked Dockad - + Handheld Handheld - + Boost (1700MHz) - + Fast (2000MHz) - + Always ask (Default) - + Only if game specifies not to stop - + Never ask + + + Low (128) + + + + + Medium (256) + + + + + High (512) + + ConfigureApplets @@ -2246,27 +2343,27 @@ avgjord kod.</div> Loggning - + Open Log Location Öppna Logg-Destination - + Global Log Filter Globalt Loggfilter - + When checked, the max size of the log increases from 100 MB to 1 GB När ibockad, ökar maxstorleken för loggen från 100 MB till 1 GB - + Enable Extended Logging** Slå på Utökad Loggning** - + Show Log in Console Visa Logg i Terminal @@ -2412,7 +2509,7 @@ avgjord kod.</div> - **This will be reset automatically when eden closes. + **This will be reset automatically when Eden closes. @@ -2466,7 +2563,7 @@ avgjord kod.</div> - + Web applet not compiled @@ -2516,7 +2613,7 @@ avgjord kod.</div> - eden Configuration + Eden Configuration @@ -2525,88 +2622,88 @@ avgjord kod.</div> - + Applets - - + + Audio Ljud - - + + CPU CPU - + Debug Debug - + Filesystem Filsystem - - + + General Allmänt - - + + Graphics Grafik - + GraphicsAdvanced Avancerade grafikinställningar - + GraphicsExtensions - + Hotkeys Snabbknappar - - + + Controls Kontroller - + Profiles Profiler - + Network Nätverk - - + + System System - + Game List Spellista - + Web Webb @@ -2704,51 +2801,45 @@ avgjord kod.</div> - - - Reset Metadata Cache Återställ metadatasparning - + Select Emulated NAND Directory... Välj emulerad NAND-katalog... - + Select Emulated SD Directory... Välj emulerad SD katalog... - + Select Gamecard Path... Välj Spelkortssökväg... - + Select Dump Directory... Välj dumpsökväg... - + Select Mod Load Directory... Välj modladdningssökväg - The metadata cache is already empty. - Metadata cachen är redan tom. + Metadata cachen är redan tom. - The operation completed successfully. - Operationen slutfördes utan problem + Operationen slutfördes utan problem - The metadata cache couldn't be deleted. It might be in use or non-existent. - Metadata cachen kunde inte tas bort. Den kan vara under användning eller icke-existerande. + Metadata cachen kunde inte tas bort. Den kan vara under användning eller icke-existerande. @@ -2779,12 +2870,12 @@ avgjord kod.</div> yuzu - - eden + + Eden - + This reset all settings and remove all per-game configurations. This will not delete game directories, profiles, or input profiles. Proceed? @@ -2817,33 +2908,33 @@ avgjord kod.</div> Bakgrundsfärg: - + % FSR sharpening percentage (e.g. 50%) % - + Off - + VSync Off - + Recommended - + On - + VSync On @@ -2880,14 +2971,18 @@ avgjord kod.</div> - Vulkan Extension Settings + Vulkan Extensions Settings - - While it's recommended to use state 3, some games may perform better on lower states. Setting to 0 (disabled) may also break games. -If your GPU is older (i.e. RX570/580 or older), it may not support these features. If this is the case, set the slider to 0 and uncheck all boxes. -These settings are experimental, and may cause black screens. If your games fail to boot or are stuck on a black screen, change these settings around. + + % + Sample Shading percentage (e.g. 50%) + % + + + + Extended Dynamic State is disabled on macOS due to MoltenVK compatibility issues that cause black screens. @@ -2919,75 +3014,75 @@ These settings are experimental, and may cause black screens. If your games fail Återställ till standard - + Action Handling - + Hotkey Snabbtangent - + Controller Hotkey - - - + + + Conflicting Key Sequence Motstridig Tangentsekvens - - + + The entered key sequence is already assigned to: %1 Den valda tangentsekvensen är redan tilldelad: %1 - + [waiting] [väntar] - + Invalid - + Invalid hotkey settings - + An error occurred. Please report this issue on github. - + Restore Default Återställ standard - + Clear Rensa - + Conflicting Button Sequence - + The default button sequence is already assigned to: %1 - + The default key sequence is already assigned to: %1 Standardtangentsekvensen är redan tilldelad: %1 @@ -3307,7 +3402,7 @@ These settings are experimental, and may cause black screens. If your games fail - Requires restarting eden + Requires restarting Eden @@ -3458,7 +3553,7 @@ These settings are experimental, and may cause black screens. If your games fail - + Left Stick Vänster Spak @@ -3568,14 +3663,14 @@ These settings are experimental, and may cause black screens. If your games fail - + L L - + ZL ZL @@ -3594,7 +3689,7 @@ These settings are experimental, and may cause black screens. If your games fail - + Plus Pluss @@ -3607,15 +3702,15 @@ These settings are experimental, and may cause black screens. If your games fail - - + + R R - + ZR ZR @@ -3660,7 +3755,7 @@ These settings are experimental, and may cause black screens. If your games fail - + Right Stick Höger Spak @@ -3675,241 +3770,241 @@ These settings are experimental, and may cause black screens. If your games fail Konfigurera - - - - + + + + Clear Rensa - - - - - + + + + + [not set] [ej angett] - - - + + + Invert button - - + + Toggle button - + Turbo button - - + + Invert axis - - - + + + Set threshold - - + + Choose a value between 0% and 100% - + Toggle axis - + Set gyro threshold - + Calibrate sensor - + Map Analog Stick - + After pressing OK, first move your joystick horizontally, and then vertically. To invert the axes, first move your joystick vertically, and then horizontally. - + Center axis - - + + Deadzone: %1% Dödzon: %1% - - + + Modifier Range: %1% Modifieringsräckvidd: %1% - - + + Pro Controller Prokontroller - + Dual Joycons Dubbla Joycons - + Left Joycon Vänster Joycon - + Right Joycon Höger Joycon - + Handheld Handhållen - + GameCube Controller GameCube-kontroll - + Poke Ball Plus Poke Ball Plus - + NES Controller NES-kontroll - + SNES Controller SNES-kontroll - + N64 Controller N64-kontroll - + Sega Genesis Sega Genesis - + Start / Pause - + Z Z - + Control Stick - + C-Stick - + Shake! - + [waiting] [väntar] - + New Profile Ny profil - + Enter a profile name: - - + + Create Input Profile - + The given profile name is not valid! - + Failed to create the input profile "%1" - + Delete Input Profile - + Failed to delete the input profile "%1" - + Load Input Profile - + Failed to load the input profile "%1" - + Save Input Profile - + Failed to save the input profile "%1" @@ -3966,7 +4061,7 @@ To invert the axes, first move your joystick vertically, and then horizontally.< - + Configure Konfigurera @@ -4002,7 +4097,7 @@ To invert the axes, first move your joystick vertically, and then horizontally.< - + Test Test @@ -4021,7 +4116,7 @@ To invert the axes, first move your joystick vertically, and then horizontally.< <a href='https://yuzu-emu.org/wiki/using-a-controller-or-android-phone-for-motion-or-touch-input'><span style="text-decoration: underline; color:#039be5;">Lär dig mer</span></a> - + %1:%2 @@ -4030,77 +4125,77 @@ To invert the axes, first move your joystick vertically, and then horizontally.< yuzu - + <a href='https://eden-emulator.github.io/wiki/using-a-controller-or-android-phone-for-motion-or-touch-input'><span style="text-decoration: underline; color:#039be5;">Learn More</span></a> - + Port number has invalid characters - - - - - - - eden + + + + + + + Eden - + Port has to be in range 0 and 65353 - + IP address is not valid - + This UDP server already exists - + Unable to add more than 8 servers - + Testing Testar - + Configuring Konfigurerar - + Test Successful Test framgångsrikt - + Successfully received data from the server. Tog emot data från servern framgångsrikt - + Test Failed Test misslyckades - + 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. Kunde inte ta emot giltig data från servern.<br>Var vänlig verifiera att servern är korrekt uppsatt och att adressen och porten är korrekta. - + UDP Test or calibration configuration is in progress.<br>Please wait for them to finish. UDP Test eller kalibreringskonfiguration är igång.<br>Var vänlig vänta för dem att slutföras. @@ -4226,7 +4321,12 @@ Current values are %1% and %2% respectively. - + + Enable Airplane Mode + + + + None Ingen @@ -4284,52 +4384,52 @@ Current values are %1% and %2% respectively. - + Add-Ons Tillägg - + System System - + CPU CPU - + Graphics Grafik - + Adv. Graphics Avancerade Grafikinställningar - + GPU Extensions - + Audio Ljud - + Input Profiles - + Linux - + Properties egenskaper @@ -4347,12 +4447,12 @@ Current values are %1% and %2% respectively. Tillägg - + Patch Name Patch namn - + Version Version @@ -4390,27 +4490,32 @@ Current values are %1% and %2% respectively. Välj bild - + + Select Avatar + + + + Add Lägg till - + Rename Döp om - + Remove Ta bort - + Profile management is available only when game is not running. Profilhantering är endast tillgänglig när spelet inte körs. - + %1 %2 %1 is the profile username, %2 is the formatted UUID (e.g. 00112233-4455-6677-8899-AABBCCDDEEFF)) @@ -4418,100 +4523,181 @@ Current values are %1% and %2% respectively. %2 - + Enter Username Skriv in användarnamn - + Users Användare - + Enter a username for the new user: Skriv in användarnamn för den nya användaren: - + Enter a new username: Skriv in ett nytt användarnamn: - + + Error saving user image + + + + + Unable to save image to file + + + + Select User Image Välj Användarbild - - JPEG Images (*.jpg *.jpeg) - JPEG-bilder (*.jpg *.jpeg) + + Image Formats (*.jpg *.jpeg *.png *.bmp) + - + + No firmware available + + + + + Please install the firmware to use firmware avatars. + + + + + + Error loading archive + + + + + Archive is not available. Please install/reinstall firmware. + + + + + Archive does not contain romfs. It is probably corrupt. + + + + + Error extracting archive + + + + + Archive could not be extracted. It is probably corrupt. + + + + + Error finding image directory + + + + + Failed to find image directory in the archive. + + + + + No images found + + + + + No avatar images were found in the archive. + + + + JPEG Images (*.jpg *.jpeg) + JPEG-bilder (*.jpg *.jpeg) + + + Error deleting image Fel när bilden raderades - + Error occurred attempting to overwrite previous image at: %1. Fel uppstod när man försökte överskriva föregående bild vid: %1. - + Error deleting file Fel när fil raderades - + Unable to delete existing file: %1. Kan inte radera existerande fil: %1. - + Error creating user image directory Fel när användarbild skapades - + Unable to create directory %1 for storing user images. Oförmögen att skapa katalog %1 för att spara användarbilder. - Error copying user image - Fel under kopiering av användarbild + Fel under kopiering av användarbild - Unable to copy image from %1 to %2 - Oförmögen att kopiera bild från %1 till %2 + Oförmögen att kopiera bild från %1 till %2 + + + ConfigureProfileManagerAvatarDialog - - Error resizing user image + + Select - - Unable to resize image + + Cancel + Avbryt + + + + Background Color + + + + + Select Firmware Avatar ConfigureProfileManagerDeleteDialog - + Delete this user? All of the user's save data will be deleted. - + Confirm Delete Bekräfta Radering - + Name: %1 UUID: %2 @@ -4563,7 +4749,7 @@ UUID: %2 - + Enable Aktivera @@ -4574,7 +4760,7 @@ UUID: %2 - + Not connected @@ -4584,63 +4770,63 @@ UUID: %2 Återställ till standard - + Clear Rensa - + [not set] [ej angett] - + Invert axis - - + + Deadzone: %1% Dödzon: %1% - + Error enabling ring input - + Direct Joycon driver is not enabled - + Configuring Konfigurerar - + The current mapped device doesn't support the ring controller - + The current mapped device doesn't have a ring attached - + The current mapped device is not connected - + Unexpected driver result %1 - + [waiting] [väntar] @@ -4678,7 +4864,7 @@ UUID: %2 - <html><head/><body><p>Reads controller input from scripts in the same format as TAS-nx scripts.<br/>For a more detailed explanation, please consult the <a href="https://eden-emulator.github.io/help/feature/tas/"><span style=" text-decoration: underline; color:#039be5;">help page</span></a> on the eden website.</p></body></html> + <html><head/><body><p>Reads controller input from scripts in the same format as TAS-nx scripts.<br/>For a more detailed explanation, please consult the <a href="https://eden-emulator.github.io/help/feature/tas/"><span style=" text-decoration: underline; color:#039be5;">help page</span></a> on the Eden website.</p></body></html> @@ -4730,12 +4916,12 @@ UUID: %2 ConfigureTasDialog - + TAS Configuration - + Select TAS Load Directory... @@ -4845,7 +5031,7 @@ Dra punkter för att ändra position, eller dubbelklicka tabellceller för att r - Warning: The settings in this page affect the inner workings of eden's emulated touchscreen. Changing them may result in undesirable behavior, such as the touchscreen partially or not working. You should only use this page if you know what you are doing. + Warning: The settings in this page affect the inner workings of Eden's emulated touchscreen. Changing them may result in undesirable behavior, such as the touchscreen partially or not working. You should only use this page if you know what you are doing. @@ -5165,6 +5351,16 @@ Dra punkter för att ändra position, eller dubbelklicka tabellceller för att r Web Webb + + + Eden Web Service + + + + + Generate + + yuzu Web Service yuzu Webb-Service @@ -5174,42 +5370,29 @@ Dra punkter för att ändra position, eller dubbelklicka tabellceller för att r Genom att ge användarnamn och nyckel så godkänner du att yuzu tar användarstatistik, vilket kan inkludera identifierande användarinformation. - - eden Web Service - - - - - By providing your username and token, you agree to allow eden to collect additional usage data, which may include user identifying information. - - - - Verify - Verifiera + Verifiera - Sign up - Registrera + Registrera - + Token: Pollett: - + Username: Användarnamn: - What is my token? - Vad är min pollett? + Vad är min pollett? - + Web Service configuration can only be changed when a public room isn't being hosted. @@ -5234,12 +5417,12 @@ Dra punkter för att ändra position, eller dubbelklicka tabellceller för att r Regenerera - + Discord Presence Discord Närvaro - + Show Current Game in your Discord Status Visa Nuvarande Spel i din Discord Status @@ -5248,24 +5431,8 @@ Dra punkter för att ändra position, eller dubbelklicka tabellceller för att r <a href='https://yuzu-emu.org/help/feature/telemetry/'><span style="text-decoration: underline; color:#039be5;">Lär dig mer</span></a> - <a href='https://profile.yuzu-emu.org/'><span style="text-decoration: underline; color:#039be5;">Sign up</span></a> - <a href='https://profile.yuzu-emu.org/'><span style="text-decoration: underline; color:#039be5;">Registrera</span></a> - - - - <a href='https://evilperson1337.notion.site/Hosting-a-Room-Inside-of-Eden-20457c2edaf680108abac6215a79acdb'><span style="text-decoration: underline; color:#039be5;">What is my token?</span></a> - - - - - Warning - - - - - Verification is currently nonfunctional, instead generate a random 48-character string with only lowercase a-z. - + <a href='https://profile.yuzu-emu.org/'><span style="text-decoration: underline; color:#039be5;">Registrera</span></a> <a href='https://yuzu-emu.org/wiki/yuzu-web-service/'><span style="text-decoration: underline; color:#039be5;">What is my token?</span></a> @@ -5287,12 +5454,6 @@ Dra punkter för att ändra position, eller dubbelklicka tabellceller för att r Token was not verified. The change to your token has not been saved. Polletten verifierades inte. Ändringen till din pollett har inte sparats. - - - Unverified, please click Verify before saving configuration - Tooltip - - Verifying... Verifierar... @@ -5310,20 +5471,67 @@ Dra punkter för att ändra position, eller dubbelklicka tabellceller för att r Verification failed. Check that you have entered your token correctly, and that your internet connection is working. Verifiering misslyckad. Kontrollera att du har skrivit in din pollett korrekt, och att din internetuppkoppling fungerar. + + + + All Good + Tooltip + + + + + Must be between 4-20 characters + Tooltip + + + + + Must be 48 characters, and lowercase a-z + Tooltip + + ControllerDialog - + Controller P1 - + &Controller P1 + + DepsDialog + + + Eden Dependencies + + + + + <html><head/><body><p><span style=" font-size:28pt;">Eden Dependencies</span></p></body></html> + + + + + <html><head/><body><p>The projects that make Eden possible</p></body></html> + + + + + Dependency + + + + + Version + Version + + DirectConnect @@ -5429,7 +5637,12 @@ Dra punkter för att ändra position, eller dubbelklicka tabellceller för att r - Creating a room failed. Please retry. Restarting eden might be necessary. + Creating a room failed. Please retry. Restarting Eden might be necessary. + + + + + Version mismatch! Please update to the latest version of Eden. If the problem persists, contact the room host and ask them to update the server. @@ -5437,11 +5650,6 @@ Dra punkter för att ändra position, eller dubbelklicka tabellceller för att r 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 eden. If the problem persists, contact the room host and ask them to update the server. - - Incorrect password. @@ -5501,587 +5709,430 @@ Please go to Configure -> System -> Network and make a selection. Telemetri - + Broken Vulkan Installation Detected Felaktig Vulkaninstallation Upptäckt - + Running a game TRANSLATORS: This string is shown to the user to explain why yuzu needs to prevent the computer from sleeping - + Loading Web Applet... Laddar WebApplet... - - + + Disable Web Applet Avaktivera Webbappletten - + Disabling the web applet can lead to undefined behavior and should only be used with Super Mario 3D All-Stars. Are you sure you want to disable the web applet? (This can be re-enabled in the Debug settings.) - + The amount of shaders currently being built Mängden shaders som just nu byggs - + The current selected resolution scaling multiplier. - + Current emulation speed. Values higher or lower than 100% indicate emulation is running faster or slower than a Switch. Nuvarande emuleringshastighet. Värden över eller under 100% indikerar på att emulationen körs snabbare eller långsammare än en Switch. - + How many frames per second the game is currently displaying. This will vary from game to game and scene to scene. Hur många bilder per sekund som spelet just nu visar. Detta varierar från spel till spel och scen till scen. - + Time taken to emulate a Switch frame, not counting framelimiting or v-sync. For full-speed emulation this should be at most 16.67 ms. Tid det tar att emulera en Switch bild, utan att räkna med framelimiting eller v-sync. För emulering på full hastighet så ska det vara som mest 16.67 ms. - + Unmute - + Mute - + Reset Volume - + &Clear Recent Files - + &Continue - + &Pause &Paus - Warning Outdated Game Format - Varning Föråldrat Spelformat + Varning Föråldrat Spelformat You are using the deconstructed ROM directory format for this game, which is an outdated format that has been superseded by others such as NCA, NAX, XCI, or NSP. Deconstructed ROM directories lack icons, metadata, and update support.<br><br>For an explanation of the various Switch formats yuzu supports, <a href='https://yuzu-emu.org/wiki/overview-of-switch-game-formats'>check out our wiki</a>. This message will not be shown again. Du använder det dekonstruerade ROM-formatet för det här spelet. Det är ett föråldrat format som har överträffats av andra som NCA, NAX, XCI eller NSP. Dekonstruerade ROM-kataloger saknar ikoner, metadata och uppdatering.<br><br>För en förklaring av de olika format som yuzu stöder, <a href='https://yuzu-emu.org/wiki/overview-of-switch-game-formats'>kolla in vår wiki</a>. Det här meddelandet visas inte igen. - - + + Error while loading ROM! Fel vid laddning av ROM! - + The ROM format is not supported. ROM-formatet stöds inte. - + An error occurred initializing the video core. Ett fel inträffade vid initiering av videokärnan. - + Error while loading ROM! %1 %1 signifies a numeric error code. - + Vulkan initialization failed during boot.<br><br>Click <a href='https://eden-emulator.github.io/wiki/faq/#yuzu-starts-with-the-error-broken-vulkan-installation-detected'>here for instructions to fix the issue</a>. - - Game Updates Warning - - - - - The game you are trying to launch is known to have performance or booting issues when updates are applied. Please try increasing the memory layout to 6GB or 8GB if any issues occur.<br><br>Press "OK" to continue launching, or "Cancel" to cancel the launch. - - - - - Don't show again for this game - - - - - You are using the deconstructed ROM directory format for this game, which is an outdated format that has been superseded by others such as NCA, NAX, XCI, or NSP. Deconstructed ROM directories lack icons, metadata, and update support.<br><br>For an explanation of the various Switch formats eden supports, <a href='https://eden-emulator.github.io/wiki/overview-of-switch-game-formats'>check out our wiki</a>. This message will not be shown again. - - - - - eden has encountered an error while running the video core. This is usually caused by outdated GPU drivers, including integrated ones. Please see the log for more details. For more information on accessing the log, please see the following page: <a href='https://eden-emulator.github.io/help/reference/log-files/'>How to Upload the Log File</a>. - - - - - %1<br>Please redump your files or ask on Discord for help. - %1 signifies an error string. - - - - + An unknown error occurred. Please see the log for more details. Ett okänt fel har uppstått. Se loggen för mer information. - + (64-bit) - + (32-bit) - + %1 %2 %1 is the title name. %2 indicates if the title is 64-bit or 32-bit - + Closing software... - + Save Data Spardata - + Mod Data Mod-data - + Error Opening %1 Folder Fel Öppnar %1 Mappen - - + + Folder does not exist! Mappen finns inte! - Error Opening Transferable Shader Cache - Fel Under Öppning Av Överförbar Shadercache + Fel Under Öppning Av Överförbar Shadercache - - Failed to create the shader cache directory for this title. - - - - - Error Removing Contents - - - - - Error Removing Update - - - - - Error Removing DLC - - - - + Remove Installed Game Contents? - + Remove Installed Game Update? - + Remove Installed Game DLC? - + Remove Entry Ta bort katalog - - - - - - Successfully Removed - Framgångsrikt borttagen + Framgångsrikt borttagen - Successfully removed the installed base game. - Tog bort det installerade basspelet framgångsrikt. + Tog bort det installerade basspelet framgångsrikt. - The base game is not installed in the NAND and cannot be removed. - Basspelet är inte installerat i NAND och kan inte tas bort. + Basspelet är inte installerat i NAND och kan inte tas bort. - Successfully removed the installed update. - Tog bort den installerade uppdateringen framgångsrikt. + Tog bort den installerade uppdateringen framgångsrikt. - There is no update installed for this title. - Det finns ingen uppdatering installerad för denna titel. + Det finns ingen uppdatering installerad för denna titel. - There are no DLC installed for this title. - Det finns inga DLC installerade för denna titel. + Det finns inga DLC installerade för denna titel. - Successfully removed %1 installed DLC. - Tog framgångsrikt bort den %1 installerade DLCn. + Tog framgångsrikt bort den %1 installerade DLCn. - + Delete OpenGL Transferable Shader Cache? - + Delete Vulkan Transferable Shader Cache? - + Delete All Transferable Shader Caches? - + Remove Custom Game Configuration? Ta Bort Anpassad Spelkonfiguration? - + Remove Cache Storage? - + Remove File Radera fil - + Remove Play Time Data - + Reset play time? - - Error Removing Transferable Shader Cache - Fel När Överförbar Shader Cache Raderades + Fel När Överförbar Shader Cache Raderades - - A shader cache for this title does not exist. - En shader cache för denna titel existerar inte. + En shader cache för denna titel existerar inte. - Successfully removed the transferable shader cache. - Raderade den överförbara shadercachen framgångsrikt. + Raderade den överförbara shadercachen framgångsrikt. - Failed to remove the transferable shader cache. - Misslyckades att ta bort den överförbara shadercache + Misslyckades att ta bort den överförbara shadercache - - Error Removing Vulkan Driver Pipeline Cache - - - - - Failed to remove the driver pipeline cache. - - - - - - Error Removing Transferable Shader Caches - - - - - Successfully removed the transferable shader caches. - - - - - Failed to remove the transferable shader cache directory. - - - - - Error Removing Custom Configuration - Fel När Anpassad Konfiguration Raderades + Fel När Anpassad Konfiguration Raderades - A custom configuration for this title does not exist. - En anpassad konfiguration för denna titel existerar inte. + En anpassad konfiguration för denna titel existerar inte. - Successfully removed the custom game configuration. - Tog bort den anpassade spelkonfigurationen framgångsrikt. + Tog bort den anpassade spelkonfigurationen framgångsrikt. - Failed to remove the custom game configuration. - Misslyckades att ta bort den anpassade spelkonfigurationen. + Misslyckades att ta bort den anpassade spelkonfigurationen. - - + + RomFS Extraction Failed! RomFS Extraktion Misslyckades! - + There was an error copying the RomFS files or the user cancelled the operation. Det uppstod ett fel vid kopiering av RomFS filer eller användaren avbröt operationen. - + Full Full - + Skeleton Skelett - + Select RomFS Dump Mode Välj RomFS Dump-Läge - + Please select the how you would like the RomFS dumped.<br>Full will copy all of the files into the new directory while <br>skeleton will only create the directory structure. Välj hur du vill att RomFS ska dumpas. <br>Full kommer att kopiera alla filer i den nya katalogen medan <br>skelett bara skapar katalogstrukturen. - + There is not enough free space at %1 to extract the RomFS. Please free up space or select a different dump directory at Emulation > Configure > System > Filesystem > Dump Root - + Extracting RomFS... Extraherar RomFS... - - - - - + + Cancel Avbryt - + RomFS Extraction Succeeded! RomFS Extraktion Lyckades! - - - + The operation completed successfully. Operationen var lyckad. - - Integrity verification couldn't be performed! + + Warning: Outdated Game Format - - File contents were not checked for validity. + + You are using the deconstructed ROM directory format for this game, which is an outdated format that has been superseded by others such as NCA, NAX, XCI, or NSP. Deconstructed ROM directories lack icons, metadata, and update support.<br><br>For an explanation of the various Switch formats Eden supports, <a href='https://eden-emulator.github.io/wiki/overview-of-switch-game-formats'>check out our wiki</a>. This message will not be shown again. - - - Verifying integrity... + + Eden has encountered an error while running the video core. This is usually caused by outdated GPU drivers, including integrated ones. Please see the log for more details. For more information on accessing the log, please see the following page: <a href='https://yuzu-mirror.github.io/help/reference/log-files/'>How to Upload the Log File</a>. - - - Integrity verification succeeded! + + %1<br>Please redump your files or ask on Discord/Revolt for help. + %1 signifies an error string. - - - Integrity verification failed! - - - - - File contents may be corrupt. - - - - - - - - Create Shortcut - - - - - Do you want to launch the game in fullscreen? - - - - - Successfully created a shortcut to %1 - - - - - This will create a shortcut to the current AppImage. This may not work well if you update. Continue? - - - - - Failed to create a shortcut to %1 - - - - - Create Icon - - - - - Cannot create icon file. Path "%1" does not exist and cannot be created. - - - - + Error Opening %1 Fel under öppning av %1 - + Select Directory Välj Katalog - + Properties Egenskaper - + The game properties could not be loaded. Spelegenskaperna kunde inte laddas. - + Switch Executable (%1);;All Files (*.*) %1 is an identifier for the Switch executable file extensions. Switch Körbar (%1);;Alla Filer (*.*) - + Load File Ladda Fil - + Open Extracted ROM Directory Öppna Extraherad ROM-Katalog - + Invalid Directory Selected Ogiltig Katalog Vald - + The directory you have selected does not contain a 'main' file. Katalogen du har valt innehåller inte en 'main'-fil. - + Installable Switch File (*.nca *.nsp *.xci);;Nintendo Content Archive (*.nca);;Nintendo Submission Package (*.nsp);;NX Cartridge Image (*.xci) Installerbar Switch-fil (*.nca *.nsp *.xci);;Nintendo Content Archive (*.nca);;Nintendo Submission Package (*.nsp);;NX Cartridge Image (*.xci) - + Install Files Installera filer - + %n file(s) remaining @@ -6089,24 +6140,24 @@ Please go to Configure -> System -> Network and make a selection. - + Installing file "%1"... Installerar Fil "%1"... - - + + Install Results Installera resultat - + To avoid possible conflicts, we discourage users from installing base games to the NAND. Please, only use this feature to install updates and DLC. - + %n file(s) were newly installed @@ -6115,7 +6166,7 @@ Please, only use this feature to install updates and DLC. - + %n file(s) were overwritten @@ -6124,7 +6175,7 @@ Please, only use this feature to install updates and DLC. - + %n file(s) failed to install @@ -6133,489 +6184,443 @@ Please, only use this feature to install updates and DLC. - + System Application Systemapplikation - + System Archive Systemarkiv - + System Application Update Systemapplikationsuppdatering - + Firmware Package (Type A) Firmwarepaket (Typ A) - + Firmware Package (Type B) Firmwarepaket (Typ B) - + Game Spel - + Game Update Speluppdatering - + Game DLC Spel DLC - + Delta Title Delta Titel - + Select NCA Install Type... Välj NCA-Installationsläge... - + Please select the type of title you would like to install this NCA as: (In most instances, the default 'Game' is fine.) Välj vilken typ av titel du vill installera som: (I de flesta fallen, standard 'Spel' är bra.) - + Failed to Install Misslyckades med Installationen - + The title type you selected for the NCA is invalid. Den titeltyp du valt för NCA är ogiltig. - + File not found Filen hittades inte - + File "%1" not found Filen "%1" hittades inte - + OK OK - - + + Hardware requirements not met Hårdvarukraven uppfylls ej - - + + Your system does not meet the recommended hardware requirements. Compatibility reporting has been disabled. - + Missing yuzu Account yuzu Konto hittades inte - - In order to submit a game compatibility test case, you must link your eden account.<br><br/>To link your eden account, go to Emulation &gt; Configuration &gt; Web. + + In order to submit a game compatibility test case, you must set up your web token and username.<br><br/>To link your eden account, go to Emulation &gt; Configuration &gt; Web. - - Install decryption keys and restart eden before attempting to install firmware. + + Select Dumped Firmware ZIP - - Firmware installation cancelled, firmware may be in bad state, restart eden or re-install firmware. + + Zipped Archives (*.zip) - - Encryption keys are missing. + + Firmware cleanup failed - - Are you sure you want to close eden? + + Failed to clean up extracted firmware cache. +Check write permissions in the system temp directory and try again. +OS reported error: %1 - - - - eden + + Please install firmware to use the Album applet. - - The currently running application has requested eden to not exit. + + Please install firmware to use the Cabinet applet. + + + + + Please install firmware to use the Mii editor. + + + + + Please install firmware to use the Controller Menu. + + + + + Please install firmware to use the Home Menu. + + + + + Firmware Corrupted + + + + + Firmware Too New + + + + + +Continue anyways? + + + + + Don't show again + + + + + Please install firmware to use Starter. + + + + + Are you sure you want to close Eden? + + + + + + + Eden + + + + + The currently running application has requested Eden to not exit. Would you like to bypass this and exit anyway? + + + Encryption keys are missing. + + In order to submit a game compatibility test case, you must link your yuzu account.<br><br/>To link your yuzu account, go to Emulation &gt; Configuration &gt; Web. För att skicka ett spelkompatibilitetstest, du måste länka ditt yuzu-konto.<br><br/>För att länka ditt yuzu-konto, gå till Emulering &gt, Konfigurering &gt, Web. - + Error opening URL Fel när URL öppnades - + Unable to open the URL "%1". Oförmögen att öppna URL:en "%1". - + TAS Recording TAS Inspelning - + Overwrite file of player 1? Överskriv spelare 1:s fil? - + Invalid config detected Ogiltig konfiguration upptäckt - + Handheld controller can't be used on docked mode. Pro controller will be selected. - - + + Amiibo Amiibo - - + + The current amiibo has been removed Den aktuella amiibon har avlägsnats - + Error Fel - - + + The current game is not looking for amiibos Det aktuella spelet letar ej efter amiibos - + Amiibo File (%1);; All Files (*.*) Amiibo Fil (%1);; Alla Filer (*.*) - + Load Amiibo Ladda Amiibo - + Error loading Amiibo data Fel vid laddning av Amiibodata - + The selected file is not a valid amiibo Den valda filen är inte en giltig amiibo - + The selected file is already on use Den valda filen är redan använd - + An unknown error occurred Ett okänt fel har inträffat - - - Verification failed for the following files: - -%1 - - - - + + Keys not installed - + + + Install decryption keys and restart Eden before attempting to install firmware. + + + + Select Dumped Firmware Source Location - - Installing Firmware... - - - - - - - - Firmware install failed - - - - - Unable to locate potential firmware NCA files - - - - - Failed to delete one or more firmware file. - - - - - One or more firmware files failed to copy into NAND. - - - - - Firmware integrity verification failed! - - - - - Select Dumped Keys Location - - - - - - - Decryption Keys install failed - - - - - prod.keys is a required decryption key file. - - - - - One or more keys failed to copy. - - - - - Decryption Keys install succeeded - - - - - Decryption Keys were successfully installed - - - - - Decryption Keys failed to initialize. Check that your dumping tools are up to date and re-dump keys. - - - - - - - - - - + + + + + + No firmware available - - Please install the firmware to use the Album applet. - - - - + Album Applet - + Album applet is not available. Please reinstall firmware. - - Please install the firmware to use the Cabinet applet. - - - - + Cabinet Applet - + Cabinet applet is not available. Please reinstall firmware. - - Please install the firmware to use the Mii editor. - - - - + Mii Edit Applet - + Mii editor is not available. Please reinstall firmware. - - Please install the firmware to use the Controller Menu. - - - - + Controller Applet Kontroll-Applet - + Controller Menu is not available. Please reinstall firmware. - - Please install the firmware to use the Home Menu. - - - - - + Home Menu Applet - - + Home Menu is not available. Please reinstall firmware. - - Please install the firmware to use Starter. - - - - + Starter Applet - + Starter is not available. Please reinstall firmware. - - Please install firmware to use the home menu. - - - - + Capture Screenshot Skärmdump - + PNG Image (*.png) PNG Bild (*.png) - + Update Available - + Update %1 for Eden is available. Would you like to download it? - + TAS state: Running %1/%2 TAStillstånd: pågående %1/%2 - + TAS state: Recording %1 TAStillstånd: spelar in %1 - + TAS state: Idle %1/%2 TAStillstånd: inaktiv %1/%2 - + TAS State: Invalid TAStillstånd: ogiltigt - + &Stop Running - + &Start &Start - + Stop R&ecording - + R&ecord - + Building: %n shader(s) @@ -6623,70 +6628,70 @@ Would you like to download it? - + Scale: %1x %1 is the resolution scaling factor - + Speed: %1% / %2% Hastighet: %1% / %2% - + Speed: %1% Hastighet: %1% - + Game: %1 FPS Spel: %1 FPS - + Frame: %1 ms Ruta: %1 ms - + %1 %2 - - + + FSR - + NO AA - + VOLUME: MUTE - + VOLUME: %1% Volume percentage (e.g. 50%) - + Derivation Components Missing Deriveringsdelar saknas - + Select RomFS Dump Target Välj RomFS Dumpa Mål - + Please select which RomFS you would like to dump. Välj vilken RomFS du vill dumpa. @@ -6699,7 +6704,7 @@ Would you like to download it? yuzu - + Are you sure you want to stop the emulation? Any unsaved progress will be lost. Är du säker på att du vill stoppa emuleringen? Du kommer att förlora osparade framsteg. @@ -6712,102 +6717,102 @@ Would you like to bypass this and exit anyway? Vill du strunta i detta och avsluta ändå? - + None Ingen - + FXAA - + SMAA - + Nearest - + Bilinear - + Bicubic - + Gaussian - + ScaleForce - + Area - + Docked Dockad - + Handheld Handheld - + Normal - + High - + Extreme - + Vulkan - + OpenGL - + Null - + GLSL - + GLASM - + SPIRV @@ -6815,13 +6820,13 @@ Vill du strunta i detta och avsluta ändå? GRenderWindow - - + + OpenGL not available! OpenGL inte tillgängligt! - + OpenGL shared contexts are not supported. @@ -6830,33 +6835,33 @@ Vill du strunta i detta och avsluta ändå? yuzu har inte komilerats med OpenGL support. - - eden has not been compiled with OpenGL support. + + Eden has not been compiled with OpenGL support. - - + + Error while initializing OpenGL! Fel under initialisering av OpenGL! - + Your GPU may not support OpenGL, or you do not have the latest graphics driver. - + Error while initializing OpenGL 4.6! - + Your GPU may not support OpenGL 4.6, or you do not have the latest graphics driver.<br><br>GL Renderer:<br>%1 - + Your GPU may not support one or more required OpenGL extensions. Please ensure you have the latest graphics driver.<br><br>GL Renderer:<br>%1<br><br>Unsupported extensions:<br>%2 @@ -6864,128 +6869,128 @@ Vill du strunta i detta och avsluta ändå? GameList - + Favorite - + Start Game - + Start Game without Custom Configuration - + Open Save Data Location Öppna Spara Data Destination - + Open Mod Data Location Öppna Mod Data Destination - + Open Transferable Pipeline Cache - + Remove Ta Bort - + Remove Installed Update Ta Bort Installerad Uppdatering - + Remove All Installed DLC Ta Bort Alla Installerade DLC - + Remove Custom Configuration Ta Bort Anpassad Konfiguration - + Remove Play Time Data - + Remove Cache Storage - + Remove OpenGL Pipeline Cache - + Remove Vulkan Pipeline Cache - + Remove All Pipeline Caches - + Remove All Installed Contents Ta Bort Allt Installerat Innehåll - + Dump RomFS Dumpa RomFS - + Dump RomFS to SDMC - + Verify Integrity - + Copy Title ID to Clipboard Kopiera Titel ID till Urklipp - + Navigate to GameDB entry Navigera till GameDB-sida - + Create Shortcut - + Add to Desktop - + Add to Applications Menu - + Configure Game @@ -6994,62 +6999,62 @@ Vill du strunta i detta och avsluta ändå? Egenskaper - + Scan Subfolders Skanna Underkataloger - + Remove Game Directory Radera Spelkatalog - + ▲ Move Up ▲ Flytta upp - + ▼ Move Down ▼ Flytta ner - + Open Directory Location Öppna Sökvägsplats - + Clear Rensa - + Name Namn - + Compatibility Kompatibilitet - + Add-ons Add-Ons - + File type Filtyp - + Size Storlek - + Play time @@ -7057,62 +7062,62 @@ Vill du strunta i detta och avsluta ändå? GameListItemCompat - + Ingame - + Game starts, but crashes or major glitches prevent it from being completed. - + Perfect Perfekt - + Game can be played without issues. - + Playable - + Game functions with minor graphical or audio glitches and is playable from start to finish. - + Intro/Menu Intro/Meny - + Game loads, but is unable to progress past the Start Screen. - + Won't Boot Startar Inte - + The game crashes when attempting to startup. Spelet kraschar när man försöker starta det. - + Not Tested Inte Testad - + The game has not yet been tested. Spelet har ännu inte testats. @@ -7120,7 +7125,7 @@ Vill du strunta i detta och avsluta ändå? GameListPlaceholder - + Double-click to add a new folder to the game list Dubbelklicka för att lägga till en ny mapp i spellistan. @@ -7128,7 +7133,7 @@ Vill du strunta i detta och avsluta ändå? GameListSearchField - + %1 of %n result(s) @@ -7136,12 +7141,12 @@ Vill du strunta i detta och avsluta ändå? - + Filter: Filter: - + Enter pattern to filter Ange mönster för att filtrera @@ -7223,7 +7228,7 @@ Vill du strunta i detta och avsluta ändå? - Failed to announce the room to the public lobby. In order to host a room publicly, you must have a valid eden account configured in Emulation -> Configure -> Web. If you do not want to publish a room in the public lobby, then select Unlisted instead. + Failed to announce the room to the public lobby. In order to host a room publicly, you must have a valid Eden 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: @@ -7231,186 +7236,186 @@ Debug Message: Hotkeys - + Audio Mute/Unmute - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Main Window - + Audio Volume Down - + Audio Volume Up - + Capture Screenshot Skärmdump - + Change Adapting Filter - + Change Docked Mode - + Change GPU Accuracy - + Configure Konfigurera - + Configure Current Game - + Continue/Pause Emulation - + Exit Fullscreen - - Exit eden + + Exit Eden - + Fullscreen Fullskärm - + Load File Ladda Fil - + Load/Remove Amiibo - + Multiplayer Browse Public Game Lobby - + Multiplayer Create Room - + Multiplayer Direct Connect to Room - + Multiplayer Leave Room - + Multiplayer Show Current Room - + Restart Emulation - + Stop Emulation - + TAS Record - + TAS Reset - + TAS Start/Stop - + Toggle Filter Bar - + Toggle Framerate Limit - + Toggle Mouse Panning - + Toggle Renderdoc Capture - + Toggle Status Bar @@ -7418,22 +7423,22 @@ Debug Message: InstallDialog - + Please confirm these are the files you wish to install. Var vänlig bekräfta att detta är filerna du önskar installera. - + Installing an Update or DLC will overwrite the previously installed one. Att installera en uppdatering eller DLC kommer överskriva den före detta installerade DLC:n eller uppdateringen. - + Install Installera - + Install Files to NAND Installera filer till NAND @@ -7441,7 +7446,7 @@ Debug Message: LimitableInputDialog - + The text can't contain any of the following characters: %1 @@ -7587,349 +7592,412 @@ Debug Message: - + &Emulation &Emulering - + &View &Vyn - + &Reset Window Size - + &Debugging - + Reset Window Size to &720p - + Reset Window Size to 720p - + Reset Window Size to &900p - + Reset Window Size to 900p - + Reset Window Size to &1080p - + Reset Window Size to 1080p - + &Multiplayer - + &Tools - + &Amiibo - + &TAS - + &Create Home Menu Shortcut - + &Help &Hjälp - + &Install Files to NAND... - + L&oad File... - + Load &Folder... - + E&xit A&vsluta - + &Pause &Paus - + &Stop &Sluta - + &Verify Installed Contents - - &About eden - - - - - Open &eden Folder - - - - + Open Home Menu - + &Discord - + Open &Setup - + &Desktop - + &Application Menu - + Single &Window Mode - + + Open &Eden Folders + + + + + &About Eden + + + + Con&figure... - + Ctrl+, - + Display D&ock Widget Headers - + Show &Filter Bar - + Show &Status Bar - + Show Status Bar Visa Statusfält - + &Browse Public Game Lobby - + &Create Room - + &Leave Room - + &Direct Connect to Room - + &Show Current Room - + F&ullscreen - + &Restart - + Load/Remove &Amiibo... - + &Report Compatibility - + Open &Mods Page - + Open &Quickstart Guide - + &FAQ - + &Capture Screenshot - + Open &Album - + &Set Nickname and Owner - + &Delete Game Data - + &Restore Amiibo - + &Format Amiibo - + Open &Mii Editor - + &Configure TAS... - + Configure C&urrent Game... - + &Start &Start - + &Reset - + R&ecord - + Open &Controller Menu - + + &Root Data Folder + + + + + &NAND Folder + + + + + &SDMC Folder + + + + + &Mod Folder + + + + + &Log Folder + + + + + From Folder + + + + + From ZIP + + + + + &X + + + + + X (Twitter) + + + + + &Revolt + + + + + Revolt + + + + + &Eden Dependencies + + + + Install Firmware - + Install Decryption Keys - - MicroProfileDialog - - - &MicroProfile - - - MigrationWorker - + Data was migrated successfully. - + Linking the old directory failed. You may need to re-run with administrative privileges on Windows. OS gave error: %1 - + + + +Note that your configuration and data will be shared with %1. +If this is not desirable, delete the following files: +%2 +%3 +%4 + + + + If you wish to clean up the files which were left in the old data location, you can do so by deleting the following directory: @@ -7989,37 +8057,37 @@ If you wish to clean up the files which were left in the old data location, you MultiplayerState - + Current connection status - + Not Connected. Click here to find a room! - + Not Connected Nedkopplad - + Connected Uppkopplad - + New Messages Received - + Error Fel - + Failed to update the room information. Please check your Internet connection and try hosting the room again. Debug Message: @@ -8121,56 +8189,56 @@ p, li { white-space: pre-wrap; } Spelar inte något spel - + Installed SD Titles Installerade SD-titlar - + Installed NAND Titles Installerade NAND-titlar - + System Titles Systemtitlar - + Add New Game Directory Lägg till ny spelkatalog - + Favorites Favoriter - - + + Shift Shift - - + + Ctrl Ctrl - - + + Alt Alt - - - - + + + + [not set] [inte inställd] @@ -8181,14 +8249,14 @@ p, li { white-space: pre-wrap; } Hatt %1 %2 - - - - - - - - + + + + + + + + Axis %1%2 Axel %1%2 @@ -8199,357 +8267,357 @@ p, li { white-space: pre-wrap; } Knapp %1 - - - - - - + + + + + + [unknown] [okänd] - - - + + + Left Vänster - - - + + + Right Höger - - - + + + Down Ner - - - + + + Up Upp - - + + Z Z - - + + R R - - + + L L - - + + A A - - + + B B - - + + X X - - + + Y Y - - + + Start Start - - + + L1 L1 - - + + L2 L2 - - + + L3 L3 - - + + R1 R1 - - + + R2 R2 - - + + R3 R3 - - + + Circle Cirkel - - + + Cross Kors - - + + Square Fyrkant - - + + Triangle Triangel - - + + Share Dela - - + + Options Val - - + + [undefined] [odefinerad] - + %1%2 %1%2 - - + + [invalid] [felaktig] - - + + %1%2Hat %3 %1%2Hatt %3 - - - + + + %1%2Axis %3 %1%2Axel %3 - - + + %1%2Axis %3,%4,%5 %1%2Axel %3,%4%5 - - + + %1%2Motion %3 %1%2Rörelse %3 - - + + %1%2Button %3 %1%2Knapp %3 - - + + [unused] [oanvänd] - + ZR ZR - + ZL ZL - + SR SR - + SL SL - + Stick L - + Stick R - + Plus Pluss - + Minus Minus - - + + Home Hem - + Capture Fånga - + Touch Touch - + Wheel Indicates the mouse wheel Hjul - + Backward Bakåt - + Forward Framåt - + Task Åtgärd - + Extra Extra - + %1%2%3%4 - - + + %1%2%3Hat %4 - - + + %1%2%3Axis %4 - - + + %1%2%3Button %4 - - + + Migration - + - - + + No - + You can manually re-trigger this prompt by deleting the new config directory: %1 - + Migrating - + Migrating, this may take a while... @@ -8667,6 +8735,298 @@ p, li { white-space: pre-wrap; } + + QtCommon::Content + + + Installing Firmware... + + + + + + + Cancel + Avbryt + + + + Firmware integrity verification failed! + + + + + + Verification failed for the following files: + +%1 + + + + + + Verifying integrity... + + + + + + Integrity verification succeeded! + + + + + + The operation completed successfully. + + + + + + Integrity verification failed! + + + + + File contents may be corrupt or missing. + + + + + Integrity verification couldn't be performed + + + + + Firmware installation cancelled, firmware may be in a bad state or corrupted. File contents could not be checked for validity. + + + + + Select Dumped Keys Location + + + + + Decryption Keys install succeeded + + + + + Decryption Keys were successfully installed + + + + + Decryption Keys install failed + + + + + QtCommon::Game + + + Error Removing Contents + + + + + Error Removing Update + + + + + Error Removing DLC + + + + + The base game is not installed in the NAND and cannot be removed. + Basspelet är inte installerat i NAND och kan inte tas bort. + + + + There is no update installed for this title. + Det finns ingen uppdatering installerad för denna titel. + + + + There are no DLCs installed for this title. + + + + + + + + Successfully Removed + Framgångsrikt borttagen + + + + Successfully removed %1 installed DLC. + Tog framgångsrikt bort den %1 installerade DLCn. + + + + + Error Removing Transferable Shader Cache + Fel När Överförbar Shader Cache Raderades + + + + + A shader cache for this title does not exist. + En shader cache för denna titel existerar inte. + + + + Successfully removed the transferable shader cache. + Raderade den överförbara shadercachen framgångsrikt. + + + + Failed to remove the transferable shader cache. + Misslyckades att ta bort den överförbara shadercache + + + + Error Removing Vulkan Driver Pipeline Cache + + + + + Failed to remove the driver pipeline cache. + + + + + + Error Removing Transferable Shader Caches + + + + + Successfully removed the transferable shader caches. + + + + + Failed to remove the transferable shader cache directory. + + + + + + Error Removing Custom Configuration + Fel När Anpassad Konfiguration Raderades + + + + A custom configuration for this title does not exist. + En anpassad konfiguration för denna titel existerar inte. + + + + Successfully removed the custom game configuration. + Tog bort den anpassade spelkonfigurationen framgångsrikt. + + + + Failed to remove the custom game configuration. + Misslyckades att ta bort den anpassade spelkonfigurationen. + + + + Reset Metadata Cache + Återställ metadatasparning + + + + The metadata cache is already empty. + Metadata cachen är redan tom. + + + + The operation completed successfully. + + + + + The metadata cache couldn't be deleted. It might be in use or non-existent. + Metadata cachen kunde inte tas bort. Den kan vara under användning eller icke-existerande. + + + + Create Shortcut + + + + + Do you want to launch the game in fullscreen? + + + + + Shortcut Created + + + + + Successfully created a shortcut to %1 + + + + + Shortcut may be Volatile! + + + + + This will create a shortcut to the current AppImage. This may not work well if you update. Continue? + + + + + Failed to Create Shortcut + + + + + Failed to create a shortcut to %1 + + + + + Create Icon + + + + + Cannot create icon file. Path "%1" does not exist and cannot be created. + + + + + No firmware available + + + + + Please install firmware to use the home menu. + + + + + Home Menu Applet + + + + + Home Menu is not available. Please reinstall firmware. + + + QtControllerSelectorDialog @@ -8962,7 +9322,7 @@ Vänligen försök igen eller kontakta utvecklaren av programvaran. QtProfileSelectionDialog - + %1 %2 %1 is the profile username, %2 is the formatted UUID (e.g. 00112233-4455-6677-8899-AABBCCDDEEFF)) @@ -8970,7 +9330,7 @@ Vänligen försök igen eller kontakta utvecklaren av programvaran. - + Users Användare @@ -9090,7 +9450,7 @@ p, li { white-space: pre-wrap; } WaitTreeCallstack - + Call stack Samtal stack @@ -9098,12 +9458,12 @@ p, li { white-space: pre-wrap; } WaitTreeSynchronizationObject - + [%1] %2 - + waited by no thread Ej väntad av någon tråd @@ -9111,102 +9471,102 @@ p, li { white-space: pre-wrap; } WaitTreeThread - + runnable - + paused pausad - + sleeping sovande - + waiting for IPC reply väntar på IPC svar - + waiting for objects väntar på föremål - + waiting for condition variable väntar för skickvariabel - + waiting for address arbiter väntar på adressbryter - + waiting for suspend resume - + waiting väntar - + initialized initialiserad - + terminated avslutad - + unknown okänd - + PC = 0x%1 LR = 0x%2 PC = 0x%1 LR = 0x%2 - + ideal ideal - + core %1 kärna %1 - + processor = %1 processor = %1 - + affinity mask = %1 affinitetsmask = %1 - + thread id = %1 tråd-id = %1 - + priority = %1(current) / %2(normal) prioritet = %1(nuvarande) / %2(normal) - + last running ticks = %1 sista springande fästingar = %1 @@ -9214,7 +9574,7 @@ p, li { white-space: pre-wrap; } WaitTreeThreadList - + waited by thread väntade med tråd @@ -9222,7 +9582,7 @@ p, li { white-space: pre-wrap; } WaitTreeWidget - + &Wait Tree diff --git a/dist/languages/tr_TR.ts b/dist/languages/tr_TR.ts index 939e88dea0..1f35d08eca 100644 --- a/dist/languages/tr_TR.ts +++ b/dist/languages/tr_TR.ts @@ -13,12 +13,12 @@ - About eden + About Eden - <html><head/><body><p><span style=" font-size:28pt;">eden</span></p></body></html> + <html><head/><body><p><span style=" font-size:28pt;">Eden</span></p></body></html> @@ -34,8 +34,8 @@ p, li { white-space: pre-wrap; } hr { height: 1px; border-width: 0; } li.unchecked::marker { content: "\2610"; } li.checked::marker { content: "\2612"; } -</style></head><body style=" font-family:'Adwaita Sans'; font-size:11pt; font-weight:400; font-style:normal;"> -<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;">eden is an experimental open-source emulator for the Nintendo Switch licensed under GPLv3.0+ which is based on the yuzu emulator which ended development back in March 2024. <br /><br />This software should not be used to play games you have not legally obtained.</span></p></body></html> +</style></head><body style=" font-family:'Noto Sans'; font-size:9pt; font-weight:400; font-style:normal;"> +<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;">Eden is an experimental open-source emulator for the Nintendo Switch licensed under GPLv3.0+ which is based on the yuzu emulator which ended development back in March 2024. <br /><br />This software should not be used to play games you have not legally obtained.</span></p></body></html> @@ -72,32 +72,32 @@ p, li { white-space: pre-wrap; } CalibrationConfigurationDialog - + Communicating with the server... Sunucuyla iletişim kuruluyor... - + Cancel İptal Et - + Touch the top left corner <br>of your touchpad. Touchpad'inizin sol üst köşesine<br> dokunun. - + Now touch the bottom right corner <br>of your touchpad. Şimdi touchpad'inizin sağ alt köşesine<br> dokunun. - + Configuration completed! Yapılandırma Tamamlandı! - + OK Tamam @@ -397,502 +397,179 @@ Bu işlem onların hem forum kullanıcı adını hem de IP adresini banlar. ConfigurationShared - + % % - - Amiibo editor - - - - - Controller configuration - - - - - Data erase - - - - + Error Hata - - Net connect - - - - - Player select - - - - - Software keyboard - - - - - Mii Edit - - - - - Online web - - - - - Shop - - - - - Photo viewer - - - - - Offline web - - - - - Login share - - - - - Wifi web auth - - - - - My page - - - - + Output Engine: Çıkış Motoru: - + Output Device: Çıkış Cihazı: - + Input Device: Giriş Cihazı: - + Mute audio Sesi kapat - + Volume: Ses: - + Mute audio when in background Arka plandayken sesi kapat - + Multicore CPU Emulation Çok Çekirdekli CPU Emülasyonu - - This option increases CPU emulation thread use from 1 to the Switch’s maximum of 4. -This is mainly a debug option and shouldn’t be disabled. - - - - - Memory Layout - - - - - Increases the amount of emulated RAM from the stock 4GB of the retail Switch to the developer kit's 8/6GB. -It’s doesn’t improve stability or performance and is intended to let big texture mods fit in emulated RAM. -Enabling it will increase memory use. It is not recommended to enable unless a specific game with a texture mod needs it. - - - - + Limit Speed Percent Hız Yüzdesini Sınırlandır - - Controls the game's maximum rendering speed, but it’s up to each game if it runs faster or not. -200% for a 30 FPS game is 60 FPS, and for a 60 FPS game it will be 120 FPS. -Disabling it means unlocking the framerate to the maximum your PC can reach. - - - - - Synchronize Core Speed - - - - - Synchronizes CPU core speed with the game's maximum rendering speed to boost FPS without affecting game speed (animations, physics, etc.). -Compatibility varies by game; many (especially older ones) may not respond well. -Can help reduce stuttering at lower framerates. - - - - + Accuracy: Doğruluk: - - This setting controls the accuracy of the emulated CPU. -Don't change this unless you know what you are doing. - - - - - - Backend: - - - - - Fast CPU Time - - - - - Overclocks the emulated CPU to remove some FPS limiters. Weaker CPUs may see reduced performance, and certain games may behave improperly. -Use Boost (1700MHz) to run at the Switch's highest native clock, or Fast (2000MHz) to run at 2x clock. - - - - + Unfuse FMA (improve performance on CPUs without FMA) FMA'yı Ayır (FMA olmayan CPU'larda performansı artırır) - - This option improves speed by reducing accuracy of fused-multiply-add instructions on CPUs without native FMA support. - - - - + Faster FRSQRTE and FRECPE Daha hızlı FRSQRTE ve FRECPE - - This option improves the speed of some approximate floating-point functions by using less accurate native approximations. - - - - + Faster ASIMD instructions (32 bits only) Daha hızlı ASIMD komutları (yalnızca 32 bit) - - This option improves the speed of 32 bits ASIMD floating-point functions by running with incorrect rounding modes. - - - - + Inaccurate NaN handling Uygunsuz NaN kullanımı - - This option improves speed by removing NaN checking. -Please note this also reduces accuracy of certain floating-point instructions. - - - - + Disable address space checks Adres boşluğu kontrolünü kapatır. - - This option improves speed by eliminating a safety check before every memory read/write in guest. -Disabling it may allow a game to read/write the emulator's memory. - - - - + Ignore global monitor Global monitörü görmezden gel - - This option improves speed by relying only on the semantics of cmpxchg to ensure safety of exclusive access instructions. -Please note this may result in deadlocks and other race conditions. - - - - + API: API: - - Switches between the available graphics APIs. -Vulkan is recommended in most cases. - - - - + Device: Cihaz: - - This setting selects the GPU to use with the Vulkan backend. - - - - + Shader Backend: Shader Backend: - - The shader backend to use for the OpenGL renderer. -GLSL is the fastest in performance and the best in rendering accuracy. -GLASM is a deprecated NVIDIA-only backend that offers much better shader building performance at the cost of FPS and rendering accuracy. -SPIR-V compiles the fastest, but yields poor results on most GPU drivers. - - - - + Resolution: Çözünürlük: - - Forces the game to render at a different resolution. -Higher resolutions require much more VRAM and bandwidth. -Options lower than 1X can cause rendering issues. - - - - + Window Adapting Filter: Pencereye Uyarlı Filtre: - + FSR Sharpness: FSR Keskinliği: - - Determines how sharpened the image will look while using FSR’s dynamic contrast. - - - - + Anti-Aliasing Method: Kenar Yumuşatma Yöntemi: - - The anti-aliasing method to use. -SMAA offers the best quality. -FXAA has a lower performance impact and can produce a better and more stable picture under very low resolutions. - - - - + Fullscreen Mode: Tam Ekran Modu: - - The method used to render the window in fullscreen. -Borderless offers the best compatibility with the on-screen keyboard that some games request for input. -Exclusive fullscreen may offer better performance and better Freesync/Gsync support. - - - - + Aspect Ratio: En-Boy Oranı: - - Stretches the game to fit the specified aspect ratio. -Switch games only support 16:9, so custom game mods are required to get other ratios. -Also controls the aspect ratio of captured screenshots. - - - - + Use disk pipeline cache Disk pipeline cache'ini kullan - - Allows saving shaders to storage for faster loading on following game boots. -Disabling it is only intended for debugging. - - - - - Optimize SPIRV output shader - - - - - Runs an additional optimization pass over generated SPIRV shaders. -Will increase time required for shader compilation. -May slightly improve performance. -This feature is experimental. - - - - + Use asynchronous GPU emulation Asenkronize GPU emülasyonu kullan - - Uses an extra CPU thread for rendering. -This option should always remain enabled. - - - - + NVDEC emulation: NVDEC emülasyonu: - - Specifies how videos should be decoded. -It can either use the CPU or the GPU for decoding, or perform no decoding at all (black screen on videos). -In most cases, GPU decoding provides the best performance. - - - - - ASTC Decoding Method: - - - - - This option controls how ASTC textures should be decoded. -CPU: Use the CPU for decoding, slowest but safest method. -GPU: Use the GPU's compute shaders to decode ASTC textures, recommended for most games and users. -CPU Asynchronously: Use the CPU to decode ASTC textures as they arrive. Completely eliminates ASTC decoding -stuttering at the cost of rendering issues while the texture is being decoded. - - - - - ASTC Recompression Method: - - - - - Almost all desktop and laptop dedicated GPUs lack support for ASTC textures, forcing the emulator to decompress to an intermediate format any card supports, RGBA8. -This option recompresses RGBA8 to either the BC1 or BC3 format, saving VRAM but negatively affecting image quality. - - - - - VRAM Usage Mode: - - - - - Selects whether the emulator should prefer to conserve memory or make maximum usage of available video memory for performance. Has no effect on integrated graphics. Aggressive mode may severely impact the performance of other applications such as recording software. - - - - + VSync Mode: VSync Modu: - - FIFO (VSync) does not drop frames or exhibit tearing but is limited by the screen refresh rate. -FIFO Relaxed is similar to FIFO but allows tearing as it recovers from a slow down. -Mailbox can have lower latency than FIFO and does not tear but may drop frames. -Immediate (no synchronization) just presents whatever is available and can exhibit tearing. - - - - - Enable asynchronous presentation (Vulkan only) - - - - - Slightly improves performance by moving presentation to a separate CPU thread. - - - - + Force maximum clocks (Vulkan only) En yüksek hızı zorla (Yalnızca Vulkan için) - + Runs work in the background while waiting for graphics commands to keep the GPU from lowering its clock speed. Grafik komutlarını beklerken GPU'nun hızının düşmesini engellemek için arka planda görev yürütür - + Anisotropic Filtering: Anisotropic Filtering: - - Controls the quality of texture rendering at oblique angles. -It’s a light setting and safe to set at 16x on most GPUs. - - - - Accuracy Level: - Kesinlik Düzeyi: + Kesinlik Düzeyi: - - GPU emulation accuracy. -Most games render fine with Normal, but High is still required for some. -Particles tend to only render correctly with High accuracy. -Extreme should only be used for debugging. -This option can be changed while playing. -Some games may require booting on high to render properly. - - - - + Use asynchronous shader building (Hack) Asenkronize shader derlemesini kullan (Hack) - - - Enables asynchronous shader compilation, which may reduce shader stutter. -This feature is experimental. - - Use Fast GPU Time (Hack) Hızlı GPU Saati Kullan (Hack) @@ -902,1021 +579,1441 @@ This feature is experimental. Hızlı GPU Saati'ni etkinleştir. Bu seçenek çoğu oyunu en yüksek gerçek çözünürlükte çalıştırır. - + Use Vulkan pipeline cache Vulkan pipeline önbelleği kullan - + + RNG Seed + RNG çekirdeği + + + + Device Name + Cihaz İsmi + + + + Language: + Dil: + + + + Note: this can be overridden when region setting is auto-select + Not: bu ayar bölge ayarı otomatiğe alındığında yok sayılabilir. + + + + Region: + Bölge: + + + + Time Zone: + Saat Dilimi: + + + + Sound Output Mode: + Ses Çıkış Modu: + + + + Console Mode: + Konsol Modu: + + + + Prompt for user on game boot + Oyun başlatılırken kullanıcı verisi iste + + + + Pause emulation when in background + Arka plana alındığında emülasyonu duraklat + + + + Hide mouse on inactivity + Hareketsizlik durumunda imleci gizle + + + + CPU + CPU + + + + GPU + GPU + + + + OpenGL + OpenGL + + + + Vulkan + Vulkan + + + + GLASM (Assembly Shaders, NVIDIA Only) + GLASM (Assembly Shaderları, Yalnızca NVIDIA için) + + + + Normal + Normal + + + + High + Yüksek + + + + Extreme + Ekstrem + + + + Auto + Otomatik + + + + Accurate + Doğru + + + + Unsafe + Güvensiz + + + + Paranoid (disables most optimizations) + Paranoya (çoğu optimizasyonu kapatır) + + + + Dynarmic + Dinamik + + + + Borderless Windowed + Kenarlıksız Tam Ekran + + + + Exclusive Fullscreen + Ayrılmış Tam Ekran + + + + No Video Output + Video Çıkışı Yok + + + + CPU Video Decoding + CPU Video Decoding + + + + GPU Video Decoding (Default) + GPU Video Decoding (Varsayılan) + + + + 0.5X (360p/540p) [EXPERIMENTAL] + 0.5X (360p/540p) [DENEYSEL] + + + + 0.75X (540p/810p) [EXPERIMENTAL] + 0.75X (540p/810p) [DENEYSEL] + + + + 1X (720p/1080p) + 1X (720p/1080p) + + + + 1.5X (1080p/1620p) [EXPERIMENTAL] + 1.5X (1080p/1620p) [DENEYSEL] + + + + 2X (1440p/2160p) + 2X (1440p/2160p) + + + + 3X (2160p/3240p) + 3X (2160p/3240p) + + + + 4X (2880p/4320p) + 4X (2880p/4320p) + + + + 5X (3600p/5400p) + 5X (3600p/5400p) + + + + 6X (4320p/6480p) + 6X (4320p/6480p) + + + + 7X (5040p/7560p) + 7X (5040p/7560p) + + + + 8X (5760p/8640p) + 8X (5760p/8640p) + + + + Nearest Neighbor + En Yakın Komşu Algoritması + + + + Bilinear + Bilinear + + + + Bicubic + Bicubic + + + + Gaussian + Gausyen + + + + ScaleForce + ScaleForce + + + + AMD FidelityFX™️ Super Resolution + AMD FidelityFX™️ Süper Çözünürlük + + + + None + Yok + + + + FXAA + FXAA + + + + SMAA + SMAA + + + + Default (16:9) + Varsayılan (16:9) + + + + Force 4:3 + 4:3'e Zorla + + + + Force 21:9 + 21:9'a Zorla + + + + Force 16:10 + 16:10'a Zorla + + + + Stretch to Window + Ekrana Sığdır + + + + Automatic + Otomatik + + + + + Default + Varsayılan + + + + Amiibo editor + + + + + Controller configuration + + + + + Data erase + + + + + Net connect + + + + + Player select + + + + + Software keyboard + + + + + Mii Edit + + + + + Online web + + + + + Shop + + + + + Photo viewer + + + + + Offline web + + + + + Login share + + + + + Wifi web auth + + + + + My page + + + + + This option increases CPU emulation thread use from 1 to the Switch’s maximum of 4. +This is mainly a debug option and shouldn’t be disabled. + + + + + Memory Layout + + + + + Increases the amount of emulated RAM from the stock 4GB of the retail Switch to the developer kit's 8/6GB. +It’s doesn’t improve stability or performance and is intended to let big texture mods fit in emulated RAM. +Enabling it will increase memory use. It is not recommended to enable unless a specific game with a texture mod needs it. + + + + + Controls the game's maximum rendering speed, but it’s up to each game if it runs faster or not. +200% for a 30 FPS game is 60 FPS, and for a 60 FPS game it will be 120 FPS. +Disabling it means unlocking the framerate to the maximum your PC can reach. + + + + + Synchronize Core Speed + + + + + Synchronizes CPU core speed with the game's maximum rendering speed to boost FPS without affecting game speed (animations, physics, etc.). +Compatibility varies by game; many (especially older ones) may not respond well. +Can help reduce stuttering at lower framerates. + + + + + This setting controls the accuracy of the emulated CPU. +Don't change this unless you know what you are doing. + + + + + + Backend: + + + + + Fast CPU Time + + + + + Overclocks the emulated CPU to remove some FPS limiters. Weaker CPUs may see reduced performance, and certain games may behave improperly. +Use Boost (1700MHz) to run at the Switch's highest native clock, or Fast (2000MHz) to run at 2x clock. + + + + + Custom CPU Ticks + + + + + Set a custom value of CPU ticks. Higher values can increase performance, but may also cause the game to freeze. A range of 77–21000 is recommended. + + + + + Enable Host MMU Emulation (fastmem) + + + + + This optimization speeds up memory accesses by the guest program. +Enabling it causes guest memory reads/writes to be done directly into memory and make use of Host's MMU. +Disabling this forces all memory accesses to use Software MMU Emulation. + + + + + This option improves speed by reducing accuracy of fused-multiply-add instructions on CPUs without native FMA support. + + + + + This option improves the speed of some approximate floating-point functions by using less accurate native approximations. + + + + + This option improves the speed of 32 bits ASIMD floating-point functions by running with incorrect rounding modes. + + + + + This option improves speed by removing NaN checking. +Please note this also reduces accuracy of certain floating-point instructions. + + + + + This option improves speed by eliminating a safety check before every memory read/write in guest. +Disabling it may allow a game to read/write the emulator's memory. + + + + + This option improves speed by relying only on the semantics of cmpxchg to ensure safety of exclusive access instructions. +Please note this may result in deadlocks and other race conditions. + + + + + Switches between the available graphics APIs. +Vulkan is recommended in most cases. + + + + + This setting selects the GPU to use with the Vulkan backend. + + + + + The shader backend to use for the OpenGL renderer. +GLSL is the fastest in performance and the best in rendering accuracy. +GLASM is a deprecated NVIDIA-only backend that offers much better shader building performance at the cost of FPS and rendering accuracy. +SPIR-V compiles the fastest, but yields poor results on most GPU drivers. + + + + + Forces the game to render at a different resolution. +Higher resolutions require much more VRAM and bandwidth. +Options lower than 1X can cause rendering issues. + + + + + Determines how sharpened the image will look while using FSR’s dynamic contrast. + + + + + The anti-aliasing method to use. +SMAA offers the best quality. +FXAA has a lower performance impact and can produce a better and more stable picture under very low resolutions. + + + + + The method used to render the window in fullscreen. +Borderless offers the best compatibility with the on-screen keyboard that some games request for input. +Exclusive fullscreen may offer better performance and better Freesync/Gsync support. + + + + + Stretches the game to fit the specified aspect ratio. +Switch games only support 16:9, so custom game mods are required to get other ratios. +Also controls the aspect ratio of captured screenshots. + + + + + Allows saving shaders to storage for faster loading on following game boots. +Disabling it is only intended for debugging. + + + + + Optimize SPIRV output shader + + + + + Runs an additional optimization pass over generated SPIRV shaders. +Will increase time required for shader compilation. +May slightly improve performance. +This feature is experimental. + + + + + Uses an extra CPU thread for rendering. +This option should always remain enabled. + + + + + Specifies how videos should be decoded. +It can either use the CPU or the GPU for decoding, or perform no decoding at all (black screen on videos). +In most cases, GPU decoding provides the best performance. + + + + + ASTC Decoding Method: + + + + + This option controls how ASTC textures should be decoded. +CPU: Use the CPU for decoding, slowest but safest method. +GPU: Use the GPU's compute shaders to decode ASTC textures, recommended for most games and users. +CPU Asynchronously: Use the CPU to decode ASTC textures as they arrive. Completely eliminates ASTC decoding +stuttering at the cost of rendering issues while the texture is being decoded. + + + + + ASTC Recompression Method: + + + + + Almost all desktop and laptop dedicated GPUs lack support for ASTC textures, forcing the emulator to decompress to an intermediate format any card supports, RGBA8. +This option recompresses RGBA8 to either the BC1 or BC3 format, saving VRAM but negatively affecting image quality. + + + + + VRAM Usage Mode: + + + + + Selects whether the emulator should prefer to conserve memory or make maximum usage of available video memory for performance. +Aggressive mode may severely impact the performance of other applications such as recording software. + + + + + Skip CPU Inner Invalidation + + + + + Skips certain CPU-side cache invalidations during memory updates, reducing CPU usage and improving it's performance. This may cause glitches or crashes on some games. + + + + + FIFO (VSync) does not drop frames or exhibit tearing but is limited by the screen refresh rate. +FIFO Relaxed is similar to FIFO but allows tearing as it recovers from a slow down. +Mailbox can have lower latency than FIFO and does not tear but may drop frames. +Immediate (no synchronization) just presents whatever is available and can exhibit tearing. + + + + + Sync Memory Operations + + + + + Ensures data consistency between compute and memory operations. +This option should fix issues in some games, but may also reduce performance in some cases. +Unreal Engine 4 games often see the most significant changes thereof. + + + + + Enable asynchronous presentation (Vulkan only) + + + + + Slightly improves performance by moving presentation to a separate CPU thread. + + + + + Controls the quality of texture rendering at oblique angles. +It’s a light setting and safe to set at 16x on most GPUs. + + + + + GPU Accuracy: + + + + + Controls the GPU emulation accuracy. +Most games render fine with Normal, but High is still required for some. +Particles tend to only render correctly with High accuracy. +Extreme should only be used as a last resort. + + + + + DMA Accuracy: + + + + + Controls the DMA precision accuracy. Safe precision can fix issues in some games, but it can also impact performance in some cases. +If unsure, leave this on Default. + + + + + Enables asynchronous shader compilation, which may reduce shader stutter. +This feature is experimental. + + + + + Fast GPU Time (Hack) + + + + + Overclocks the emulated GPU to increase dynamic resolution and render distance. +Use 128 for maximal performance and 512 for maximal graphics fidelity. + + + + Enables GPU vendor-specific pipeline cache. This option can improve shader loading time significantly in cases where the Vulkan driver does not store pipeline cache files internally. - + Enable Compute Pipelines (Intel Vulkan Only) - + Enable compute pipelines, required by some games. This setting only exists for Intel proprietary drivers, and may crash if enabled. Compute pipelines are always enabled on all other drivers. - + Enable Reactive Flushing - + Uses reactive flushing instead of predictive flushing, allowing more accurate memory syncing. - + Sync to framerate of video playback - + Run the game at normal speed during video playback, even when the framerate is unlocked. - + Barrier feedback loops - + Improves rendering of transparency effects in specific games. - - RNG Seed - RNG çekirdeği + + RAII + - + + A method of automatic resource management in Vulkan that ensures proper release of resources when they are no longer needed, but may cause crashes in bundled games. + + + + + Extended Dynamic State + + + + + Controls the number of features that can be used in Extended Dynamic State. +Higher numbers allow for more features and can increase performance, but may cause issues with some drivers and vendors. +The default value may vary depending on your system and hardware capabilities. +This value can be changed until stability and a better visual quality are achieved. + + + + + Provoking Vertex + + + + + Improves lighting and vertex handling in certain games. +Only Vulkan 1.0+ devices support this extension. + + + + + Descriptor Indexing + + + + + Improves texture & buffer handling and the Maxwell translation layer. +Some Vulkan 1.1+ and all 1.2+ devices support this extension. + + + + + Sample Shading + + + + + Allows the fragment shader to execute per sample in a multi-sampled fragment instead once per fragment. Improves graphics quality at the cost of some performance. +Higher values improve quality more but also reduce performance to a greater extent. + + + + Controls the seed of the random number generator. Mainly used for speedrunning purposes. - - Device Name - Cihaz İsmi - - - + The name of the emulated Switch. - + Custom RTC Date: - + This option allows to change the emulated clock of the Switch. Can be used to manipulate time in games. - - Language: - Dil: - - - - Note: this can be overridden when region setting is auto-select - Not: bu ayar bölge ayarı otomatiğe alındığında yok sayılabilir. - - - - Region: - Bölge: - - - + The region of the emulated Switch. - - Time Zone: - Saat Dilimi: - - - + The time zone of the emulated Switch. - - Sound Output Mode: - Ses Çıkış Modu: - - - - Console Mode: - Konsol Modu: - - - + Selects if the console is emulated in Docked or Handheld mode. Games will change their resolution, details and supported controllers and depending on this setting. Setting to Handheld can help improve performance for low end systems. - - Prompt for user on game boot - Oyun başlatılırken kullanıcı verisi iste - - - - Pause emulation when in background - Arka plana alındığında emülasyonu duraklat - - - - Fast GPU Time (Hack) + + Ask to select a user profile on each boot, useful if multiple people use Eden on the same PC. - - Overclocks the emulated GPU to increase dynamic resolution and render distance. -Use 128 for maximal performance and 512 for maximal graphics fidelity. + + This setting pauses Eden when focusing other windows. - - Extended Dynamic State - - - - - Enables the VkExtendedDynamicState* extensions. -Higher dynamic states will generally improve performance, but may cause issues on certain games or devices. - - - - - Provoking Vertex - - - - - Improves lighting and vertex handling in certain games. -Only Vulkan 1.0+ devices support this extension. - - - - - Descriptor Indexing - - - - - Improves texture & buffer handling and the Maxwell translation layer. -Some Vulkan 1.1+ and all 1.2+ devices support this extension. - - - - - Ask to select a user profile on each boot, useful if multiple people use eden on the same PC. - - - - - This setting pauses eden when focusing other windows. - - - - + Confirm before stopping emulation - + This setting overrides game prompts asking to confirm stopping the game. Enabling it bypasses such prompts and directly exits the emulation. - - Hide mouse on inactivity - Hareketsizlik durumunda imleci gizle - - - + This setting hides the mouse after 2.5s of inactivity. - + Disable controller applet - + Forcibly disables the use of the controller applet by guests. When a guest attempts to open the controller applet, it is immediately closed. - + Check for updates - + Whether or not to check for updates upon startup. - + Enable Gamemode - + Custom frontend - + Real applet - + Never - + On Load - + Always - - CPU - CPU - - - - GPU - GPU - - - + CPU Asynchronous - + Uncompressed (Best quality) - + BC1 (Low quality) - + BC3 (Medium quality) - + Conservative - + Aggressive - - OpenGL - OpenGL - - - - Vulkan - Vulkan - - - + Null - + GLSL - - GLASM (Assembly Shaders, NVIDIA Only) - GLASM (Assembly Shaderları, Yalnızca NVIDIA için) - - - + SPIR-V (Experimental, AMD/Mesa Only) - - Normal - Normal + + Unsafe (fast) + - - High - Yüksek + + Safe (stable) + - - Extreme - Ekstrem - - - - Auto - Otomatik - - - - Accurate - Doğru - - - - Unsafe - Güvensiz - - - - Paranoid (disables most optimizations) - Paranoya (çoğu optimizasyonu kapatır) - - - - Dynarmic - Dinamik - - - + NCE - - Borderless Windowed - Kenarlıksız Tam Ekran - - - - Exclusive Fullscreen - Ayrılmış Tam Ekran - - - - No Video Output - Video Çıkışı Yok - - - - CPU Video Decoding - CPU Video Decoding - - - - GPU Video Decoding (Default) - GPU Video Decoding (Varsayılan) - - - + 0.25X (180p/270p) [EXPERIMENTAL] - - 0.5X (360p/540p) [EXPERIMENTAL] - 0.5X (360p/540p) [DENEYSEL] - - - - 0.75X (540p/810p) [EXPERIMENTAL] - 0.75X (540p/810p) [DENEYSEL] - - - - 1X (720p/1080p) - 1X (720p/1080p) - - - - 1.5X (1080p/1620p) [EXPERIMENTAL] - 1.5X (1080p/1620p) [DENEYSEL] - - - - 2X (1440p/2160p) - 2X (1440p/2160p) - - - - 3X (2160p/3240p) - 3X (2160p/3240p) - - - - 4X (2880p/4320p) - 4X (2880p/4320p) - - - - 5X (3600p/5400p) - 5X (3600p/5400p) - - - - 6X (4320p/6480p) - 6X (4320p/6480p) - - - - 7X (5040p/7560p) - 7X (5040p/7560p) - - - - 8X (5760p/8640p) - 8X (5760p/8640p) - - - - Nearest Neighbor - En Yakın Komşu Algoritması - - - - Bilinear - Bilinear - - - - Bicubic - Bicubic - - - - Gaussian - Gausyen - - - - ScaleForce - ScaleForce - - - - AMD FidelityFX™️ Super Resolution - AMD FidelityFX™️ Süper Çözünürlük - - - + Area - - None - Yok - - - - FXAA - FXAA - - - - SMAA - SMAA - - - - Default (16:9) - Varsayılan (16:9) - - - - Force 4:3 - 4:3'e Zorla - - - - Force 21:9 - 21:9'a Zorla - - - - Force 16:10 - 16:10'a Zorla - - - - Stretch to Window - Ekrana Sığdır - - - - Automatic - Otomatik - - - - Default - Varsayılan - - - + 2x 2x - + 4x 4x - + 8x 8x - + 16x 16x - + Japanese (日本語) Japonca (日本語) - + American English Amerikan İngilizcesi - + French (français) Fransızca (français) - + German (Deutsch) Almanca (Deutsch) - + Italian (italiano) İtalyanca (italiano) - + Spanish (español) İspanyolca (español) - + Chinese Çince - + Korean (한국어) Korece (한국어) - + Dutch (Nederlands) Flemenkçe (Nederlands) - + Portuguese (português) Portekizce (português) - + Russian (Русский) Rusça (Русский) - + Taiwanese Tayvanca - + British English İngiliz İngilizcesi - + Canadian French Kanada Fransızcası - + Latin American Spanish Latin Amerika İspanyolcası - + Simplified Chinese Basitleştirilmiş Çince - + Traditional Chinese (正體中文) Geleneksel Çince (正體中文) - + Brazilian Portuguese (português do Brasil) Brezilya Portekizcesi (português do Brasil) - - + + Serbian (српски) + + + + + Japan Japonya - + USA ABD - + Europe Avrupa - + Australia Avustralya - + China Çin - + Korea Kore - + Taiwan Tayvan - + Auto (%1) Auto select time zone Otomatik (%1) - + Default (%1) Default time zone Varsayılan (%1) - + CET CET - + CST6CDT CST6CDT - + Cuba Küba - + EET EET - + Egypt Mısır - + Eire İrlanda - + EST EST - + EST5EDT EST5EDT - + GB GB - + GB-Eire GB-İrlanda - + GMT GMT - + GMT+0 GMT+0 - + GMT-0 MT-0 - + GMT0 GMT0 - + Greenwich Greenwich - + Hongkong Hong Kong - + HST HST - + Iceland İzlanda - + Iran İran - + Israel İsrail - + Jamaica Jamaika - + Kwajalein Kwajalein - + Libya Libya - + MET MET - + MST MST - + MST7MDT MST7MDT - + Navajo Navaho - + NZ Yeni Zelanda - + NZ-CHAT Chatham Adaları - + Poland Polonya - + Portugal Portekiz - + PRC PRC - + PST8PDT PST8PDT - + ROC ROC - + ROK ROK - + Singapore Singapur - + Turkey Türkiye - + UCT UCT - + Universal Evrensel - + UTC UTC - + W-SU W-SU - + WET WET - + Zulu Zulu - + Mono Mono - + Stereo Stereo - + Surround Surround - + 4GB DRAM (Default) - + 6GB DRAM (Unsafe) - + 8GB DRAM - + 10GB DRAM (Unsafe) - + 12GB DRAM (Unsafe) - - Low (128) - - - - - Medium (256) - - - - - High (512) - - - - + Docked Dock Modu Aktif - + Handheld Taşınabilir - + Boost (1700MHz) - + Fast (2000MHz) - + Always ask (Default) Her zaman sor (Varsayılan) - + Only if game specifies not to stop - + Never ask Asla sorma + + + Low (128) + + + + + Medium (256) + + + + + High (512) + + ConfigureApplets @@ -2266,27 +2363,27 @@ When a guest attempts to open the controller applet, it is immediately closed.Kütük Tutma - + Open Log Location Kütük Konumunu Aç - + Global Log Filter Evrensel Kütük Filtresi - + When checked, the max size of the log increases from 100 MB to 1 GB Etkinleştirildiğinde log'un boyut sınırı 100 MB'tan 1 GB'a çıkar - + Enable Extended Logging** Uzatılmış Hata Kaydını Etkinleştir. - + Show Log in Console Konsolda Log'u Göster @@ -2432,7 +2529,7 @@ When a guest attempts to open the controller applet, it is immediately closed. - **This will be reset automatically when eden closes. + **This will be reset automatically when Eden closes. @@ -2494,7 +2591,7 @@ When a guest attempts to open the controller applet, it is immediately closed.**Bu yuzu kapandığında otomatik olarak eski haline dönecektir. - + Web applet not compiled Web uygulaması derlenmemiş @@ -2544,7 +2641,7 @@ When a guest attempts to open the controller applet, it is immediately closed. - eden Configuration + Eden Configuration @@ -2553,88 +2650,88 @@ When a guest attempts to open the controller applet, it is immediately closed. - + Applets - - + + Audio Ses - - + + CPU CPU - + Debug Hata Ayıklama - + Filesystem Dosya sistemi - - + + General Genel - - + + Graphics Grafikler - + GraphicsAdvanced Gelişmiş Grafik Ayarları - + GraphicsExtensions - + Hotkeys Kısayollar - - + + Controls Kontroller - + Profiles Profiller - + Network - - + + System Sistem - + Game List Oyun Listesi - + Web Web @@ -2732,51 +2829,45 @@ When a guest attempts to open the controller applet, it is immediately closed. - - - Reset Metadata Cache Üstveri Cache'ini Sıfırla - + Select Emulated NAND Directory... NAND Konumunu Seç... - + Select Emulated SD Directory... Emüle Edilmiş SD Kart Konumunu Seç... - + Select Gamecard Path... Oyun Kartuşu Konumunu Seç... - + Select Dump Directory... Dump Konumunu Seç... - + Select Mod Load Directory... Mod Yükleme Konumunu Seç... - The metadata cache is already empty. - Metadata Cache'i zaten boş. + Metadata Cache'i zaten boş. - The operation completed successfully. - İşlem başarıyla tamamlandı. + İşlem başarıyla tamamlandı. - The metadata cache couldn't be deleted. It might be in use or non-existent. - Metadata Cache'i silinemedi. Kullanımda ya da oluşturulmamış olabilir. + Metadata Cache'i silinemedi. Kullanımda ya da oluşturulmamış olabilir. @@ -2807,12 +2898,12 @@ When a guest attempts to open the controller applet, it is immediately closed.yuzu - - eden + + Eden - + This reset all settings and remove all per-game configurations. This will not delete game directories, profiles, or input profiles. Proceed? Bu seçenek tüm genel ve oyuna özgü ayarları silecektir. Oyun dizinleri, profiller ve giriş profilleri silinmeyecektir. Devam etmek istiyor musunuz? @@ -2845,33 +2936,33 @@ When a guest attempts to open the controller applet, it is immediately closed.Arkaplan Rengi: - + % FSR sharpening percentage (e.g. 50%) % - + Off Kapalı - + VSync Off VSync Kapalı - + Recommended Önerilen - + On Açık - + VSync On Vsync Açık @@ -2908,14 +2999,18 @@ When a guest attempts to open the controller applet, it is immediately closed. - Vulkan Extension Settings + Vulkan Extensions Settings - - While it's recommended to use state 3, some games may perform better on lower states. Setting to 0 (disabled) may also break games. -If your GPU is older (i.e. RX570/580 or older), it may not support these features. If this is the case, set the slider to 0 and uncheck all boxes. -These settings are experimental, and may cause black screens. If your games fail to boot or are stuck on a black screen, change these settings around. + + % + Sample Shading percentage (e.g. 50%) + % + + + + Extended Dynamic State is disabled on macOS due to MoltenVK compatibility issues that cause black screens. @@ -2947,75 +3042,75 @@ These settings are experimental, and may cause black screens. If your games fail Varsayılana Döndür - + Action İşlem - + Hotkey Kısayol - + Controller Hotkey Kontrolcü Kısayolu - - - + + + Conflicting Key Sequence Tutarsız Anahtar Dizisi - - + + The entered key sequence is already assigned to: %1 Girilen anahtar dizisi zaten %1'e atanmış. - + [waiting] [bekleniyor] - + Invalid Geçersiz - + Invalid hotkey settings - + An error occurred. Please report this issue on github. - + Restore Default Varsayılana Döndür - + Clear Temizle - + Conflicting Button Sequence Tutarsız Tuş Dizisi - + The default button sequence is already assigned to: %1 Varsayılan buton dizisi zaten %1'e atanmış. - + The default key sequence is already assigned to: %1 Varsayılan anahtar dizisi zaten %1'e atanmış. @@ -3335,7 +3430,7 @@ These settings are experimental, and may cause black screens. If your games fail - Requires restarting eden + Requires restarting Eden @@ -3490,7 +3585,7 @@ These settings are experimental, and may cause black screens. If your games fail - + Left Stick Sol Analog @@ -3600,14 +3695,14 @@ These settings are experimental, and may cause black screens. If your games fail - + L L - + ZL ZL @@ -3626,7 +3721,7 @@ These settings are experimental, and may cause black screens. If your games fail - + Plus Artı @@ -3639,15 +3734,15 @@ These settings are experimental, and may cause black screens. If your games fail - - + + R R - + ZR ZR @@ -3692,7 +3787,7 @@ These settings are experimental, and may cause black screens. If your games fail - + Right Stick Sağ Analog @@ -3707,242 +3802,242 @@ These settings are experimental, and may cause black screens. If your games fail Yapılandır - - - - + + + + Clear Temizle - - - - - + + + + + [not set] [belirlenmedi] - - - + + + Invert button Tuşları ters çevir - - + + Toggle button Tuşu Aç/Kapa - + Turbo button Turbo tuşu - - + + Invert axis Ekseni ters çevir - - - + + + Set threshold Alt sınır ayarla - - + + Choose a value between 0% and 100% %0 ve %100 arasında bir değer seçin - + Toggle axis Ekseni aç/kapa - + Set gyro threshold Gyro alt sınırı ayarla - + Calibrate sensor - + Map Analog Stick Analog Çubuğu Ayarla - + After pressing OK, first move your joystick horizontally, and then vertically. To invert the axes, first move your joystick vertically, and then horizontally. Tamama bastıktan sonra, joystikinizi önce yatay sonra dikey olarak hareket ettirin. Eksenleri ters çevirmek için, önce joystickinizi dikey sonra yatay olarak hareket ettirin. - + Center axis Ekseni merkezle - - + + Deadzone: %1% Ölü Bölge: %1% - - + + Modifier Range: %1% Düzenleyici Aralığı: %1% - - + + Pro Controller Pro Controller - + Dual Joycons İkili Joyconlar - + Left Joycon Sol Joycon - + Right Joycon Sağ Joycon - + Handheld Handheld - + GameCube Controller GameCube Kontrolcüsü - + Poke Ball Plus Poke Ball Plus - + NES Controller NES Kontrolcüsü - + SNES Controller SNES Kontrolcüsü - + N64 Controller N64 Kontrolcüsü - + Sega Genesis Sega Genesis - + Start / Pause Başlat / Duraklat - + Z Z - + Control Stick Kontrol Çubuğu - + C-Stick C-Çubuğu - + Shake! Salla! - + [waiting] [bekleniyor] - + New Profile Yeni Profil - + Enter a profile name: Bir profil ismi girin: - - + + Create Input Profile Kontrol Profili Oluştur - + The given profile name is not valid! Girilen profil ismi geçerli değil! - + Failed to create the input profile "%1" "%1" kontrol profili oluşturulamadı - + Delete Input Profile Kontrol Profilini Kaldır - + Failed to delete the input profile "%1" "%1" kontrol profili kaldırılamadı - + Load Input Profile Kontrol Profilini Yükle - + Failed to load the input profile "%1" "%1" kontrol profili yüklenemedi - + Save Input Profile Kontrol Profilini Kaydet - + Failed to save the input profile "%1" "%1" kontrol profili kaydedilemedi @@ -3999,7 +4094,7 @@ Eksenleri ters çevirmek için, önce joystickinizi dikey sonra yatay olarak har - + Configure Yapılandır @@ -4035,7 +4130,7 @@ Eksenleri ters çevirmek için, önce joystickinizi dikey sonra yatay olarak har - + Test Test @@ -4054,7 +4149,7 @@ Eksenleri ters çevirmek için, önce joystickinizi dikey sonra yatay olarak har <a href='https://yuzu-emu.org/wiki/using-a-controller-or-android-phone-for-motion-or-touch-input'><span style="text-decoration: underline; color:#039be5;">Daha Fazlası</span></a> - + %1:%2 %1:%2 @@ -4063,77 +4158,77 @@ Eksenleri ters çevirmek için, önce joystickinizi dikey sonra yatay olarak har yuzu - + <a href='https://eden-emulator.github.io/wiki/using-a-controller-or-android-phone-for-motion-or-touch-input'><span style="text-decoration: underline; color:#039be5;">Learn More</span></a> - + Port number has invalid characters Port numarasında geçersiz karakterler var - - - - - - - eden + + + + + + + Eden - + Port has to be in range 0 and 65353 Port 0 ila 65353 aralığında olmalıdır - + IP address is not valid IP adresi geçerli değil - + This UDP server already exists Bu UDP sunucusu zaten var - + Unable to add more than 8 servers 8'den fazla server eklenemez - + Testing Test Ediliyor - + Configuring Yapılandırılıyor - + Test Successful Test Başarılı - + Successfully received data from the server. Bilgi başarıyla sunucudan kaldırıldı. - + 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. Serverdan geçerli veri alınamadı.<br>Lütfen sunucunun doğru ayarlandığını ya da adres ve portun doğru olduğunu kontrol edin. - + UDP Test or calibration configuration is in progress.<br>Please wait for them to finish. UDP testi ya da yapılandırılması devrede.<br>Lütfen bitmesini bekleyin. @@ -4259,7 +4354,12 @@ Current values are %1% and %2% respectively. Ağ Arayüzü - + + Enable Airplane Mode + + + + None Hiçbiri @@ -4317,52 +4417,52 @@ Current values are %1% and %2% respectively. - + Add-Ons Eklentiler - + System Sistem - + CPU CPU - + Graphics Grafikler - + Adv. Graphics Gelişmiş Grafikler - + GPU Extensions - + Audio Ses - + Input Profiles Kontrol Profilleri - + Linux Linux - + Properties Özellikler @@ -4380,12 +4480,12 @@ Current values are %1% and %2% respectively. Eklentiler - + Patch Name Yama Adı - + Version Versiyon @@ -4423,27 +4523,32 @@ Current values are %1% and %2% respectively. Resim Belirle - + + Select Avatar + + + + Add Ekle - + Rename Yeniden Adlandır - + Remove Kaldır - + Profile management is available only when game is not running. Profil ayarlarına sadece oyun çalışmıyorken erişilebilir. - + %1 %2 %1 is the profile username, %2 is the formatted UUID (e.g. 00112233-4455-6677-8899-AABBCCDDEEFF)) @@ -4451,100 +4556,189 @@ Current values are %1% and %2% respectively. %2 - + Enter Username Kullanıcı Adınızı girin - + Users Kullanıcılar - + Enter a username for the new user: Yeni kullanıcı için yeni bir kullanıcı adı giriniz: - + Enter a new username: Yeni bir kullanıcı adı giriniz: - + + Error saving user image + + + + + Unable to save image to file + + + + Select User Image Kullanıcı Resmi Seçin - - JPEG Images (*.jpg *.jpeg) - JPEG Görüntüler (*.jpg *.jpeg) + + Image Formats (*.jpg *.jpeg *.png *.bmp) + - + + No firmware available + + + + + Please install the firmware to use firmware avatars. + + + + + + Error loading archive + + + + + Archive is not available. Please install/reinstall firmware. + + + + + Archive does not contain romfs. It is probably corrupt. + + + + + Error extracting archive + + + + + Archive could not be extracted. It is probably corrupt. + + + + + Error finding image directory + + + + + Failed to find image directory in the archive. + + + + + No images found + + + + + No avatar images were found in the archive. + + + + JPEG Images (*.jpg *.jpeg) + JPEG Görüntüler (*.jpg *.jpeg) + + + Error deleting image Resim silinirken hata oluştu - + Error occurred attempting to overwrite previous image at: %1. Eski resmin üzerine yazılmaya çalışırken hata oluştu: %1. - + Error deleting file Dosyayı silerken hata oluştu - + Unable to delete existing file: %1. Mevcut %1 dosyası silinemedi - + Error creating user image directory Kullanıcı görüntü klasörünü oluştururken hata - + Unable to create directory %1 for storing user images. Kullanıcı görüntülerini depolamak için %1 klasörü oluşturulamadı. - Error copying user image - Kullanıcı görüntüsünü kopyalarken hata + Kullanıcı görüntüsünü kopyalarken hata - Unable to copy image from %1 to %2 - Görüntü %1'den %2'ye kopyalanamadı + Görüntü %1'den %2'ye kopyalanamadı - Error resizing user image - Kullanıcı görüntüsünü yeniden boyutlandırma hatası + Kullanıcı görüntüsünü yeniden boyutlandırma hatası - Unable to resize image - Görüntü yeniden boyutlandırılamıyor + Görüntü yeniden boyutlandırılamıyor + + + + ConfigureProfileManagerAvatarDialog + + + Select + + + + + Cancel + + + + + Background Color + + + + + Select Firmware Avatar + ConfigureProfileManagerDeleteDialog - + Delete this user? All of the user's save data will be deleted. Kullanıcıyı silmek istediğinize emin misiniz? Kayıtlı oyun verileri de birlikte silinecek. - + Confirm Delete Silmeyi Onayla - + Name: %1 UUID: %2 İsim: %1 @@ -4597,7 +4791,7 @@ UUID: %2 - + Enable @@ -4608,7 +4802,7 @@ UUID: %2 - + Not connected Bağlantı yok @@ -4618,63 +4812,63 @@ UUID: %2 Varsayılana Döndür - + Clear Temizle - + [not set] [belirlenmedi] - + Invert axis Ekseni ters çevir - - + + Deadzone: %1% Ölü Bölge: %1% - + Error enabling ring input Ring giriş hatası - + Direct Joycon driver is not enabled Direkt Joycon sürücüsü açık değil - + Configuring Yapılandırılıyor - + The current mapped device doesn't support the ring controller Atanmış cihaz ring kontrolünü desteklemiyor - + The current mapped device doesn't have a ring attached Atanmış cihaza ring takılı değil - + The current mapped device is not connected - + Unexpected driver result %1 Beklenmeyen sürücü sonucu %1 - + [waiting] [bekleniyor] @@ -4716,7 +4910,7 @@ UUID: %2 - <html><head/><body><p>Reads controller input from scripts in the same format as TAS-nx scripts.<br/>For a more detailed explanation, please consult the <a href="https://eden-emulator.github.io/help/feature/tas/"><span style=" text-decoration: underline; color:#039be5;">help page</span></a> on the eden website.</p></body></html> + <html><head/><body><p>Reads controller input from scripts in the same format as TAS-nx scripts.<br/>For a more detailed explanation, please consult the <a href="https://eden-emulator.github.io/help/feature/tas/"><span style=" text-decoration: underline; color:#039be5;">help page</span></a> on the Eden website.</p></body></html> @@ -4768,12 +4962,12 @@ UUID: %2 ConfigureTasDialog - + TAS Configuration TAS Yapılandırması - + Select TAS Load Directory... Tas Yükleme Dizini Seçin @@ -4883,7 +5077,7 @@ Noktanın konumunu değiştirmek için sürükleyin ya da sayıların üstüne - Warning: The settings in this page affect the inner workings of eden's emulated touchscreen. Changing them may result in undesirable behavior, such as the touchscreen partially or not working. You should only use this page if you know what you are doing. + Warning: The settings in this page affect the inner workings of Eden's emulated touchscreen. Changing them may result in undesirable behavior, such as the touchscreen partially or not working. You should only use this page if you know what you are doing. @@ -5203,6 +5397,16 @@ Noktanın konumunu değiştirmek için sürükleyin ya da sayıların üstüne Web Web + + + Eden Web Service + + + + + Generate + + yuzu Web Service yuzu Web Servisi @@ -5212,42 +5416,29 @@ Noktanın konumunu değiştirmek için sürükleyin ya da sayıların üstüne 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. - - eden Web Service - - - - - By providing your username and token, you agree to allow eden to collect additional usage data, which may include user identifying information. - - - - Verify - Doğrula + Doğrula - Sign up - Kayıt Ol + Kayıt Ol - + Token: Token: - + Username: Kullanıcı Adı: - What is my token? - Tokenim nedir? + Tokenim nedir? - + Web Service configuration can only be changed when a public room isn't being hosted. Web Sunucu ayarları yalnızca halka açık bir oda sunulmuyorken değiştirilebilir. @@ -5272,12 +5463,12 @@ Noktanın konumunu değiştirmek için sürükleyin ya da sayıların üstüne Yeniden Oluştur - + Discord Presence Discord Görünümü - + Show Current Game in your Discord Status Şu anda oynadığın oyunu Discord'da durum olarak göster @@ -5286,24 +5477,8 @@ Noktanın konumunu değiştirmek için sürükleyin ya da sayıların üstüne <a href='https://yuzu-emu.org/help/feature/telemetry/'><span style="text-decoration: underline; color:#039be5;">Daha Fazlası</span></a> - <a href='https://profile.yuzu-emu.org/'><span style="text-decoration: underline; color:#039be5;">Sign up</span></a> - <a href='https://profile.yuzu-emu.org/'><span style="text-decoration: underline; color:#039be5;">Kayıt Ol</span></a> - - - - <a href='https://evilperson1337.notion.site/Hosting-a-Room-Inside-of-Eden-20457c2edaf680108abac6215a79acdb'><span style="text-decoration: underline; color:#039be5;">What is my token?</span></a> - - - - - Warning - - - - - Verification is currently nonfunctional, instead generate a random 48-character string with only lowercase a-z. - + <a href='https://profile.yuzu-emu.org/'><span style="text-decoration: underline; color:#039be5;">Kayıt Ol</span></a> <a href='https://yuzu-emu.org/wiki/yuzu-web-service/'><span style="text-decoration: underline; color:#039be5;">What is my token?</span></a> @@ -5326,10 +5501,9 @@ Noktanın konumunu değiştirmek için sürükleyin ya da sayıların üstüne Token doğrulanmadı. Tokeninize yapılan değişiklik kaydedilmedi. - Unverified, please click Verify before saving configuration Tooltip - Doğrulanmadı, lütfen konfigürasyonu kaydetmeden önce Doğrula tuşuna basın + Doğrulanmadı, lütfen konfigürasyonu kaydetmeden önce Doğrula tuşuna basın Verifying... @@ -5353,20 +5527,67 @@ Noktanın konumunu değiştirmek için sürükleyin ya da sayıların üstüne Verification failed. Check that you have entered your token correctly, and that your internet connection is working. Doğrulanma başarısız oldu. Kullanıcı adı ve tokeninizi doğru girdiğinizden ve internete bağlı olduğunuzdan. + + + + All Good + Tooltip + + + + + Must be between 4-20 characters + Tooltip + + + + + Must be 48 characters, and lowercase a-z + Tooltip + + ControllerDialog - + Controller P1 Kontrolcü O1 - + &Controller P1 &Kontrolcü O1 + + DepsDialog + + + Eden Dependencies + + + + + <html><head/><body><p><span style=" font-size:28pt;">Eden Dependencies</span></p></body></html> + + + + + <html><head/><body><p>The projects that make Eden possible</p></body></html> + + + + + Dependency + + + + + Version + Versiyon + + DirectConnect @@ -5472,7 +5693,12 @@ Noktanın konumunu değiştirmek için sürükleyin ya da sayıların üstüne - Creating a room failed. Please retry. Restarting eden might be necessary. + Creating a room failed. Please retry. Restarting Eden might be necessary. + + + + + Version mismatch! Please update to the latest version of Eden. If the problem persists, contact the room host and ask them to update the server. @@ -5480,11 +5706,6 @@ Noktanın konumunu değiştirmek için sürükleyin ya da sayıların üstüne The host of the room has banned you. Speak with the host to unban you or try a different room. Oda yöneticisi sizi odadan yasakladı. Yasağı kaldırmak için yönetici ile konuşun ya da başka bir oda deneyin. - - - Version mismatch! Please update to the latest version of eden. If the problem persists, contact the room host and ask them to update the server. - - Incorrect password. @@ -5546,7 +5767,7 @@ Lütfen Yapılandır -> Sistem -> Ağ'a gidip bir seçim yapınız.Telemetri - + Broken Vulkan Installation Detected Bozuk Vulkan Kurulumu Algılandı @@ -5555,106 +5776,105 @@ Lütfen Yapılandır -> Sistem -> Ağ'a gidip bir seçim yapınız.Açılışta Vulkan başlatılırken hata. Hata yardımını görüntülemek için <a href='https://yuzu-emu.org/wiki/faq/#yuzu-starts-with-the-error-broken-vulkan-installation-detected'>buraya tıklayın</a>. - + Running a game TRANSLATORS: This string is shown to the user to explain why yuzu needs to prevent the computer from sleeping - + Loading Web Applet... Web Uygulaması Yükleniyor... - - + + Disable Web Applet Web Uygulamasını Devre Dışı Bırak - + Disabling the web applet can lead to undefined behavior and should only be used with Super Mario 3D All-Stars. Are you sure you want to disable the web applet? (This can be re-enabled in the Debug settings.) Web uygulamasını kapatmak bilinmeyen hatalara neden olabileceğinden dolayı sadece Super Mario 3D All-Stars için kapatılması önerilir. Web uygulamasını kapatmak istediğinize emin misiniz? (Hata ayıklama ayarlarından tekrar açılabilir) - + The amount of shaders currently being built Şu anda derlenen shader miktarı - + The current selected resolution scaling multiplier. Geçerli seçili çözünürlük ölçekleme çarpanı. - + Current emulation speed. Values higher or lower than 100% indicate emulation is running faster or slower than a Switch. Geçerli emülasyon hızı. %100'den yüksek veya düşük değerler emülasyonun bir Switch'den daha hızlı veya daha yavaş ç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 şuanda saniye başına kaç kare gösterdiği. Bu oyundan oyuna ve sahneden sahneye değişiklik gösterir. - + Time taken to emulate a Switch frame, not counting framelimiting or v-sync. For full-speed emulation this should be at most 16.67 ms. Bir Switch 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ı. - + Unmute Sessizden çıkar - + Mute Sessize al - + Reset Volume - + &Clear Recent Files &Son Dosyaları Temizle - + &Continue &Devam Et - + &Pause &Duraklat - Warning Outdated Game Format - Uyarı, Eski Oyun Formatı + Uyarı, Eski Oyun Formatı You are using the deconstructed ROM directory format for this game, which is an outdated format that has been superseded by others such as NCA, NAX, XCI, or NSP. Deconstructed ROM directories lack icons, metadata, and update support.<br><br>For an explanation of the various Switch formats yuzu supports, <a href='https://yuzu-emu.org/wiki/overview-of-switch-game-formats'>check out our wiki</a>. This message will not be shown again. Bu oyun için dekonstrükte ROM formatı kullanıyorsunuz, bu fromatın yerine NCA, NAX, XCI ve NSP formatları kullanılmaktadır. Dekonstrükte ROM formatları ikon, üst veri ve güncelleme desteği içermemektedir.<br><br>Yuzu'nun desteklediği çeşitli Switch formatları için<a href='https://yuzu-emu.org/wiki/overview-of-switch-game-formats'>Wiki'yi ziyaret edin</a>. Bu mesaj yeniden gösterilmeyecektir. - - + + Error while loading ROM! ROM yüklenirken hata oluştu! - + The ROM format is not supported. Bu ROM biçimi desteklenmiyor. - + An error occurred initializing the video core. Video çekirdeğini başlatılırken bir hata oluştu. @@ -5663,7 +5883,7 @@ Lütfen Yapılandır -> Sistem -> Ağ'a gidip bir seçim yapınız.yuzu video çekirdeğini çalıştırırken bir hatayla karşılaştı. Bu sorun genellikle eski GPU sürücüleri sebebiyle ortaya çıkar. Daha fazla detay için lütfen log dosyasına bakın. Log dosyasını incelemeye dair daha fazla bilgi için lütfen bu sayfaya ulaşın: <a href='https://yuzu-emu.org/help/reference/log-files/'>Log dosyası nasıl yüklenir</a>. - + Error while loading ROM! %1 %1 signifies a numeric error code. ROM yüklenirken hata oluştu! %1 @@ -5674,1025 +5894,881 @@ Lütfen Yapılandır -> Sistem -> Ağ'a gidip bir seçim yapınız.%1<br>Lütfen dosyalarınızı yeniden dump etmek için<a href='https://yuzu-emu.org/help/quickstart/'>yuzu hızlı başlangıç kılavuzu'nu</a> takip edin.<br> Yardım için yuzu wiki</a>veya yuzu Discord'una</a> bakabilirsiniz. - + Vulkan initialization failed during boot.<br><br>Click <a href='https://eden-emulator.github.io/wiki/faq/#yuzu-starts-with-the-error-broken-vulkan-installation-detected'>here for instructions to fix the issue</a>. - - Game Updates Warning - - - - - The game you are trying to launch is known to have performance or booting issues when updates are applied. Please try increasing the memory layout to 6GB or 8GB if any issues occur.<br><br>Press "OK" to continue launching, or "Cancel" to cancel the launch. - - - - - Don't show again for this game - - - - - You are using the deconstructed ROM directory format for this game, which is an outdated format that has been superseded by others such as NCA, NAX, XCI, or NSP. Deconstructed ROM directories lack icons, metadata, and update support.<br><br>For an explanation of the various Switch formats eden supports, <a href='https://eden-emulator.github.io/wiki/overview-of-switch-game-formats'>check out our wiki</a>. This message will not be shown again. - - - - - eden has encountered an error while running the video core. This is usually caused by outdated GPU drivers, including integrated ones. Please see the log for more details. For more information on accessing the log, please see the following page: <a href='https://eden-emulator.github.io/help/reference/log-files/'>How to Upload the Log File</a>. - - - - - %1<br>Please redump your files or ask on Discord for help. - %1 signifies an error string. - - - - + An unknown error occurred. Please see the log for more details. Bilinmeyen bir hata oluştu. Lütfen daha fazla detay için kütüğe göz atınız. - + (64-bit) (64-bit) - + (32-bit) (32-bit) - + %1 %2 %1 is the title name. %2 indicates if the title is 64-bit or 32-bit %1 %2 - + Closing software... Yazılım kapatılıyor... - + Save Data Kayıt Verisi - + Mod Data Mod Verisi - + Error Opening %1 Folder %1 klasörü açılırken hata - - + + Folder does not exist! Klasör mevcut değil! - Error Opening Transferable Shader Cache - Transfer Edilebilir Shader Cache'ini Açarken Bir Hata Oluştu + Transfer Edilebilir Shader Cache'ini Açarken Bir Hata Oluştu - Failed to create the shader cache directory for this title. - Bu oyun için shader cache konumu oluşturulamadı. + Bu oyun için shader cache konumu oluşturulamadı. - Error Removing Contents - İçerik Kaldırma Hatası + İçerik Kaldırma Hatası - Error Removing Update - Güncelleme Kaldırma hatası + Güncelleme Kaldırma hatası - Error Removing DLC - DLC Kaldırma Hatası + DLC Kaldırma Hatası - + Remove Installed Game Contents? Yüklenmiş Oyun İçeriğini Kaldırmak İstediğinize Emin Misiniz? - + Remove Installed Game Update? Yüklenmiş Oyun Güncellemesini Kaldırmak İstediğinize Emin Misiniz? - + Remove Installed Game DLC? Yüklenmiş DLC'yi Kaldırmak İstediğinize Emin Misiniz? - + Remove Entry Girdiyi Kaldır - - - - - - Successfully Removed - Başarıyla Kaldırıldı + Başarıyla Kaldırıldı - Successfully removed the installed base game. - Yüklenmiş oyun başarıyla kaldırıldı. + Yüklenmiş oyun başarıyla kaldırıldı. - The base game is not installed in the NAND and cannot be removed. - Asıl oyun NAND'de kurulu değil ve kaldırılamaz. + Asıl oyun NAND'de kurulu değil ve kaldırılamaz. - Successfully removed the installed update. - Yüklenmiş güncelleme başarıyla kaldırıldı. + Yüklenmiş güncelleme başarıyla kaldırıldı. - There is no update installed for this title. - Bu oyun için yüklenmiş bir güncelleme yok. + Bu oyun için yüklenmiş bir güncelleme yok. - There are no DLC installed for this title. - Bu oyun için yüklenmiş bir DLC yok. + Bu oyun için yüklenmiş bir DLC yok. - Successfully removed %1 installed DLC. - %1 yüklenmiş DLC başarıyla kaldırıldı. + %1 yüklenmiş DLC başarıyla kaldırıldı. - + Delete OpenGL Transferable Shader Cache? OpenGL Transfer Edilebilir Shader Cache'ini Kaldırmak İstediğinize Emin Misiniz? - + Delete Vulkan Transferable Shader Cache? Vulkan Transfer Edilebilir Shader Cache'ini Kaldırmak İstediğinize Emin Misiniz? - + Delete All Transferable Shader Caches? Tüm Transfer Edilebilir Shader Cache'leri Kaldırmak İstediğinize Emin Misiniz? - + Remove Custom Game Configuration? Oyuna Özel Yapılandırmayı Kaldırmak İstediğinize Emin Misiniz? - + Remove Cache Storage? - + Remove File Dosyayı Sil - + Remove Play Time Data - + Reset play time? - - Error Removing Transferable Shader Cache - Transfer Edilebilir Shader Cache Kaldırılırken Bir Hata Oluştu + Transfer Edilebilir Shader Cache Kaldırılırken Bir Hata Oluştu - - A shader cache for this title does not exist. - Bu oyun için oluşturulmuş bir shader cache yok. + Bu oyun için oluşturulmuş bir shader cache yok. - Successfully removed the transferable shader cache. - Transfer edilebilir shader cache başarıyla kaldırıldı. + Transfer edilebilir shader cache başarıyla kaldırıldı. - Failed to remove the transferable shader cache. - Transfer edilebilir shader cache kaldırılamadı. + Transfer edilebilir shader cache kaldırılamadı. - Error Removing Vulkan Driver Pipeline Cache - Vulkan Pipeline Önbelleği Kaldırılırken Hata + Vulkan Pipeline Önbelleği Kaldırılırken Hata - Failed to remove the driver pipeline cache. - Sürücü pipeline önbelleği kaldırılamadı. + Sürücü pipeline önbelleği kaldırılamadı. - - Error Removing Transferable Shader Caches - Transfer Edilebilir Shader Cache'ler Kaldırılırken Bir Hata Oluştu + Transfer Edilebilir Shader Cache'ler Kaldırılırken Bir Hata Oluştu - Successfully removed the transferable shader caches. - Transfer edilebilir shader cacheler başarıyla kaldırıldı. + Transfer edilebilir shader cacheler başarıyla kaldırıldı. - Failed to remove the transferable shader cache directory. - Transfer edilebilir shader cache konumu kaldırılamadı. + Transfer edilebilir shader cache konumu kaldırılamadı. - - Error Removing Custom Configuration - Oyuna Özel Yapılandırma Kaldırılırken Bir Hata Oluştu. + Oyuna Özel Yapılandırma Kaldırılırken Bir Hata Oluştu. - A custom configuration for this title does not exist. - Bu oyun için bir özel yapılandırma yok. + Bu oyun için bir özel yapılandırma yok. - Successfully removed the custom game configuration. - Oyuna özel yapılandırma başarıyla kaldırıldı. + Oyuna özel yapılandırma başarıyla kaldırıldı. - Failed to remove the custom game configuration. - Oyuna özel yapılandırma kaldırılamadı. + Oyuna özel yapılandırma kaldırılamadı. - - + + RomFS Extraction Failed! RomFS Çıkartımı Başarısız! - + There was an error copying the RomFS files or the user cancelled the operation. RomFS dosyaları kopyalanırken bir hata oluştu veya kullanıcı işlemi iptal etti. - + Full Full - + Skeleton Çerçeve - + Select RomFS Dump Mode RomFS Dump Modunu Seçiniz - + Please select the how you would like the RomFS dumped.<br>Full will copy all of the files into the new directory while <br>skeleton will only create the directory structure. Lütfen RomFS'in nasıl dump edilmesini istediğinizi seçin.<br>"Full" tüm dosyaları yeni bir klasöre kopyalarken <br>"skeleton" sadece klasör yapısını oluşturur. - + There is not enough free space at %1 to extract the RomFS. Please free up space or select a different dump directory at Emulation > Configure > System > Filesystem > Dump Root %1 konumunda RomFS çıkarmaya yetecek alan yok. Lütfen yer açın ya da Emülasyon > Yapılandırma > Sistem > Dosya Sistemi > Dump konumu kısmından farklı bir çıktı konumu belirleyin. - + Extracting RomFS... RomFS çıkartılıyor... - - - - - + + Cancel İptal - + RomFS Extraction Succeeded! RomFS Çıkartımı Başarılı! - - - + The operation completed successfully. İşlem başarıyla tamamlandı. - - Integrity verification couldn't be performed! - - - - - File contents were not checked for validity. - - - - - - Verifying integrity... - - - - - - Integrity verification succeeded! - - - - - - Integrity verification failed! - - - - - File contents may be corrupt. - - - - - - - Create Shortcut - Kısayol Oluştur + Kısayol Oluştur - - Do you want to launch the game in fullscreen? - - - - Successfully created a shortcut to %1 - %1 dizinine kısayol oluşturuldu + %1 dizinine kısayol oluşturuldu - This will create a shortcut to the current AppImage. This may not work well if you update. Continue? - Bu seçenek, şu anki AppImage dosyasının kısayolunu oluşturacak. Uygulama güncellenirse kısayol çalışmayabilir. Devam edilsin mi? + Bu seçenek, şu anki AppImage dosyasının kısayolunu oluşturacak. Uygulama güncellenirse kısayol çalışmayabilir. Devam edilsin mi? - - Failed to create a shortcut to %1 + Create Icon + Simge Oluştur + + + Cannot create icon file. Path "%1" does not exist and cannot be created. + Simge dosyası oluşturulamadı. "%1" dizini yok ve oluşturulamıyor. + + + + Warning: Outdated Game Format - - Create Icon - Simge Oluştur + + You are using the deconstructed ROM directory format for this game, which is an outdated format that has been superseded by others such as NCA, NAX, XCI, or NSP. Deconstructed ROM directories lack icons, metadata, and update support.<br><br>For an explanation of the various Switch formats Eden supports, <a href='https://eden-emulator.github.io/wiki/overview-of-switch-game-formats'>check out our wiki</a>. This message will not be shown again. + - - Cannot create icon file. Path "%1" does not exist and cannot be created. - Simge dosyası oluşturulamadı. "%1" dizini yok ve oluşturulamıyor. + + Eden has encountered an error while running the video core. This is usually caused by outdated GPU drivers, including integrated ones. Please see the log for more details. For more information on accessing the log, please see the following page: <a href='https://yuzu-mirror.github.io/help/reference/log-files/'>How to Upload the Log File</a>. + - + + %1<br>Please redump your files or ask on Discord/Revolt for help. + %1 signifies an error string. + + + + Error Opening %1 %1 Açılırken Bir Hata Oluştu - + Select Directory Klasör Seç - + Properties Özellikler - + The game properties could not be loaded. Oyun özellikleri yüklenemedi. - + Switch Executable (%1);;All Files (*.*) %1 is an identifier for the Switch executable file extensions. Switch Çalıştırılabilir Dosyası (%1);;Tüm Dosyalar (*.*) - + Load File Dosya Aç - + Open Extracted ROM Directory Çıkartılmış ROM klasörünü aç - + Invalid Directory Selected Geçersiz Klasör Seçildi - + The directory you have selected does not contain a 'main' file. Seçtiğiniz klasör bir "main" dosyası içermiyor. - + Installable Switch File (*.nca *.nsp *.xci);;Nintendo Content Archive (*.nca);;Nintendo Submission Package (*.nsp);;NX Cartridge Image (*.xci) Yüklenilebilir Switch Dosyası (*.nca *.nsp *.xci);;Nintendo Content Archive (*.nca);;Nintendo Submissions Package (*.nsp);;NX Cartridge Image (*.xci) - + Install Files Dosya Kur - + %n file(s) remaining %n dosya kaldı + %n dosya kaldı - + Installing file "%1"... "%1" dosyası kuruluyor... - - + + Install Results Kurulum Sonuçları - + To avoid possible conflicts, we discourage users from installing base games to the NAND. Please, only use this feature to install updates and DLC. Olası çakışmaları önlemek için oyunları NAND'e yüklememenizi tavsiye ediyoruz. Lütfen bu özelliği sadece güncelleme ve DLC yüklemek için kullanın. - + %n file(s) were newly installed - %n dosya güncel olarak yüklendi - + %n dosya güncel olarak yüklendi + %n dosya güncel olarak yüklendi - + %n file(s) were overwritten - %n dosyanın üstüne yazıldı - + %n dosyanın üstüne yazıldı + %n dosyanın üstüne yazıldı - + %n file(s) failed to install - %n dosya yüklenemedi - + %n dosya yüklenemedi + %n dosya yüklenemedi - + System Application Sistem Uygulaması - + System Archive Sistem Arşivi - + System Application Update Sistem Uygulama Güncellemesi - + Firmware Package (Type A) Yazılım Paketi (Tür A) - + Firmware Package (Type B) Yazılım Paketi (Tür B) - + Game Oyun - + Game Update Oyun Güncellemesi - + Game DLC Oyun DLC'si - + Delta Title Delta Başlık - + Select NCA Install Type... NCA Kurulum Tipi Seçin... - + Please select the type of title you would like to install this NCA as: (In most instances, the default 'Game' is fine.) Lütfen bu NCA dosyası için belirlemek istediğiniz başlık türünü seçiniz: (Çoğu durumda, varsayılan olan 'Oyun' kullanılabilir.) - + Failed to Install Kurulum Başarısız Oldu - + The title type you selected for the NCA is invalid. NCA için seçtiğiniz başlık türü geçersiz - + File not found Dosya Bulunamadı - + File "%1" not found Dosya "%1" Bulunamadı - + OK Tamam - - + + Hardware requirements not met Donanım gereksinimleri karşılanmıyor - - + + Your system does not meet the recommended hardware requirements. Compatibility reporting has been disabled. Sisteminiz, önerilen donanım gereksinimlerini karşılamıyor. Uyumluluk raporlayıcı kapatıldı. - + Missing yuzu Account Kayıp yuzu Hesabı - - In order to submit a game compatibility test case, you must link your eden account.<br><br/>To link your eden account, go to Emulation &gt; Configuration &gt; Web. + + In order to submit a game compatibility test case, you must set up your web token and username.<br><br/>To link your eden account, go to Emulation &gt; Configuration &gt; Web. - - Install decryption keys and restart eden before attempting to install firmware. + + Select Dumped Firmware ZIP - - Firmware installation cancelled, firmware may be in bad state, restart eden or re-install firmware. + + Zipped Archives (*.zip) - - Encryption keys are missing. + + Firmware cleanup failed - - Are you sure you want to close eden? + + Failed to clean up extracted firmware cache. +Check write permissions in the system temp directory and try again. +OS reported error: %1 - - - - eden + + Please install firmware to use the Album applet. - - The currently running application has requested eden to not exit. + + Please install firmware to use the Cabinet applet. + + + + + Please install firmware to use the Mii editor. + + + + + Please install firmware to use the Controller Menu. + + + + + Please install firmware to use the Home Menu. + + + + + Firmware Corrupted + + + + + Firmware Too New + + + + + +Continue anyways? + + + + + Don't show again + + + + + Please install firmware to use Starter. + + + + + Are you sure you want to close Eden? + + + + + + + Eden + + + + + The currently running application has requested Eden to not exit. Would you like to bypass this and exit anyway? + + + Encryption keys are missing. + + In order to submit a game compatibility test case, you must link your yuzu account.<br><br/>To link your yuzu account, go to Emulation &gt; Configuration &gt; Web. Oyun uyumluluk test çalışması göndermek için öncelikle yuzu hesabınla giriş yapmanız gerekiyor.<br><br/>Yuzu hesabınızla giriş yapmak için, Emülasyon &gt; Yapılandırma &gt; Web'e gidiniz. - + Error opening URL URL açılırken bir hata oluştu - + Unable to open the URL "%1". URL "%1" açılamıyor. - + TAS Recording TAS kayıtta - + Overwrite file of player 1? Oyuncu 1'in dosyasının üstüne yazılsın mı? - + Invalid config detected Geçersiz yapılandırma tespit edildi - + Handheld controller can't be used on docked mode. Pro controller will be selected. Handheld kontrolcü dock modunda kullanılamaz. Pro kontrolcü seçilecek. - - + + Amiibo Amiibo - - + + The current amiibo has been removed Amiibo kaldırıldı - + Error Hata - - + + The current game is not looking for amiibos Aktif oyun amiibo beklemiyor - + Amiibo File (%1);; All Files (*.*) Amiibo Dosyası (%1);; Tüm Dosyalar (*.*) - + Load Amiibo Amiibo Yükle - + Error loading Amiibo data Amiibo verisi yüklenirken hata - + The selected file is not a valid amiibo Seçtiğiniz dosya geçerli bir amiibo değil - + The selected file is already on use Seçtiğiniz dosya hali hazırda kullanılıyor - + An unknown error occurred Bilinmeyen bir hata oluştu - - - Verification failed for the following files: - -%1 - - - - + + Keys not installed - + + + Install decryption keys and restart Eden before attempting to install firmware. + + + + Select Dumped Firmware Source Location - - Installing Firmware... - - - - - - - - Firmware install failed - - - - - Unable to locate potential firmware NCA files - - - - - Failed to delete one or more firmware file. - - - - - One or more firmware files failed to copy into NAND. - - - - - Firmware integrity verification failed! - - - - - Select Dumped Keys Location - - - - - - - Decryption Keys install failed - - - - - prod.keys is a required decryption key file. - - - - - One or more keys failed to copy. - - - - - Decryption Keys install succeeded - - - - - Decryption Keys were successfully installed - - - - - Decryption Keys failed to initialize. Check that your dumping tools are up to date and re-dump keys. - - - - - - - - - - + + + + + + No firmware available - - Please install the firmware to use the Album applet. - - - - + Album Applet - + Album applet is not available. Please reinstall firmware. - - Please install the firmware to use the Cabinet applet. - - - - + Cabinet Applet - + Cabinet applet is not available. Please reinstall firmware. - - Please install the firmware to use the Mii editor. - - - - + Mii Edit Applet - + Mii editor is not available. Please reinstall firmware. - - Please install the firmware to use the Controller Menu. - - - - + Controller Applet Kontrolcü Uygulaması - + Controller Menu is not available. Please reinstall firmware. - - Please install the firmware to use the Home Menu. - - - - - + Home Menu Applet - - + Home Menu is not available. Please reinstall firmware. - - Please install the firmware to use Starter. - - - - + Starter Applet - + Starter is not available. Please reinstall firmware. - - Please install firmware to use the home menu. - - - - + Capture Screenshot Ekran Görüntüsü Al - + PNG Image (*.png) PNG görüntüsü (*.png) - + Update Available - + Update %1 for Eden is available. Would you like to download it? - + TAS state: Running %1/%2 TAS durumu: %1%2 çalışıyor - + TAS state: Recording %1 TAS durumu: %1 kaydediliyor - + TAS state: Idle %1/%2 TAS durumu: %1%2 boşta - + TAS State: Invalid TAS durumu: Geçersiz - + &Stop Running &Çalıştırmayı durdur - + &Start &Başlat - + Stop R&ecording K&aydetmeyi Durdur - + R&ecord K&aydet - + Building: %n shader(s) Oluşturuluyor: %n shader + Oluşturuluyor: %n shader - + Scale: %1x %1 is the resolution scaling factor Ölçek: %1x - + Speed: %1% / %2% Hız %1% / %2% - + Speed: %1% Hız: %1% @@ -6701,54 +6777,54 @@ Would you like to download it? Oyun: %1 FPS (Sınırsız) - + Game: %1 FPS Oyun: %1 FPS - + Frame: %1 ms Kare: %1 ms - + %1 %2 %1 %2 - - + + FSR FSR - + NO AA AA YOK - + VOLUME: MUTE SES: KAPALI - + VOLUME: %1% Volume percentage (e.g. 50%) SES: %%1 - + Derivation Components Missing Türeten Bileşenleri Kayıp - + Select RomFS Dump Target RomFS Dump Hedefini Seçiniz - + Please select which RomFS you would like to dump. Lütfen dump etmek istediğiniz RomFS'i seçiniz. @@ -6761,7 +6837,7 @@ Would you like to download it? yuzu - + Are you sure you want to stop the emulation? Any unsaved progress will be lost. Emülasyonu durdurmak istediğinizden emin misiniz? Kaydedilmemiş veriler kaybolur. @@ -6774,102 +6850,102 @@ Would you like to bypass this and exit anyway? Görmezden gelip kapatmak ister misiniz? - + None Yok - + FXAA FXAA - + SMAA SMAA - + Nearest - + Bilinear Bilinear - + Bicubic Bicubic - + Gaussian Gausyen - + ScaleForce ScaleForce - + Area - + Docked Dock Modu Aktif - + Handheld Taşınabilir - + Normal Normal - + High Yüksek - + Extreme Ekstrem - + Vulkan Vulkan - + OpenGL OpenGL - + Null - + GLSL - + GLASM - + SPIRV @@ -6877,13 +6953,13 @@ Görmezden gelip kapatmak ister misiniz? GRenderWindow - - + + OpenGL not available! OpenGL kullanıma uygun değil! - + OpenGL shared contexts are not supported. OpenGL paylaşılan bağlam desteklenmiyor. @@ -6892,33 +6968,33 @@ Görmezden gelip kapatmak ister misiniz? Yuzu OpenGL desteklememektedir. - - eden has not been compiled with OpenGL support. + + Eden has not been compiled with OpenGL support. - - + + Error while initializing OpenGL! OpenGl başlatılırken bir hata oluştu! - + Your GPU may not support OpenGL, or you do not have the latest graphics driver. GPU'nuz OpenGL desteklemiyor veya güncel bir grafik sürücüsüne sahip değilsiniz. - + Error while initializing OpenGL 4.6! OpenGl 4.6 başlatılırken bir hata oluştu! - + Your GPU may not support OpenGL 4.6, or you do not have the latest graphics driver.<br><br>GL Renderer:<br>%1 GPU'nuz OpenGL 4.6'yı desteklemiyor veya güncel bir grafik sürücüsüne sahip değilsiniz.<br><br>GL Renderer:<br>%1 - + Your GPU may not support one or more required OpenGL extensions. Please ensure you have the latest graphics driver.<br><br>GL Renderer:<br>%1<br><br>Unsupported extensions:<br>%2 GPU'nuz gereken bir yada daha fazla OpenGL eklentisini desteklemiyor Lütfen güncel bir grafik sürücüsüne sahip olduğunuzdan emin olun.<br><br>GL Renderer:<br>%1<br><br> Desteklenmeyen Eklentiler:<br>%2 @@ -6926,128 +7002,128 @@ Görmezden gelip kapatmak ister misiniz? GameList - + Favorite Favori - + Start Game Oyunu Başlat - + Start Game without Custom Configuration Oyunu Özel Yapılandırma Olmadan Başlat - + Open Save Data Location Kayıt Dosyası Konumunu Aç - + Open Mod Data Location Mod Dosyası Konumunu Aç - + Open Transferable Pipeline Cache Transfer Edilebilir Pipeline Cache'ini Aç - + Remove Kaldır - + Remove Installed Update Yüklenmiş Güncellemeleri Kaldır - + Remove All Installed DLC Yüklenmiş DLC'leri Kaldır - + Remove Custom Configuration Oyuna Özel Yapılandırmayı Kaldır - + Remove Play Time Data - + Remove Cache Storage - + Remove OpenGL Pipeline Cache OpenGL Pipeline Cache'ini Kaldır - + Remove Vulkan Pipeline Cache Vulkan Pipeline Cache'ini Kaldır - + Remove All Pipeline Caches Bütün Pipeline Cache'lerini Kaldır - + Remove All Installed Contents Tüm Yüklenmiş İçeriği Kaldır - + Dump RomFS RomFS Dump Et - + Dump RomFS to SDMC RomFS'i SDMC'ye çıkar. - + Verify Integrity - + Copy Title ID to Clipboard Title ID'yi Panoya Kopyala - + Navigate to GameDB entry GameDB sayfasına yönlendir - + Create Shortcut Kısayol Oluştur - + Add to Desktop Masaüstüne Ekle - + Add to Applications Menu Uygulamalar Menüsüne Ekl - + Configure Game @@ -7056,62 +7132,62 @@ Görmezden gelip kapatmak ister misiniz? Özellikler - + Scan Subfolders Alt Klasörleri Tara - + Remove Game Directory Oyun Konumunu Kaldır - + ▲ Move Up ▲Yukarı Git - + ▼ Move Down ▼Aşağı Git - + Open Directory Location Oyun Dosyası Konumunu Aç - + Clear Temizle - + Name İsim - + Compatibility Uyumluluk - + Add-ons Eklentiler - + File type Dosya türü - + Size Boyut - + Play time @@ -7119,62 +7195,62 @@ Görmezden gelip kapatmak ister misiniz? GameListItemCompat - + Ingame Oyunda - + Game starts, but crashes or major glitches prevent it from being completed. Oyun başlatılabiliyor, fakat bariz hatalardan veya çökme sorunlarından dolayı bitirilemiyor. - + Perfect Mükemmel - + Game can be played without issues. Oyun sorunsuz bir şekilde oynanabiliyor. - + Playable Oynanabilir - + Game functions with minor graphical or audio glitches and is playable from start to finish. Oyun küçük grafik veya ses hatalarıyla çalışıyor ve baştan sona kadar oynanabilir. - + Intro/Menu İntro/Menü - + Game loads, but is unable to progress past the Start Screen. Oyun açılıyor, fakat ana menüden ileri gidilemiyor. - + 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. @@ -7182,7 +7258,7 @@ Görmezden gelip kapatmak ister misiniz? GameListPlaceholder - + Double-click to add a new folder to the game list Oyun listesine yeni bir klasör eklemek için çift tıklayın. @@ -7190,19 +7266,20 @@ Görmezden gelip kapatmak ister misiniz? GameListSearchField - + %1 of %n result(s) %n sonucun %1'i + %n sonucun %1'i - + Filter: Filtre: - + Enter pattern to filter Filtrelemek için bir düzen giriniz @@ -7284,7 +7361,7 @@ Görmezden gelip kapatmak ister misiniz? - Failed to announce the room to the public lobby. In order to host a room publicly, you must have a valid eden account configured in Emulation -> Configure -> Web. If you do not want to publish a room in the public lobby, then select Unlisted instead. + Failed to announce the room to the public lobby. In order to host a room publicly, you must have a valid Eden 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: @@ -7297,190 +7374,190 @@ Debug Message: Hotkeys - + Audio Mute/Unmute Sesi Sustur/Aç - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Main Window Ana Pencere - + Audio Volume Down Ses Kapa - + Audio Volume Up Ses Aç - + Capture Screenshot Ekran Görüntüsü Al - + Change Adapting Filter Uyarlanan Filtreyi Değiştir - + Change Docked Mode Takılı Modu Kullan - + Change GPU Accuracy GPU Doğruluğunu Değiştir - + Configure Yapılandır - + Configure Current Game - + Continue/Pause Emulation Sürdür/Emülasyonu duraklat - + Exit Fullscreen Tam Ekrandan Çık + + + Exit Eden + + Exit yuzu Yuzu'dan çık - - Exit eden - - - - + Fullscreen Tam Ekran - + Load File Dosya Aç - + Load/Remove Amiibo Amiibo Yükle/Kaldır - + Multiplayer Browse Public Game Lobby - + Multiplayer Create Room - + Multiplayer Direct Connect to Room - + Multiplayer Leave Room - + Multiplayer Show Current Room - + Restart Emulation Emülasyonu Yeniden Başlat - + Stop Emulation Emülasyonu Durdur - + TAS Record TAS Kaydet - + TAS Reset TAS Sıfırla - + TAS Start/Stop TAS Başlat/Durdur - + Toggle Filter Bar Filtre Çubuğunu Aç/Kapa - + Toggle Framerate Limit FPS Limitini Aç/Kapa - + Toggle Mouse Panning Mouse ile Kaydırmayı Aç/Kapa - + Toggle Renderdoc Capture - + Toggle Status Bar Durum Çubuğunu Aç/Kapa @@ -7488,22 +7565,22 @@ Debug Message: InstallDialog - + Please confirm these are the files you wish to install. Lütfen yüklemek istediğiniz dosyaların bu dosyalar olduğunu doğrulayın. - + Installing an Update or DLC will overwrite the previously installed one. Bir Güncelleme ya da DLC yüklemek daha önce yüklenmiş olanların üstüne yazacaktır. - + Install Kur - + Install Files to NAND NAND'e Dosya Kur @@ -7511,7 +7588,7 @@ Debug Message: LimitableInputDialog - + The text can't contain any of the following characters: %1 Yazı bu karakterleri içeremez: @@ -7658,152 +7735,207 @@ Debug Message: &Son kullanılan Dosyalar - + + Open &Eden Folders + + + + &Emulation &Emülasyon - + &View &Görünüm - + &Reset Window Size &Pencere Boyutunu Sıfırla - + &Debugging &Hata Ayıklama - + Reset Window Size to &720p Pencere Boyutunu &720p'ye Sıfırla - + Reset Window Size to 720p Pencere Boyutunu 720p'ye Sıfırla - + Reset Window Size to &900p Pencere Boyutunu &900p'ye Sıfırla - + Reset Window Size to 900p Pencere Boyutunu 900p'ye Sıfırla - + Reset Window Size to &1080p Pencere Boyutunu &1080p'ye Sıfırla - + Reset Window Size to 1080p Pencere Boyutunu 1080p'ye Sıfırla - + &Multiplayer &Çok Oyunculu - + &Tools &Aletler - + &Amiibo &Amiibo - + &TAS &TAS - + &Create Home Menu Shortcut - + &Help &Yardım - + &Install Files to NAND... &NAND'e Dosya Kur... - + L&oad File... &Dosyayı Yükle... - + Load &Folder... &Klasörü Yükle... - + E&xit &Çıkış - + &Pause &Duraklat - + &Stop Du&rdur - + &Verify Installed Contents - - &About eden + + &Root Data Folder - - Open &eden Folder + + &NAND Folder - + + &SDMC Folder + + + + + &Mod Folder + + + + + &Log Folder + + + + + From Folder + + + + + From ZIP + + + + + &X + + + + + X (Twitter) + + + + + &Revolt + + + + + Revolt + + + + + &Eden Dependencies + + + + Open Home Menu - + &Discord - + Open &Setup - + &Desktop - + &Application Menu @@ -7812,97 +7944,97 @@ Debug Message: &Yuzu Hakkında - + Single &Window Mode &Tek Pencere Modu - + Con&figure... &Yapılandır... - + Ctrl+, - + Display D&ock Widget Headers D&ock Widget Başlıkları'nı Göster - + Show &Filter Bar &Filtre Çubuğu'nu Göster - + Show &Status Bar &Durum Çubuğu'nu Göster - + Show Status Bar Durum Çubuğunu Göster - + &Browse Public Game Lobby &Herkese Açık Oyun Lobilerine Göz At - + &Create Room &Oda Oluştur - + &Leave Room &Odadan Ayrıl - + &Direct Connect to Room &Odaya Direkt Bağlan - + &Show Current Room &Şu Anki Odayı Göster - + F&ullscreen &Tam Ekran - + &Restart &Yeniden Başlat - + Load/Remove &Amiibo... &Amiibo Yükle/Kaldır - + &Report Compatibility &Uyumluluk Bildir - + Open &Mods Page &Mod Sayfasını Aç - + Open &Quickstart Guide &Hızlı Başlangıç Kılavuzunu Aç - + &FAQ &SSS @@ -7911,77 +8043,82 @@ Debug Message: &yuzu Klasörünü Aç - + &Capture Screenshot &Ekran Görüntüsü Al - + Open &Album - + &Set Nickname and Owner - + &Delete Game Data - + &Restore Amiibo - + &Format Amiibo - + Open &Mii Editor - + &Configure TAS... &TAS'i Ayarla... - + Configure C&urrent Game... &Geçerli Oyunu Yapılandır... - + &Start B&aşlat - + &Reset &Sıfırla - + R&ecord K&aydet - + Open &Controller Menu - + Install Firmware - + + &About Eden + + + + Install Decryption Keys @@ -7989,26 +8126,36 @@ Debug Message: MicroProfileDialog - &MicroProfile - &MicroProfile + &MicroProfile MigrationWorker - + Data was migrated successfully. - + Linking the old directory failed. You may need to re-run with administrative privileges on Windows. OS gave error: %1 - + + + +Note that your configuration and data will be shared with %1. +If this is not desirable, delete the following files: +%2 +%3 +%4 + + + + If you wish to clean up the files which were left in the old data location, you can do so by deleting the following directory: @@ -8068,37 +8215,37 @@ If you wish to clean up the files which were left in the old data location, you MultiplayerState - + Current connection status Anlık bağlantı durumu - + Not Connected. Click here to find a room! Bağlantı Yok. Oda bulmak için buraya basın! - + Not Connected Bağlantı Yok - + Connected Bağlandı - + New Messages Received Yeni Mesaj Alındı - + Error Hata - + Failed to update the room information. Please check your Internet connection and try hosting the room again. Debug Message: Oda bilgisi güncellenemedi. Lütfen İnternet bağlantınızı kontrol edin ve yeniden bir oda açmayı deneyin. @@ -8290,56 +8437,56 @@ p, li { white-space: pre-wrap; } Şu anda oyun oynamıyor - + Installed SD Titles Yüklenmiş SD Oyunları - + Installed NAND Titles Yüklenmiş NAND Oyunları - + System Titles Sistemde Yüklü Oyunlar - + Add New Game Directory Yeni Oyun Konumu Ekle - + Favorites Favoriler - - + + Shift Shift - - + + Ctrl Ctrl - - + + Alt Alt - - - - + + + + [not set] [belirlenmedi] @@ -8350,14 +8497,14 @@ p, li { white-space: pre-wrap; } Hat %1 %2 - - - - - - - - + + + + + + + + Axis %1%2 Eksen %1%2 @@ -8368,357 +8515,357 @@ p, li { white-space: pre-wrap; } Tuş %1 - - - - - - + + + + + + [unknown] [bilinmeyen] - - - + + + Left Sol - - - + + + Right Sağ - - - + + + Down Aşağı - - - + + + Up Yukarı - - + + Z Z - - + + R R - - + + L L - - + + A A - - + + B B - - + + X X - - + + Y Y - - + + Start Start - - + + L1 L1 - - + + L2 L2 - - + + L3 L3 - - + + R1 R1 - - + + R2 R2 - - + + R3 R3 - - + + Circle Yuvarlak - - + + Cross Çarpı - - + + Square Kare - - + + Triangle Üçgen - - + + Share Share - - + + Options Options - - + + [undefined] [belirsiz] - + %1%2 %1%2 - - + + [invalid] [geçersiz] - - + + %1%2Hat %3 %1%2Hat %3 - - - + + + %1%2Axis %3 %1%2Eksen %3 - - + + %1%2Axis %3,%4,%5 %1%2Eksen %3,%4,%5 - - + + %1%2Motion %3 %1%2Hareket %3 - - + + %1%2Button %3 %1%2Tuş %3 - - + + [unused] [kullanılmayan] - + ZR ZR - + ZL ZL - + SR SR - + SL SL - + Stick L L Çubuğu - + Stick R R Çubuğu - + Plus Artı - + Minus Eksi - - + + Home Home - + Capture Kaydet - + Touch Dokunmatik - + Wheel Indicates the mouse wheel Fare Tekerleği - + Backward Geri - + Forward İleri - + Task Görev - + Extra Ekstra - + %1%2%3%4 %1%2%3%4 - - + + %1%2%3Hat %4 %1%2%3Hat %4 - - + + %1%2%3Axis %4 - - + + %1%2%3Button %4 %1%2%3Tuş %4 - - + + Migration - + - - + + No - + You can manually re-trigger this prompt by deleting the new config directory: %1 - + Migrating - + Migrating, this may take a while... @@ -8836,6 +8983,298 @@ p, li { white-space: pre-wrap; } Bu amiibo'yu geri yüklemek istediğinize emin misiniz? + + QtCommon::Content + + + Installing Firmware... + + + + + + + Cancel + + + + + Firmware integrity verification failed! + + + + + + Verification failed for the following files: + +%1 + + + + + + Verifying integrity... + + + + + + Integrity verification succeeded! + + + + + + The operation completed successfully. + İşlem başarıyla tamamlandı. + + + + + Integrity verification failed! + + + + + File contents may be corrupt or missing. + + + + + Integrity verification couldn't be performed + + + + + Firmware installation cancelled, firmware may be in a bad state or corrupted. File contents could not be checked for validity. + + + + + Select Dumped Keys Location + + + + + Decryption Keys install succeeded + + + + + Decryption Keys were successfully installed + + + + + Decryption Keys install failed + + + + + QtCommon::Game + + + Error Removing Contents + İçerik Kaldırma Hatası + + + + Error Removing Update + Güncelleme Kaldırma hatası + + + + Error Removing DLC + DLC Kaldırma Hatası + + + + The base game is not installed in the NAND and cannot be removed. + Asıl oyun NAND'de kurulu değil ve kaldırılamaz. + + + + There is no update installed for this title. + Bu oyun için yüklenmiş bir güncelleme yok. + + + + There are no DLCs installed for this title. + + + + + + + + Successfully Removed + Başarıyla Kaldırıldı + + + + Successfully removed %1 installed DLC. + %1 yüklenmiş DLC başarıyla kaldırıldı. + + + + + Error Removing Transferable Shader Cache + Transfer Edilebilir Shader Cache Kaldırılırken Bir Hata Oluştu + + + + + A shader cache for this title does not exist. + Bu oyun için oluşturulmuş bir shader cache yok. + + + + Successfully removed the transferable shader cache. + Transfer edilebilir shader cache başarıyla kaldırıldı. + + + + Failed to remove the transferable shader cache. + Transfer edilebilir shader cache kaldırılamadı. + + + + Error Removing Vulkan Driver Pipeline Cache + Vulkan Pipeline Önbelleği Kaldırılırken Hata + + + + Failed to remove the driver pipeline cache. + Sürücü pipeline önbelleği kaldırılamadı. + + + + + Error Removing Transferable Shader Caches + Transfer Edilebilir Shader Cache'ler Kaldırılırken Bir Hata Oluştu + + + + Successfully removed the transferable shader caches. + Transfer edilebilir shader cacheler başarıyla kaldırıldı. + + + + Failed to remove the transferable shader cache directory. + Transfer edilebilir shader cache konumu kaldırılamadı. + + + + + Error Removing Custom Configuration + Oyuna Özel Yapılandırma Kaldırılırken Bir Hata Oluştu. + + + + A custom configuration for this title does not exist. + Bu oyun için bir özel yapılandırma yok. + + + + Successfully removed the custom game configuration. + Oyuna özel yapılandırma başarıyla kaldırıldı. + + + + Failed to remove the custom game configuration. + Oyuna özel yapılandırma kaldırılamadı. + + + + Reset Metadata Cache + Üstveri Cache'ini Sıfırla + + + + The metadata cache is already empty. + Metadata Cache'i zaten boş. + + + + The operation completed successfully. + İşlem başarıyla tamamlandı. + + + + The metadata cache couldn't be deleted. It might be in use or non-existent. + Metadata Cache'i silinemedi. Kullanımda ya da oluşturulmamış olabilir. + + + + Create Shortcut + Kısayol Oluştur + + + + Do you want to launch the game in fullscreen? + + + + + Shortcut Created + + + + + Successfully created a shortcut to %1 + %1 dizinine kısayol oluşturuldu + + + + Shortcut may be Volatile! + + + + + This will create a shortcut to the current AppImage. This may not work well if you update. Continue? + Bu seçenek, şu anki AppImage dosyasının kısayolunu oluşturacak. Uygulama güncellenirse kısayol çalışmayabilir. Devam edilsin mi? + + + + Failed to Create Shortcut + + + + + Failed to create a shortcut to %1 + + + + + Create Icon + Simge Oluştur + + + + Cannot create icon file. Path "%1" does not exist and cannot be created. + Simge dosyası oluşturulamadı. "%1" dizini yok ve oluşturulamıyor. + + + + No firmware available + + + + + Please install firmware to use the home menu. + + + + + Home Menu Applet + + + + + Home Menu is not available. Please reinstall firmware. + + + QtControllerSelectorDialog @@ -9131,7 +9570,7 @@ Lütfen tekrar deneyin ya da yazılımın geliştiricisiyle iletişime geçin. QtProfileSelectionDialog - + %1 %2 %1 is the profile username, %2 is the formatted UUID (e.g. 00112233-4455-6677-8899-AABBCCDDEEFF)) @@ -9139,7 +9578,7 @@ Lütfen tekrar deneyin ya da yazılımın geliştiricisiyle iletişime geçin. - + Users Kullanıcılar @@ -9263,7 +9702,7 @@ p, li { white-space: pre-wrap; } WaitTreeCallstack - + Call stack Çağrı yığını @@ -9271,12 +9710,12 @@ p, li { white-space: pre-wrap; } WaitTreeSynchronizationObject - + [%1] %2 [%1] %2 - + waited by no thread hiçbir thread beklemedi @@ -9284,102 +9723,102 @@ p, li { white-space: pre-wrap; } WaitTreeThread - + runnable çalışabilir - + paused duraklatıldı - + sleeping uyuyor - + waiting for IPC reply IPC cevabı bekleniyor - + waiting for objects objeler bekleniyor - + waiting for condition variable koşul değişkeni bekleniyor - + waiting for address arbiter adres belirleyici bekleniyor - + waiting for suspend resume askıdaki işlemin sürdürülmesi bekleniyor - + waiting bekleniyor - + initialized başlatıldı - + terminated sonlandırıldı - + unknown bilinmeyen - + PC = 0x%1 LR = 0x%2 PC = 0x%1 LR = 0x%2 - + ideal ideal - + core %1 çekirdek %1 - + processor = %1 işlemci = %1 - + affinity mask = %1 affinity mask = %1 - + thread id = %1 izlek id: %1 - + priority = %1(current) / %2(normal) öncelik = %1(geçerli) / %2(normal) - + last running ticks = %1 son çalışan tickler = %1 @@ -9387,7 +9826,7 @@ p, li { white-space: pre-wrap; } WaitTreeThreadList - + waited by thread izlek bekledi @@ -9395,7 +9834,7 @@ p, li { white-space: pre-wrap; } WaitTreeWidget - + &Wait Tree &Wait Tree diff --git a/dist/languages/uk.ts b/dist/languages/uk.ts index 528d191c5f..085e456985 100644 --- a/dist/languages/uk.ts +++ b/dist/languages/uk.ts @@ -13,12 +13,12 @@ - About eden + About Eden - <html><head/><body><p><span style=" font-size:28pt;">eden</span></p></body></html> + <html><head/><body><p><span style=" font-size:28pt;">Eden</span></p></body></html> @@ -34,8 +34,8 @@ p, li { white-space: pre-wrap; } hr { height: 1px; border-width: 0; } li.unchecked::marker { content: "\2610"; } li.checked::marker { content: "\2612"; } -</style></head><body style=" font-family:'Adwaita Sans'; font-size:11pt; font-weight:400; font-style:normal;"> -<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;">eden is an experimental open-source emulator for the Nintendo Switch licensed under GPLv3.0+ which is based on the yuzu emulator which ended development back in March 2024. <br /><br />This software should not be used to play games you have not legally obtained.</span></p></body></html> +</style></head><body style=" font-family:'Noto Sans'; font-size:9pt; font-weight:400; font-style:normal;"> +<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;">Eden is an experimental open-source emulator for the Nintendo Switch licensed under GPLv3.0+ which is based on the yuzu emulator which ended development back in March 2024. <br /><br />This software should not be used to play games you have not legally obtained.</span></p></body></html> @@ -72,32 +72,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 ОК @@ -397,439 +397,152 @@ This would ban both their forum username and their IP address. ConfigurationShared - + % % - - Amiibo editor - - - - - Controller configuration - - - - - Data erase - - - - + Error Помилка - - Net connect - - - - - Player select - - - - - Software keyboard - - - - - Mii Edit - - - - - Online web - - - - - Shop - - - - - Photo viewer - - - - - Offline web - - - - - Login share - - - - - Wifi web auth - - - - - My page - - - - + Output Engine: Рушій виводу: - + Output Device: Пристрій відтворення: - + Input Device: Пристрій вводу: - - Mute audio - - - - + Volume: Гучність - + Mute audio when in background Приглушити звук у фоновому режимі - + Multicore CPU Emulation Багатоядерна емуляція ЦП - - This option increases CPU emulation thread use from 1 to the Switch’s maximum of 4. -This is mainly a debug option and shouldn’t be disabled. - - - - - Memory Layout - - - - - Increases the amount of emulated RAM from the stock 4GB of the retail Switch to the developer kit's 8/6GB. -It’s doesn’t improve stability or performance and is intended to let big texture mods fit in emulated RAM. -Enabling it will increase memory use. It is not recommended to enable unless a specific game with a texture mod needs it. - - - - + Limit Speed Percent Обмеження відсотка швидкості - - Controls the game's maximum rendering speed, but it’s up to each game if it runs faster or not. -200% for a 30 FPS game is 60 FPS, and for a 60 FPS game it will be 120 FPS. -Disabling it means unlocking the framerate to the maximum your PC can reach. - - - - - Synchronize Core Speed - - - - - Synchronizes CPU core speed with the game's maximum rendering speed to boost FPS without affecting game speed (animations, physics, etc.). -Compatibility varies by game; many (especially older ones) may not respond well. -Can help reduce stuttering at lower framerates. - - - - + Accuracy: Точність: - - This setting controls the accuracy of the emulated CPU. -Don't change this unless you know what you are doing. - - - - - - Backend: - - - - - Fast CPU Time - - - - - Overclocks the emulated CPU to remove some FPS limiters. Weaker CPUs may see reduced performance, and certain games may behave improperly. -Use Boost (1700MHz) to run at the Switch's highest native clock, or Fast (2000MHz) to run at 2x clock. - - - - + Unfuse FMA (improve performance on CPUs without FMA) Не використовувати FMA (покращує продуктивність на ЦП без FMA) - - This option improves speed by reducing accuracy of fused-multiply-add instructions on CPUs without native FMA support. - - - - + Faster FRSQRTE and FRECPE Прискорені FRSQRTE та FRECPE - - This option improves the speed of some approximate floating-point functions by using less accurate native approximations. - - - - + Faster ASIMD instructions (32 bits only) Швидші інструкції ASIMD (лише 32 біт) - - This option improves the speed of 32 bits ASIMD floating-point functions by running with incorrect rounding modes. - - - - + Inaccurate NaN handling Неправильна обробка NaN - - This option improves speed by removing NaN checking. -Please note this also reduces accuracy of certain floating-point instructions. - - - - + Disable address space checks Вимкнути перевірку адресного простору - - This option improves speed by eliminating a safety check before every memory read/write in guest. -Disabling it may allow a game to read/write the emulator's memory. - - - - + Ignore global monitor Ігнорувати глобальний моніторинг - - This option improves speed by relying only on the semantics of cmpxchg to ensure safety of exclusive access instructions. -Please note this may result in deadlocks and other race conditions. - - - - + API: API: - - Switches between the available graphics APIs. -Vulkan is recommended in most cases. - - - - + Device: Пристрій: - - This setting selects the GPU to use with the Vulkan backend. - - - - + Shader Backend: Бекенд шейдерів: - - The shader backend to use for the OpenGL renderer. -GLSL is the fastest in performance and the best in rendering accuracy. -GLASM is a deprecated NVIDIA-only backend that offers much better shader building performance at the cost of FPS and rendering accuracy. -SPIR-V compiles the fastest, but yields poor results on most GPU drivers. - - - - + Resolution: Роздільна здатність: - - Forces the game to render at a different resolution. -Higher resolutions require much more VRAM and bandwidth. -Options lower than 1X can cause rendering issues. - - - - + Window Adapting Filter: Фільтр адаптації вікна: - + FSR Sharpness: Різкість FSR: - - Determines how sharpened the image will look while using FSR’s dynamic contrast. - - - - + Anti-Aliasing Method: Метод згладжування: - - The anti-aliasing method to use. -SMAA offers the best quality. -FXAA has a lower performance impact and can produce a better and more stable picture under very low resolutions. - - - - + Fullscreen Mode: Повноекранний режим: - - The method used to render the window in fullscreen. -Borderless offers the best compatibility with the on-screen keyboard that some games request for input. -Exclusive fullscreen may offer better performance and better Freesync/Gsync support. - - - - + Aspect Ratio: Співвідношення сторін: - - Stretches the game to fit the specified aspect ratio. -Switch games only support 16:9, so custom game mods are required to get other ratios. -Also controls the aspect ratio of captured screenshots. - - - - + Use disk pipeline cache Використовувати кеш конвеєра на диску - - Allows saving shaders to storage for faster loading on following game boots. -Disabling it is only intended for debugging. - - - - - Optimize SPIRV output shader - - - - - Runs an additional optimization pass over generated SPIRV shaders. -Will increase time required for shader compilation. -May slightly improve performance. -This feature is experimental. - - - - + Use asynchronous GPU emulation Використовувати асинхронну емуляцію ГП - - Uses an extra CPU thread for rendering. -This option should always remain enabled. - - - - + NVDEC emulation: Емуляція NVDEC: - - Specifies how videos should be decoded. -It can either use the CPU or the GPU for decoding, or perform no decoding at all (black screen on videos). -In most cases, GPU decoding provides the best performance. - - - - - ASTC Decoding Method: - - - - - This option controls how ASTC textures should be decoded. -CPU: Use the CPU for decoding, slowest but safest method. -GPU: Use the GPU's compute shaders to decode ASTC textures, recommended for most games and users. -CPU Asynchronously: Use the CPU to decode ASTC textures as they arrive. Completely eliminates ASTC decoding -stuttering at the cost of rendering issues while the texture is being decoded. - - - - - ASTC Recompression Method: - - - - - Almost all desktop and laptop dedicated GPUs lack support for ASTC textures, forcing the emulator to decompress to an intermediate format any card supports, RGBA8. -This option recompresses RGBA8 to either the BC1 or BC3 format, saving VRAM but negatively affecting image quality. - - - - - VRAM Usage Mode: - - - - - Selects whether the emulator should prefer to conserve memory or make maximum usage of available video memory for performance. Has no effect on integrated graphics. Aggressive mode may severely impact the performance of other applications such as recording software. - - - - + VSync Mode: Режим верт. синхронізації: - + FIFO (VSync) does not drop frames or exhibit tearing but is limited by the screen refresh rate. FIFO Relaxed is similar to FIFO but allows tearing as it recovers from a slow down. Mailbox can have lower latency than FIFO and does not tear but may drop frames. @@ -840,62 +553,34 @@ Mailbox може мати меншу затримку, ніж FIFO, і не ма Моментальний (без синхронізації) просто показує всі кадри і може мати розриви. - + Enable asynchronous presentation (Vulkan only) Увімкнути асинхронну презентацію (Vulkan) - - Slightly improves performance by moving presentation to a separate CPU thread. - - - - + Force maximum clocks (Vulkan only) Примусово змусити максимальну тактову частоту (тільки для Vulkan) - + Runs work in the background while waiting for graphics commands to keep the GPU from lowering its clock speed. Виконує роботу у фоновому режимі в очікуванні графічних команд, не даючи змоги ГП знижувати тактову частоту. - + Anisotropic Filtering: Анізотропна фільтрація: - - Controls the quality of texture rendering at oblique angles. -It’s a light setting and safe to set at 16x on most GPUs. - - - - Accuracy Level: - Рівень точності: + Рівень точності: - - GPU emulation accuracy. -Most games render fine with Normal, but High is still required for some. -Particles tend to only render correctly with High accuracy. -Extreme should only be used for debugging. -This option can be changed while playing. -Some games may require booting on high to render properly. - - - - + Use asynchronous shader building (Hack) Використовувати асинхронну побудову шейдерів (хак) - - - Enables asynchronous shader compilation, which may reduce shader stutter. -This feature is experimental. - - Use Fast GPU Time (Hack) Увімкнути Fast GPU Time (хак) @@ -905,1021 +590,1433 @@ This feature is experimental. Вмикає функцію Fast GPU Time. Цей параметр змусить більшість ігор працювати в максимальній рідній роздільній здатності. - + Use Vulkan pipeline cache Використовувати конвеєрний кеш Vulkan - + + Enable Reactive Flushing + Увімкнути реактивне очищення + + + + RNG Seed + Сід RNG + + + + Device Name + Назва пристрою + + + + Note: this can be overridden when region setting is auto-select + Примітка: може бути перезаписано якщо регіон вибирається автоматично + + + + Region: + Регіон: + + + + Time Zone: + Часовий пояс: + + + + Sound Output Mode: + Режим відстворення звуку: + + + + Prompt for user on game boot + Запитувати користувача під час запуску гри + + + + Pause emulation when in background + Призупиняти емуляцію у фоновому режимі + + + + Hide mouse on inactivity + Приховування миші при бездіяльності + + + + CPU + ЦП + + + + Uncompressed (Best quality) + Без стиснення (Найкраща якість) + + + + BC1 (Low quality) + ВС1 (Низька якість) + + + + BC3 (Medium quality) + ВС3 (Середня якість) + + + + OpenGL + OpenGL + + + + Vulkan + Vulkan + + + + Null + Null + + + + GLSL + GLSL + + + + GLASM (Assembly Shaders, NVIDIA Only) + GLASM (асемблерні шейдери, лише для NVIDIA) + + + + Normal + Нормальна + + + + High + Висока + + + + Extreme + Екстрим + + + + Auto + Авто + + + + Accurate + Точно + + + + Unsafe + Небезпечно + + + + Paranoid (disables most optimizations) + Параноїк (відключає більшість оптимізацій) + + + + Borderless Windowed + Вікно без рамок + + + + Exclusive Fullscreen + Ексклюзивний повноекранний + + + + No Video Output + Відсутність відеовиходу + + + + CPU Video Decoding + Декодування відео на ЦП + + + + GPU Video Decoding (Default) + Декодування відео на ГП (за замовчуванням) + + + + 0.75X (540p/810p) [EXPERIMENTAL] + 0.75X (540p/810p) [ЕКСПЕРИМЕНТАЛЬНЕ] + + + + 1X (720p/1080p) + 1X (720p/1080p) + + + + 1.5X (1080p/1620p) [EXPERIMENTAL] + 1.5X (1080p/1620p) [ЕКСПЕРИМЕНТАЛЬНО] + + + + 2X (1440p/2160p) + 2X (1440p/2160p) + + + + 3X (2160p/3240p) + 3X (2160p/3240p) + + + + 4X (2880p/4320p) + 4X (2880p/4320p) + + + + 5X (3600p/5400p) + 5X (3600p/5400p) + + + + 6X (4320p/6480p) + 6X (4320p/6480p) + + + + 7X (5040p/7560p) + 7X (5040p/7560p) + + + + 8X (5760p/8640p) + 8X (5760p/8640p) + + + + Nearest Neighbor + Найближчий сусід + + + + Bilinear + Білінійне + + + + Bicubic + Бікубічне + + + + Gaussian + Гауса + + + + ScaleForce + ScaleForce + + + + AMD FidelityFX™️ Super Resolution + AMD FidelityFX™️ Super Resolution + + + + None + Вимкнено + + + + FXAA + FXAA + + + + SMAA + SMAA + + + + Default (16:9) + За замовчуванням (16:9) + + + + Force 4:3 + Змусити 4:3 + + + + Force 21:9 + Змусити 21:9 + + + + Force 16:10 + Змусити 16:10 + + + + Stretch to Window + Розтягнути до вікна + + + + Automatic + Автоматично + + + + + Default + За замовчуванням + + + + Amiibo editor + + + + + Controller configuration + + + + + Data erase + + + + + Net connect + + + + + Player select + + + + + Software keyboard + + + + + Mii Edit + + + + + Online web + + + + + Shop + + + + + Photo viewer + + + + + Offline web + + + + + Login share + + + + + Wifi web auth + + + + + My page + + + + + Mute audio + + + + + This option increases CPU emulation thread use from 1 to the Switch’s maximum of 4. +This is mainly a debug option and shouldn’t be disabled. + + + + + Memory Layout + + + + + Increases the amount of emulated RAM from the stock 4GB of the retail Switch to the developer kit's 8/6GB. +It’s doesn’t improve stability or performance and is intended to let big texture mods fit in emulated RAM. +Enabling it will increase memory use. It is not recommended to enable unless a specific game with a texture mod needs it. + + + + + Controls the game's maximum rendering speed, but it’s up to each game if it runs faster or not. +200% for a 30 FPS game is 60 FPS, and for a 60 FPS game it will be 120 FPS. +Disabling it means unlocking the framerate to the maximum your PC can reach. + + + + + Synchronize Core Speed + + + + + Synchronizes CPU core speed with the game's maximum rendering speed to boost FPS without affecting game speed (animations, physics, etc.). +Compatibility varies by game; many (especially older ones) may not respond well. +Can help reduce stuttering at lower framerates. + + + + + This setting controls the accuracy of the emulated CPU. +Don't change this unless you know what you are doing. + + + + + + Backend: + + + + + Fast CPU Time + + + + + Overclocks the emulated CPU to remove some FPS limiters. Weaker CPUs may see reduced performance, and certain games may behave improperly. +Use Boost (1700MHz) to run at the Switch's highest native clock, or Fast (2000MHz) to run at 2x clock. + + + + + Custom CPU Ticks + + + + + Set a custom value of CPU ticks. Higher values can increase performance, but may also cause the game to freeze. A range of 77–21000 is recommended. + + + + + Enable Host MMU Emulation (fastmem) + + + + + This optimization speeds up memory accesses by the guest program. +Enabling it causes guest memory reads/writes to be done directly into memory and make use of Host's MMU. +Disabling this forces all memory accesses to use Software MMU Emulation. + + + + + This option improves speed by reducing accuracy of fused-multiply-add instructions on CPUs without native FMA support. + + + + + This option improves the speed of some approximate floating-point functions by using less accurate native approximations. + + + + + This option improves the speed of 32 bits ASIMD floating-point functions by running with incorrect rounding modes. + + + + + This option improves speed by removing NaN checking. +Please note this also reduces accuracy of certain floating-point instructions. + + + + + This option improves speed by eliminating a safety check before every memory read/write in guest. +Disabling it may allow a game to read/write the emulator's memory. + + + + + This option improves speed by relying only on the semantics of cmpxchg to ensure safety of exclusive access instructions. +Please note this may result in deadlocks and other race conditions. + + + + + Switches between the available graphics APIs. +Vulkan is recommended in most cases. + + + + + This setting selects the GPU to use with the Vulkan backend. + + + + + The shader backend to use for the OpenGL renderer. +GLSL is the fastest in performance and the best in rendering accuracy. +GLASM is a deprecated NVIDIA-only backend that offers much better shader building performance at the cost of FPS and rendering accuracy. +SPIR-V compiles the fastest, but yields poor results on most GPU drivers. + + + + + Forces the game to render at a different resolution. +Higher resolutions require much more VRAM and bandwidth. +Options lower than 1X can cause rendering issues. + + + + + Determines how sharpened the image will look while using FSR’s dynamic contrast. + + + + + The anti-aliasing method to use. +SMAA offers the best quality. +FXAA has a lower performance impact and can produce a better and more stable picture under very low resolutions. + + + + + The method used to render the window in fullscreen. +Borderless offers the best compatibility with the on-screen keyboard that some games request for input. +Exclusive fullscreen may offer better performance and better Freesync/Gsync support. + + + + + Stretches the game to fit the specified aspect ratio. +Switch games only support 16:9, so custom game mods are required to get other ratios. +Also controls the aspect ratio of captured screenshots. + + + + + Allows saving shaders to storage for faster loading on following game boots. +Disabling it is only intended for debugging. + + + + + Optimize SPIRV output shader + + + + + Runs an additional optimization pass over generated SPIRV shaders. +Will increase time required for shader compilation. +May slightly improve performance. +This feature is experimental. + + + + + Uses an extra CPU thread for rendering. +This option should always remain enabled. + + + + + Specifies how videos should be decoded. +It can either use the CPU or the GPU for decoding, or perform no decoding at all (black screen on videos). +In most cases, GPU decoding provides the best performance. + + + + + ASTC Decoding Method: + + + + + This option controls how ASTC textures should be decoded. +CPU: Use the CPU for decoding, slowest but safest method. +GPU: Use the GPU's compute shaders to decode ASTC textures, recommended for most games and users. +CPU Asynchronously: Use the CPU to decode ASTC textures as they arrive. Completely eliminates ASTC decoding +stuttering at the cost of rendering issues while the texture is being decoded. + + + + + ASTC Recompression Method: + + + + + Almost all desktop and laptop dedicated GPUs lack support for ASTC textures, forcing the emulator to decompress to an intermediate format any card supports, RGBA8. +This option recompresses RGBA8 to either the BC1 or BC3 format, saving VRAM but negatively affecting image quality. + + + + + VRAM Usage Mode: + + + + + Selects whether the emulator should prefer to conserve memory or make maximum usage of available video memory for performance. +Aggressive mode may severely impact the performance of other applications such as recording software. + + + + + Skip CPU Inner Invalidation + + + + + Skips certain CPU-side cache invalidations during memory updates, reducing CPU usage and improving it's performance. This may cause glitches or crashes on some games. + + + + + Sync Memory Operations + + + + + Ensures data consistency between compute and memory operations. +This option should fix issues in some games, but may also reduce performance in some cases. +Unreal Engine 4 games often see the most significant changes thereof. + + + + + Slightly improves performance by moving presentation to a separate CPU thread. + + + + + Controls the quality of texture rendering at oblique angles. +It’s a light setting and safe to set at 16x on most GPUs. + + + + + GPU Accuracy: + + + + + Controls the GPU emulation accuracy. +Most games render fine with Normal, but High is still required for some. +Particles tend to only render correctly with High accuracy. +Extreme should only be used as a last resort. + + + + + DMA Accuracy: + + + + + Controls the DMA precision accuracy. Safe precision can fix issues in some games, but it can also impact performance in some cases. +If unsure, leave this on Default. + + + + + Enables asynchronous shader compilation, which may reduce shader stutter. +This feature is experimental. + + + + + Fast GPU Time (Hack) + + + + + Overclocks the emulated GPU to increase dynamic resolution and render distance. +Use 128 for maximal performance and 512 for maximal graphics fidelity. + + + + Enables GPU vendor-specific pipeline cache. This option can improve shader loading time significantly in cases where the Vulkan driver does not store pipeline cache files internally. - + Enable Compute Pipelines (Intel Vulkan Only) - + Enable compute pipelines, required by some games. This setting only exists for Intel proprietary drivers, and may crash if enabled. Compute pipelines are always enabled on all other drivers. - - Enable Reactive Flushing - Увімкнути реактивне очищення - - - + Uses reactive flushing instead of predictive flushing, allowing more accurate memory syncing. - + Sync to framerate of video playback - + Run the game at normal speed during video playback, even when the framerate is unlocked. - + Barrier feedback loops - + Improves rendering of transparency effects in specific games. - - RNG Seed - Сід RNG + + RAII + - + + A method of automatic resource management in Vulkan that ensures proper release of resources when they are no longer needed, but may cause crashes in bundled games. + + + + + Extended Dynamic State + + + + + Controls the number of features that can be used in Extended Dynamic State. +Higher numbers allow for more features and can increase performance, but may cause issues with some drivers and vendors. +The default value may vary depending on your system and hardware capabilities. +This value can be changed until stability and a better visual quality are achieved. + + + + + Provoking Vertex + + + + + Improves lighting and vertex handling in certain games. +Only Vulkan 1.0+ devices support this extension. + + + + + Descriptor Indexing + + + + + Improves texture & buffer handling and the Maxwell translation layer. +Some Vulkan 1.1+ and all 1.2+ devices support this extension. + + + + + Sample Shading + + + + + Allows the fragment shader to execute per sample in a multi-sampled fragment instead once per fragment. Improves graphics quality at the cost of some performance. +Higher values improve quality more but also reduce performance to a greater extent. + + + + Controls the seed of the random number generator. Mainly used for speedrunning purposes. - - Device Name - Назва пристрою - - - + The name of the emulated Switch. - + Custom RTC Date: - + This option allows to change the emulated clock of the Switch. Can be used to manipulate time in games. - + Language: - - Note: this can be overridden when region setting is auto-select - Примітка: може бути перезаписано якщо регіон вибирається автоматично - - - - Region: - Регіон: - - - + The region of the emulated Switch. - - Time Zone: - Часовий пояс: - - - + The time zone of the emulated Switch. - - Sound Output Mode: - Режим відстворення звуку: - - - + Console Mode: - + Selects if the console is emulated in Docked or Handheld mode. Games will change their resolution, details and supported controllers and depending on this setting. Setting to Handheld can help improve performance for low end systems. - - Prompt for user on game boot - Запитувати користувача під час запуску гри - - - - Pause emulation when in background - Призупиняти емуляцію у фоновому режимі - - - - Fast GPU Time (Hack) + + Ask to select a user profile on each boot, useful if multiple people use Eden on the same PC. - - Overclocks the emulated GPU to increase dynamic resolution and render distance. -Use 128 for maximal performance and 512 for maximal graphics fidelity. + + This setting pauses Eden when focusing other windows. - - Extended Dynamic State - - - - - Enables the VkExtendedDynamicState* extensions. -Higher dynamic states will generally improve performance, but may cause issues on certain games or devices. - - - - - Provoking Vertex - - - - - Improves lighting and vertex handling in certain games. -Only Vulkan 1.0+ devices support this extension. - - - - - Descriptor Indexing - - - - - Improves texture & buffer handling and the Maxwell translation layer. -Some Vulkan 1.1+ and all 1.2+ devices support this extension. - - - - - Ask to select a user profile on each boot, useful if multiple people use eden on the same PC. - - - - - This setting pauses eden when focusing other windows. - - - - + Confirm before stopping emulation - + This setting overrides game prompts asking to confirm stopping the game. Enabling it bypasses such prompts and directly exits the emulation. - - Hide mouse on inactivity - Приховування миші при бездіяльності - - - + This setting hides the mouse after 2.5s of inactivity. - + Disable controller applet - + Forcibly disables the use of the controller applet by guests. When a guest attempts to open the controller applet, it is immediately closed. - + Check for updates - + Whether or not to check for updates upon startup. - + Enable Gamemode - + Custom frontend - + Real applet - + Never - + On Load - + Always - - CPU - ЦП - - - + GPU - + CPU Asynchronous - - Uncompressed (Best quality) - Без стиснення (Найкраща якість) - - - - BC1 (Low quality) - ВС1 (Низька якість) - - - - BC3 (Medium quality) - ВС3 (Середня якість) - - - + Conservative - + Aggressive - - OpenGL - OpenGL - - - - Vulkan - Vulkan - - - - Null - Null - - - - GLSL - GLSL - - - - GLASM (Assembly Shaders, NVIDIA Only) - GLASM (асемблерні шейдери, лише для NVIDIA) - - - + SPIR-V (Experimental, AMD/Mesa Only) - - Normal - Нормальна + + Unsafe (fast) + - - High - Висока + + Safe (stable) + - - Extreme - Екстрим - - - - Auto - Авто - - - - Accurate - Точно - - - - Unsafe - Небезпечно - - - - Paranoid (disables most optimizations) - Параноїк (відключає більшість оптимізацій) - - - + Dynarmic - + NCE - - Borderless Windowed - Вікно без рамок - - - - Exclusive Fullscreen - Ексклюзивний повноекранний - - - - No Video Output - Відсутність відеовиходу - - - - CPU Video Decoding - Декодування відео на ЦП - - - - GPU Video Decoding (Default) - Декодування відео на ГП (за замовчуванням) - - - + 0.25X (180p/270p) [EXPERIMENTAL] - + 0.5X (360p/540p) [EXPERIMENTAL] - - 0.75X (540p/810p) [EXPERIMENTAL] - 0.75X (540p/810p) [ЕКСПЕРИМЕНТАЛЬНЕ] - - - - 1X (720p/1080p) - 1X (720p/1080p) - - - - 1.5X (1080p/1620p) [EXPERIMENTAL] - 1.5X (1080p/1620p) [ЕКСПЕРИМЕНТАЛЬНО] - - - - 2X (1440p/2160p) - 2X (1440p/2160p) - - - - 3X (2160p/3240p) - 3X (2160p/3240p) - - - - 4X (2880p/4320p) - 4X (2880p/4320p) - - - - 5X (3600p/5400p) - 5X (3600p/5400p) - - - - 6X (4320p/6480p) - 6X (4320p/6480p) - - - - 7X (5040p/7560p) - 7X (5040p/7560p) - - - - 8X (5760p/8640p) - 8X (5760p/8640p) - - - - Nearest Neighbor - Найближчий сусід - - - - Bilinear - Білінійне - - - - Bicubic - Бікубічне - - - - Gaussian - Гауса - - - - ScaleForce - ScaleForce - - - - AMD FidelityFX™️ Super Resolution - AMD FidelityFX™️ Super Resolution - - - + Area - - None - Вимкнено - - - - FXAA - FXAA - - - - SMAA - SMAA - - - - Default (16:9) - За замовчуванням (16:9) - - - - Force 4:3 - Змусити 4:3 - - - - Force 21:9 - Змусити 21:9 - - - - Force 16:10 - Змусити 16:10 - - - - Stretch to Window - Розтягнути до вікна - - - - Automatic - Автоматично - - - - Default - За замовчуванням - - - + 2x 2x - + 4x 4x - + 8x 8x - + 16x 16x - + Japanese (日本語) Японська (日本語) - + American English Американська англійська - + French (français) Французька (français) - + German (Deutsch) Німецька (Deutsch) - + Italian (italiano) Італійська (italiano) - + Spanish (español) Іспанська (español) - + Chinese Китайська - + Korean (한국어) Корейська (한국어) - + Dutch (Nederlands) Голландська (Nederlands) - + Portuguese (português) Португальська (português) - + Russian (Русский) Російська (Русский) - + Taiwanese Тайванська - + British English Британська англійська - + Canadian French Канадська французька - + Latin American Spanish Латиноамериканська іспанська - + Simplified Chinese Спрощена китайська - + Traditional Chinese (正體中文) Традиційна китайська (正體中文) - + Brazilian Portuguese (português do Brasil) Бразильська португальська (português do Brasil) - - + + Serbian (српски) + + + + + Japan Японія - + USA США - + Europe Європа - + Australia Австралія - + China Китай - + Korea Корея - + Taiwan Тайвань - + Auto (%1) Auto select time zone Авто (%1) - + Default (%1) Default time zone За замовчуванням (%1) - + CET CET - + CST6CDT CST6CDT - + Cuba Куба - + EET EET - + Egypt Єгипет - + Eire Ейре - + EST EST - + EST5EDT EST5EDT - + GB GB - + GB-Eire GB-Ейре - + GMT GMT - + GMT+0 GMT+0 - + GMT-0 GMT-0 - + GMT0 GMT0 - + Greenwich Гринвіч - + Hongkong Гонконг - + HST HST - + Iceland Ісландія - + Iran Іран - + Israel Ізраїль - + Jamaica Ямайка - + Kwajalein Кваджалейн - + Libya Лівія - + MET MET - + MST MST - + MST7MDT MST7MDT - + Navajo Навахо - + NZ NZ - + NZ-CHAT NZ-CHAT - + Poland Польща - + Portugal Португалія - + PRC PRC - + PST8PDT PST8PDT - + ROC ROC - + ROK ROK - + Singapore Сінгапур - + Turkey Туреччина - + UCT UCT - + Universal Універсальний - + UTC UTC - + W-SU W-SU - + WET WET - + Zulu Зулуси - + Mono Моно - + Stereo Стерео - + Surround Об'ємний звук - + 4GB DRAM (Default) - + 6GB DRAM (Unsafe) - + 8GB DRAM - + 10GB DRAM (Unsafe) - + 12GB DRAM (Unsafe) - - Low (128) - - - - - Medium (256) - - - - - High (512) - - - - + Docked У док-станції - + Handheld Портативний - + Boost (1700MHz) - + Fast (2000MHz) - + Always ask (Default) - + Only if game specifies not to stop - + Never ask + + + Low (128) + + + + + Medium (256) + + + + + High (512) + + ConfigureApplets @@ -2271,27 +2368,27 @@ When a guest attempts to open the controller applet, it is immediately closed.Журналювання - + Open Log Location Відкрити папку для журналів - + Global Log Filter Глобальний фільтр журналів - + When checked, the max size of the log increases from 100 MB to 1 GB Якщо увімкнено, максимальний розмір журналу збільшується зі 100 МБ до 1 ГБ - + Enable Extended Logging** Увімкнути розширене ведення журналу** - + Show Log in Console Показувати журнал у консолі @@ -2437,7 +2534,7 @@ When a guest attempts to open the controller applet, it is immediately closed. - **This will be reset automatically when eden closes. + **This will be reset automatically when Eden closes. @@ -2499,7 +2596,7 @@ When a guest attempts to open the controller applet, it is immediately closed.**Це буде автоматично скинуто після закриття yuzu. - + Web applet not compiled Веб-аплет не скомпільовано @@ -2549,7 +2646,7 @@ When a guest attempts to open the controller applet, it is immediately closed. - eden Configuration + Eden Configuration @@ -2558,88 +2655,88 @@ When a guest attempts to open the controller applet, it is immediately closed.Деякі налаштування доступні тільки тоді, коли гру не запущено. - + Applets - - + + Audio Аудіо - - + + CPU ЦП - + Debug Налагодження - + Filesystem Файлова система - - + + General Загальні - - + + Graphics Графіка - + GraphicsAdvanced ГрафікаРозширені - + GraphicsExtensions - + Hotkeys Гарячі клавіші - - + + Controls Керування - + Profiles Профілі - + Network Мережа - - + + System Система - + Game List Список ігор - + Web Мережа @@ -2737,51 +2834,45 @@ When a guest attempts to open the controller applet, it is immediately closed. - - - Reset Metadata Cache Скинути кеш метаданих - + Select Emulated NAND Directory... Виберіть папку для емульованого NAND... - + Select Emulated SD Directory... Виберіть папку для емульованого SD... - + Select Gamecard Path... Оберіть папку для картриджів... - + Select Dump Directory... Оберіть папку для дампів... - + Select Mod Load Directory... Оберіть папку для модів... - The metadata cache is already empty. - Кеш метаданих вже порожній. + Кеш метаданих вже порожній. - The operation completed successfully. - Операція завершилася успішно. + Операція завершилася успішно. - The metadata cache couldn't be deleted. It might be in use or non-existent. - Кеш метаданих не можна видалити. Можливо, він використовується або відсутній. + Кеш метаданих не можна видалити. Можливо, він використовується або відсутній. @@ -2812,12 +2903,12 @@ When a guest attempts to open the controller applet, it is immediately closed.yuzu - - eden + + Eden - + This reset all settings and remove all per-game configurations. This will not delete game directories, profiles, or input profiles. Proceed? Це скине всі налаштування і видалить усі конфігурації під окремі ігри. При цьому не будуть видалені шляхи до ігор, профілів або профілів вводу. Продовжити? @@ -2850,33 +2941,33 @@ When a guest attempts to open the controller applet, it is immediately closed.Фоновий колір: - + % FSR sharpening percentage (e.g. 50%) % - + Off Вимкнено - + VSync Off Верт. синхронізацію вимкнено - + Recommended Рекомендовано - + On Увімкнено - + VSync On Верт. синхронізація увімкнена @@ -2913,14 +3004,18 @@ When a guest attempts to open the controller applet, it is immediately closed. - Vulkan Extension Settings + Vulkan Extensions Settings - - While it's recommended to use state 3, some games may perform better on lower states. Setting to 0 (disabled) may also break games. -If your GPU is older (i.e. RX570/580 or older), it may not support these features. If this is the case, set the slider to 0 and uncheck all boxes. -These settings are experimental, and may cause black screens. If your games fail to boot or are stuck on a black screen, change these settings around. + + % + Sample Shading percentage (e.g. 50%) + % + + + + Extended Dynamic State is disabled on macOS due to MoltenVK compatibility issues that cause black screens. @@ -2952,75 +3047,75 @@ These settings are experimental, and may cause black screens. If your games fail Відновити значення за замовчуванням. - + Action Дія - + Hotkey Гаряча клавіша - + Controller Hotkey Гаряча клавіша контролера - - - + + + Conflicting Key Sequence Конфліктуюча комбінація клавіш - - + + The entered key sequence is already assigned to: %1 Введена комбінація вже призначена до: %1 - + [waiting] [очікування] - + Invalid Неприпустимо - + Invalid hotkey settings - + An error occurred. Please report this issue on github. - + Restore Default Відновити значення за замовчуванням - + Clear Очистити - + Conflicting Button Sequence Конфліктуюче поєднання кнопок - + The default button sequence is already assigned to: %1 Типова комбінація кнопок вже призначена до: %1 - + The default key sequence is already assigned to: %1 Типова комбінація клавіш вже призначена до: %1 @@ -3340,7 +3435,7 @@ These settings are experimental, and may cause black screens. If your games fail - Requires restarting eden + Requires restarting Eden @@ -3495,7 +3590,7 @@ These settings are experimental, and may cause black screens. If your games fail - + Left Stick Лівий міні-джойстик @@ -3605,14 +3700,14 @@ These settings are experimental, and may cause black screens. If your games fail - + L L - + ZL ZL @@ -3631,7 +3726,7 @@ These settings are experimental, and may cause black screens. If your games fail - + Plus Плюс @@ -3644,15 +3739,15 @@ These settings are experimental, and may cause black screens. If your games fail - - + + R R - + ZR ZR @@ -3697,7 +3792,7 @@ These settings are experimental, and may cause black screens. If your games fail - + Right Stick Правий міні-джойстик @@ -3712,242 +3807,242 @@ These settings are experimental, and may cause black screens. If your games fail Налаштувати - - - - + + + + Clear Очистити - - - - - + + + + + [not set] [не задано] - - - + + + Invert button Інвертувати кнопку - - + + Toggle button Переключити кнопку - + Turbo button Турбо кнопка - - + + Invert axis Інвертувати осі - - - + + + Set threshold Встановити поріг - - + + Choose a value between 0% and 100% Оберіть значення між 0% і 100% - + Toggle axis Переключити осі - + Set gyro threshold Встановити поріг гіроскопа - + Calibrate sensor Калібрувати сенсор - + Map Analog Stick Задати аналоговий міні-джойстик - + After pressing OK, first move your joystick horizontally, and then vertically. To invert the axes, first move your joystick vertically, and then horizontally. Після натискання на ОК, рухайте ваш міні-джойстик горизонтально, а потім вертикально. Щоб інвертувати осі, спочатку рухайте ваш міні-джойстик вертикально, а потім горизонтально. - + Center axis Центрувати осі - - + + Deadzone: %1% Мертва зона: %1% - - + + Modifier Range: %1% Діапазон модифікатора: %1% - - + + Pro Controller Контролер Pro - + Dual Joycons Подвійні Joy-Con'и - + Left Joycon Лівий Joy-Con - + Right Joycon Правий Joy-Con - + Handheld Портативний - + GameCube Controller Контролер GameCube - + Poke Ball Plus Poke Ball Plus - + NES Controller Контролер NES - + SNES Controller Контролер SNES - + N64 Controller Контролер N64 - + Sega Genesis Sega Genesis - + Start / Pause Старт / Пауза - + Z Z - + Control Stick Міні-джойстик керування - + C-Stick C-Джойстик - + Shake! Потрусіть! - + [waiting] [очікування] - + New Profile Новий профіль - + Enter a profile name: Введіть ім'я профілю: - - + + Create Input Profile Створити профіль контролю - + The given profile name is not valid! Задане ім'я профілю недійсне! - + Failed to create the input profile "%1" Не вдалося створити профіль контролю "%1" - + Delete Input Profile Видалити профіль контролю - + Failed to delete the input profile "%1" Не вдалося видалити профіль контролю "%1" - + Load Input Profile Завантажити профіль контролю - + Failed to load the input profile "%1" Не вдалося завантажити профіль контролю "%1" - + Save Input Profile Зберегти профіль контролю - + Failed to save the input profile "%1" Не вдалося зберегти профіль контролю "%1" @@ -4004,7 +4099,7 @@ To invert the axes, first move your joystick vertically, and then horizontally.< - + Configure Налаштувати @@ -4040,7 +4135,7 @@ To invert the axes, first move your joystick vertically, and then horizontally.< - + Test Тест @@ -4059,7 +4154,7 @@ To invert the axes, first move your joystick vertically, and then horizontally.< <a href='https://yuzu-emu.org/wiki/using-a-controller-or-android-phone-for-motion-or-touch-input'><span style="text-decoration: underline; color:#039be5;">Дізнатися більше</span></a> - + %1:%2 %1:%2 @@ -4068,77 +4163,77 @@ To invert the axes, first move your joystick vertically, and then horizontally.< yuzu - + <a href='https://eden-emulator.github.io/wiki/using-a-controller-or-android-phone-for-motion-or-touch-input'><span style="text-decoration: underline; color:#039be5;">Learn More</span></a> - + Port number has invalid characters Номер порту містить неприпустимі символи - - - - - - - eden + + + + + + + Eden - + Port has to be in range 0 and 65353 Порт повинен бути в районі від 0 до 65353 - + IP address is not valid IP-адреса недійсна - + This UDP server already exists Цей UDP сервер уже існує - + Unable to add more than 8 servers Неможливо додати більше 8 серверів - + 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>Переконайтеся, що сервер правильно налаштований, а також перевірте адресу та порт. - + UDP Test or calibration configuration is in progress.<br>Please wait for them to finish. Тест UDP або калібрація в процесі.<br>Будь ласка, зачекайте завершення. @@ -4265,7 +4360,12 @@ Current values are %1% and %2% respectively. Інтерфейс мережі - + + Enable Airplane Mode + + + + None Нічого @@ -4323,52 +4423,52 @@ Current values are %1% and %2% respectively. Деякі налаштування доступні тільки тоді, коли гру не запущено. - + Add-Ons Доповнення - + System Система - + CPU ЦП - + Graphics Графіка - + Adv. Graphics Розш. Графіка - + GPU Extensions - + Audio Аудіо - + Input Profiles Профілі вводу - + Linux - + Properties Властивості @@ -4386,12 +4486,12 @@ Current values are %1% and %2% respectively. Доповнення - + Patch Name Назва патчу - + Version Версія @@ -4429,27 +4529,32 @@ Current values are %1% and %2% respectively. Обрати зображення - + + Select Avatar + + + + Add Додати - + Rename Перейменувати - + Remove Видалити - + Profile management is available only when game is not running. Керування профілями недоступне, поки запущена гра. - + %1 %2 %1 is the profile username, %2 is the formatted UUID (e.g. 00112233-4455-6677-8899-AABBCCDDEEFF)) @@ -4457,100 +4562,189 @@ Current values are %1% and %2% respectively. %2 - + Enter Username Введіть ім'я користувача - + Users Користувачі - + Enter a username for the new user: Введіть ім'я користувача для нового профілю: - + Enter a new username: Введіть нове ім'я користувача: - + + Error saving user image + + + + + Unable to save image to file + + + + Select User Image Оберіть зображення користувача - - JPEG Images (*.jpg *.jpeg) - Зображення JPEG (*.jpg *.jpeg) + + Image Formats (*.jpg *.jpeg *.png *.bmp) + - + + No firmware available + + + + + Please install the firmware to use firmware avatars. + + + + + + Error loading archive + + + + + Archive is not available. Please install/reinstall firmware. + + + + + Archive does not contain romfs. It is probably corrupt. + + + + + Error extracting archive + + + + + Archive could not be extracted. It is probably corrupt. + + + + + Error finding image directory + + + + + Failed to find image directory in the archive. + + + + + No images found + + + + + No avatar images were found in the archive. + + + + JPEG Images (*.jpg *.jpeg) + Зображення JPEG (*.jpg *.jpeg) + + + Error deleting image Помилка під час видалення зображення - + Error occurred attempting to overwrite previous image at: %1. Помилка під час спроби перезапису попереднього зображення в: %1. - + Error deleting file Помилка під час видалення файлу - + Unable to delete existing file: %1. Не вдалося видалити наявний файл: %1. - + Error creating user image directory Помилка під час створення папки користувацьких зображень - + Unable to create directory %1 for storing user images. Не вийшло створити папку %1 для зберігання зображень користувача. - Error copying user image - Помилка під час копіювання зображення користувача + Помилка під час копіювання зображення користувача - Unable to copy image from %1 to %2 - Не вийшло скопіювати зображення з %1 у %2 + Не вийшло скопіювати зображення з %1 у %2 - Error resizing user image - Помилка під час зміни розміру зображення користувача + Помилка під час зміни розміру зображення користувача - Unable to resize image - Неможливо змінити розмір зображення + Неможливо змінити розмір зображення + + + + ConfigureProfileManagerAvatarDialog + + + Select + + + + + Cancel + Скасувати + + + + Background Color + + + + + Select Firmware Avatar + ConfigureProfileManagerDeleteDialog - + Delete this user? All of the user's save data will be deleted. Видалити цього користувача? Усі збережені дані користувача буде видалено. - + Confirm Delete Підтвердити видалення - + Name: %1 UUID: %2 Ім'я: %1 @@ -4603,7 +4797,7 @@ UUID: %2 - + Enable Увімкнути @@ -4614,7 +4808,7 @@ UUID: %2 - + Not connected Не під'єднано @@ -4624,63 +4818,63 @@ UUID: %2 За замовчуванням - + Clear Очистити - + [not set] [не задано] - + Invert axis Інвертувати осі - - + + Deadzone: %1% Мертва зона: %1% - + Error enabling ring input Помилка під час увімкнення введення кільця - + Direct Joycon driver is not enabled Прямий драйвер Joycon не активний - + Configuring Налаштування - + The current mapped device doesn't support the ring controller Поточний вибраний пристрій не підтримує контролер Ring - + The current mapped device doesn't have a ring attached До поточного пристрою не прикріплено кільце - + The current mapped device is not connected Поточний пристрій не під'єднано - + Unexpected driver result %1 Несподіваний результат драйвера %1 - + [waiting] [очікування] @@ -4722,7 +4916,7 @@ UUID: %2 - <html><head/><body><p>Reads controller input from scripts in the same format as TAS-nx scripts.<br/>For a more detailed explanation, please consult the <a href="https://eden-emulator.github.io/help/feature/tas/"><span style=" text-decoration: underline; color:#039be5;">help page</span></a> on the eden website.</p></body></html> + <html><head/><body><p>Reads controller input from scripts in the same format as TAS-nx scripts.<br/>For a more detailed explanation, please consult the <a href="https://eden-emulator.github.io/help/feature/tas/"><span style=" text-decoration: underline; color:#039be5;">help page</span></a> on the Eden website.</p></body></html> @@ -4774,12 +4968,12 @@ UUID: %2 ConfigureTasDialog - + TAS Configuration Налаштування TAS - + Select TAS Load Directory... Обрати папку завантаження TAS... @@ -4889,7 +5083,7 @@ Drag points to change position, or double-click table cells to edit values. - Warning: The settings in this page affect the inner workings of eden's emulated touchscreen. Changing them may result in undesirable behavior, such as the touchscreen partially or not working. You should only use this page if you know what you are doing. + Warning: The settings in this page affect the inner workings of Eden's emulated touchscreen. Changing them may result in undesirable behavior, such as the touchscreen partially or not working. You should only use this page if you know what you are doing. @@ -5209,6 +5403,16 @@ Drag points to change position, or double-click table cells to edit values.Web Мережа + + + Eden Web Service + + + + + Generate + + yuzu Web Service Веб-сервіс yuzu @@ -5218,42 +5422,29 @@ Drag points to change position, or double-click table cells to edit values.Надаючи своє ім'я користувача і токен, ви погоджуєтеся дозволити yuzu збирати додаткові дані про використання, які можуть включати інформацію, що ідентифікує користувача. - - eden Web Service - - - - - By providing your username and token, you agree to allow eden to collect additional usage data, which may include user identifying information. - - - - Verify - Підтвердити + Підтвердити - Sign up - Реєстрація + Реєстрація - + Token: Токен: - + Username: Ім'я користувача: - What is my token? - Що таке токен і де його знайти? + Що таке токен і де його знайти? - + Web Service configuration can only be changed when a public room isn't being hosted. Налаштування веб-служби можуть бути змінені тільки в тому випадку, коли не хоститься публічна кімната. @@ -5278,12 +5469,12 @@ Drag points to change position, or double-click table cells to edit values.Перегенерувати - + Discord Presence Discord Presence - + Show Current Game in your Discord Status Показувати поточну гру у вашому статусі Discord @@ -5292,24 +5483,8 @@ Drag points to change position, or double-click table cells to edit values.<a href='https://yuzu-emu.org/help/feature/telemetry/'><span style="text-decoration: underline; color:#039be5;">Дізнатися більше</span></a> - <a href='https://profile.yuzu-emu.org/'><span style="text-decoration: underline; color:#039be5;">Sign up</span></a> - <a href='https://profile.yuzu-emu.org/'><span style="text-decoration: underline; color:#039be5;">Реєстрація</span></a> - - - - <a href='https://evilperson1337.notion.site/Hosting-a-Room-Inside-of-Eden-20457c2edaf680108abac6215a79acdb'><span style="text-decoration: underline; color:#039be5;">What is my token?</span></a> - - - - - Warning - - - - - Verification is currently nonfunctional, instead generate a random 48-character string with only lowercase a-z. - + <a href='https://profile.yuzu-emu.org/'><span style="text-decoration: underline; color:#039be5;">Реєстрація</span></a> <a href='https://yuzu-emu.org/wiki/yuzu-web-service/'><span style="text-decoration: underline; color:#039be5;">What is my token?</span></a> @@ -5332,10 +5507,9 @@ Drag points to change position, or double-click table cells to edit values.Токен не було підтверджено. Зміну вашого токена не було збережено. - Unverified, please click Verify before saving configuration Tooltip - Не підтверджено, будь ласка, натисніть кнопку Підтвердити, перш ніж зберігати конфігурацію. + Не підтверджено, будь ласка, натисніть кнопку Підтвердити, перш ніж зберігати конфігурацію. Verifying... @@ -5359,20 +5533,67 @@ Drag points to change position, or double-click table cells to edit values.Verification failed. Check that you have entered your token correctly, and that your internet connection is working. Підтверждення не було успішним. Переконайтеся, що ви правильно ввели свій токен і що ваше інтернет-з'єднання працює. + + + + All Good + Tooltip + + + + + Must be between 4-20 characters + Tooltip + + + + + Must be 48 characters, and lowercase a-z + Tooltip + + ControllerDialog - + Controller P1 Контролер P1 - + &Controller P1 [&C] Контролер P1 + + DepsDialog + + + Eden Dependencies + + + + + <html><head/><body><p><span style=" font-size:28pt;">Eden Dependencies</span></p></body></html> + + + + + <html><head/><body><p>The projects that make Eden possible</p></body></html> + + + + + Dependency + + + + + Version + Версія + + DirectConnect @@ -5478,7 +5699,12 @@ Drag points to change position, or double-click table cells to edit values. - Creating a room failed. Please retry. Restarting eden might be necessary. + Creating a room failed. Please retry. Restarting Eden might be necessary. + + + + + Version mismatch! Please update to the latest version of Eden. If the problem persists, contact the room host and ask them to update the server. @@ -5486,11 +5712,6 @@ Drag points to change position, or double-click table cells to edit values.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 eden. If the problem persists, contact the room host and ask them to update the server. - - Incorrect password. @@ -5552,7 +5773,7 @@ Please go to Configure -> System -> Network and make a selection. Телеметрія - + Broken Vulkan Installation Detected Виявлено пошкоджену інсталяцію Vulkan @@ -5561,106 +5782,105 @@ Please go to Configure -> System -> Network and make a selection. Не вдалося виконати ініціалізацію Vulkan під час завантаження.<br><br>Натисніть <a href='https://yuzu-emu.org/wiki/faq/#yuzu-starts-with-the-error-broken-vulkan-installation-detected'>тут для отримання інструкцій щодо усунення проблеми</a>. - + Running a game TRANSLATORS: This string is shown to the user to explain why yuzu needs to prevent the computer from sleeping Запущено гру - + Loading Web Applet... Завантаження веб-аплета... - - + + Disable Web Applet Вимкнути веб-аплет - + Disabling the web applet can lead to undefined behavior and should only be used with Super Mario 3D All-Stars. Are you sure you want to disable the web applet? (This can be re-enabled in the Debug settings.) Вимкнення веб-апплета може призвести до несподіваної поведінки, і його слід вимикати лише заради Super Mario 3D All-Stars. Ви впевнені, що хочете вимкнути веб-апплет? (Його можна знову ввімкнути в налаштуваннях налагодження.) - + The amount of shaders currently being built Кількість створюваних шейдерів на цей момент - + The current selected resolution scaling multiplier. Поточний обраний множник масштабування роздільної здатності. - + Current emulation speed. Values higher or lower than 100% indicate emulation is running faster or slower than a Switch. Поточна швидкість емуляції. Значення вище або нижче 100% вказують на те, що емуляція йде швидше або повільніше, ніж на Switch. - + 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 Switch frame, not counting framelimiting or v-sync. For full-speed emulation this should be at most 16.67 ms. Час, який потрібен для емуляції 1 кадру Switch, не беручи до уваги обмеження FPS або вертикальну синхронізацію. Для емуляції в повній швидкості значення має бути не більше 16,67 мс. - + Unmute Увімкнути звук - + Mute Вимкнути звук - + Reset Volume Скинути гучність - + &Clear Recent Files [&C] Очистити нещодавні файли - + &Continue [&C] Продовжити - + &Pause [&P] Пауза - Warning Outdated Game Format - Попередження застарілий формат гри + Попередження застарілий формат гри You are using the deconstructed ROM directory format for this game, which is an outdated format that has been superseded by others such as NCA, NAX, XCI, or NSP. Deconstructed ROM directories lack icons, metadata, and update support.<br><br>For an explanation of the various Switch formats yuzu supports, <a href='https://yuzu-emu.org/wiki/overview-of-switch-game-formats'>check out our wiki</a>. This message will not be shown again. Для цієї гри ви використовуєте розархівований формат ROM'а, який є застарілим і був замінений іншими, такими як NCA, NAX, XCI або NSP. У розархівованих каталогах ROM'а відсутні іконки, метадані та підтримка оновлень. <br><br>Для отримання інформації про різні формати Switch, підтримувані yuzu, <a href='https://yuzu-emu.org/wiki/overview-of-switch-game-formats'>перегляньте нашу вікі</a>. Це повідомлення більше не буде відображатися. - - + + Error while loading ROM! Помилка під час завантаження ROM! - + The ROM format is not supported. Формат ROM'а не підтримується. - + An error occurred initializing the video core. Сталася помилка під час ініціалізації відеоядра. @@ -5669,7 +5889,7 @@ Please go to Configure -> System -> Network and make a selection. yuzu зіткнувся з помилкою під час запуску відеоядра. Зазвичай це спричинено застарілими драйверами ГП, включно з інтегрованими. Перевірте журнал для отримання більш детальної інформації. Додаткову інформацію про доступ до журналу дивіться на наступній сторінці: <a href='https://yuzu-emu.org/help/reference/log-files/'>Як завантажити файл журналу</a>. - + Error while loading ROM! %1 %1 signifies a numeric error code. Помилка під час завантаження ROM'а! %1 @@ -5680,1041 +5900,887 @@ Please go to Configure -> System -> Network and make a selection. %1<br>Будь ласка, дотримуйтесь <a href='https://yuzu-emu.org/help/quickstart/'>короткого керівництва користувача yuzu</a> щоб пере-дампити ваші файли<br>Ви можете звернутися до вікі yuzu</a> або Discord yuzu</a> для допомоги - + Vulkan initialization failed during boot.<br><br>Click <a href='https://eden-emulator.github.io/wiki/faq/#yuzu-starts-with-the-error-broken-vulkan-installation-detected'>here for instructions to fix the issue</a>. - - Game Updates Warning - - - - - The game you are trying to launch is known to have performance or booting issues when updates are applied. Please try increasing the memory layout to 6GB or 8GB if any issues occur.<br><br>Press "OK" to continue launching, or "Cancel" to cancel the launch. - - - - - Don't show again for this game - - - - - You are using the deconstructed ROM directory format for this game, which is an outdated format that has been superseded by others such as NCA, NAX, XCI, or NSP. Deconstructed ROM directories lack icons, metadata, and update support.<br><br>For an explanation of the various Switch formats eden supports, <a href='https://eden-emulator.github.io/wiki/overview-of-switch-game-formats'>check out our wiki</a>. This message will not be shown again. - - - - - eden has encountered an error while running the video core. This is usually caused by outdated GPU drivers, including integrated ones. Please see the log for more details. For more information on accessing the log, please see the following page: <a href='https://eden-emulator.github.io/help/reference/log-files/'>How to Upload the Log File</a>. - - - - - %1<br>Please redump your files or ask on Discord for help. - %1 signifies an error string. - - - - + An unknown error occurred. Please see the log for more details. Сталася невідома помилка. Будь ласка, перевірте журнал для подробиць. - + (64-bit) (64-бітний) - + (32-bit) (32-бітний) - + %1 %2 %1 is the title name. %2 indicates if the title is 64-bit or 32-bit %1 %2 - + Closing software... Закриваємо програму... - + Save Data Збереження - + Mod Data Дані модів - + Error Opening %1 Folder Помилка під час відкриття папки %1 - - + + Folder does not exist! Папка не існує! - Error Opening Transferable Shader Cache - Помилка під час відкриття переносного кешу шейдерів + Помилка під час відкриття переносного кешу шейдерів - Failed to create the shader cache directory for this title. - Не вдалося створити папку кешу шейдерів для цієї гри. + Не вдалося створити папку кешу шейдерів для цієї гри. - Error Removing Contents - Помилка під час видалення вмісту + Помилка під час видалення вмісту - Error Removing Update - Помилка під час видалення оновлень + Помилка під час видалення оновлень - Error Removing DLC - Помилка під час видалення DLC + Помилка під час видалення DLC - + Remove Installed Game Contents? Видалити встановлений вміст ігор? - + Remove Installed Game Update? Видалити встановлені оновлення гри? - + Remove Installed Game DLC? Видалити встановлені DLC гри? - + Remove Entry Видалити запис - - - - - - Successfully Removed - Успішно видалено + Успішно видалено - Successfully removed the installed base game. - Встановлену гру успішно видалено. + Встановлену гру успішно видалено. - The base game is not installed in the NAND and cannot be removed. - Гру не встановлено в NAND і не може буде видалено. + Гру не встановлено в NAND і не може буде видалено. - Successfully removed the installed update. - Встановлене оновлення успішно видалено. + Встановлене оновлення успішно видалено. - There is no update installed for this title. - Для цієї гри не було встановлено оновлення. + Для цієї гри не було встановлено оновлення. - There are no DLC installed for this title. - Для цієї гри не було встановлено DLC. + Для цієї гри не було встановлено DLC. - Successfully removed %1 installed DLC. - Встановлений DLC %1 було успішно видалено + Встановлений DLC %1 було успішно видалено - + Delete OpenGL Transferable Shader Cache? Видалити переносний кеш шейдерів OpenGL? - + Delete Vulkan Transferable Shader Cache? Видалити переносний кеш шейдерів Vulkan? - + Delete All Transferable Shader Caches? Видалити весь переносний кеш шейдерів? - + Remove Custom Game Configuration? Видалити користувацьке налаштування гри? - + Remove Cache Storage? Видалити кеш-сховище? - + Remove File Видалити файл - + Remove Play Time Data - + Reset play time? - - Error Removing Transferable Shader Cache - Помилка під час видалення переносного кешу шейдерів + Помилка під час видалення переносного кешу шейдерів - - A shader cache for this title does not exist. - Кеш шейдерів для цієї гри не існує. + Кеш шейдерів для цієї гри не існує. - Successfully removed the transferable shader cache. - Переносний кеш шейдерів успішно видалено. + Переносний кеш шейдерів успішно видалено. - Failed to remove the transferable shader cache. - Не вдалося видалити переносний кеш шейдерів. + Не вдалося видалити переносний кеш шейдерів. - Error Removing Vulkan Driver Pipeline Cache - Помилка під час видалення конвеєрного кешу Vulkan + Помилка під час видалення конвеєрного кешу Vulkan - Failed to remove the driver pipeline cache. - Не вдалося видалити конвеєрний кеш шейдерів. + Не вдалося видалити конвеєрний кеш шейдерів. - - Error Removing Transferable Shader Caches - Помилка під час видалення переносного кешу шейдерів + Помилка під час видалення переносного кешу шейдерів - Successfully removed the transferable shader caches. - Переносний кеш шейдерів успішно видалено. + Переносний кеш шейдерів успішно видалено. - Failed to remove the transferable shader cache directory. - Помилка під час видалення папки переносного кешу шейдерів. + Помилка під час видалення папки переносного кешу шейдерів. - - Error Removing Custom Configuration - Помилка під час видалення користувацького налаштування + Помилка під час видалення користувацького налаштування - A custom configuration for this title does not exist. - Користувацьких налаштувань для цієї гри не існує. + Користувацьких налаштувань для цієї гри не існує. - Successfully removed the custom game configuration. - Користувацьке налаштування гри успішно видалено. + Користувацьке налаштування гри успішно видалено. - Failed to remove the custom game configuration. - Не вдалося видалити користувацьке налаштування гри. + Не вдалося видалити користувацьке налаштування гри. - - + + RomFS Extraction Failed! Не вдалося вилучити RomFS! - + There was an error copying the RomFS files or the user cancelled the operation. Сталася помилка під час копіювання файлів RomFS або користувач скасував операцію. - + Full Повний - + Skeleton Скелет - + Select RomFS Dump Mode Виберіть режим дампа RomFS - + Please select the how you would like the RomFS dumped.<br>Full will copy all of the files into the new directory while <br>skeleton will only create the directory structure. Будь ласка, виберіть, як ви хочете виконати дамп RomFS <br>Повний скопіює всі файли в нову папку, тоді як <br>скелет створить лише структуру папок. - + There is not enough free space at %1 to extract the RomFS. Please free up space or select a different dump directory at Emulation > Configure > System > Filesystem > Dump Root В %1 недостатньо вільного місця для вилучення RomFS. Будь ласка, звільніть місце або виберіть іншу папку для дампа в Емуляція > Налаштування > Система > Файлова система > Корінь дампа - + Extracting RomFS... Вилучення RomFS... - - - - - + + Cancel Скасувати - + RomFS Extraction Succeeded! Вилучення RomFS пройшло успішно! - - - + The operation completed successfully. Операція завершилася успішно. - - Integrity verification couldn't be performed! - - - - - File contents were not checked for validity. - - - - - - Verifying integrity... - - - - - - Integrity verification succeeded! - - - - - - Integrity verification failed! - - - - - File contents may be corrupt. - - - - - - - Create Shortcut - Створити ярлик + Створити ярлик - - Do you want to launch the game in fullscreen? - - - - Successfully created a shortcut to %1 - Успішно створено ярлик у %1 + Успішно створено ярлик у %1 - This will create a shortcut to the current AppImage. This may not work well if you update. Continue? - Це створить ярлик для поточного AppImage. Він може не працювати після оновлень. Продовжити? + Це створить ярлик для поточного AppImage. Він може не працювати після оновлень. Продовжити? - - Failed to create a shortcut to %1 + Create Icon + Створити іконку + + + Cannot create icon file. Path "%1" does not exist and cannot be created. + Неможливо створити файл іконки. Шлях "%1" не існує і не може бути створений. + + + + Warning: Outdated Game Format - - Create Icon - Створити іконку + + You are using the deconstructed ROM directory format for this game, which is an outdated format that has been superseded by others such as NCA, NAX, XCI, or NSP. Deconstructed ROM directories lack icons, metadata, and update support.<br><br>For an explanation of the various Switch formats Eden supports, <a href='https://eden-emulator.github.io/wiki/overview-of-switch-game-formats'>check out our wiki</a>. This message will not be shown again. + - - Cannot create icon file. Path "%1" does not exist and cannot be created. - Неможливо створити файл іконки. Шлях "%1" не існує і не може бути створений. + + Eden has encountered an error while running the video core. This is usually caused by outdated GPU drivers, including integrated ones. Please see the log for more details. For more information on accessing the log, please see the following page: <a href='https://yuzu-mirror.github.io/help/reference/log-files/'>How to Upload the Log File</a>. + - + + %1<br>Please redump your files or ask on Discord/Revolt for help. + %1 signifies an error string. + + + + Error Opening %1 Помилка відкриття %1 - + Select Directory Обрати папку - + Properties Властивості - + The game properties could not be loaded. Не вдалося завантажити властивості гри. - + Switch Executable (%1);;All Files (*.*) %1 is an identifier for the Switch executable file extensions. Виконуваний файл Switch (%1);;Усі файли (*.*) - + Load File Завантажити файл - + Open Extracted ROM Directory Відкрити папку вилученого ROM'а - + Invalid Directory Selected Вибрано неприпустиму папку - + The directory you have selected does not contain a 'main' file. Папка, яку ви вибрали, не містить файлу 'main'. - + Installable Switch File (*.nca *.nsp *.xci);;Nintendo Content Archive (*.nca);;Nintendo Submission Package (*.nsp);;NX Cartridge Image (*.xci) Встановлюваний файл Switch (*.nca, *.nsp, *.xci);;Архів контенту Nintendo (*.nca);;Пакет подачі Nintendo (*.nsp);;Образ картриджа NX (*.xci) - + Install Files Встановити файли - + %n file(s) remaining Залишився %n файл Залишилося %n файл(ів) - Залишилося %n файл(ів) - + Installing file "%1"... Встановлення файлу "%1"... - - + + Install Results Результати встановлення - + To avoid possible conflicts, we discourage users from installing base games to the NAND. Please, only use this feature to install updates and DLC. Щоб уникнути можливих конфліктів, ми не рекомендуємо користувачам встановлювати ігри в NAND. Будь ласка, використовуйте цю функцію тільки для встановлення оновлень і завантажуваного контенту. - + %n file(s) were newly installed %n файл було нещодавно встановлено %n файл(ів) було нещодавно встановлено - - %n файл(ів) було нещодавно встановлено - + %n file(s) were overwritten %n файл було перезаписано %n файл(ів) було перезаписано - - %n файл(ів) було перезаписано - + %n file(s) failed to install %n файл не вдалося встановити %n файл(ів) не вдалося встановити - - %n файл(ів) не вдалося встановити - + System Application Системний додаток - + System Archive Системний архів - + System Application Update Оновлення системного додатку - + Firmware Package (Type A) Пакет прошивки (Тип А) - + Firmware Package (Type B) Пакет прошивки (Тип Б) - + Game Гра - + Game Update Оновлення гри - + Game DLC DLC до гри - + Delta Title Дельта-титул - + Select NCA Install Type... Виберіть тип установки NCA... - + Please select the type of title you would like to install this NCA as: (In most instances, the default 'Game' is fine.) Будь ласка, виберіть тип додатку, який ви хочете встановити для цього NCA: (У більшості випадків, підходить стандартний вибір "Гра".) - + Failed to Install Помилка встановлення - + The title type you selected for the NCA is invalid. Тип додатку, який ви вибрали для NCA, недійсний. - + File not found Файл не знайдено - + File "%1" not found Файл "%1" не знайдено - + OK ОК - - + + Hardware requirements not met Не задоволені системні вимоги - - + + Your system does not meet the recommended hardware requirements. Compatibility reporting has been disabled. Ваша система не відповідає рекомендованим системним вимогам. Звіти про сумісність було вимкнено. - + Missing yuzu Account Відсутній обліковий запис yuzu - - In order to submit a game compatibility test case, you must link your eden account.<br><br/>To link your eden account, go to Emulation &gt; Configuration &gt; Web. + + In order to submit a game compatibility test case, you must set up your web token and username.<br><br/>To link your eden account, go to Emulation &gt; Configuration &gt; Web. - - Install decryption keys and restart eden before attempting to install firmware. + + Select Dumped Firmware ZIP - - Firmware installation cancelled, firmware may be in bad state, restart eden or re-install firmware. + + Zipped Archives (*.zip) - - Encryption keys are missing. + + Firmware cleanup failed - - Are you sure you want to close eden? + + Failed to clean up extracted firmware cache. +Check write permissions in the system temp directory and try again. +OS reported error: %1 - - - - eden + + Please install firmware to use the Album applet. - - The currently running application has requested eden to not exit. + + Please install firmware to use the Cabinet applet. + + + + + Please install firmware to use the Mii editor. + + + + + Please install firmware to use the Controller Menu. + + + + + Please install firmware to use the Home Menu. + + + + + Firmware Corrupted + + + + + Firmware Too New + + + + + +Continue anyways? + + + + + Don't show again + + + + + Please install firmware to use Starter. + + + + + Are you sure you want to close Eden? + + + + + + + Eden + + + + + The currently running application has requested Eden to not exit. Would you like to bypass this and exit anyway? + + + Encryption keys are missing. + + In order to submit a game compatibility test case, you must link your yuzu account.<br><br/>To link your yuzu account, go to Emulation &gt; Configuration &gt; Web. Щоб надіслати звіт про сумісність гри, необхідно прив'язати свій обліковий запис yuzu. <br><br/>Щоб прив'язати свій обліковий запис yuzu, перейдіть у розділ Емуляція &gt; Параметри &gt; Мережа. - + Error opening URL Помилка під час відкриття URL - + Unable to open the URL "%1". Не вдалося відкрити URL: "%1". - + TAS Recording Запис TAS - + Overwrite file of player 1? Перезаписати файл гравця 1? - + Invalid config detected Виявлено неприпустиму конфігурацію - + Handheld controller can't be used on docked mode. Pro controller will be selected. Портативний контролер не може бути використаний у режимі док-станції. Буде обрано контролер Pro. - - + + Amiibo Amiibo - - + + The current amiibo has been removed Поточний amiibo було прибрано - + Error Помилка - - + + The current game is not looking for amiibos Поточна гра не шукає amiibo - + Amiibo File (%1);; All Files (*.*) Файл Amiibo (%1);; Всі Файли (*.*) - + Load Amiibo Завантажити Amiibo - + Error loading Amiibo data Помилка під час завантаження даних Amiibo - + The selected file is not a valid amiibo Обраний файл не є допустимим amiibo - + The selected file is already on use Обраний файл уже використовується - + An unknown error occurred Виникла невідома помилка - - - Verification failed for the following files: - -%1 - - - - + + Keys not installed - + + + Install decryption keys and restart Eden before attempting to install firmware. + + + + Select Dumped Firmware Source Location - - Installing Firmware... - - - - - - - - Firmware install failed - - - - - Unable to locate potential firmware NCA files - - - - - Failed to delete one or more firmware file. - - - - - One or more firmware files failed to copy into NAND. - - - - - Firmware integrity verification failed! - - - - - Select Dumped Keys Location - - - - - - - Decryption Keys install failed - - - - - prod.keys is a required decryption key file. - - - - - One or more keys failed to copy. - - - - - Decryption Keys install succeeded - - - - - Decryption Keys were successfully installed - - - - - Decryption Keys failed to initialize. Check that your dumping tools are up to date and re-dump keys. - - - - - - - - - - + + + + + + No firmware available - - Please install the firmware to use the Album applet. - - - - + Album Applet - + Album applet is not available. Please reinstall firmware. - - Please install the firmware to use the Cabinet applet. - - - - + Cabinet Applet - + Cabinet applet is not available. Please reinstall firmware. - - Please install the firmware to use the Mii editor. - - - - + Mii Edit Applet - + Mii editor is not available. Please reinstall firmware. - - Please install the firmware to use the Controller Menu. - - - - + Controller Applet Аплет контролера - + Controller Menu is not available. Please reinstall firmware. - - Please install the firmware to use the Home Menu. - - - - - + Home Menu Applet - - + Home Menu is not available. Please reinstall firmware. - - Please install the firmware to use Starter. - - - - + Starter Applet - + Starter is not available. Please reinstall firmware. - - Please install firmware to use the home menu. - - - - + Capture Screenshot Зробити знімок екрану - + PNG Image (*.png) Зображення PNG (*.png) - + Update Available - + Update %1 for Eden is available. Would you like to download it? - + TAS state: Running %1/%2 Стан TAS: Виконується %1/%2 - + TAS state: Recording %1 Стан TAS: Записується %1 - + TAS state: Idle %1/%2 Стан TAS: Простий %1/%2 - + TAS State: Invalid Стан TAS: Неприпустимий - + &Stop Running [&S] Зупинка - + &Start [&S] Почати - + Stop R&ecording [&E] Закінчити запис - + R&ecord [&E] Запис - + Building: %n shader(s) Побудова: %n шейдер Побудова: %n шейдер(ів) - Побудова: %n шейдер(ів) - + Scale: %1x %1 is the resolution scaling factor Масштаб: %1x - + Speed: %1% / %2% Швидкість: %1% / %2% - + Speed: %1% Швидкість: %1% @@ -6723,54 +6789,54 @@ Would you like to download it? Гра: %1 FPS (Необмежено) - + Game: %1 FPS Гра: %1 FPS - + Frame: %1 ms Кадр: %1 мс - + %1 %2 %1 %2 - - + + FSR FSR - + NO AA БЕЗ ЗГЛАДЖУВАННЯ - + VOLUME: MUTE ГУЧНІСТЬ: ЗАГЛУШЕНА - + VOLUME: %1% Volume percentage (e.g. 50%) ГУЧНІСТЬ: %1% - + Derivation Components Missing Компоненти розрахунку відсутні - + Select RomFS Dump Target Оберіть ціль для дампа RomFS - + Please select which RomFS you would like to dump. Будь ласка, виберіть, який RomFS ви хочете здампити. @@ -6783,7 +6849,7 @@ Would you like to download it? yuzu - + Are you sure you want to stop the emulation? Any unsaved progress will be lost. Ви впевнені, що хочете зупинити емуляцію? Будь-який незбережений прогрес буде втрачено. @@ -6796,102 +6862,102 @@ Would you like to bypass this and exit anyway? Чи хочете ви обійти це і вийти в будь-якому випадку? - + None Вимкнено - + FXAA FXAA - + SMAA SMAA - + Nearest Найближчий - + Bilinear Білінійне - + Bicubic Бікубічне - + Gaussian Гауса - + ScaleForce ScaleForce - + Area - + Docked У док-станції - + Handheld Портативний - + Normal Нормальна - + High Висока - + Extreme Екстрим - + Vulkan Vulkan - + OpenGL OpenGL - + Null Null - + GLSL GLSL - + GLASM GLASM - + SPIRV SPIRV @@ -6899,13 +6965,13 @@ Would you like to bypass this and exit anyway? GRenderWindow - - + + OpenGL not available! OpenGL недоступний! - + OpenGL shared contexts are not supported. Загальні контексти OpenGL не підтримуються. @@ -6914,33 +6980,33 @@ Would you like to bypass this and exit anyway? yuzu не було зібрано з підтримкою OpenGL. - - eden has not been compiled with OpenGL support. + + Eden has not been compiled with OpenGL support. - - + + Error while initializing OpenGL! Помилка під час ініціалізації OpenGL! - + Your GPU may not support OpenGL, or you do not have the latest graphics driver. Ваш ГП може не підтримувати OpenGL, або у вас встановлено застарілий графічний драйвер. - + Error while initializing OpenGL 4.6! Помилка під час ініціалізації OpenGL 4.6! - + Your GPU may not support OpenGL 4.6, or you do not have the latest graphics driver.<br><br>GL Renderer:<br>%1 Ваш ГП може не підтримувати OpenGL 4.6, або у вас встановлено застарілий графічний драйвер.<br><br>Рендерер GL:<br>%1 - + Your GPU may not support one or more required OpenGL extensions. Please ensure you have the latest graphics driver.<br><br>GL Renderer:<br>%1<br><br>Unsupported extensions:<br>%2 Ваш ГП може не підтримувати одне або кілька необхідних розширень OpenGL. Будь ласка, переконайтеся в тому, що у вас встановлено останній графічний драйвер.<br><br>Рендерер GL:<br>%1<br><br>Розширення, що не підтримуються:<br>%2 @@ -6948,128 +7014,128 @@ Would you like to bypass this and exit anyway? GameList - + Favorite Улюблені - + Start Game Запустити гру - + Start Game without Custom Configuration Запустити гру без користувацького налаштування - + Open Save Data Location Відкрити папку для збережень - + Open Mod Data Location Відкрити папку для модів - + Open Transferable Pipeline Cache Відкрити переносний кеш конвеєра - + Remove Видалити - + Remove Installed Update Видалити встановлене оновлення - + Remove All Installed DLC Видалити усі DLC - + Remove Custom Configuration Видалити користувацьке налаштування - + Remove Play Time Data - + Remove Cache Storage Видалити кеш-сховище - + Remove OpenGL Pipeline Cache Видалити кеш конвеєра OpenGL - + Remove Vulkan Pipeline Cache Видалити кеш конвеєра Vulkan - + Remove All Pipeline Caches Видалити весь кеш конвеєра - + Remove All Installed Contents Видалити весь встановлений вміст - + Dump RomFS Дамп RomFS - + Dump RomFS to SDMC Здампити RomFS у SDMC - + Verify Integrity - + Copy Title ID to Clipboard Скопіювати ідентифікатор додатку в буфер обміну - + Navigate to GameDB entry Перейти до сторінки GameDB - + Create Shortcut Створити ярлик - + Add to Desktop Додати на Робочий стіл - + Add to Applications Menu Додати до меню застосунків - + Configure Game @@ -7078,62 +7144,62 @@ Would you like to bypass this and exit anyway? Властивості - + Scan Subfolders Сканувати підпапки - + Remove Game Directory Видалити директорію гри - + ▲ Move Up ▲ Перемістити вверх - + ▼ Move Down ▼ Перемістити вниз - + Open Directory Location Відкрити розташування папки - + Clear Очистити - + Name Назва - + Compatibility Сумісність - + Add-ons Доповнення - + File type Тип файлу - + Size Розмір - + Play time @@ -7141,62 +7207,62 @@ Would you like to bypass this and exit anyway? GameListItemCompat - + Ingame Запускається - + Game starts, but crashes or major glitches prevent it from being completed. Гра запускається, але вильоти або серйозні баги не дають змоги її завершити. - + Perfect Ідеально - + Game can be played without issues. У гру можна грати без проблем. - + Playable Придатно до гри - + Game functions with minor graphical or audio glitches and is playable from start to finish. Гра працює з незначними графічними та/або звуковими помилками і прохідна від початку до кінця. - + Intro/Menu Вступ/Меню - + Game loads, but is 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. Гру ще не перевіряли на сумісність. @@ -7204,7 +7270,7 @@ Would you like to bypass this and exit anyway? GameListPlaceholder - + Double-click to add a new folder to the game list Натисніть двічі, щоб додати нову папку до списку ігор @@ -7212,21 +7278,20 @@ Would you like to bypass this and exit anyway? GameListSearchField - + %1 of %n result(s) %1 із %n результат(ів) %1 із %n результат(ів) - %1 із %n результат(ів) - + Filter: Пошук: - + Enter pattern to filter Введіть текст для пошуку @@ -7308,7 +7373,7 @@ Would you like to bypass this and exit anyway? - Failed to announce the room to the public lobby. In order to host a room publicly, you must have a valid eden account configured in Emulation -> Configure -> Web. If you do not want to publish a room in the public lobby, then select Unlisted instead. + Failed to announce the room to the public lobby. In order to host a room publicly, you must have a valid Eden 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: @@ -7322,190 +7387,190 @@ Debug Message: Hotkeys - + Audio Mute/Unmute Увімкнення/вимкнення звуку - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Main Window Основне вікно - + Audio Volume Down Зменшити гучність звуку - + Audio Volume Up Підвищити гучність звуку - + Capture Screenshot Зробити знімок екрану - + Change Adapting Filter Змінити адаптуючий фільтр - + Change Docked Mode Змінити режим консолі - + Change GPU Accuracy Змінити точність ГП - + Configure Налаштувати - + Configure Current Game - + Continue/Pause Emulation Продовження/Пауза емуляції - + Exit Fullscreen Вийти з повноекранного режиму + + + Exit Eden + + Exit yuzu Вийти з yuzu - - Exit eden - - - - + Fullscreen Повний екран - + Load File Завантажити файл - + Load/Remove Amiibo Завантажити/видалити Amiibo - + Multiplayer Browse Public Game Lobby - + Multiplayer Create Room - + Multiplayer Direct Connect to Room - + Multiplayer Leave Room - + Multiplayer Show Current Room - + Restart Emulation Перезапустити емуляцію - + Stop Emulation Зупинити емуляцію - + TAS Record Запис TAS - + TAS Reset Скидання TAS - + TAS Start/Stop Старт/Стоп TAS - + Toggle Filter Bar Переключити панель пошуку - + Toggle Framerate Limit Переключити обмеження частоти кадрів - + Toggle Mouse Panning Переключити панорамування миші - + Toggle Renderdoc Capture - + Toggle Status Bar Переключити панель стану @@ -7513,22 +7578,22 @@ Debug Message: InstallDialog - + Please confirm these are the files you wish to install. Будь ласка, переконайтеся, що це ті файли, які ви хочете встановити. - + Installing an Update or DLC will overwrite the previously installed one. Встановлення оновлення або завантажуваного контенту перезапише раніше встановлене. - + Install Встановити - + Install Files to NAND Встановити файли в NAND @@ -7536,7 +7601,7 @@ Debug Message: LimitableInputDialog - + The text can't contain any of the following characters: %1 У тексті неприпустимі такі символи: @@ -7683,152 +7748,207 @@ Debug Message: [&R] Нещодавні файли - + + Open &Eden Folders + + + + &Emulation [&E] Емуляція - + &View [&V] Вигляд - + &Reset Window Size [&R] Скинути розмір вікна - + &Debugging [&D] Налагодження - + Reset Window Size to &720p Скинути розмір вікна до &720p - + Reset Window Size to 720p Скинути розмір вікна до 720p - + Reset Window Size to &900p Скинути розмір вікна до &900p - + Reset Window Size to 900p Скинути розмір вікна до 900p - + Reset Window Size to &1080p Скинути розмір вікна до &1080p - + Reset Window Size to 1080p Скинути розмір вікна до 1080p - + &Multiplayer [&M] Мультиплеєр - + &Tools [&T] Інструменти - + &Amiibo - + &TAS [&T] TAS - + &Create Home Menu Shortcut - + &Help [&H] Допомога - + &Install Files to NAND... [&I] Встановити файли в NAND... - + L&oad File... [&O] Завантажити файл... - + Load &Folder... [&F] Завантажити папку... - + E&xit [&X] Вихід - + &Pause [&P] Пауза - + &Stop [&S] Стоп - + &Verify Installed Contents - - &About eden + + &Root Data Folder - - Open &eden Folder + + &NAND Folder - + + &SDMC Folder + + + + + &Mod Folder + + + + + &Log Folder + + + + + From Folder + + + + + From ZIP + + + + + &X + + + + + X (Twitter) + + + + + &Revolt + + + + + Revolt + + + + + &Eden Dependencies + + + + Open Home Menu - + &Discord - + Open &Setup - + &Desktop - + &Application Menu @@ -7837,97 +7957,97 @@ Debug Message: [&A] Про yuzu - + Single &Window Mode [&W] Режим одного вікна - + Con&figure... [&F] Налаштування... - + Ctrl+, - + Display D&ock Widget Headers [&O] Відображати заголовки віджетів дока - + Show &Filter Bar [&F] Показати панель пошуку - + Show &Status Bar [&S] Показати панель статусу - + Show Status Bar Показати панель статусу - + &Browse Public Game Lobby [&B] Переглянути публічні ігрові фойє - + &Create Room [&C] Створити кімнату - + &Leave Room [&L] Залишити кімнату - + &Direct Connect to Room [&D] Пряме під'єднання до кімнати - + &Show Current Room [&S] Показати поточну кімнату - + F&ullscreen [&U] Повноекранний - + &Restart [&R] Перезапустити - + Load/Remove &Amiibo... [&A] Завантажити/Видалити Amiibo... - + &Report Compatibility [&R] Повідомити про сумісність - + Open &Mods Page [&M] Відкрити сторінку модів - + Open &Quickstart Guide [&Q] Відкрити посібник користувача - + &FAQ [&F] ЧАП @@ -7936,77 +8056,82 @@ Debug Message: [&Y] Відкрити папку yuzu - + &Capture Screenshot [&C] Зробити знімок екрану - + Open &Album - + &Set Nickname and Owner - + &Delete Game Data - + &Restore Amiibo - + &Format Amiibo - + Open &Mii Editor - + &Configure TAS... [&C] Налаштування TAS... - + Configure C&urrent Game... [&U] Налаштувати поточну гру... - + &Start [&S] Почати - + &Reset [&S] Скинути - + R&ecord [&E] Запис - + Open &Controller Menu - + Install Firmware - + + &About Eden + + + + Install Decryption Keys @@ -8014,26 +8139,36 @@ Debug Message: MicroProfileDialog - &MicroProfile - [&M] MicroProfile + [&M] MicroProfile MigrationWorker - + Data was migrated successfully. - + Linking the old directory failed. You may need to re-run with administrative privileges on Windows. OS gave error: %1 - + + + +Note that your configuration and data will be shared with %1. +If this is not desirable, delete the following files: +%2 +%3 +%4 + + + + If you wish to clean up the files which were left in the old data location, you can do so by deleting the following directory: @@ -8093,37 +8228,37 @@ If you wish to clean up the files which were left in the old data location, you MultiplayerState - + Current connection status Поточний стан з'єднання - + Not Connected. Click here to find a room! Не з'єднано. Натисніть тут, щоб знайти кімнату! - + Not Connected Не з'єднано - + Connected З'єднано - + New Messages Received Отримано нові повідомлення - + Error Помилка - + Failed to update the room information. Please check your Internet connection and try hosting the room again. Debug Message: Не вдалося оновити інформацію про кімнату. Будь ласка, перевірте підключення до Інтернету та спробуйте знову зайти в кімнату. @@ -8315,56 +8450,56 @@ p, li { white-space: pre-wrap; } Не грає в гру - + Installed SD Titles Встановлені SD ігри - + Installed NAND Titles Встановлені NAND ігри - + System Titles Системні ігри - + Add New Game Directory Додати нову папку з іграми - + Favorites Улюблені - - + + Shift Shift - - + + Ctrl Ctrl - - + + Alt Alt - - - - + + + + [not set] [не задано] @@ -8375,14 +8510,14 @@ p, li { white-space: pre-wrap; } Напр. %1 %2 - - - - - - - - + + + + + + + + Axis %1%2 Ось %1%2 @@ -8393,357 +8528,357 @@ p, li { white-space: pre-wrap; } Кнопка %1 - - - - - - + + + + + + [unknown] [невідомо] - - - + + + Left Вліво - - - + + + Right Вправо - - - + + + Down Вниз - - - + + + Up Вгору - - + + Z Z - - + + R R - - + + L L - - + + A A - - + + B B - - + + X X - - + + Y Y - - + + Start Start - - + + L1 L1 - - + + L2 L2 - - + + L3 L3 - - + + R1 R1 - - + + R2 R2 - - + + R3 R3 - - + + Circle Кружечок - - + + Cross Хрестик - - + + Square Квадратик - - + + Triangle Трикутничок - - + + Share Share - - + + Options Options - - + + [undefined] [невизначено] - + %1%2 %1%2 - - + + [invalid] [неприпустимо] - - + + %1%2Hat %3 %1%2Напр. %3 - - - + + + %1%2Axis %3 %1%2Ось %3 - - + + %1%2Axis %3,%4,%5 %1%2Ось %3,%4,%5 - - + + %1%2Motion %3 %1%2Рух %3 - - + + %1%2Button %3 %1%2Кнопка %3 - - + + [unused] [не використаний] - + ZR ZR - + ZL ZL - + SR SR - + SL SL - + Stick L Лівий стік - + Stick R Правий стік - + Plus Плюс - + Minus Мінус - - + + Home Home - + Capture Захоплення - + Touch Сенсор - + Wheel Indicates the mouse wheel Коліщатко - + Backward Назад - + Forward Вперед - + Task Задача - + Extra Додаткова - + %1%2%3%4 %1%2%3%4 - - + + %1%2%3Hat %4 %1%2%3Напр. %4 - - + + %1%2%3Axis %4 %1%2%3Вісь %4 - - + + %1%2%3Button %4 %1%2%3Кнопка %4 - - + + Migration - + - - + + No - + You can manually re-trigger this prompt by deleting the new config directory: %1 - + Migrating - + Migrating, this may take a while... @@ -8861,6 +8996,298 @@ p, li { white-space: pre-wrap; } Чи хочете ви відновити цю amiibo? + + QtCommon::Content + + + Installing Firmware... + + + + + + + Cancel + Скасувати + + + + Firmware integrity verification failed! + + + + + + Verification failed for the following files: + +%1 + + + + + + Verifying integrity... + + + + + + Integrity verification succeeded! + + + + + + The operation completed successfully. + Операція завершилася успішно. + + + + + Integrity verification failed! + + + + + File contents may be corrupt or missing. + + + + + Integrity verification couldn't be performed + + + + + Firmware installation cancelled, firmware may be in a bad state or corrupted. File contents could not be checked for validity. + + + + + Select Dumped Keys Location + + + + + Decryption Keys install succeeded + + + + + Decryption Keys were successfully installed + + + + + Decryption Keys install failed + + + + + QtCommon::Game + + + Error Removing Contents + Помилка під час видалення вмісту + + + + Error Removing Update + Помилка під час видалення оновлень + + + + Error Removing DLC + Помилка під час видалення DLC + + + + The base game is not installed in the NAND and cannot be removed. + Гру не встановлено в NAND і не може буде видалено. + + + + There is no update installed for this title. + Для цієї гри не було встановлено оновлення. + + + + There are no DLCs installed for this title. + + + + + + + + Successfully Removed + Успішно видалено + + + + Successfully removed %1 installed DLC. + Встановлений DLC %1 було успішно видалено + + + + + Error Removing Transferable Shader Cache + Помилка під час видалення переносного кешу шейдерів + + + + + A shader cache for this title does not exist. + Кеш шейдерів для цієї гри не існує. + + + + Successfully removed the transferable shader cache. + Переносний кеш шейдерів успішно видалено. + + + + Failed to remove the transferable shader cache. + Не вдалося видалити переносний кеш шейдерів. + + + + Error Removing Vulkan Driver Pipeline Cache + Помилка під час видалення конвеєрного кешу Vulkan + + + + Failed to remove the driver pipeline cache. + Не вдалося видалити конвеєрний кеш шейдерів. + + + + + Error Removing Transferable Shader Caches + Помилка під час видалення переносного кешу шейдерів + + + + Successfully removed the transferable shader caches. + Переносний кеш шейдерів успішно видалено. + + + + Failed to remove the transferable shader cache directory. + Помилка під час видалення папки переносного кешу шейдерів. + + + + + Error Removing Custom Configuration + Помилка під час видалення користувацького налаштування + + + + A custom configuration for this title does not exist. + Користувацьких налаштувань для цієї гри не існує. + + + + Successfully removed the custom game configuration. + Користувацьке налаштування гри успішно видалено. + + + + Failed to remove the custom game configuration. + Не вдалося видалити користувацьке налаштування гри. + + + + Reset Metadata Cache + Скинути кеш метаданих + + + + The metadata cache is already empty. + Кеш метаданих вже порожній. + + + + The operation completed successfully. + Операція завершилася успішно. + + + + The metadata cache couldn't be deleted. It might be in use or non-existent. + Кеш метаданих не можна видалити. Можливо, він використовується або відсутній. + + + + Create Shortcut + Створити ярлик + + + + Do you want to launch the game in fullscreen? + + + + + Shortcut Created + + + + + Successfully created a shortcut to %1 + Успішно створено ярлик у %1 + + + + Shortcut may be Volatile! + + + + + This will create a shortcut to the current AppImage. This may not work well if you update. Continue? + Це створить ярлик для поточного AppImage. Він може не працювати після оновлень. Продовжити? + + + + Failed to Create Shortcut + + + + + Failed to create a shortcut to %1 + + + + + Create Icon + Створити іконку + + + + Cannot create icon file. Path "%1" does not exist and cannot be created. + Неможливо створити файл іконки. Шлях "%1" не існує і не може бути створений. + + + + No firmware available + + + + + Please install firmware to use the home menu. + + + + + Home Menu Applet + + + + + Home Menu is not available. Please reinstall firmware. + + + QtControllerSelectorDialog @@ -9156,7 +9583,7 @@ Please try again or contact the developer of the software. QtProfileSelectionDialog - + %1 %2 %1 is the profile username, %2 is the formatted UUID (e.g. 00112233-4455-6677-8899-AABBCCDDEEFF)) @@ -9164,7 +9591,7 @@ Please try again or contact the developer of the software. %2 - + Users Користувачі @@ -9288,7 +9715,7 @@ p, li { white-space: pre-wrap; } WaitTreeCallstack - + Call stack Стек викликів @@ -9296,12 +9723,12 @@ p, li { white-space: pre-wrap; } WaitTreeSynchronizationObject - + [%1] %2 [%1] %2 - + waited by no thread не очікується жодним потоком @@ -9309,102 +9736,102 @@ p, li { white-space: pre-wrap; } WaitTreeThread - + runnable runnable - + paused paused - + sleeping sleeping - + waiting for IPC reply очікування відповіді IPC - + waiting for objects очікування об'єктів - + waiting for condition variable waiting for condition variable - + waiting for address arbiter waiting for address arbiter - + waiting for suspend resume waiting for suspend resume - + waiting waiting - + initialized initialized - + terminated terminated - + unknown невідомо - + PC = 0x%1 LR = 0x%2 PC = 0x%1 LR = 0x%2 - + ideal ideal - + core %1 ядро %1 - + processor = %1 процесор = %1 - + affinity mask = %1 маска подібності = %1 - + thread id = %1 ідентифікатор потоку = %1 - + priority = %1(current) / %2(normal) пріоритет = %1(поточний) / %2(звичайний) - + last running ticks = %1 last running ticks = %1 @@ -9412,7 +9839,7 @@ p, li { white-space: pre-wrap; } WaitTreeThreadList - + waited by thread очікується потоком @@ -9420,7 +9847,7 @@ p, li { white-space: pre-wrap; } WaitTreeWidget - + &Wait Tree [&W] Дерево очікування diff --git a/dist/languages/vi.ts b/dist/languages/vi.ts index 17d8e62327..4ad6050d64 100644 --- a/dist/languages/vi.ts +++ b/dist/languages/vi.ts @@ -13,12 +13,12 @@ - About eden + About Eden - <html><head/><body><p><span style=" font-size:28pt;">eden</span></p></body></html> + <html><head/><body><p><span style=" font-size:28pt;">Eden</span></p></body></html> @@ -34,8 +34,8 @@ p, li { white-space: pre-wrap; } hr { height: 1px; border-width: 0; } li.unchecked::marker { content: "\2610"; } li.checked::marker { content: "\2612"; } -</style></head><body style=" font-family:'Adwaita Sans'; font-size:11pt; font-weight:400; font-style:normal;"> -<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;">eden is an experimental open-source emulator for the Nintendo Switch licensed under GPLv3.0+ which is based on the yuzu emulator which ended development back in March 2024. <br /><br />This software should not be used to play games you have not legally obtained.</span></p></body></html> +</style></head><body style=" font-family:'Noto Sans'; font-size:9pt; font-weight:400; font-style:normal;"> +<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;">Eden is an experimental open-source emulator for the Nintendo Switch licensed under GPLv3.0+ which is based on the yuzu emulator which ended development back in March 2024. <br /><br />This software should not be used to play games you have not legally obtained.</span></p></body></html> @@ -72,32 +72,32 @@ p, li { white-space: pre-wrap; } CalibrationConfigurationDialog - + Communicating with the server... Đang giao tiếp với máy chủ... - + Cancel Hủy bỏ - + Touch the top left corner <br>of your touchpad. Hãy chạm vào góc trên cùng<br>bên trái trên touchpad của bạn. - + Now touch the bottom right corner <br>of your touchpad. Giờ hãy chạm vào góc dưới cùng<br>bên phải trên touchpad của bạn. - + Configuration completed! Đã hoàn thành quá trình cấu hình! - + OK OK @@ -397,439 +397,157 @@ Việc này sẽ ban tên người dùng trên diễn đàn và IP của họ lu ConfigurationShared - + % % - - Amiibo editor - - - - - Controller configuration - - - - - Data erase - - - - + Error Lỗi - - Net connect - - - - - Player select - - - - + Software keyboard Bàn phím mềm - - Mii Edit - - - - - Online web - - - - - Shop - - - - - Photo viewer - - - - - Offline web - - - - - Login share - - - - - Wifi web auth - - - - - My page - - - - + Output Engine: Hệ thống xuất: - + Output Device: Thiết bị đầu ra: - + Input Device: Thiết bị đầu vào: - - Mute audio - - - - + Volume: Âm lượng: - + Mute audio when in background Tắt tiếng khi chạy nền - + Multicore CPU Emulation Giả lập CPU đa nhân - - This option increases CPU emulation thread use from 1 to the Switch’s maximum of 4. -This is mainly a debug option and shouldn’t be disabled. - - - - - Memory Layout - - - - - Increases the amount of emulated RAM from the stock 4GB of the retail Switch to the developer kit's 8/6GB. -It’s doesn’t improve stability or performance and is intended to let big texture mods fit in emulated RAM. -Enabling it will increase memory use. It is not recommended to enable unless a specific game with a texture mod needs it. - - - - + Limit Speed Percent Giới hạn phần trăm tốc độ - - Controls the game's maximum rendering speed, but it’s up to each game if it runs faster or not. -200% for a 30 FPS game is 60 FPS, and for a 60 FPS game it will be 120 FPS. -Disabling it means unlocking the framerate to the maximum your PC can reach. - - - - - Synchronize Core Speed - - - - - Synchronizes CPU core speed with the game's maximum rendering speed to boost FPS without affecting game speed (animations, physics, etc.). -Compatibility varies by game; many (especially older ones) may not respond well. -Can help reduce stuttering at lower framerates. - - - - + Accuracy: Độ chính xác: - - This setting controls the accuracy of the emulated CPU. -Don't change this unless you know what you are doing. - - - - - - Backend: - - - - - Fast CPU Time - - - - - Overclocks the emulated CPU to remove some FPS limiters. Weaker CPUs may see reduced performance, and certain games may behave improperly. -Use Boost (1700MHz) to run at the Switch's highest native clock, or Fast (2000MHz) to run at 2x clock. - - - - + Unfuse FMA (improve performance on CPUs without FMA) Không dùng FMA (tăng hiệu suất cho các dòng CPU không hỗ trợ FMA) - - This option improves speed by reducing accuracy of fused-multiply-add instructions on CPUs without native FMA support. - - - - + Faster FRSQRTE and FRECPE FRSQRTE và FRECPE nhanh hơn - - This option improves the speed of some approximate floating-point functions by using less accurate native approximations. - - - - + Faster ASIMD instructions (32 bits only) Các chỉ thị ASIMD nhanh hơn (chỉ cho 32 bit) - - This option improves the speed of 32 bits ASIMD floating-point functions by running with incorrect rounding modes. - - - - + Inaccurate NaN handling Xử lí NaN không chính xác - - This option improves speed by removing NaN checking. -Please note this also reduces accuracy of certain floating-point instructions. - - - - + Disable address space checks Tắt kiểm tra không gian địa chỉ - - This option improves speed by eliminating a safety check before every memory read/write in guest. -Disabling it may allow a game to read/write the emulator's memory. - - - - + Ignore global monitor Bỏ qua màn hình chung - - This option improves speed by relying only on the semantics of cmpxchg to ensure safety of exclusive access instructions. -Please note this may result in deadlocks and other race conditions. - - - - + API: API: - - Switches between the available graphics APIs. -Vulkan is recommended in most cases. - - - - + Device: Thiết bị: - - This setting selects the GPU to use with the Vulkan backend. - - - - + Shader Backend: Backend shader: - - The shader backend to use for the OpenGL renderer. -GLSL is the fastest in performance and the best in rendering accuracy. -GLASM is a deprecated NVIDIA-only backend that offers much better shader building performance at the cost of FPS and rendering accuracy. -SPIR-V compiles the fastest, but yields poor results on most GPU drivers. - - - - + Resolution: Độ phân giải: - - Forces the game to render at a different resolution. -Higher resolutions require much more VRAM and bandwidth. -Options lower than 1X can cause rendering issues. - - - - + Window Adapting Filter: Bộ lọc điều chỉnh cửa sổ: - + FSR Sharpness: Độ nét FSR: - - Determines how sharpened the image will look while using FSR’s dynamic contrast. - - - - + Anti-Aliasing Method: Phương pháp khử răng cưa: - - The anti-aliasing method to use. -SMAA offers the best quality. -FXAA has a lower performance impact and can produce a better and more stable picture under very low resolutions. - - - - + Fullscreen Mode: Chế độ toàn màn hình: - - The method used to render the window in fullscreen. -Borderless offers the best compatibility with the on-screen keyboard that some games request for input. -Exclusive fullscreen may offer better performance and better Freesync/Gsync support. - - - - + Aspect Ratio: Tỉ lệ khung hình: - - Stretches the game to fit the specified aspect ratio. -Switch games only support 16:9, so custom game mods are required to get other ratios. -Also controls the aspect ratio of captured screenshots. - - - - + Use disk pipeline cache Dùng bộ nhớ đệm pipeline trên ổ cứng - - Allows saving shaders to storage for faster loading on following game boots. -Disabling it is only intended for debugging. - - - - - Optimize SPIRV output shader - - - - - Runs an additional optimization pass over generated SPIRV shaders. -Will increase time required for shader compilation. -May slightly improve performance. -This feature is experimental. - - - - + Use asynchronous GPU emulation Dùng giả lập GPU bất đồng bộ - - Uses an extra CPU thread for rendering. -This option should always remain enabled. - - - - + NVDEC emulation: Giả lập NVDEC: - - Specifies how videos should be decoded. -It can either use the CPU or the GPU for decoding, or perform no decoding at all (black screen on videos). -In most cases, GPU decoding provides the best performance. - - - - - ASTC Decoding Method: - - - - - This option controls how ASTC textures should be decoded. -CPU: Use the CPU for decoding, slowest but safest method. -GPU: Use the GPU's compute shaders to decode ASTC textures, recommended for most games and users. -CPU Asynchronously: Use the CPU to decode ASTC textures as they arrive. Completely eliminates ASTC decoding -stuttering at the cost of rendering issues while the texture is being decoded. - - - - - ASTC Recompression Method: - - - - - Almost all desktop and laptop dedicated GPUs lack support for ASTC textures, forcing the emulator to decompress to an intermediate format any card supports, RGBA8. -This option recompresses RGBA8 to either the BC1 or BC3 format, saving VRAM but negatively affecting image quality. - - - - - VRAM Usage Mode: - - - - - Selects whether the emulator should prefer to conserve memory or make maximum usage of available video memory for performance. Has no effect on integrated graphics. Aggressive mode may severely impact the performance of other applications such as recording software. - - - - + VSync Mode: Chế độ Vsync: - + FIFO (VSync) does not drop frames or exhibit tearing but is limited by the screen refresh rate. FIFO Relaxed is similar to FIFO but allows tearing as it recovers from a slow down. Mailbox can have lower latency than FIFO and does not tear but may drop frames. @@ -840,62 +558,34 @@ Mailbox có thể có độ trễ thấp hơn FIFO và không gây hiện tượ Immediate (không đồng bộ hóa) chỉ hiển thị những gì đã có và có thể gây hiện tượng xé hình. - + Enable asynchronous presentation (Vulkan only) Bật hiển thị bất đồng bộ (chỉ cho Vulkan) - - Slightly improves performance by moving presentation to a separate CPU thread. - - - - + Force maximum clocks (Vulkan only) Buộc chạy ở xung nhịp tối đa (chỉ cho Vulkan) - + Runs work in the background while waiting for graphics commands to keep the GPU from lowering its clock speed. Chạy các công việc trong nền trong khi đang chờ lệnh đồ họa để giữ cho GPU không giảm xung nhịp. - + Anisotropic Filtering: Lọc bất đẳng hướng: - - Controls the quality of texture rendering at oblique angles. -It’s a light setting and safe to set at 16x on most GPUs. - - - - Accuracy Level: - Mức độ chính xác: + Mức độ chính xác: - - GPU emulation accuracy. -Most games render fine with Normal, but High is still required for some. -Particles tend to only render correctly with High accuracy. -Extreme should only be used for debugging. -This option can be changed while playing. -Some games may require booting on high to render properly. - - - - + Use asynchronous shader building (Hack) Dùng tính năng dựng shader bất đồng bộ (Hack) - - - Enables asynchronous shader compilation, which may reduce shader stutter. -This feature is experimental. - - Use Fast GPU Time (Hack) Dùng thời gian GPU nhanh (Hack) @@ -905,1021 +595,1428 @@ This feature is experimental. Bật chế độ Thời gian GPU nhanh. Tùy chọn này sẽ buộc hầu hết các game chạy ở độ phân giải gốc cao nhất của chúng. - + Use Vulkan pipeline cache Dùng bộ nhớ đệm pipeline Vulkan - + + Enable Reactive Flushing + Bật xả tương ứng + + + + Sync to framerate of video playback + Đồng bộ hóa với tốc độ khung hình khi phát video + + + + Run the game at normal speed during video playback, even when the framerate is unlocked. + Chạy game với tốc độ bình thường trong quá trình phát video, ngay cả khi tốc độ khung hình được mở khóa. + + + + Barrier feedback loops + Vòng lặp phản hồi rào cản + + + + Improves rendering of transparency effects in specific games. + Cải thiện hiệu quả kết xuất của hiệu ứng trong suốt trong một số game. + + + + RNG Seed + Hạt giống RNG + + + + Device Name + Tên thiết bị + + + + Note: this can be overridden when region setting is auto-select + Lưu ý: Tuỳ chọn này có thể bị ghi đè nếu cài đặt vùng là chọn tự động. + + + + Region: + Vùng: + + + + Time Zone: + Múi giờ: + + + + Sound Output Mode: + Chế độ đầu ra âm thanh: + + + + Prompt for user on game boot + Hiển thị cửa sổ chọn người dùng khi bắt đầu game + + + + Pause emulation when in background + Tạm dừng giả lập khi chạy nền + + + + Hide mouse on inactivity + Ẩn con trỏ chuột khi không dùng + + + + Disable controller applet + Vô hiệu hoá applet tay cầm + + + + CPU + CPU + + + + Uncompressed (Best quality) + Không nén (Chất lượng tốt nhất) + + + + BC1 (Low quality) + BC1 (Chất lượng thấp) + + + + BC3 (Medium quality) + BC3 (Chất lượng trung bình) + + + + OpenGL + OpenGL + + + + Vulkan + Vulkan + + + + Null + Null + + + + GLSL + GLSL + + + + GLASM (Assembly Shaders, NVIDIA Only) + GLASM (Assembly Shaders, chỉ cho NVIDIA) + + + + Normal + Bình thường + + + + High + Cao + + + + Extreme + Cực đại + + + + Auto + Tự động + + + + Accurate + Chính xác + + + + Unsafe + Không an toàn + + + + Paranoid (disables most optimizations) + Paranoid (vô hiệu hoá hầu hết sự tối ưu) + + + + Borderless Windowed + Cửa sổ không viền + + + + Exclusive Fullscreen + Toàn màn hình + + + + No Video Output + Không có đầu ra video + + + + CPU Video Decoding + Giải mã video bằng CPU + + + + GPU Video Decoding (Default) + Giải mã video bằng GPU (Mặc định) + + + + 0.75X (540p/810p) [EXPERIMENTAL] + 0.75X (540p/810p) [THỬ NGHIỆM] + + + + 1X (720p/1080p) + 1X (720p/1080p) + + + + 1.5X (1080p/1620p) [EXPERIMENTAL] + 1.5X (1080p/1620p) [THỬ NGHIỆM] + + + + 2X (1440p/2160p) + 2X (1440p/2160p) + + + + 3X (2160p/3240p) + 3X (2160p/3240p) + + + + 4X (2880p/4320p) + 4X (2880p/4320p) + + + + 5X (3600p/5400p) + 5X (3600p/5400p) + + + + 6X (4320p/6480p) + 6X (4320p/6480p) + + + + 7X (5040p/7560p) + 7X (5040p/7560p) + + + + 8X (5760p/8640p) + 8X (5760p/8640p) + + + + Nearest Neighbor + Nearest Neighbor + + + + Bilinear + Bilinear + + + + Bicubic + Bicubic + + + + Gaussian + Gaussian + + + + ScaleForce + ScaleForce + + + + AMD FidelityFX™️ Super Resolution + AMD FidelityFX™️ Super Resolution + + + + None + Không có + + + + FXAA + FXAA + + + + SMAA + SMAA + + + + Default (16:9) + Mặc định (16:9) + + + + Force 4:3 + Dùng 4:3 + + + + Force 21:9 + Dùng 21:9 + + + + Force 16:10 + Dùng 16:10 + + + + Stretch to Window + Mở rộng đến cửa sổ + + + + Automatic + Tự động + + + + + Default + Mặc định + + + + Amiibo editor + + + + + Controller configuration + + + + + Data erase + + + + + Net connect + + + + + Player select + + + + + Mii Edit + + + + + Online web + + + + + Shop + + + + + Photo viewer + + + + + Offline web + + + + + Login share + + + + + Wifi web auth + + + + + My page + + + + + Mute audio + + + + + This option increases CPU emulation thread use from 1 to the Switch’s maximum of 4. +This is mainly a debug option and shouldn’t be disabled. + + + + + Memory Layout + + + + + Increases the amount of emulated RAM from the stock 4GB of the retail Switch to the developer kit's 8/6GB. +It’s doesn’t improve stability or performance and is intended to let big texture mods fit in emulated RAM. +Enabling it will increase memory use. It is not recommended to enable unless a specific game with a texture mod needs it. + + + + + Controls the game's maximum rendering speed, but it’s up to each game if it runs faster or not. +200% for a 30 FPS game is 60 FPS, and for a 60 FPS game it will be 120 FPS. +Disabling it means unlocking the framerate to the maximum your PC can reach. + + + + + Synchronize Core Speed + + + + + Synchronizes CPU core speed with the game's maximum rendering speed to boost FPS without affecting game speed (animations, physics, etc.). +Compatibility varies by game; many (especially older ones) may not respond well. +Can help reduce stuttering at lower framerates. + + + + + This setting controls the accuracy of the emulated CPU. +Don't change this unless you know what you are doing. + + + + + + Backend: + + + + + Fast CPU Time + + + + + Overclocks the emulated CPU to remove some FPS limiters. Weaker CPUs may see reduced performance, and certain games may behave improperly. +Use Boost (1700MHz) to run at the Switch's highest native clock, or Fast (2000MHz) to run at 2x clock. + + + + + Custom CPU Ticks + + + + + Set a custom value of CPU ticks. Higher values can increase performance, but may also cause the game to freeze. A range of 77–21000 is recommended. + + + + + Enable Host MMU Emulation (fastmem) + + + + + This optimization speeds up memory accesses by the guest program. +Enabling it causes guest memory reads/writes to be done directly into memory and make use of Host's MMU. +Disabling this forces all memory accesses to use Software MMU Emulation. + + + + + This option improves speed by reducing accuracy of fused-multiply-add instructions on CPUs without native FMA support. + + + + + This option improves the speed of some approximate floating-point functions by using less accurate native approximations. + + + + + This option improves the speed of 32 bits ASIMD floating-point functions by running with incorrect rounding modes. + + + + + This option improves speed by removing NaN checking. +Please note this also reduces accuracy of certain floating-point instructions. + + + + + This option improves speed by eliminating a safety check before every memory read/write in guest. +Disabling it may allow a game to read/write the emulator's memory. + + + + + This option improves speed by relying only on the semantics of cmpxchg to ensure safety of exclusive access instructions. +Please note this may result in deadlocks and other race conditions. + + + + + Switches between the available graphics APIs. +Vulkan is recommended in most cases. + + + + + This setting selects the GPU to use with the Vulkan backend. + + + + + The shader backend to use for the OpenGL renderer. +GLSL is the fastest in performance and the best in rendering accuracy. +GLASM is a deprecated NVIDIA-only backend that offers much better shader building performance at the cost of FPS and rendering accuracy. +SPIR-V compiles the fastest, but yields poor results on most GPU drivers. + + + + + Forces the game to render at a different resolution. +Higher resolutions require much more VRAM and bandwidth. +Options lower than 1X can cause rendering issues. + + + + + Determines how sharpened the image will look while using FSR’s dynamic contrast. + + + + + The anti-aliasing method to use. +SMAA offers the best quality. +FXAA has a lower performance impact and can produce a better and more stable picture under very low resolutions. + + + + + The method used to render the window in fullscreen. +Borderless offers the best compatibility with the on-screen keyboard that some games request for input. +Exclusive fullscreen may offer better performance and better Freesync/Gsync support. + + + + + Stretches the game to fit the specified aspect ratio. +Switch games only support 16:9, so custom game mods are required to get other ratios. +Also controls the aspect ratio of captured screenshots. + + + + + Allows saving shaders to storage for faster loading on following game boots. +Disabling it is only intended for debugging. + + + + + Optimize SPIRV output shader + + + + + Runs an additional optimization pass over generated SPIRV shaders. +Will increase time required for shader compilation. +May slightly improve performance. +This feature is experimental. + + + + + Uses an extra CPU thread for rendering. +This option should always remain enabled. + + + + + Specifies how videos should be decoded. +It can either use the CPU or the GPU for decoding, or perform no decoding at all (black screen on videos). +In most cases, GPU decoding provides the best performance. + + + + + ASTC Decoding Method: + + + + + This option controls how ASTC textures should be decoded. +CPU: Use the CPU for decoding, slowest but safest method. +GPU: Use the GPU's compute shaders to decode ASTC textures, recommended for most games and users. +CPU Asynchronously: Use the CPU to decode ASTC textures as they arrive. Completely eliminates ASTC decoding +stuttering at the cost of rendering issues while the texture is being decoded. + + + + + ASTC Recompression Method: + + + + + Almost all desktop and laptop dedicated GPUs lack support for ASTC textures, forcing the emulator to decompress to an intermediate format any card supports, RGBA8. +This option recompresses RGBA8 to either the BC1 or BC3 format, saving VRAM but negatively affecting image quality. + + + + + VRAM Usage Mode: + + + + + Selects whether the emulator should prefer to conserve memory or make maximum usage of available video memory for performance. +Aggressive mode may severely impact the performance of other applications such as recording software. + + + + + Skip CPU Inner Invalidation + + + + + Skips certain CPU-side cache invalidations during memory updates, reducing CPU usage and improving it's performance. This may cause glitches or crashes on some games. + + + + + Sync Memory Operations + + + + + Ensures data consistency between compute and memory operations. +This option should fix issues in some games, but may also reduce performance in some cases. +Unreal Engine 4 games often see the most significant changes thereof. + + + + + Slightly improves performance by moving presentation to a separate CPU thread. + + + + + Controls the quality of texture rendering at oblique angles. +It’s a light setting and safe to set at 16x on most GPUs. + + + + + GPU Accuracy: + + + + + Controls the GPU emulation accuracy. +Most games render fine with Normal, but High is still required for some. +Particles tend to only render correctly with High accuracy. +Extreme should only be used as a last resort. + + + + + DMA Accuracy: + + + + + Controls the DMA precision accuracy. Safe precision can fix issues in some games, but it can also impact performance in some cases. +If unsure, leave this on Default. + + + + + Enables asynchronous shader compilation, which may reduce shader stutter. +This feature is experimental. + + + + + Fast GPU Time (Hack) + + + + + Overclocks the emulated GPU to increase dynamic resolution and render distance. +Use 128 for maximal performance and 512 for maximal graphics fidelity. + + + + Enables GPU vendor-specific pipeline cache. This option can improve shader loading time significantly in cases where the Vulkan driver does not store pipeline cache files internally. - + Enable Compute Pipelines (Intel Vulkan Only) - + Enable compute pipelines, required by some games. This setting only exists for Intel proprietary drivers, and may crash if enabled. Compute pipelines are always enabled on all other drivers. - - Enable Reactive Flushing - Bật xả tương ứng - - - + Uses reactive flushing instead of predictive flushing, allowing more accurate memory syncing. - - Sync to framerate of video playback - Đồng bộ hóa với tốc độ khung hình khi phát video + + RAII + - - Run the game at normal speed during video playback, even when the framerate is unlocked. - Chạy game với tốc độ bình thường trong quá trình phát video, ngay cả khi tốc độ khung hình được mở khóa. + + A method of automatic resource management in Vulkan that ensures proper release of resources when they are no longer needed, but may cause crashes in bundled games. + - - Barrier feedback loops - Vòng lặp phản hồi rào cản + + Extended Dynamic State + - - Improves rendering of transparency effects in specific games. - Cải thiện hiệu quả kết xuất của hiệu ứng trong suốt trong một số game. + + Controls the number of features that can be used in Extended Dynamic State. +Higher numbers allow for more features and can increase performance, but may cause issues with some drivers and vendors. +The default value may vary depending on your system and hardware capabilities. +This value can be changed until stability and a better visual quality are achieved. + - - RNG Seed - Hạt giống RNG + + Provoking Vertex + - + + Improves lighting and vertex handling in certain games. +Only Vulkan 1.0+ devices support this extension. + + + + + Descriptor Indexing + + + + + Improves texture & buffer handling and the Maxwell translation layer. +Some Vulkan 1.1+ and all 1.2+ devices support this extension. + + + + + Sample Shading + + + + + Allows the fragment shader to execute per sample in a multi-sampled fragment instead once per fragment. Improves graphics quality at the cost of some performance. +Higher values improve quality more but also reduce performance to a greater extent. + + + + Controls the seed of the random number generator. Mainly used for speedrunning purposes. - - Device Name - Tên thiết bị - - - + The name of the emulated Switch. - + Custom RTC Date: - + This option allows to change the emulated clock of the Switch. Can be used to manipulate time in games. - + Language: - - Note: this can be overridden when region setting is auto-select - Lưu ý: Tuỳ chọn này có thể bị ghi đè nếu cài đặt vùng là chọn tự động. - - - - Region: - Vùng: - - - + The region of the emulated Switch. - - Time Zone: - Múi giờ: - - - + The time zone of the emulated Switch. - - Sound Output Mode: - Chế độ đầu ra âm thanh: - - - + Console Mode: - + Selects if the console is emulated in Docked or Handheld mode. Games will change their resolution, details and supported controllers and depending on this setting. Setting to Handheld can help improve performance for low end systems. - - Prompt for user on game boot - Hiển thị cửa sổ chọn người dùng khi bắt đầu game - - - - Pause emulation when in background - Tạm dừng giả lập khi chạy nền - - - - Fast GPU Time (Hack) + + Ask to select a user profile on each boot, useful if multiple people use Eden on the same PC. - - Overclocks the emulated GPU to increase dynamic resolution and render distance. -Use 128 for maximal performance and 512 for maximal graphics fidelity. + + This setting pauses Eden when focusing other windows. - - Extended Dynamic State - - - - - Enables the VkExtendedDynamicState* extensions. -Higher dynamic states will generally improve performance, but may cause issues on certain games or devices. - - - - - Provoking Vertex - - - - - Improves lighting and vertex handling in certain games. -Only Vulkan 1.0+ devices support this extension. - - - - - Descriptor Indexing - - - - - Improves texture & buffer handling and the Maxwell translation layer. -Some Vulkan 1.1+ and all 1.2+ devices support this extension. - - - - - Ask to select a user profile on each boot, useful if multiple people use eden on the same PC. - - - - - This setting pauses eden when focusing other windows. - - - - + Confirm before stopping emulation - + This setting overrides game prompts asking to confirm stopping the game. Enabling it bypasses such prompts and directly exits the emulation. - - Hide mouse on inactivity - Ẩn con trỏ chuột khi không dùng - - - + This setting hides the mouse after 2.5s of inactivity. - - Disable controller applet - Vô hiệu hoá applet tay cầm - - - + Forcibly disables the use of the controller applet by guests. When a guest attempts to open the controller applet, it is immediately closed. - + Check for updates - + Whether or not to check for updates upon startup. - + Enable Gamemode - + Custom frontend - + Real applet - + Never - + On Load - + Always - - CPU - CPU - - - + GPU - + CPU Asynchronous - - Uncompressed (Best quality) - Không nén (Chất lượng tốt nhất) - - - - BC1 (Low quality) - BC1 (Chất lượng thấp) - - - - BC3 (Medium quality) - BC3 (Chất lượng trung bình) - - - + Conservative - + Aggressive - - OpenGL - OpenGL - - - - Vulkan - Vulkan - - - - Null - Null - - - - GLSL - GLSL - - - - GLASM (Assembly Shaders, NVIDIA Only) - GLASM (Assembly Shaders, chỉ cho NVIDIA) - - - + SPIR-V (Experimental, AMD/Mesa Only) - - Normal - Bình thường + + Unsafe (fast) + - - High - Cao + + Safe (stable) + - - Extreme - Cực đại - - - - Auto - Tự động - - - - Accurate - Chính xác - - - - Unsafe - Không an toàn - - - - Paranoid (disables most optimizations) - Paranoid (vô hiệu hoá hầu hết sự tối ưu) - - - + Dynarmic - + NCE - - Borderless Windowed - Cửa sổ không viền - - - - Exclusive Fullscreen - Toàn màn hình - - - - No Video Output - Không có đầu ra video - - - - CPU Video Decoding - Giải mã video bằng CPU - - - - GPU Video Decoding (Default) - Giải mã video bằng GPU (Mặc định) - - - + 0.25X (180p/270p) [EXPERIMENTAL] - + 0.5X (360p/540p) [EXPERIMENTAL] - - 0.75X (540p/810p) [EXPERIMENTAL] - 0.75X (540p/810p) [THỬ NGHIỆM] - - - - 1X (720p/1080p) - 1X (720p/1080p) - - - - 1.5X (1080p/1620p) [EXPERIMENTAL] - 1.5X (1080p/1620p) [THỬ NGHIỆM] - - - - 2X (1440p/2160p) - 2X (1440p/2160p) - - - - 3X (2160p/3240p) - 3X (2160p/3240p) - - - - 4X (2880p/4320p) - 4X (2880p/4320p) - - - - 5X (3600p/5400p) - 5X (3600p/5400p) - - - - 6X (4320p/6480p) - 6X (4320p/6480p) - - - - 7X (5040p/7560p) - 7X (5040p/7560p) - - - - 8X (5760p/8640p) - 8X (5760p/8640p) - - - - Nearest Neighbor - Nearest Neighbor - - - - Bilinear - Bilinear - - - - Bicubic - Bicubic - - - - Gaussian - Gaussian - - - - ScaleForce - ScaleForce - - - - AMD FidelityFX™️ Super Resolution - AMD FidelityFX™️ Super Resolution - - - + Area - - None - Không có - - - - FXAA - FXAA - - - - SMAA - SMAA - - - - Default (16:9) - Mặc định (16:9) - - - - Force 4:3 - Dùng 4:3 - - - - Force 21:9 - Dùng 21:9 - - - - Force 16:10 - Dùng 16:10 - - - - Stretch to Window - Mở rộng đến cửa sổ - - - - Automatic - Tự động - - - - Default - Mặc định - - - + 2x 2x - + 4x 4x - + 8x 8x - + 16x 16x - + Japanese (日本語) Tiếng Nhật (日本語) - + American English Tiếng Anh Mỹ - + French (français) Tiếng Pháp (French) - + German (Deutsch) Tiếng Đức (Deutsch) - + Italian (italiano) Tiếng Ý (italiano) - + Spanish (español) Tiếng Tây Ban Nha (Español) - + Chinese Tiếng Trung - + Korean (한국어) Tiếng Hàn (한국어) - + Dutch (Nederlands) Tiếng Hà Lan (Nederlands) - + Portuguese (português) Tiếng Bồ Đào Nha (Portuguese) - + Russian (Русский) Tiếng Nga (Русский) - + Taiwanese Tiếng Đài Loan - + British English Tiếng Anh Anh - + Canadian French Tiếng Pháp Canada - + Latin American Spanish Tiếng Tây Ban Nha Mỹ Latinh - + Simplified Chinese Tiếng Trung giản thể - + Traditional Chinese (正體中文) Tiếng Trung phồn thể (正體中文) - + Brazilian Portuguese (português do Brasil) Tiếng Bồ Đào Nha Brasil (Português do Brasil) - - + + Serbian (српски) + + + + + Japan Nhật Bản - + USA Hoa Kỳ - + Europe Châu Âu - + Australia Úc - + China Trung Quốc - + Korea Hàn Quốc - + Taiwan Đài Loan - + Auto (%1) Auto select time zone Tự động (%1) - + Default (%1) Default time zone Mặc định (%1) - + CET CET - + CST6CDT CST6CDT - + Cuba Cuba - + EET EET - + Egypt Ai Cập - + Eire Eire - + EST EST - + EST5EDT EST5EDT - + GB GB - + GB-Eire GB-Eire - + GMT GMT - + GMT+0 GMT+0 - + GMT-0 GMT-0 - + GMT0 GMT0 - + Greenwich Greenwich - + Hongkong Hồng Kông - + HST HST - + Iceland Iceland - + Iran Iran - + Israel Israel - + Jamaica Jamaica - + Kwajalein Kwajalein - + Libya Libya - + MET MET - + MST MST - + MST7MDT MST7MDT - + Navajo Navajo - + NZ NZ - + NZ-CHAT NZ-CHAT - + Poland Ba Lan - + Portugal Bồ Đào Nha - + PRC PRC - + PST8PDT PST8PDT - + ROC ROC - + ROK ROK - + Singapore Singapore - + Turkey Thổ Nhĩ Kỳ - + UCT UCT - + Universal Quốc tế - + UTC UTC - + W-SU W-SU - + WET WET - + Zulu Zulu - + Mono Mono - + Stereo Stereo - + Surround Surround - + 4GB DRAM (Default) - + 6GB DRAM (Unsafe) - + 8GB DRAM - + 10GB DRAM (Unsafe) - + 12GB DRAM (Unsafe) - - Low (128) - - - - - Medium (256) - - - - - High (512) - - - - + Docked Docked - + Handheld Handheld - + Boost (1700MHz) - + Fast (2000MHz) - + Always ask (Default) - + Only if game specifies not to stop - + Never ask + + + Low (128) + + + + + Medium (256) + + + + + High (512) + + ConfigureApplets @@ -2271,27 +2368,27 @@ When a guest attempts to open the controller applet, it is immediately closed.Ghi nhật ký - + Open Log Location Mở vị trí nhật ký - + Global Log Filter Bộ lọc nhật ký chung - + When checked, the max size of the log increases from 100 MB to 1 GB Khi kích hoạt, kích thước tối đa của tập tin nhật ký tăng từ 100 MB lên 1 GB - + Enable Extended Logging** Bật ghi nhật ký mở rộng** - + Show Log in Console Hiện nhật ký trong console @@ -2437,7 +2534,7 @@ When a guest attempts to open the controller applet, it is immediately closed. - **This will be reset automatically when eden closes. + **This will be reset automatically when Eden closes. @@ -2499,7 +2596,7 @@ When a guest attempts to open the controller applet, it is immediately closed.**Sẽ tự động đặt lại khi đóng yuzu. - + Web applet not compiled Applet web chưa được biên dịch @@ -2549,7 +2646,7 @@ When a guest attempts to open the controller applet, it is immediately closed. - eden Configuration + Eden Configuration @@ -2558,88 +2655,88 @@ When a guest attempts to open the controller applet, it is immediately closed.Một số cài đặt chỉ khả dụng khi game không chạy. - + Applets - - + + Audio Âm thanh - - + + CPU CPU - + Debug Gỡ lỗi - + Filesystem Hệ thống tập tin - - + + General Chung - - + + Graphics Đồ hoạ - + GraphicsAdvanced Đồ họa Nâng cao - + GraphicsExtensions - + Hotkeys Phím tắt - - + + Controls Điều khiển - + Profiles Hồ sơ - + Network Mạng - - + + System Hệ thống - + Game List Danh sách game - + Web Web @@ -2737,51 +2834,45 @@ When a guest attempts to open the controller applet, it is immediately closed. - - - Reset Metadata Cache Đặt lại bộ nhớ đệm metadata - + Select Emulated NAND Directory... Chọn thư mục NAND giả lập... - + Select Emulated SD Directory... Chọn thư mục SD giả lập... - + Select Gamecard Path... Chọn đường dẫn tới đĩa game... - + Select Dump Directory... Chọn thư mục trích xuất... - + Select Mod Load Directory... Chọn thư mục chứa mod... - The metadata cache is already empty. - Bộ nhớ đệm metadata trống. + Bộ nhớ đệm metadata trống. - The operation completed successfully. - Các hoạt động đã hoàn tất thành công. + Các hoạt động đã hoàn tất thành công. - The metadata cache couldn't be deleted. It might be in use or non-existent. - Bộ nhớ đệm metadata không thể xoá. Nó có thể đang được sử dụng hoặc không tồn tại. + Bộ nhớ đệm metadata không thể xoá. Nó có thể đang được sử dụng hoặc không tồn tại. @@ -2812,12 +2903,12 @@ When a guest attempts to open the controller applet, it is immediately closed.yuzu - - eden + + Eden - + This reset all settings and remove all per-game configurations. This will not delete game directories, profiles, or input profiles. Proceed? Quá trình này sẽ đặt lại toàn bộ tùy chỉnh và gỡ hết mọi cài đặt cho từng game riêng lẻ. Quá trình này không xoá thư mục game, hồ sơ, hay hồ sơ đầu vào. Tiếp tục? @@ -2850,33 +2941,33 @@ When a guest attempts to open the controller applet, it is immediately closed.Màu nền: - + % FSR sharpening percentage (e.g. 50%) % - + Off Tắt - + VSync Off Tắt Vsync - + Recommended Đề xuất - + On Bật - + VSync On Bật Vsync @@ -2913,14 +3004,18 @@ When a guest attempts to open the controller applet, it is immediately closed. - Vulkan Extension Settings + Vulkan Extensions Settings - - While it's recommended to use state 3, some games may perform better on lower states. Setting to 0 (disabled) may also break games. -If your GPU is older (i.e. RX570/580 or older), it may not support these features. If this is the case, set the slider to 0 and uncheck all boxes. -These settings are experimental, and may cause black screens. If your games fail to boot or are stuck on a black screen, change these settings around. + + % + Sample Shading percentage (e.g. 50%) + % + + + + Extended Dynamic State is disabled on macOS due to MoltenVK compatibility issues that cause black screens. @@ -2952,75 +3047,75 @@ These settings are experimental, and may cause black screens. If your games fail Khôi phục mặc định - + Action Hành động - + Hotkey Phím tắt - + Controller Hotkey Phím tắt tay cầm - - - + + + Conflicting Key Sequence Tổ hợp phím bị xung đột - - + + The entered key sequence is already assigned to: %1 Tổ hợp phím này đã gán với: %1 - + [waiting] [chờ] - + Invalid Không hợp lệ - + Invalid hotkey settings - + An error occurred. Please report this issue on github. - + Restore Default Khôi phục mặc định - + Clear Xóa - + Conflicting Button Sequence Tổ hợp nút bị xung đột - + The default button sequence is already assigned to: %1 Tổ hợp nút mặc định đã được gán cho: %1 - + The default key sequence is already assigned to: %1 Tổ hợp phím này đã gán với: %1 @@ -3340,7 +3435,7 @@ These settings are experimental, and may cause black screens. If your games fail - Requires restarting eden + Requires restarting Eden @@ -3495,7 +3590,7 @@ These settings are experimental, and may cause black screens. If your games fail - + Left Stick Cần trái @@ -3605,14 +3700,14 @@ These settings are experimental, and may cause black screens. If your games fail - + L L - + ZL ZL @@ -3631,7 +3726,7 @@ These settings are experimental, and may cause black screens. If your games fail - + Plus Cộng @@ -3644,15 +3739,15 @@ These settings are experimental, and may cause black screens. If your games fail - - + + R R - + ZR ZR @@ -3697,7 +3792,7 @@ These settings are experimental, and may cause black screens. If your games fail - + Right Stick Cần phải @@ -3712,242 +3807,242 @@ These settings are experimental, and may cause black screens. If your games fail Cấu hình - - - - + + + + Clear Xóa - - - - - + + + + + [not set] [chưa đặt] - - - + + + Invert button Đảo ngược nút - - + + Toggle button Đổi nút - + Turbo button Nút turbo - - + + Invert axis Đảo ngược trục - - - + + + Set threshold Thiết lập ngưỡng - - + + Choose a value between 0% and 100% Chọn một giá trị giữa 0% và 100% - + Toggle axis Chuyển đổi trục - + Set gyro threshold Thiết lập ngưỡng cảm biến con quay - + Calibrate sensor Hiệu chỉnh cảm biến - + Map Analog Stick Ánh xạ cần analog - + After pressing OK, first move your joystick horizontally, and then vertically. To invert the axes, first move your joystick vertically, and then horizontally. Sau khi nhấn OK, di chuyển cần điều khiển theo chiều ngang, sau đó theo chiều dọc. Để đảo ngược hướng, di chuyển cần điều khiển theo chiều dọc trước, sau đó theo chiều ngang. - + Center axis Canh chỉnh trục - - + + Deadzone: %1% Vùng chết: %1% - - + + Modifier Range: %1% Phạm vi điều chỉnh: %1% - - + + Pro Controller Pro Controller - + Dual Joycons Joycon đôi - + Left Joycon Joycon trái - + Right Joycon Joycon phải - + Handheld Handheld - + GameCube Controller Tay cầm GameCube - + Poke Ball Plus Poke Ball Plus - + NES Controller Tay cầm NES - + SNES Controller Tay cầm SNES - + N64 Controller Tay cầm N64 - + Sega Genesis Sega Genesis - + Start / Pause Bắt đầu / Tạm dừng - + Z Z - + Control Stick Cần điều khiển - + C-Stick C-Stick - + Shake! Lắc! - + [waiting] [đang chờ] - + New Profile Hồ sơ mới - + Enter a profile name: Nhập tên hồ sơ: - - + + Create Input Profile Tạo hồ sơ đầu vào - + The given profile name is not valid! Tên hồ sơ không hợp lệ! - + Failed to create the input profile "%1" Thất bại khi tạo hồ sơ đầu vào "%1" - + Delete Input Profile Xoá hồ sơ đầu vào - + Failed to delete the input profile "%1" Thất bại khi xoá hồ sơ đầu vào "%1" - + Load Input Profile Nạp hồ sơ đầu vào - + Failed to load the input profile "%1" Thất bại khi nạp hồ sơ đầu vào "%1" - + Save Input Profile Lưu hồ sơ đầu vào - + Failed to save the input profile "%1" Thất bại khi lưu hồ sơ dầu vào "%1" @@ -4004,7 +4099,7 @@ To invert the axes, first move your joystick vertically, and then horizontally.< - + Configure Cấu hình @@ -4040,7 +4135,7 @@ To invert the axes, first move your joystick vertically, and then horizontally.< - + Test Thử nghiệm @@ -4059,7 +4154,7 @@ To invert the axes, first move your joystick vertically, and then horizontally.< <a href='https://yuzu-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> - + %1:%2 %1:%2 @@ -4068,77 +4163,77 @@ To invert the axes, first move your joystick vertically, and then horizontally.< yuzu - + <a href='https://eden-emulator.github.io/wiki/using-a-controller-or-android-phone-for-motion-or-touch-input'><span style="text-decoration: underline; color:#039be5;">Learn More</span></a> - + Port number has invalid characters Cổng có kí tự không hợp lệ - - - - - - - eden + + + + + + + Eden - + Port has to be in range 0 and 65353 Cổng phải từ 0 đến 65353 - + IP address is not valid Địa chỉ IP không hợp lệ - + This UDP server already exists Máy chủ UDP này đã tồn tại - + Unable to add more than 8 servers Không thể thêm quá 8 máy chủ - + Testing Thử nghiệm - + Configuring Cấu hình - + Test Successful Thử nghiệm thành công - + Successfully received data from the server. Thành công nhận dữ liệu từ máy chủ. - + Test Failed Thử nghiệm 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 được dữ liệu hợp lệ từ máy chủ.<br>Hãy chắc chắn máy chủ được thiết lập chính xác và địa chỉ lẫn cổng đều đúng. - + UDP Test or calibration configuration is in progress.<br>Please wait for them to finish. Cấu hình kiểm tra hoặc hiệu chuẩn UDP đang được tiến hành.<br>Vui lòng chờ cho đến khi nó hoàn thành. @@ -4265,7 +4360,12 @@ Các giá trị hiện tại lần lượt là %1% và %2%. Giao diện mạng - + + Enable Airplane Mode + + + + None Không có @@ -4323,52 +4423,52 @@ Các giá trị hiện tại lần lượt là %1% và %2%. Một số cài đặt chỉ khả dụng khi game không chạy. - + Add-Ons Add-Ons - + System Hệ thống - + CPU CPU - + Graphics Đồ hoạ - + Adv. Graphics Đồ hoạ nâng cao - + GPU Extensions - + Audio Âm thanh - + Input Profiles Hồ sơ đầu vào - + Linux - + Properties Thuộc tính @@ -4386,12 +4486,12 @@ Các giá trị hiện tại lần lượt là %1% và %2%. Add-Ons - + Patch Name Tên bản vá - + Version Phiên bản @@ -4429,27 +4529,32 @@ Các giá trị hiện tại lần lượt là %1% và %2%. Đặt hình ảnh - + + Select Avatar + + + + Add Thêm - + Rename Đổi tên - + Remove Loại bỏ - + Profile management is available only when game is not running. Quản lí hồ sơ chỉ khả dụng khi game không chạy. - + %1 %2 %1 is the profile username, %2 is the formatted UUID (e.g. 00112233-4455-6677-8899-AABBCCDDEEFF)) @@ -4457,100 +4562,189 @@ Các giá trị hiện tại lần lượt là %1% và %2%. %2 - + Enter Username Nhập tên người dùng - + Users Người dùng - + Enter a username for the new user: Chọn tên người dùng cho người dùng mới: - + Enter a new username: Nhập tên người dùng mới: - + + Error saving user image + + + + + Unable to save image to file + + + + Select User Image Chọn ảnh người dùng - - JPEG Images (*.jpg *.jpeg) - Ảnh JPEG (*.jpg *.jpeg) + + Image Formats (*.jpg *.jpeg *.png *.bmp) + - + + No firmware available + + + + + Please install the firmware to use firmware avatars. + + + + + + Error loading archive + + + + + Archive is not available. Please install/reinstall firmware. + + + + + Archive does not contain romfs. It is probably corrupt. + + + + + Error extracting archive + + + + + Archive could not be extracted. It is probably corrupt. + + + + + Error finding image directory + + + + + Failed to find image directory in the archive. + + + + + No images found + + + + + No avatar images were found in the archive. + + + + JPEG Images (*.jpg *.jpeg) + Ảnh JPEG (*.jpg *.jpeg) + + + Error deleting image Lỗi khi xóa ảnh - + Error occurred attempting to overwrite previous image at: %1. Có lỗi khi ghi đè ảnh trước tại: %1. - + Error deleting file Lỗi khi xoá tập tin - + Unable to delete existing file: %1. Không thể xóa tập tin hiện tại: %1. - + Error creating user image directory Lỗi khi tạo thư mục chứa ảnh người dùng - + Unable to create directory %1 for storing user images. Không thể tạo thư mục %1 để chứa ảnh người dùng. - Error copying user image - Lỗi chép ảnh người dùng + Lỗi chép ảnh người dùng - Unable to copy image from %1 to %2 - Không thể chép ảnh từ %1 sang %2 + Không thể chép ảnh từ %1 sang %2 - Error resizing user image - Lỗi thu phóng ảnh + Lỗi thu phóng ảnh - Unable to resize image - Không thể thu phóng ảnh + Không thể thu phóng ảnh + + + + ConfigureProfileManagerAvatarDialog + + + Select + + + + + Cancel + Hủy bỏ + + + + Background Color + + + + + Select Firmware Avatar + ConfigureProfileManagerDeleteDialog - + Delete this user? All of the user's save data will be deleted. Xoá người dùng này? Tất cả dữ liệu save của người dùng này sẽ bị xoá. - + Confirm Delete Xác nhận xóa - + Name: %1 UUID: %2 Tên: %1 @@ -4603,7 +4797,7 @@ UUID: %2 - + Enable Bật @@ -4614,7 +4808,7 @@ UUID: %2 - + Not connected Không kết nối @@ -4624,63 +4818,63 @@ UUID: %2 Khôi phục mặc định - + Clear Xóa - + [not set] [chưa đặt] - + Invert axis Đảo ngược trục - - + + Deadzone: %1% Vùng chết: %1% - + Error enabling ring input Lỗi khi bật đầu vào từ vòng - + Direct Joycon driver is not enabled Driver JoyCon trực tiếp chưa được bật - + Configuring Cấu hình - + The current mapped device doesn't support the ring controller Thiết bị được ánh xạ hiện tại không hỗ trợ vòng điều khiển - + The current mapped device doesn't have a ring attached Thiết bị được ánh xạ hiện tại không có vòng được gắn vào - + The current mapped device is not connected Thiết bị được ánh xạ hiện tại không được kết nối - + Unexpected driver result %1 Kết quả driver không như mong đợi %1 - + [waiting] [chờ] @@ -4722,7 +4916,7 @@ UUID: %2 - <html><head/><body><p>Reads controller input from scripts in the same format as TAS-nx scripts.<br/>For a more detailed explanation, please consult the <a href="https://eden-emulator.github.io/help/feature/tas/"><span style=" text-decoration: underline; color:#039be5;">help page</span></a> on the eden website.</p></body></html> + <html><head/><body><p>Reads controller input from scripts in the same format as TAS-nx scripts.<br/>For a more detailed explanation, please consult the <a href="https://eden-emulator.github.io/help/feature/tas/"><span style=" text-decoration: underline; color:#039be5;">help page</span></a> on the Eden website.</p></body></html> @@ -4774,12 +4968,12 @@ UUID: %2 ConfigureTasDialog - + TAS Configuration Cấu hình TAS - + Select TAS Load Directory... Chọn thư mục nạp TAS... @@ -4889,7 +5083,7 @@ Kéo điểm để thay đổi vị trí, hoặc nhấp đúp chuột vào ô tr - Warning: The settings in this page affect the inner workings of eden's emulated touchscreen. Changing them may result in undesirable behavior, such as the touchscreen partially or not working. You should only use this page if you know what you are doing. + Warning: The settings in this page affect the inner workings of Eden's emulated touchscreen. Changing them may result in undesirable behavior, such as the touchscreen partially or not working. You should only use this page if you know what you are doing. @@ -5209,6 +5403,16 @@ Kéo điểm để thay đổi vị trí, hoặc nhấp đúp chuột vào ô tr Web Web + + + Eden Web Service + + + + + Generate + + yuzu Web Service Dịch vụ web yuzu @@ -5218,42 +5422,29 @@ Kéo điểm để thay đổi vị trí, hoặc nhấp đúp chuột vào ô tr Bằng cách cung cấp tên đăng nhập và token của bạn, bạn đã chấp thuận sẽ cho phép yuzu thu thập dữ liệu đã sử dụng, trong đó có thể có thông tin nhận dạng người dùng. - - eden Web Service - - - - - By providing your username and token, you agree to allow eden to collect additional usage data, which may include user identifying information. - - - - Verify - Xác nhận + Xác nhận - Sign up - Đăng ký + Đăng ký - + Token: Token: - + Username: Tên người dùng: - What is my token? - Token của tôi là gì? + Token của tôi là gì? - + Web Service configuration can only be changed when a public room isn't being hosted. Cấu hình dịch vụ web chỉ có thể thay đổi khi không có phòng công khai đang được tổ chức. @@ -5278,12 +5469,12 @@ Kéo điểm để thay đổi vị trí, hoặc nhấp đúp chuột vào ô tr Tạo mới - + Discord Presence Hiện diện trên Discord - + Show Current Game in your Discord Status Hiển thị game hiện tại lên trạng thái Discord của bạn @@ -5292,24 +5483,8 @@ Kéo điểm để thay đổi vị trí, hoặc nhấp đúp chuột vào ô tr <a href='https://yuzu-emu.org/help/feature/telemetry/'><span style="text-decoration: underline; color:#039be5;">Tìm hiểu thêm</span></a> - <a href='https://profile.yuzu-emu.org/'><span style="text-decoration: underline; color:#039be5;">Sign up</span></a> - <a href='https://profile.yuzu-emu.org/'><span style="text-decoration: underline; color:#039be5;">Đăng ký</span></a> - - - - <a href='https://evilperson1337.notion.site/Hosting-a-Room-Inside-of-Eden-20457c2edaf680108abac6215a79acdb'><span style="text-decoration: underline; color:#039be5;">What is my token?</span></a> - - - - - Warning - - - - - Verification is currently nonfunctional, instead generate a random 48-character string with only lowercase a-z. - + <a href='https://profile.yuzu-emu.org/'><span style="text-decoration: underline; color:#039be5;">Đăng ký</span></a> <a href='https://yuzu-emu.org/wiki/yuzu-web-service/'><span style="text-decoration: underline; color:#039be5;">What is my token?</span></a> @@ -5332,10 +5507,9 @@ Kéo điểm để thay đổi vị trí, hoặc nhấp đúp chuột vào ô tr Token không được xác thực. Thay đổi token của bạn chưa được lưu. - Unverified, please click Verify before saving configuration Tooltip - Chưa xác minh, vui lòng nhấp vào Xác minh trước khi lưu cấu hình + Chưa xác minh, vui lòng nhấp vào Xác minh trước khi lưu cấu hình Verifying... @@ -5359,20 +5533,67 @@ Kéo điểm để thay đổi vị trí, hoặc nhấp đúp chuột vào ô tr Verification failed. Check that you have entered your token correctly, and that your internet connection is working. Xác thực không thành công. Hãy kiểm tra xem bạn đã nhập token đúng chưa và kết nối internet của bạn có hoạt động hay không. + + + + All Good + Tooltip + + + + + Must be between 4-20 characters + Tooltip + + + + + Must be 48 characters, and lowercase a-z + Tooltip + + ControllerDialog - + Controller P1 Tay cầm P1 - + &Controller P1 &Tay cầm P1 + + DepsDialog + + + Eden Dependencies + + + + + <html><head/><body><p><span style=" font-size:28pt;">Eden Dependencies</span></p></body></html> + + + + + <html><head/><body><p>The projects that make Eden possible</p></body></html> + + + + + Dependency + + + + + Version + Phiên bản + + DirectConnect @@ -5478,7 +5699,12 @@ Kéo điểm để thay đổi vị trí, hoặc nhấp đúp chuột vào ô tr - Creating a room failed. Please retry. Restarting eden might be necessary. + Creating a room failed. Please retry. Restarting Eden might be necessary. + + + + + Version mismatch! Please update to the latest version of Eden. If the problem persists, contact the room host and ask them to update the server. @@ -5486,11 +5712,6 @@ Kéo điểm để thay đổi vị trí, hoặc nhấp đúp chuột vào ô tr The host of the room has banned you. Speak with the host to unban you or try a different room. Chủ phòng đã ban bạn. Hãy nói chuyện với người chủ phòng để được unban, hoặc thử vào một phòng khác. - - - Version mismatch! Please update to the latest version of eden. If the problem persists, contact the room host and ask them to update the server. - - Incorrect password. @@ -5552,7 +5773,7 @@ Vui lòng vào Cấu hình -> Hệ thống -> Mạng và thực hiện l Viễn trắc - + Broken Vulkan Installation Detected Phát hiện cài đặt Vulkan bị hỏng @@ -5561,106 +5782,105 @@ Vui lòng vào Cấu hình -> Hệ thống -> Mạng và thực hiện l Khởi tạo Vulkan thất bại trong quá trình khởi động.<br>Nhấp <br><a href='https://yuzu-emu.org/wiki/faq/#yuzu-starts-with-the-error-broken-vulkan-installation-detected'>vào đây để xem hướng dẫn khắc phục vấn đề</a>. - + Running a game TRANSLATORS: This string is shown to the user to explain why yuzu needs to prevent the computer from sleeping Đang chạy một game - + Loading Web Applet... Đang tải applet web... - - + + Disable Web Applet Tắt applet web - + Disabling the web applet can lead to undefined behavior and should only be used with Super Mario 3D All-Stars. Are you sure you want to disable the web applet? (This can be re-enabled in the Debug settings.) Tắt applet web có thể dẫn đến hành vi không xác định và chỉ nên được sử dụng với Super Mario 3D All-Stars. Bạn có chắc chắn muốn tắt applet web không? (Có thể được bật lại trong cài đặt Gỡ lỗi.) - + The amount of shaders currently being built Số lượng shader đang được dựng - + The current selected resolution scaling multiplier. Bội số tỷ lệ độ phân giải được chọn hiện tại. - + Current emulation speed. Values higher or lower than 100% indicate emulation is running faster or slower than a Switch. Tốc độ giả lập hiện tại. Giá trị cao hơn hoặc thấp hơn 100% chỉ ra giả lập sẽ chạy nhanh hơn hoặc chậm hơn trên máy Switch. - + How many frames per second the game is currently displaying. This will vary from game to game and scene to scene. Có bao nhiêu khung hình trên mỗi giây mà game đang hiển thị. Điều này sẽ thay đổi giữa các game và các cảnh khác nhau. - + Time taken to emulate a Switch frame, not counting framelimiting or v-sync. For full-speed emulation this should be at most 16.67 ms. Thời gian mà giả lập lấy từ khung hình Switch, sẽ không kể đến giới hạn khung hình hoặc v-sync. Đối với tốc độ tối đa mà giả lập nhận được nhiều nhất là ở độ khoảng 16.67 ms. - + Unmute Bật tiếng - + Mute Tắt tiếng - + Reset Volume Đặt lại âm lượng - + &Clear Recent Files &Xoá tập tin gần đây - + &Continue &Tiếp tục - + &Pause &Tạm dừng - Warning Outdated Game Format - Cảnh báo định dạng game đã lỗi thời + Cảnh báo định dạng game đã lỗi thời You are using the deconstructed ROM directory format for this game, which is an outdated format that has been superseded by others such as NCA, NAX, XCI, or NSP. Deconstructed ROM directories lack icons, metadata, and update support.<br><br>For an explanation of the various Switch formats yuzu supports, <a href='https://yuzu-emu.org/wiki/overview-of-switch-game-formats'>check out our wiki</a>. This message will not be shown again. Bạn đang sử dụng định dạng thư mục ROM đã giải nén cho game này, một định dạng lỗi thời đã được thay thế bởi những thứ khác như NCA, NAX, XCI, hoặc NSP. Thư mục ROM đã giải nén có thể thiếu các biểu tượng, metadata, và hỗ trợ cập nhật.<br><br>Để hiểu thêm về các định dạng khác nhau của Switch mà yuzu hỗ trợ, <a href='https://yuzu-emu.org/wiki/overview-of-switch-game-formats'>vui lòng kiểm tra wiki của chúng tôi</a>. Thông báo này sẽ không hiển thị lại lần sau. - - + + Error while loading ROM! Lỗi khi nạp ROM! - + The ROM format is not supported. Định dạng ROM này không được hỗ trợ. - + An error occurred initializing the video core. Đã xảy ra lỗi khi khởi tạo lõi video. @@ -5669,7 +5889,7 @@ Vui lòng vào Cấu hình -> Hệ thống -> Mạng và thực hiện l yuzu đã gặp lỗi khi chạy lõi video. Điều này thường xảy ra do phiên bản driver GPU đã cũ, bao gồm cả driver tích hợp. Vui lòng xem nhật ký để biết thêm chi tiết. Để biết thêm thông tin về cách truy cập nhật ký, vui lòng xem trang sau: <a href='https://yuzu-emu.org/help/reference/log-files/'>Cách tải lên tập tin nhật ký</a>. - + Error while loading ROM! %1 %1 signifies a numeric error code. Lỗi khi nạp ROM! %1 @@ -5680,1027 +5900,913 @@ Vui lòng vào Cấu hình -> Hệ thống -> Mạng và thực hiện l %1<br>Vui lòng tuân theo <a href='https://yuzu-emu.org/help/quickstart/'>hướng dẫn nhanh của yuzu</a> để trích xuất lại các tập tin của bạn.<br>Bạn có thể tham khảo yuzu wiki</a> hoặc yuzu Discord</a>để được hỗ trợ. - + Vulkan initialization failed during boot.<br><br>Click <a href='https://eden-emulator.github.io/wiki/faq/#yuzu-starts-with-the-error-broken-vulkan-installation-detected'>here for instructions to fix the issue</a>. - - Game Updates Warning - - - - - The game you are trying to launch is known to have performance or booting issues when updates are applied. Please try increasing the memory layout to 6GB or 8GB if any issues occur.<br><br>Press "OK" to continue launching, or "Cancel" to cancel the launch. - - - - - Don't show again for this game - - - - - You are using the deconstructed ROM directory format for this game, which is an outdated format that has been superseded by others such as NCA, NAX, XCI, or NSP. Deconstructed ROM directories lack icons, metadata, and update support.<br><br>For an explanation of the various Switch formats eden supports, <a href='https://eden-emulator.github.io/wiki/overview-of-switch-game-formats'>check out our wiki</a>. This message will not be shown again. - - - - - eden has encountered an error while running the video core. This is usually caused by outdated GPU drivers, including integrated ones. Please see the log for more details. For more information on accessing the log, please see the following page: <a href='https://eden-emulator.github.io/help/reference/log-files/'>How to Upload the Log File</a>. - - - - - %1<br>Please redump your files or ask on Discord for help. - %1 signifies an error string. - - - - + An unknown error occurred. Please see the log for more details. Đã xảy ra lỗi không xác định. Hãy xem nhật ký để biết thêm chi tiết. - + (64-bit) (64-bit) - + (32-bit) (32-bit) - + %1 %2 %1 is the title name. %2 indicates if the title is 64-bit or 32-bit %1 %2 - + Closing software... Đang đóng phần mềm... - + Save Data Dữ liệu save - + Mod Data Dữ liệu mod - + 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! - Error Opening Transferable Shader Cache - Lỗi khi mở bộ nhớ đệm shader chuyển được + Lỗi khi mở bộ nhớ đệm shader chuyển được - Failed to create the shader cache directory for this title. - Thất bại khi tạo thư mục bộ nhớ đệm shader cho title này. + Thất bại khi tạo thư mục bộ nhớ đệm shader cho title này. - Error Removing Contents - Lỗi khi loại bỏ nội dung + Lỗi khi loại bỏ nội dung - Error Removing Update - Lỗi khi loại bỏ bản cập nhật + Lỗi khi loại bỏ bản cập nhật - Error Removing DLC - Lỗi khi loại bỏ DLC + Lỗi khi loại bỏ DLC - + Remove Installed Game Contents? Loại bỏ nội dung game đã cài đặt? - + Remove Installed Game Update? Loại bỏ bản cập nhật game đã cài đặt? - + Remove Installed Game DLC? Loại bỏ DLC game đã cài đặt? - + Remove Entry Xoá mục - - - - - - Successfully Removed - Loại bỏ thành công + Loại bỏ thành công - Successfully removed the installed base game. - Loại bỏ thành công base game đã cài đặt. + Loại bỏ thành công base game đã cài đặt. - The base game is not installed in the NAND and cannot be removed. - Base game không được cài đặt trong NAND và không thể loại bỏ. + Base game không được cài đặt trong NAND và không thể loại bỏ. - Successfully removed the installed update. - Loại bỏ thành công bản cập nhật đã cài đặt. + Loại bỏ thành công bản cập nhật đã cài đặt. - There is no update installed for this title. - Không có bản cập nhật nào được cài đặt cho title này. + Không có bản cập nhật nào được cài đặt cho title này. - There are no DLC installed for this title. - Không có DLC nào được cài đặt cho title này. + Không có DLC nào được cài đặt cho title này. - Successfully removed %1 installed DLC. - Loại bỏ thành công %1 DLC đã cài đặt. + Loại bỏ thành công %1 DLC đã cài đặt. - + Delete OpenGL Transferable Shader Cache? Xoá bộ nhớ đệm shader OpenGL chuyển được? - + Delete Vulkan Transferable Shader Cache? Xoá bộ nhớ đệm shader Vulkan chuyển được? - + Delete All Transferable Shader Caches? Xoá tất cả bộ nhớ đệm shader chuyển được? - + Remove Custom Game Configuration? Loại bỏ cấu hình game tuỳ chỉnh? - + Remove Cache Storage? Loại bỏ bộ nhớ đệm? - + Remove File Loại bỏ tập tin - + Remove Play Time Data - + Reset play time? - - Error Removing Transferable Shader Cache - Lỗi khi loại bỏ bộ nhớ đệm shader chuyển được + Lỗi khi loại bỏ bộ nhớ đệm shader chuyển được - - A shader cache for this title does not exist. - Bộ nhớ đệm shader cho title này không tồn tại. + Bộ nhớ đệm shader cho title này không tồn tại. - Successfully removed the transferable shader cache. - Thành công loại bỏ bộ nhớ đệm shader chuyển được. + Thành công loại bỏ bộ nhớ đệm shader chuyển được. - Failed to remove the transferable shader cache. - Thất bại khi xoá bộ nhớ đệm shader chuyển được. + Thất bại khi xoá bộ nhớ đệm shader chuyển được. - Error Removing Vulkan Driver Pipeline Cache - Lỗi khi xoá bộ nhớ đệm pipeline Vulkan + Lỗi khi xoá bộ nhớ đệm pipeline Vulkan - Failed to remove the driver pipeline cache. - Thất bại khi xoá bộ nhớ đệm pipeline của driver. + Thất bại khi xoá bộ nhớ đệm pipeline của driver. - - Error Removing Transferable Shader Caches - Lỗi khi loại bỏ bộ nhớ đệm shader chuyển được + Lỗi khi loại bỏ bộ nhớ đệm shader chuyển được - Successfully removed the transferable shader caches. - Thành công loại bỏ tất cả bộ nhớ đệm shader chuyển được. + Thành công loại bỏ tất cả bộ nhớ đệm shader chuyển được. - Failed to remove the transferable shader cache directory. - Thất bại khi loại bỏ thư mục bộ nhớ đệm shader. + Thất bại khi loại bỏ thư mục bộ nhớ đệm shader. - - Error Removing Custom Configuration - Lỗi khi loại bỏ cấu hình tuỳ chỉnh + Lỗi khi loại bỏ cấu hình tuỳ chỉnh - A custom configuration for this title does not exist. - Cấu hình tuỳ chỉnh cho title này không tồn tại. + Cấu hình tuỳ chỉnh cho title này không tồn tại. - Successfully removed the custom game configuration. - Loại bỏ thành công cấu hình game tuỳ chỉnh. + Loại bỏ thành công cấu hình game tuỳ chỉnh. - Failed to remove the custom game configuration. - Thất bại khi xoá cấu hình game tuỳ chỉnh. + Thất bại khi xoá cấu hình game tuỳ chỉnh. - - + + RomFS Extraction Failed! Giải nén RomFS không thành công! - + There was an error copying the RomFS files or the user cancelled the operation. Đã xảy ra lỗi khi sao chép các tập tin RomFS hoặc người dùng đã hủy bỏ hoạt động này. - + Full Đầy đủ - + Skeleton Khung - + Select RomFS Dump Mode Chọn chế độ trích xuất RomFS - + Please select the how you would like the RomFS dumped.<br>Full will copy all of the files into the new directory while <br>skeleton will only create the directory structure. Vui lòng chọn cách mà bạn muốn RomFS được trích xuất.<br>Chế độ Đầy đủ sẽ sao chép toàn bộ tập tin vào một thư mục mới trong khi <br>chế độ Khung chỉ tạo cấu trúc thư mục. - + There is not enough free space at %1 to extract the RomFS. Please free up space or select a different dump directory at Emulation > Configure > System > Filesystem > Dump Root Không đủ bộ nhớ trống tại %1 để trích xuất RomFS. Hãy giải phóng bộ nhớ hoặc chọn một thư mục trích xuất khác tại Giả lập > Cấu hình > Hệ thống > Hệ thống tập tin > Thư mục trích xuất gốc - + Extracting RomFS... Giải nén RomFS... - - - - - + + Cancel Hủy bỏ - + RomFS Extraction Succeeded! Giải nén RomFS thành công! - - - + The operation completed successfully. Các hoạt động đã hoàn tất thành công. - Integrity verification couldn't be performed! - Không thể thực hiện kiểm tra tính toàn vẹn! + Không thể thực hiện kiểm tra tính toàn vẹn! - File contents were not checked for validity. - Chưa kiểm tra sự hợp lệ của nội dung tập tin. + Chưa kiểm tra sự hợp lệ của nội dung tập tin. - - Verifying integrity... - Đang kiểm tra tính toàn vẹn... + Đang kiểm tra tính toàn vẹn... - - Integrity verification succeeded! - Kiểm tra tính toàn vẹn thành công! + Kiểm tra tính toàn vẹn thành công! - - Integrity verification failed! - Kiểm tra tính toàn vẹn thất bại! + Kiểm tra tính toàn vẹn thất bại! - File contents may be corrupt. - Nội dung tập tin có thể bị hỏng. + Nội dung tập tin có thể bị hỏng. - - - - Create Shortcut - Tạo lối tắt + Tạo lối tắt - - Do you want to launch the game in fullscreen? - - - - Successfully created a shortcut to %1 - Thành công tạo lối tắt tại %1 + Thành công tạo lối tắt tại %1 - This will create a shortcut to the current AppImage. This may not work well if you update. Continue? - Việc này sẽ tạo một lối tắt tới AppImage hiện tại. Điều này có thể không hoạt động tốt nếu bạn cập nhật. Tiếp tục? + Việc này sẽ tạo một lối tắt tới AppImage hiện tại. Điều này có thể không hoạt động tốt nếu bạn cập nhật. Tiếp tục? - - Failed to create a shortcut to %1 + Create Icon + Tạo biểu tượng + + + Cannot create icon file. Path "%1" does not exist and cannot be created. + Không thể tạo tập tin biểu tượng. Đường dẫn "%1" không tồn tại và không thể tạo. + + + + Warning: Outdated Game Format - - Create Icon - Tạo biểu tượng + + You are using the deconstructed ROM directory format for this game, which is an outdated format that has been superseded by others such as NCA, NAX, XCI, or NSP. Deconstructed ROM directories lack icons, metadata, and update support.<br><br>For an explanation of the various Switch formats Eden supports, <a href='https://eden-emulator.github.io/wiki/overview-of-switch-game-formats'>check out our wiki</a>. This message will not be shown again. + - - Cannot create icon file. Path "%1" does not exist and cannot be created. - Không thể tạo tập tin biểu tượng. Đường dẫn "%1" không tồn tại và không thể tạo. + + Eden has encountered an error while running the video core. This is usually caused by outdated GPU drivers, including integrated ones. Please see the log for more details. For more information on accessing the log, please see the following page: <a href='https://yuzu-mirror.github.io/help/reference/log-files/'>How to Upload the Log File</a>. + - + + %1<br>Please redump your files or ask on Discord/Revolt for help. + %1 signifies an error string. + + + + Error Opening %1 Lỗi khi mở %1 - + Select Directory Chọn thư mục - + Properties Thuộc tính - + The game properties could not be loaded. Không thể tải thuộc tính của game. - + Switch Executable (%1);;All Files (*.*) %1 is an identifier for the Switch executable file extensions. Thực thi Switch (%1);;Tất cả tập tin (*.*) - + Load File Nạp tập tin - + Open Extracted ROM Directory Mở thư mục ROM đã giải nén - + Invalid Directory Selected Danh mục đã chọn không hợp lệ - + The directory you have selected does not contain a 'main' file. Thư mục mà bạn đã chọn không chứa tập tin 'main'. - + Installable Switch File (*.nca *.nsp *.xci);;Nintendo Content Archive (*.nca);;Nintendo Submission Package (*.nsp);;NX Cartridge Image (*.xci) Những tập tin Switch cài được (*.nca *.nsp *.xci);;Nintendo Content Archive (*.nca);;Nintendo Submission Package (*.nsp);;NX Cartridge Image (*.xci) - + Install Files Cài đặt tập tin - + %n file(s) remaining %n tập tin còn lại + %n tập tin còn lại - + Installing file "%1"... Đang cài đặt tập tin "%1"... - - + + Install Results Kết quả cài đặt - + To avoid possible conflicts, we discourage users from installing base games to the NAND. Please, only use this feature to install updates and DLC. Để tránh xung đột có thể xảy ra, chúng tôi không khuyến khích người dùng cài đặt base game vào NAND. Vui lòng, chỉ sử dụng tính năng này để cài đặt các bản cập nhật và DLC. - + %n file(s) were newly installed - %n tập tin đã được cài đặt mới - + %n tập tin đã được cài đặt mới + %n tập tin đã được cài đặt mới - + %n file(s) were overwritten - %n tập tin đã được ghi đè - + %n tập tin đã được ghi đè + %n tập tin đã được ghi đè - + %n file(s) failed to install - %n tập tin thất bại khi cài đặt - + %n tập tin thất bại khi cài đặt + %n tập tin thất bại khi cài đặt - + System Application Ứng dụng hệ thống - + System Archive Bản lưu trữ của hệ thống - + System Application Update Cập nhật ứng dụng hệ thống - + Firmware Package (Type A) Gói firmware (Loại A) - + Firmware Package (Type B) Gói firmware (Loại B) - + Game Game - + Game Update Cập nhật game - + Game DLC DLC game - + Delta Title Title Delta - + Select NCA Install Type... Chọn cách cài đặt NCA... - + Please select the type of title you would like to install this NCA as: (In most instances, the default 'Game' is fine.) Vui lòng chọn loại title mà bạn muốn cài đặt NCA này: (Trong hầu hết trường hợp, chọn mặc định 'Game' là tốt nhất.) - + Failed to Install Cài đặt thất bại - + The title type you selected for the NCA is invalid. Loại title mà bạn đã chọn cho NCA không hợp lệ. - + File not found Không tìm thấy tập tin - + File "%1" not found Không tìm thấy tập tin "%1" - + OK OK - - + + Hardware requirements not met Yêu cầu phần cứng không được đáp ứng - - + + Your system does not meet the recommended hardware requirements. Compatibility reporting has been disabled. Hệ thống của bạn không đáp ứng yêu cầu phần cứng được đề xuất. Báo cáo độ tương thích đã bị vô hiệu hoá. - + Missing yuzu Account Thiếu tài khoản yuzu - - In order to submit a game compatibility test case, you must link your eden account.<br><br/>To link your eden account, go to Emulation &gt; Configuration &gt; Web. + + In order to submit a game compatibility test case, you must set up your web token and username.<br><br/>To link your eden account, go to Emulation &gt; Configuration &gt; Web. - - Install decryption keys and restart eden before attempting to install firmware. + + Select Dumped Firmware ZIP - - Firmware installation cancelled, firmware may be in bad state, restart eden or re-install firmware. + + Zipped Archives (*.zip) - - Encryption keys are missing. + + Firmware cleanup failed - - Are you sure you want to close eden? + + Failed to clean up extracted firmware cache. +Check write permissions in the system temp directory and try again. +OS reported error: %1 - - - - eden + + Please install firmware to use the Album applet. - - The currently running application has requested eden to not exit. + + Please install firmware to use the Cabinet applet. + + + + + Please install firmware to use the Mii editor. + + + + + Please install firmware to use the Controller Menu. + + + + + Please install firmware to use the Home Menu. + + + + + Firmware Corrupted + + + + + Firmware Too New + + + + + +Continue anyways? + + + + + Don't show again + + + + + Please install firmware to use Starter. + + + + + Are you sure you want to close Eden? + + + + + + + Eden + + + + + The currently running application has requested Eden to not exit. Would you like to bypass this and exit anyway? + + + Encryption keys are missing. + + In order to submit a game compatibility test case, you must link your yuzu account.<br><br/>To link your yuzu account, go to Emulation &gt; Configuration &gt; Web. Để gửi trường hợp thử nghiệm game tương thích, bạn phải liên kết tài khoản yuzu.<br><br/>Để liên kết tải khoản yuzu của bạn, hãy đến Giả lập &gt; Cấu hình &gt; Web. - + Error opening URL Lỗi khi mở URL - + Unable to open the URL "%1". Không thể mở URL "%1". - + TAS Recording Ghi lại TAS - + Overwrite file of player 1? Ghi đè tập tin của người chơi 1? - + Invalid config detected Đã phát hiện cấu hình không hợp lệ - + Handheld controller can't be used on docked mode. Pro controller will be selected. Tay cầm handheld không thể được sử dụng trong chế độ docked. Pro Controller sẽ được chọn. - - + + Amiibo Amiibo - - + + The current amiibo has been removed Amiibo hiện tại đã được loại bỏ - + Error Lỗi - - + + The current game is not looking for amiibos Game hiện tại không tìm kiếm amiibos - + Amiibo File (%1);; All Files (*.*) Tập tin Amiibo (%1);; Tất cả tập tin (*.*) - + Load Amiibo Nạp Amiibo - + Error loading Amiibo data Lỗi khi nạp dữ liệu Amiibo - + The selected file is not a valid amiibo Tập tin đã chọn không phải là amiibo hợp lệ - + The selected file is already on use Tập tin đã chọn đã được sử dụng - + An unknown error occurred Đã xảy ra lỗi không xác định - - Verification failed for the following files: %1 - Kiểm tra những tập tin sau thất bại: + Kiểm tra những tập tin sau thất bại: %1 - + + Keys not installed - + + + Install decryption keys and restart Eden before attempting to install firmware. + + + + Select Dumped Firmware Source Location - - Installing Firmware... - - - - - - - - Firmware install failed - - - - - Unable to locate potential firmware NCA files - - - - - Failed to delete one or more firmware file. - - - - - One or more firmware files failed to copy into NAND. - - - - - Firmware integrity verification failed! - - - - - Select Dumped Keys Location - - - - - - - Decryption Keys install failed - - - - - prod.keys is a required decryption key file. - - - - - One or more keys failed to copy. - - - - - Decryption Keys install succeeded - - - - - Decryption Keys were successfully installed - - - - - Decryption Keys failed to initialize. Check that your dumping tools are up to date and re-dump keys. - - - - - - - - - - + + + + + + No firmware available - - Please install the firmware to use the Album applet. - - - - + Album Applet - + Album applet is not available. Please reinstall firmware. - - Please install the firmware to use the Cabinet applet. - - - - + Cabinet Applet - + Cabinet applet is not available. Please reinstall firmware. - - Please install the firmware to use the Mii editor. - - - - + Mii Edit Applet - + Mii editor is not available. Please reinstall firmware. - - Please install the firmware to use the Controller Menu. - - - - + Controller Applet Applet tay cầm - + Controller Menu is not available. Please reinstall firmware. - - Please install the firmware to use the Home Menu. - - - - - + Home Menu Applet - - + Home Menu is not available. Please reinstall firmware. - - Please install the firmware to use Starter. - - - - + Starter Applet - + Starter is not available. Please reinstall firmware. - - Please install firmware to use the home menu. - - - - + Capture Screenshot Chụp ảnh màn hình - + PNG Image (*.png) Hình ảnh PNG (*.png) - + Update Available - + Update %1 for Eden is available. Would you like to download it? - + TAS state: Running %1/%2 Trạng thái TAS: Đang chạy %1/%2 - + TAS state: Recording %1 Trạng thái TAS: Đang ghi %1 - + TAS state: Idle %1/%2 Trạng thái TAS: Đang chờ %1/%2 - + TAS State: Invalid Trạng thái TAS: Không hợp lệ - + &Stop Running &Dừng chạy - + &Start &Bắt đầu - + Stop R&ecording Dừng G&hi - + R&ecord G&hi - + Building: %n shader(s) Đang dựng: %n shader + Đang dựng: %n shader - + Scale: %1x %1 is the resolution scaling factor Tỉ lệ thu phóng: %1x - + Speed: %1% / %2% Tốc độ: %1% / %2% - + Speed: %1% Tốc độ: %1% @@ -6709,54 +6815,54 @@ Would you like to download it? Game: %1 FPS (Đã mở khoá) - + Game: %1 FPS Game: %1 FPS - + Frame: %1 ms Khung hình: %1 ms - + %1 %2 %1 %2 - - + + FSR FSR - + NO AA NO AA - + VOLUME: MUTE ÂM LƯỢNG: TẮT TIẾNG - + VOLUME: %1% Volume percentage (e.g. 50%) ÂM LƯỢNG: %1% - + Derivation Components Missing Thiếu các thành phần chuyển hoá - + Select RomFS Dump Target Chọn thư mục để trích xuất RomFS - + Please select which RomFS you would like to dump. Vui lòng chọn RomFS mà bạn muốn trích xuất. @@ -6769,7 +6875,7 @@ Would you like to download it? yuzu - + Are you sure you want to stop the emulation? Any unsaved progress will be lost. Bạn có chắc rằng muốn dừng giả lập? Bất kì tiến trình nào chưa được lưu sẽ bị mất. @@ -6782,102 +6888,102 @@ Would you like to bypass this and exit anyway? Bạn có muốn bỏ qua yêu cầu đó và thoát luôn không? - + None Không có - + FXAA FXAA - + SMAA SMAA - + Nearest Nearest - + Bilinear Bilinear - + Bicubic Bicubic - + Gaussian Gaussian - + ScaleForce ScaleForce - + Area - + Docked Docked - + Handheld Handheld - + Normal Bình thường - + High Cao - + Extreme Cực đại - + Vulkan Vulkan - + OpenGL OpenGL - + Null Null - + GLSL GLSL - + GLASM GLASM - + SPIRV SPIRV @@ -6885,13 +6991,13 @@ Bạn có muốn bỏ qua yêu cầu đó và thoát luôn không? GRenderWindow - - + + OpenGL not available! OpenGL không khả dụng! - + OpenGL shared contexts are not supported. Các ngữ cảnh OpenGL chung không được hỗ trợ. @@ -6900,33 +7006,33 @@ Bạn có muốn bỏ qua yêu cầu đó và thoát luôn không? yuzu không được biên dịch với hỗ trợ OpenGL. - - eden has not been compiled with OpenGL support. + + Eden has not been compiled with OpenGL support. - - + + Error while initializing OpenGL! Lỗi khi khởi tạo OpenGL! - + Your GPU may not support OpenGL, or you do not have the latest graphics driver. GPU của bạn có thể không hỗ trợ OpenGL, hoặc bạn không có driver đồ hoạ mới nhất. - + Error while initializing OpenGL 4.6! Lỗi khi khởi tạo OpenGL 4.6! - + Your GPU may not support OpenGL 4.6, or you do not have the latest graphics driver.<br><br>GL Renderer:<br>%1 GPU của bạn có thể không hỗ trợ OpenGL 4.6, hoặc bạn không có driver đồ hoạ mới nhất.<br><br>GL Renderer:<br>%1 - + Your GPU may not support one or more required OpenGL extensions. Please ensure you have the latest graphics driver.<br><br>GL Renderer:<br>%1<br><br>Unsupported extensions:<br>%2 GPU của bạn có thể không hỗ trợ một hoặc nhiều tiện ích OpenGL cần thiết. Vui lòng đảm bảo bạn có driver đồ hoạ mới nhất.<br><br>GL Renderer:<br>%1<br><br>Tiện ích không hỗ trợ:<br>%2 @@ -6934,128 +7040,128 @@ Bạn có muốn bỏ qua yêu cầu đó và thoát luôn không? GameList - + Favorite Ưa thích - + Start Game Bắt đầu game - + Start Game without Custom Configuration Bắt đầu game mà không có cấu hình tuỳ chỉnh - + Open Save Data Location Mở vị trí dữ liệu save - + Open Mod Data Location Mở vị trí chứa dữ liệu mod - + Open Transferable Pipeline Cache Mở thư mục chứa bộ nhớ đệm pipeline - + Remove Loại bỏ - + Remove Installed Update Loại bỏ bản cập nhật đã cài - + Remove All Installed DLC Loại bỏ tất cả DLC đã cài đặt - + Remove Custom Configuration Loại bỏ cấu hình tuỳ chỉnh - + Remove Play Time Data - + Remove Cache Storage Loại bỏ bộ nhớ đệm - + Remove OpenGL Pipeline Cache Loại bỏ bộ nhớ đệm pipeline OpenGL - + Remove Vulkan Pipeline Cache Loại bỏ bộ nhớ đệm pipeline Vulkan - + Remove All Pipeline Caches Loại bỏ tất cả bộ nhớ đệm shader - + Remove All Installed Contents Loại bỏ tất cả nội dung đã cài đặt - + Dump RomFS Trích xuất RomFS - + Dump RomFS to SDMC Trích xuất RomFS tới SDMC - + Verify Integrity Kiểm tra tính toàn vẹn - + Copy Title ID to Clipboard Sao chép ID title vào bộ nhớ tạm - + Navigate to GameDB entry Điều hướng đến mục GameDB - + Create Shortcut Tạo lối tắt - + Add to Desktop Thêm vào desktop - + Add to Applications Menu Thêm vào menu ứng dụng - + Configure Game @@ -7064,62 +7170,62 @@ Bạn có muốn bỏ qua yêu cầu đó và thoát luôn không? Thuộc tính - + Scan Subfolders Quét các thư mục con - + Remove Game Directory Loại bỏ thư mục game - + ▲ Move Up ▲ Di chuyển lên - + ▼ Move Down ▼ Di chuyển xuống - + Open Directory Location Mở vị trí thư mục - + Clear Xóa - + Name Tên - + Compatibility Độ tương thích - + Add-ons Add-ons - + File type Loại tập tin - + Size Kích thước - + Play time @@ -7127,62 +7233,62 @@ Bạn có muốn bỏ qua yêu cầu đó và thoát luôn không? GameListItemCompat - + Ingame Trong game - + Game starts, but crashes or major glitches prevent it from being completed. Game khởi động, nhưng bị crash hoặc lỗi nghiêm trọng dẫn đến việc không thể hoàn thành nó. - + Perfect Hoàn hảo - + Game can be played without issues. Game có thể chơi mà không gặp vấn đề. - + Playable Có thể chơi - + Game functions with minor graphical or audio glitches and is playable from start to finish. Game hoạt động với lỗi hình ảnh hoặc âm thanh nhẹ và có thể chơi từ đầu tới cuối. - + Intro/Menu Phần mở đầu/Menu - + Game loads, but is unable to progress past the Start Screen. Game đã tải, nhưng không thể qua được màn hình bắt đầu. - + Won't Boot Không khởi động - + The game crashes when attempting to startup. Game crash khi đang khởi động. - + Not Tested Chưa ai thử - + The game has not yet been tested. Game này chưa được thử nghiệm. @@ -7190,7 +7296,7 @@ Bạn có muốn bỏ qua yêu cầu đó và thoát luôn không? GameListPlaceholder - + Double-click to add a new folder to the game list Nhấp đúp chuột để thêm một thư mục mới vào danh sách game @@ -7198,19 +7304,20 @@ Bạn có muốn bỏ qua yêu cầu đó và thoát luôn không? GameListSearchField - + %1 of %n result(s) %1 trong %n kết quả + %1 trong %n kết quả - + Filter: Lọc: - + Enter pattern to filter Nhập mẫu để lọc @@ -7292,7 +7399,7 @@ Bạn có muốn bỏ qua yêu cầu đó và thoát luôn không? - Failed to announce the room to the public lobby. In order to host a room publicly, you must have a valid eden account configured in Emulation -> Configure -> Web. If you do not want to publish a room in the public lobby, then select Unlisted instead. + Failed to announce the room to the public lobby. In order to host a room publicly, you must have a valid Eden 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: @@ -7306,190 +7413,190 @@ Tin nhắn gỡ lỗi: Hotkeys - + Audio Mute/Unmute Tắt/Bật tiếng - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Main Window Cửa sổ chính - + Audio Volume Down Giảm âm lượng - + Audio Volume Up Tăng âm lượng - + Capture Screenshot Chụp ảnh màn hình - + Change Adapting Filter Thay đổi bộ lọc điều chỉnh - + Change Docked Mode Thay đổi chế độ docked - + Change GPU Accuracy Thay đổi độ chính xác GPU - + Configure Cấu hình - + Configure Current Game - + Continue/Pause Emulation Tiếp tục/Tạm dừng giả lập - + Exit Fullscreen Thoát chế độ toàn màn hình + + + Exit Eden + + Exit yuzu Thoát yuzu - - Exit eden - - - - + Fullscreen Toàn màn hình - + Load File Nạp tập tin - + Load/Remove Amiibo Nạp/Loại bỏ Amiibo - + Multiplayer Browse Public Game Lobby - + Multiplayer Create Room - + Multiplayer Direct Connect to Room - + Multiplayer Leave Room - + Multiplayer Show Current Room - + Restart Emulation Khởi động lại giả lập - + Stop Emulation Dừng giả lập - + TAS Record Ghi lại TAS - + TAS Reset Đặt lại TAS - + TAS Start/Stop Bắt đầu/Dừng TAS - + Toggle Filter Bar Hiện/Ẩn thanh lọc - + Toggle Framerate Limit Bật/Tắt giới hạn tốc độ khung hình - + Toggle Mouse Panning Bật/Tắt lia chuột - + Toggle Renderdoc Capture - + Toggle Status Bar Hiện/Ẩn thanh trạng thái @@ -7497,22 +7604,22 @@ Tin nhắn gỡ lỗi: InstallDialog - + Please confirm these are the files you wish to install. Vui lòng xác nhận đây là những tập tin bạn muốn cài. - + Installing an Update or DLC will overwrite the previously installed one. Cài đặt một bản cập nhật hoặc DLC mới sẽ thay thế những bản cũ đã cài trước đó. - + Install Cài đặt - + Install Files to NAND Cài đặt tập tin vào NAND @@ -7520,7 +7627,7 @@ Tin nhắn gỡ lỗi: LimitableInputDialog - + The text can't contain any of the following characters: %1 Văn bản không được chứa bất kỳ ký tự sau đây: @@ -7667,152 +7774,207 @@ Tin nhắn gỡ lỗi: &Tập tin gần đây - + + Open &Eden Folders + + + + &Emulation &Giả lập - + &View &Xem - + &Reset Window Size &Đặt lại kích thước cửa sổ - + &Debugging &Gỡ lỗi - + Reset Window Size to &720p Đặt lại kích thước cửa sổ về &720p - + Reset Window Size to 720p Đặt lại kích thước cửa sổ về 720p - + Reset Window Size to &900p Đặt lại kích thước cửa sổ về &900p - + Reset Window Size to 900p Đặt lại kích thước cửa sổ về 900p - + Reset Window Size to &1080p Đặt lại kích thước cửa sổ về &1080p - + Reset Window Size to 1080p Đặt lại kích thước cửa sổ về 1080p - + &Multiplayer &Nhiều người chơi - + &Tools &Công cụ - + &Amiibo - + &TAS &TAS - + &Create Home Menu Shortcut - + &Help &Trợ giúp - + &Install Files to NAND... &Cài đặt tập tin vào NAND... - + L&oad File... N&ạp tập tin... - + Load &Folder... Nạp &thư mục... - + E&xit T&hoát - + &Pause &Tạm dừng - + &Stop &Dừng - + &Verify Installed Contents - - &About eden + + &Root Data Folder - - Open &eden Folder + + &NAND Folder - + + &SDMC Folder + + + + + &Mod Folder + + + + + &Log Folder + + + + + From Folder + + + + + From ZIP + + + + + &X + + + + + X (Twitter) + + + + + &Revolt + + + + + Revolt + + + + + &Eden Dependencies + + + + Open Home Menu - + &Discord - + Open &Setup - + &Desktop - + &Application Menu @@ -7821,97 +7983,97 @@ Tin nhắn gỡ lỗi: &Thông tin về yuzu - + Single &Window Mode Chế độ &cửa sổ đơn - + Con&figure... Cấu &hình... - + Ctrl+, - + Display D&ock Widget Headers Hiển thị tiêu đề công cụ D&ock - + Show &Filter Bar Hiện thanh &lọc - + Show &Status Bar Hiện thanh &trạng thái - + Show Status Bar Hiện thanh trạng thái - + &Browse Public Game Lobby &Duyệt phòng game công khai - + &Create Room &Tạo phòng - + &Leave Room &Rời phòng - + &Direct Connect to Room &Kết nối trực tiếp tới phòng - + &Show Current Room &Hiện phòng hiện tại - + F&ullscreen T&oàn màn hình - + &Restart &Khởi động lại - + Load/Remove &Amiibo... Nạp/Loại bỏ &Amiibo... - + &Report Compatibility &Báo cáo độ tương thích - + Open &Mods Page Mở trang &mods - + Open &Quickstart Guide Mở &Hướng dẫn nhanh - + &FAQ &FAQ @@ -7920,77 +8082,82 @@ Tin nhắn gỡ lỗi: Mở thư mục &yuzu - + &Capture Screenshot &Chụp ảnh màn hình - + Open &Album - + &Set Nickname and Owner - + &Delete Game Data - + &Restore Amiibo - + &Format Amiibo - + Open &Mii Editor - + &Configure TAS... &Cấu hình TAS... - + Configure C&urrent Game... Cấu hình game h&iện tại... - + &Start &Bắt đầu - + &Reset &Đặt lại - + R&ecord G&hi lại - + Open &Controller Menu - + Install Firmware - + + &About Eden + + + + Install Decryption Keys @@ -7998,26 +8165,36 @@ Tin nhắn gỡ lỗi: MicroProfileDialog - &MicroProfile - &MicroProfile + &MicroProfile MigrationWorker - + Data was migrated successfully. - + Linking the old directory failed. You may need to re-run with administrative privileges on Windows. OS gave error: %1 - + + + +Note that your configuration and data will be shared with %1. +If this is not desirable, delete the following files: +%2 +%3 +%4 + + + + If you wish to clean up the files which were left in the old data location, you can do so by deleting the following directory: @@ -8077,37 +8254,37 @@ If you wish to clean up the files which were left in the old data location, you MultiplayerState - + Current connection status Tình trạng kết nối hiện tại - + Not Connected. Click here to find a room! Không kết nối. Nhấp vào đây để tìm một phòng! - + Not Connected Không kết nối - + Connected Đã kết nối - + New Messages Received Đã nhận được tin nhắn mới - + Error Lỗi - + Failed to update the room information. Please check your Internet connection and try hosting the room again. Debug Message: Không thể cập nhật thông tin phòng. Vui lòng kiểm tra kết nối Internet của bạn và thử tạo phòng lại. @@ -8299,56 +8476,56 @@ p, li { white-space: pre-wrap; } Hiện không chơi game - + Installed SD Titles Các title đã cài đặt trên thẻ SD - + Installed NAND Titles Các title đã cài đặt trên NAND - + System Titles Titles hệ thống - + Add New Game Directory Thêm thư mục game - + Favorites Ưa thích - - + + Shift Shift - - + + Ctrl Ctrl - - + + Alt Alt - - - - + + + + [not set] [chưa đặt] @@ -8359,14 +8536,14 @@ p, li { white-space: pre-wrap; } Mũ %1 %2 - - - - - - - - + + + + + + + + Axis %1%2 Trục %1%2 @@ -8377,357 +8554,357 @@ p, li { white-space: pre-wrap; } Nút %1 - - - - - - + + + + + + [unknown] [không xác định] - - - + + + Left Trái - - - + + + Right Phải - - - + + + Down Xuống - - - + + + Up Lên - - + + Z Z - - + + R R - - + + L L - - + + A A - - + + B B - - + + X X - - + + Y Y - - + + Start Bắt đầu - - + + L1 L1 - - + + L2 L2 - - + + L3 L3 - - + + R1 R1 - - + + R2 R2 - - + + R3 R3 - - + + Circle Tròn - - + + Cross X - - + + Square Vuông - - + + Triangle Tam giác - - + + Share Chia sẻ - - + + Options Tuỳ chọn - - + + [undefined] [không xác định] - + %1%2 %1%2 - - + + [invalid] [không hợp lệ] - - + + %1%2Hat %3 %1%2Mũ %3 - - - + + + %1%2Axis %3 %1%2Trục %3 - - + + %1%2Axis %3,%4,%5 %1%2Trục %3,%4,%5 - - + + %1%2Motion %3 %1%2Chuyển động %3 - - + + %1%2Button %3 %1%2Nút %3 - - + + [unused] [không sử dụng] - + ZR ZR - + ZL ZL - + SR SR - + SL SL - + Stick L Cần L - + Stick R Cần R - + Plus Cộng - + Minus Trừ - - + + Home Home - + Capture Chụp - + Touch Cảm ứng - + Wheel Indicates the mouse wheel Con lăn - + Backward Lùi - + Forward Tiến - + Task Nhiệm vụ - + Extra Thêm - + %1%2%3%4 %1%2%3%4 - - + + %1%2%3Hat %4 %1%2%3Mũ %4 - - + + %1%2%3Axis %4 %1%2%3Trục %4 - - + + %1%2%3Button %4 %1%2%3Nút %4 - - + + Migration - + - - + + No - + You can manually re-trigger this prompt by deleting the new config directory: %1 - + Migrating - + Migrating, this may take a while... @@ -8845,6 +9022,300 @@ p, li { white-space: pre-wrap; } Bạn có muốn khôi phục amiibo này không? + + QtCommon::Content + + + Installing Firmware... + + + + + + + Cancel + Hủy bỏ + + + + Firmware integrity verification failed! + + + + + + Verification failed for the following files: + +%1 + Kiểm tra những tập tin sau thất bại: + +%1 + + + + + Verifying integrity... + Đang kiểm tra tính toàn vẹn... + + + + + Integrity verification succeeded! + Kiểm tra tính toàn vẹn thành công! + + + + + The operation completed successfully. + Các hoạt động đã hoàn tất thành công. + + + + + Integrity verification failed! + Kiểm tra tính toàn vẹn thất bại! + + + + File contents may be corrupt or missing. + + + + + Integrity verification couldn't be performed + + + + + Firmware installation cancelled, firmware may be in a bad state or corrupted. File contents could not be checked for validity. + + + + + Select Dumped Keys Location + + + + + Decryption Keys install succeeded + + + + + Decryption Keys were successfully installed + + + + + Decryption Keys install failed + + + + + QtCommon::Game + + + Error Removing Contents + Lỗi khi loại bỏ nội dung + + + + Error Removing Update + Lỗi khi loại bỏ bản cập nhật + + + + Error Removing DLC + Lỗi khi loại bỏ DLC + + + + The base game is not installed in the NAND and cannot be removed. + Base game không được cài đặt trong NAND và không thể loại bỏ. + + + + There is no update installed for this title. + Không có bản cập nhật nào được cài đặt cho title này. + + + + There are no DLCs installed for this title. + + + + + + + + Successfully Removed + Loại bỏ thành công + + + + Successfully removed %1 installed DLC. + Loại bỏ thành công %1 DLC đã cài đặt. + + + + + Error Removing Transferable Shader Cache + Lỗi khi loại bỏ bộ nhớ đệm shader chuyển được + + + + + A shader cache for this title does not exist. + Bộ nhớ đệm shader cho title này không tồn tại. + + + + Successfully removed the transferable shader cache. + Thành công loại bỏ bộ nhớ đệm shader chuyển được. + + + + Failed to remove the transferable shader cache. + Thất bại khi xoá bộ nhớ đệm shader chuyển được. + + + + Error Removing Vulkan Driver Pipeline Cache + Lỗi khi xoá bộ nhớ đệm pipeline Vulkan + + + + Failed to remove the driver pipeline cache. + Thất bại khi xoá bộ nhớ đệm pipeline của driver. + + + + + Error Removing Transferable Shader Caches + Lỗi khi loại bỏ bộ nhớ đệm shader chuyển được + + + + Successfully removed the transferable shader caches. + Thành công loại bỏ tất cả bộ nhớ đệm shader chuyển được. + + + + Failed to remove the transferable shader cache directory. + Thất bại khi loại bỏ thư mục bộ nhớ đệm shader. + + + + + Error Removing Custom Configuration + Lỗi khi loại bỏ cấu hình tuỳ chỉnh + + + + A custom configuration for this title does not exist. + Cấu hình tuỳ chỉnh cho title này không tồn tại. + + + + Successfully removed the custom game configuration. + Loại bỏ thành công cấu hình game tuỳ chỉnh. + + + + Failed to remove the custom game configuration. + Thất bại khi xoá cấu hình game tuỳ chỉnh. + + + + Reset Metadata Cache + Đặt lại bộ nhớ đệm metadata + + + + The metadata cache is already empty. + Bộ nhớ đệm metadata trống. + + + + The operation completed successfully. + Các hoạt động đã hoàn tất thành công. + + + + The metadata cache couldn't be deleted. It might be in use or non-existent. + Bộ nhớ đệm metadata không thể xoá. Nó có thể đang được sử dụng hoặc không tồn tại. + + + + Create Shortcut + Tạo lối tắt + + + + Do you want to launch the game in fullscreen? + + + + + Shortcut Created + + + + + Successfully created a shortcut to %1 + Thành công tạo lối tắt tại %1 + + + + Shortcut may be Volatile! + + + + + This will create a shortcut to the current AppImage. This may not work well if you update. Continue? + Việc này sẽ tạo một lối tắt tới AppImage hiện tại. Điều này có thể không hoạt động tốt nếu bạn cập nhật. Tiếp tục? + + + + Failed to Create Shortcut + + + + + Failed to create a shortcut to %1 + + + + + Create Icon + Tạo biểu tượng + + + + Cannot create icon file. Path "%1" does not exist and cannot be created. + Không thể tạo tập tin biểu tượng. Đường dẫn "%1" không tồn tại và không thể tạo. + + + + No firmware available + + + + + Please install firmware to use the home menu. + + + + + Home Menu Applet + + + + + Home Menu is not available. Please reinstall firmware. + + + QtControllerSelectorDialog @@ -9140,7 +9611,7 @@ Vui lòng thử lại hoặc liên hệ nhà phát triển của phần mềm. QtProfileSelectionDialog - + %1 %2 %1 is the profile username, %2 is the formatted UUID (e.g. 00112233-4455-6677-8899-AABBCCDDEEFF)) @@ -9148,7 +9619,7 @@ Vui lòng thử lại hoặc liên hệ nhà phát triển của phần mềm. - + Users Người dùng @@ -9272,7 +9743,7 @@ p, li { white-space: pre-wrap; } WaitTreeCallstack - + Call stack Ngăn xếp gọi @@ -9280,12 +9751,12 @@ p, li { white-space: pre-wrap; } WaitTreeSynchronizationObject - + [%1] %2 [%1] %2 - + waited by no thread chờ đợi bởi vì không có luồng @@ -9293,102 +9764,102 @@ p, li { white-space: pre-wrap; } WaitTreeThread - + runnable có thể chạy - + paused đã tạm dừng - + sleeping ngủ - + waiting for IPC reply đang đợi IPC phản hồi - + waiting for objects đang đợi đối tượng - + waiting for condition variable đang chờ biến điều kiện - + waiting for address arbiter chờ đợi địa chỉ người đứng giữa - + waiting for suspend resume đang đợi để tạm dừng và tiếp tục - + waiting đang chờ - + initialized đã khởi tạo - + terminated đã chấm dứt - + unknown không xác định - + PC = 0x%1 LR = 0x%2 PC = 0x%1 LR = 0x%2 - + ideal lý tưởng - + core %1 lõi %1 - + processor = %1 bộ xử lý = %1 - + affinity mask = %1 che đậy tánh giống nhau = %1 - + thread id = %1 id luồng = %1 - + priority = %1(current) / %2(normal) quyền ưu tiên = %1(hiện tại) / %2(bình thường) - + last running ticks = %1 các tick chạy cuối cùng = %1 @@ -9396,7 +9867,7 @@ p, li { white-space: pre-wrap; } WaitTreeThreadList - + waited by thread đợi vì luồng @@ -9404,7 +9875,7 @@ p, li { white-space: pre-wrap; } WaitTreeWidget - + &Wait Tree &Cây Đợi diff --git a/dist/languages/vi_VN.ts b/dist/languages/vi_VN.ts index 6277ea7e03..2b31f1a630 100644 --- a/dist/languages/vi_VN.ts +++ b/dist/languages/vi_VN.ts @@ -13,12 +13,12 @@ - About eden + About Eden - <html><head/><body><p><span style=" font-size:28pt;">eden</span></p></body></html> + <html><head/><body><p><span style=" font-size:28pt;">Eden</span></p></body></html> @@ -34,8 +34,8 @@ p, li { white-space: pre-wrap; } hr { height: 1px; border-width: 0; } li.unchecked::marker { content: "\2610"; } li.checked::marker { content: "\2612"; } -</style></head><body style=" font-family:'Adwaita Sans'; font-size:11pt; font-weight:400; font-style:normal;"> -<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;">eden is an experimental open-source emulator for the Nintendo Switch licensed under GPLv3.0+ which is based on the yuzu emulator which ended development back in March 2024. <br /><br />This software should not be used to play games you have not legally obtained.</span></p></body></html> +</style></head><body style=" font-family:'Noto Sans'; font-size:9pt; font-weight:400; font-style:normal;"> +<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;">Eden is an experimental open-source emulator for the Nintendo Switch licensed under GPLv3.0+ which is based on the yuzu emulator which ended development back in March 2024. <br /><br />This software should not be used to play games you have not legally obtained.</span></p></body></html> @@ -72,32 +72,32 @@ p, li { white-space: pre-wrap; } CalibrationConfigurationDialog - + Communicating with the server... Đang giao tiếp với máy chủ... - + Cancel Huỷ - + Touch the top left corner <br>of your touchpad. Hãy chạm vào góc trên cùng<br>bên trái trên touchpad của bạn. - + Now touch the bottom right corner <br>of your touchpad. Giờ hãy chạm vào góc dưới cùng<br>bên phải trên touchpad của bạn. - + Configuration completed! Đã hoàn thành quá trình thiết lập! - + OK OK @@ -397,439 +397,157 @@ This would ban both their forum username and their IP address. ConfigurationShared - + % % - - Amiibo editor - - - - - Controller configuration - - - - - Data erase - - - - + Error Lỗi - - Net connect - - - - - Player select - - - - + Software keyboard Bàn phím mềm - - Mii Edit - - - - - Online web - - - - - Shop - - - - - Photo viewer - - - - - Offline web - - - - - Login share - - - - - Wifi web auth - - - - - My page - - - - + Output Engine: Đầu ra hệ thống: - + Output Device: Đầu ra thiết bị: - + Input Device: Đầu vào thiết bị: - - Mute audio - - - - + Volume: Âm lượng: - + Mute audio when in background Tắt âm thanh khi chạy nền - + Multicore CPU Emulation Giả lập CPU đa nhân - - This option increases CPU emulation thread use from 1 to the Switch’s maximum of 4. -This is mainly a debug option and shouldn’t be disabled. - - - - - Memory Layout - - - - - Increases the amount of emulated RAM from the stock 4GB of the retail Switch to the developer kit's 8/6GB. -It’s doesn’t improve stability or performance and is intended to let big texture mods fit in emulated RAM. -Enabling it will increase memory use. It is not recommended to enable unless a specific game with a texture mod needs it. - - - - + Limit Speed Percent Giới hạn phần trăm tốc độ - - Controls the game's maximum rendering speed, but it’s up to each game if it runs faster or not. -200% for a 30 FPS game is 60 FPS, and for a 60 FPS game it will be 120 FPS. -Disabling it means unlocking the framerate to the maximum your PC can reach. - - - - - Synchronize Core Speed - - - - - Synchronizes CPU core speed with the game's maximum rendering speed to boost FPS without affecting game speed (animations, physics, etc.). -Compatibility varies by game; many (especially older ones) may not respond well. -Can help reduce stuttering at lower framerates. - - - - + Accuracy: Độ chính xác - - This setting controls the accuracy of the emulated CPU. -Don't change this unless you know what you are doing. - - - - - - Backend: - - - - - Fast CPU Time - - - - - Overclocks the emulated CPU to remove some FPS limiters. Weaker CPUs may see reduced performance, and certain games may behave improperly. -Use Boost (1700MHz) to run at the Switch's highest native clock, or Fast (2000MHz) to run at 2x clock. - - - - + Unfuse FMA (improve performance on CPUs without FMA) Không dùng FMA (tăng hiệu suất cho các dòng CPU không hỗ trợ FMA) - - This option improves speed by reducing accuracy of fused-multiply-add instructions on CPUs without native FMA support. - - - - + Faster FRSQRTE and FRECPE Chạy FRSQRTE và FRECPE nhanh hơn - - This option improves the speed of some approximate floating-point functions by using less accurate native approximations. - - - - + Faster ASIMD instructions (32 bits only) Các lệnh ASIMD nhanh hơn (chỉ áp dụng cho 32 bit) - - This option improves the speed of 32 bits ASIMD floating-point functions by running with incorrect rounding modes. - - - - + Inaccurate NaN handling Xử lí NaN gặp lỗi - - This option improves speed by removing NaN checking. -Please note this also reduces accuracy of certain floating-point instructions. - - - - + Disable address space checks Tắt kiểm tra không gian địa chỉ - - This option improves speed by eliminating a safety check before every memory read/write in guest. -Disabling it may allow a game to read/write the emulator's memory. - - - - + Ignore global monitor Bỏ qua màn hình chung - - This option improves speed by relying only on the semantics of cmpxchg to ensure safety of exclusive access instructions. -Please note this may result in deadlocks and other race conditions. - - - - + API: API đồ hoạ: - - Switches between the available graphics APIs. -Vulkan is recommended in most cases. - - - - + Device: Thiết bị đồ hoạ: - - This setting selects the GPU to use with the Vulkan backend. - - - - + Shader Backend: Backend shader: - - The shader backend to use for the OpenGL renderer. -GLSL is the fastest in performance and the best in rendering accuracy. -GLASM is a deprecated NVIDIA-only backend that offers much better shader building performance at the cost of FPS and rendering accuracy. -SPIR-V compiles the fastest, but yields poor results on most GPU drivers. - - - - + Resolution: Độ phân giải: - - Forces the game to render at a different resolution. -Higher resolutions require much more VRAM and bandwidth. -Options lower than 1X can cause rendering issues. - - - - + Window Adapting Filter: Bộ lọc điều chỉnh cửa sổ: - + FSR Sharpness: Độ sắc nét FSR: - - Determines how sharpened the image will look while using FSR’s dynamic contrast. - - - - + Anti-Aliasing Method: Phương pháp khử răng cưa: - - The anti-aliasing method to use. -SMAA offers the best quality. -FXAA has a lower performance impact and can produce a better and more stable picture under very low resolutions. - - - - + Fullscreen Mode: Chế độ Toàn màn hình: - - The method used to render the window in fullscreen. -Borderless offers the best compatibility with the on-screen keyboard that some games request for input. -Exclusive fullscreen may offer better performance and better Freesync/Gsync support. - - - - + Aspect Ratio: Tỉ lệ khung hình: - - Stretches the game to fit the specified aspect ratio. -Switch games only support 16:9, so custom game mods are required to get other ratios. -Also controls the aspect ratio of captured screenshots. - - - - + Use disk pipeline cache Dùng bộ nhớ đệm pipeline trên ổ cứng - - Allows saving shaders to storage for faster loading on following game boots. -Disabling it is only intended for debugging. - - - - - Optimize SPIRV output shader - - - - - Runs an additional optimization pass over generated SPIRV shaders. -Will increase time required for shader compilation. -May slightly improve performance. -This feature is experimental. - - - - + Use asynchronous GPU emulation Dùng giả lập GPU không đồng bộ - - Uses an extra CPU thread for rendering. -This option should always remain enabled. - - - - + NVDEC emulation: Giả lập NVDEC - - Specifies how videos should be decoded. -It can either use the CPU or the GPU for decoding, or perform no decoding at all (black screen on videos). -In most cases, GPU decoding provides the best performance. - - - - - ASTC Decoding Method: - - - - - This option controls how ASTC textures should be decoded. -CPU: Use the CPU for decoding, slowest but safest method. -GPU: Use the GPU's compute shaders to decode ASTC textures, recommended for most games and users. -CPU Asynchronously: Use the CPU to decode ASTC textures as they arrive. Completely eliminates ASTC decoding -stuttering at the cost of rendering issues while the texture is being decoded. - - - - - ASTC Recompression Method: - - - - - Almost all desktop and laptop dedicated GPUs lack support for ASTC textures, forcing the emulator to decompress to an intermediate format any card supports, RGBA8. -This option recompresses RGBA8 to either the BC1 or BC3 format, saving VRAM but negatively affecting image quality. - - - - - VRAM Usage Mode: - - - - - Selects whether the emulator should prefer to conserve memory or make maximum usage of available video memory for performance. Has no effect on integrated graphics. Aggressive mode may severely impact the performance of other applications such as recording software. - - - - + VSync Mode: Chế độ Vsync: - + FIFO (VSync) does not drop frames or exhibit tearing but is limited by the screen refresh rate. FIFO Relaxed is similar to FIFO but allows tearing as it recovers from a slow down. Mailbox can have lower latency than FIFO and does not tear but may drop frames. @@ -840,62 +558,34 @@ Mailbox có thể có độ trễ thấp hơn FIFO và không gây hiện tượ Immediate (không đồng bộ hóa) chỉ hiển thị những gì đã có và có thể gây hiện tượng xé hình. - + Enable asynchronous presentation (Vulkan only) Bật hiển thị bất đồng bộ (chỉ dành cho Vulkan) - - Slightly improves performance by moving presentation to a separate CPU thread. - - - - + Force maximum clocks (Vulkan only) Buộc chạy ở xung nhịp tối đa (chỉ Vulkan) - + Runs work in the background while waiting for graphics commands to keep the GPU from lowering its clock speed. Chạy các công việc trong nền trong khi đang chờ lệnh đồ họa để giữ cho GPU không giảm xung nhịp. - + Anisotropic Filtering: Bộ lọc góc nghiêng: - - Controls the quality of texture rendering at oblique angles. -It’s a light setting and safe to set at 16x on most GPUs. - - - - Accuracy Level: - Độ chính xác: + Độ chính xác: - - GPU emulation accuracy. -Most games render fine with Normal, but High is still required for some. -Particles tend to only render correctly with High accuracy. -Extreme should only be used for debugging. -This option can be changed while playing. -Some games may require booting on high to render properly. - - - - + Use asynchronous shader building (Hack) Dùng tính năng dựng shader bất đồng bộ (Hack) - - - Enables asynchronous shader compilation, which may reduce shader stutter. -This feature is experimental. - - Use Fast GPU Time (Hack) Tăng Tốc Thời Gian GPU (Hack) @@ -905,1021 +595,1428 @@ This feature is experimental. Bật chế độ Thời gian GPU nhanh. Tùy chọn này sẽ buộc hầu hết các game chạy ở độ phân giải gốc cao nhất của chúng. - + Use Vulkan pipeline cache Dùng Vulkan pipeline cache - + + Enable Reactive Flushing + Bật xả tương ứng + + + + Sync to framerate of video playback + Đồng bộ hóa với tốc độ khung hình khi phát video + + + + Run the game at normal speed during video playback, even when the framerate is unlocked. + Chạy game với tốc độ bình thường trong quá trình phát video, ngay cả khi tốc độ khung hình được mở khóa. + + + + Barrier feedback loops + Vòng lặp phản hồi rào cản + + + + Improves rendering of transparency effects in specific games. + Cải thiện hiệu quả hiển thị của hiệu ứng trong suốt trong một số trò chơi. + + + + RNG Seed + Hạt giống RNG + + + + Device Name + Tên thiết bị + + + + Note: this can be overridden when region setting is auto-select + Chú ý: cái này có thể ghi đè khi cài đặt quốc gia là chọn tự động + + + + Region: + Vùng: + + + + Time Zone: + Múi giờ: + + + + Sound Output Mode: + Chế độ đầu ra âm thanh + + + + Prompt for user on game boot + Hiển thị cửa sổ chọn người dùng khi bắt đầu trò chơi + + + + Pause emulation when in background + Tạm dừng giả lập khi chạy nền + + + + Hide mouse on inactivity + Ẩn con trỏ chuột khi không dùng + + + + Disable controller applet + Vô hiệu hoá applet tay cầm + + + + CPU + CPU + + + + Uncompressed (Best quality) + Không nén (Chất lượng tốt nhất) + + + + BC1 (Low quality) + BC1 (Chất lượng thấp) + + + + BC3 (Medium quality) + BC3 (Chất lượng trung bình) + + + + OpenGL + OpenGL + + + + Vulkan + Vulkan + + + + Null + Null + + + + GLSL + GLSL + + + + GLASM (Assembly Shaders, NVIDIA Only) + GLASM (Assembly Shaders, Chỉ Cho NVIDIA) + + + + Normal + Trung bình + + + + High + Khỏe + + + + Extreme + Tối đa + + + + Auto + Tự động + + + + Accurate + Tuyệt đối + + + + Unsafe + Tương đối + + + + Paranoid (disables most optimizations) + Paranoid (vô hiệu hoá hầu hết sự tối ưu) + + + + Borderless Windowed + Cửa sổ không viền + + + + Exclusive Fullscreen + Toàn màn hình + + + + No Video Output + Không Video Đầu Ra + + + + CPU Video Decoding + Giải mã video bằng CPU + + + + GPU Video Decoding (Default) + Giải mã video bằng GPU (Mặc định) + + + + 0.75X (540p/810p) [EXPERIMENTAL] + 0.75X (540p/810p) [THỬ NGHIỆM] + + + + 1X (720p/1080p) + 1X (720p/1080p) + + + + 1.5X (1080p/1620p) [EXPERIMENTAL] + 1.5X (1080p/1620p) [THỬ NGHIỆM] + + + + 2X (1440p/2160p) + 2X (1440p/2160p) + + + + 3X (2160p/3240p) + 3X (2160p/3240p) + + + + 4X (2880p/4320p) + 4X (2880p/4320p) + + + + 5X (3600p/5400p) + 5X (3600p/5400p) + + + + 6X (4320p/6480p) + 6X (4320p/6480p) + + + + 7X (5040p/7560p) + 7X (5040p/7560p) + + + + 8X (5760p/8640p) + 8X (5760p/8640p) + + + + Nearest Neighbor + Nearest Neighbor + + + + Bilinear + Bilinear + + + + Bicubic + Bicubic + + + + Gaussian + ScaleForce + + + + ScaleForce + ScaleForce + + + + AMD FidelityFX™️ Super Resolution + AMD FidelityFX™️ Super Resolution + + + + None + Trống + + + + FXAA + FXAA + + + + SMAA + SMAA + + + + Default (16:9) + Mặc định (16:9) + + + + Force 4:3 + Dùng 4:3 + + + + Force 21:9 + Dùng 21:9 + + + + Force 16:10 + Dung 16:10 + + + + Stretch to Window + Kéo dãn đến cửa sổ phần mềm + + + + Automatic + Tự động + + + + + Default + Mặc định + + + + Amiibo editor + + + + + Controller configuration + + + + + Data erase + + + + + Net connect + + + + + Player select + + + + + Mii Edit + + + + + Online web + + + + + Shop + + + + + Photo viewer + + + + + Offline web + + + + + Login share + + + + + Wifi web auth + + + + + My page + + + + + Mute audio + + + + + This option increases CPU emulation thread use from 1 to the Switch’s maximum of 4. +This is mainly a debug option and shouldn’t be disabled. + + + + + Memory Layout + + + + + Increases the amount of emulated RAM from the stock 4GB of the retail Switch to the developer kit's 8/6GB. +It’s doesn’t improve stability or performance and is intended to let big texture mods fit in emulated RAM. +Enabling it will increase memory use. It is not recommended to enable unless a specific game with a texture mod needs it. + + + + + Controls the game's maximum rendering speed, but it’s up to each game if it runs faster or not. +200% for a 30 FPS game is 60 FPS, and for a 60 FPS game it will be 120 FPS. +Disabling it means unlocking the framerate to the maximum your PC can reach. + + + + + Synchronize Core Speed + + + + + Synchronizes CPU core speed with the game's maximum rendering speed to boost FPS without affecting game speed (animations, physics, etc.). +Compatibility varies by game; many (especially older ones) may not respond well. +Can help reduce stuttering at lower framerates. + + + + + This setting controls the accuracy of the emulated CPU. +Don't change this unless you know what you are doing. + + + + + + Backend: + + + + + Fast CPU Time + + + + + Overclocks the emulated CPU to remove some FPS limiters. Weaker CPUs may see reduced performance, and certain games may behave improperly. +Use Boost (1700MHz) to run at the Switch's highest native clock, or Fast (2000MHz) to run at 2x clock. + + + + + Custom CPU Ticks + + + + + Set a custom value of CPU ticks. Higher values can increase performance, but may also cause the game to freeze. A range of 77–21000 is recommended. + + + + + Enable Host MMU Emulation (fastmem) + + + + + This optimization speeds up memory accesses by the guest program. +Enabling it causes guest memory reads/writes to be done directly into memory and make use of Host's MMU. +Disabling this forces all memory accesses to use Software MMU Emulation. + + + + + This option improves speed by reducing accuracy of fused-multiply-add instructions on CPUs without native FMA support. + + + + + This option improves the speed of some approximate floating-point functions by using less accurate native approximations. + + + + + This option improves the speed of 32 bits ASIMD floating-point functions by running with incorrect rounding modes. + + + + + This option improves speed by removing NaN checking. +Please note this also reduces accuracy of certain floating-point instructions. + + + + + This option improves speed by eliminating a safety check before every memory read/write in guest. +Disabling it may allow a game to read/write the emulator's memory. + + + + + This option improves speed by relying only on the semantics of cmpxchg to ensure safety of exclusive access instructions. +Please note this may result in deadlocks and other race conditions. + + + + + Switches between the available graphics APIs. +Vulkan is recommended in most cases. + + + + + This setting selects the GPU to use with the Vulkan backend. + + + + + The shader backend to use for the OpenGL renderer. +GLSL is the fastest in performance and the best in rendering accuracy. +GLASM is a deprecated NVIDIA-only backend that offers much better shader building performance at the cost of FPS and rendering accuracy. +SPIR-V compiles the fastest, but yields poor results on most GPU drivers. + + + + + Forces the game to render at a different resolution. +Higher resolutions require much more VRAM and bandwidth. +Options lower than 1X can cause rendering issues. + + + + + Determines how sharpened the image will look while using FSR’s dynamic contrast. + + + + + The anti-aliasing method to use. +SMAA offers the best quality. +FXAA has a lower performance impact and can produce a better and more stable picture under very low resolutions. + + + + + The method used to render the window in fullscreen. +Borderless offers the best compatibility with the on-screen keyboard that some games request for input. +Exclusive fullscreen may offer better performance and better Freesync/Gsync support. + + + + + Stretches the game to fit the specified aspect ratio. +Switch games only support 16:9, so custom game mods are required to get other ratios. +Also controls the aspect ratio of captured screenshots. + + + + + Allows saving shaders to storage for faster loading on following game boots. +Disabling it is only intended for debugging. + + + + + Optimize SPIRV output shader + + + + + Runs an additional optimization pass over generated SPIRV shaders. +Will increase time required for shader compilation. +May slightly improve performance. +This feature is experimental. + + + + + Uses an extra CPU thread for rendering. +This option should always remain enabled. + + + + + Specifies how videos should be decoded. +It can either use the CPU or the GPU for decoding, or perform no decoding at all (black screen on videos). +In most cases, GPU decoding provides the best performance. + + + + + ASTC Decoding Method: + + + + + This option controls how ASTC textures should be decoded. +CPU: Use the CPU for decoding, slowest but safest method. +GPU: Use the GPU's compute shaders to decode ASTC textures, recommended for most games and users. +CPU Asynchronously: Use the CPU to decode ASTC textures as they arrive. Completely eliminates ASTC decoding +stuttering at the cost of rendering issues while the texture is being decoded. + + + + + ASTC Recompression Method: + + + + + Almost all desktop and laptop dedicated GPUs lack support for ASTC textures, forcing the emulator to decompress to an intermediate format any card supports, RGBA8. +This option recompresses RGBA8 to either the BC1 or BC3 format, saving VRAM but negatively affecting image quality. + + + + + VRAM Usage Mode: + + + + + Selects whether the emulator should prefer to conserve memory or make maximum usage of available video memory for performance. +Aggressive mode may severely impact the performance of other applications such as recording software. + + + + + Skip CPU Inner Invalidation + + + + + Skips certain CPU-side cache invalidations during memory updates, reducing CPU usage and improving it's performance. This may cause glitches or crashes on some games. + + + + + Sync Memory Operations + + + + + Ensures data consistency between compute and memory operations. +This option should fix issues in some games, but may also reduce performance in some cases. +Unreal Engine 4 games often see the most significant changes thereof. + + + + + Slightly improves performance by moving presentation to a separate CPU thread. + + + + + Controls the quality of texture rendering at oblique angles. +It’s a light setting and safe to set at 16x on most GPUs. + + + + + GPU Accuracy: + + + + + Controls the GPU emulation accuracy. +Most games render fine with Normal, but High is still required for some. +Particles tend to only render correctly with High accuracy. +Extreme should only be used as a last resort. + + + + + DMA Accuracy: + + + + + Controls the DMA precision accuracy. Safe precision can fix issues in some games, but it can also impact performance in some cases. +If unsure, leave this on Default. + + + + + Enables asynchronous shader compilation, which may reduce shader stutter. +This feature is experimental. + + + + + Fast GPU Time (Hack) + + + + + Overclocks the emulated GPU to increase dynamic resolution and render distance. +Use 128 for maximal performance and 512 for maximal graphics fidelity. + + + + Enables GPU vendor-specific pipeline cache. This option can improve shader loading time significantly in cases where the Vulkan driver does not store pipeline cache files internally. - + Enable Compute Pipelines (Intel Vulkan Only) - + Enable compute pipelines, required by some games. This setting only exists for Intel proprietary drivers, and may crash if enabled. Compute pipelines are always enabled on all other drivers. - - Enable Reactive Flushing - Bật xả tương ứng - - - + Uses reactive flushing instead of predictive flushing, allowing more accurate memory syncing. - - Sync to framerate of video playback - Đồng bộ hóa với tốc độ khung hình khi phát video + + RAII + - - Run the game at normal speed during video playback, even when the framerate is unlocked. - Chạy game với tốc độ bình thường trong quá trình phát video, ngay cả khi tốc độ khung hình được mở khóa. + + A method of automatic resource management in Vulkan that ensures proper release of resources when they are no longer needed, but may cause crashes in bundled games. + - - Barrier feedback loops - Vòng lặp phản hồi rào cản + + Extended Dynamic State + - - Improves rendering of transparency effects in specific games. - Cải thiện hiệu quả hiển thị của hiệu ứng trong suốt trong một số trò chơi. + + Controls the number of features that can be used in Extended Dynamic State. +Higher numbers allow for more features and can increase performance, but may cause issues with some drivers and vendors. +The default value may vary depending on your system and hardware capabilities. +This value can be changed until stability and a better visual quality are achieved. + - - RNG Seed - Hạt giống RNG + + Provoking Vertex + - + + Improves lighting and vertex handling in certain games. +Only Vulkan 1.0+ devices support this extension. + + + + + Descriptor Indexing + + + + + Improves texture & buffer handling and the Maxwell translation layer. +Some Vulkan 1.1+ and all 1.2+ devices support this extension. + + + + + Sample Shading + + + + + Allows the fragment shader to execute per sample in a multi-sampled fragment instead once per fragment. Improves graphics quality at the cost of some performance. +Higher values improve quality more but also reduce performance to a greater extent. + + + + Controls the seed of the random number generator. Mainly used for speedrunning purposes. - - Device Name - Tên thiết bị - - - + The name of the emulated Switch. - + Custom RTC Date: - + This option allows to change the emulated clock of the Switch. Can be used to manipulate time in games. - + Language: - - Note: this can be overridden when region setting is auto-select - Chú ý: cái này có thể ghi đè khi cài đặt quốc gia là chọn tự động - - - - Region: - Vùng: - - - + The region of the emulated Switch. - - Time Zone: - Múi giờ: - - - + The time zone of the emulated Switch. - - Sound Output Mode: - Chế độ đầu ra âm thanh - - - + Console Mode: - + Selects if the console is emulated in Docked or Handheld mode. Games will change their resolution, details and supported controllers and depending on this setting. Setting to Handheld can help improve performance for low end systems. - - Prompt for user on game boot - Hiển thị cửa sổ chọn người dùng khi bắt đầu trò chơi - - - - Pause emulation when in background - Tạm dừng giả lập khi chạy nền - - - - Fast GPU Time (Hack) + + Ask to select a user profile on each boot, useful if multiple people use Eden on the same PC. - - Overclocks the emulated GPU to increase dynamic resolution and render distance. -Use 128 for maximal performance and 512 for maximal graphics fidelity. + + This setting pauses Eden when focusing other windows. - - Extended Dynamic State - - - - - Enables the VkExtendedDynamicState* extensions. -Higher dynamic states will generally improve performance, but may cause issues on certain games or devices. - - - - - Provoking Vertex - - - - - Improves lighting and vertex handling in certain games. -Only Vulkan 1.0+ devices support this extension. - - - - - Descriptor Indexing - - - - - Improves texture & buffer handling and the Maxwell translation layer. -Some Vulkan 1.1+ and all 1.2+ devices support this extension. - - - - - Ask to select a user profile on each boot, useful if multiple people use eden on the same PC. - - - - - This setting pauses eden when focusing other windows. - - - - + Confirm before stopping emulation - + This setting overrides game prompts asking to confirm stopping the game. Enabling it bypasses such prompts and directly exits the emulation. - - Hide mouse on inactivity - Ẩn con trỏ chuột khi không dùng - - - + This setting hides the mouse after 2.5s of inactivity. - - Disable controller applet - Vô hiệu hoá applet tay cầm - - - + Forcibly disables the use of the controller applet by guests. When a guest attempts to open the controller applet, it is immediately closed. - + Check for updates - + Whether or not to check for updates upon startup. - + Enable Gamemode - + Custom frontend - + Real applet - + Never - + On Load - + Always - - CPU - CPU - - - + GPU - + CPU Asynchronous - - Uncompressed (Best quality) - Không nén (Chất lượng tốt nhất) - - - - BC1 (Low quality) - BC1 (Chất lượng thấp) - - - - BC3 (Medium quality) - BC3 (Chất lượng trung bình) - - - + Conservative - + Aggressive - - OpenGL - OpenGL - - - - Vulkan - Vulkan - - - - Null - Null - - - - GLSL - GLSL - - - - GLASM (Assembly Shaders, NVIDIA Only) - GLASM (Assembly Shaders, Chỉ Cho NVIDIA) - - - + SPIR-V (Experimental, AMD/Mesa Only) - - Normal - Trung bình + + Unsafe (fast) + - - High - Khỏe + + Safe (stable) + - - Extreme - Tối đa - - - - Auto - Tự động - - - - Accurate - Tuyệt đối - - - - Unsafe - Tương đối - - - - Paranoid (disables most optimizations) - Paranoid (vô hiệu hoá hầu hết sự tối ưu) - - - + Dynarmic - + NCE - - Borderless Windowed - Cửa sổ không viền - - - - Exclusive Fullscreen - Toàn màn hình - - - - No Video Output - Không Video Đầu Ra - - - - CPU Video Decoding - Giải mã video bằng CPU - - - - GPU Video Decoding (Default) - Giải mã video bằng GPU (Mặc định) - - - + 0.25X (180p/270p) [EXPERIMENTAL] - + 0.5X (360p/540p) [EXPERIMENTAL] - - 0.75X (540p/810p) [EXPERIMENTAL] - 0.75X (540p/810p) [THỬ NGHIỆM] - - - - 1X (720p/1080p) - 1X (720p/1080p) - - - - 1.5X (1080p/1620p) [EXPERIMENTAL] - 1.5X (1080p/1620p) [THỬ NGHIỆM] - - - - 2X (1440p/2160p) - 2X (1440p/2160p) - - - - 3X (2160p/3240p) - 3X (2160p/3240p) - - - - 4X (2880p/4320p) - 4X (2880p/4320p) - - - - 5X (3600p/5400p) - 5X (3600p/5400p) - - - - 6X (4320p/6480p) - 6X (4320p/6480p) - - - - 7X (5040p/7560p) - 7X (5040p/7560p) - - - - 8X (5760p/8640p) - 8X (5760p/8640p) - - - - Nearest Neighbor - Nearest Neighbor - - - - Bilinear - Bilinear - - - - Bicubic - Bicubic - - - - Gaussian - ScaleForce - - - - ScaleForce - ScaleForce - - - - AMD FidelityFX™️ Super Resolution - AMD FidelityFX™️ Super Resolution - - - + Area - - None - Trống - - - - FXAA - FXAA - - - - SMAA - SMAA - - - - Default (16:9) - Mặc định (16:9) - - - - Force 4:3 - Dùng 4:3 - - - - Force 21:9 - Dùng 21:9 - - - - Force 16:10 - Dung 16:10 - - - - Stretch to Window - Kéo dãn đến cửa sổ phần mềm - - - - Automatic - Tự động - - - - Default - Mặc định - - - + 2x 2x - + 4x 4x - + 8x 8x - + 16x 16x - + Japanese (日本語) Tiếng Nhật (日本語) - + American English Tiếng Anh Mỹ - + French (français) Tiếng Pháp (French) - + German (Deutsch) Tiếng Đức (Deutsch) - + Italian (italiano) Tiếng Ý (italiano) - + Spanish (español) Tiếng Tây Ban Nha (Spanish) - + Chinese Tiếng Trung - + Korean (한국어) Tiếng Hàn (한국어) - + Dutch (Nederlands) Tiếng Hà Lan (Dutch) - + Portuguese (português) Tiếng Bồ Đào Nha (Portuguese) - + Russian (Русский) Tiếng Nga (Русский) - + Taiwanese Tiếng Đài Loan - + British English Tiếng Anh UK (British English) - + Canadian French Tiếng Pháp Canada - + Latin American Spanish Tiếng Mỹ La-tinh - + Simplified Chinese Tiếng Trung giản thể - + Traditional Chinese (正體中文) Tiếng Trung phồn thể (正體中文) - + Brazilian Portuguese (português do Brasil) Tiếng Bồ Đào Nha của người Brazil (Português do Brasil) - - + + Serbian (српски) + + + + + Japan Nhật Bản - + USA Hoa Kỳ - + Europe Châu Âu - + Australia Châu Úc - + China Trung Quốc - + Korea Hàn Quốc - + Taiwan Đài Loan - + Auto (%1) Auto select time zone Tự động (%1) - + Default (%1) Default time zone Mặc định (%1) - + CET CET - + CST6CDT CST6CDT - + Cuba Cuba - + EET EET - + Egypt Ai Cập - + Eire Eire - + EST EST - + EST5EDT EST5EDT - + GB GB - + GB-Eire GB-Eire - + GMT GMT - + GMT+0 GMT+0 - + GMT-0 GMT-0 - + GMT0 GMT0 - + Greenwich Greenwich - + Hongkong Hồng Kông - + HST HST - + Iceland Iceland - + Iran Iran - + Israel Israel - + Jamaica Jamaica - + Kwajalein Kwajalein - + Libya Libya - + MET MET - + MST MST - + MST7MDT MST7MDT - + Navajo Navajo - + NZ NZ - + NZ-CHAT NZ-CHAT - + Poland Ba Lan - + Portugal Bồ Đào Nha - + PRC PRC - + PST8PDT PST8PDT - + ROC ROC - + ROK ROK - + Singapore Singapore - + Turkey Thổ Nhĩ Kỳ - + UCT UCT - + Universal Quốc tế - + UTC UTC - + W-SU W-SU - + WET WET - + Zulu Zulu - + Mono Mono - + Stereo Stereo - + Surround Surround - + 4GB DRAM (Default) - + 6GB DRAM (Unsafe) - + 8GB DRAM - + 10GB DRAM (Unsafe) - + 12GB DRAM (Unsafe) - - Low (128) - - - - - Medium (256) - - - - - High (512) - - - - + Docked Chế độ cắm TV - + Handheld Cầm tay - + Boost (1700MHz) - + Fast (2000MHz) - + Always ask (Default) - + Only if game specifies not to stop - + Never ask + + + Low (128) + + + + + Medium (256) + + + + + High (512) + + ConfigureApplets @@ -2271,27 +2368,27 @@ When a guest attempts to open the controller applet, it is immediately closed.Sổ ghi chép - + Open Log Location Mở vị trí sổ ghi chép - + Global Log Filter Bộ lọc sổ ghi chép - + When checked, the max size of the log increases from 100 MB to 1 GB Khi tích vào, dung lượng tối đa cho file log chuyển từ 100 MB lên 1 GB - + Enable Extended Logging** Bật ghi nhật ký mở rộng** - + Show Log in Console Hiện nhật ký trên trong console @@ -2437,7 +2534,7 @@ When a guest attempts to open the controller applet, it is immediately closed. - **This will be reset automatically when eden closes. + **This will be reset automatically when Eden closes. @@ -2499,7 +2596,7 @@ When a guest attempts to open the controller applet, it is immediately closed.**Sẽ tự động thiết lập lại khi tắt yuzu. - + Web applet not compiled Applet web chưa được biên dịch @@ -2549,7 +2646,7 @@ When a guest attempts to open the controller applet, it is immediately closed. - eden Configuration + Eden Configuration @@ -2558,88 +2655,88 @@ When a guest attempts to open the controller applet, it is immediately closed.Một số cài đặt chỉ khả dụng khi game không chạy. - + Applets - - + + Audio Âm thanh - - + + CPU CPU - + Debug Gỡ lỗi - + Filesystem Hệ thống tệp tin - - + + General Chung - - + + Graphics Đồ hoạ - + GraphicsAdvanced Đồ họa Nâng cao - + GraphicsExtensions - + Hotkeys Phím tắt - - + + Controls Phím - + Profiles Hồ sơ - + Network Mạng - - + + System Hệ thống - + Game List Danh sách trò chơi - + Web Web @@ -2737,51 +2834,45 @@ When a guest attempts to open the controller applet, it is immediately closed. - - - Reset Metadata Cache Khôi phục bộ nhớ đệm của metadata - + Select Emulated NAND Directory... Chọn Thư Mục Giả Lập NAND... - + Select Emulated SD Directory... Chọn Thư Mục Giả Lập SD... - + Select Gamecard Path... Chọn đường dẫn tới đĩa game... - + Select Dump Directory... Chọn thư mục trích xuất... - + Select Mod Load Directory... Chọn Thư Mục Chứa Mod... - The metadata cache is already empty. - Bộ nhớ đệm metadata trống. + Bộ nhớ đệm metadata trống. - The operation completed successfully. - Các hoạt động đã hoàn tất thành công. + Các hoạt động đã hoàn tất thành công. - The metadata cache couldn't be deleted. It might be in use or non-existent. - Bộ nhớ đệm metadata không thể xoá. Nó có thể đang được sử dụng hoặc không tồn tại. + Bộ nhớ đệm metadata không thể xoá. Nó có thể đang được sử dụng hoặc không tồn tại. @@ -2812,12 +2903,12 @@ When a guest attempts to open the controller applet, it is immediately closed.yuzu - - eden + + Eden - + This reset all settings and remove all per-game configurations. This will not delete game directories, profiles, or input profiles. Proceed? Quá trình này sẽ thiết lập lại toàn bộ tùy chỉnh và gỡ hết mọi cài đặt cho từng game riêng lẻ. Quá trình này không xóa đường dẫn tới thư mục game, hồ sơ, hay hồ sơ của thiết lập phím. Tiếp tục? @@ -2850,33 +2941,33 @@ When a guest attempts to open the controller applet, it is immediately closed.Màu nền: - + % FSR sharpening percentage (e.g. 50%) % - + Off Tắt - + VSync Off Tắt Vsync - + Recommended Đề xuất - + On Bật - + VSync On Bật Vsync @@ -2913,14 +3004,18 @@ When a guest attempts to open the controller applet, it is immediately closed. - Vulkan Extension Settings + Vulkan Extensions Settings - - While it's recommended to use state 3, some games may perform better on lower states. Setting to 0 (disabled) may also break games. -If your GPU is older (i.e. RX570/580 or older), it may not support these features. If this is the case, set the slider to 0 and uncheck all boxes. -These settings are experimental, and may cause black screens. If your games fail to boot or are stuck on a black screen, change these settings around. + + % + Sample Shading percentage (e.g. 50%) + % + + + + Extended Dynamic State is disabled on macOS due to MoltenVK compatibility issues that cause black screens. @@ -2952,75 +3047,75 @@ These settings are experimental, and may cause black screens. If your games fail Khôi phục về mặc định - + Action Hành động - + Hotkey Phím tắt - + Controller Hotkey Phím tắt tay cầm - - - + + + Conflicting Key Sequence Tổ hợp phím bị xung đột - - + + The entered key sequence is already assigned to: %1 Tổ hợp phím này đã gán với: %1 - + [waiting] [Chờ] - + Invalid Không hợp lệ - + Invalid hotkey settings - + An error occurred. Please report this issue on github. - + Restore Default Khôi phục về mặc định - + Clear Xóa - + Conflicting Button Sequence Dãy nút xung đột - + The default button sequence is already assigned to: %1 Dãy nút mặc định đã được gán cho: %1 - + The default key sequence is already assigned to: %1 Tổ hợp phím này đã gán với: %1 @@ -3340,7 +3435,7 @@ These settings are experimental, and may cause black screens. If your games fail - Requires restarting eden + Requires restarting Eden @@ -3495,7 +3590,7 @@ These settings are experimental, and may cause black screens. If your games fail - + Left Stick Cần trái @@ -3605,14 +3700,14 @@ These settings are experimental, and may cause black screens. If your games fail - + L L - + ZL ZL @@ -3631,7 +3726,7 @@ These settings are experimental, and may cause black screens. If your games fail - + Plus Cộng @@ -3644,15 +3739,15 @@ These settings are experimental, and may cause black screens. If your games fail - - + + R R - + ZR ZR @@ -3697,7 +3792,7 @@ These settings are experimental, and may cause black screens. If your games fail - + Right Stick Cần phải @@ -3712,242 +3807,242 @@ These settings are experimental, and may cause black screens. If your games fail Cài đặt - - - - + + + + Clear Bỏ trống - - - - - + + + + + [not set] [không đặt] - - - + + + Invert button Đảo ngược nút - - + + Toggle button Đổi nút - + Turbo button Nút Turbo - - + + Invert axis Đảo ngược trục - - - + + + Set threshold Thiết lập ngưỡng - - + + Choose a value between 0% and 100% Chọn một giá trị giữa 0% và 100% - + Toggle axis Chuyển đổi trục - + Set gyro threshold Thiết lập ngưỡng cảm biến con quay - + Calibrate sensor Hiệu chỉnh cảm biến - + Map Analog Stick Thiết lập Cần Điều Khiển - + After pressing OK, first move your joystick horizontally, and then vertically. To invert the axes, first move your joystick vertically, and then horizontally. Sau khi bấm OK, di chuyển cần sang ngang, rồi sau đó sang dọc. Nếu muốn đảo ngược hướng cần điều khiển, di chuyển cần sang dọc trước, rồi sang ngang. - + Center axis Canh chỉnh trục - - + + Deadzone: %1% Vùng chết: %1% - - + + Modifier Range: %1% Phạm vi điều chỉnh: %1% - - + + Pro Controller Tay cầm Pro Controller - + Dual Joycons Joycon đôi - + Left Joycon Joycon Trái - + Right Joycon Joycon Phải - + Handheld Cầm tay - + GameCube Controller Tay cầm GameCube - + Poke Ball Plus Poke Ball Plus - + NES Controller Tay cầm NES - + SNES Controller Tay cầm SNES - + N64 Controller Tay cầm N64 - + Sega Genesis Sega Genesis - + Start / Pause Bắt đầu / Tạm ngưng - + Z Z - + Control Stick Cần điều khiển - + C-Stick C-Stick - + Shake! Lắc! - + [waiting] [Chờ] - + New Profile Hồ sơ mới - + Enter a profile name: Nhập tên hồ sơ: - - + + Create Input Profile Tạo Hồ Sơ Phím - + The given profile name is not valid! Tên hồ sơ không hợp lệ! - + Failed to create the input profile "%1" Quá trình tạo hồ sơ phím "%1" thất bại - + Delete Input Profile Xóa Hồ Sơ Phím - + Failed to delete the input profile "%1" Quá trình xóa hồ sơ phím "%1" thất bại - + Load Input Profile Nạp Hồ Sơ Phím - + Failed to load the input profile "%1" Quá trình nạp hồ sơ phím "%1" thất bại - + Save Input Profile Lưu Hồ Sơ Phím - + Failed to save the input profile "%1" Quá trình lưu hồ sơ phím "%1" thất bại @@ -4004,7 +4099,7 @@ Nếu muốn đảo ngược hướng cần điều khiển, di chuyển cần s - + Configure Cài đặt @@ -4040,7 +4135,7 @@ Nếu muốn đảo ngược hướng cần điều khiển, di chuyển cần s - + Test Thử nghiệm @@ -4059,7 +4154,7 @@ Nếu muốn đảo ngược hướng cần điều khiển, di chuyển cần s <a href='https://yuzu-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> - + %1:%2 %1:%2 @@ -4068,77 +4163,77 @@ Nếu muốn đảo ngược hướng cần điều khiển, di chuyển cần s yuzu - + <a href='https://eden-emulator.github.io/wiki/using-a-controller-or-android-phone-for-motion-or-touch-input'><span style="text-decoration: underline; color:#039be5;">Learn More</span></a> - + Port number has invalid characters Cổng có kí tự không hợp lệ - - - - - - - eden + + + + + + + Eden - + Port has to be in range 0 and 65353 Cổng phải từ 0 đến 65353 - + IP address is not valid Địa chỉ IP không hợp lệ - + This UDP server already exists Server UDP đã tồn tại - + Unable to add more than 8 servers Không thể vượt quá 8 server - + Testing Thử nghiệm - + Configuring Cài đặt - + Test Successful Thử Nghiệm Thành Công - + Successfully received data from the server. Nhận được dữ liệu từ server! - + Test Failed Thử Nghiệm 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 được dữ liệu hợp lệ từ server. <br>Hãy chắc chắn server được thiết lập chính xác, từ địa chỉ lẫn cổng phải được thiết lập đúng. - + UDP Test or calibration configuration is in progress.<br>Please wait for them to finish. Cấu hình kiểm tra hoặc hiệu chuẩn UDP đang được tiến hành.<br>Vui lòng chờ cho đến khi nó hoàn thành. @@ -4265,7 +4360,12 @@ Các giá trị hiện tại lần lượt là %1% và %2%. Giao diện mạng - + + Enable Airplane Mode + + + + None Trống @@ -4323,52 +4423,52 @@ Các giá trị hiện tại lần lượt là %1% và %2%. Một số cài đặt chỉ khả dụng khi game không chạy. - + Add-Ons Bổ Sung - + System Hệ Thống - + CPU CPU - + Graphics Đồ Họa - + Adv. Graphics Đồ Họa Nâng Cao - + GPU Extensions - + Audio Âm Thanh - + Input Profiles Hồ sơ đầu vào - + Linux - + Properties Thuộc tính @@ -4386,12 +4486,12 @@ Các giá trị hiện tại lần lượt là %1% và %2%. Bổ Sung - + Patch Name Tên bản vá - + Version Phiên Bản @@ -4429,27 +4529,32 @@ Các giá trị hiện tại lần lượt là %1% và %2%. Đặt Hình Ảnh - + + Select Avatar + + + + Add Thêm - + Rename Đổi Tên - + Remove Gỡ Bỏ - + Profile management is available only when game is not running. Chỉ có thể quản lí hồ sơ khi game không chạy. - + %1 %2 %1 is the profile username, %2 is the formatted UUID (e.g. 00112233-4455-6677-8899-AABBCCDDEEFF)) @@ -4457,100 +4562,189 @@ Các giá trị hiện tại lần lượt là %1% và %2%. %2 - + Enter Username Điền Tên - + Users Người Dùng - + Enter a username for the new user: Chọn tên cho người dùng mới - + Enter a new username: Chọn một tên mới: - + + Error saving user image + + + + + Unable to save image to file + + + + Select User Image Chọn Ảnh cho Người Dùng - - JPEG Images (*.jpg *.jpeg) - Ảnh JPEG (*.jpg *.jpeg) + + Image Formats (*.jpg *.jpeg *.png *.bmp) + - + + No firmware available + + + + + Please install the firmware to use firmware avatars. + + + + + + Error loading archive + + + + + Archive is not available. Please install/reinstall firmware. + + + + + Archive does not contain romfs. It is probably corrupt. + + + + + Error extracting archive + + + + + Archive could not be extracted. It is probably corrupt. + + + + + Error finding image directory + + + + + Failed to find image directory in the archive. + + + + + No images found + + + + + No avatar images were found in the archive. + + + + JPEG Images (*.jpg *.jpeg) + Ảnh JPEG (*.jpg *.jpeg) + + + Error deleting image Lỗi khi xóa ảnh - + Error occurred attempting to overwrite previous image at: %1. Có lỗi khi ghi đè ảnh trước tại: %1. - + Error deleting file Lỗi xóa ảnh - + Unable to delete existing file: %1. Không thể xóa ảnh hiện tại: %1. - + Error creating user image directory Lỗi khi tạo thư mục chứa ảnh người dùng - + Unable to create directory %1 for storing user images. Không thể tạo thư mục %1 để chứa ảnh người dùng - Error copying user image - Lỗi chép ảnh người dùng + Lỗi chép ảnh người dùng - Unable to copy image from %1 to %2 - Không thể chép ảnh từ %1 sang %2 + Không thể chép ảnh từ %1 sang %2 - Error resizing user image - Lỗi thu phóng ảnh + Lỗi thu phóng ảnh - Unable to resize image - Không thể thu phóng ảnh + Không thể thu phóng ảnh + + + + ConfigureProfileManagerAvatarDialog + + + Select + + + + + Cancel + + + + + Background Color + + + + + Select Firmware Avatar + ConfigureProfileManagerDeleteDialog - + Delete this user? All of the user's save data will be deleted. Xoá người dùng này? Tất cả dữ liệu save của người dùng này sẽ bị xoá. - + Confirm Delete Xác nhận xóa - + Name: %1 UUID: %2 Tên: %1 @@ -4603,7 +4797,7 @@ UUID: %2 - + Enable Bật @@ -4614,7 +4808,7 @@ UUID: %2 - + Not connected Không kết nối @@ -4624,63 +4818,63 @@ UUID: %2 Khôi phục về mặc định - + Clear Bỏ trống - + [not set] [không đặt] - + Invert axis Đảo ngược trục - - + + Deadzone: %1% Vùng chết: %1% - + Error enabling ring input Lỗi khi bật đầu vào từ vòng - + Direct Joycon driver is not enabled Driver JoyCon trực tiếp chưa được bật - + Configuring Cài đặt - + The current mapped device doesn't support the ring controller Thiết bị đươc ánh xạ hiện tại không hỗ trợ vòng điều khiển - + The current mapped device doesn't have a ring attached Thiết bị được ánh xạ hiện tại không có vòng được gắn vào - + The current mapped device is not connected Thiết bị được ánh xạ hiện tại không được kết nối - + Unexpected driver result %1 Kết quả driver không như mong đợi %1 - + [waiting] [Chờ] @@ -4722,7 +4916,7 @@ UUID: %2 - <html><head/><body><p>Reads controller input from scripts in the same format as TAS-nx scripts.<br/>For a more detailed explanation, please consult the <a href="https://eden-emulator.github.io/help/feature/tas/"><span style=" text-decoration: underline; color:#039be5;">help page</span></a> on the eden website.</p></body></html> + <html><head/><body><p>Reads controller input from scripts in the same format as TAS-nx scripts.<br/>For a more detailed explanation, please consult the <a href="https://eden-emulator.github.io/help/feature/tas/"><span style=" text-decoration: underline; color:#039be5;">help page</span></a> on the Eden website.</p></body></html> @@ -4774,12 +4968,12 @@ UUID: %2 ConfigureTasDialog - + TAS Configuration Cấu hình TAS - + Select TAS Load Directory... Chọn thư mục tải TAS @@ -4889,7 +5083,7 @@ Kéo điểm để thay đổi vị trí, hoặc nhấp đúp chuột vào ô tr - Warning: The settings in this page affect the inner workings of eden's emulated touchscreen. Changing them may result in undesirable behavior, such as the touchscreen partially or not working. You should only use this page if you know what you are doing. + Warning: The settings in this page affect the inner workings of Eden's emulated touchscreen. Changing them may result in undesirable behavior, such as the touchscreen partially or not working. You should only use this page if you know what you are doing. @@ -5209,6 +5403,16 @@ Kéo điểm để thay đổi vị trí, hoặc nhấp đúp chuột vào ô tr Web Web + + + Eden Web Service + + + + + Generate + + yuzu Web Service Dịch vụ Web yuzu @@ -5218,42 +5422,29 @@ Kéo điểm để thay đổi vị trí, hoặc nhấp đúp chuột vào ô tr Bằng cách cung cấp tên đăng nhập và mã thông báo của bạn, bạn đã chấp thuận sẽ cho phép yuzu thu thập dữ liệu đã sử dụng, trong đó có thể có thông tin nhận dạng người dùng. - - eden Web Service - - - - - By providing your username and token, you agree to allow eden to collect additional usage data, which may include user identifying information. - - - - Verify - Xác nhận + Xác nhận - Sign up - Đăng ký + Đăng ký - + Token: Mã thông báo: - + Username: Tên người dùng: - What is my token? - Mã thông báo của tôi là gì? + Mã thông báo của tôi là gì? - + Web Service configuration can only be changed when a public room isn't being hosted. Cấu hình dịch vụ web chỉ có thể thay đổi khi không có phòng công khai đang được tổ chức. @@ -5278,12 +5469,12 @@ Kéo điểm để thay đổi vị trí, hoặc nhấp đúp chuột vào ô tr Tạo mới - + Discord Presence Hiện diện trên Discord - + Show Current Game in your Discord Status Hiển thị trò chơi hiện tại lên thông tin Discord của bạn @@ -5292,24 +5483,8 @@ Kéo điểm để thay đổi vị trí, hoặc nhấp đúp chuột vào ô tr <a href='https://yuzu-emu.org/help/feature/telemetry/'><span style="text-decoration: underline; color:#039be5;">Tìm hiểu thêm</span></a> - <a href='https://profile.yuzu-emu.org/'><span style="text-decoration: underline; color:#039be5;">Sign up</span></a> - <a href='https://profile.yuzu-emu.org/'><span style="text-decoration: underline; color:#039be5;">Đăng ký</span></a> - - - - <a href='https://evilperson1337.notion.site/Hosting-a-Room-Inside-of-Eden-20457c2edaf680108abac6215a79acdb'><span style="text-decoration: underline; color:#039be5;">What is my token?</span></a> - - - - - Warning - - - - - Verification is currently nonfunctional, instead generate a random 48-character string with only lowercase a-z. - + <a href='https://profile.yuzu-emu.org/'><span style="text-decoration: underline; color:#039be5;">Đăng ký</span></a> <a href='https://yuzu-emu.org/wiki/yuzu-web-service/'><span style="text-decoration: underline; color:#039be5;">What is my token?</span></a> @@ -5332,10 +5507,9 @@ Kéo điểm để thay đổi vị trí, hoặc nhấp đúp chuột vào ô tr Token không được xác thực. Thay đổi token của bạn chưa được lưu. - Unverified, please click Verify before saving configuration Tooltip - Chưa xác minh, vui lòng nhấp vào Xác minh trước khi lưu cấu hình + Chưa xác minh, vui lòng nhấp vào Xác minh trước khi lưu cấu hình Verifying... @@ -5359,20 +5533,67 @@ Kéo điểm để thay đổi vị trí, hoặc nhấp đúp chuột vào ô tr Verification failed. Check that you have entered your token correctly, and that your internet connection is working. Xác thực không thành công. Hãy kiểm tra xem bạn đã nhập token đúng chưa và kết nối internet của bạn có hoạt động hay không. + + + + All Good + Tooltip + + + + + Must be between 4-20 characters + Tooltip + + + + + Must be 48 characters, and lowercase a-z + Tooltip + + ControllerDialog - + Controller P1 Tay cầm P1 - + &Controller P1 &Tay cầm P1 + + DepsDialog + + + Eden Dependencies + + + + + <html><head/><body><p><span style=" font-size:28pt;">Eden Dependencies</span></p></body></html> + + + + + <html><head/><body><p>The projects that make Eden possible</p></body></html> + + + + + Dependency + + + + + Version + Phiên Bản + + DirectConnect @@ -5478,7 +5699,12 @@ Kéo điểm để thay đổi vị trí, hoặc nhấp đúp chuột vào ô tr - Creating a room failed. Please retry. Restarting eden might be necessary. + Creating a room failed. Please retry. Restarting Eden might be necessary. + + + + + Version mismatch! Please update to the latest version of Eden. If the problem persists, contact the room host and ask them to update the server. @@ -5486,11 +5712,6 @@ Kéo điểm để thay đổi vị trí, hoặc nhấp đúp chuột vào ô tr The host of the room has banned you. Speak with the host to unban you or try a different room. Chủ phòng đã ban bạn. Hãy nói chuyện với người chủ phòng để được unban, hoặc thử vào một phòng khác. - - - Version mismatch! Please update to the latest version of eden. If the problem persists, contact the room host and ask them to update the server. - - Incorrect password. @@ -5551,7 +5772,7 @@ Please go to Configure -> System -> Network and make a selection. Viễn trắc - + Broken Vulkan Installation Detected Phát hiện cài đặt Vulkan bị hỏng @@ -5560,106 +5781,105 @@ Please go to Configure -> System -> Network and make a selection. Khởi tạo Vulkan thất bại trong quá trình khởi động.<br>Nhấn <br><a href='https://yuzu-emu.org/wiki/faq/#yuzu-starts-with-the-error-broken-vulkan-installation-detected'>vào đây để xem hướng dẫn khắc phục vấn đề</a>. - + Running a game TRANSLATORS: This string is shown to the user to explain why yuzu needs to prevent the computer from sleeping Đang chạy một game - + Loading Web Applet... Đang tải applet web... - - + + Disable Web Applet Tắt applet web - + Disabling the web applet can lead to undefined behavior and should only be used with Super Mario 3D All-Stars. Are you sure you want to disable the web applet? (This can be re-enabled in the Debug settings.) Tắt applet web có thể dẫn đến hành vi không xác định và chỉ nên được sử dụng với Super Mario 3D All-Stars. Bạn có chắc chắn muốn tắt applet web không? (Có thể được bật lại trong cài đặt Gỡ lỗi.) - + The amount of shaders currently being built Số lượng shader đang được dựng - + The current selected resolution scaling multiplier. Bội số tỷ lệ độ phân giải được chọn hiện tại. - + Current emulation speed. Values higher or lower than 100% indicate emulation is running faster or slower than a Switch. Tốc độ giả lập hiện tại. Giá trị cao hơn hoặc thấp hơn 100% chỉ ra giả lập sẽ chạy nhanh hơn hoặc chậm hơn trên máy Switch - + How many frames per second the game is currently displaying. This will vary from game to game and scene to scene. Có bao nhiêu khung hình trên mỗi giây mà trò chơi đang hiển thị. Điều này sẽ thay đổi từ trò chơi này đến trò chơi kia và khung cảnh này đến khung cảnh kia. - + Time taken to emulate a Switch frame, not counting framelimiting or v-sync. For full-speed emulation this should be at most 16.67 ms. Thời gian mà giả lập lấy từ khung hình Switch, sẽ không kể đến giới hạn khung hình hoặc v-sync. Đối với tốc độ tối đa mà giả lập nhận được nhiều nhất là ở độ khoảng 16.67 ms. - + Unmute Bật tiếng - + Mute Tắt tiếng - + Reset Volume Đặt lại âm lượng - + &Clear Recent Files &Xoá tập tin gần đây - + &Continue &Tiếp tục - + &Pause &Tạm dừng - Warning Outdated Game Format - Chú ý định dạng trò chơi đã lỗi thời + Chú ý định dạng trò chơi đã lỗi thời You are using the deconstructed ROM directory format for this game, which is an outdated format that has been superseded by others such as NCA, NAX, XCI, or NSP. Deconstructed ROM directories lack icons, metadata, and update support.<br><br>For an explanation of the various Switch formats yuzu supports, <a href='https://yuzu-emu.org/wiki/overview-of-switch-game-formats'>check out our wiki</a>. This message will not be shown again. Bạn đang sử dụng định dạng danh mục ROM giải mã cho trò chơi này, và đó là một định dạng lỗi thời đã được thay thế bởi những thứ khác như NCA, NAX, XCI, hoặc NSP. Danh mục ROM giải mã có thể thiếu biểu tượng, metadata, và hỗ trợ cập nhật.<br><br>Để giải thích về các định dạng khác nhau của Switch mà yuzu hỗ trợ, <a href='https://yuzu-emu.org/wiki/overview-of-switch-game-formats'>vui lòng kiểm tra trên wiki của chúng tôi</a>. Thông báo này sẽ không hiển thị lại lần sau. - - + + Error while loading ROM! Xảy ra lỗi khi đang nạp ROM! - + The ROM format is not supported. Định dạng ROM này không hỗ trợ. - + An error occurred initializing the video core. Đã xảy ra lỗi khi khởi tạo lõi video. @@ -5668,7 +5888,7 @@ Please go to Configure -> System -> Network and make a selection. yuzu đã gặp lỗi khi chạy lõi video. Điều này thường xảy ra do phiên bản driver GPU đã cũ, bao gồm cả driver tích hợp. Vui lòng xem nhật ký để biết thêm chi tiết. Để biết thêm thông tin về cách truy cập nhật ký, vui lòng xem trang sau: <a href='https://yuzu-emu.org/help/reference/log-files/'>Cách tải lên tập tin nhật ký</a>. - + Error while loading ROM! %1 %1 signifies a numeric error code. Lỗi xảy ra khi nạp ROM! %1 @@ -5679,1027 +5899,913 @@ Please go to Configure -> System -> Network and make a selection. %1<br>Vui lòng tuân theo <a href='https://yuzu-emu.org/help/quickstart/'>hướng dẫn nhanh của yuzu</a> để trích xuất lại các tệp của bạn.<br>Bạn có thể tham khảo yuzu wiki</a> hoặc yuzu Discord</a>để được hỗ trợ. - + Vulkan initialization failed during boot.<br><br>Click <a href='https://eden-emulator.github.io/wiki/faq/#yuzu-starts-with-the-error-broken-vulkan-installation-detected'>here for instructions to fix the issue</a>. - - Game Updates Warning - - - - - The game you are trying to launch is known to have performance or booting issues when updates are applied. Please try increasing the memory layout to 6GB or 8GB if any issues occur.<br><br>Press "OK" to continue launching, or "Cancel" to cancel the launch. - - - - - Don't show again for this game - - - - - You are using the deconstructed ROM directory format for this game, which is an outdated format that has been superseded by others such as NCA, NAX, XCI, or NSP. Deconstructed ROM directories lack icons, metadata, and update support.<br><br>For an explanation of the various Switch formats eden supports, <a href='https://eden-emulator.github.io/wiki/overview-of-switch-game-formats'>check out our wiki</a>. This message will not be shown again. - - - - - eden has encountered an error while running the video core. This is usually caused by outdated GPU drivers, including integrated ones. Please see the log for more details. For more information on accessing the log, please see the following page: <a href='https://eden-emulator.github.io/help/reference/log-files/'>How to Upload the Log File</a>. - - - - - %1<br>Please redump your files or ask on Discord for help. - %1 signifies an error string. - - - - + An unknown error occurred. Please see the log for more details. Đã xảy ra lỗi không xác định. Vui lòng kiểm tra sổ ghi chép để biết thêm chi tiết. - + (64-bit) (64-bit) - + (32-bit) (32-bit) - + %1 %2 %1 is the title name. %2 indicates if the title is 64-bit or 32-bit %1 %2 - + Closing software... Đang đóng phần mềm... - + Save Data Dữ liệu save - + Mod Data Dữ liệu mod - + Error Opening %1 Folder Xảy ra lỗi khi mở %1 thư mục - - + + Folder does not exist! Thư mục này không tồn tại! - Error Opening Transferable Shader Cache - Lỗi khi mở bộ nhớ cache shader có thể chuyển. + Lỗi khi mở bộ nhớ cache shader có thể chuyển. - Failed to create the shader cache directory for this title. - Thất bại khi tạo thư mục bộ nhớ cache shader cho title này. + Thất bại khi tạo thư mục bộ nhớ cache shader cho title này. - Error Removing Contents - Lỗi khi loại bỏ nội dung + Lỗi khi loại bỏ nội dung - Error Removing Update - Lỗi khi loại bỏ cập nhật + Lỗi khi loại bỏ cập nhật - Error Removing DLC - Lỗi khi loại bỏ DLC + Lỗi khi loại bỏ DLC - + Remove Installed Game Contents? Loại bỏ nội dung game đã cài đặt? - + Remove Installed Game Update? Loại bỏ bản cập nhật game đã cài đặt? - + Remove Installed Game DLC? Loại bỏ DLC game đã cài đặt? - + Remove Entry Xoá mục - - - - - - Successfully Removed - Loại bỏ thành công + Loại bỏ thành công - Successfully removed the installed base game. - Loại bỏ thành công base game đã cài đặt + Loại bỏ thành công base game đã cài đặt - The base game is not installed in the NAND and cannot be removed. - Base game không được cài đặt trong NAND và không thể loại bỏ. + Base game không được cài đặt trong NAND và không thể loại bỏ. - Successfully removed the installed update. - Loại bỏ thành công bản cập nhật đã cài đặt + Loại bỏ thành công bản cập nhật đã cài đặt - There is no update installed for this title. - Không có bản cập nhật nào được cài đặt cho title này. + Không có bản cập nhật nào được cài đặt cho title này. - There are no DLC installed for this title. - Không có DLC nào được cài đặt cho title này. + Không có DLC nào được cài đặt cho title này. - Successfully removed %1 installed DLC. - Loại bỏ thành công %1 DLC đã cài đặt + Loại bỏ thành công %1 DLC đã cài đặt - + Delete OpenGL Transferable Shader Cache? Xoá bộ nhớ cache shader OpenGL chuyển được? - + Delete Vulkan Transferable Shader Cache? Xoá bộ nhớ cache shader Vulkan chuyển được? - + Delete All Transferable Shader Caches? Xoá tất cả bộ nhớ cache shader chuyển được? - + Remove Custom Game Configuration? Loại bỏ cấu hình game tuỳ chỉnh? - + Remove Cache Storage? Xoá bộ nhớ cache? - + Remove File Xoá tập tin - + Remove Play Time Data - + Reset play time? - - Error Removing Transferable Shader Cache - Lỗi khi xoá bộ nhớ cache shader chuyển được + Lỗi khi xoá bộ nhớ cache shader chuyển được - - A shader cache for this title does not exist. - Bộ nhớ cache shader cho title này không tồn tại. + Bộ nhớ cache shader cho title này không tồn tại. - Successfully removed the transferable shader cache. - Thành công loại bỏ bộ nhớ cache shader chuyển được + Thành công loại bỏ bộ nhớ cache shader chuyển được - Failed to remove the transferable shader cache. - Thất bại khi xoá bộ nhớ cache shader chuyển được. + Thất bại khi xoá bộ nhớ cache shader chuyển được. - Error Removing Vulkan Driver Pipeline Cache - Lỗi khi xoá bộ nhớ cache pipeline Vulkan + Lỗi khi xoá bộ nhớ cache pipeline Vulkan - Failed to remove the driver pipeline cache. - Thất bại khi xoá bộ nhớ cache pipeline của driver. + Thất bại khi xoá bộ nhớ cache pipeline của driver. - - Error Removing Transferable Shader Caches - Lỗi khi loại bỏ bộ nhớ cache shader chuyển được + Lỗi khi loại bỏ bộ nhớ cache shader chuyển được - Successfully removed the transferable shader caches. - Thành công loại bỏ tât cả bộ nhớ cache shader chuyển được. + Thành công loại bỏ tât cả bộ nhớ cache shader chuyển được. - Failed to remove the transferable shader cache directory. - Thất bại khi loại bỏ thư mục bộ nhớ cache shader. + Thất bại khi loại bỏ thư mục bộ nhớ cache shader. - - Error Removing Custom Configuration - Lỗi khi loại bỏ cấu hình tuỳ chỉnh + Lỗi khi loại bỏ cấu hình tuỳ chỉnh - A custom configuration for this title does not exist. - Cấu hình tuỳ chỉnh cho title này không tồn tại. + Cấu hình tuỳ chỉnh cho title này không tồn tại. - Successfully removed the custom game configuration. - Loại bỏ thành công cấu hình game tuỳ chỉnh. + Loại bỏ thành công cấu hình game tuỳ chỉnh. - Failed to remove the custom game configuration. - Thất bại khi xoá cấu hình game tuỳ chỉnh + Thất bại khi xoá cấu hình game tuỳ chỉnh - - + + RomFS Extraction Failed! Khai thác RomFS không thành công! - + There was an error copying the RomFS files or the user cancelled the operation. Đã xảy ra lỗi khi sao chép tệp tin RomFS hoặc người dùng đã hủy bỏ hoạt động này. - + Full Đầy - + Skeleton Sườn - + Select RomFS Dump Mode Chọn chế độ kết xuất RomFS - + Please select the how you would like the RomFS dumped.<br>Full will copy all of the files into the new directory while <br>skeleton will only create the directory structure. Vui lòng chọn RomFS mà bạn muốn kết xuất như thế nào.<br>Đầy đủ sẽ sao chép toàn bộ tệp tin vào một danh mục mới trong khi <br>bộ xương chỉ tạo kết cấu danh mục. - + There is not enough free space at %1 to extract the RomFS. Please free up space or select a different dump directory at Emulation > Configure > System > Filesystem > Dump Root Không đủ bộ nhớ trống tại %1 để trích xuất RomFS. Hãy giải phóng bộ nhớ hoặc chọn một thư mục trích xuất khác tại Giả lập > Thiết lập > Hệ thống > Hệ thống tệp > Thư mục trích xuất gốc - + Extracting RomFS... Khai thác RomFS... - - - - - + + Cancel Hủy bỏ - + RomFS Extraction Succeeded! Khai thác RomFS thành công! - - - + The operation completed successfully. Các hoạt động đã hoàn tất thành công. - Integrity verification couldn't be performed! - Không thể thực hiện kiểm tra tính toàn vẹn! + Không thể thực hiện kiểm tra tính toàn vẹn! - File contents were not checked for validity. - Chưa kiểm tra sự hợp lệ của nội dung tập tin. + Chưa kiểm tra sự hợp lệ của nội dung tập tin. - - Verifying integrity... - Đang kiểm tra tính toàn vẹn... + Đang kiểm tra tính toàn vẹn... - - Integrity verification succeeded! - Kiểm tra tính toàn vẹn thành công! + Kiểm tra tính toàn vẹn thành công! - - Integrity verification failed! - Kiểm tra tính toàn vẹn thất bại! + Kiểm tra tính toàn vẹn thất bại! - File contents may be corrupt. - Nội dung tập tin có thể bị hỏng. + Nội dung tập tin có thể bị hỏng. - - - - Create Shortcut - Tạo lối tắt + Tạo lối tắt - - Do you want to launch the game in fullscreen? - - - - Successfully created a shortcut to %1 - Thành công tạo lối tắt tại %1 + Thành công tạo lối tắt tại %1 - This will create a shortcut to the current AppImage. This may not work well if you update. Continue? - Việc này sẽ tạo một lối tắt tới AppImage hiện tại. Điều này có thể không hoạt động tốt nếu bạn cập nhật. Tiếp tục? + Việc này sẽ tạo một lối tắt tới AppImage hiện tại. Điều này có thể không hoạt động tốt nếu bạn cập nhật. Tiếp tục? - - Failed to create a shortcut to %1 + Create Icon + Tạo icon + + + Cannot create icon file. Path "%1" does not exist and cannot be created. + Không thể tạo tập tin icon. Đường dẫn "%1" không tồn tại và không thể tạo. + + + + Warning: Outdated Game Format - - Create Icon - Tạo icon + + You are using the deconstructed ROM directory format for this game, which is an outdated format that has been superseded by others such as NCA, NAX, XCI, or NSP. Deconstructed ROM directories lack icons, metadata, and update support.<br><br>For an explanation of the various Switch formats Eden supports, <a href='https://eden-emulator.github.io/wiki/overview-of-switch-game-formats'>check out our wiki</a>. This message will not be shown again. + - - Cannot create icon file. Path "%1" does not exist and cannot be created. - Không thể tạo tập tin icon. Đường dẫn "%1" không tồn tại và không thể tạo. + + Eden has encountered an error while running the video core. This is usually caused by outdated GPU drivers, including integrated ones. Please see the log for more details. For more information on accessing the log, please see the following page: <a href='https://yuzu-mirror.github.io/help/reference/log-files/'>How to Upload the Log File</a>. + - + + %1<br>Please redump your files or ask on Discord/Revolt for help. + %1 signifies an error string. + + + + Error Opening %1 Lỗi khi mở %1 - + Select Directory Chọn danh mục - + Properties Thuộc tính - + The game properties could not be loaded. Thuộc tính của trò chơi không thể nạp được. - + Switch Executable (%1);;All Files (*.*) %1 is an identifier for the Switch executable file extensions. Thực thi Switch (%1);;Tất cả tệp tin (*.*) - + Load File Nạp tệp tin - + Open Extracted ROM Directory Mở danh mục ROM đã trích xuất - + Invalid Directory Selected Danh mục đã chọn không hợp lệ - + The directory you have selected does not contain a 'main' file. Danh mục mà bạn đã chọn không có chứa tệp tin 'main'. - + Installable Switch File (*.nca *.nsp *.xci);;Nintendo Content Archive (*.nca);;Nintendo Submission Package (*.nsp);;NX Cartridge Image (*.xci) Những tệp tin Switch cài được (*.nca *.nsp *.xci);;Nintendo Content Archive (*.nca);;Nintendo Submission Package (*.nsp);;NX Cartridge Image (*.xci) - + Install Files Cài đặt tập tin - + %n file(s) remaining %n tập tin còn lại + %n tập tin còn lại - + Installing file "%1"... Đang cài đặt tệp tin "%1"... - - + + Install Results Kết quả cài đặt - + To avoid possible conflicts, we discourage users from installing base games to the NAND. Please, only use this feature to install updates and DLC. Để tránh xung đột có thể xảy ra, chúng tôi không khuyến khích người dùng cài base games vào NAND. Vui lòng, chỉ sử dụng tính năng này để cài các bản cập nhật và DLC. - + %n file(s) were newly installed - %n đã được cài đặt mới - + %n đã được cài đặt mới + %n đã được cài đặt mới - + %n file(s) were overwritten - %n tập tin đã được ghi đè - + %n tập tin đã được ghi đè + %n tập tin đã được ghi đè - + %n file(s) failed to install - %n tập tin thất bại khi cài đặt - + %n tập tin thất bại khi cài đặt + %n tập tin thất bại khi cài đặt - + System Application Ứng dụng hệ thống - + System Archive Hệ thống lưu trữ - + System Application Update Cập nhật hệ thống ứng dụng - + Firmware Package (Type A) Gói phần mềm (Loại A) - + Firmware Package (Type B) Gói phần mềm (Loại B) - + Game Trò chơi - + Game Update Cập nhật trò chơi - + Game DLC Nội dung trò chơi có thể tải xuống - + Delta Title Tiêu đề Delta - + Select NCA Install Type... Chọn loại NCA để cài đặt... - + Please select the type of title you would like to install this NCA as: (In most instances, the default 'Game' is fine.) Vui lòng chọn loại tiêu đề mà bạn muốn cài đặt NCA này: (Trong hầu hết trường hợp, chọn mặc định 'Game' là tốt nhất.) - + Failed to Install Cài đặt đã không thành công - + The title type you selected for the NCA is invalid. Loại tiêu đề NCA mà bạn chọn nó không hợp lệ. - + File not found Không tìm thấy tệp tin - + File "%1" not found Không tìm thấy "%1" tệp tin - + OK OK - - + + Hardware requirements not met Yêu cầu phần cứng không được đáp ứng - - + + Your system does not meet the recommended hardware requirements. Compatibility reporting has been disabled. Hệ thống của bạn không đáp ứng yêu cầu phần cứng được đề xuất. Báo cáo tương thích đã được tắt. - + Missing yuzu Account Thiếu tài khoản yuzu - - In order to submit a game compatibility test case, you must link your eden account.<br><br/>To link your eden account, go to Emulation &gt; Configuration &gt; Web. + + In order to submit a game compatibility test case, you must set up your web token and username.<br><br/>To link your eden account, go to Emulation &gt; Configuration &gt; Web. - - Install decryption keys and restart eden before attempting to install firmware. + + Select Dumped Firmware ZIP - - Firmware installation cancelled, firmware may be in bad state, restart eden or re-install firmware. + + Zipped Archives (*.zip) - - Encryption keys are missing. + + Firmware cleanup failed - - Are you sure you want to close eden? + + Failed to clean up extracted firmware cache. +Check write permissions in the system temp directory and try again. +OS reported error: %1 - - - - eden + + Please install firmware to use the Album applet. - - The currently running application has requested eden to not exit. + + Please install firmware to use the Cabinet applet. + + + + + Please install firmware to use the Mii editor. + + + + + Please install firmware to use the Controller Menu. + + + + + Please install firmware to use the Home Menu. + + + + + Firmware Corrupted + + + + + Firmware Too New + + + + + +Continue anyways? + + + + + Don't show again + + + + + Please install firmware to use Starter. + + + + + Are you sure you want to close Eden? + + + + + + + Eden + + + + + The currently running application has requested Eden to not exit. Would you like to bypass this and exit anyway? + + + Encryption keys are missing. + + In order to submit a game compatibility test case, you must link your yuzu account.<br><br/>To link your yuzu account, go to Emulation &gt; Configuration &gt; Web. Để gửi trường hợp thử nghiệm trò chơi tương thích, bạn phải liên kết tài khoản yuzu.<br><br/>Để liên kết tải khoản yuzu của bạn, hãy đến Giả lập &gt; Thiết lập &gt; Web. - + Error opening URL Lỗi khi mở URL - + Unable to open the URL "%1". Không thể mở URL "%1". - + TAS Recording Ghi lại TAS - + Overwrite file of player 1? Ghi đè tập tin của người chơi 1? - + Invalid config detected Đã phát hiện cấu hình không hợp lệ - + Handheld controller can't be used on docked mode. Pro controller will be selected. Tay cầm handheld không thể được sử dụng trong chế độ docked. Pro Controller sẽ được chọn. - - + + Amiibo Amiibo - - + + The current amiibo has been removed Amiibo hiện tại đã bị loại bỏ - + Error Lỗi - - + + The current game is not looking for amiibos Game hiện tại không tìm kiếm amiibos - + Amiibo File (%1);; All Files (*.*) Tệp tin Amiibo (%1);; Tất cả tệp tin (*.*) - + Load Amiibo Nạp dữ liệu Amiibo - + Error loading Amiibo data Xảy ra lỗi khi nạp dữ liệu Amiibo - + The selected file is not a valid amiibo Tập tin đã chọn không phải là amiibo hợp lệ - + The selected file is already on use Tập tin đã chọn đã được sử dụng - + An unknown error occurred Đã xảy ra lỗi không xác định - - Verification failed for the following files: %1 - Kiểm tra những tập tin sau thất bại: + Kiểm tra những tập tin sau thất bại: %1 - + + Keys not installed - + + + Install decryption keys and restart Eden before attempting to install firmware. + + + + Select Dumped Firmware Source Location - - Installing Firmware... - - - - - - - - Firmware install failed - - - - - Unable to locate potential firmware NCA files - - - - - Failed to delete one or more firmware file. - - - - - One or more firmware files failed to copy into NAND. - - - - - Firmware integrity verification failed! - - - - - Select Dumped Keys Location - - - - - - - Decryption Keys install failed - - - - - prod.keys is a required decryption key file. - - - - - One or more keys failed to copy. - - - - - Decryption Keys install succeeded - - - - - Decryption Keys were successfully installed - - - - - Decryption Keys failed to initialize. Check that your dumping tools are up to date and re-dump keys. - - - - - - - - - - + + + + + + No firmware available - - Please install the firmware to use the Album applet. - - - - + Album Applet - + Album applet is not available. Please reinstall firmware. - - Please install the firmware to use the Cabinet applet. - - - - + Cabinet Applet - + Cabinet applet is not available. Please reinstall firmware. - - Please install the firmware to use the Mii editor. - - - - + Mii Edit Applet - + Mii editor is not available. Please reinstall firmware. - - Please install the firmware to use the Controller Menu. - - - - + Controller Applet Applet tay cầm - + Controller Menu is not available. Please reinstall firmware. - - Please install the firmware to use the Home Menu. - - - - - + Home Menu Applet - - + Home Menu is not available. Please reinstall firmware. - - Please install the firmware to use Starter. - - - - + Starter Applet - + Starter is not available. Please reinstall firmware. - - Please install firmware to use the home menu. - - - - + Capture Screenshot Chụp ảnh màn hình - + PNG Image (*.png) Hình ảnh PNG (*.png) - + Update Available - + Update %1 for Eden is available. Would you like to download it? - + TAS state: Running %1/%2 Trạng thái TAS: Đang chạy %1/%2 - + TAS state: Recording %1 Trạng thái TAS: Đang ghi %1 - + TAS state: Idle %1/%2 Trạng thái TAS: Đang chờ %1/%2 - + TAS State: Invalid Trạng thái TAS: Không hợp lệ - + &Stop Running &Dừng chạy - + &Start &Bắt đầu - + Stop R&ecording Dừng G&hi - + R&ecord G&hi - + Building: %n shader(s) Đang dựng: %n shader(s) + Đang dựng: %n shader(s) - + Scale: %1x %1 is the resolution scaling factor Tỉ lệ thu phóng: %1x - + Speed: %1% / %2% Tốc độ: %1% / %2% - + Speed: %1% Tốc độ: %1% @@ -6708,54 +6814,54 @@ Would you like to download it? Game: %1 FPS (Đã mở khoá) - + Game: %1 FPS Trò chơi: %1 FPS - + Frame: %1 ms Khung hình: %1 ms - + %1 %2 %1 %2 - - + + FSR FSR - + NO AA NO AA - + VOLUME: MUTE ÂM LƯỢNG: TẮT TIẾNG - + VOLUME: %1% Volume percentage (e.g. 50%) ÂM LƯỢNG: %1% - + Derivation Components Missing Thiếu các thành phần chuyển hoá - + Select RomFS Dump Target Chọn thư mục để sao chép RomFS - + Please select which RomFS you would like to dump. Vui lòng chọn RomFS mà bạn muốn sao chép. @@ -6768,7 +6874,7 @@ Would you like to download it? yuzu - + Are you sure you want to stop the emulation? Any unsaved progress will be lost. Bạn có chắc rằng muốn dừng giả lập? Bất kì tiến trình nào chưa được lưu sẽ bị mất. @@ -6781,102 +6887,102 @@ Would you like to bypass this and exit anyway? Bạn có muốn bỏ qua yêu cầu đó và thoát luôn không? - + None Trống - + FXAA FXAA - + SMAA SMAA - + Nearest Nearest - + Bilinear Bilinear - + Bicubic Bicubic - + Gaussian ScaleForce - + ScaleForce ScaleForce - + Area - + Docked Chế độ cắm TV - + Handheld Cầm tay - + Normal Trung bình - + High Khỏe - + Extreme Tối đa - + Vulkan Vulkan - + OpenGL OpenGL - + Null Null - + GLSL GLSL - + GLASM GLASM - + SPIRV SPIRV @@ -6884,13 +6990,13 @@ Bạn có muốn bỏ qua yêu cầu đó và thoát luôn không? GRenderWindow - - + + OpenGL not available! Không có sẵn OpenGL! - + OpenGL shared contexts are not supported. Các ngữ cảnh OpenGL chung không được hỗ trợ. @@ -6899,33 +7005,33 @@ Bạn có muốn bỏ qua yêu cầu đó và thoát luôn không? yuzu không được biên dịch với hỗ trợ OpenGL. - - eden has not been compiled with OpenGL support. + + Eden has not been compiled with OpenGL support. - - + + Error while initializing OpenGL! Đã xảy ra lỗi khi khởi tạo OpenGL! - + Your GPU may not support OpenGL, or you do not have the latest graphics driver. GPU của bạn có thể không hỗ trợ OpenGL, hoặc bạn không có driver đồ hoạ mới nhất. - + Error while initializing OpenGL 4.6! Lỗi khi khởi tạo OpenGL 4.6! - + Your GPU may not support OpenGL 4.6, or you do not have the latest graphics driver.<br><br>GL Renderer:<br>%1 GPU của bạn có thể không hỗ trợ OpenGL 4.6, hoặc bạn không có driver đồ hoạ mới nhất.<br><br>GL Renderer:<br>%1 - + Your GPU may not support one or more required OpenGL extensions. Please ensure you have the latest graphics driver.<br><br>GL Renderer:<br>%1<br><br>Unsupported extensions:<br>%2 GPU của bạn có thể không hỗ trợ một hoặc nhiều tiện ích OpenGL cần thiết. Vui lòng đảm bảo bạn có driver đồ hoạ mới nhất.<br><br>GL Renderer:<br>%1<br><br>Tiện ích không hỗ trợ:<br>%2 @@ -6933,128 +7039,128 @@ Bạn có muốn bỏ qua yêu cầu đó và thoát luôn không? GameList - + Favorite Ưa thích - + Start Game Bắt đầu game - + Start Game without Custom Configuration Bắt đầu game mà không có cấu hình tuỳ chỉnh - + Open Save Data Location Mở vị trí lưu dữ liệu - + Open Mod Data Location Mở vị trí chỉnh sửa dữ liệu - + Open Transferable Pipeline Cache Mở thư mục chứa bộ nhớ cache pipeline - + Remove Gỡ Bỏ - + Remove Installed Update Loại bỏ bản cập nhật đã cài - + Remove All Installed DLC Loại bỏ tất cả DLC đã cài đặt - + Remove Custom Configuration Loại bỏ cấu hình tuỳ chỉnh - + Remove Play Time Data - + Remove Cache Storage Xoá bộ nhớ cache - + Remove OpenGL Pipeline Cache Loại bỏ OpenGL Pipeline Cache - + Remove Vulkan Pipeline Cache Loại bỏ bộ nhớ cache pipeline Vulkan - + Remove All Pipeline Caches Loại bỏ tất cả bộ nhớ cache shader - + Remove All Installed Contents Loại bỏ tất cả nội dung đã cài đặt - + Dump RomFS Kết xuất RomFS - + Dump RomFS to SDMC Trích xuất RomFS tới SDMC - + Verify Integrity Kiểm tra tính toàn vẹn - + Copy Title ID to Clipboard Sao chép ID tiêu đề vào bộ nhớ tạm - + Navigate to GameDB entry Điều hướng đến mục cơ sở dữ liệu trò chơi - + Create Shortcut Tạo lối tắt - + Add to Desktop Thêm vào Desktop - + Add to Applications Menu Thêm vào menu ứng dụng - + Configure Game @@ -7063,62 +7169,62 @@ Bạn có muốn bỏ qua yêu cầu đó và thoát luôn không? Thuộc tính - + Scan Subfolders Quét các thư mục con - + Remove Game Directory Loại bỏ thư mục game - + ▲ Move Up ▲ Di chuyển lên - + ▼ Move Down ▼ Di chuyển xuống - + Open Directory Location Mở vị trí thư mục - + Clear Bỏ trống - + Name Tên - + Compatibility Tương thích - + Add-ons Tiện ích ngoài - + File type Loại tệp tin - + Size Kích cỡ - + Play time @@ -7126,62 +7232,62 @@ Bạn có muốn bỏ qua yêu cầu đó và thoát luôn không? GameListItemCompat - + Ingame Trong game - + Game starts, but crashes or major glitches prevent it from being completed. Game khởi động, nhưng gặp vấn đề hoặc lỗi nghiêm trọng đến việc không thể hoàn thành trò chơi. - + Perfect Tốt nhất - + Game can be played without issues. Game có thể chơi mà không gặp vấn đề. - + Playable Có thể chơi - + Game functions with minor graphical or audio glitches and is playable from start to finish. Game hoạt động với lỗi hình ảnh hoặc âm thanh nhẹ và có thể chơi từ đầu tới cuối. - + Intro/Menu Phần mở đầu/Menu - + Game loads, but is unable to progress past the Start Screen. Trò chơi đã tải, nhưng không thể qua Màn hình Bắt đầu. - + Won't Boot Không hoạt động - + The game crashes when attempting to startup. Trò chơi sẽ thoát đột ngột khi khởi động. - + Not Tested Chưa ai thử - + The game has not yet been tested. Trò chơi này chưa có ai thử cả. @@ -7189,7 +7295,7 @@ Bạn có muốn bỏ qua yêu cầu đó và thoát luôn không? GameListPlaceholder - + Double-click to add a new folder to the game list Nháy đúp chuột để thêm một thư mục mới vào danh sách trò chơi game @@ -7197,19 +7303,20 @@ Bạn có muốn bỏ qua yêu cầu đó và thoát luôn không? GameListSearchField - + %1 of %n result(s) %1 trong %n kết quả + %1 trong %n kết quả - + Filter: Bộ lọc: - + Enter pattern to filter Nhập khuôn để lọc @@ -7291,7 +7398,7 @@ Bạn có muốn bỏ qua yêu cầu đó và thoát luôn không? - Failed to announce the room to the public lobby. In order to host a room publicly, you must have a valid eden account configured in Emulation -> Configure -> Web. If you do not want to publish a room in the public lobby, then select Unlisted instead. + Failed to announce the room to the public lobby. In order to host a room publicly, you must have a valid Eden 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: @@ -7305,190 +7412,190 @@ Tin nhắn gỡ lỗi: Hotkeys - + Audio Mute/Unmute Tắt/Bật tiếng - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Main Window Cửa sổ chính - + Audio Volume Down Giảm âm lượng - + Audio Volume Up Tăng âm lượng - + Capture Screenshot Chụp ảnh màn hình - + Change Adapting Filter Thay đổi bộ lọc điều chỉnh - + Change Docked Mode Đổi chế độ Docked - + Change GPU Accuracy Thay đổi độ chính xác GPU - + Configure - + Configure Current Game - + Continue/Pause Emulation Tiếp tục/Tạm dừng giả lập - + Exit Fullscreen Thoát chế độ toàn màn hình + + + Exit Eden + + Exit yuzu Thoát yuzu - - Exit eden - - - - + Fullscreen Toàn màn hình - + Load File Nạp tệp tin - + Load/Remove Amiibo Tải/Loại bỏ Amiibo - + Multiplayer Browse Public Game Lobby - + Multiplayer Create Room - + Multiplayer Direct Connect to Room - + Multiplayer Leave Room - + Multiplayer Show Current Room - + Restart Emulation Khởi động lại giả lập - + Stop Emulation Dừng giả lập - + TAS Record Ghi lại TAS - + TAS Reset Đặt lại TAS - + TAS Start/Stop Bắt đầu/Dừng TAS - + Toggle Filter Bar Hiện/Ẩn thanh lọc - + Toggle Framerate Limit Bật/Tắt giới hạn tốc độ khung hình - + Toggle Mouse Panning Bật/Tắt di chuyển chuột - + Toggle Renderdoc Capture - + Toggle Status Bar Hiện/Ẩn thanh trạng thái @@ -7496,22 +7603,22 @@ Tin nhắn gỡ lỗi: InstallDialog - + Please confirm these are the files you wish to install. Xin hãy xác nhận đây là những tệp tin bạn muốn cài. - + Installing an Update or DLC will overwrite the previously installed one. Cài đặt một tệp tin cập nhật hoặc DLC mới sẽ thay thế những tệp cũ đã cài trước đó. - + Install Cài đặt - + Install Files to NAND Cài đặt tập tin vào NAND @@ -7519,7 +7626,7 @@ Tin nhắn gỡ lỗi: LimitableInputDialog - + The text can't contain any of the following characters: %1 Văn bản không được chứa bất kỳ ký tự sau đây: @@ -7666,152 +7773,207 @@ Tin nhắn gỡ lỗi: &Tập tin gần đây - + + Open &Eden Folders + + + + &Emulation &Giả lập - + &View &Xem - + &Reset Window Size &Đặt lại kích thước cửa sổ - + &Debugging &Gỡ lỗi - + Reset Window Size to &720p Đặt lại kích thước cửa sổ về &720p - + Reset Window Size to 720p Đặt lại kích thước cửa sổ về 720p - + Reset Window Size to &900p Đặt lại kích thước cửa sổ về &900p - + Reset Window Size to 900p Đặt lại kích thước cửa sổ về 900p - + Reset Window Size to &1080p Đặt lại kích thước cửa sổ về &1080p - + Reset Window Size to 1080p Đặt lại kích thước cửa sổ về 1080p - + &Multiplayer &Nhiều người chơi - + &Tools &Công cụ - + &Amiibo - + &TAS &TAS - + &Create Home Menu Shortcut - + &Help &Trợ giúp - + &Install Files to NAND... &Cài đặt tập tin vào NAND... - + L&oad File... N&ạp tập tin... - + Load &Folder... Nạp &Thư mục - + E&xit Th&oát - + &Pause &Tạm dừng - + &Stop &Dừng - + &Verify Installed Contents - - &About eden + + &Root Data Folder - - Open &eden Folder + + &NAND Folder - + + &SDMC Folder + + + + + &Mod Folder + + + + + &Log Folder + + + + + From Folder + + + + + From ZIP + + + + + &X + + + + + X (Twitter) + + + + + &Revolt + + + + + Revolt + + + + + &Eden Dependencies + + + + Open Home Menu - + &Discord - + Open &Setup - + &Desktop - + &Application Menu @@ -7820,97 +7982,97 @@ Tin nhắn gỡ lỗi: &Thông tin về yuzu - + Single &Window Mode &Chế độ cửa sổ đơn - + Con&figure... Cấu& hình - + Ctrl+, - + Display D&ock Widget Headers Hiển thị tiêu đề công cụ D&ock - + Show &Filter Bar Hiện thanh &lọc - + Show &Status Bar Hiện thanh &trạng thái - + Show Status Bar Hiển thị thanh trạng thái - + &Browse Public Game Lobby &Duyệt phòng game công khai - + &Create Room &Tạo phòng - + &Leave Room &Rời phòng - + &Direct Connect to Room &Kết nối trực tiếp tới phòng - + &Show Current Room &Hiện phòng hiện tại - + F&ullscreen T&oàn màn hình - + &Restart &Khởi động lại - + Load/Remove &Amiibo... Tải/Loại bỏ &Amiibo - + &Report Compatibility &Báo cáo tương thích - + Open &Mods Page Mở trang &mods - + Open &Quickstart Guide Mở &Hướng dẫn nhanh - + &FAQ &FAQ @@ -7919,77 +8081,82 @@ Tin nhắn gỡ lỗi: Mở thư mục &yuzu - + &Capture Screenshot &Chụp ảnh màn hình - + Open &Album - + &Set Nickname and Owner - + &Delete Game Data - + &Restore Amiibo - + &Format Amiibo - + Open &Mii Editor - + &Configure TAS... &Cấu hình TAS... - + Configure C&urrent Game... Cấu hình game hiện tại... - + &Start &Bắt đầu - + &Reset &Đặt lại - + R&ecord G&hi - + Open &Controller Menu - + Install Firmware - + + &About Eden + + + + Install Decryption Keys @@ -7997,26 +8164,36 @@ Tin nhắn gỡ lỗi: MicroProfileDialog - &MicroProfile - &MicroProfile + &MicroProfile MigrationWorker - + Data was migrated successfully. - + Linking the old directory failed. You may need to re-run with administrative privileges on Windows. OS gave error: %1 - + + + +Note that your configuration and data will be shared with %1. +If this is not desirable, delete the following files: +%2 +%3 +%4 + + + + If you wish to clean up the files which were left in the old data location, you can do so by deleting the following directory: @@ -8076,37 +8253,37 @@ If you wish to clean up the files which were left in the old data location, you MultiplayerState - + Current connection status Tình trạng kết nối hiện tại - + Not Connected. Click here to find a room! Không kết nối. Nhấn vào đây để tìm một phòng! - + Not Connected Không kết nối - + Connected Đã kết nối - + New Messages Received Đã nhận được tin nhắn mới - + Error Lỗi - + Failed to update the room information. Please check your Internet connection and try hosting the room again. Debug Message: Không thể cập nhật thông tin phòng. Vui lòng kiểm tra kết nối Internet của bạn và thử tạo phòng lại. @@ -8297,56 +8474,56 @@ p, li { white-space: pre-wrap; } Hiện không chơi game - + Installed SD Titles Các title đã cài đặt trên thẻ SD - + Installed NAND Titles Các title đã cài đặt trên NAND - + System Titles Titles hệ thống - + Add New Game Directory Thêm thư mục game - + Favorites Ưa thích - - + + Shift Shift - - + + Ctrl Ctrl - - + + Alt Alt - - - - + + + + [not set] [chưa đặt nút] @@ -8357,14 +8534,14 @@ p, li { white-space: pre-wrap; } Mũ %1 %2 - - - - - - - - + + + + + + + + Axis %1%2 Trục %1%2 @@ -8375,357 +8552,357 @@ p, li { white-space: pre-wrap; } Nút %1 - - - - - - + + + + + + [unknown] [không xác định] - - - + + + Left Trái - - - + + + Right Phải - - - + + + Down Xuống - - - + + + Up Lên - - + + Z Z - - + + R R - - + + L L - - + + A A - - + + B B - - + + X X - - + + Y Y - - + + Start Bắt đầu - - + + L1 L1 - - + + L2 L2 - - + + L3 L3 - - + + R1 R1 - - + + R2 R2 - - + + R3 R3 - - + + Circle Tròn - - + + Cross X - - + + Square Hình vuông - - + + Triangle Hình tam giác - - + + Share Chia sẻ - - + + Options Tuỳ chọn - - + + [undefined] [không xác định] - + %1%2 %1%2 - - + + [invalid] [không hợp lệ] - - + + %1%2Hat %3 %1%2Mũ %3 - - - + + + %1%2Axis %3 %1%2Trục %3 - - + + %1%2Axis %3,%4,%5 %1%2Trục %3,%4,%5 - - + + %1%2Motion %3 %1%2Chuyển động %3 - - + + %1%2Button %3 %1%2Nút %3 - - + + [unused] [không sử dụng] - + ZR ZR - + ZL ZL - + SR SR - + SL SL - + Stick L Cần L - + Stick R Cần R - + Plus Cộng - + Minus Trừ - - + + Home Home - + Capture Chụp - + Touch Cảm Ứng - + Wheel Indicates the mouse wheel Con lăn - + Backward Lùi - + Forward Tiến - + Task Nhiệm vụ - + Extra Thêm - + %1%2%3%4 %1%2%3%4 - - + + %1%2%3Hat %4 %1%2%3Mũ %4 - - + + %1%2%3Axis %4 %1%2%3Trục %4 - - + + %1%2%3Button %4 %1%2%3Nút %4 - - + + Migration - + - - + + No - + You can manually re-trigger this prompt by deleting the new config directory: %1 - + Migrating - + Migrating, this may take a while... @@ -8843,6 +9020,300 @@ p, li { white-space: pre-wrap; } Bạn có muốn khôi phục amiibo này không? + + QtCommon::Content + + + Installing Firmware... + + + + + + + Cancel + + + + + Firmware integrity verification failed! + + + + + + Verification failed for the following files: + +%1 + Kiểm tra những tập tin sau thất bại: + +%1 + + + + + Verifying integrity... + Đang kiểm tra tính toàn vẹn... + + + + + Integrity verification succeeded! + Kiểm tra tính toàn vẹn thành công! + + + + + The operation completed successfully. + Các hoạt động đã hoàn tất thành công. + + + + + Integrity verification failed! + Kiểm tra tính toàn vẹn thất bại! + + + + File contents may be corrupt or missing. + + + + + Integrity verification couldn't be performed + + + + + Firmware installation cancelled, firmware may be in a bad state or corrupted. File contents could not be checked for validity. + + + + + Select Dumped Keys Location + + + + + Decryption Keys install succeeded + + + + + Decryption Keys were successfully installed + + + + + Decryption Keys install failed + + + + + QtCommon::Game + + + Error Removing Contents + Lỗi khi loại bỏ nội dung + + + + Error Removing Update + Lỗi khi loại bỏ cập nhật + + + + Error Removing DLC + Lỗi khi loại bỏ DLC + + + + The base game is not installed in the NAND and cannot be removed. + Base game không được cài đặt trong NAND và không thể loại bỏ. + + + + There is no update installed for this title. + Không có bản cập nhật nào được cài đặt cho title này. + + + + There are no DLCs installed for this title. + + + + + + + + Successfully Removed + Loại bỏ thành công + + + + Successfully removed %1 installed DLC. + Loại bỏ thành công %1 DLC đã cài đặt + + + + + Error Removing Transferable Shader Cache + Lỗi khi xoá bộ nhớ cache shader chuyển được + + + + + A shader cache for this title does not exist. + Bộ nhớ cache shader cho title này không tồn tại. + + + + Successfully removed the transferable shader cache. + Thành công loại bỏ bộ nhớ cache shader chuyển được + + + + Failed to remove the transferable shader cache. + Thất bại khi xoá bộ nhớ cache shader chuyển được. + + + + Error Removing Vulkan Driver Pipeline Cache + Lỗi khi xoá bộ nhớ cache pipeline Vulkan + + + + Failed to remove the driver pipeline cache. + Thất bại khi xoá bộ nhớ cache pipeline của driver. + + + + + Error Removing Transferable Shader Caches + Lỗi khi loại bỏ bộ nhớ cache shader chuyển được + + + + Successfully removed the transferable shader caches. + Thành công loại bỏ tât cả bộ nhớ cache shader chuyển được. + + + + Failed to remove the transferable shader cache directory. + Thất bại khi loại bỏ thư mục bộ nhớ cache shader. + + + + + Error Removing Custom Configuration + Lỗi khi loại bỏ cấu hình tuỳ chỉnh + + + + A custom configuration for this title does not exist. + Cấu hình tuỳ chỉnh cho title này không tồn tại. + + + + Successfully removed the custom game configuration. + Loại bỏ thành công cấu hình game tuỳ chỉnh. + + + + Failed to remove the custom game configuration. + Thất bại khi xoá cấu hình game tuỳ chỉnh + + + + Reset Metadata Cache + Khôi phục bộ nhớ đệm của metadata + + + + The metadata cache is already empty. + Bộ nhớ đệm metadata trống. + + + + The operation completed successfully. + Các hoạt động đã hoàn tất thành công. + + + + The metadata cache couldn't be deleted. It might be in use or non-existent. + Bộ nhớ đệm metadata không thể xoá. Nó có thể đang được sử dụng hoặc không tồn tại. + + + + Create Shortcut + Tạo lối tắt + + + + Do you want to launch the game in fullscreen? + + + + + Shortcut Created + + + + + Successfully created a shortcut to %1 + Thành công tạo lối tắt tại %1 + + + + Shortcut may be Volatile! + + + + + This will create a shortcut to the current AppImage. This may not work well if you update. Continue? + Việc này sẽ tạo một lối tắt tới AppImage hiện tại. Điều này có thể không hoạt động tốt nếu bạn cập nhật. Tiếp tục? + + + + Failed to Create Shortcut + + + + + Failed to create a shortcut to %1 + + + + + Create Icon + Tạo icon + + + + Cannot create icon file. Path "%1" does not exist and cannot be created. + Không thể tạo tập tin icon. Đường dẫn "%1" không tồn tại và không thể tạo. + + + + No firmware available + + + + + Please install firmware to use the home menu. + + + + + Home Menu Applet + + + + + Home Menu is not available. Please reinstall firmware. + + + QtControllerSelectorDialog @@ -9138,7 +9609,7 @@ Vui lòng thử lại hoặc liên hệ nhà phát triển của phần mềm. QtProfileSelectionDialog - + %1 %2 %1 is the profile username, %2 is the formatted UUID (e.g. 00112233-4455-6677-8899-AABBCCDDEEFF)) @@ -9146,7 +9617,7 @@ Vui lòng thử lại hoặc liên hệ nhà phát triển của phần mềm. - + Users Người Dùng @@ -9270,7 +9741,7 @@ p, li { white-space: pre-wrap; } WaitTreeCallstack - + Call stack Chùm cuộc gọi @@ -9278,12 +9749,12 @@ p, li { white-space: pre-wrap; } WaitTreeSynchronizationObject - + [%1] %2 [%1] %2 - + waited by no thread chờ đợi bởi vì không có luồng @@ -9291,102 +9762,102 @@ p, li { white-space: pre-wrap; } WaitTreeThread - + runnable có thể chạy - + paused tạm dừng - + sleeping ngủ - + waiting for IPC reply chờ đợi IPC phản hồi - + waiting for objects chờ đợi đối tượng - + waiting for condition variable đang chờ biến điều kiện - + waiting for address arbiter chờ đợi địa chỉ người đứng giữa - + waiting for suspend resume đang đợi để tạm dừng và tiếp tục - + waiting đang chờ - + initialized đã khởi tạo - + terminated đã chấm dứt - + unknown không xác định - + PC = 0x%1 LR = 0x%2 PC = 0x%1 LR = 0x%2 - + ideal lý tưởng - + core %1 lõi %1 - + processor = %1 bộ xử lý = %1 - + affinity mask = %1 che đậy tánh giống nhau = %1 - + thread id = %1 id luồng = %1 - + priority = %1(current) / %2(normal) quyền ưu tiên = %1(hiện tại) / %2(bình thường) - + last running ticks = %1 lần chạy cuối cùng = %1 @@ -9394,7 +9865,7 @@ p, li { white-space: pre-wrap; } WaitTreeThreadList - + waited by thread chờ đợi bởi vì có luồng @@ -9402,7 +9873,7 @@ p, li { white-space: pre-wrap; } WaitTreeWidget - + &Wait Tree &Cây Đợi diff --git a/dist/languages/zh_CN.ts b/dist/languages/zh_CN.ts index 934cc8897a..bfebf8ab9e 100644 --- a/dist/languages/zh_CN.ts +++ b/dist/languages/zh_CN.ts @@ -13,12 +13,12 @@ - About eden + About Eden - <html><head/><body><p><span style=" font-size:28pt;">eden</span></p></body></html> + <html><head/><body><p><span style=" font-size:28pt;">Eden</span></p></body></html> @@ -34,8 +34,8 @@ p, li { white-space: pre-wrap; } hr { height: 1px; border-width: 0; } li.unchecked::marker { content: "\2610"; } li.checked::marker { content: "\2612"; } -</style></head><body style=" font-family:'Adwaita Sans'; font-size:11pt; font-weight:400; font-style:normal;"> -<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;">eden is an experimental open-source emulator for the Nintendo Switch licensed under GPLv3.0+ which is based on the yuzu emulator which ended development back in March 2024. <br /><br />This software should not be used to play games you have not legally obtained.</span></p></body></html> +</style></head><body style=" font-family:'Noto Sans'; font-size:9pt; font-weight:400; font-style:normal;"> +<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;">Eden is an experimental open-source emulator for the Nintendo Switch licensed under GPLv3.0+ which is based on the yuzu emulator which ended development back in March 2024. <br /><br />This software should not be used to play games you have not legally obtained.</span></p></body></html> @@ -72,32 +72,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 确定 @@ -397,134 +397,134 @@ This would ban both their forum username and their IP address. ConfigurationShared - + % % - + Amiibo editor Amiibo 编辑器 - + Controller configuration 控制器设置 - + Data erase 清除数据 - + Error 错误 - + Net connect 网络连接 - + Player select 选择玩家 - + Software keyboard 软件键盘 - + Mii Edit Mii Edit - + Online web 在线网络 - + Shop 商店 - + Photo viewer 照片查看器 - + Offline web 离线网络 - + Login share 第三方账号登录 - + Wifi web auth Wifi 网络认证 - + My page 我的主页 - + Output Engine: 输出引擎: - + Output Device: 输出设备: - + Input Device: 输入设备: - + Mute audio 静音 - + Volume: 音量: - + Mute audio when in background 模拟器位于后台时静音 - + Multicore CPU Emulation 多核 CPU 仿真 - + This option increases CPU emulation thread use from 1 to the Switch’s maximum of 4. This is mainly a debug option and shouldn’t be disabled. 此选项将 CPU 模拟线程的数量从 1 增加到 Switch 实机的最大值 4。 这是调试选项,不应被禁用。 - + Memory Layout 内存布局 - + Increases the amount of emulated RAM from the stock 4GB of the retail Switch to the developer kit's 8/6GB. It’s doesn’t improve stability or performance and is intended to let big texture mods fit in emulated RAM. Enabling it will increase memory use. It is not recommended to enable unless a specific game with a texture mod needs it. @@ -533,12 +533,12 @@ Enabling it will increase memory use. It is not recommended to enable unless a s 启用时将增加内存使用量。建议不要启用,除非具有纹理 Mod 的某些游戏需要。 - + Limit Speed Percent 运行速度限制 - + Controls the game's maximum rendering speed, but it’s up to each game if it runs faster or not. 200% for a 30 FPS game is 60 FPS, and for a 60 FPS game it will be 120 FPS. Disabling it means unlocking the framerate to the maximum your PC can reach. @@ -547,141 +547,118 @@ Disabling it means unlocking the framerate to the maximum your PC can reach. - - Synchronize Core Speed - - - - - Synchronizes CPU core speed with the game's maximum rendering speed to boost FPS without affecting game speed (animations, physics, etc.). -Compatibility varies by game; many (especially older ones) may not respond well. -Can help reduce stuttering at lower framerates. - - - - + Accuracy: 精度: - + This setting controls the accuracy of the emulated CPU. Don't change this unless you know what you are doing. 此选项控制模拟 CPU 的精度。 如果您不确定,就不要更改此项。 - - + + Backend: 后端: - - Fast CPU Time - - - - - Overclocks the emulated CPU to remove some FPS limiters. Weaker CPUs may see reduced performance, and certain games may behave improperly. -Use Boost (1700MHz) to run at the Switch's highest native clock, or Fast (2000MHz) to run at 2x clock. - - - - + Unfuse FMA (improve performance on CPUs without FMA) 低精度 FMA (在 CPU 不支持 FMA 指令集的情况下提高性能) - + This option improves speed by reducing accuracy of fused-multiply-add instructions on CPUs without native FMA support. 该选项通过降低积和熔加运算的精度来提高模拟器在不支持 FMA 指令集 CPU 上的运行速度。 - + Faster FRSQRTE and FRECPE 快速 FRSQRTE 和 FRECPE - + This option improves the speed of some approximate floating-point functions by using less accurate native approximations. 该选项通过使用精度较低的近似值来提高某些浮点函数的运算速度。 - + Faster ASIMD instructions (32 bits only) 加速 ASIMD 指令执行(仅限 32 位) - + This option improves the speed of 32 bits ASIMD floating-point functions by running with incorrect rounding modes. 该选项通过不正确的舍入模式来提高 32 位 ASIMD 浮点函数的运行速度。 - + Inaccurate NaN handling 低精度非数处理 - + This option improves speed by removing NaN checking. Please note this also reduces accuracy of certain floating-point instructions. 该选项通过取消非数检查来提高速度。 请注意,这也会降低某些浮点指令的精确度。 - + Disable address space checks 禁用地址空间检查 - + This option improves speed by eliminating a safety check before every memory read/write in guest. Disabling it may allow a game to read/write the emulator's memory. 此选项通过取消每次模拟内存读/写前的安全检查来提高速度。 禁用此选项可能会允许游戏读/写模拟器自己的内存。 - + Ignore global monitor 忽略全局监视器 - + This option improves speed by relying only on the semantics of cmpxchg to ensure safety of exclusive access instructions. Please note this may result in deadlocks and other race conditions. 此选项仅通过 cmpxchg 指令来提高速度,以确保独占访问指令的安全性。 请注意,这可能会导致死锁和其他问题。 - + API: API: - + Switches between the available graphics APIs. Vulkan is recommended in most cases. 切换图形 API。 大多数情况下建议使用 Vulkan。 - + Device: 设备: - + This setting selects the GPU to use with the Vulkan backend. 切换图形 API 为 Vulkan 时所使用的 GPU。 - + Shader Backend: 着色器后端: - + The shader backend to use for the OpenGL renderer. GLSL is the fastest in performance and the best in rendering accuracy. GLASM is a deprecated NVIDIA-only backend that offers much better shader building performance at the cost of FPS and rendering accuracy. @@ -692,12 +669,12 @@ GLASM 仅限于 NVIDIA GPU,以 FPS 和渲染精度为代价提供更好的着 SPIR-V 编译速度最快,但在大多数 GPU 驱动程序上表现很差。 - + Resolution: 分辨率: - + Forces the game to render at a different resolution. Higher resolutions require much more VRAM and bandwidth. Options lower than 1X can cause rendering issues. @@ -706,27 +683,27 @@ Options lower than 1X can cause rendering issues. 低于 1X 的选项可能造成渲染问题。 - + Window Adapting Filter: 窗口滤镜: - + FSR Sharpness: FSR 锐化度: - + Determines how sharpened the image will look while using FSR’s dynamic contrast. 指定使用 FSR 时图像的锐化程度。 - + Anti-Aliasing Method: 抗锯齿方式: - + The anti-aliasing method to use. SMAA offers the best quality. FXAA has a lower performance impact and can produce a better and more stable picture under very low resolutions. @@ -735,12 +712,12 @@ FXAA has a lower performance impact and can produce a better and more stable pic 快速近似抗锯齿对性能影响较小,可以在非常低的分辨率下生成更好、更稳定的图像。 - + Fullscreen Mode: 全屏模式: - + The method used to render the window in fullscreen. Borderless offers the best compatibility with the on-screen keyboard that some games request for input. Exclusive fullscreen may offer better performance and better Freesync/Gsync support. @@ -749,12 +726,12 @@ Exclusive fullscreen may offer better performance and better Freesync/Gsync supp 独占全屏提供更好的性能和 Freesync/Gsync 支持。 - + Aspect Ratio: 屏幕纵横比: - + Stretches the game to fit the specified aspect ratio. Switch games only support 16:9, so custom game mods are required to get other ratios. Also controls the aspect ratio of captured screenshots. @@ -763,49 +740,36 @@ Switch 游戏只支持 16:9,因此需要 Mod 才能实现其他比例。 此选项也控制捕获屏幕截图的纵横比。 - + Use disk pipeline cache 启用磁盘管线缓存 - + Allows saving shaders to storage for faster loading on following game boots. Disabling it is only intended for debugging. 将生成的着色器保存到硬盘,提高后续游戏过程中的着色器加载速度。 请仅在调试时禁用此项。 - - Optimize SPIRV output shader - - - - - Runs an additional optimization pass over generated SPIRV shaders. -Will increase time required for shader compilation. -May slightly improve performance. -This feature is experimental. - - - - + Use asynchronous GPU emulation 使用 GPU 异步模拟 - + Uses an extra CPU thread for rendering. This option should always remain enabled. 使用额外的 CPU 线程进行渲染。 此选项应始终保持启用状态。 - + NVDEC emulation: NVDEC 模拟方式: - + Specifies how videos should be decoded. It can either use the CPU or the GPU for decoding, or perform no decoding at all (black screen on videos). In most cases, GPU decoding provides the best performance. @@ -814,12 +778,12 @@ In most cases, GPU decoding provides the best performance. 大多数情况下,使用 GPU 解码将提供最好的性能。 - + ASTC Decoding Method: ASTC 纹理解码方式: - + This option controls how ASTC textures should be decoded. CPU: Use the CPU for decoding, slowest but safest method. GPU: Use the GPU's compute shaders to decode ASTC textures, recommended for most games and users. @@ -832,37 +796,36 @@ CPU 异步模拟:使用 CPU 在 ASTC 纹理到达时对其进行解码。 消除 ASTC 解码带来的卡顿,但在解码时可能出现渲染问题。 - + ASTC Recompression Method: ASTC 纹理重压缩方式: - + Almost all desktop and laptop dedicated GPUs lack support for ASTC textures, forcing the emulator to decompress to an intermediate format any card supports, RGBA8. This option recompresses RGBA8 to either the BC1 or BC3 format, saving VRAM but negatively affecting image quality. 几乎所有台式机和笔记本电脑 GPU 都不支持 ASTC 纹理,这迫使模拟器解压纹理到 GPU 支持的中间格式 RGBA8。 此选项可将 RGBA8 重新压缩为 BC1 或 BC3 格式,节省 VRAM,但会对图像质量产生负面影响。 - + VRAM Usage Mode: VRAM 使用模式: - Selects whether the emulator should prefer to conserve memory or make maximum usage of available video memory for performance. Has no effect on integrated graphics. Aggressive mode may severely impact the performance of other applications such as recording software. - 指定模拟器使用 VRAM 的方式。此选项对核芯显卡没有影响。 + 指定模拟器使用 VRAM 的方式。此选项对核芯显卡没有影响。 保守模式:模拟器更倾向于节省 VRAM。 激进模式:最大限度利用 VRAM 来提高性能。 激进模式可能会严重影响其他应用程序(如录屏软件)的性能。 - + VSync Mode: 垂直同步模式: - + FIFO (VSync) does not drop frames or exhibit tearing but is limited by the screen refresh rate. FIFO Relaxed is similar to FIFO but allows tearing as it recovers from a slow down. Mailbox can have lower latency than FIFO and does not tear but may drop frames. @@ -873,51 +836,49 @@ Mailbox 具有比 FIFO 更低的延迟,不会产生撕裂但可能会掉帧。 Immediate (无同步)只显示可用内容,并可能产生撕裂。 - + Enable asynchronous presentation (Vulkan only) 启用异步帧提交 (仅限 Vulkan) - + Slightly improves performance by moving presentation to a separate CPU thread. 将帧提交移动到单独的 CPU 线程,略微提高性能。 - + Force maximum clocks (Vulkan only) 强制最大时钟 (仅限 Vulkan) - + Runs work in the background while waiting for graphics commands to keep the GPU from lowering its clock speed. 在后台运行的同时等待图形命令,以防止 GPU 降低时钟速度。 - + Anisotropic Filtering: 各向异性过滤: - + Controls the quality of texture rendering at oblique angles. It’s a light setting and safe to set at 16x on most GPUs. 控制斜角的纹理渲染质量。 这是一个渲染相关的选项,在大多数 GPU 上设置为 16x 是安全的。 - Accuracy Level: - 精度: + 精度: - GPU emulation accuracy. Most games render fine with Normal, but High is still required for some. Particles tend to only render correctly with High accuracy. Extreme should only be used for debugging. This option can be changed while playing. Some games may require booting on high to render properly. - 指定 GPU 模拟精度。 + 指定 GPU 模拟精度。 大多数游戏设置为“正常”时渲染效果良好,但某些游戏需要设置为“高”。 粒子效果只能以高精度才能正确渲染。 “极高”只用于调试。 @@ -925,12 +886,12 @@ Some games may require booting on high to render properly. 某些游戏可能在启动时设置为“高”才能正确渲染。 - + Use asynchronous shader building (Hack) 启用异步着色器构建 (不稳定) - + Enables asynchronous shader compilation, which may reduce shader stutter. This feature is experimental. 启用异步着色器编译,可能会减少着色器卡顿。 @@ -945,24 +906,24 @@ This feature is experimental. 启用快速 GPU 时钟。此选项将强制大多数游戏以其最高分辨率运行。 - + Use Vulkan pipeline cache 启用 Vulkan 管线缓存 - + Enables GPU vendor-specific pipeline cache. This option can improve shader loading time significantly in cases where the Vulkan driver does not store pipeline cache files internally. 启用 GPU 供应商专用的管线缓存。 在 Vulkan 驱动程序内部不存储管线缓存的情况下,此选项可显著提高着色器加载速度。 - + Enable Compute Pipelines (Intel Vulkan Only) 启用计算管线 (仅限 Intel 显卡 Vulkan 模式) - + Enable compute pipelines, required by some games. This setting only exists for Intel proprietary drivers, and may crash if enabled. Compute pipelines are always enabled on all other drivers. @@ -971,111 +932,111 @@ Compute pipelines are always enabled on all other drivers. 在其他的驱动程序上将始终启用计算管线。 - + Enable Reactive Flushing 启用反应性刷新 - + Uses reactive flushing instead of predictive flushing, allowing more accurate memory syncing. 使用反应性刷新取代预测性刷新,从而更精确地同步内存。 - + Sync to framerate of video playback 播放视频时帧率同步 - + Run the game at normal speed during video playback, even when the framerate is unlocked. 在视频播放期间以正常速度运行游戏,即使帧率未锁定。 - + Barrier feedback loops 屏障反馈环路 - + Improves rendering of transparency effects in specific games. 改进某些游戏中透明效果的渲染。 - + RNG Seed 随机数生成器种子 - + Controls the seed of the random number generator. Mainly used for speedrunning purposes. 控制随机数生成器的种子。 主要用于快速通关。 - + Device Name 设备名称 - + The name of the emulated Switch. 模拟 Switch 主机的名称。 - + Custom RTC Date: 自定义系统时间: - + This option allows to change the emulated clock of the Switch. Can be used to manipulate time in games. 此选项允许更改 Switch 的模拟时钟。 可用于在游戏中操纵时间。 - + Language: 语言: - + Note: this can be overridden when region setting is auto-select 注意:当“地区”设置是“自动选择”时,此设置可能会被覆盖。 - + Region: 地区: - + The region of the emulated Switch. 模拟 Switch 主机的所属地区。 - + Time Zone: 时区: - + The time zone of the emulated Switch. 模拟 Switch 主机的所属时区。 - + Sound Output Mode: 声音输出模式: - + Console Mode: 控制台模式: - + Selects if the console is emulated in Docked or Handheld mode. Games will change their resolution, details and supported controllers and depending on this setting. Setting to Handheld can help improve performance for low end systems. @@ -1084,7 +1045,7 @@ Setting to Handheld can help improve performance for low end systems. 设置为掌机模式有助于提高低端 PC 上的模拟性能。 - + Prompt for user on game boot 游戏启动时提示选择用户 @@ -1093,7 +1054,7 @@ Setting to Handheld can help improve performance for low end systems. 每次启动时询问用户选择一个用户配置文件。在多人使用同一台电脑上的 yuzu 时,这很有用。 - + Pause emulation when in background 模拟器位于后台时暂停模拟 @@ -1102,843 +1063,992 @@ Setting to Handheld can help improve performance for low end systems. 当用户聚焦在其他窗口时暂停 yuzu。 - - Fast GPU Time (Hack) - - - - - Overclocks the emulated GPU to increase dynamic resolution and render distance. -Use 128 for maximal performance and 512 for maximal graphics fidelity. - - - - - Extended Dynamic State - - - - - Enables the VkExtendedDynamicState* extensions. -Higher dynamic states will generally improve performance, but may cause issues on certain games or devices. - - - - - Provoking Vertex - - - - - Improves lighting and vertex handling in certain games. -Only Vulkan 1.0+ devices support this extension. - - - - - Descriptor Indexing - - - - - Improves texture & buffer handling and the Maxwell translation layer. -Some Vulkan 1.1+ and all 1.2+ devices support this extension. - - - - - Ask to select a user profile on each boot, useful if multiple people use eden on the same PC. - - - - - This setting pauses eden when focusing other windows. - - - - + Confirm before stopping emulation 停止模拟时需要确认 - + This setting overrides game prompts asking to confirm stopping the game. Enabling it bypasses such prompts and directly exits the emulation. 此设置将覆盖游戏中确认停止游戏的提示。 启用此项将绕过游戏中的提示并直接退出模拟。 - + Hide mouse on inactivity 自动隐藏鼠标光标 - + This setting hides the mouse after 2.5s of inactivity. 当鼠标停止活动超过 2.5 秒时隐藏鼠标光标。 - + Disable controller applet 禁用控制器小程序 - + Forcibly disables the use of the controller applet by guests. When a guest attempts to open the controller applet, it is immediately closed. 强制禁用来宾程序使用控制器小程序。 当来宾程序尝试打开控制器小程序时,控制器小程序会立即关闭。 - - Check for updates - - - - - Whether or not to check for updates upon startup. - - - - + Enable Gamemode 启用游戏模式 - + Custom frontend 自定义前端 - + Real applet 真实的小程序 - - Never - - - - - On Load - - - - - Always - - - - + CPU CPU - + GPU GPU - + CPU Asynchronous CPU 异步模拟 - + Uncompressed (Best quality) 不压缩 (最高质量) - + BC1 (Low quality) BC1 (低质量) - + BC3 (Medium quality) BC3 (中等质量) - + Conservative 保守模式 - + Aggressive 激进模式 - + OpenGL OpenGL - + Vulkan Vulkan - + Null - + GLSL GLSL - + GLASM (Assembly Shaders, NVIDIA Only) GLASM (汇编着色器,仅限 NVIDIA 显卡) - + SPIR-V (Experimental, AMD/Mesa Only) SPIR-V (实验性,仅限 AMD/Mesa) - + Normal 正常 - + High - + Extreme 极高 - + Auto 自动 - + Accurate 高精度 - + Unsafe 低精度 - + Paranoid (disables most optimizations) 偏执模式 (禁用绝大多数优化项) - + Dynarmic 动态编译 - + NCE 本机代码执行 - + Borderless Windowed 无边框窗口 - + Exclusive Fullscreen 独占全屏 - + No Video Output 无视频输出 - + CPU Video Decoding CPU 视频解码 - + GPU Video Decoding (Default) GPU 视频解码 (默认) - - 0.25X (180p/270p) [EXPERIMENTAL] - - - - + 0.5X (360p/540p) [EXPERIMENTAL] 0.5X (360p/540p) [实验性] - + 0.75X (540p/810p) [EXPERIMENTAL] 0.75X (540p/810p) [实验性] - + 1X (720p/1080p) 1X (720p/1080p) - + 1.5X (1080p/1620p) [EXPERIMENTAL] 1.5X (1080p/1620p) [实验性] - + 2X (1440p/2160p) 2X (1440p/2160p) - + 3X (2160p/3240p) 3X (2160p/3240p) - + 4X (2880p/4320p) 4X (2880p/4320p) - + 5X (3600p/5400p) 5X (3600p/5400p) - + 6X (4320p/6480p) 6X (4320p/6480p) - + 7X (5040p/7560p) 7X (5040p/7560p) - + 8X (5760p/8640p) 8X (5760p/8640p) - + Nearest Neighbor 近邻取样 - + Bilinear 双线性过滤 - + Bicubic 双三线过滤 - + Gaussian 高斯模糊 - + ScaleForce 强制缩放 - + AMD FidelityFX™️ Super Resolution AMD FidelityFX™️ 超级分辨率锐画技术 - - Area - - - - + None - + FXAA 快速近似抗锯齿 - + SMAA 子像素形态学抗锯齿 - + Default (16:9) 默认 (16:9) - + Force 4:3 强制 4:3 - + Force 21:9 强制 21:9 - + Force 16:10 强制 16:10 - + Stretch to Window 拉伸窗口 - + Automatic 自动 - + + Default 系统默认 - + + Synchronize Core Speed + + + + + Synchronizes CPU core speed with the game's maximum rendering speed to boost FPS without affecting game speed (animations, physics, etc.). +Compatibility varies by game; many (especially older ones) may not respond well. +Can help reduce stuttering at lower framerates. + + + + + Fast CPU Time + + + + + Overclocks the emulated CPU to remove some FPS limiters. Weaker CPUs may see reduced performance, and certain games may behave improperly. +Use Boost (1700MHz) to run at the Switch's highest native clock, or Fast (2000MHz) to run at 2x clock. + + + + + Custom CPU Ticks + + + + + Set a custom value of CPU ticks. Higher values can increase performance, but may also cause the game to freeze. A range of 77–21000 is recommended. + + + + + Enable Host MMU Emulation (fastmem) + + + + + This optimization speeds up memory accesses by the guest program. +Enabling it causes guest memory reads/writes to be done directly into memory and make use of Host's MMU. +Disabling this forces all memory accesses to use Software MMU Emulation. + + + + + Optimize SPIRV output shader + + + + + Runs an additional optimization pass over generated SPIRV shaders. +Will increase time required for shader compilation. +May slightly improve performance. +This feature is experimental. + + + + + Selects whether the emulator should prefer to conserve memory or make maximum usage of available video memory for performance. +Aggressive mode may severely impact the performance of other applications such as recording software. + + + + + Skip CPU Inner Invalidation + + + + + Skips certain CPU-side cache invalidations during memory updates, reducing CPU usage and improving it's performance. This may cause glitches or crashes on some games. + + + + + Sync Memory Operations + + + + + Ensures data consistency between compute and memory operations. +This option should fix issues in some games, but may also reduce performance in some cases. +Unreal Engine 4 games often see the most significant changes thereof. + + + + + GPU Accuracy: + + + + + Controls the GPU emulation accuracy. +Most games render fine with Normal, but High is still required for some. +Particles tend to only render correctly with High accuracy. +Extreme should only be used as a last resort. + + + + + DMA Accuracy: + + + + + Controls the DMA precision accuracy. Safe precision can fix issues in some games, but it can also impact performance in some cases. +If unsure, leave this on Default. + + + + + Fast GPU Time (Hack) + + + + + Overclocks the emulated GPU to increase dynamic resolution and render distance. +Use 128 for maximal performance and 512 for maximal graphics fidelity. + + + + + RAII + + + + + A method of automatic resource management in Vulkan that ensures proper release of resources when they are no longer needed, but may cause crashes in bundled games. + + + + + Extended Dynamic State + + + + + Controls the number of features that can be used in Extended Dynamic State. +Higher numbers allow for more features and can increase performance, but may cause issues with some drivers and vendors. +The default value may vary depending on your system and hardware capabilities. +This value can be changed until stability and a better visual quality are achieved. + + + + + Provoking Vertex + + + + + Improves lighting and vertex handling in certain games. +Only Vulkan 1.0+ devices support this extension. + + + + + Descriptor Indexing + + + + + Improves texture & buffer handling and the Maxwell translation layer. +Some Vulkan 1.1+ and all 1.2+ devices support this extension. + + + + + Sample Shading + + + + + Allows the fragment shader to execute per sample in a multi-sampled fragment instead once per fragment. Improves graphics quality at the cost of some performance. +Higher values improve quality more but also reduce performance to a greater extent. + + + + + Ask to select a user profile on each boot, useful if multiple people use Eden on the same PC. + + + + + This setting pauses Eden when focusing other windows. + + + + + Check for updates + + + + + Whether or not to check for updates upon startup. + + + + + Never + + + + + On Load + + + + + Always + + + + + Unsafe (fast) + + + + + Safe (stable) + + + + + 0.25X (180p/270p) [EXPERIMENTAL] + + + + + Area + + + + 2x 2x - + 4x 4x - + 8x 8x - + 16x 16x - + Japanese (日本語) 日语 (日本語) - + American English 美式英语 - + French (français) 法语 (français) - + German (Deutsch) 德语 (Deutsch) - + Italian (italiano) 意大利语 (italiano) - + Spanish (español) 西班牙语 (español) - + Chinese 中文 - + Korean (한국어) 韩语 (한국어) - + Dutch (Nederlands) 荷兰语 (Nederlands) - + Portuguese (português) 葡萄牙语 (português) - + Russian (Русский) 俄语 (Русский) - + Taiwanese 台湾中文 - + British English 英式英语 - + Canadian French 加拿大法语 - + Latin American Spanish 拉美西班牙语 - + Simplified Chinese 简体中文 - + Traditional Chinese (正體中文) 繁体中文 (正體中文) - + Brazilian Portuguese (português do Brasil) 巴西-葡萄牙语 (português do Brasil) - - + + Serbian (српски) + + + + + Japan 日本 - + USA 美国 - + Europe 欧洲 - + Australia 澳大利亚 - + China 中国 - + Korea 韩国 - + Taiwan 中国台湾 - + Auto (%1) Auto select time zone 自动 (%1) - + Default (%1) Default time zone 默认 (%1) - + CET 欧洲中部时间 - + CST6CDT 古巴标准时间&古巴夏令时 - + Cuba 古巴 - + EET 东欧时间 - + Egypt 埃及 - + Eire 爱尔兰 - + EST 东部标准时间 - + EST5EDT 东部标准时间&东部夏令时 - + GB 英国 - + GB-Eire 英国-爱尔兰时间 - + GMT 格林威治标准时间 (GMT) - + GMT+0 GMT+0 - + GMT-0 GMT-0 - + GMT0 GMT0 - + Greenwich 格林威治 - + Hongkong 中国香港 - + HST 美国夏威夷时间 - + Iceland 冰岛 - + Iran 伊朗 - + Israel 以色列 - + Jamaica 牙买加 - + Kwajalein 夸贾林环礁 - + Libya 利比亚 - + MET 中欧时间 - + MST 山区标准时间 (北美) - + MST7MDT 山区标准时间&山区夏令时 (北美) - + Navajo 纳瓦霍 - + NZ 新西兰时间 - + NZ-CHAT 新西兰-查塔姆群岛 - + Poland 波兰 - + Portugal 葡萄牙 - + PRC 中国标准时间 - + PST8PDT 太平洋标准时间&太平洋夏令时 - + ROC 台湾时间 - + ROK 韩国时间 - + Singapore 新加坡 - + Turkey 土耳其 - + UCT UCT - + Universal 世界时间 - + UTC 协调世界时 - + W-SU 欧洲-莫斯科时间 - + WET 西欧时间 - + Zulu 祖鲁 - + Mono 单声道 - + Stereo 立体声 - + Surround 环绕声 - + 4GB DRAM (Default) 4GB DRAM (默认) - + 6GB DRAM (Unsafe) 6GB DRAM (不安全) - + 8GB DRAM - + 10GB DRAM (Unsafe) - + 12GB DRAM (Unsafe) - + Low (128) - + Medium (256) - + High (512) @@ -1947,37 +2057,37 @@ When a guest attempts to open the controller applet, it is immediately closed.8GB DRAM (不安全) - + Docked 主机模式 - + Handheld 掌机模式 - + Boost (1700MHz) - + Fast (2000MHz) - + Always ask (Default) 总是询问 (默认) - + Only if game specifies not to stop 仅当游戏不希望停止时 - + Never ask 从不询问 @@ -2331,27 +2441,27 @@ When a guest attempts to open the controller applet, it is immediately closed.日志 - + Open Log Location 打开日志位置 - + Global Log Filter 全局日志过滤器 - + When checked, the max size of the log increases from 100 MB to 1 GB 选中此项后,日志文件的最大大小从 100MB 增加到 1GB - + Enable Extended Logging** 启用扩展的日志记录** - + Show Log in Console 显示日志窗口 @@ -2497,7 +2607,7 @@ When a guest attempts to open the controller applet, it is immediately closed. - **This will be reset automatically when eden closes. + **This will be reset automatically when Eden closes. @@ -2559,7 +2669,7 @@ When a guest attempts to open the controller applet, it is immediately closed.**该选项将在 yuzu 关闭时自动重置。 - + Web applet not compiled Web 小程序未编译 @@ -2609,7 +2719,7 @@ When a guest attempts to open the controller applet, it is immediately closed. - eden Configuration + Eden Configuration @@ -2618,88 +2728,88 @@ When a guest attempts to open the controller applet, it is immediately closed.只有当游戏不在运行时,某些设置项才可用。 - + Applets 小程序 - - + + Audio 声音 - - + + CPU CPU - + Debug 调试 - + Filesystem 文件系统 - - + + General 通用 - - + + Graphics 图形 - + GraphicsAdvanced 高级图形选项 - + GraphicsExtensions - + Hotkeys 热键 - - + + Controls 控制 - + Profiles 用户配置 - + Network 网络 - - + + System 系统 - + Game List 游戏列表 - + Web 网络 @@ -2797,51 +2907,45 @@ When a guest attempts to open the controller applet, it is immediately closed. - - - Reset Metadata Cache 重置缓存数据 - + Select Emulated NAND Directory... 选择模拟 NAND 目录... - + Select Emulated SD Directory... 选择模拟 SD 卡目录... - + Select Gamecard Path... 选择游戏卡带路径... - + Select Dump Directory... 选择转储目录... - + Select Mod Load Directory... 选择 Mod 载入目录... - The metadata cache is already empty. - 缓存数据已为空。 + 缓存数据已为空。 - The operation completed successfully. - 操作已成功完成。 + 操作已成功完成。 - The metadata cache couldn't be deleted. It might be in use or non-existent. - 缓存数据删除失败。它可能不存在或正在被使用。 + 缓存数据删除失败。它可能不存在或正在被使用。 @@ -2872,12 +2976,12 @@ When a guest attempts to open the controller applet, it is immediately closed.yuzu - - eden + + Eden - + This reset all settings and remove all per-game configurations. This will not delete game directories, profiles, or input profiles. Proceed? 将重置模拟器所有设置并删除所有游戏的单独设置。这不会删除游戏目录、个人文件及输入配置文件。是否继续? @@ -2910,33 +3014,33 @@ When a guest attempts to open the controller applet, it is immediately closed.背景颜色: - + % FSR sharpening percentage (e.g. 50%) % - + Off 关闭 - + VSync Off 垂直同步关 - + Recommended 推荐 - + On 开启 - + VSync On 垂直同步开 @@ -2973,14 +3077,18 @@ When a guest attempts to open the controller applet, it is immediately closed. - Vulkan Extension Settings + Vulkan Extensions Settings - - While it's recommended to use state 3, some games may perform better on lower states. Setting to 0 (disabled) may also break games. -If your GPU is older (i.e. RX570/580 or older), it may not support these features. If this is the case, set the slider to 0 and uncheck all boxes. -These settings are experimental, and may cause black screens. If your games fail to boot or are stuck on a black screen, change these settings around. + + % + Sample Shading percentage (e.g. 50%) + % + + + + Extended Dynamic State is disabled on macOS due to MoltenVK compatibility issues that cause black screens. @@ -3012,75 +3120,75 @@ These settings are experimental, and may cause black screens. If your games fail 恢复默认 - + Action 作用 - + Hotkey 热键 - + Controller Hotkey 控制器热键 - - - + + + Conflicting Key Sequence 按键冲突 - - + + The entered key sequence is already assigned to: %1 输入的按键序列已分配给: %1 - + [waiting] [请按键] - + Invalid 无效 - + Invalid hotkey settings 无效的热键设置 - + An error occurred. Please report this issue on github. 发生错误。请在 GitHub 提交 Issue。 - + Restore Default 恢复默认 - + Clear 清除 - + Conflicting Button Sequence 键位冲突 - + The default button sequence is already assigned to: %1 默认的按键序列已分配给: %1 - + The default key sequence is already assigned to: %1 默认的按键序列已分配给: %1 @@ -3400,7 +3508,7 @@ These settings are experimental, and may cause black screens. If your games fail - Requires restarting eden + Requires restarting Eden @@ -3555,7 +3663,7 @@ These settings are experimental, and may cause black screens. If your games fail - + Left Stick 左摇杆 @@ -3665,14 +3773,14 @@ These settings are experimental, and may cause black screens. If your games fail - + L L - + ZL ZL @@ -3691,7 +3799,7 @@ These settings are experimental, and may cause black screens. If your games fail - + Plus @@ -3704,15 +3812,15 @@ These settings are experimental, and may cause black screens. If your games fail - - + + R R - + ZR ZR @@ -3757,7 +3865,7 @@ These settings are experimental, and may cause black screens. If your games fail - + Right Stick 右摇杆 @@ -3772,242 +3880,242 @@ These settings are experimental, and may cause black screens. If your games fail 设置 - - - - + + + + Clear 清除 - - - - - + + + + + [not set] [未设置] - - - + + + Invert button 反转按键 - - + + Toggle button 切换按键 - + Turbo button 连发键 - - + + Invert axis 轴方向倒置 - - - + + + Set threshold 阈值设定 - - + + Choose a value between 0% and 100% 选择一个介于 0% 和 100% 之间的值 - + Toggle axis 切换轴 - + Set gyro threshold 陀螺仪阈值设定 - + Calibrate sensor 校准传感器 - + Map Analog Stick 映射摇杆 - + After pressing OK, first move your joystick horizontally, and then vertically. To invert the axes, first move your joystick vertically, and then horizontally. 在按下确定后,首先水平移动你的手柄,然后垂直移动它。 如果要使体感方向倒置,首先垂直移动你的手柄,然后水平移动它。 - + Center axis 中心轴 - - + + Deadzone: %1% 摇杆死区:%1% - - + + Modifier Range: %1% 摇杆灵敏度:%1% - - + + Pro Controller Pro Controller - + Dual Joycons 双 Joycons 手柄 - + Left Joycon 左 Joycon 手柄 - + Right Joycon 右 Joycon 手柄 - + Handheld 掌机模式 - + GameCube Controller GameCube 控制器 - + Poke Ball Plus 精灵球 PLUS - + NES Controller NES 控制器 - + SNES Controller SNES 控制器 - + N64 Controller N64 控制器 - + Sega Genesis 世嘉创世纪 - + Start / Pause 开始 / 暂停 - + Z Z - + Control Stick 控制摇杆 - + C-Stick C 摇杆 - + Shake! 摇动! - + [waiting] [等待中] - + New Profile 新建自定义设置 - + Enter a profile name: 输入配置文件名称: - - + + Create Input Profile 新建输入配置文件 - + The given profile name is not valid! 输入的配置文件名称无效! - + Failed to create the input profile "%1" 新建输入配置文件 "%1" 失败 - + Delete Input Profile 删除输入配置文件 - + Failed to delete the input profile "%1" 删除输入配置文件 "%1" 失败 - + Load Input Profile 加载输入配置文件 - + Failed to load the input profile "%1" 加载输入配置文件 "%1" 失败 - + Save Input Profile 保存输入配置文件 - + Failed to save the input profile "%1" 保存输入配置文件 "%1" 失败 @@ -4064,7 +4172,7 @@ To invert the axes, first move your joystick vertically, and then horizontally.< - + Configure 设置 @@ -4100,7 +4208,7 @@ To invert the axes, first move your joystick vertically, and then horizontally.< - + Test 测试 @@ -4119,7 +4227,7 @@ To invert the axes, first move your joystick vertically, and then horizontally.< <a href='https://yuzu-emu.org/wiki/using-a-controller-or-android-phone-for-motion-or-touch-input'><span style="text-decoration: underline; color:#039be5;">了解更多</span></a> - + %1:%2 %1:%2 @@ -4128,77 +4236,77 @@ To invert the axes, first move your joystick vertically, and then horizontally.< yuzu - + <a href='https://eden-emulator.github.io/wiki/using-a-controller-or-android-phone-for-motion-or-touch-input'><span style="text-decoration: underline; color:#039be5;">Learn More</span></a> - + Port number has invalid characters 端口号中包含无效字符 - - - - - - - eden + + + + + + + Eden - + Port has to be in range 0 and 65353 端口必须为 0 到 65353 之间 - + IP address is not valid 无效的 IP 地址 - + This UDP server already exists 此 UDP 服务器已存在 - + Unable to add more than 8 servers 最多只能添加 8 个服务器 - + 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>请验证服务器是否正在运行,以及地址和端口是否配置正确。 - + UDP Test or calibration configuration is in progress.<br>Please wait for them to finish. UDP 测试或触摸校准正在进行中。<br>请耐心等待。 @@ -4325,7 +4433,12 @@ Current values are %1% and %2% respectively. 网络接口 - + + Enable Airplane Mode + + + + None @@ -4383,52 +4496,52 @@ Current values are %1% and %2% respectively. 只有当游戏不在运行时,某些设置项才可用。 - + Add-Ons 附加项 - + System 系统 - + CPU CPU - + Graphics 图形 - + Adv. Graphics 高级图形 - + GPU Extensions - + Audio 声音 - + Input Profiles 输入配置文件 - + Linux Linux - + Properties 属性 @@ -4446,12 +4559,12 @@ Current values are %1% and %2% respectively. 附加项 - + Patch Name 补丁名称 - + Version 版本 @@ -4489,27 +4602,32 @@ Current values are %1% and %2% respectively. 设置图像 - + + Select Avatar + + + + Add 添加 - + Rename 重命名 - + Remove 移除 - + Profile management is available only when game is not running. 只有当游戏不在运行时,才能进行用户配置的管理。 - + %1 %2 %1 is the profile username, %2 is the formatted UUID (e.g. 00112233-4455-6677-8899-AABBCCDDEEFF)) @@ -4517,100 +4635,189 @@ Current values are %1% and %2% respectively. %2 - + Enter Username 输入用户名 - + Users 用户 - + Enter a username for the new user: 输入新用户的用户名: - + Enter a new username: 输入新的用户名: - + + Error saving user image + + + + + Unable to save image to file + + + + Select User Image 选择用户图像 - - JPEG Images (*.jpg *.jpeg) - JPEG 图像 (*.jpg *.jpeg) + + Image Formats (*.jpg *.jpeg *.png *.bmp) + - + + No firmware available + 无可用固件 + + + + Please install the firmware to use firmware avatars. + + + + + + Error loading archive + + + + + Archive is not available. Please install/reinstall firmware. + + + + + Archive does not contain romfs. It is probably corrupt. + + + + + Error extracting archive + + + + + Archive could not be extracted. It is probably corrupt. + + + + + Error finding image directory + + + + + Failed to find image directory in the archive. + + + + + No images found + + + + + No avatar images were found in the archive. + + + + JPEG Images (*.jpg *.jpeg) + JPEG 图像 (*.jpg *.jpeg) + + + Error deleting image 删除图像时出错 - + Error occurred attempting to overwrite previous image at: %1. 尝试覆盖该用户的现有图像时出错: %1 - + Error deleting file 删除文件时出错 - + Unable to delete existing file: %1. 无法删除文件: %1 - + Error creating user image directory 创建用户图像目录时出错 - + Unable to create directory %1 for storing user images. 无法创建存储用户图像的目录 %1 。 - Error copying user image - 复制用户图像时出错 + 复制用户图像时出错 - Unable to copy image from %1 to %2 - 无法将图像从 %1 复制到 %2 + 无法将图像从 %1 复制到 %2 - Error resizing user image - 调整用户图像大小时出错 + 调整用户图像大小时出错 - Unable to resize image - 无法调整图像的大小 + 无法调整图像的大小 + + + + ConfigureProfileManagerAvatarDialog + + + Select + + + + + Cancel + 取消 + + + + Background Color + + + + + Select Firmware Avatar + ConfigureProfileManagerDeleteDialog - + Delete this user? All of the user's save data will be deleted. 删除此用户?此用户保存的所有数据都将被删除。 - + Confirm Delete 确认删除 - + Name: %1 UUID: %2 名称: %1 @@ -4663,7 +4870,7 @@ UUID: %2 - + Enable 启用 @@ -4674,7 +4881,7 @@ UUID: %2 - + Not connected 未连接 @@ -4684,63 +4891,63 @@ UUID: %2 恢复默认 - + Clear 清除 - + [not set] [未设置] - + Invert axis 轴方向倒置 - - + + Deadzone: %1% 摇杆死区:%1% - + Error enabling ring input 启用健身环输入时出错 - + Direct Joycon driver is not enabled 未启用 Joycon 直接驱动 - + Configuring 配置中 - + The current mapped device doesn't support the ring controller 当前映射的设备不支持健身环控制器 - + The current mapped device doesn't have a ring attached 当前映射的设备未连接健身环控制器 - + The current mapped device is not connected 当前映射的设备未连接 - + Unexpected driver result %1 意外的驱动结果: %1 - + [waiting] [请按键] @@ -4782,7 +4989,7 @@ UUID: %2 - <html><head/><body><p>Reads controller input from scripts in the same format as TAS-nx scripts.<br/>For a more detailed explanation, please consult the <a href="https://eden-emulator.github.io/help/feature/tas/"><span style=" text-decoration: underline; color:#039be5;">help page</span></a> on the eden website.</p></body></html> + <html><head/><body><p>Reads controller input from scripts in the same format as TAS-nx scripts.<br/>For a more detailed explanation, please consult the <a href="https://eden-emulator.github.io/help/feature/tas/"><span style=" text-decoration: underline; color:#039be5;">help page</span></a> on the Eden website.</p></body></html> @@ -4834,12 +5041,12 @@ UUID: %2 ConfigureTasDialog - + TAS Configuration TAS 设置 - + Select TAS Load Directory... 选择 TAS 载入目录... @@ -4949,7 +5156,7 @@ Drag points to change position, or double-click table cells to edit values. - Warning: The settings in this page affect the inner workings of eden's emulated touchscreen. Changing them may result in undesirable behavior, such as the touchscreen partially or not working. You should only use this page if you know what you are doing. + Warning: The settings in this page affect the inner workings of Eden's emulated touchscreen. Changing them may result in undesirable behavior, such as the touchscreen partially or not working. You should only use this page if you know what you are doing. @@ -5269,6 +5476,16 @@ Drag points to change position, or double-click table cells to edit values.Web 网络 + + + Eden Web Service + + + + + Generate + + yuzu Web Service yuzu 网络服务 @@ -5278,42 +5495,29 @@ Drag points to change position, or double-click table cells to edit values.提供您的用户名和令牌意味着您同意让 yuzu 收集额外的使用数据,其中可能包括用户识别信息。 - - eden Web Service - - - - - By providing your username and token, you agree to allow eden to collect additional usage data, which may include user identifying information. - - - - Verify - 验证 + 验证 - Sign up - 注册 + 注册 - + Token: 令牌: - + Username: 用户名: - What is my token? - 我的令牌是? + 我的令牌是? - + Web Service configuration can only be changed when a public room isn't being hosted. 公共房间未被创建时,才能更改网络服务设置。 @@ -5338,12 +5542,12 @@ Drag points to change position, or double-click table cells to edit values.重新生成 - + Discord Presence Discord 状态 - + Show Current Game in your Discord Status 在您的 Discord 状态中显示当前游戏 @@ -5352,24 +5556,8 @@ Drag points to change position, or double-click table cells to edit values.<a href='https://yuzu-emu.org/help/feature/telemetry/'><span style="text-decoration: underline; color:#039be5;">了解更多</span></a> - <a href='https://profile.yuzu-emu.org/'><span style="text-decoration: underline; color:#039be5;">Sign up</span></a> - <a href='https://profile.yuzu-emu.org/'><span style="text-decoration: underline; color:#039be5;">注册</span></a> - - - - <a href='https://evilperson1337.notion.site/Hosting-a-Room-Inside-of-Eden-20457c2edaf680108abac6215a79acdb'><span style="text-decoration: underline; color:#039be5;">What is my token?</span></a> - - - - - Warning - - - - - Verification is currently nonfunctional, instead generate a random 48-character string with only lowercase a-z. - + <a href='https://profile.yuzu-emu.org/'><span style="text-decoration: underline; color:#039be5;">注册</span></a> <a href='https://yuzu-emu.org/wiki/yuzu-web-service/'><span style="text-decoration: underline; color:#039be5;">What is my token?</span></a> @@ -5392,10 +5580,9 @@ Drag points to change position, or double-click table cells to edit values.令牌未被验证。您对用户名和令牌的更改尚未保存。 - Unverified, please click Verify before saving configuration Tooltip - 令牌未验证,请在保存配置前先进行验证。 + 令牌未验证,请在保存配置前先进行验证。 Verifying... @@ -5419,20 +5606,67 @@ Drag points to change position, or double-click table cells to edit values.Verification failed. Check that you have entered your token correctly, and that your internet connection is working. 验证失败。请检查您输入的令牌是否正确,并且确保您的互联网连接正常。 + + + + All Good + Tooltip + + + + + Must be between 4-20 characters + Tooltip + + + + + Must be 48 characters, and lowercase a-z + Tooltip + + ControllerDialog - + Controller P1 控制器 P1 - + &Controller P1 控制器 P1 (&C) + + DepsDialog + + + Eden Dependencies + + + + + <html><head/><body><p><span style=" font-size:28pt;">Eden Dependencies</span></p></body></html> + + + + + <html><head/><body><p>The projects that make Eden possible</p></body></html> + + + + + Dependency + + + + + Version + 版本 + + DirectConnect @@ -5538,7 +5772,12 @@ Drag points to change position, or double-click table cells to edit values. - Creating a room failed. Please retry. Restarting eden might be necessary. + Creating a room failed. Please retry. Restarting Eden might be necessary. + + + + + Version mismatch! Please update to the latest version of Eden. If the problem persists, contact the room host and ask them to update the server. @@ -5546,11 +5785,6 @@ Drag points to change position, or double-click table cells to edit values.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 eden. If the problem persists, contact the room host and ask them to update the server. - - Incorrect password. @@ -5612,7 +5846,7 @@ Please go to Configure -> System -> Network and make a selection. 使用数据共享 - + Broken Vulkan Installation Detected 检测到 Vulkan 的安装已损坏 @@ -5621,106 +5855,105 @@ Please go to Configure -> System -> Network and make a selection. Vulkan 初始化失败。<br><br>点击<a href='https://yuzu-emu.org/wiki/faq/#yuzu-starts-with-the-error-broken-vulkan-installation-detected'>这里</a>获取此问题的相关信息。 - + Running a game TRANSLATORS: This string is shown to the user to explain why yuzu needs to prevent the computer from sleeping 游戏正在运行 - + Loading Web Applet... 正在加载 Web 小程序... - - + + Disable Web Applet 禁用 Web 小程序 - + Disabling the web applet can lead to undefined behavior and should only be used with Super Mario 3D All-Stars. Are you sure you want to disable the web applet? (This can be re-enabled in the Debug settings.) 禁用 Web 小程序可能会发生未知的行为,且只能在《超级马里奥 3D 全明星》中使用。您确定要禁用 Web 小程序吗? (您可以在调试选项中重新启用它。) - + The amount of shaders currently being built 当前正在构建的着色器数量 - + The current selected resolution scaling multiplier. 当前选定的分辨率缩放比例。 - + Current emulation speed. Values higher or lower than 100% indicate emulation is running faster or slower than a Switch. 当前的模拟速度。高于或低于 100% 的值表示运行速度比实际的 Switch 更快或更慢。 - + 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 Switch frame, not counting framelimiting or v-sync. For full-speed emulation this should be at most 16.67 ms. 在不计算速度限制和垂直同步的情况下,模拟一个 Switch 帧的实际时间。若要进行全速模拟,这个数值不应超过 16.67 毫秒。 - + Unmute 取消静音 - + Mute 静音 - + Reset Volume 重置音量 - + &Clear Recent Files 清除最近文件 (&C) - + &Continue 继续 (&C) - + &Pause 暂停 (&P) - Warning Outdated Game Format - 过时游戏格式警告 + 过时游戏格式警告 You are using the deconstructed ROM directory format for this game, which is an outdated format that has been superseded by others such as NCA, NAX, XCI, or NSP. Deconstructed ROM directories lack icons, metadata, and update support.<br><br>For an explanation of the various Switch formats yuzu supports, <a href='https://yuzu-emu.org/wiki/overview-of-switch-game-formats'>check out our wiki</a>. This message will not be shown again. 目前使用的游戏为解体的 ROM 目录格式,这是一种过时的格式,已被其他格式替代,如 NCA,NAX,XCI 或 NSP。解体的 ROM 目录缺少图标、元数据和更新支持。<br><br>有关 yuzu 支持的各种 Switch 格式的说明,<a href='https://yuzu-emu.org/wiki/overview-of-switch-game-formats'>请查看我们的 wiki</a>。此消息将不会再次出现。 - - + + Error while loading ROM! 加载 ROM 时出错! - + The ROM format is not supported. 该 ROM 格式不受支持。 - + An error occurred initializing the video core. 初始化视频核心时发生错误 @@ -5729,7 +5962,7 @@ Please go to Configure -> System -> Network and make a selection. yuzu 在运行视频核心时发生错误。这可能是由 GPU 驱动程序过旧造成的。有关详细信息,请参阅日志文件。关于日志文件的更多信息,请参考以下页面:<a href='https://yuzu-emu.org/help/reference/log-files/'>如何上传日志文件</a>。 - + Error while loading ROM! %1 %1 signifies a numeric error code. 加载 ROM 时出错! %1 @@ -5740,760 +5973,761 @@ Please go to Configure -> System -> Network and make a selection. %1<br>请参考<a href='https://yuzu-emu.org/help/quickstart/'>yuzu 快速导航</a>以获取相关文件。<br>您可以参考 yuzu 的 wiki 页面</a>或 Discord 社区</a>以获得帮助。 - + Vulkan initialization failed during boot.<br><br>Click <a href='https://eden-emulator.github.io/wiki/faq/#yuzu-starts-with-the-error-broken-vulkan-installation-detected'>here for instructions to fix the issue</a>. - - Game Updates Warning - - - - - The game you are trying to launch is known to have performance or booting issues when updates are applied. Please try increasing the memory layout to 6GB or 8GB if any issues occur.<br><br>Press "OK" to continue launching, or "Cancel" to cancel the launch. - - - - - Don't show again for this game - - - - - You are using the deconstructed ROM directory format for this game, which is an outdated format that has been superseded by others such as NCA, NAX, XCI, or NSP. Deconstructed ROM directories lack icons, metadata, and update support.<br><br>For an explanation of the various Switch formats eden supports, <a href='https://eden-emulator.github.io/wiki/overview-of-switch-game-formats'>check out our wiki</a>. This message will not be shown again. - - - - - eden has encountered an error while running the video core. This is usually caused by outdated GPU drivers, including integrated ones. Please see the log for more details. For more information on accessing the log, please see the following page: <a href='https://eden-emulator.github.io/help/reference/log-files/'>How to Upload the Log File</a>. - - - - - %1<br>Please redump your files or ask on Discord for help. - %1 signifies an error string. - - - - + An unknown error occurred. Please see the log for more details. 发生了未知错误。请查看日志了解详情。 - + (64-bit) (64-bit) - + (32-bit) (32-bit) - + %1 %2 %1 is the title name. %2 indicates if the title is 64-bit or 32-bit %1 %2 - + Closing software... 正在关闭… - + Save Data 保存数据 - + Mod Data Mod 数据 - + Error Opening %1 Folder 打开 %1 文件夹时出错 - - + + Folder does not exist! 文件夹不存在! - Error Opening Transferable Shader Cache - 打开可转移着色器缓存时出错 + 打开可转移着色器缓存时出错 - Failed to create the shader cache directory for this title. - 为该游戏创建着色器缓存目录时失败。 + 为该游戏创建着色器缓存目录时失败。 - Error Removing Contents - 删除内容时出错 + 删除内容时出错 - Error Removing Update - 删除更新时出错 + 删除更新时出错 - Error Removing DLC - 删除 DLC 时出错 + 删除 DLC 时出错 - + Remove Installed Game Contents? 删除已安装的游戏内容? - + Remove Installed Game Update? 删除已安装的游戏更新? - + Remove Installed Game DLC? 删除已安装的游戏 DLC 内容? - + Remove Entry 删除项目 - - - - - - Successfully Removed - 删除成功 + 删除成功 - Successfully removed the installed base game. - 成功删除已安装的游戏。 + 成功删除已安装的游戏。 - The base game is not installed in the NAND and cannot be removed. - 该游戏未安装于 NAND 中,无法删除。 + 该游戏未安装于 NAND 中,无法删除。 - Successfully removed the installed update. - 成功删除已安装的游戏更新。 + 成功删除已安装的游戏更新。 - There is no update installed for this title. - 这个游戏没有任何已安装的更新。 + 这个游戏没有任何已安装的更新。 - There are no DLC installed for this title. - 这个游戏没有任何已安装的 DLC 。 + 这个游戏没有任何已安装的 DLC 。 - Successfully removed %1 installed DLC. - 成功删除游戏 %1 安装的 DLC 。 + 成功删除游戏 %1 安装的 DLC 。 - + Delete OpenGL Transferable Shader Cache? 删除 OpenGL 模式的着色器缓存? - + Delete Vulkan Transferable Shader Cache? 删除 Vulkan 模式的着色器缓存? - + Delete All Transferable Shader Caches? 删除所有的着色器缓存? - + Remove Custom Game Configuration? 移除自定义游戏设置? - + Remove Cache Storage? 移除缓存? - + Remove File 删除文件 - + Remove Play Time Data 清除游玩时间 - + Reset play time? 重置游玩时间? - - Error Removing Transferable Shader Cache - 删除着色器缓存时出错 + 删除着色器缓存时出错 - - A shader cache for this title does not exist. - 这个游戏的着色器缓存不存在。 + 这个游戏的着色器缓存不存在。 - Successfully removed the transferable shader cache. - 成功删除着色器缓存。 + 成功删除着色器缓存。 - Failed to remove the transferable shader cache. - 删除着色器缓存失败。 + 删除着色器缓存失败。 - Error Removing Vulkan Driver Pipeline Cache - 删除 Vulkan 驱动程序管线缓存时出错 + 删除 Vulkan 驱动程序管线缓存时出错 - Failed to remove the driver pipeline cache. - 删除驱动程序管线缓存失败。 + 删除驱动程序管线缓存失败。 - - Error Removing Transferable Shader Caches - 删除着色器缓存时出错 + 删除着色器缓存时出错 - Successfully removed the transferable shader caches. - 着色器缓存删除成功。 + 着色器缓存删除成功。 - Failed to remove the transferable shader cache directory. - 删除着色器缓存目录失败。 + 删除着色器缓存目录失败。 - - Error Removing Custom Configuration - 移除自定义游戏设置时出错 + 移除自定义游戏设置时出错 - A custom configuration for this title does not exist. - 这个游戏的自定义设置不存在。 + 这个游戏的自定义设置不存在。 - Successfully removed the custom game configuration. - 成功移除自定义游戏设置。 + 成功移除自定义游戏设置。 - Failed to remove the custom game configuration. - 移除自定义游戏设置失败。 + 移除自定义游戏设置失败。 - - + + RomFS Extraction Failed! RomFS 提取失败! - + There was an error copying the RomFS files or the user cancelled the operation. 复制 RomFS 文件时出错,或用户取消了操作。 - + Full 完整 - + Skeleton 框架 - + Select RomFS Dump Mode 选择 RomFS 转储模式 - + Please select the how you would like the RomFS dumped.<br>Full will copy all of the files into the new directory while <br>skeleton will only create the directory structure. 请选择 RomFS 转储的方式。<br>“完整” 会将所有文件复制到新目录中,而<br>“框架” 只会创建目录结构。 - + There is not enough free space at %1 to extract the RomFS. Please free up space or select a different dump directory at Emulation > Configure > System > Filesystem > Dump Root %1 没有足够的空间用于提取 RomFS。请保持足够的空间或于模拟—>设置—>系统—>文件系统—>转储根目录中选择一个其他目录。 - + Extracting RomFS... 正在提取 RomFS... - - - - - + + Cancel 取消 - + RomFS Extraction Succeeded! RomFS 提取成功! - - - + The operation completed successfully. 操作成功完成。 - Integrity verification couldn't be performed! - 无法执行完整性验证! + 无法执行完整性验证! - File contents were not checked for validity. - 未检查文件的完整性。 + 未检查文件的完整性。 - - Verifying integrity... - 正在验证完整性... + 正在验证完整性... - - Integrity verification succeeded! - 完整性验证成功! + 完整性验证成功! - - Integrity verification failed! - 完整性验证失败! + 完整性验证失败! - File contents may be corrupt. - 文件可能已经损坏。 + 文件可能已经损坏。 - - - - Create Shortcut - 创建快捷方式 + 创建快捷方式 - Do you want to launch the game in fullscreen? - 您想以全屏模式启动游戏吗? + 您想以全屏模式启动游戏吗? - Successfully created a shortcut to %1 - %1 的快捷方式创建成功 + %1 的快捷方式创建成功 - This will create a shortcut to the current AppImage. This may not work well if you update. Continue? - 这将为当前的游戏创建快捷方式。但在其更新后,快捷方式可能无法正常工作。是否继续? + 这将为当前的游戏创建快捷方式。但在其更新后,快捷方式可能无法正常工作。是否继续? - Failed to create a shortcut to %1 - %1 的快捷方式创建失败 + %1 的快捷方式创建失败 - Create Icon - 创建图标 + 创建图标 - Cannot create icon file. Path "%1" does not exist and cannot be created. - 无法创建图标文件。路径“ %1 ”不存在且无法被创建。 + 无法创建图标文件。路径“ %1 ”不存在且无法被创建。 - + + Warning: Outdated Game Format + + + + + You are using the deconstructed ROM directory format for this game, which is an outdated format that has been superseded by others such as NCA, NAX, XCI, or NSP. Deconstructed ROM directories lack icons, metadata, and update support.<br><br>For an explanation of the various Switch formats Eden supports, <a href='https://eden-emulator.github.io/wiki/overview-of-switch-game-formats'>check out our wiki</a>. This message will not be shown again. + + + + + Eden has encountered an error while running the video core. This is usually caused by outdated GPU drivers, including integrated ones. Please see the log for more details. For more information on accessing the log, please see the following page: <a href='https://yuzu-mirror.github.io/help/reference/log-files/'>How to Upload the Log File</a>. + + + + + %1<br>Please redump your files or ask on Discord/Revolt for help. + %1 signifies an error string. + + + + Error Opening %1 打开 %1 时出错 - + Select Directory 选择目录 - + Properties 属性 - + The game properties could not be loaded. 无法加载该游戏的属性信息。 - + Switch Executable (%1);;All Files (*.*) %1 is an identifier for the Switch executable file extensions. Switch 可执行文件 (%1);;所有文件 (*.*) - + Load File 加载文件 - + Open Extracted ROM Directory 打开提取的 ROM 目录 - + Invalid Directory Selected 选择的目录无效 - + The directory you have selected does not contain a 'main' file. 选择的目录不包含 “main” 文件。 - + Installable Switch File (*.nca *.nsp *.xci);;Nintendo Content Archive (*.nca);;Nintendo Submission Package (*.nsp);;NX Cartridge Image (*.xci) 可安装 Switch 文件 (*.nca *.nsp *.xci);;任天堂内容档案 (*.nca);;任天堂应用包 (*.nsp);;NX 卡带镜像 (*.xci) - + Install Files 安装文件 - + %n file(s) remaining 剩余 %n 个文件 + 剩余 %n 个文件 - + Installing file "%1"... 正在安装文件 "%1"... - - + + Install Results 安装结果 - + To avoid possible conflicts, we discourage users from installing base games to the NAND. Please, only use this feature to install updates and DLC. 为了避免可能存在的冲突,我们不建议将游戏本体安装到 NAND 中。 此功能仅用于安装游戏更新和 DLC 。 - + %n file(s) were newly installed - 最近安装了 %n 个文件 - + 最近安装了 %n 个文件 + 最近安装了 %n 个文件 - + %n file(s) were overwritten - %n 个文件被覆盖 - + %n 个文件被覆盖 + %n 个文件被覆盖 - + %n file(s) failed to install - %n 个文件安装失败 - + %n 个文件安装失败 + %n 个文件安装失败 - + System Application 系统应用 - + System Archive 系统档案 - + System Application Update 系统应用更新 - + Firmware Package (Type A) 固件包 (A型) - + Firmware Package (Type B) 固件包 (B型) - + Game 游戏 - + Game Update 游戏更新 - + Game DLC 游戏 DLC - + Delta Title 差量程序 - + Select NCA Install Type... 选择 NCA 安装类型... - + Please select the type of title you would like to install this NCA as: (In most instances, the default 'Game' is fine.) 请选择此 NCA 的程序类型: (在大多数情况下,选择默认的“游戏”即可。) - + Failed to Install 安装失败 - + The title type you selected for the NCA is invalid. 选择的 NCA 程序类型无效。 - + File not found 找不到文件 - + File "%1" not found 文件 "%1" 未找到 - + OK 确定 - - + + Hardware requirements not met 硬件不满足要求 - - + + Your system does not meet the recommended hardware requirements. Compatibility reporting has been disabled. 您的系统不满足运行 yuzu 的推荐配置。兼容性报告已被禁用。 - + Missing yuzu Account 未设置 yuzu 账户 - - In order to submit a game compatibility test case, you must link your eden account.<br><br/>To link your eden account, go to Emulation &gt; Configuration &gt; Web. + + In order to submit a game compatibility test case, you must set up your web token and username.<br><br/>To link your eden account, go to Emulation &gt; Configuration &gt; Web. - - Install decryption keys and restart eden before attempting to install firmware. + + + Install decryption keys and restart Eden before attempting to install firmware. - - Firmware installation cancelled, firmware may be in bad state, restart eden or re-install firmware. + + Select Dumped Firmware ZIP - - Encryption keys are missing. + + Zipped Archives (*.zip) - - Are you sure you want to close eden? + + Firmware cleanup failed - - - - eden + + Failed to clean up extracted firmware cache. +Check write permissions in the system temp directory and try again. +OS reported error: %1 - - The currently running application has requested eden to not exit. + + Please install firmware to use the Album applet. + + + + + Please install firmware to use the Cabinet applet. + + + + + Please install firmware to use the Mii editor. + + + + + Please install firmware to use the Controller Menu. + + + + + Please install firmware to use the Home Menu. + + + + + Firmware Corrupted + + + + + Firmware Too New + + + + + +Continue anyways? + + + + + Don't show again + + + + + Please install firmware to use Starter. + + + + + Are you sure you want to close Eden? + + + + + + + Eden + + + + + The currently running application has requested Eden to not exit. Would you like to bypass this and exit anyway? + + + Encryption keys are missing. + + In order to submit a game compatibility test case, you must link your yuzu account.<br><br/>To link your yuzu account, go to Emulation &gt; Configuration &gt; Web. 要提交游戏兼容性测试用例,您必须设置您的 yuzu 帐户。<br><br/>要设置您的 yuzu 帐户,请转到模拟 &gt; 设置 &gt; 网络。 - + Error opening URL 打开 URL 时出错 - + Unable to open the URL "%1". 无法打开 URL : "%1" 。 - + TAS Recording TAS 录制中 - + Overwrite file of player 1? 覆盖玩家 1 的文件? - + Invalid config detected 检测到无效配置 - + Handheld controller can't be used on docked mode. Pro controller will be selected. 掌机手柄无法在主机模式中使用。将会选择 Pro controller。 - - + + Amiibo Amiibo - - + + The current amiibo has been removed 当前的 Amiibo 已被移除。 - + Error 错误 - - + + The current game is not looking for amiibos 当前游戏并没有在寻找 Amiibos - + Amiibo File (%1);; All Files (*.*) Amiibo 文件 (%1);; 全部文件 (*.*) - + Load Amiibo 加载 Amiibo - + Error loading Amiibo data 加载 Amiibo 数据时出错 - + The selected file is not a valid amiibo 选择的文件并不是有效的 amiibo - + The selected file is already on use 选择的文件已在使用中 - + An unknown error occurred 发生了未知错误 - - Verification failed for the following files: %1 - 以下文件完整性验证失败: + 以下文件完整性验证失败: %1 - + + Keys not installed 密钥未安装 @@ -6502,273 +6736,234 @@ Would you like to bypass this and exit anyway? 在安装固件之前,请先安装密钥并重新启动 yuzu。 - + Select Dumped Firmware Source Location 选择固件位置 - Installing Firmware... - 正在安装固件... + 正在安装固件... - - - - Firmware install failed - 固件安装失败 + 固件安装失败 - Unable to locate potential firmware NCA files - 无法定位某些固件 NCA 文件 + 无法定位某些固件 NCA 文件 - Failed to delete one or more firmware file. - 无法删除某些固件文件。 + 无法删除某些固件文件。 Firmware installation cancelled, firmware may be in bad state, restart yuzu or re-install firmware. 固件安装被取消,安装的固件可能已经损坏。请重新启动 yuzu,或重新安装固件。 - One or more firmware files failed to copy into NAND. - 某些固件文件未能复制到 NAND。 + 某些固件文件未能复制到 NAND。 - Firmware integrity verification failed! - 固件完整性验证失败! + 固件完整性验证失败! - Select Dumped Keys Location - 选择密钥文件位置 + 选择密钥文件位置 - - - Decryption Keys install failed - 密钥文件安装失败 + 密钥文件安装失败 - prod.keys is a required decryption key file. - prod.keys 是必需的解密密钥文件。 + prod.keys 是必需的解密密钥文件。 - One or more keys failed to copy. - 某些密钥文件复制失败。 + 某些密钥文件复制失败。 - Decryption Keys install succeeded - 密钥文件安装成功 + 密钥文件安装成功 - Decryption Keys were successfully installed - 密钥文件已成功安装 + 密钥文件已成功安装 - Decryption Keys failed to initialize. Check that your dumping tools are up to date and re-dump keys. - 密钥文件无法初始化。请检查您的转储工具是否为最新版本,然后重新转储密钥文件。 + 密钥文件无法初始化。请检查您的转储工具是否为最新版本,然后重新转储密钥文件。 - - - - - - - + + + + + + No firmware available 无可用固件 - Please install the firmware to use the Album applet. - 请安装固件以使用相册小程序。 + 请安装固件以使用相册小程序。 - + Album Applet 相册小程序 - + Album applet is not available. Please reinstall firmware. 相册小程序不可用。请重新安装固件。 - Please install the firmware to use the Cabinet applet. - 请安装固件以使用 Cabinet 小程序。 + 请安装固件以使用 Cabinet 小程序。 - + Cabinet Applet Cabinet 小程序 - + Cabinet applet is not available. Please reinstall firmware. Cabinet 小程序不可用。请重新安装固件。 - Please install the firmware to use the Mii editor. - 请安装固件以使用 Mii editor。 + 请安装固件以使用 Mii editor。 - + Mii Edit Applet Mii Edit 小程序 - + Mii editor is not available. Please reinstall firmware. Mii editor 不可用。请重新安装固件。 - Please install the firmware to use the Controller Menu. - 请安装固件以使用控制器菜单。 + 请安装固件以使用控制器菜单。 - + Controller Applet 控制器小程序 - + Controller Menu is not available. Please reinstall firmware. 控制器菜单不可用。请重新安装固件。 - - Please install the firmware to use the Home Menu. - - - - - + Home Menu Applet - - + Home Menu is not available. Please reinstall firmware. - - Please install the firmware to use Starter. - - - - + Starter Applet - + Starter is not available. Please reinstall firmware. - - Please install firmware to use the home menu. - - - - + Capture Screenshot 捕获截图 - + PNG Image (*.png) PNG 图像 (*.png) - + Update Available - + Update %1 for Eden is available. Would you like to download it? - + TAS state: Running %1/%2 TAS 状态:正在运行 %1/%2 - + TAS state: Recording %1 TAS 状态:正在录制 %1 - + TAS state: Idle %1/%2 TAS 状态:空闲 %1/%2 - + TAS State: Invalid TAS 状态:无效 - + &Stop Running 停止运行 (&S) - + &Start 开始 (&S) - + Stop R&ecording 停止录制 (&E) - + R&ecord 录制 (&E) - + Building: %n shader(s) 正在编译 %n 个着色器文件 + 正在编译 %n 个着色器文件 - + Scale: %1x %1 is the resolution scaling factor 缩放比例: %1x - + Speed: %1% / %2% 速度: %1% / %2% - + Speed: %1% 速度: %1% @@ -6777,44 +6972,44 @@ Would you like to download it? FPS: %1 (未锁定) - + Game: %1 FPS FPS: %1 - + Frame: %1 ms 帧延迟: %1 毫秒 - + %1 %2 %1 %2 - - + + FSR FSR - + NO AA 抗锯齿关 - + VOLUME: MUTE 音量: 静音 - + VOLUME: %1% Volume percentage (e.g. 50%) 音量: %1% - + Derivation Components Missing 组件丢失 @@ -6823,12 +7018,12 @@ Would you like to download it? 密钥缺失。<br>请查看<a href='https://yuzu-emu.org/help/quickstart/'>yuzu 快速导航</a>以获得你的密钥、固件和游戏。 - + Select RomFS Dump Target 选择 RomFS 转储目标 - + Please select which RomFS you would like to dump. 请选择希望转储的 RomFS。 @@ -6841,7 +7036,7 @@ Would you like to download it? yuzu - + Are you sure you want to stop the emulation? Any unsaved progress will be lost. 您确定要停止模拟吗?未保存的进度将会丢失。 @@ -6854,102 +7049,102 @@ Would you like to bypass this and exit anyway? 您希望忽略并退出吗? - + None - + FXAA FXAA - + SMAA SMAA - + Nearest 邻近取样 - + Bilinear 双线性过滤 - + Bicubic 双三线过滤 - + Gaussian 高斯模糊 - + ScaleForce 强制缩放 - + Area - + Docked 主机模式 - + Handheld 掌机模式 - + Normal 正常 - + High - + Extreme 极高 - + Vulkan Vulkan - + OpenGL OpenGL - + Null - + GLSL GLSL - + GLASM GLASM - + SPIRV SPIRV @@ -6957,13 +7152,13 @@ Would you like to bypass this and exit anyway? GRenderWindow - - + + OpenGL not available! OpenGL 模式不可用! - + OpenGL shared contexts are not supported. 不支持 OpenGL 共享上下文。 @@ -6972,33 +7167,33 @@ Would you like to bypass this and exit anyway? yuzu 没有使用 OpenGL 进行编译。 - - eden has not been compiled with OpenGL support. + + Eden has not been compiled with OpenGL support. - - + + 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.6! 初始化 OpenGL 4.6 时出错! - + Your GPU may not support OpenGL 4.6, or you do not have the latest graphics driver.<br><br>GL Renderer:<br>%1 您的 GPU 可能不支持 OpenGL 4.6 ,或者您没有安装最新的显卡驱动。<br><br>GL 渲染器:<br>%1 - + Your GPU may not support one or more required OpenGL extensions. Please ensure you have the latest graphics driver.<br><br>GL Renderer:<br>%1<br><br>Unsupported extensions:<br>%2 您的 GPU 可能不支持某些必需的 OpenGL 扩展。请确保您已经安装最新的显卡驱动。<br><br>GL 渲染器:<br>%1<br><br>不支持的扩展:<br>%2 @@ -7006,128 +7201,128 @@ Would you like to bypass this and exit anyway? GameList - + Favorite 收藏 - + Start Game 开始游戏 - + Start Game without Custom Configuration 使用公共设置项进行游戏 - + Open Save Data Location 打开存档位置 - + Open Mod Data Location 打开 MOD 数据位置 - + Open Transferable Pipeline Cache 打开可转移着色器缓存 - + Remove 删除 - + Remove Installed Update 删除已安装的游戏更新 - + Remove All Installed DLC 删除所有已安装 DLC - + Remove Custom Configuration 删除自定义设置 - + Remove Play Time Data 清除游玩时间 - + Remove Cache Storage 移除缓存 - + Remove OpenGL Pipeline Cache 删除 OpenGL 着色器缓存 - + Remove Vulkan Pipeline Cache 删除 Vulkan 着色器缓存 - + Remove All Pipeline Caches 删除所有着色器缓存 - + Remove All Installed Contents 删除所有安装的项目 - + Dump RomFS 转储 RomFS - + Dump RomFS to SDMC 转储 RomFS 到 SDMC - + Verify Integrity 完整性验证 - + Copy Title ID to Clipboard 复制游戏 ID 到剪贴板 - + Navigate to GameDB entry 查看兼容性报告 - + Create Shortcut 创建快捷方式 - + Add to Desktop 添加到桌面 - + Add to Applications Menu 添加到应用程序菜单 - + Configure Game @@ -7136,62 +7331,62 @@ Would you like to bypass this and exit anyway? 属性 - + Scan Subfolders 扫描子文件夹 - + Remove Game Directory 移除游戏目录 - + ▲ Move Up ▲ 向上移动 - + ▼ Move Down ▼ 向下移动 - + Open Directory Location 打开目录位置 - + Clear 清除 - + Name 名称 - + Compatibility 兼容性 - + Add-ons 附加项 - + File type 文件类型 - + Size 大小 - + Play time 游玩时间 @@ -7199,62 +7394,62 @@ Would you like to bypass this and exit anyway? GameListItemCompat - + Ingame 可进游戏 - + Game starts, but crashes or major glitches prevent it from being completed. 游戏可以开始,但会出现崩溃或严重故障导致游戏无法继续。 - + Perfect 完美 - + Game can be played without issues. 游戏可以毫无问题地运行。 - + Playable 可运行 - + Game functions with minor graphical or audio glitches and is playable from start to finish. 游戏可以从头到尾完整地运行,但可能出现轻微的图形或音频故障。 - + Intro/Menu 开场/菜单 - + Game loads, but is 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. 游戏尚未经过测试。 @@ -7262,7 +7457,7 @@ Would you like to bypass this and exit anyway? GameListPlaceholder - + Double-click to add a new folder to the game list 双击添加新的游戏文件夹 @@ -7270,19 +7465,20 @@ Would you like to bypass this and exit anyway? GameListSearchField - + %1 of %n result(s) %1 / %n 个结果 + %1 / %n 个结果 - + Filter: 搜索: - + Enter pattern to filter 搜索游戏 @@ -7364,7 +7560,7 @@ Would you like to bypass this and exit anyway? - Failed to announce the room to the public lobby. In order to host a room publicly, you must have a valid eden account configured in Emulation -> Configure -> Web. If you do not want to publish a room in the public lobby, then select Unlisted instead. + Failed to announce the room to the public lobby. In order to host a room publicly, you must have a valid Eden 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: @@ -7378,91 +7574,91 @@ Debug Message: Hotkeys - + Audio Mute/Unmute 开启/关闭静音 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Main Window 主窗口 - + Audio Volume Down 调低音量 - + Audio Volume Up 调高音量 - + Capture Screenshot 捕获截图 - + Change Adapting Filter 更改窗口滤镜 - + Change Docked Mode 更改主机运行模式 - + Change GPU Accuracy 更改 GPU 精度 - + Configure 设置 - + Configure Current Game - + Continue/Pause Emulation 继续/暂停模拟 - + Exit Fullscreen 退出全屏 @@ -7471,97 +7667,97 @@ Debug Message: 退出 yuzu - - Exit eden + + Exit Eden - + Fullscreen 全屏 - + Load File 加载文件 - + Load/Remove Amiibo 加载/移除 Amiibo - + Multiplayer Browse Public Game Lobby 浏览公共游戏大厅 - + Multiplayer Create Room 创建房间 - + Multiplayer Direct Connect to Room 直接连接到房间 - + Multiplayer Leave Room 离开房间 - + Multiplayer Show Current Room 显示当前房间 - + Restart Emulation 重新启动模拟 - + Stop Emulation 停止模拟 - + TAS Record TAS 录制 - + TAS Reset 重置 TAS - + TAS Start/Stop TAS 开始/停止 - + Toggle Filter Bar 显示/隐藏搜索栏 - + Toggle Framerate Limit 打开/关闭帧率限制 - + Toggle Mouse Panning 打开/关闭鼠标平移 - + Toggle Renderdoc Capture 切换到 Renderdoc 捕获截图 - + Toggle Status Bar 显示/隐藏状态栏 @@ -7569,22 +7765,22 @@ Debug Message: InstallDialog - + Please confirm these are the files you wish to install. 请确认这些您想要安装的文件。 - + Installing an Update or DLC will overwrite the previously installed one. 安装游戏更新或 DLC 时,会覆盖以前安装的内容。 - + Install 安装 - + Install Files to NAND 安装文件到 NAND @@ -7592,7 +7788,7 @@ Debug Message: LimitableInputDialog - + The text can't contain any of the following characters: %1 文本中不能包含以下字符: @@ -7739,152 +7935,207 @@ Debug Message: 最近文件 (&R) - + + Open &Eden Folders + + + + &Emulation 模拟 (&E) - + &View 视图 (&V) - + &Reset Window Size 重置窗口大小 (&R) - + &Debugging 调试 (&D) - + Reset Window Size to &720p 重置窗口大小为720p (&7) - + Reset Window Size to 720p 重置窗口大小为720p - + Reset Window Size to &900p 重置窗口大小为900p (&9) - + Reset Window Size to 900p 重置窗口大小为900p - + Reset Window Size to &1080p 重置窗口大小为1080p (&1) - + Reset Window Size to 1080p 重置窗口大小为1080p - + &Multiplayer 多人游戏 (&M) - + &Tools 工具 (&T) - + &Amiibo Amiibo (&A) - + &TAS TAS (&T) - + &Create Home Menu Shortcut - + &Help 帮助 (&H) - + &Install Files to NAND... 安装文件到 NAND... (&I) - + L&oad File... 加载文件... (&O) - + Load &Folder... 加载文件夹... (&F) - + E&xit 退出 (&X) - + &Pause 暂停 (&P) - + &Stop 停止 (&S) - + &Verify Installed Contents 验证已安装内容的完整性 (&V) - - &About eden + + &Root Data Folder - - Open &eden Folder + + &NAND Folder - + + &SDMC Folder + + + + + &Mod Folder + + + + + &Log Folder + + + + + From Folder + + + + + From ZIP + + + + + &X + + + + + X (Twitter) + + + + + &Revolt + + + + + Revolt + + + + + &Eden Dependencies + + + + Open Home Menu - + &Discord - + Open &Setup - + &Desktop - + &Application Menu @@ -7893,97 +8144,97 @@ Debug Message: 关于 yuzu (&A) - + Single &Window Mode 单窗口模式 (&W) - + Con&figure... 设置... (&F) - + Ctrl+, - + Display D&ock Widget Headers 显示停靠小部件的标题 (&O) - + Show &Filter Bar 显示搜索栏 (&F) - + Show &Status Bar 显示状态栏 (&S) - + Show Status Bar 显示状态栏 - + &Browse Public Game Lobby 浏览公共游戏大厅 (&B) - + &Create Room 创建房间 (&C) - + &Leave Room 离开房间 (&L) - + &Direct Connect to Room 直接连接到房间 (&D) - + &Show Current Room 显示当前房间 (&S) - + F&ullscreen 全屏 (&U) - + &Restart 重新启动 (&R) - + Load/Remove &Amiibo... 加载/移除 Amiibo... (&A) - + &Report Compatibility 报告兼容性 (&R) - + Open &Mods Page 打开 Mod 页面 (&M) - + Open &Quickstart Guide 查看快速导航 (&Q) - + &FAQ FAQ (&F) @@ -7992,77 +8243,82 @@ Debug Message: 打开 yuzu 文件夹 (&Y) - + &Capture Screenshot 捕获截图 (&C) - + Open &Album 打开相册 (&A) - + &Set Nickname and Owner 设置昵称及所有者 (&S) - + &Delete Game Data 删除游戏数据 (&D) - + &Restore Amiibo 重置 Amiibo (&R) - + &Format Amiibo 格式化 Amiibo (&F) - + Open &Mii Editor 打开 Mii Editor (&M) - + &Configure TAS... 配置 TAS... (&C) - + Configure C&urrent Game... 配置当前游戏... (&U) - + &Start 开始 (&S) - + &Reset 重置 (&R) - + R&ecord 录制 (&E) - + Open &Controller Menu 打开控制器菜单 (&C) - + Install Firmware 安装固件 - + + &About Eden + + + + Install Decryption Keys 安装密钥文件 @@ -8070,26 +8326,36 @@ Debug Message: MicroProfileDialog - &MicroProfile - MicroProfile (&M) + MicroProfile (&M) MigrationWorker - + Data was migrated successfully. - + Linking the old directory failed. You may need to re-run with administrative privileges on Windows. OS gave error: %1 - + + + +Note that your configuration and data will be shared with %1. +If this is not desirable, delete the following files: +%2 +%3 +%4 + + + + If you wish to clean up the files which were left in the old data location, you can do so by deleting the following directory: @@ -8149,37 +8415,37 @@ If you wish to clean up the files which were left in the old data location, you MultiplayerState - + Current connection status 当前的连接状态 - + Not Connected. Click here to find a room! 未连接。点击此处查找一个房间! - + Not Connected 未连接 - + Connected 已连接 - + New Messages Received 收到了新消息 - + Error 错误 - + Failed to update the room information. Please check your Internet connection and try hosting the room again. Debug Message: 更新房间信息时失败。请检查网络连接并尝试重开房间。 @@ -8371,56 +8637,56 @@ p, li { white-space: pre-wrap; } 不在玩游戏 - + Installed SD Titles SD 卡中安装的项目 - + Installed NAND Titles NAND 中安装的项目 - + System Titles 系统项目 - + Add New Game Directory 添加游戏目录 - + Favorites 收藏 - - + + Shift Shift - - + + Ctrl Ctrl - - + + Alt Alt - - - - + + + + [not set] [未设置] @@ -8431,14 +8697,14 @@ p, li { white-space: pre-wrap; } 方向键 %1 %2 - - - - - - - - + + + + + + + + Axis %1%2 轴 %1%2 @@ -8449,357 +8715,357 @@ p, li { white-space: pre-wrap; } 按键 %1 - - - - - - + + + + + + [unknown] [未知] - - - + + + Left - - - + + + Right - - - + + + Down - - - + + + Up - - + + Z Z - - + + R R - - + + L L - - + + A A - - + + B B - - + + X X - - + + Y Y - - + + Start 开始 - - + + L1 L1 - - + + L2 L2 - - + + L3 L3 - - + + R1 R1 - - + + R2 R2 - - + + R3 R3 - - + + Circle - - + + Cross - - + + Square - - + + Triangle Δ - - + + Share 分享 - - + + Options 选项 - - + + [undefined] [未指定] - + %1%2 %1%2 - - + + [invalid] [无效] - - + + %1%2Hat %3 %1%2方向键 %3 - - - + + + %1%2Axis %3 %1%2轴 %3 - - + + %1%2Axis %3,%4,%5 %1%2轴 %3,%4,%5 - - + + %1%2Motion %3 %1%2体感 %3 - - + + %1%2Button %3 %1%2按键 %3 - - + + [unused] [未使用] - + ZR ZR - + ZL ZL - + SR SR - + SL SL - + Stick L 左摇杆 - + Stick R 右摇杆 - + Plus - + Minus - - + + Home Home - + Capture 截图 - + Touch 触摸 - + Wheel Indicates the mouse wheel 鼠标滚轮 - + Backward 后退 - + Forward 前进 - + Task 任务键 - + Extra 额外按键 - + %1%2%3%4 %1%2%3%4 - - + + %1%2%3Hat %4 %1%2%3方向键 %4 - - + + %1%2%3Axis %4 %1%2%3轴 %4 - - + + %1%2%3Button %4 %1%2%3 按键 %4 - - + + Migration - + - - + + No - + You can manually re-trigger this prompt by deleting the new config directory: %1 - + Migrating - + Migrating, this may take a while... @@ -8917,6 +9183,300 @@ p, li { white-space: pre-wrap; } 您想要恢复这个 amiibo 吗? + + QtCommon::Content + + + Installing Firmware... + 正在安装固件... + + + + + + Cancel + 取消 + + + + Firmware integrity verification failed! + 固件完整性验证失败! + + + + + Verification failed for the following files: + +%1 + 以下文件完整性验证失败: + +%1 + + + + + Verifying integrity... + 正在验证完整性... + + + + + Integrity verification succeeded! + 完整性验证成功! + + + + + The operation completed successfully. + + + + + + Integrity verification failed! + 完整性验证失败! + + + + File contents may be corrupt or missing. + + + + + Integrity verification couldn't be performed + + + + + Firmware installation cancelled, firmware may be in a bad state or corrupted. File contents could not be checked for validity. + + + + + Select Dumped Keys Location + 选择密钥文件位置 + + + + Decryption Keys install succeeded + 密钥文件安装成功 + + + + Decryption Keys were successfully installed + 密钥文件已成功安装 + + + + Decryption Keys install failed + 密钥文件安装失败 + + + + QtCommon::Game + + + Error Removing Contents + 删除内容时出错 + + + + Error Removing Update + 删除更新时出错 + + + + Error Removing DLC + 删除 DLC 时出错 + + + + The base game is not installed in the NAND and cannot be removed. + 该游戏未安装于 NAND 中,无法删除。 + + + + There is no update installed for this title. + 这个游戏没有任何已安装的更新。 + + + + There are no DLCs installed for this title. + + + + + + + + Successfully Removed + 删除成功 + + + + Successfully removed %1 installed DLC. + 成功删除游戏 %1 安装的 DLC 。 + + + + + Error Removing Transferable Shader Cache + 删除着色器缓存时出错 + + + + + A shader cache for this title does not exist. + 这个游戏的着色器缓存不存在。 + + + + Successfully removed the transferable shader cache. + 成功删除着色器缓存。 + + + + Failed to remove the transferable shader cache. + 删除着色器缓存失败。 + + + + Error Removing Vulkan Driver Pipeline Cache + 删除 Vulkan 驱动程序管线缓存时出错 + + + + Failed to remove the driver pipeline cache. + 删除驱动程序管线缓存失败。 + + + + + Error Removing Transferable Shader Caches + 删除着色器缓存时出错 + + + + Successfully removed the transferable shader caches. + 着色器缓存删除成功。 + + + + Failed to remove the transferable shader cache directory. + 删除着色器缓存目录失败。 + + + + + Error Removing Custom Configuration + 移除自定义游戏设置时出错 + + + + A custom configuration for this title does not exist. + 这个游戏的自定义设置不存在。 + + + + Successfully removed the custom game configuration. + 成功移除自定义游戏设置。 + + + + Failed to remove the custom game configuration. + 移除自定义游戏设置失败。 + + + + Reset Metadata Cache + 重置缓存数据 + + + + The metadata cache is already empty. + 缓存数据已为空。 + + + + The operation completed successfully. + + + + + The metadata cache couldn't be deleted. It might be in use or non-existent. + 缓存数据删除失败。它可能不存在或正在被使用。 + + + + Create Shortcut + 创建快捷方式 + + + + Do you want to launch the game in fullscreen? + 您想以全屏模式启动游戏吗? + + + + Shortcut Created + + + + + Successfully created a shortcut to %1 + %1 的快捷方式创建成功 + + + + Shortcut may be Volatile! + + + + + This will create a shortcut to the current AppImage. This may not work well if you update. Continue? + 这将为当前的游戏创建快捷方式。但在其更新后,快捷方式可能无法正常工作。是否继续? + + + + Failed to Create Shortcut + + + + + Failed to create a shortcut to %1 + %1 的快捷方式创建失败 + + + + Create Icon + 创建图标 + + + + Cannot create icon file. Path "%1" does not exist and cannot be created. + 无法创建图标文件。路径“ %1 ”不存在且无法被创建。 + + + + No firmware available + 无可用固件 + + + + Please install firmware to use the home menu. + + + + + Home Menu Applet + + + + + Home Menu is not available. Please reinstall firmware. + + + QtControllerSelectorDialog @@ -9212,7 +9772,7 @@ Please try again or contact the developer of the software. QtProfileSelectionDialog - + %1 %2 %1 is the profile username, %2 is the formatted UUID (e.g. 00112233-4455-6677-8899-AABBCCDDEEFF)) @@ -9220,7 +9780,7 @@ Please try again or contact the developer of the software. %2 - + Users 用户 @@ -9344,7 +9904,7 @@ p, li { white-space: pre-wrap; } WaitTreeCallstack - + Call stack 调用栈 @@ -9352,12 +9912,12 @@ p, li { white-space: pre-wrap; } WaitTreeSynchronizationObject - + [%1] %2 [%1] %2 - + waited by no thread 没有等待的线程 @@ -9365,102 +9925,102 @@ p, li { white-space: pre-wrap; } WaitTreeThread - + runnable 可运行 - + paused 已暂停 - + sleeping 睡眠中 - + waiting for IPC reply 等待 IPC 响应 - + waiting for objects 等待对象 - + waiting for condition variable 等待条件变量 - + waiting for address arbiter 等待 address arbiter - + waiting for suspend resume 等待挂起的线程 - + waiting 等待中 - + initialized 初始化完毕 - + terminated 线程终止 - + unknown 未知 - + PC = 0x%1 LR = 0x%2 PC = 0x%1 LR = 0x%2 - + ideal ideal - + core %1 核心 %1 - + processor = %1 处理器 = %1 - + affinity mask = %1 关联掩码 = %1 - + thread id = %1 线程 ID = %1 - + priority = %1(current) / %2(normal) 优先级 = %1 (实时) / %2 (正常) - + last running ticks = %1 最后运行频率 = %1 @@ -9468,7 +10028,7 @@ p, li { white-space: pre-wrap; } WaitTreeThreadList - + waited by thread 等待中的线程 @@ -9476,7 +10036,7 @@ p, li { white-space: pre-wrap; } WaitTreeWidget - + &Wait Tree 等待树 (&W) diff --git a/dist/languages/zh_TW.ts b/dist/languages/zh_TW.ts index 8e8b20e963..5b0fa57d03 100644 --- a/dist/languages/zh_TW.ts +++ b/dist/languages/zh_TW.ts @@ -13,12 +13,12 @@ - About eden + About Eden - <html><head/><body><p><span style=" font-size:28pt;">eden</span></p></body></html> + <html><head/><body><p><span style=" font-size:28pt;">Eden</span></p></body></html> @@ -34,8 +34,8 @@ p, li { white-space: pre-wrap; } hr { height: 1px; border-width: 0; } li.unchecked::marker { content: "\2610"; } li.checked::marker { content: "\2612"; } -</style></head><body style=" font-family:'Adwaita Sans'; font-size:11pt; font-weight:400; font-style:normal;"> -<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;">eden is an experimental open-source emulator for the Nintendo Switch licensed under GPLv3.0+ which is based on the yuzu emulator which ended development back in March 2024. <br /><br />This software should not be used to play games you have not legally obtained.</span></p></body></html> +</style></head><body style=" font-family:'Noto Sans'; font-size:9pt; font-weight:400; font-style:normal;"> +<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;">Eden is an experimental open-source emulator for the Nintendo Switch licensed under GPLv3.0+ which is based on the yuzu emulator which ended development back in March 2024. <br /><br />This software should not be used to play games you have not legally obtained.</span></p></body></html> @@ -72,32 +72,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 確定 @@ -397,134 +397,134 @@ This would ban both their forum username and their IP address. ConfigurationShared - + % % - + Amiibo editor Amiibo 编辑器 - + Controller configuration 控制器设置 - + Data erase 清除数据 - + Error 錯誤 - + Net connect 网络连接 - + Player select 选择玩家 - + Software keyboard 軟體鍵盤 - + Mii Edit Mii Edit - + Online web 在线网站 - + Shop 商店 - + Photo viewer 照片查看器 - + Offline web 离线网络 - + Login share 第三方账号登录 - + Wifi web auth Wifi 网络认证 - + My page 我的主页 - + Output Engine: 輸出引擎: - + Output Device: 輸出裝置: - + Input Device: 輸入裝置: - + Mute audio 静音 - + Volume: 音量: - + Mute audio when in background 模擬器在背景執行時靜音 - + Multicore CPU Emulation 多核心 CPU 模擬 - + This option increases CPU emulation thread use from 1 to the Switch’s maximum of 4. This is mainly a debug option and shouldn’t be disabled. 此选项将 CPU 模拟线程的数量从 1 增加到 Switch 实机的最大值 4。 这是调试选项,不应被禁用。 - + Memory Layout 内存布局 - + Increases the amount of emulated RAM from the stock 4GB of the retail Switch to the developer kit's 8/6GB. It’s doesn’t improve stability or performance and is intended to let big texture mods fit in emulated RAM. Enabling it will increase memory use. It is not recommended to enable unless a specific game with a texture mod needs it. @@ -533,12 +533,12 @@ Enabling it will increase memory use. It is not recommended to enable unless a s 启用时将增加内存使用量。建议不要启用,除非具有纹理 Mod 的某些游戏需要。 - + Limit Speed Percent 執行速度限制 - + Controls the game's maximum rendering speed, but it’s up to each game if it runs faster or not. 200% for a 30 FPS game is 60 FPS, and for a 60 FPS game it will be 120 FPS. Disabling it means unlocking the framerate to the maximum your PC can reach. @@ -547,141 +547,118 @@ Disabling it means unlocking the framerate to the maximum your PC can reach. - - Synchronize Core Speed - - - - - Synchronizes CPU core speed with the game's maximum rendering speed to boost FPS without affecting game speed (animations, physics, etc.). -Compatibility varies by game; many (especially older ones) may not respond well. -Can help reduce stuttering at lower framerates. - - - - + Accuracy: 精度: - + This setting controls the accuracy of the emulated CPU. Don't change this unless you know what you are doing. 此选项控制模拟 CPU 的精度。 如果您不确定,就不要更改此项。 - - + + Backend: 后端: - - Fast CPU Time - - - - - Overclocks the emulated CPU to remove some FPS limiters. Weaker CPUs may see reduced performance, and certain games may behave improperly. -Use Boost (1700MHz) to run at the Switch's highest native clock, or Fast (2000MHz) to run at 2x clock. - - - - + Unfuse FMA (improve performance on CPUs without FMA) 不使用 FMA 指令集(能使不支援 FMA 指令集的 CPU 提高效能) - + This option improves speed by reducing accuracy of fused-multiply-add instructions on CPUs without native FMA support. 该选项通过降低积和熔加运算的精度来提高模拟器在不支持 FMA 指令集 CPU 上的运行速度。 - + Faster FRSQRTE and FRECPE 更快的 FRSQRTE 和 FRECPE - + This option improves the speed of some approximate floating-point functions by using less accurate native approximations. 该选项通过使用精度较低的近似值来提高某些浮点函数的运算速度。 - + Faster ASIMD instructions (32 bits only) 快速 ASIMD 指令(僅限 32 位元) - + This option improves the speed of 32 bits ASIMD floating-point functions by running with incorrect rounding modes. 该选项通过不正确的舍入模式来提高 32 位 ASIMD 浮点函数的运行速度。 - + Inaccurate NaN handling 低精度 NaN 處理 - + This option improves speed by removing NaN checking. Please note this also reduces accuracy of certain floating-point instructions. 该选项通过取消非数检查来提高速度。 请注意,这也会降低某些浮点指令的精确度。 - + Disable address space checks 停用位址空間檢查 - + This option improves speed by eliminating a safety check before every memory read/write in guest. Disabling it may allow a game to read/write the emulator's memory. 此选项通过取消每次模拟内存读/写前的安全检查来提高速度。 禁用此选项可能会允许游戏读/写模拟器自己的内存。 - + Ignore global monitor 忽略全局监视器 - + This option improves speed by relying only on the semantics of cmpxchg to ensure safety of exclusive access instructions. Please note this may result in deadlocks and other race conditions. 此选项仅通过 cmpxchg 指令来提高速度,以确保独占访问指令的安全性。 请注意,这可能会导致死锁和其他问题。 - + API: API: - + Switches between the available graphics APIs. Vulkan is recommended in most cases. 切换图形 API。 大多数情况下建议使用 Vulkan。 - + Device: 裝置: - + This setting selects the GPU to use with the Vulkan backend. 切换图形 API 为 Vulkan 时使用的 GPU。 - + Shader Backend: 著色器後端: - + The shader backend to use for the OpenGL renderer. GLSL is the fastest in performance and the best in rendering accuracy. GLASM is a deprecated NVIDIA-only backend that offers much better shader building performance at the cost of FPS and rendering accuracy. @@ -692,12 +669,12 @@ GLASM 仅限于 NVIDIA GPU,以 FPS 和渲染精度为代价提供更好的着 SPIR-V 编译速度最快,但在大多数 GPU 驱动程序上表现很差。 - + Resolution: 解析度: - + Forces the game to render at a different resolution. Higher resolutions require much more VRAM and bandwidth. Options lower than 1X can cause rendering issues. @@ -706,27 +683,27 @@ Options lower than 1X can cause rendering issues. 低于 1X 的选项可能造成渲染问题。 - + Window Adapting Filter: 視窗濾鏡: - + FSR Sharpness: FSR 清晰度: - + Determines how sharpened the image will look while using FSR’s dynamic contrast. 指定使用 FSR 时图像的锐化程度。 - + Anti-Aliasing Method: 抗鋸齒方式: - + The anti-aliasing method to use. SMAA offers the best quality. FXAA has a lower performance impact and can produce a better and more stable picture under very low resolutions. @@ -735,12 +712,12 @@ FXAA has a lower performance impact and can produce a better and more stable pic 快速近似抗锯齿对性能影响较小,可以在非常低的分辨率下生成更好、更稳定的图像。 - + Fullscreen Mode: 全螢幕模式: - + The method used to render the window in fullscreen. Borderless offers the best compatibility with the on-screen keyboard that some games request for input. Exclusive fullscreen may offer better performance and better Freesync/Gsync support. @@ -749,12 +726,12 @@ Exclusive fullscreen may offer better performance and better Freesync/Gsync supp 独占全屏提供更好的性能和 Freesync/Gsync 支持。 - + Aspect Ratio: 長寬比: - + Stretches the game to fit the specified aspect ratio. Switch games only support 16:9, so custom game mods are required to get other ratios. Also controls the aspect ratio of captured screenshots. @@ -763,49 +740,36 @@ Switch 游戏只支持 16:9,因此需要 Mod 才能实现其他比例。 此选项也控制捕获的屏幕截图的纵横比。 - + Use disk pipeline cache 使用硬碟管線快取 - + Allows saving shaders to storage for faster loading on following game boots. Disabling it is only intended for debugging. 将生成的着色器保存到硬盘,提高后续游戏过程中的着色器加载速度。 请仅在调试时禁用此项。 - - Optimize SPIRV output shader - - - - - Runs an additional optimization pass over generated SPIRV shaders. -Will increase time required for shader compilation. -May slightly improve performance. -This feature is experimental. - - - - + Use asynchronous GPU emulation 使用非同步 CPU 模擬 - + Uses an extra CPU thread for rendering. This option should always remain enabled. 使用额外的 CPU 线程进行渲染。 此选项应始终保持启用状态。 - + NVDEC emulation: NVDEC 模擬方式: - + Specifies how videos should be decoded. It can either use the CPU or the GPU for decoding, or perform no decoding at all (black screen on videos). In most cases, GPU decoding provides the best performance. @@ -814,12 +778,12 @@ In most cases, GPU decoding provides the best performance. 大多数情况下,使用 GPU 解码将提供最好的性能。 - + ASTC Decoding Method: ASTC 纹理解码方式: - + This option controls how ASTC textures should be decoded. CPU: Use the CPU for decoding, slowest but safest method. GPU: Use the GPU's compute shaders to decode ASTC textures, recommended for most games and users. @@ -832,34 +796,33 @@ CPU 异步模拟:使用 CPU 在 ASTC 纹理到达时对其进行解码。 消除 ASTC 解码带来的卡顿,但在解码时可能出现渲染问题。 - + ASTC Recompression Method: ASTC 纹理重压缩方式: - + Almost all desktop and laptop dedicated GPUs lack support for ASTC textures, forcing the emulator to decompress to an intermediate format any card supports, RGBA8. This option recompresses RGBA8 to either the BC1 or BC3 format, saving VRAM but negatively affecting image quality. 几乎所有台式机和笔记本电脑 GPU 都不支持 ASTC 纹理,这迫使模拟器解压纹理到 GPU 支持的中间格式 RGBA8。 此选项可将 RGBA8 重新压缩为 BC1 或 BC3 格式,节省 VRAM,但会对图像质量产生负面影响。 - + VRAM Usage Mode: VRAM 使用模式: - Selects whether the emulator should prefer to conserve memory or make maximum usage of available video memory for performance. Has no effect on integrated graphics. Aggressive mode may severely impact the performance of other applications such as recording software. - 指定模拟器倾向于节省 VRAM 或最大限度利用 VRAM 来提高性能。对核芯显卡没有影响。激进模式可能会严重影响其他应用程序(如录屏软件)的性能。 + 指定模拟器倾向于节省 VRAM 或最大限度利用 VRAM 来提高性能。对核芯显卡没有影响。激进模式可能会严重影响其他应用程序(如录屏软件)的性能。 - + VSync Mode: 垂直同步模式: - + FIFO (VSync) does not drop frames or exhibit tearing but is limited by the screen refresh rate. FIFO Relaxed is similar to FIFO but allows tearing as it recovers from a slow down. Mailbox can have lower latency than FIFO and does not tear but may drop frames. @@ -870,51 +833,49 @@ Mailbox 具有比 FIFO 更低的延迟,不会产生撕裂但可能会掉帧。 Immediate (无同步)只显示可用内容,并可能产生撕裂。 - + Enable asynchronous presentation (Vulkan only) 启用异步帧提交 (仅限 Vulkan) - + Slightly improves performance by moving presentation to a separate CPU thread. 将帧提交移动到单独的 CPU 线程,略微提高性能。 - + Force maximum clocks (Vulkan only) 强制最大时钟 (仅限 Vulkan 模式) - + Runs work in the background while waiting for graphics commands to keep the GPU from lowering its clock speed. 在后台运行的同时等待图形命令,以防止 GPU 降低时钟速度。 - + Anisotropic Filtering: 各向異性過濾: - + Controls the quality of texture rendering at oblique angles. It’s a light setting and safe to set at 16x on most GPUs. 控制斜角的纹理渲染质量。 这是一个渲染相关的选项,在大多数 GPU 上设置为 16x 是安全的。 - Accuracy Level: - 精度: + 精度: - GPU emulation accuracy. Most games render fine with Normal, but High is still required for some. Particles tend to only render correctly with High accuracy. Extreme should only be used for debugging. This option can be changed while playing. Some games may require booting on high to render properly. - 指定 GPU 模拟精度。 + 指定 GPU 模拟精度。 大多数游戏设置为“正常”时渲染效果良好,但某些游戏需要设置为“高”。 粒子效果只能以高精度才能正确渲染。 “极高”只用于调试。 @@ -922,12 +883,12 @@ Some games may require booting on high to render properly. 某些游戏可能在启动时设置为“高”才能正确渲染。 - + Use asynchronous shader building (Hack) 使用非同步著色器編譯(不穩定) - + Enables asynchronous shader compilation, which may reduce shader stutter. This feature is experimental. 启用异步着色器编译,可能会减少着色器卡顿。 @@ -942,24 +903,24 @@ This feature is experimental. 啟用快速 GPU 時間。此選項將強制大多數遊戲以其最高解析度執行。 - + Use Vulkan pipeline cache 启用 Vulkan 管线缓存 - + Enables GPU vendor-specific pipeline cache. This option can improve shader loading time significantly in cases where the Vulkan driver does not store pipeline cache files internally. 启用 GPU 供应商专用的管线缓存。 在 Vulkan 驱动程序内部不存储管线缓存的情况下,此选项可显著提高着色器加载速度。 - + Enable Compute Pipelines (Intel Vulkan Only) 启用计算管线 (仅限 Intel 显卡 Vulkan 模式) - + Enable compute pipelines, required by some games. This setting only exists for Intel proprietary drivers, and may crash if enabled. Compute pipelines are always enabled on all other drivers. @@ -968,111 +929,111 @@ Compute pipelines are always enabled on all other drivers. 在其他的驱动程序上将始终启用计算管线。 - + Enable Reactive Flushing 启用反应性刷新 - + Uses reactive flushing instead of predictive flushing, allowing more accurate memory syncing. 使用反应性刷新取代预测性刷新,从而更精确地同步内存。 - + Sync to framerate of video playback 播放视频时帧率同步 - + Run the game at normal speed during video playback, even when the framerate is unlocked. 在视频播放期间以正常速度运行游戏,即使帧率未锁定。 - + Barrier feedback loops 屏障反馈循环 - + Improves rendering of transparency effects in specific games. 改进某些游戏中透明效果的渲染。 - + RNG Seed 隨機種子 - + Controls the seed of the random number generator. Mainly used for speedrunning purposes. 控制随机数生成器的种子。 主要用于快速通关。 - + Device Name 裝置名稱 - + The name of the emulated Switch. 模拟 Switch 主机的名称。 - + Custom RTC Date: 自定义系统时间: - + This option allows to change the emulated clock of the Switch. Can be used to manipulate time in games. 此选项允许更改 Switch 的模拟时钟。 可用于在游戏中操纵时间。 - + Language: 语言: - + Note: this can be overridden when region setting is auto-select 注意:當“區域”設定是“自動選擇”時,此設定可能會被覆寫。 - + Region: 區域: - + The region of the emulated Switch. 模拟 Switch 主机的所属地区。 - + Time Zone: 時區: - + The time zone of the emulated Switch. 模拟 Switch 主机的所属时区。 - + Sound Output Mode: 音訊輸出模式: - + Console Mode: 控制台模式: - + Selects if the console is emulated in Docked or Handheld mode. Games will change their resolution, details and supported controllers and depending on this setting. Setting to Handheld can help improve performance for low end systems. @@ -1081,7 +1042,7 @@ Setting to Handheld can help improve performance for low end systems. 设置为掌机模式有助于提高低端 PC 上的模拟性能。 - + Prompt for user on game boot 啟動遊戲時提示選擇使用者 @@ -1090,7 +1051,7 @@ Setting to Handheld can help improve performance for low end systems. 每次启动时询问用户选择一个用户配置文件。在多人使用同一台电脑上的 yuzu 时,这很有用。 - + Pause emulation when in background 模擬器在背景執行時暫停 @@ -1099,843 +1060,992 @@ Setting to Handheld can help improve performance for low end systems. 当用户聚焦在其他窗口时暂停 yuzu。 - - Fast GPU Time (Hack) - - - - - Overclocks the emulated GPU to increase dynamic resolution and render distance. -Use 128 for maximal performance and 512 for maximal graphics fidelity. - - - - - Extended Dynamic State - - - - - Enables the VkExtendedDynamicState* extensions. -Higher dynamic states will generally improve performance, but may cause issues on certain games or devices. - - - - - Provoking Vertex - - - - - Improves lighting and vertex handling in certain games. -Only Vulkan 1.0+ devices support this extension. - - - - - Descriptor Indexing - - - - - Improves texture & buffer handling and the Maxwell translation layer. -Some Vulkan 1.1+ and all 1.2+ devices support this extension. - - - - - Ask to select a user profile on each boot, useful if multiple people use eden on the same PC. - - - - - This setting pauses eden when focusing other windows. - - - - + Confirm before stopping emulation 停止模拟时需要确认 - + This setting overrides game prompts asking to confirm stopping the game. Enabling it bypasses such prompts and directly exits the emulation. 此设置将覆盖游戏中确认停止游戏的提示。 启用此项将绕过游戏中的提示并直接退出模拟。 - + Hide mouse on inactivity 滑鼠閒置時自動隱藏 - + This setting hides the mouse after 2.5s of inactivity. 当鼠标停止活动超过 2.5 秒时隐藏鼠标光标。 - + Disable controller applet 禁用控制器程序 - + Forcibly disables the use of the controller applet by guests. When a guest attempts to open the controller applet, it is immediately closed. 强制禁用来宾程序使用控制器小程序。 当来宾程序尝试打开控制器小程序时,控制器小程序会立即关闭。 - - Check for updates - - - - - Whether or not to check for updates upon startup. - - - - + Enable Gamemode 启用游戏模式 - + Custom frontend 自定义前端 - + Real applet 真实的小程序 - - Never - - - - - On Load - - - - - Always - - - - + CPU CPU - + GPU GPU - + CPU Asynchronous CPU 异步模拟 - + Uncompressed (Best quality) 不壓縮 (最高品質) - + BC1 (Low quality) BC1 (低品質) - + BC3 (Medium quality) BC3 (中品質) - + Conservative 保守模式(节省 VRAM) - + Aggressive 激进模式 - + OpenGL OpenGL - + Vulkan Vulkan - + Null - + GLSL GLSL - + GLASM (Assembly Shaders, NVIDIA Only) GLASM(組合語言著色器,僅限 NVIDIA) - + SPIR-V (Experimental, AMD/Mesa Only) SPIR-V (实验性,仅限 AMD/Mesa) - + Normal 標準 - + High - + Extreme 極高 - + Auto 自動 - + Accurate 高精度 - + Unsafe 低精度 - + Paranoid (disables most optimizations) 偏执模式 (禁用绝大多数优化项) - + Dynarmic Dynarmic - + NCE NCE - + Borderless Windowed 無邊框視窗 - + Exclusive Fullscreen 全螢幕獨占 - + No Video Output 無視訊輸出 - + CPU Video Decoding CPU 視訊解碼 - + GPU Video Decoding (Default) GPU 視訊解碼(預設) - - 0.25X (180p/270p) [EXPERIMENTAL] - - - - + 0.5X (360p/540p) [EXPERIMENTAL] 0.5X (360p/540p) [实验性] - + 0.75X (540p/810p) [EXPERIMENTAL] 0.75X (540p/810p) [實驗性] - + 1X (720p/1080p) 1X (720p/1080p) - + 1.5X (1080p/1620p) [EXPERIMENTAL] 1.5X (1080p/1620p) [實驗性] - + 2X (1440p/2160p) 2X (1440p/2160p) - + 3X (2160p/3240p) 3X (2160p/3240p) - + 4X (2880p/4320p) 4X (2880p/4320p) - + 5X (3600p/5400p) 5X (3600p/5400p) - + 6X (4320p/6480p) 6X (4320p/6480p) - + 7X (5040p/7560p) 7X (5040p/7560p) - + 8X (5760p/8640p) 8X (5760p/8640p) - + Nearest Neighbor 最近鄰 - + Bilinear 雙線性 - + Bicubic 雙立方 - + Gaussian 高斯 - + ScaleForce 強制縮放 - + AMD FidelityFX™️ Super Resolution AMD FidelityFX™️ 超級解析度技術 - - Area - - - - + None - + FXAA FXAA - + SMAA SMAA - + Default (16:9) 預設 (16:9) - + Force 4:3 強制 4:3 - + Force 21:9 強制 21:9 - + Force 16:10 強制 16:10 - + Stretch to Window 延伸視窗 - + Automatic 自動 - + + Default 預設 - + + Synchronize Core Speed + + + + + Synchronizes CPU core speed with the game's maximum rendering speed to boost FPS without affecting game speed (animations, physics, etc.). +Compatibility varies by game; many (especially older ones) may not respond well. +Can help reduce stuttering at lower framerates. + + + + + Fast CPU Time + + + + + Overclocks the emulated CPU to remove some FPS limiters. Weaker CPUs may see reduced performance, and certain games may behave improperly. +Use Boost (1700MHz) to run at the Switch's highest native clock, or Fast (2000MHz) to run at 2x clock. + + + + + Custom CPU Ticks + + + + + Set a custom value of CPU ticks. Higher values can increase performance, but may also cause the game to freeze. A range of 77–21000 is recommended. + + + + + Enable Host MMU Emulation (fastmem) + + + + + This optimization speeds up memory accesses by the guest program. +Enabling it causes guest memory reads/writes to be done directly into memory and make use of Host's MMU. +Disabling this forces all memory accesses to use Software MMU Emulation. + + + + + Optimize SPIRV output shader + + + + + Runs an additional optimization pass over generated SPIRV shaders. +Will increase time required for shader compilation. +May slightly improve performance. +This feature is experimental. + + + + + Selects whether the emulator should prefer to conserve memory or make maximum usage of available video memory for performance. +Aggressive mode may severely impact the performance of other applications such as recording software. + + + + + Skip CPU Inner Invalidation + + + + + Skips certain CPU-side cache invalidations during memory updates, reducing CPU usage and improving it's performance. This may cause glitches or crashes on some games. + + + + + Sync Memory Operations + + + + + Ensures data consistency between compute and memory operations. +This option should fix issues in some games, but may also reduce performance in some cases. +Unreal Engine 4 games often see the most significant changes thereof. + + + + + GPU Accuracy: + + + + + Controls the GPU emulation accuracy. +Most games render fine with Normal, but High is still required for some. +Particles tend to only render correctly with High accuracy. +Extreme should only be used as a last resort. + + + + + DMA Accuracy: + + + + + Controls the DMA precision accuracy. Safe precision can fix issues in some games, but it can also impact performance in some cases. +If unsure, leave this on Default. + + + + + Fast GPU Time (Hack) + + + + + Overclocks the emulated GPU to increase dynamic resolution and render distance. +Use 128 for maximal performance and 512 for maximal graphics fidelity. + + + + + RAII + + + + + A method of automatic resource management in Vulkan that ensures proper release of resources when they are no longer needed, but may cause crashes in bundled games. + + + + + Extended Dynamic State + + + + + Controls the number of features that can be used in Extended Dynamic State. +Higher numbers allow for more features and can increase performance, but may cause issues with some drivers and vendors. +The default value may vary depending on your system and hardware capabilities. +This value can be changed until stability and a better visual quality are achieved. + + + + + Provoking Vertex + + + + + Improves lighting and vertex handling in certain games. +Only Vulkan 1.0+ devices support this extension. + + + + + Descriptor Indexing + + + + + Improves texture & buffer handling and the Maxwell translation layer. +Some Vulkan 1.1+ and all 1.2+ devices support this extension. + + + + + Sample Shading + + + + + Allows the fragment shader to execute per sample in a multi-sampled fragment instead once per fragment. Improves graphics quality at the cost of some performance. +Higher values improve quality more but also reduce performance to a greater extent. + + + + + Ask to select a user profile on each boot, useful if multiple people use Eden on the same PC. + + + + + This setting pauses Eden when focusing other windows. + + + + + Check for updates + + + + + Whether or not to check for updates upon startup. + + + + + Never + + + + + On Load + + + + + Always + + + + + Unsafe (fast) + + + + + Safe (stable) + + + + + 0.25X (180p/270p) [EXPERIMENTAL] + + + + + Area + + + + 2x 2x - + 4x 4x - + 8x 8x - + 16x 16x - + Japanese (日本語) 日文 (日本語) - + American English 美式英语 - + French (français) 法文 (français) - + German (Deutsch) 德文 (Deutsch) - + Italian (italiano) 義大利文 (italiano) - + Spanish (español) 西班牙文 (español) - + Chinese 中文 - + Korean (한국어) 韓文 (한국어) - + Dutch (Nederlands) 荷蘭文 (Nederlands) - + Portuguese (português) 葡萄牙文 (português) - + Russian (Русский) 俄文 (Русский) - + Taiwanese 台灣中文 - + British English 英式英文 - + Canadian French 加拿大法文 - + Latin American Spanish 拉丁美洲西班牙文 - + Simplified Chinese 簡體中文 - + Traditional Chinese (正體中文) 正體中文 (正體中文) - + Brazilian Portuguese (português do Brasil) 巴西-葡萄牙語 (português do Brasil) - - + + Serbian (српски) + + + + + Japan 日本 - + USA 美國 - + Europe 歐洲 - + Australia 澳洲 - + China 中國 - + Korea 南韓 - + Taiwan 台灣 - + Auto (%1) Auto select time zone 自動 (%1) - + Default (%1) Default time zone 預設 (%1) - + CET 中歐 - + CST6CDT CST6CDT - + Cuba 古巴 - + EET EET - + Egypt 埃及 - + Eire 愛爾蘭 - + EST 北美東部 - + EST5EDT EST5EDT - + GB GB - + GB-Eire 英國-愛爾蘭 - + GMT GMT - + GMT+0 GMT+0 - + GMT-0 GMT-0 - + GMT0 GMT0 - + Greenwich 格林威治 - + Hongkong 香港 - + HST 夏威夷 - + Iceland 冰島 - + Iran 伊朗 - + Israel 以色列 - + Jamaica 牙買加 - + Kwajalein 瓜加林環礁 - + Libya 利比亞 - + MET 中歐 - + MST 北美山區 - + MST7MDT MST7MDT - + Navajo 納瓦霍 - + NZ 紐西蘭 - + NZ-CHAT 紐西蘭-查塔姆群島 - + Poland 波蘭 - + Portugal 葡萄牙 - + PRC 中國 - + PST8PDT 太平洋 - + ROC 臺灣 - + ROK 韓國 - + Singapore 新加坡 - + Turkey 土耳其 - + UCT UCT - + Universal 世界 - + UTC UTC - + W-SU 莫斯科 - + WET 西歐 - + Zulu 協調世界時 - + Mono 單聲道 - + Stereo 立體聲 - + Surround 環繞音效 - + 4GB DRAM (Default) 4GB DRAM (默认) - + 6GB DRAM (Unsafe) 6GB DRAM (不安全) - + 8GB DRAM - + 10GB DRAM (Unsafe) - + 12GB DRAM (Unsafe) - + Low (128) - + Medium (256) - + High (512) @@ -1944,37 +2054,37 @@ When a guest attempts to open the controller applet, it is immediately closed.8GB DRAM (不安全) - + Docked TV - + Handheld 掌機模式 - + Boost (1700MHz) - + Fast (2000MHz) - + Always ask (Default) 总是询问 (默认) - + Only if game specifies not to stop 仅当游戏不希望停止时 - + Never ask 从不询问 @@ -2328,27 +2438,27 @@ When a guest attempts to open the controller applet, it is immediately closed.紀錄 - + Open Log Location 開啟紀錄位置 - + Global Log Filter 全域紀錄篩選器 - + When checked, the max size of the log increases from 100 MB to 1 GB 啟用後紀錄檔案大小上限從 100MB 增加到 1GB - + Enable Extended Logging** 啟用延伸紀錄** - + Show Log in Console 在終端機中顯示紀錄 @@ -2494,7 +2604,7 @@ When a guest attempts to open the controller applet, it is immediately closed. - **This will be reset automatically when eden closes. + **This will be reset automatically when Eden closes. @@ -2556,7 +2666,7 @@ When a guest attempts to open the controller applet, it is immediately closed.**當 yuzu 關閉時會自動重設。 - + Web applet not compiled Web 小程式未編譯 @@ -2606,7 +2716,7 @@ When a guest attempts to open the controller applet, it is immediately closed. - eden Configuration + Eden Configuration @@ -2615,88 +2725,88 @@ When a guest attempts to open the controller applet, it is immediately closed.某些設定僅在遊戲未執行時才能修改 - + Applets 小程序 - - + + Audio 音訊 - - + + CPU CPU - + Debug 偵錯 - + Filesystem 檔案系統 - - + + General 一般 - - + + Graphics 圖形 - + GraphicsAdvanced 進階圖形 - + GraphicsExtensions - + Hotkeys 快捷鍵 - - + + Controls 控制 - + Profiles 設定檔 - + Network 網路 - - + + System 系統 - + Game List 遊戲清單 - + Web 網路服務 @@ -2794,51 +2904,45 @@ When a guest attempts to open the controller applet, it is immediately closed. - - - Reset Metadata Cache 重設中繼資料快取 - + Select Emulated NAND Directory... 選擇模擬內部儲存空間資料夾... - + Select Emulated SD Directory... 選擇模擬 SD 卡資料夾... - + Select Gamecard Path... 選擇遊戲卡帶路徑... - + Select Dump Directory... 選擇傾印資料夾... - + Select Mod Load Directory... 選擇載入模組資料夾... - The metadata cache is already empty. - 無中繼資料快取 + 無中繼資料快取 - The operation completed successfully. - 動作已成功完成 + 動作已成功完成 - The metadata cache couldn't be deleted. It might be in use or non-existent. - 無法刪除中繼資料快取,可能因為正在使用或不存在。 + 無法刪除中繼資料快取,可能因為正在使用或不存在。 @@ -2869,12 +2973,12 @@ When a guest attempts to open the controller applet, it is immediately closed.yuzu - - eden + + Eden - + This reset all settings and remove all per-game configurations. This will not delete game directories, profiles, or input profiles. Proceed? 這將重設所有遊戲的額外設定,但不會刪除遊戲資料夾、使用者設定檔、輸入設定檔,是否繼續? @@ -2907,33 +3011,33 @@ When a guest attempts to open the controller applet, it is immediately closed.背景顏色: - + % FSR sharpening percentage (e.g. 50%) % - + Off 關閉 - + VSync Off 垂直同步關 - + Recommended 推薦 - + On 開啟 - + VSync On 垂直同步開 @@ -2970,14 +3074,18 @@ When a guest attempts to open the controller applet, it is immediately closed. - Vulkan Extension Settings + Vulkan Extensions Settings - - While it's recommended to use state 3, some games may perform better on lower states. Setting to 0 (disabled) may also break games. -If your GPU is older (i.e. RX570/580 or older), it may not support these features. If this is the case, set the slider to 0 and uncheck all boxes. -These settings are experimental, and may cause black screens. If your games fail to boot or are stuck on a black screen, change these settings around. + + % + Sample Shading percentage (e.g. 50%) + % + + + + Extended Dynamic State is disabled on macOS due to MoltenVK compatibility issues that cause black screens. @@ -3009,75 +3117,75 @@ These settings are experimental, and may cause black screens. If your games fail 還原預設值 - + Action 動作 - + Hotkey 快捷鍵 - + Controller Hotkey 控制器快捷鍵 - - - + + + Conflicting Key Sequence 按鍵衝突 - - + + The entered key sequence is already assigned to: %1 輸入的金鑰已指定給:%1 - + [waiting] [請按按鍵] - + Invalid 無效 - + Invalid hotkey settings 無效的快捷鍵設定 - + An error occurred. Please report this issue on github. 發生錯誤。請在 GitHub 回報此問題。 - + Restore Default 還原預設值 - + Clear 清除 - + Conflicting Button Sequence 按鍵衝突 - + The default button sequence is already assigned to: %1 預設的按鍵序列已分配給: %1 - + The default key sequence is already assigned to: %1 預設金鑰已指定給:%1 @@ -3397,7 +3505,7 @@ These settings are experimental, and may cause black screens. If your games fail - Requires restarting eden + Requires restarting Eden @@ -3552,7 +3660,7 @@ These settings are experimental, and may cause black screens. If your games fail - + Left Stick 左搖桿 @@ -3662,14 +3770,14 @@ These settings are experimental, and may cause black screens. If your games fail - + L L - + ZL ZL @@ -3688,7 +3796,7 @@ These settings are experimental, and may cause black screens. If your games fail - + Plus @@ -3701,15 +3809,15 @@ These settings are experimental, and may cause black screens. If your games fail - - + + R R - + ZR ZR @@ -3754,7 +3862,7 @@ These settings are experimental, and may cause black screens. If your games fail - + Right Stick 右搖桿 @@ -3769,242 +3877,242 @@ These settings are experimental, and may cause black screens. If your games fail 設定 - - - - + + + + Clear 清除 - - - - - + + + + + [not set] [未設定] - - - + + + Invert button 無效按鈕 - - + + Toggle button 切換按鍵 - + Turbo button 连发键 - - + + Invert axis 方向反轉 - - - + + + Set threshold 設定閾值 - - + + Choose a value between 0% and 100% 選擇介於 0% 和 100% 之間的值 - + Toggle axis 切換軸 - + Set gyro threshold 陀螺仪阈值设定 - + Calibrate sensor 校正感應器 - + Map Analog Stick 搖桿映射 - + After pressing OK, first move your joystick horizontally, and then vertically. To invert the axes, first move your joystick vertically, and then horizontally. 按下確定後,先水平再上下移動您的搖桿。 要反轉方向,則先上下再水平移動您的搖桿。 - + Center axis 中心軸 - - + + Deadzone: %1% 無感帶:%1% - - + + Modifier Range: %1% 輕推靈敏度:%1% - - + + Pro Controller Pro 手把 - + Dual Joycons 雙 Joycon 手把 - + Left Joycon 左 Joycon 手把 - + Right Joycon 右 Joycon 手把 - + Handheld 掌機模式 - + GameCube Controller GameCube 手把 - + Poke Ball Plus 精靈球 PLUS - + NES Controller NES 控制器 - + SNES Controller SNES 控制器 - + N64 Controller N64 控制器 - + Sega Genesis Mega Drive - + Start / Pause 開始 / 暫停 - + Z Z - + Control Stick 控制搖桿 - + C-Stick C 搖桿 - + Shake! 搖動! - + [waiting] [等待中] - + New Profile 新增設定檔 - + Enter a profile name: 輸入設定檔名稱: - - + + Create Input Profile 建立輸入設定檔 - + The given profile name is not valid! 輸入的設定檔名稱無效! - + Failed to create the input profile "%1" 建立輸入設定檔「%1」失敗 - + Delete Input Profile 刪除輸入設定檔 - + Failed to delete the input profile "%1" 刪除輸入設定檔「%1」失敗 - + Load Input Profile 載入輸入設定檔 - + Failed to load the input profile "%1" 載入輸入設定檔「%1」失敗 - + Save Input Profile 儲存輸入設定檔 - + Failed to save the input profile "%1" 儲存輸入設定檔「%1」失敗 @@ -4061,7 +4169,7 @@ To invert the axes, first move your joystick vertically, and then horizontally.< - + Configure 設定 @@ -4097,7 +4205,7 @@ To invert the axes, first move your joystick vertically, and then horizontally.< - + Test 測試 @@ -4116,7 +4224,7 @@ To invert the axes, first move your joystick vertically, and then horizontally.< <a href='https://yuzu-emu.org/wiki/using-a-controller-or-android-phone-for-motion-or-touch-input'><span style="text-decoration: underline; color:#039be5;">了解更多</span></a> - + %1:%2 %1:%2 @@ -4125,77 +4233,77 @@ To invert the axes, first move your joystick vertically, and then horizontally.< yuzu - + <a href='https://eden-emulator.github.io/wiki/using-a-controller-or-android-phone-for-motion-or-touch-input'><span style="text-decoration: underline; color:#039be5;">Learn More</span></a> - + Port number has invalid characters 連線埠中包含無效字元 - - - - - - - eden + + + + + + + Eden - + Port has to be in range 0 and 65353 連線埠必須為 0 到 65353 之間 - + IP address is not valid 無效的 IP 位址 - + This UDP server already exists 此 UDP 伺服器已存在 - + Unable to add more than 8 servers 最多只能新增 8 個伺服器 - + 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>請檢查伺服器是否正確設定以及位址和連接埠是否正確。 - + UDP Test or calibration configuration is in progress.<br>Please wait for them to finish. UDP 測試或觸控校正進行中。<br>請耐心等候。 @@ -4322,7 +4430,12 @@ Current values are %1% and %2% respectively. 網路卡 - + + Enable Airplane Mode + + + + None @@ -4380,52 +4493,52 @@ Current values are %1% and %2% respectively. 某些設定僅在遊戲未執行時才能修改 - + Add-Ons 延伸模組 - + System 系統 - + CPU CPU - + Graphics 圖形 - + Adv. Graphics 進階圖形 - + GPU Extensions - + Audio 音訊 - + Input Profiles 輸入設定檔 - + Linux Linux - + Properties 屬性 @@ -4443,12 +4556,12 @@ Current values are %1% and %2% respectively. 延伸模組 - + Patch Name 延伸模組名稱 - + Version 版本 @@ -4486,27 +4599,32 @@ Current values are %1% and %2% respectively. 選擇圖片 - + + Select Avatar + + + + Add 新增 - + Rename 重新命名 - + Remove 移除 - + Profile management is available only when game is not running. 僅在遊戲未執行時才能修改使用者設定檔 - + %1 %2 %1 is the profile username, %2 is the formatted UUID (e.g. 00112233-4455-6677-8899-AABBCCDDEEFF)) @@ -4514,100 +4632,189 @@ Current values are %1% and %2% respectively. %2 - + Enter Username 輸入使用者名稱 - + Users 使用者 - + Enter a username for the new user: 輸入新使用者的名稱 - + Enter a new username: 輸入新的使用者名稱 - + + Error saving user image + + + + + Unable to save image to file + + + + Select User Image 選擇使用者圖片 - - JPEG Images (*.jpg *.jpeg) - JPEG圖片 (*.jpg *.jpeg) + + Image Formats (*.jpg *.jpeg *.png *.bmp) + - + + No firmware available + 無可用韌體 + + + + Please install the firmware to use firmware avatars. + + + + + + Error loading archive + + + + + Archive is not available. Please install/reinstall firmware. + + + + + Archive does not contain romfs. It is probably corrupt. + + + + + Error extracting archive + + + + + Archive could not be extracted. It is probably corrupt. + + + + + Error finding image directory + + + + + Failed to find image directory in the archive. + + + + + No images found + + + + + No avatar images were found in the archive. + + + + JPEG Images (*.jpg *.jpeg) + JPEG圖片 (*.jpg *.jpeg) + + + Error deleting image 刪除圖片時發生錯誤 - + Error occurred attempting to overwrite previous image at: %1. 嘗試覆寫之前的圖片時發生錯誤:%1 - + Error deleting file 刪除檔案時發生錯誤 - + Unable to delete existing file: %1. 無法刪除檔案:%1 - + Error creating user image directory 建立使用者圖片資料夾時發生錯誤 - + Unable to create directory %1 for storing user images. 無法建立儲存使用者圖片的資料夾 %1 - Error copying user image - 複製使用者圖片時發生錯誤 + 複製使用者圖片時發生錯誤 - Unable to copy image from %1 to %2 - 無法將圖片從 %1 複製到 %2 + 無法將圖片從 %1 複製到 %2 - Error resizing user image - 調整使用者圖片大小時發生錯誤 + 調整使用者圖片大小時發生錯誤 - Unable to resize image - 無法調整圖片大小 + 無法調整圖片大小 + + + + ConfigureProfileManagerAvatarDialog + + + Select + + + + + Cancel + 取消 + + + + Background Color + + + + + Select Firmware Avatar + ConfigureProfileManagerDeleteDialog - + Delete this user? All of the user's save data will be deleted. 删除此用户?此用户保存的所有数据都将被删除。 - + Confirm Delete 確認刪除 - + Name: %1 UUID: %2 名稱: %1 @@ -4660,7 +4867,7 @@ UUID: %2 - + Enable 啟用 @@ -4671,7 +4878,7 @@ UUID: %2 - + Not connected 尚未連線 @@ -4681,63 +4888,63 @@ UUID: %2 還原預設值 - + Clear 清除 - + [not set] [未設定] - + Invert axis 方向反轉 - - + + Deadzone: %1% 無感帶:%1% - + Error enabling ring input 启用健身环输入时出错 - + Direct Joycon driver is not enabled 未启用 Joycon 直接驱动 - + Configuring 設定中 - + The current mapped device doesn't support the ring controller 当前映射的输入设备不支持健身环控制器 - + The current mapped device doesn't have a ring attached 当前映射的设备未连接健身环控制器 - + The current mapped device is not connected 目前映射的裝置未連線 - + Unexpected driver result %1 意外的驅動程式結果: %1 - + [waiting] [請按按鍵] @@ -4779,7 +4986,7 @@ UUID: %2 - <html><head/><body><p>Reads controller input from scripts in the same format as TAS-nx scripts.<br/>For a more detailed explanation, please consult the <a href="https://eden-emulator.github.io/help/feature/tas/"><span style=" text-decoration: underline; color:#039be5;">help page</span></a> on the eden website.</p></body></html> + <html><head/><body><p>Reads controller input from scripts in the same format as TAS-nx scripts.<br/>For a more detailed explanation, please consult the <a href="https://eden-emulator.github.io/help/feature/tas/"><span style=" text-decoration: underline; color:#039be5;">help page</span></a> on the Eden website.</p></body></html> @@ -4831,12 +5038,12 @@ UUID: %2 ConfigureTasDialog - + TAS Configuration TAS 設定 - + Select TAS Load Directory... 選擇 TAS 載入資料夾... @@ -4946,7 +5153,7 @@ Drag points to change position, or double-click table cells to edit values. - Warning: The settings in this page affect the inner workings of eden's emulated touchscreen. Changing them may result in undesirable behavior, such as the touchscreen partially or not working. You should only use this page if you know what you are doing. + Warning: The settings in this page affect the inner workings of Eden's emulated touchscreen. Changing them may result in undesirable behavior, such as the touchscreen partially or not working. You should only use this page if you know what you are doing. @@ -5266,6 +5473,16 @@ Drag points to change position, or double-click table cells to edit values.Web 網路服務 + + + Eden Web Service + + + + + Generate + + yuzu Web Service yuzu 網路服務 @@ -5275,42 +5492,29 @@ Drag points to change position, or double-click table cells to edit values.提供您的使用者名稱和 Token 代表您同意讓 yuzu 收集額外的使用統計資訊,其中可能包含使用者識別訊息。 - - eden Web Service - - - - - By providing your username and token, you agree to allow eden to collect additional usage data, which may include user identifying information. - - - - Verify - 驗證 + 驗證 - Sign up - 註冊 + 註冊 - + Token: Token: - + Username: 使用者名稱: - What is my token? - Token 說明 + Token 說明 - + Web Service configuration can only be changed when a public room isn't being hosted. 公共房间未被开放时,才能更改 Web 服务配置项。 @@ -5335,12 +5539,12 @@ Drag points to change position, or double-click table cells to edit values.重新產生 - + Discord Presence Discord 狀態 - + Show Current Game in your Discord Status 在 Discord 遊戲狀態上顯示目前的遊戲 @@ -5349,24 +5553,8 @@ Drag points to change position, or double-click table cells to edit values.<a href='https://yuzu-emu.org/help/feature/telemetry/'><span style="text-decoration: underline; color:#039be5;">了解更多</span></a> - <a href='https://profile.yuzu-emu.org/'><span style="text-decoration: underline; color:#039be5;">Sign up</span></a> - <a href='https://profile.yuzu-emu.org/'><span style="text-decoration: underline; color:#039be5;">註冊</span></a> - - - - <a href='https://evilperson1337.notion.site/Hosting-a-Room-Inside-of-Eden-20457c2edaf680108abac6215a79acdb'><span style="text-decoration: underline; color:#039be5;">What is my token?</span></a> - - - - - Warning - - - - - Verification is currently nonfunctional, instead generate a random 48-character string with only lowercase a-z. - + <a href='https://profile.yuzu-emu.org/'><span style="text-decoration: underline; color:#039be5;">註冊</span></a> <a href='https://yuzu-emu.org/wiki/yuzu-web-service/'><span style="text-decoration: underline; color:#039be5;">What is my token?</span></a> @@ -5389,10 +5577,9 @@ Drag points to change position, or double-click table cells to edit values.Token 未驗證,因此未儲存您對使用者名稱和 Token 的修改。 - Unverified, please click Verify before saving configuration Tooltip - 令牌未验证,请在保存配置之前进行验证。 + 令牌未验证,请在保存配置之前进行验证。 Verifying... @@ -5416,20 +5603,67 @@ Drag points to change position, or double-click table cells to edit values.Verification failed. Check that you have entered your token correctly, and that your internet connection is working. 驗證失敗。請檢查您输入的 Token 是否正確,並確保您的網路連線正常。 + + + + All Good + Tooltip + + + + + Must be between 4-20 characters + Tooltip + + + + + Must be 48 characters, and lowercase a-z + Tooltip + + ControllerDialog - + Controller P1 Controller P1 - + &Controller P1 &Controller P1 + + DepsDialog + + + Eden Dependencies + + + + + <html><head/><body><p><span style=" font-size:28pt;">Eden Dependencies</span></p></body></html> + + + + + <html><head/><body><p>The projects that make Eden possible</p></body></html> + + + + + Dependency + + + + + Version + 版本 + + DirectConnect @@ -5535,7 +5769,12 @@ Drag points to change position, or double-click table cells to edit values. - Creating a room failed. Please retry. Restarting eden might be necessary. + Creating a room failed. Please retry. Restarting Eden might be necessary. + + + + + Version mismatch! Please update to the latest version of Eden. If the problem persists, contact the room host and ask them to update the server. @@ -5543,11 +5782,6 @@ Drag points to change position, or double-click table cells to edit values.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 eden. If the problem persists, contact the room host and ask them to update the server. - - Incorrect password. @@ -5609,7 +5843,7 @@ Please go to Configure -> System -> Network and make a selection. 遙測 - + Broken Vulkan Installation Detected 檢查到 Vulkan 的安裝已損毀 @@ -5618,106 +5852,105 @@ Please go to Configure -> System -> Network and make a selection. Vulkan 初始化失败。<br><br>点击<a href='https://yuzu-emu.org/wiki/faq/#yuzu-starts-with-the-error-broken-vulkan-installation-detected'>这里</a>获取此问题的相关信息。 - + Running a game TRANSLATORS: This string is shown to the user to explain why yuzu needs to prevent the computer from sleeping 正在執行遊戲 - + Loading Web Applet... 載入 Web 小程式.. - - + + Disable Web Applet 停用 Web 小程式 - + Disabling the web applet can lead to undefined behavior and should only be used with Super Mario 3D All-Stars. Are you sure you want to disable the web applet? (This can be re-enabled in the Debug settings.) 停用 Web 小程式可能會導致未定義的行為,且只能在《超級瑪利歐 3D收藏輯》中使用。您確定要停用 Web 小程式? (您可以在偵錯設定中重新啟用它。) - + The amount of shaders currently being built 目前正在建構的著色器數量 - + The current selected resolution scaling multiplier. 目前選擇的解析度縮放比例。 - + Current emulation speed. Values higher or lower than 100% indicate emulation is running faster or slower than a Switch. 目前的模擬速度。高於或低於 100% 表示比實際 Switch 執行速度更快或更慢。 - + 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 Switch frame, not counting framelimiting or v-sync. For full-speed emulation this should be at most 16.67 ms. 在不考慮幀數限制和垂直同步的情況下模擬一個 Switch 畫格的實際時間,若要全速模擬,此數值不得超過 16.67 毫秒。 - + Unmute 取消靜音 - + Mute 靜音 - + Reset Volume 重設音量 - + &Clear Recent Files 清除最近的檔案(&C) - + &Continue 繼續(&C) - + &Pause &暫停 - Warning Outdated Game Format - 過時遊戲格式警告 + 過時遊戲格式警告 You are using the deconstructed ROM directory format for this game, which is an outdated format that has been superseded by others such as NCA, NAX, XCI, or NSP. Deconstructed ROM directories lack icons, metadata, and update support.<br><br>For an explanation of the various Switch formats yuzu supports, <a href='https://yuzu-emu.org/wiki/overview-of-switch-game-formats'>check out our wiki</a>. This message will not be shown again. 此遊戲為解構的 ROM 資料夾格式,這是一種過時的格式,已被其他格式取代,如 NCA、NAX、XCI、NSP。解構的 ROM 目錄缺少圖示、中繼資料和更新支援。<br><br>有關 yuzu 支援的各種 Switch 格式說明,<a href='https://yuzu-emu.org/wiki/overview-of-switch-game-formats'>請參閱我們的 wiki </a>。此訊息將不再顯示。 - - + + Error while loading ROM! 載入 ROM 時發生錯誤! - + The ROM format is not supported. 此 ROM 格式不支援 - + An error occurred initializing the video core. 初始化視訊核心時發生錯誤 @@ -5726,7 +5959,7 @@ Please go to Configure -> System -> Network and make a selection. yuzu 在執行視訊核心時發生錯誤。 這可能是 GPU 驅動程序過舊造成的。 詳細資訊請查閱日誌檔案。 關於日誌檔案的更多資訊,請參考以下頁面:<a href='https://yuzu-emu.org/help/reference/log-files/'>如何上傳日誌檔案</a>。 - + Error while loading ROM! %1 %1 signifies a numeric error code. 載入 ROM 時發生錯誤!%1 @@ -5737,759 +5970,761 @@ Please go to Configure -> System -> Network and make a selection. %1<br>請參閱 <a href='https://yuzu-emu.org/help/quickstart/'>yuzu 快速指引</a>以重新傾印檔案。<br>您可以前往 yuzu 的 wiki</a> 或 Discord 社群</a>以獲得幫助。 - + Vulkan initialization failed during boot.<br><br>Click <a href='https://eden-emulator.github.io/wiki/faq/#yuzu-starts-with-the-error-broken-vulkan-installation-detected'>here for instructions to fix the issue</a>. - - Game Updates Warning - - - - - The game you are trying to launch is known to have performance or booting issues when updates are applied. Please try increasing the memory layout to 6GB or 8GB if any issues occur.<br><br>Press "OK" to continue launching, or "Cancel" to cancel the launch. - - - - - Don't show again for this game - - - - - You are using the deconstructed ROM directory format for this game, which is an outdated format that has been superseded by others such as NCA, NAX, XCI, or NSP. Deconstructed ROM directories lack icons, metadata, and update support.<br><br>For an explanation of the various Switch formats eden supports, <a href='https://eden-emulator.github.io/wiki/overview-of-switch-game-formats'>check out our wiki</a>. This message will not be shown again. - - - - - eden has encountered an error while running the video core. This is usually caused by outdated GPU drivers, including integrated ones. Please see the log for more details. For more information on accessing the log, please see the following page: <a href='https://eden-emulator.github.io/help/reference/log-files/'>How to Upload the Log File</a>. - - - - - %1<br>Please redump your files or ask on Discord for help. - %1 signifies an error string. - - - - + An unknown error occurred. Please see the log for more details. 發生未知錯誤,請檢視紀錄了解細節。 - + (64-bit) (64-bit) - + (32-bit) (32-bit) - + %1 %2 %1 is the title name. %2 indicates if the title is 64-bit or 32-bit %1 %2 - + Closing software... 正在關閉軟體… - + Save Data 儲存資料 - + Mod Data 模組資料 - + Error Opening %1 Folder 開啟資料夾 %1 時發生錯誤 - - + + Folder does not exist! 資料夾不存在 - Error Opening Transferable Shader Cache - 開啟通用著色器快取位置時發生錯誤 + 開啟通用著色器快取位置時發生錯誤 - Failed to create the shader cache directory for this title. - 無法新增此遊戲的著色器快取資料夾。 + 無法新增此遊戲的著色器快取資料夾。 - Error Removing Contents - 移除內容時發生錯誤 + 移除內容時發生錯誤 - Error Removing Update - 移除更新時發生錯誤 + 移除更新時發生錯誤 - Error Removing DLC - 移除 DLC 時發生錯誤 + 移除 DLC 時發生錯誤 - + Remove Installed Game Contents? 移除已安裝的遊戲內容? - + Remove Installed Game Update? 移除已安裝的遊戲更新? - + Remove Installed Game DLC? 移除已安裝的遊戲 DLC? - + Remove Entry 移除項目 - - - - - - Successfully Removed - 移除成功 + 移除成功 - Successfully removed the installed base game. - 成功移除已安裝的遊戲。 + 成功移除已安裝的遊戲。 - The base game is not installed in the NAND and cannot be removed. - 此遊戲並非安裝在內部儲存空間,因此無法移除。 + 此遊戲並非安裝在內部儲存空間,因此無法移除。 - Successfully removed the installed update. - 成功移除已安裝的遊戲更新。 + 成功移除已安裝的遊戲更新。 - There is no update installed for this title. - 此遊戲沒有已安裝的更新。 + 此遊戲沒有已安裝的更新。 - There are no DLC installed for this title. - 此遊戲沒有已安裝的 DLC。 + 此遊戲沒有已安裝的 DLC。 - Successfully removed %1 installed DLC. - 成功移除遊戲 %1 已安裝的 DLC。 + 成功移除遊戲 %1 已安裝的 DLC。 - + Delete OpenGL Transferable Shader Cache? 刪除 OpenGL 模式的著色器快取? - + Delete Vulkan Transferable Shader Cache? 刪除 Vulkan 模式的著色器快取? - + Delete All Transferable Shader Caches? 刪除所有的著色器快取? - + Remove Custom Game Configuration? 移除額外遊戲設定? - + Remove Cache Storage? 移除快取儲存空間? - + Remove File 刪除檔案 - + Remove Play Time Data 清除遊玩時間 - + Reset play time? 重設遊玩時間? - - Error Removing Transferable Shader Cache - 刪除通用著色器快取時發生錯誤 + 刪除通用著色器快取時發生錯誤 - - A shader cache for this title does not exist. - 此遊戲沒有著色器快取 + 此遊戲沒有著色器快取 - Successfully removed the transferable shader cache. - 成功刪除著色器快取。 + 成功刪除著色器快取。 - Failed to remove the transferable shader cache. - 刪除通用著色器快取失敗。 + 刪除通用著色器快取失敗。 - Error Removing Vulkan Driver Pipeline Cache - 移除 Vulkan 驅動程式管線快取時發生錯誤 + 移除 Vulkan 驅動程式管線快取時發生錯誤 - Failed to remove the driver pipeline cache. - 無法移除驅動程式管線快取。 + 無法移除驅動程式管線快取。 - - Error Removing Transferable Shader Caches - 刪除通用著色器快取時發生錯誤 + 刪除通用著色器快取時發生錯誤 - Successfully removed the transferable shader caches. - 成功刪除通用著色器快取。 + 成功刪除通用著色器快取。 - Failed to remove the transferable shader cache directory. - 無法刪除著色器快取資料夾。 + 無法刪除著色器快取資料夾。 - - Error Removing Custom Configuration - 移除額外遊戲設定時發生錯誤 + 移除額外遊戲設定時發生錯誤 - A custom configuration for this title does not exist. - 此遊戲沒有額外設定。 + 此遊戲沒有額外設定。 - Successfully removed the custom game configuration. - 成功移除額外遊戲設定。 + 成功移除額外遊戲設定。 - Failed to remove the custom game configuration. - 移除額外遊戲設定失敗。 + 移除額外遊戲設定失敗。 - - + + RomFS Extraction Failed! RomFS 抽取失敗! - + There was an error copying the RomFS files or the user cancelled the operation. 複製 RomFS 檔案時發生錯誤或使用者取消動作。 - + Full 全部 - + Skeleton 部分 - + Select RomFS Dump Mode 選擇RomFS傾印模式 - + Please select the how you would like the RomFS dumped.<br>Full will copy all of the files into the new directory while <br>skeleton will only create the directory structure. 請選擇如何傾印 RomFS。<br>「全部」會複製所有檔案到新資料夾中,而<br>「部分」只會建立資料夾結構。 - + There is not enough free space at %1 to extract the RomFS. Please free up space or select a different dump directory at Emulation > Configure > System > Filesystem > Dump Root %1 沒有足夠的空間用於抽取 RomFS。請確保有足夠的空間或於模擬 > 設定 >系統 >檔案系統 > 傾印根目錄中選擇其他資料夾。 - + Extracting RomFS... 抽取 RomFS 中... - - - - - + + Cancel 取消 - + RomFS Extraction Succeeded! RomFS 抽取完成! - - - + The operation completed successfully. 動作已成功完成 - Integrity verification couldn't be performed! - 無法執行完整性驗證! + 無法執行完整性驗證! - File contents were not checked for validity. - 未檢查檔案內容的完整性。 + 未檢查檔案內容的完整性。 - - Verifying integrity... - 正在驗證完整性... + 正在驗證完整性... - - Integrity verification succeeded! - 完整性驗證成功! + 完整性驗證成功! - - Integrity verification failed! - 完整性驗證失敗! + 完整性驗證失敗! - File contents may be corrupt. - 檔案可能已經損毀。 + 檔案可能已經損毀。 - - - - Create Shortcut - 建立捷徑 + 建立捷徑 - Do you want to launch the game in fullscreen? - 您想以全屏模式启动游戏吗? + 您想以全屏模式启动游戏吗? - Successfully created a shortcut to %1 - 已成功在 %1 建立捷徑 + 已成功在 %1 建立捷徑 - This will create a shortcut to the current AppImage. This may not work well if you update. Continue? - 這將會為目前的應用程式映像建立捷徑,可能在其更新後無法運作,仍要繼續嗎? + 這將會為目前的應用程式映像建立捷徑,可能在其更新後無法運作,仍要繼續嗎? - Failed to create a shortcut to %1 - 为 %1 创建快捷方式时失败 + 为 %1 创建快捷方式时失败 - Create Icon - 建立圖示 + 建立圖示 - Cannot create icon file. Path "%1" does not exist and cannot be created. - 無法建立圖示檔案,路徑「%1」不存在且無法建立。 + 無法建立圖示檔案,路徑「%1」不存在且無法建立。 - + + Warning: Outdated Game Format + + + + + You are using the deconstructed ROM directory format for this game, which is an outdated format that has been superseded by others such as NCA, NAX, XCI, or NSP. Deconstructed ROM directories lack icons, metadata, and update support.<br><br>For an explanation of the various Switch formats Eden supports, <a href='https://eden-emulator.github.io/wiki/overview-of-switch-game-formats'>check out our wiki</a>. This message will not be shown again. + + + + + Eden has encountered an error while running the video core. This is usually caused by outdated GPU drivers, including integrated ones. Please see the log for more details. For more information on accessing the log, please see the following page: <a href='https://yuzu-mirror.github.io/help/reference/log-files/'>How to Upload the Log File</a>. + + + + + %1<br>Please redump your files or ask on Discord/Revolt for help. + %1 signifies an error string. + + + + Error Opening %1 開啟 %1 時發生錯誤 - + Select Directory 選擇資料夾 - + Properties 屬性 - + The game properties could not be loaded. 無法載入遊戲屬性 - + Switch Executable (%1);;All Files (*.*) %1 is an identifier for the Switch executable file extensions. Switch 執行檔 (%1);;所有檔案 (*.*) - + Load File 開啟檔案 - + Open Extracted ROM Directory 開啟已抽取的 ROM 資料夾 - + Invalid Directory Selected 選擇的資料夾無效 - + The directory you have selected does not contain a 'main' file. 選擇的資料夾未包含「main」檔案。 - + Installable Switch File (*.nca *.nsp *.xci);;Nintendo Content Archive (*.nca);;Nintendo Submission Package (*.nsp);;NX Cartridge Image (*.xci) 可安裝的 Switch 檔案 (*.nca *.nsp *.xci);;Nintendo Content Archive (*.nca);;Nintendo Submission Package (*.nsp);;NX 卡帶映像 (*.xci) - + Install Files 安裝檔案 - + %n file(s) remaining 剩餘 %n 個檔案 + 剩餘 %n 個檔案 - + Installing file "%1"... 正在安裝檔案「%1」... - - + + Install Results 安裝結果 - + To avoid possible conflicts, we discourage users from installing base games to the NAND. Please, only use this feature to install updates and DLC. 為了避免潛在的衝突,不建議將遊戲本體安裝至內部儲存空間。 此功能僅用於安裝遊戲更新和 DLC。 - + %n file(s) were newly installed - 最近安裝了 %n 個檔案 - + 最近安裝了 %n 個檔案 + 最近安裝了 %n 個檔案 - + %n file(s) were overwritten - %n 個檔案被取代 - + %n 個檔案被取代 + %n 個檔案被取代 - + %n file(s) failed to install %n 個檔案安裝失敗 + %n 個檔案安裝失敗 - + System Application 系統應用程式 - + System Archive 系統檔案 - + System Application Update 系統應用程式更新 - + Firmware Package (Type A) 韌體包(A型) - + Firmware Package (Type B) 韌體包(B型) - + Game 遊戲 - + Game Update 遊戲更新 - + Game DLC 遊戲 DLC - + Delta Title Delta Title - + Select NCA Install Type... 選擇 NCA 安裝類型... - + Please select the type of title you would like to install this NCA as: (In most instances, the default 'Game' is fine.) 請選擇此 NCA 的安裝類型: (在多數情況下,選擇預設的「遊戲」即可。) - + Failed to Install 安裝失敗 - + The title type you selected for the NCA is invalid. 選擇的 NCA 安裝類型無效。 - + File not found 找不到檔案 - + File "%1" not found 找不到「%1」檔案 - + OK 確定 - - + + Hardware requirements not met 硬體不符合需求 - - + + Your system does not meet the recommended hardware requirements. Compatibility reporting has been disabled. 您的系統不符合建議的硬體需求,相容性回報已停用。 - + Missing yuzu Account 未設定 yuzu 帳號 - - In order to submit a game compatibility test case, you must link your eden account.<br><br/>To link your eden account, go to Emulation &gt; Configuration &gt; Web. + + In order to submit a game compatibility test case, you must set up your web token and username.<br><br/>To link your eden account, go to Emulation &gt; Configuration &gt; Web. - - Install decryption keys and restart eden before attempting to install firmware. + + + Install decryption keys and restart Eden before attempting to install firmware. - - Firmware installation cancelled, firmware may be in bad state, restart eden or re-install firmware. + + Select Dumped Firmware ZIP - - Encryption keys are missing. + + Zipped Archives (*.zip) - - Are you sure you want to close eden? + + Firmware cleanup failed - - - - eden + + Failed to clean up extracted firmware cache. +Check write permissions in the system temp directory and try again. +OS reported error: %1 - - The currently running application has requested eden to not exit. + + Please install firmware to use the Album applet. + + + + + Please install firmware to use the Cabinet applet. + + + + + Please install firmware to use the Mii editor. + + + + + Please install firmware to use the Controller Menu. + + + + + Please install firmware to use the Home Menu. + + + + + Firmware Corrupted + + + + + Firmware Too New + + + + + +Continue anyways? + + + + + Don't show again + + + + + Please install firmware to use Starter. + + + + + Are you sure you want to close Eden? + + + + + + + Eden + + + + + The currently running application has requested Eden to not exit. Would you like to bypass this and exit anyway? + + + Encryption keys are missing. + + In order to submit a game compatibility test case, you must link your yuzu account.<br><br/>To link your yuzu account, go to Emulation &gt; Configuration &gt; Web. 為了上傳相容性測試結果,您必須登入 yuzu 帳號。<br><br/>欲登入 yuzu 帳號請至模擬 &gt; 設定 &gt; 網路。 - + Error opening URL 開啟 URL 時發生錯誤 - + Unable to open the URL "%1". 無法開啟 URL:「%1」。 - + TAS Recording TAS 錄製 - + Overwrite file of player 1? 覆寫玩家 1 的檔案? - + Invalid config detected 偵測到無效設定 - + Handheld controller can't be used on docked mode. Pro controller will be selected. 掌機手把無法在主機模式中使用。將會選擇 Pro 手把。 - - + + Amiibo Amiibo - - + + The current amiibo has been removed 目前 Amiibo 已被移除。 - + Error 錯誤 - - + + The current game is not looking for amiibos 目前遊戲並未在尋找 Amiibos - + Amiibo File (%1);; All Files (*.*) Amiibo 檔案 (%1);; 所有檔案 (*.*) - + Load Amiibo 開啟 Amiibo - + Error loading Amiibo data 載入 Amiibo 資料時發生錯誤 - + The selected file is not a valid amiibo 選取的檔案不是有效的 Amiibo - + The selected file is already on use 選取的檔案已在使用中 - + An unknown error occurred 發生了未知錯誤 - - Verification failed for the following files: %1 - 以下檔案驗證失敗: + 以下檔案驗證失敗: %1 - + + Keys not installed 密钥未安装 @@ -6498,273 +6733,234 @@ Would you like to bypass this and exit anyway? 在安装固件之前,请先安装密钥并重新启动 yuzu。 - + Select Dumped Firmware Source Location 选择固件位置 - Installing Firmware... - 正在安装固件... + 正在安装固件... - - - - Firmware install failed - 固件安装失败 + 固件安装失败 - Unable to locate potential firmware NCA files - 无法定位某些固件 NCA 文件 + 无法定位某些固件 NCA 文件 - Failed to delete one or more firmware file. - 无法删除某些固件文件。 + 无法删除某些固件文件。 Firmware installation cancelled, firmware may be in bad state, restart yuzu or re-install firmware. 固件安装被取消,安装的固件可能已经损坏。请重新启动 yuzu,或重新安装固件。 - One or more firmware files failed to copy into NAND. - 某些固件文件未能复制到 NAND。 + 某些固件文件未能复制到 NAND。 - Firmware integrity verification failed! - 固件完整性验证失败! + 固件完整性验证失败! - Select Dumped Keys Location - 选择密钥文件位置 + 选择密钥文件位置 - - - Decryption Keys install failed - 密钥文件安装失败 + 密钥文件安装失败 - prod.keys is a required decryption key file. - prod.keys 是必需的解密密钥文件。 + prod.keys 是必需的解密密钥文件。 - One or more keys failed to copy. - 某些密钥文件复制失败。 + 某些密钥文件复制失败。 - Decryption Keys install succeeded - 密钥文件安装成功 + 密钥文件安装成功 - Decryption Keys were successfully installed - 密钥文件已成功安装 + 密钥文件已成功安装 - Decryption Keys failed to initialize. Check that your dumping tools are up to date and re-dump keys. - 密钥文件无法初始化。请检查您的转储工具是否为最新版本,然后重新转储密钥文件。 + 密钥文件无法初始化。请检查您的转储工具是否为最新版本,然后重新转储密钥文件。 - - - - - - - + + + + + + No firmware available 無可用韌體 - Please install the firmware to use the Album applet. - 請安裝韌體以使用相簿小程式。 + 請安裝韌體以使用相簿小程式。 - + Album Applet 相簿小程式 - + Album applet is not available. Please reinstall firmware. 無法使用相簿小程式。請安裝韌體。 - Please install the firmware to use the Cabinet applet. - 請安裝韌體以使用 Cabinet 小程式。 + 請安裝韌體以使用 Cabinet 小程式。 - + Cabinet Applet Cabinet 小程式 - + Cabinet applet is not available. Please reinstall firmware. 無法使用 Cabinet 小程式。請安裝韌體。 - Please install the firmware to use the Mii editor. - 請安裝韌體以使用 Mii 編輯器。 + 請安裝韌體以使用 Mii 編輯器。 - + Mii Edit Applet Mii 編輯器小程式 - + Mii editor is not available. Please reinstall firmware. Mii 編輯器無法使用。請安裝韌體。 - Please install the firmware to use the Controller Menu. - 请安装固件以使用控制器菜单。 + 请安装固件以使用控制器菜单。 - + Controller Applet 控制器設定 - + Controller Menu is not available. Please reinstall firmware. 控制器菜单不可用。请重新安装固件。 - - Please install the firmware to use the Home Menu. - - - - - + Home Menu Applet - - + Home Menu is not available. Please reinstall firmware. - - Please install the firmware to use Starter. - - - - + Starter Applet - + Starter is not available. Please reinstall firmware. - - Please install firmware to use the home menu. - - - - + Capture Screenshot 截圖 - + PNG Image (*.png) PNG 圖片 (*.png) - + Update Available - + Update %1 for Eden is available. Would you like to download it? - + TAS state: Running %1/%2 TAS 狀態:正在執行 %1/%2 - + TAS state: Recording %1 TAS 狀態:正在錄製 %1 - + TAS state: Idle %1/%2 TAS 狀態:閒置 %1/%2 - + TAS State: Invalid TAS 狀態:無效 - + &Stop Running &停止執行 - + &Start 開始(&S) - + Stop R&ecording 停止錄製 - + R&ecord 錄製 (&E) - + Building: %n shader(s) 正在編譯 %n 個著色器檔案 + 正在編譯 %n 個著色器檔案 - + Scale: %1x %1 is the resolution scaling factor 縮放比例:%1x - + Speed: %1% / %2% 速度:%1% / %2% - + Speed: %1% 速度:%1% @@ -6773,44 +6969,44 @@ Would you like to download it? 遊戲: %1 FPS(未限制) - + Game: %1 FPS 遊戲:%1 FPS - + Frame: %1 ms 畫格延遲:%1 ms - + %1 %2 %1 %2 - - + + FSR FSR - + NO AA 抗鋸齒關 - + VOLUME: MUTE 音量: 靜音 - + VOLUME: %1% Volume percentage (e.g. 50%) 音量:%1% - + Derivation Components Missing 遺失產生元件 @@ -6819,12 +7015,12 @@ Would you like to download it? 密钥缺失。<br>请查看<a href='https://yuzu-emu.org/help/quickstart/'>yuzu 快速导航</a>以获得你的密钥、固件和游戏。 - + Select RomFS Dump Target 選擇 RomFS 傾印目標 - + Please select which RomFS you would like to dump. 請選擇希望傾印的 RomFS。 @@ -6837,7 +7033,7 @@ Would you like to download it? yuzu - + Are you sure you want to stop the emulation? Any unsaved progress will be lost. 您確定要停止模擬嗎?未儲存的進度將會遺失。 @@ -6850,102 +7046,102 @@ Would you like to bypass this and exit anyway? 您希望忽略並退出嗎? - + None - + FXAA FXAA - + SMAA SMAA - + Nearest 最近鄰 - + Bilinear 雙線性 - + Bicubic 雙立方 - + Gaussian 高斯 - + ScaleForce 強制縮放 - + Area - + Docked TV - + Handheld 掌機模式 - + Normal 標準 - + High - + Extreme 極高 - + Vulkan Vulkan - + OpenGL OpenGL - + Null - + GLSL GLSL - + GLASM GLASM - + SPIRV SPIRV @@ -6953,13 +7149,13 @@ Would you like to bypass this and exit anyway? GRenderWindow - - + + OpenGL not available! 無法使用 OpenGL 模式! - + OpenGL shared contexts are not supported. 不支援 OpenGL 共用的上下文。 @@ -6968,33 +7164,33 @@ Would you like to bypass this and exit anyway? yuzu 未以支援 OpenGL 的方式編譯。 - - eden has not been compiled with OpenGL support. + + Eden has not been compiled with OpenGL support. - - + + 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.6! 初始化 OpenGL 4.6 時發生錯誤! - + Your GPU may not support OpenGL 4.6, or you do not have the latest graphics driver.<br><br>GL Renderer:<br>%1 您的 GPU 可能不支援 OpenGL 4.6,或是未安裝最新的圖形驅動程式<br><br>GL 渲染器:<br>%1 - + Your GPU may not support one or more required OpenGL extensions. Please ensure you have the latest graphics driver.<br><br>GL Renderer:<br>%1<br><br>Unsupported extensions:<br>%2 您的 GPU 可能不支援某些必需的 OpenGL 功能。請確保您已安裝最新的圖形驅動程式。<br><br>GL 渲染器:<br>%1<br><br>不支援的功能:<br>%2 @@ -7002,128 +7198,128 @@ Would you like to bypass this and exit anyway? GameList - + Favorite 我的最愛 - + Start Game 開始遊戲 - + Start Game without Custom Configuration 開始遊戲(不使用額外設定) - + Open Save Data Location 開啟存檔位置 - + Open Mod Data Location 開啟模組位置 - + Open Transferable Pipeline Cache 開啟通用著色器管線快取位置 - + Remove 移除 - + Remove Installed Update 移除已安裝的遊戲更新 - + Remove All Installed DLC 移除所有安裝的DLC - + Remove Custom Configuration 移除額外設定 - + Remove Play Time Data 清除遊玩時間 - + Remove Cache Storage 移除快取儲存空間 - + Remove OpenGL Pipeline Cache 刪除 OpenGL 著色器管線快取 - + Remove Vulkan Pipeline Cache 刪除 Vulkan 著色器管線快取 - + Remove All Pipeline Caches 刪除所有著色器管線快取 - + Remove All Installed Contents 移除所有安裝項目 - + Dump RomFS 傾印 RomFS - + Dump RomFS to SDMC 傾印 RomFS 到 SDMC - + Verify Integrity 完整性驗證 - + Copy Title ID to Clipboard 複製遊戲 ID 到剪貼簿 - + Navigate to GameDB entry 檢視遊戲相容性報告 - + Create Shortcut 建立捷徑 - + Add to Desktop 新增至桌面 - + Add to Applications Menu 新增至應用程式選單 - + Configure Game @@ -7132,62 +7328,62 @@ Would you like to bypass this and exit anyway? 屬性 - + Scan Subfolders 包含子資料夾 - + Remove Game Directory 移除遊戲資料夾 - + ▲ Move Up ▲ 向上移動 - + ▼ Move Down ▼ 向下移動 - + Open Directory Location 開啟資料夾位置 - + Clear 清除 - + Name 名稱 - + Compatibility 相容性 - + Add-ons 延伸模組 - + File type 檔案格式 - + Size 大小 - + Play time 遊玩時間 @@ -7195,62 +7391,62 @@ Would you like to bypass this and exit anyway? GameListItemCompat - + Ingame 遊戲內 - + Game starts, but crashes or major glitches prevent it from being completed. 遊戲可以執行,但可能會出現當機或故障導致遊戲無法正常運作。 - + Perfect 完美 - + Game can be played without issues. 遊戲可以毫無問題的遊玩。 - + Playable 可遊玩 - + Game functions with minor graphical or audio glitches and is playable from start to finish. 遊戲自始至終可以正常遊玩,但可能會有一些輕微的圖形或音訊故障。 - + Intro/Menu 開始畫面/選單 - + Game loads, but is 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. 此遊戲尚未經過測試 @@ -7258,7 +7454,7 @@ Would you like to bypass this and exit anyway? GameListPlaceholder - + Double-click to add a new folder to the game list 連點兩下以新增資料夾至遊戲清單 @@ -7266,19 +7462,20 @@ Would you like to bypass this and exit anyway? GameListSearchField - + %1 of %n result(s) %1 / %n 個結果 + %1 / %n 個結果 - + Filter: 搜尋: - + Enter pattern to filter 輸入文字以搜尋 @@ -7360,7 +7557,7 @@ Would you like to bypass this and exit anyway? - Failed to announce the room to the public lobby. In order to host a room publicly, you must have a valid eden account configured in Emulation -> Configure -> Web. If you do not want to publish a room in the public lobby, then select Unlisted instead. + Failed to announce the room to the public lobby. In order to host a room publicly, you must have a valid Eden 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: @@ -7374,91 +7571,91 @@ Debug Message: Hotkeys - + Audio Mute/Unmute 靜音/取消靜音 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Main Window 主要視窗 - + Audio Volume Down 音訊音量降低 - + Audio Volume Up 音訊音量提高 - + Capture Screenshot 截圖 - + Change Adapting Filter 變更自適性過濾器 - + Change Docked Mode 變更底座模式 - + Change GPU Accuracy 變更 GPU 精確度 - + Configure 設定 - + Configure Current Game - + Continue/Pause Emulation 繼續/暫停模擬 - + Exit Fullscreen 離開全螢幕 @@ -7467,97 +7664,97 @@ Debug Message: 離開 yuzu - - Exit eden + + Exit Eden - + Fullscreen 全螢幕 - + Load File 開啟檔案 - + Load/Remove Amiibo 載入/移除 Amiibo - + Multiplayer Browse Public Game Lobby 浏览公共游戏大厅 - + Multiplayer Create Room 创建房间 - + Multiplayer Direct Connect to Room 直接连接到房间 - + Multiplayer Leave Room 离开房间 - + Multiplayer Show Current Room 显示当前房间 - + Restart Emulation 重新啟動模擬 - + Stop Emulation 停止模擬 - + TAS Record TAS 錄製 - + TAS Reset TAS 重設 - + TAS Start/Stop TAS 開始/停止 - + Toggle Filter Bar 切換搜尋列 - + Toggle Framerate Limit 切換影格速率限制 - + Toggle Mouse Panning 切換滑鼠移動 - + Toggle Renderdoc Capture 切換到 Renderdoc 截圖 - + Toggle Status Bar 切換狀態列 @@ -7565,22 +7762,22 @@ Debug Message: InstallDialog - + Please confirm these are the files you wish to install. 請確認您想安裝的檔案 - + Installing an Update or DLC will overwrite the previously installed one. 安裝遊戲更新或 DLC 時會覆寫之前的安裝 - + Install 安裝 - + Install Files to NAND 安裝檔案至內部儲存空間 @@ -7588,7 +7785,7 @@ Debug Message: LimitableInputDialog - + The text can't contain any of the following characters: %1 文字中不能包含以下字元:%1 @@ -7734,152 +7931,207 @@ Debug Message: 開啟最近的檔案(&R) - + + Open &Eden Folders + + + + &Emulation 模擬 (&E) - + &View 檢視 (&V) - + &Reset Window Size 重設視窗大小(&R) - + &Debugging 偵錯 (&D) - + Reset Window Size to &720p 重設視窗大小為 &720p - + Reset Window Size to 720p 重設視窗大小為 720p - + Reset Window Size to &900p 重設視窗大小為 &900p - + Reset Window Size to 900p 重設視窗大小為 900p - + Reset Window Size to &1080p 重設視窗大小為 &1080p - + Reset Window Size to 1080p 重設視窗大小為 1080p - + &Multiplayer 多人遊戲 (&M) - + &Tools 工具 (&T) - + &Amiibo &Amiibo - + &TAS TAS (&T) - + &Create Home Menu Shortcut - + &Help 說明 (&H) - + &Install Files to NAND... &安裝檔案至內部儲存空間 - + L&oad File... 開啟檔案(&O)... - + Load &Folder... 開啟資料夾(&F)... - + E&xit 結束(&X) - + &Pause 暫停(&P) - + &Stop 停止(&S) - + &Verify Installed Contents 驗證已安裝內容的完整性 (&V) - - &About eden + + &Root Data Folder - - Open &eden Folder + + &NAND Folder - + + &SDMC Folder + + + + + &Mod Folder + + + + + &Log Folder + + + + + From Folder + + + + + From ZIP + + + + + &X + + + + + X (Twitter) + + + + + &Revolt + + + + + Revolt + + + + + &Eden Dependencies + + + + Open Home Menu - + &Discord - + Open &Setup - + &Desktop - + &Application Menu @@ -7888,97 +8140,97 @@ Debug Message: 關於 yuzu(&A) - + Single &Window Mode 單一視窗模式(&W) - + Con&figure... 設定 (&F) - + Ctrl+, - + Display D&ock Widget Headers 顯示 Dock 小工具標題 (&O) - + Show &Filter Bar 顯示搜尋列(&F) - + Show &Status Bar 顯示狀態列(&S) - + Show Status Bar 顯示狀態列 - + &Browse Public Game Lobby 瀏覽公用遊戲大廳 (&B) - + &Create Room 建立房間 (&C) - + &Leave Room 離開房間 (&L) - + &Direct Connect to Room 直接連線到房間 (&D) - + &Show Current Room 顯示目前的房間 (&S) - + F&ullscreen 全螢幕(&U) - + &Restart 重新啟動(&R) - + Load/Remove &Amiibo... 載入/移除 Amiibo... (&A) - + &Report Compatibility 回報相容性(&R) - + Open &Mods Page 模組資訊 (&M) - + Open &Quickstart Guide 快速入門 (&Q) - + &FAQ 常見問題 (&F) @@ -7987,77 +8239,82 @@ Debug Message: 開啟 yuzu 資料夾(&Y) - + &Capture Screenshot 截圖 (&C) - + Open &Album 開啟相簿 (&A) - + &Set Nickname and Owner 登錄持有者和暱稱 (&S) - + &Delete Game Data 清除遊戲資料 (&D) - + &Restore Amiibo 復原資料 (&R) - + &Format Amiibo 初始化 Amiibo (&F) - + Open &Mii Editor 開啟 &Mii 編輯器 - + &Configure TAS... 設定 &TAS… - + Configure C&urrent Game... 目前遊戲設定...(&U) - + &Start 開始(&S) - + &Reset 重設 (&R) - + R&ecord 錄製 (&E) - + Open &Controller Menu 打开控制器菜单 (&C) - + Install Firmware 安装固件 - + + &About Eden + + + + Install Decryption Keys 安装密钥文件 @@ -8065,26 +8322,36 @@ Debug Message: MicroProfileDialog - &MicroProfile - &MicroProfile + &MicroProfile MigrationWorker - + Data was migrated successfully. - + Linking the old directory failed. You may need to re-run with administrative privileges on Windows. OS gave error: %1 - + + + +Note that your configuration and data will be shared with %1. +If this is not desirable, delete the following files: +%2 +%3 +%4 + + + + If you wish to clean up the files which were left in the old data location, you can do so by deleting the following directory: @@ -8144,37 +8411,37 @@ If you wish to clean up the files which were left in the old data location, you MultiplayerState - + Current connection status 目前連線狀態 - + Not Connected. Click here to find a room! 尚未連線,按一下這裡以尋找房間! - + Not Connected 尚未連線 - + Connected 已連線 - + New Messages Received 收到了新訊息 - + Error 錯誤 - + Failed to update the room information. Please check your Internet connection and try hosting the room again. Debug Message: 更新房間資訊失敗。請檢查您的網路連線並嘗試重開房間。 @@ -8366,56 +8633,56 @@ p, li { white-space: pre-wrap; } 不在玩遊戲 - + Installed SD Titles 安裝在 SD 卡中的遊戲 - + Installed NAND Titles 安裝在內部儲存空間中的遊戲 - + System Titles 系統項目 - + Add New Game Directory 加入遊戲資料夾 - + Favorites 我的最愛 - - + + Shift Shift - - + + Ctrl Ctrl - - + + Alt Alt - - - - + + + + [not set] [未設定] @@ -8426,14 +8693,14 @@ p, li { white-space: pre-wrap; } 方向鍵 %1 %2 - - - - - - - - + + + + + + + + Axis %1%2 軸 %1%2 @@ -8444,357 +8711,357 @@ p, li { white-space: pre-wrap; } 按鍵 %1 - - - - - - + + + + + + [unknown] [未知] - - - + + + Left - - - + + + Right - - - + + + Down - - - + + + Up - - + + Z Z - - + + R R - - + + L L - - + + A A - - + + B B - - + + X X - - + + Y Y - - + + Start 開始 - - + + L1 L1 - - + + L2 L2 - - + + L3 L3 - - + + R1 R1 - - + + R2 R2 - - + + R3 R3 - - + + Circle - - + + Cross - - + + Square - - + + Triangle Δ - - + + Share 分享 - - + + Options 選項 - - + + [undefined] [未指定] - + %1%2 %1%2 - - + + [invalid] [無效] - - + + %1%2Hat %3 %1%2Hat 控制器 %3 - - - + + + %1%2Axis %3 %1%2軸 %3 - - + + %1%2Axis %3,%4,%5 %1%2軸 %3,%4,%5 - - + + %1%2Motion %3 %1%2體感 %3 - - + + %1%2Button %3 %1%2按鈕 %3 - - + + [unused] [未使用] - + ZR ZR - + ZL ZL - + SR SR - + SL SL - + Stick L 左搖桿 - + Stick R 右搖桿 - + Plus - + Minus - - + + Home HOME - + Capture 截圖 - + Touch 觸控 - + Wheel Indicates the mouse wheel 滑鼠滾輪 - + Backward 後退 - + Forward 前進 - + Task 任務鍵 - + Extra 額外按鍵 - + %1%2%3%4 %1%2%3%4 - - + + %1%2%3Hat %4 %1%2%3 控制器 %4 - - + + %1%2%3Axis %4 %1%2%3軸 %4 - - + + %1%2%3Button %4 %1%2%3 按鍵 %4 - - + + Migration - + - - + + No - + You can manually re-trigger this prompt by deleting the new config directory: %1 - + Migrating - + Migrating, this may take a while... @@ -8912,6 +9179,300 @@ p, li { white-space: pre-wrap; } 您想要復原這個 amiibo 嗎? + + QtCommon::Content + + + Installing Firmware... + 正在安装固件... + + + + + + Cancel + 取消 + + + + Firmware integrity verification failed! + 固件完整性验证失败! + + + + + Verification failed for the following files: + +%1 + 以下檔案驗證失敗: + +%1 + + + + + Verifying integrity... + 正在驗證完整性... + + + + + Integrity verification succeeded! + 完整性驗證成功! + + + + + The operation completed successfully. + 動作已成功完成 + + + + + Integrity verification failed! + 完整性驗證失敗! + + + + File contents may be corrupt or missing. + + + + + Integrity verification couldn't be performed + + + + + Firmware installation cancelled, firmware may be in a bad state or corrupted. File contents could not be checked for validity. + + + + + Select Dumped Keys Location + 选择密钥文件位置 + + + + Decryption Keys install succeeded + 密钥文件安装成功 + + + + Decryption Keys were successfully installed + 密钥文件已成功安装 + + + + Decryption Keys install failed + 密钥文件安装失败 + + + + QtCommon::Game + + + Error Removing Contents + 移除內容時發生錯誤 + + + + Error Removing Update + 移除更新時發生錯誤 + + + + Error Removing DLC + 移除 DLC 時發生錯誤 + + + + The base game is not installed in the NAND and cannot be removed. + 此遊戲並非安裝在內部儲存空間,因此無法移除。 + + + + There is no update installed for this title. + 此遊戲沒有已安裝的更新。 + + + + There are no DLCs installed for this title. + + + + + + + + Successfully Removed + 移除成功 + + + + Successfully removed %1 installed DLC. + 成功移除遊戲 %1 已安裝的 DLC。 + + + + + Error Removing Transferable Shader Cache + 刪除通用著色器快取時發生錯誤 + + + + + A shader cache for this title does not exist. + 此遊戲沒有著色器快取 + + + + Successfully removed the transferable shader cache. + 成功刪除著色器快取。 + + + + Failed to remove the transferable shader cache. + 刪除通用著色器快取失敗。 + + + + Error Removing Vulkan Driver Pipeline Cache + 移除 Vulkan 驅動程式管線快取時發生錯誤 + + + + Failed to remove the driver pipeline cache. + 無法移除驅動程式管線快取。 + + + + + Error Removing Transferable Shader Caches + 刪除通用著色器快取時發生錯誤 + + + + Successfully removed the transferable shader caches. + 成功刪除通用著色器快取。 + + + + Failed to remove the transferable shader cache directory. + 無法刪除著色器快取資料夾。 + + + + + Error Removing Custom Configuration + 移除額外遊戲設定時發生錯誤 + + + + A custom configuration for this title does not exist. + 此遊戲沒有額外設定。 + + + + Successfully removed the custom game configuration. + 成功移除額外遊戲設定。 + + + + Failed to remove the custom game configuration. + 移除額外遊戲設定失敗。 + + + + Reset Metadata Cache + 重設中繼資料快取 + + + + The metadata cache is already empty. + 無中繼資料快取 + + + + The operation completed successfully. + 動作已成功完成 + + + + The metadata cache couldn't be deleted. It might be in use or non-existent. + 無法刪除中繼資料快取,可能因為正在使用或不存在。 + + + + Create Shortcut + 建立捷徑 + + + + Do you want to launch the game in fullscreen? + 您想以全屏模式启动游戏吗? + + + + Shortcut Created + + + + + Successfully created a shortcut to %1 + 已成功在 %1 建立捷徑 + + + + Shortcut may be Volatile! + + + + + This will create a shortcut to the current AppImage. This may not work well if you update. Continue? + 這將會為目前的應用程式映像建立捷徑,可能在其更新後無法運作,仍要繼續嗎? + + + + Failed to Create Shortcut + + + + + Failed to create a shortcut to %1 + 为 %1 创建快捷方式时失败 + + + + Create Icon + 建立圖示 + + + + Cannot create icon file. Path "%1" does not exist and cannot be created. + 無法建立圖示檔案,路徑「%1」不存在且無法建立。 + + + + No firmware available + 無可用韌體 + + + + Please install firmware to use the home menu. + + + + + Home Menu Applet + + + + + Home Menu is not available. Please reinstall firmware. + + + QtControllerSelectorDialog @@ -9207,7 +9768,7 @@ Please try again or contact the developer of the software. QtProfileSelectionDialog - + %1 %2 %1 is the profile username, %2 is the formatted UUID (e.g. 00112233-4455-6677-8899-AABBCCDDEEFF)) @@ -9215,7 +9776,7 @@ Please try again or contact the developer of the software. %2 - + Users 使用者 @@ -9339,7 +9900,7 @@ p, li { white-space: pre-wrap; } WaitTreeCallstack - + Call stack Call stack @@ -9347,12 +9908,12 @@ p, li { white-space: pre-wrap; } WaitTreeSynchronizationObject - + [%1] %2 [%1] %2 - + waited by no thread waited by no thread @@ -9360,102 +9921,102 @@ p, li { white-space: pre-wrap; } WaitTreeThread - + runnable runnable - + paused paused - + sleeping sleeping - + waiting for IPC reply waiting for IPC reply - + waiting for objects waiting for objects - + waiting for condition variable waiting for condition variable - + waiting for address arbiter waiting for address arbiter - + waiting for suspend resume waiting for suspend resume - + waiting waiting - + initialized initialized - + terminated terminated - + unknown unknown - + PC = 0x%1 LR = 0x%2 PC = 0x%1 LR = 0x%2 - + ideal ideal - + core %1 core %1 - + processor = %1 processor = %1 - + affinity mask = %1 affinity mask = %1 - + thread id = %1 thread id = %1 - + priority = %1(current) / %2(normal) priority = %1(current) / %2(normal) - + last running ticks = %1 last running ticks = %1 @@ -9463,7 +10024,7 @@ p, li { white-space: pre-wrap; } WaitTreeThreadList - + waited by thread waited by thread @@ -9471,7 +10032,7 @@ p, li { white-space: pre-wrap; } WaitTreeWidget - + &Wait Tree &Wait Tree diff --git a/externals/CMakeLists.txt b/externals/CMakeLists.txt index ce1450e241..754ba61a0b 100644 --- a/externals/CMakeLists.txt +++ b/externals/CMakeLists.txt @@ -25,10 +25,6 @@ set(BUILD_SHARED_LIBS OFF) # Skip install rules for all externals set_directory_properties(PROPERTIES EXCLUDE_FROM_ALL ON) -if (FORCE_DOWNLOAD_WIN_BUNDLES) - download_win_archives() -endif() - # Xbyak (also used by Dynarmic, so needs to be added first) if (ARCHITECTURE_x86 OR ARCHITECTURE_x86_64) if (PLATFORM_SUN OR PLATFORM_OPENBSD) @@ -97,12 +93,16 @@ endif() AddJsonPackage(unordered-dense) # FFMpeg -if (YUZU_USE_BUNDLED_FFMPEG) +if (YUZU_USE_EXTERNAL_FFMPEG OR YUZU_USE_BUNDLED_FFMPEG) add_subdirectory(ffmpeg) + set(FFmpeg_PATH "${FFmpeg_PATH}" PARENT_SCOPE) set(FFmpeg_LDFLAGS "${FFmpeg_LDFLAGS}" PARENT_SCOPE) set(FFmpeg_LIBRARIES "${FFmpeg_LIBRARIES}" PARENT_SCOPE) + set(FFmpeg_LIBRARY_DIR "${FFmpeg_LIBRARY_DIR}" PARENT_SCOPE) set(FFmpeg_INCLUDE_DIR "${FFmpeg_INCLUDE_DIR}" PARENT_SCOPE) + + message(STATUS "FFmpeg Libraries: ${FFmpeg_LIBRARIES}") endif() # TZDB (Time Zone Database) diff --git a/externals/ffmpeg/CMakeLists.txt b/externals/ffmpeg/CMakeLists.txt index c5a8b3555b..59397f6acb 100644 --- a/externals/ffmpeg/CMakeLists.txt +++ b/externals/ffmpeg/CMakeLists.txt @@ -6,7 +6,138 @@ include(CPMUtil) -if (NOT WIN32 AND NOT ANDROID) +# TODO(crueter, MaranBr): Externals FFmpeg 8.0 + +set(FFmpeg_HWACCEL_LIBRARIES) +set(FFmpeg_HWACCEL_FLAGS) +set(FFmpeg_HWACCEL_INCLUDE_DIRS) +set(FFmpeg_HWACCEL_LDFLAGS) + +if (UNIX AND NOT ANDROID) + find_package(PkgConfig REQUIRED) + if (NOT ANDROID) + pkg_check_modules(LIBVA libva) + pkg_check_modules(CUDA cuda) + pkg_check_modules(FFNVCODEC ffnvcodec) + pkg_check_modules(VDPAU vdpau) + endif() + + if (NOT APPLE) + # In Solaris needs explicit linking for ffmpeg which links to /lib/amd64/libX11.so + if(PLATFORM_SUN) + list(APPEND FFmpeg_HWACCEL_LIBRARIES + X11 + "/usr/lib/xorg/amd64/libdrm.so") + else() + pkg_check_modules(LIBDRM libdrm REQUIRED) + list(APPEND FFmpeg_HWACCEL_LIBRARIES + ${LIBDRM_LIBRARIES}) + list(APPEND FFmpeg_HWACCEL_INCLUDE_DIRS + ${LIBDRM_INCLUDE_DIRS}) + endif() + list(APPEND FFmpeg_HWACCEL_FLAGS + --enable-libdrm) + endif() + + if(LIBVA_FOUND) + find_package(X11 REQUIRED) + pkg_check_modules(LIBVA-DRM libva-drm REQUIRED) + pkg_check_modules(LIBVA-X11 libva-x11 REQUIRED) + list(APPEND FFmpeg_HWACCEL_LIBRARIES + ${X11_LIBRARIES} + ${LIBVA-DRM_LIBRARIES} + ${LIBVA-X11_LIBRARIES} + ${LIBVA_LIBRARIES}) + list(APPEND FFmpeg_HWACCEL_FLAGS + --enable-hwaccel=h264_vaapi + --enable-hwaccel=vp8_vaapi + --enable-hwaccel=vp9_vaapi) + list(APPEND FFmpeg_HWACCEL_INCLUDE_DIRS + ${X11_INCLUDE_DIRS} + ${LIBVA-DRM_INCLUDE_DIRS} + ${LIBVA-X11_INCLUDE_DIRS} + ${LIBVA_INCLUDE_DIRS} + ) + message(STATUS "ffmpeg: va-api libraries version ${LIBVA_VERSION} found") + else() + list(APPEND FFmpeg_HWACCEL_FLAGS --disable-vaapi) + message(WARNING "ffmpeg: libva-dev not found, disabling Video Acceleration API (VA-API)...") + endif() + + if (FFNVCODEC_FOUND) + list(APPEND FFmpeg_HWACCEL_FLAGS + --enable-cuvid + --enable-ffnvcodec + --enable-nvdec + --enable-hwaccel=h264_nvdec + --enable-hwaccel=vp8_nvdec + --enable-hwaccel=vp9_nvdec + ) + list(APPEND FFmpeg_HWACCEL_LIBRARIES ${FFNVCODEC_LIBRARIES}) + list(APPEND FFmpeg_HWACCEL_INCLUDE_DIRS ${FFNVCODEC_INCLUDE_DIRS}) + list(APPEND FFmpeg_HWACCEL_LDFLAGS ${FFNVCODEC_LDFLAGS}) + message(STATUS "ffmpeg: ffnvcodec libraries version ${FFNVCODEC_VERSION} found") + # ffnvenc could load CUDA libraries at the runtime using dlopen/dlsym or LoadLibrary/GetProcAddress + # here we handle the hard-linking scenario where CUDA is linked during compilation + if (CUDA_FOUND) + # This line causes build error if CUDA_INCLUDE_DIRS is anything but a single non-empty value + #list(APPEND FFmpeg_HWACCEL_FLAGS --extra-cflags=-I${CUDA_INCLUDE_DIRS}) + list(APPEND FFmpeg_HWACCEL_LIBRARIES ${CUDA_LIBRARIES}) + list(APPEND FFmpeg_HWACCEL_INCLUDE_DIRS ${CUDA_INCLUDE_DIRS}) + list(APPEND FFmpeg_HWACCEL_LDFLAGS ${CUDA_LDFLAGS}) + message(STATUS "ffmpeg: CUDA libraries version ${CUDA_VERSION} found, hard-linking will be performed") + endif(CUDA_FOUND) + endif() + + if (VDPAU_FOUND) + list(APPEND FFmpeg_HWACCEL_FLAGS + --enable-vdpau + --enable-hwaccel=h264_vdpau + --enable-hwaccel=vp9_vdpau + ) + list(APPEND FFmpeg_HWACCEL_LIBRARIES ${VDPAU_LIBRARIES}) + list(APPEND FFmpeg_HWACCEL_INCLUDE_DIRS ${VDPAU_INCLUDE_DIRS}) + list(APPEND FFmpeg_HWACCEL_LDFLAGS ${VDPAU_LDFLAGS}) + message(STATUS "ffmpeg: vdpau libraries version ${VDPAU_VERSION} found") + else() + list(APPEND FFmpeg_HWACCEL_FLAGS --disable-vdpau) + message(WARNING "ffmpeg: libvdpau-dev not found, disabling Video Decode and Presentation API for Unix (VDPAU)...") + endif() +endif() + +if (YUZU_USE_BUNDLED_FFMPEG) + # MSVC conflicts with ksuser otherwise + # Android needs some deps to be compiled with PIC (TODO) + # TODO(crueter) fix + if (MSVC OR ANDROID) + set(BUILD_SHARED_LIBS ON) + else() + set(BUILD_SHARED_LIBS OFF) + endif() + + AddJsonPackage(ffmpeg-ci) + + set(FFmpeg_INCLUDE_DIR + "${FFmpeg_SOURCE_DIR}/include;${FFmpeg_HWACCEL_INCLUDE_DIRS}" + PARENT_SCOPE + ) + + set(FFmpeg_PATH + "${FFmpeg_SOURCE_DIR}" + PARENT_SCOPE + ) + + set(FFmpeg_LIBRARY_DIR + "${FFmpeg_SOURCE_DIR}/bin" + PARENT_SCOPE + ) + + set(FFmpeg_LIBRARIES + FFmpeg::FFmpeg + ${FFmpeg_HWACCEL_LIBRARIES} + PARENT_SCOPE + ) +else() # Build FFmpeg from externals message(STATUS "Using FFmpeg from externals") @@ -51,101 +182,6 @@ if (NOT WIN32 AND NOT ANDROID) CACHE PATH "Paths to FFmpeg libraries" FORCE) endforeach() - find_package(PkgConfig REQUIRED) - if (NOT ANDROID) - pkg_check_modules(LIBVA libva) - pkg_check_modules(CUDA cuda) - pkg_check_modules(FFNVCODEC ffnvcodec) - pkg_check_modules(VDPAU vdpau) - endif() - - set(FFmpeg_HWACCEL_LIBRARIES) - set(FFmpeg_HWACCEL_FLAGS) - set(FFmpeg_HWACCEL_INCLUDE_DIRS) - set(FFmpeg_HWACCEL_LDFLAGS) - - if (NOT APPLE) - # In Solaris needs explicit linking for ffmpeg which links to /lib/amd64/libX11.so - if(PLATFORM_SUN) - list(APPEND FFmpeg_HWACCEL_LIBRARIES - X11 - "/usr/lib/xorg/amd64/libdrm.so") - else() - pkg_check_modules(LIBDRM libdrm REQUIRED) - list(APPEND FFmpeg_HWACCEL_LIBRARIES - ${LIBDRM_LIBRARIES}) - list(APPEND FFmpeg_HWACCEL_INCLUDE_DIRS - ${LIBDRM_INCLUDE_DIRS}) - endif() - list(APPEND FFmpeg_HWACCEL_FLAGS - --enable-libdrm) - endif() - - if(LIBVA_FOUND) - find_package(X11 REQUIRED) - pkg_check_modules(LIBVA-DRM libva-drm REQUIRED) - pkg_check_modules(LIBVA-X11 libva-x11 REQUIRED) - list(APPEND FFmpeg_HWACCEL_LIBRARIES - ${X11_LIBRARIES} - ${LIBVA-DRM_LIBRARIES} - ${LIBVA-X11_LIBRARIES} - ${LIBVA_LIBRARIES}) - list(APPEND FFmpeg_HWACCEL_FLAGS - --enable-hwaccel=h264_vaapi - --enable-hwaccel=vp8_vaapi - --enable-hwaccel=vp9_vaapi) - list(APPEND FFmpeg_HWACCEL_INCLUDE_DIRS - ${X11_INCLUDE_DIRS} - ${LIBVA-DRM_INCLUDE_DIRS} - ${LIBVA-X11_INCLUDE_DIRS} - ${LIBVA_INCLUDE_DIRS} - ) - message(STATUS "ffmpeg: va-api libraries version ${LIBVA_VERSION} found") - else() - list(APPEND FFmpeg_HWACCEL_FLAGS --disable-vaapi) - message(WARNING "ffmpeg: libva-dev not found, disabling Video Aceleraion API (VA-API)...") - endif() - - if (FFNVCODEC_FOUND) - list(APPEND FFmpeg_HWACCEL_FLAGS - --enable-cuvid - --enable-ffnvcodec - --enable-nvdec - --enable-hwaccel=h264_nvdec - --enable-hwaccel=vp8_nvdec - --enable-hwaccel=vp9_nvdec - ) - list(APPEND FFmpeg_HWACCEL_LIBRARIES ${FFNVCODEC_LIBRARIES}) - list(APPEND FFmpeg_HWACCEL_INCLUDE_DIRS ${FFNVCODEC_INCLUDE_DIRS}) - list(APPEND FFmpeg_HWACCEL_LDFLAGS ${FFNVCODEC_LDFLAGS}) - message(STATUS "ffmpeg: ffnvcodec libraries version ${FFNVCODEC_VERSION} found") - # ffnvenc could load CUDA libraries at the runtime using dlopen/dlsym or LoadLibrary/GetProcAddress - # here we handle the hard-linking senario where CUDA is linked during compilation - if (CUDA_FOUND) - # This line causes build error if CUDA_INCLUDE_DIRS is anything but a single non-empty value - #list(APPEND FFmpeg_HWACCEL_FLAGS --extra-cflags=-I${CUDA_INCLUDE_DIRS}) - list(APPEND FFmpeg_HWACCEL_LIBRARIES ${CUDA_LIBRARIES}) - list(APPEND FFmpeg_HWACCEL_INCLUDE_DIRS ${CUDA_INCLUDE_DIRS}) - list(APPEND FFmpeg_HWACCEL_LDFLAGS ${CUDA_LDFLAGS}) - message(STATUS "ffmpeg: CUDA libraries found, hard-linking will be performed") - endif(CUDA_FOUND) - endif() - - if (VDPAU_FOUND) - list(APPEND FFmpeg_HWACCEL_FLAGS - --enable-vdpau - --enable-hwaccel=h264_vdpau - --enable-hwaccel=vp9_vdpau - ) - list(APPEND FFmpeg_HWACCEL_LIBRARIES ${VDPAU_LIBRARIES}) - list(APPEND FFmpeg_HWACCEL_INCLUDE_DIRS ${VDPAU_INCLUDE_DIRS}) - list(APPEND FFmpeg_HWACCEL_LDFLAGS ${VDPAU_LDFLAGS}) - message(STATUS "ffmpeg: vdpau libraries version ${VDPAU_VERSION} found") - else() - list(APPEND FFmpeg_HWACCEL_FLAGS --disable-vdpau) - message(WARNING "ffmpeg: libvdpau-dev not found, disabling Video Decode and Presentation API for Unix (VDPAU)...") - endif() - find_program(BASH_PROGRAM bash REQUIRED) set(FFmpeg_CROSS_COMPILE_FLAGS "") @@ -245,57 +281,6 @@ if (NOT WIN32 AND NOT ANDROID) else() message(FATAL_ERROR "FFmpeg not found") endif() -elseif(ANDROID) - # Use yuzu FFmpeg binaries - if (ARCHITECTURE_arm64) - set(FFmpeg_EXT_NAME "ffmpeg-android-7.1.1-aarch64") - elseif (ARCHITECTURE_x86_64) - set(FFmpeg_EXT_NAME "ffmpeg-android-v5.1.LTS-x86_64") - else() - message(FATAL_ERROR "Unsupported architecture for Android FFmpeg") - endif() - - download_bundled_external("ffmpeg/" ${FFmpeg_EXT_NAME} "ffmpeg-bundled" FFmpeg_PATH 7.1.1) - set(FFmpeg_FOUND YES) - set(FFmpeg_INCLUDE_DIR "${FFmpeg_PATH}/include" CACHE PATH "Path to FFmpeg headers" FORCE) - set(FFmpeg_LIBRARY_DIR "${FFmpeg_PATH}/lib" CACHE PATH "Path to FFmpeg library directory" FORCE) - set(FFmpeg_LDFLAGS "" CACHE STRING "FFmpeg linker flags" FORCE) - set(FFmpeg_LIBRARIES - ${FFmpeg_LIBRARY_DIR}/libavcodec.so - ${FFmpeg_LIBRARY_DIR}/libavdevice.so - ${FFmpeg_LIBRARY_DIR}/libavfilter.so - ${FFmpeg_LIBRARY_DIR}/libavformat.so - ${FFmpeg_LIBRARY_DIR}/libavutil.so - ${FFmpeg_LIBRARY_DIR}/libswresample.so - ${FFmpeg_LIBRARY_DIR}/libswscale.so - ${FFmpeg_LIBRARY_DIR}/libvpx.a - ${FFmpeg_LIBRARY_DIR}/libx264.a - CACHE PATH "Paths to FFmpeg libraries" FORCE) - # exported variables - set(FFmpeg_PATH "${FFmpeg_PATH}" PARENT_SCOPE) - set(FFmpeg_LDFLAGS "${FFmpeg_LDFLAGS}" PARENT_SCOPE) - set(FFmpeg_LIBRARIES "${FFmpeg_LIBRARIES}" PARENT_SCOPE) - set(FFmpeg_INCLUDE_DIR "${FFmpeg_INCLUDE_DIR}" PARENT_SCOPE) -elseif(WIN32) - # Use yuzu FFmpeg binaries - set(FFmpeg_EXT_NAME "ffmpeg-7.1.1") - - download_bundled_external("ffmpeg/" ${FFmpeg_EXT_NAME} "ffmpeg-bundled" FFmpeg_PATH 7.1.1) - set(FFmpeg_FOUND YES) - set(FFmpeg_INCLUDE_DIR "${FFmpeg_PATH}/include" CACHE PATH "Path to FFmpeg headers" FORCE) - set(FFmpeg_LIBRARY_DIR "${FFmpeg_PATH}/bin" CACHE PATH "Path to FFmpeg library directory" FORCE) - set(FFmpeg_LDFLAGS "" CACHE STRING "FFmpeg linker flags" FORCE) - set(FFmpeg_LIBRARIES - ${FFmpeg_LIBRARY_DIR}/swscale.lib - ${FFmpeg_LIBRARY_DIR}/avcodec.lib - ${FFmpeg_LIBRARY_DIR}/avfilter.lib - ${FFmpeg_LIBRARY_DIR}/avutil.lib - CACHE PATH "Paths to FFmpeg libraries" FORCE) - # exported variables - set(FFmpeg_PATH "${FFmpeg_PATH}" PARENT_SCOPE) - set(FFmpeg_LDFLAGS "${FFmpeg_LDFLAGS}" PARENT_SCOPE) - set(FFmpeg_LIBRARIES "${FFmpeg_LIBRARIES}" PARENT_SCOPE) - set(FFmpeg_INCLUDE_DIR "${FFmpeg_INCLUDE_DIR}" PARENT_SCOPE) endif() unset(FFmpeg_COMPONENTS) diff --git a/externals/ffmpeg/cpmfile.json b/externals/ffmpeg/cpmfile.json index dd9179703e..9b9efaadde 100644 --- a/externals/ffmpeg/cpmfile.json +++ b/externals/ffmpeg/cpmfile.json @@ -4,5 +4,17 @@ "sha": "c2184b65d2", "hash": "2a89d664119debbb3c006ab1c48d5d7f26e889f4a65ad2e25c8b0503308295123d5a9c5c78bf683aef5ff09acef8c3fc2837f22d3e8c611528b933bf03bcdd97", "bundled": true + }, + "ffmpeg-ci": { + "ci": true, + "package": "FFmpeg", + "name": "ffmpeg", + "repo": "crueter-ci/FFmpeg", + "version": "8.0", + "min_version": "4.1", + "disabled_platforms": [ + "freebsd", + "solaris" + ] } } diff --git a/src/android/app/src/main/jni/CMakeLists.txt b/src/android/app/src/main/jni/CMakeLists.txt index 1390d2854c..0557236394 100644 --- a/src/android/app/src/main/jni/CMakeLists.txt +++ b/src/android/app/src/main/jni/CMakeLists.txt @@ -30,4 +30,4 @@ if (ENABLE_OPENSSL OR ENABLE_WEB_SERVICE) target_link_libraries(yuzu-android PRIVATE OpenSSL::SSL cpp-jwt::cpp-jwt) endif() - set(CPACK_PACKAGE_EXECUTABLES ${CPACK_PACKAGE_EXECUTABLES} yuzu-android) +set(CPACK_PACKAGE_EXECUTABLES ${CPACK_PACKAGE_EXECUTABLES} yuzu-android) diff --git a/src/android/app/src/main/res/values-ar/strings.xml b/src/android/app/src/main/res/values-ar/strings.xml index 35f7d20198..4b58d5f851 100644 --- a/src/android/app/src/main/res/values-ar/strings.xml +++ b/src/android/app/src/main/res/values-ar/strings.xml @@ -419,10 +419,18 @@ خصائص مجلد اللعبة فشل استيراد %d حفظ + فشل استيراد %d حفظ + فشل استيراد %d حفظ + فشل استيراد %d حفظ + فشل استيراد %d حفظ فشل استيراد %d حفظ تم استيراد %d حفظ بنجاح + تم استيراد %d حفظ بنجاح + تم استيراد %d حفظ بنجاح + تم استيراد %d حفظ بنجاح + تم استيراد %d حفظ بنجاح تم استيراد %d حفظ بنجاح لم يتم العثور على بيانات الحفظ @@ -447,8 +455,7 @@ قم بتشغيل تطبيقات النظام باستخدام فيرموير المثبت البرنامج الثابت غير مثبت أو إصدار غير صالح التطبيق المصغر غير متوفر - prod.keys الخاص بك و -البرنامج الثابت مثبتة وحاول مرة أخرى.
بالإضافة إلى ذلك، تأكد من أن برنامجك الثابت من إصدار 19.0.1 أو أقدم.]]>
+ prod.keys الخاص بك و البرنامج الثابت مثبتة وحاول مرة أخرى.
بالإضافة إلى ذلك، تأكد من أن برنامجك الثابت من إصدار 19.0.1 أو أقدم.]]>
الألبوم شاهد الصور المخزنة في مجلد لقطات شاشة المستخدم باستخدام عارض صور النظام تحرير Mii @@ -672,14 +679,14 @@ الخاص بك ROM تم تشفير - ألعاب البطاقات أو العناوين الرقمية.]]> - prod.keys]]> + ألعاب البطاقات أو العناوين الرقمية.]]> + prod.keys]]> حدث خطأ أثناء تهيئة مركز الفيديو قد يكون بسبب تعريف GPU غير متوافق ROM غير قادر على تحميل غير موجود ROM ملف اللعبة تتطلب برنامجاً ثابتاً - نسخ وتثبيت البرنامج الثابت، أو اضغط "موافق" للمتابعة على أي حال.]]> + نسخ وتثبيت البرنامج الثابت، أو اضغط \"موافق\" للمتابعة على أي حال.]]> جاري البحث عن اللعبة... diff --git a/src/android/app/src/main/res/values-ckb/strings.xml b/src/android/app/src/main/res/values-ckb/strings.xml index fe94f97dc5..25fcf6acef 100644 --- a/src/android/app/src/main/res/values-ckb/strings.xml +++ b/src/android/app/src/main/res/values-ckb/strings.xml @@ -322,7 +322,7 @@ کارۆسێل فۆڵدەر نەرمەکاڵای پێش-ئەلفا - "ئاگاداری: ئەم وەشانە بۆ بڵاوکردنەوە یان پیشاندانی گشتی نییە. ئەم نەرمەکاڵایە لە قۆناغی پێش-ئەلفادایە و لەوانەیە هەڵەی تێدا بێت." + ئاگاداری: ئەم وەشانە بۆ بڵاوکردنەوە یان پیشاندانی گشتی نییە. ئەم نەرمەکاڵایە لە قۆناغی پێش-ئەلفادایە و لەوانەیە هەڵەی تێدا بێت. دووبارە نیشان مەدە نەرمەکاڵای پێش-ئەلفا؛ بۆ بەکارهێنانی گشتی نییە فۆڵدەری نوێ بە سەرکەوتوویی زیادکرا @@ -441,8 +441,7 @@ ئەپلێتی سیستەم دەستپێبکە بە بەکارهێنانی پتەوواڵای دامەزراو فریموێر نەنێردراوە یان وەشانێکی نادروستە ئەپلێت بەردەست نییە - prod.keys و -فریموێرەکەت نێردراوە و هەوڵ بدەرەوە.
هەروەها دڵنیابە لەوەی فریموێرەکەت وەشانی ١٩.٠.١ یان کەمتر بێت.]]>
+ prod.keys و فریموێرەکەت نێردراوە و هەوڵ بدەرەوە.
هەروەها دڵنیابە لەوەی فریموێرەکەت وەشانی ١٩.٠.١ یان کەمتر بێت.]]>
ئەلبوم وێنەکان لە فۆڵدەری وێنەی بەکارهێنەر ببینە دەستکاریی Mii @@ -649,14 +648,14 @@ ڕۆمەکەت کۆدکراوە - یارییە کارتەکان یان ناونیشانە دیجیتاڵییەکان.]]> + یارییە کارتەکان یان ناونیشانە دیجیتاڵییەکان.]]> prod.keys فایلەکەت بۆ ئەوەی بتوانرێت یارییەکان کۆد بکرێنەوە.]]> هەڵەیەک لە دەستپێکردنی ناوەکی ڤیدیۆکەدا ڕوویدا ئەمەش بەزۆری بەهۆی وەگەڕخەرێکی ناتەبای GPU ەوەیە. دامەزراندنی وەگەڕخەری GPU ی تایبەتمەندکراو لەوانەیە ئەم کێشەیە چارەسەر بکات. ناتوانرێت ڕۆم باربکرێت فایلی ڕۆم بوونی نییە یارییەکە فریموێر پێویستە - فریموێر دامپ بکە و دابنێ, یان پەنجە بنێ سەر "باشە" بۆ بەردەوامبوون هەرچۆنێک بێت.]]> + فریموێر دامپ بکە و دابنێ, یان پەنجە بنێ سەر \"باشە\" بۆ بەردەوامبوون هەرچۆنێک بێت.]]> گەڕان بە دوای یارییە... diff --git a/src/android/app/src/main/res/values-cs/strings.xml b/src/android/app/src/main/res/values-cs/strings.xml index 785f96b84c..8d7e274464 100644 --- a/src/android/app/src/main/res/values-cs/strings.xml +++ b/src/android/app/src/main/res/values-cs/strings.xml @@ -379,10 +379,14 @@ Vlastnosti složky s hrami Chyba při importu %d uložení + Chyba při importu %d uložení + Chyba při importu %d uložení Chyba při importu %d uložení Úspěšně importováno %d uložení + Úspěšně importováno %d uložení + Úspěšně importováno %d uložení Úspěšně importováno %d uložení Nenalezena uložená data @@ -407,8 +411,7 @@ Spouštění systémových apletů Firmware není nainstalován nebo je neplatná verze Aplet není dostupný - prod.keys a -firmware, a zkuste to znovu.
Dále se ujistěte, že váš firmware je verze 19.0.1 nebo starší.]]>
+ prod.keys a firmware, a zkuste to znovu.
Dále se ujistěte, že váš firmware je verze 19.0.1 nebo starší.]]>
Album Zobrazovat obrázky uložené v uživatelské složce se snímky obrazovky pomocí systémového prohlížeče fotografií Editor Mii @@ -629,14 +632,14 @@ ROM je zašifrován - herních karet nebo digitálních titulů.]]> - prod.keys pro dešifrování.]]> + herních karet nebo digitálních titulů.]]> + prod.keys pro dešifrování.]]> Chyba inicializace Neplatný GPU ovladač Nelze načíst ROM ROM neexistuje Hra vyžaduje firmware - převezměte a nainstalujte firmware, nebo stiskněte "OK" pro pokračování v každém případě.]]> + převezměte a nainstalujte firmware, nebo stiskněte \"OK\" pro pokračování v každém případě.]]> Hledání hry... diff --git a/src/android/app/src/main/res/values-de/strings.xml b/src/android/app/src/main/res/values-de/strings.xml index 495804e328..146fa60fed 100644 --- a/src/android/app/src/main/res/values-de/strings.xml +++ b/src/android/app/src/main/res/values-de/strings.xml @@ -440,8 +440,7 @@ Wirklich fortfahren? System-Applets mit Firmware starten Firmware nicht installiert oder ungültige Version Applet nicht verfügbar - prod.keys-Datei und -Firmware installiert sind, und versuchen Sie es erneut.
Stellen Sie außerdem sicher, dass Ihre Firmware Version 19.0.1 oder älter ist.]]>
+ prod.keys-Datei und Firmware installiert sind, und versuchen Sie es erneut.
Stellen Sie außerdem sicher, dass Ihre Firmware Version 19.0.1 oder älter ist.]]>
Album Bilder im Screenshot-Ordner anzeigen Mii-Editor @@ -705,14 +704,14 @@ Wirklich fortfahren? Integritätsüberprüfung konnte nicht durchgeführt werden Das ROM ist verschlüsselt - Spielkarten oder digitalen Titel.]]> + Spielkarten oder digitalen Titel.]]> prod.keys Datei installiert ist, damit Spiele entschlüsselt werden können.]]> Bei der Initialisierung des Videokerns ist ein Fehler aufgetreten Dies wird normalerweise durch einen inkompatiblen GPU-Treiber verursacht. Die Installation eines passenden GPU-Treibers kann dieses Problem beheben. ROM konnte nicht geladen werden ROM-Datei existiert nicht Spiel erfordert Firmware - dumpen und installieren Sie Firmware, oder drücken Sie "OK", um trotzdem zu starten.]]> + dumpen und installieren Sie Firmware, oder drücken Sie \"OK\", um trotzdem zu starten.]]> Suche nach Spiel... diff --git a/src/android/app/src/main/res/values-es/strings.xml b/src/android/app/src/main/res/values-es/strings.xml index 1f73df7385..28a93f005b 100644 --- a/src/android/app/src/main/res/values-es/strings.xml +++ b/src/android/app/src/main/res/values-es/strings.xml @@ -453,8 +453,7 @@ Ejecutar applets de sistema usando el firmware instalado Firmware no instalado o versión inválida Applet no disponible - prod.keys y -firmware estén instalados e inténtalo de nuevo.
Además, asegúrate de que tu firmware sea de la versión 19.0.1 o anterior.]]>
+ prod.keys y firmware estén instalados e inténtalo de nuevo.
Además, asegúrate de que tu firmware sea de la versión 19.0.1 o anterior.]]>
Álbum Ver las imágenes que están en la carpeta \"screenshots\" del usuario con el visor de fotos del sistema Editor de Mii @@ -722,10 +721,10 @@ Actualizaciones y DLC Mods y trucos Aviso importante de addons - + Para instalar mods y trucos, debes seleccionar una carpeta que contiene los directorios cheats/, romfs/, o exefs/ . ¡No podemos confirmar si éstos serán compatibles con tu juego, así que ten cuidado! Directorio no válido - + Por favor, asegúrese de que el directorio que ha selecionado incluye las carpetas cheats/, romfs/, o exefs/ e inténtelo de nuevo. Addon instalado con éxito Verificando contenido... @@ -744,14 +743,14 @@ Su ROM está encriptada - tarjetas de juego o títulos digitales.]]> + tarjetas de juego o títulos digitales.]]> prod.keys está instalado, para que los juegos sean descifrados.]]> Ocurrió un error al inicializar el núcleo de video, posiblemente debido a una incompatibilidad con el driver seleccionado Esto suele deberse a un driver de GPU incompatible. La instalación de un controlador de GPU personalizado puede resolver este problema. No se pudo cargar la ROM Archivo ROM no existe El juego requiere firmware - vuelca e instala el firmware, o pulsa "Aceptar" para continuar de todos modos.]]> + vuelca e instala el firmware, o pulsa \"Aceptar\" para continuar de todos modos.]]> Buscando juego... diff --git a/src/android/app/src/main/res/values-fa/strings.xml b/src/android/app/src/main/res/values-fa/strings.xml index fd5c6ae6ca..b30f67292a 100644 --- a/src/android/app/src/main/res/values-fa/strings.xml +++ b/src/android/app/src/main/res/values-fa/strings.xml @@ -451,8 +451,7 @@ برنامک‌های سیستم را با استفاده از ثابت‌افزار نصب شده راه اندازی کنید فریمور نصب نشده یا نسخه نامعتبر است برنامک در دسترس نیست - prod.keys و -فریمور شما نصب شده است و دوباره امتحان کنید.
همچنین مطمئن شوید که فریمور شما نسخه 19.0.1 یا قدیمی‌تر است.]]>
+ prod.keys و فریمور شما نصب شده است و دوباره امتحان کنید.
همچنین مطمئن شوید که فریمور شما نسخه 19.0.1 یا قدیمی‌تر است.]]>
آلبوم تصاویر ذخیره شده در پوشه اسکرین شات‌های کاربر را با نمایشگر عکس سیستم مشاهده کنید ویرایش Mii @@ -721,10 +720,10 @@ آپدیت‌ها و DLC مودها و چیت‌ها اطلاعیه مهم افزونه - + برای نصب مودها و چیت ها، باید پوشه ای را انتخاب کنید که حاوی مسیر cheats/ یا romfs/ یا exefs/ باشد. ما نمی‌توانیم تأیید کنیم که این‌ها با بازی شما سازگار هستند، بنابراین مراقب باشید! مسیر نامعتبر - + لطفاً مطمئن شوید که مسیر انتخابی شما حاوی یک پوشه cheats/ یا romfs/ یا exefs/ می‌باشد و دوباره امتحان کنید. افزونه با موفقیت نصب شد در حال تأیید محتوا… @@ -743,14 +742,14 @@ رام شما رمزگذاری شده است - کارت‌های بازی یا عنوان‌های دیجیتال را دنبال کنید.]]> + کارت‌های بازی یا عنوان‌های دیجیتال را دنبال کنید.]]> در راه‌اندازی اولیه هسته ویدیو خطایی رخ داد این مورد معمولاً توسط یک درایور گرافیکی ناسازگار ایجاد می‌شود. نصب درایور گرافیکی سفارشی ممکن است این مشکل را حل کند. رام بارگذاری نشد فایل رام وجود ندارد بازی نیاز به فیرمور دارد - فیرمور را دامپ و نصب کنید یا برای ادامه کار "تایید" را فشار دهید.]]> + فیرمور را دامپ و نصب کنید یا برای ادامه کار \"تایید\" را فشار دهید.]]> در حال جستجوی بازی... diff --git a/src/android/app/src/main/res/values-fr/strings.xml b/src/android/app/src/main/res/values-fr/strings.xml index 97496ef33d..f4c741aecc 100644 --- a/src/android/app/src/main/res/values-fr/strings.xml +++ b/src/android/app/src/main/res/values-fr/strings.xml @@ -453,8 +453,7 @@ Lancer des applets système en utilisant le firmware installé Firmware non installé ou version invalide Applet non disponible - prod.keys et -firmware sont installés et réessayez.
Assurez-vous également que votre firmware est en version 19.0.1 ou antérieure.]]>
+ prod.keys et firmware sont installés et réessayez.
Assurez-vous également que votre firmware est en version 19.0.1 ou antérieure.]]>
Album Afficher les images stockées dans le dossier de captures d\'écran de l\'utilisateur avec le visualiseur de photos système. Éditeur Mii @@ -770,10 +769,10 @@ Mises à jour et DLC Mods et cheats Notification importante concernant l\'addon - + Pour installer des mods et des cheats, vous devez sélectionner un dossier contenant un répertoire cheats/, romfs/ ou exefs/. Nous ne pouvons pas garantir leur compatibilité avec votre jeu, alors soyez prudent ! Répertoire non valide - + Veuillez vous assurer que le répertoire que vous avez sélectionné contient un dossier cheats/, romfs/ ou exefs/, puis réessayez. Addon installé avec succès Vérification du contenu... @@ -792,14 +791,14 @@ Votre ROM est cryptée - cartes de jeu ou titres numériques.]]> + cartes de jeu ou titres numériques.]]> prod.keys est installé pour que les jeux puissent être déchiffrés.]]> Une erreur s\'est produite lors de l\'initialisation du noyau vidéo Cela est généralement dû à un pilote GPU incompatible. L\'installation d\'un pilote GPU personnalisé peut résoudre ce problème. Impossible de charger la ROM Le fichier ROM n\'existe pas Jeu nécessite un firmware - dumper et installer le firmware ou appuyez sur "OK" pour continuer quand même.]]> + dumper et installer le firmware ou appuyez sur \"OK\" pour continuer quand même.]]> Recherche du jeu... diff --git a/src/android/app/src/main/res/values-he/strings.xml b/src/android/app/src/main/res/values-he/strings.xml index 359e8dff9a..6c5a877a66 100644 --- a/src/android/app/src/main/res/values-he/strings.xml +++ b/src/android/app/src/main/res/values-he/strings.xml @@ -424,10 +424,12 @@ מאפייני תיקיית משחקים נכשל בייבוא %d שמירה + נכשל בייבוא %d שמירות נכשל בייבוא %d שמירות יובא בהצלחה %d שמירה + יובא בהצלחה %d שמירות יובא בהצלחה %d שמירות לא נמצאו שמירות @@ -452,8 +454,8 @@ מערכת שיגור Applet משתמשת בתוכנה המותקנת קושחה לא מותקנת או גרסה לא תקינה Applet לא זמין - prod.keys שלך -וה-קושחה מותקנים ונסה שוב.
כמו כן, ודא שהקושחה שלך בגרסה 19.0.1 או ישנה יותר.]]>
+ prod.keys שלך +וה-קושחה מותקנים ונסה שוב.
כמו כן, ודא שהקושחה שלך בגרסה 19.0.1 או ישנה יותר.]]>
אלבום צפה בתמונות השמורות בתיקיית צילומי המסך של המשתמש בעזרת מציג התמונות של המערכת עורך Mii @@ -678,14 +680,14 @@ אימות התקינות הצליח! המשחק שלך מוצפן - כרטיסי משחק או כותרות דיגיטליות מחדש.]]> + כרטיסי משחק או כותרות דיגיטליות מחדש.]]> prod.keys מותקן כך שניתן יהיה לפענח משחקים.]]> התרחשה בעיה באתחול של ליבת הווידאו זה בדרך כלל נגרם על ידי דרייבר לא מתאים עבור המעבד הגרפי. התקנת דרייבר אשר מתאים למעבד הגרפי יכול לפתור את הבעיה הזו. אין אפשרות לטעון את המשחק קובץ המשחק לא קיים המשחק דורש קושחה - שמור והתקן קושחה או לחץ "אישור" כדי להמשיך בכל מקרה.]]> + שמור והתקן קושחה או לחץ \"אישור\" כדי להמשיך בכל מקרה.]]> מחפש משחק... diff --git a/src/android/app/src/main/res/values-hu/strings.xml b/src/android/app/src/main/res/values-hu/strings.xml index 36157d1578..6c4f428086 100644 --- a/src/android/app/src/main/res/values-hu/strings.xml +++ b/src/android/app/src/main/res/values-hu/strings.xml @@ -449,8 +449,7 @@ Rendszer appletek indítása a telepített firmware-rel A firmware nincs telepítve vagy érvénytelen verzió Applet nem elérhető - prod.keys fájl és -firmware telepítve van-e, majd próbálja újra.
Győződjön meg arról is, hogy a firmware verziója 19.0.1 vagy régebbi.]]>
+ prod.keys fájl és firmware telepítve van-e, majd próbálja újra.
Győződjön meg arról is, hogy a firmware verziója 19.0.1 vagy régebbi.]]>
Album Képernyőképek megtekintése a rendszer fényképnézegetőjével Mii szerkesztés @@ -760,10 +759,10 @@ Frissítések és DLC Modok és csalások Fontos kiegészítő értesítés - + A modok és csalások telepítéséhez olyan mappát válassz, amely tartalmaz cheats/, romfs/ vagy exefs/ könyvtárat. Nem tudjuk garantálni, hogy ezek kompatibilisek lesznek a játékoddal, ezért légy óvatos! Érvénytelen könyvtár - + Kérjük, győződj meg róla, hogy a kiválasztott könyvtár tartalmazza a cheats/, romfs/ vagy exefs/ mappát, majd próbáld újra. Kiegészítő sikeresen telepítve Tartalom ellenőrzése... @@ -782,14 +781,14 @@ ROM titkosítva - játékkártyák vagy digitális címek újradumpolásához.]]> + játékkártyák vagy digitális címek újradumpolásához.]]> prod.keys fájl telepítve van, hogy a játékok visszafejthetők legyenek.]]> Hiba lépett fel a videómag inicializása során Ezt általában egy nem kompatibilis GPU illesztő okozza. Egyéni GPU illesztőprogram telepítése megoldhatja a problémát. Nem sikerült betölteni a ROM-ot ROM fájl nem létezik A játék firmware-t igényel - dumpolja és telepítse a firmware-t, vagy nyomja meg az "OK" gombot a folytatáshoz.]]> + dumpolja és telepítse a firmware-t, vagy nyomja meg az \"OK\" gombot a folytatáshoz.]]> Játék keresése... diff --git a/src/android/app/src/main/res/values-id/strings.xml b/src/android/app/src/main/res/values-id/strings.xml index 18e881a97b..8e89132815 100644 --- a/src/android/app/src/main/res/values-id/strings.xml +++ b/src/android/app/src/main/res/values-id/strings.xml @@ -323,10 +323,10 @@ Karousel Folder Perangkat Lunak Pre-Alpha - "PERINGATAN: Build ini tidak dimaksudkan untuk dibagikan atau ditunjukkan ke publik. Perangkat lunak ini dalam tahap pre-alpha dan mungkin memiliki bug dan fitur yang belum lengkap. \nJika Anda mendapatkan akses tidak sah ke build ini; sangat disarankan untuk mencopotnya segera" + PERINGATAN: Build ini tidak dimaksudkan untuk dibagikan atau ditunjukkan ke publik. Perangkat lunak ini dalam tahap pre-alpha dan mungkin memiliki bug dan fitur yang belum lengkap. \nJika Anda mendapatkan akses tidak sah ke build ini; sangat disarankan untuk mencopotnya segera Jangan Tampilkan Lagi - PERANGKAT LUNAK PRE-ALPHA; TIDAK UNTUK PENGGUNAAN PUBLIK\ - "Direktori game baru berhasil ditambahkan" + PERANGKAT LUNAK PRE-ALPHA; TIDAK UNTUK PENGGUNAAN PUBLIK + Direktori game baru berhasil ditambahkan Permainan Cari Pengaturan @@ -449,8 +449,7 @@ Meluncurkan sistem applet menggunakan firmware yang diinstal Firmware tidak terinstal atau versi tidak valid Applet tidak tersedia - prod.keys dan -firmware Anda terinstal dan coba lagi.
Pastikan juga firmware Anda versi 19.0.1 atau lebih lama.]]>
+ prod.keys dan firmware Anda terinstal dan coba lagi.
Pastikan juga firmware Anda versi 19.0.1 atau lebih lama.]]>
Album Lihat gambar yang disimpan di folder tangkapan layar pengguna dengan penampil foto sistem. Ubah Mii @@ -714,10 +713,10 @@ Update Dan Dlc Mod Dan Cheat Pemberitahuan Pengaya - + Untuk memasang mod dan cheat, Anda harus memilih folder yang berisi direktori cheats/, romfs/, atau exefs/. Kami tidak dapat memverifikasi apakah semua ini kompatibel dengan game Anda, jadi berhati-hatilah! Direktori Tidak Valid - + Pastikan direktori yang Anda pilih berisi folder cheats/, romfs/, atau exefs/, lalu coba lagi. Pengaya Sukses Dipasang Memverifikasi Konten @@ -736,14 +735,14 @@ ROM-mu ter-enkripsi - kartrid game atau judul digital Anda.]]> + kartrid game atau judul digital Anda.]]> prod.keys diinstal sehingga game dapat didekripsi.]]> Terjadi kesalahan ketika menginisialisasi inti video. Hal ini biasanya disebabkan oleh driver GPU yang tidak kompatibel. Menginstal driver GPU khusus dapat mengatasi masalah ini Tidak Dapat Memuat ROM Berkas Tidak Ditemukan Game memerlukan firmware - dump dan instal firmware, atau tekan "OK" untuk melanjutkan.]]> + dump dan instal firmware, atau tekan \"OK\" untuk melanjutkan.]]> Mencari game... diff --git a/src/android/app/src/main/res/values-it/strings.xml b/src/android/app/src/main/res/values-it/strings.xml index 38a82b3c11..339bae8883 100644 --- a/src/android/app/src/main/res/values-it/strings.xml +++ b/src/android/app/src/main/res/values-it/strings.xml @@ -424,10 +424,12 @@ Proprietà della cartella di Gioco Importazione fallita per %d salvataggio + Importazione fallita per %d salvataggi Importazione fallita per %d salvataggi Importati %d salvataggio + Importati %d salvataggi Importati %d salvataggi Nessun salvataggio trovato @@ -452,8 +454,7 @@ Avvia applet di sistema usando il firmware installato Firmware non installato o versione non valida Applet non disponibile - prod.keys e -firmware siano installati e riprova.
Inoltre, assicurati che il tuo firmware sia versione 19.0.1 o precedente.]]>
+ prod.keys e firmware siano installati e riprova.
Inoltre, assicurati che il tuo firmware sia versione 19.0.1 o precedente.]]>
Album Visualizza le immagini salvate nella cartella screenshots dell\'utente con il visualizzatore immagini di sistema Modifica Mii @@ -709,14 +710,14 @@ L\'integrità dei contenuti non è stata validata La tua ROM è criptata - schede di gioco o titoli digitali.]]> + schede di gioco o titoli digitali.]]> prod.keys sia installato in modo che i giochi possano essere decrittati.]]> È stato riscontrato un errore nell\'inizializzazione del core video Questo è causato solitamente dal driver incompatibile di una GPU. L\'installazione di driver GPU personalizzati potrebbe risolvere questo problema. Impossibile caricare la ROM Il file della ROM non esiste Il gioco richiede firmware - dumpa e installa il firmware, o premi "OK" per continuare comunque.]]> + dumpa e installa il firmware, o premi \"OK\" per continuare comunque.]]> Ricerca del gioco in corso... diff --git a/src/android/app/src/main/res/values-ja/strings.xml b/src/android/app/src/main/res/values-ja/strings.xml index 0a873b04eb..4fc9f135e4 100644 --- a/src/android/app/src/main/res/values-ja/strings.xml +++ b/src/android/app/src/main/res/values-ja/strings.xml @@ -413,11 +413,9 @@ このフォルダは既に追加されています ゲームフォルダのプロパティ - %d件のセーブインポート失敗 %d件のセーブインポート失敗 - %d件のセーブインポート成功 %d件のセーブインポート成功 セーブデータが見つかりません @@ -442,8 +440,7 @@ インストール済みファームウェアでシステムアプレットを起動 ファームウェアがインストールされていないか無効なバージョンです アプレット利用不可 - prod.keysファイルと -ファームウェアがインストールされていることを確認し、再度お試しください。
また、ファームウェアが19.0.1以下のバージョンであることを確認してください。]]>
+ prod.keysファイルと ファームウェアがインストールされていることを確認し、再度お試しください。
また、ファームウェアが19.0.1以下のバージョンであることを確認してください。]]>
アルバム システムフォトビューアでスクリーンショットを表示 Mii編集 @@ -668,14 +665,14 @@ 整合性の確認に失敗しました! ROMが暗号化されています - ゲームカードまたはデジタルタイトルを再ダンプするにはガイドに従ってください。]]> + ゲームカードまたはデジタルタイトルを再ダンプするにはガイドに従ってください。]]> prod.keys ファイルがインストールされていることを確認してください。]]> ビデオコアの初期化中にエラーが発生しました これは通常、互換性のないGPUドライバーが原因で発生します。 カスタムGPUドライバーをインストールすると、問題が解決する可能性があります。 ROMの読み込みに失敗しました ROMファイルが存在しません ゲームにはファームウェアが必要です - ファームウェアをダンプしてインストールするか、"OK"を押して続行してください。]]> + ファームウェアをダンプしてインストールするか、\"OK\"を押して続行してください。]]> ゲームを検索中... diff --git a/src/android/app/src/main/res/values-ko/strings.xml b/src/android/app/src/main/res/values-ko/strings.xml index e598bb1120..ebad3409d7 100644 --- a/src/android/app/src/main/res/values-ko/strings.xml +++ b/src/android/app/src/main/res/values-ko/strings.xml @@ -322,10 +322,10 @@ 캐러셀 폴더 프리-알파 소프트웨어 - "경고: 이 빌드는 공개용이 아닙니다. 이 소프트웨어는 프리-알파 단계이며 버그 및 미완성 기능이 있을 수 있습니다. \n무단으로 이 빌드를 획득한 경우 즉시 삭제하는 것이 좋습니다." + 경고: 이 빌드는 공개용이 아닙니다. 이 소프트웨어는 프리-알파 단계이며 버그 및 미완성 기능이 있을 수 있습니다. \n무단으로 이 빌드를 획득한 경우 즉시 삭제하는 것이 좋습니다. 다시 보지 않기 - 프리-알파 소프트웨어; 공개용 아님\ - 새 게임 디렉터리가 성공적으로 추가되었습니다." + 프리-알파 소프트웨어; 공개용 아님 + 새 게임 디렉터리가 성공적으로 추가되었습니다. 게임 검색 설정 @@ -448,8 +448,7 @@ 설치된 펌웨어를 사용해 시스템 애플릿을 실행합니다. 펌웨어가 설치되지 않았거나 유효하지 않은 버전입니다 애플릿을 사용할 수 없음 - prod.keys 파일과 -펌웨어가 설치되어 있는지 확인하고 다시 시도하세요.
또한 펌웨어 버전이 19.0.1 이하인지 확인하세요.]]>
+ prod.keys 파일과 펌웨어가 설치되어 있는지 확인하고 다시 시도하세요.
또한 펌웨어 버전이 19.0.1 이하인지 확인하세요.]]>
앨범 시스템 사진 뷰어로 유저 스크린샷 폴더에 저장된 이미지를 확인합니다. Mii 편집 @@ -714,10 +713,10 @@ 업데이트 및 DLC 모드 및 치트 중요 애드온 알림 - + 모드와 치트를 설치하려면 cheats/, romfs/, 또는 exefs/ 디렉토리를 포함하는 폴더를 선택해야 합니다. 게임과의 호환 여부를 확인할 수 없기 때문에 신중하게 결정하세요. 잘못된 디렉토리 - + 선택한 디렉토리가 cheats/, romfs/, 또는 exefs/ 폴더를 포함하는지 확인하고 다시 시도하세요. 애드온을 설치했습니다. 콘텐츠 확인 중... @@ -736,14 +735,14 @@ 롬 파일이 암호화되어있음 - 게임 카드 또는 디지털 타이틀을 다시 덤프하려면 가이드를 따르세요.]]> + 게임 카드 또는 디지털 타이틀을 다시 덤프하려면 가이드를 따르세요.]]> prod.keys 파일이 설치되어 있는지 확인하세요.]]> 비디오 코어를 초기화하는 동안 오류 발생 일반적으로 이 문제는 호환되지 않는 GPU 드라이버로 인해 발생합니다. 사용자 지정 GPU 드라이버를 설치하면 이 문제가 해결될 수 있습니다. 롬 파일을 불러올 수 없음 롬 파일이 존재하지 않음 게임에 펌웨어가 필요합니다 - 펌웨어를 덤프하여 설치하거나 "확인"을 눌러 계속 진행하세요.]]> + 펌웨어를 덤프하여 설치하거나 \"확인\"을 눌러 계속 진행하세요.]]> 게임 검색 중... diff --git a/src/android/app/src/main/res/values-nb/strings.xml b/src/android/app/src/main/res/values-nb/strings.xml index 7f0cffc7c4..4a5f6f2efb 100644 --- a/src/android/app/src/main/res/values-nb/strings.xml +++ b/src/android/app/src/main/res/values-nb/strings.xml @@ -441,8 +441,7 @@ Start systemapplets Firmware er ikke installert eller ugyldig versjon Applet utilgjengelig - prod.keys-filen din og -firmware er installert og prøv igjen.
Kontroller også at firmwaren din er versjon 19.0.1 eller eldre.]]>
+ prod.keys-filen din og firmware er installert og prøv igjen.
Kontroller også at firmwaren din er versjon 19.0.1 eller eldre.]]>
Album Vis bilder i systemets fotovisning Mii-redigering @@ -659,14 +658,14 @@ Integritetsverifisering mislyktes! ROM-en din er kryptert - spillkort eller digitale titler på nytt.]]> + spillkort eller digitale titler på nytt.]]> prod.keys filen er installert slik at spillene kan dekrypteres.]]> Det oppstod en feil ved initialisering av videokjernen Dette skyldes vanligvis en inkompatibel GPU-driver. Installering av en tilpasset GPU-driver kan løse problemet. Kunne ikke laste inn ROM ROM-filen finnes ikke Spillet krever fastvare - dump og installer fastvare, eller trykk "OK" for å fortsette likevel.]]> + dump og installer fastvare, eller trykk \"OK\" for å fortsette likevel.]]> Søker etter spill... diff --git a/src/android/app/src/main/res/values-pl/strings.xml b/src/android/app/src/main/res/values-pl/strings.xml index de9b8f47fc..d1bc789aa9 100644 --- a/src/android/app/src/main/res/values-pl/strings.xml +++ b/src/android/app/src/main/res/values-pl/strings.xml @@ -413,10 +413,14 @@ Właściwości folderu Błąd importu %d zapisu + Błąd importu %d zapisów + Błąd importu %d zapisów Błąd importu %d zapisów Pomyślnie zaimportowano %d zapis + Pomyślnie zaimportowano %d zapisów + Pomyślnie zaimportowano %d zapisów Pomyślnie zaimportowano %d zapisów Brak zapisów @@ -441,8 +445,7 @@ Uruchamia aplety systemowe. Firmware nie zainstalowany lub nieprawidłowa wersja Aplet niedostępny - prod.keys i -firmware są zainstalowane i spróbuj ponownie.
Upewnij się również, że firmware jest w wersji 19.0.1 lub starszej.]]>
+ prod.keys i firmware są zainstalowane i spróbuj ponownie.
Upewnij się również, że firmware jest w wersji 19.0.1 lub starszej.]]>
Album Przeglądaj zrzuty ekranu. Edytor Mii @@ -657,14 +660,14 @@ Dodatki Twój ROM jest zakodowany - karty gry lub tytuły cyfrowe.]]> + karty gry lub tytuły cyfrowe.]]> prod.keys jest zainstalowany aby gry mogły zostać odczytane.]]> Błąd inicjacji podsystemu graficznego Zazwyczaj spowodowane niekompatybilnym sterownikiem GPU, instalacja niestandardowego sterownika może rozwiązać ten problem. Nie można wczytać pliku ROM Plik ROM nie istnieje Gra wymaga oprogramowania sprzętowego - zrzuć i zainstaluj oprogramowanie sprzętowe, lub naciśnij "OK", aby kontynuować mimo to.]]> + zrzuć i zainstaluj oprogramowanie sprzętowe, lub naciśnij \"OK\", aby kontynuować mimo to.]]> Wyszukiwanie gry... diff --git a/src/android/app/src/main/res/values-pt-rBR/strings.xml b/src/android/app/src/main/res/values-pt-rBR/strings.xml index 5571c2aea4..bad95a18e5 100644 --- a/src/android/app/src/main/res/values-pt-rBR/strings.xml +++ b/src/android/app/src/main/res/values-pt-rBR/strings.xml @@ -323,10 +323,10 @@ Carrossel Pasta Software Pré-Alpha - "AVISO: Esta versão não deve ser compartilhada. Software em estágio pré-alpha pode conter bugs e recursos incompletos. \nSe você obteve acesso não autorizado a esta versão, é recomendado desinstalá-la imediatamente." + AVISO: Esta versão não deve ser compartilhada. Software em estágio pré-alpha pode conter bugs e recursos incompletos. \nSe você obteve acesso não autorizado a esta versão, é recomendado desinstalá-la imediatamente. Não mostrar novamente SOFTWARE PRÉ-ALPHA; NÃO PARA USO PÚBLICO - "Pasta de jogos adicionada com sucesso" + Pasta de jogos adicionada com sucesso Jogos Pesquisar Configurações @@ -453,8 +453,7 @@ Execute miniaplicativos do sistema usando o firmware instalado Firmware não instalado ou versão inválida Miniaplicativo não disponível - prod.keys e -firmware estejam instalados e tente novamente.
Além disso, verifique se seu firmware é a versão 19.0.1 ou mais antiga.]]>
+ prod.keys e firmware estejam instalados e tente novamente.
Além disso, verifique se seu firmware é a versão 19.0.1 ou mais antiga.]]>
Álbum Visualize imagens armazenadas na pasta de capturas de telas do usuário com o visualizador de imagens do sistema Editor de Mii @@ -771,10 +770,10 @@ uma tentativa de mapeamento automático Atualizações e DLC Mods e cheats Aviso importante sobre os complementos - + Para instalar mods e cheats, você deve selecionar uma pasta que contenha um diretório cheats/, romfs/ ou exefs. Não podemos verificar se eles são compatíveis com seu jogo, então tenha cuidado! Diretório inválido - + Por favor verifique se o diretório selecionado contém uma pasta cheats/, romfs/ ou exefs/ e tente novamente. Complemento instalado com sucesso Verificando conteúdo... @@ -793,14 +792,14 @@ uma tentativa de mapeamento automático Sua ROM está encriptada - cartões de jogo ou títulos digitais.]]> + cartões de jogo ou títulos digitais.]]> prod.keys está instalado para que os jogos possam ser decriptados.]]> Ocorreu um erro ao iniciar o núcleo de vídeo. Isto é normalmente causado por um driver de GPU incompatível. Instalar um driver de GPU personalizado pode resolver este problema. Impossível carregar a ROM O arquivo ROM não existe O jogo requer firmware - faça dump e instale o firmware, ou pressione "OK" para continuar mesmo assim.]]> + faça dump e instale o firmware, ou pressione \"OK\" para continuar mesmo assim.]]> Procurando jogo... diff --git a/src/android/app/src/main/res/values-pt-rPT/strings.xml b/src/android/app/src/main/res/values-pt-rPT/strings.xml index 81aa7e92c0..0b57eebab6 100644 --- a/src/android/app/src/main/res/values-pt-rPT/strings.xml +++ b/src/android/app/src/main/res/values-pt-rPT/strings.xml @@ -453,8 +453,7 @@ Inicie miniaplicativos do sistema usando o firmware instalado Firmware não instalado ou versão inválida Miniaplicativo não disponível - prod.keys e -firmware estão instalados e tente novamente.
Além disso, verifique se o seu firmware é a versão 19.0.1 ou mais antiga.]]>
+ prod.keys e firmware estão instalados e tente novamente.
Além disso, verifique se o seu firmware é a versão 19.0.1 ou mais antiga.]]>
Álbum Visualize imagens armazenadas na pasta de capturas de telas do usuário com o visualizador de imagens do sistema Editor de Mii @@ -771,10 +770,10 @@ uma tentativa de mapeamento automático Atualizações e DLC Mods e trapaças Aviso importante sobre os adicionais - + Para instalar mods e cheats, você deve selecionar uma pasta que contenha um diretório cheats/, romfs/ ou exefs. Não podemos verificar se eles são compatíveis com seu jogo, então tenha cuidado! Diretório inválido - + Por favor verifique se o diretório selecionado contém uma pasta cheats/, romfs ou exefs e tente novamente. Adicional instalado com sucesso Verificando conteúdo @@ -793,14 +792,14 @@ uma tentativa de mapeamento automático A tua ROM está encriptada - cartões de jogo ou títulos digitais.]]> + cartões de jogo ou títulos digitais.]]> prod.keys está instalado para que os jogos possam ser desencriptados.]]> Ocorreu um erro ao iniciar o núcleo de vídeo. Isto é normalmente causado por um driver de GPU incompatível. Instalar um driver GPU pode resolver este problema. Impossível carregar a tua ROM O ficheiro da ROM não existe O jogo requer firmware - faça dump e instale o firmware, ou pressione "OK" para continuar mesmo assim.]]> + faça dump e instale o firmware, ou pressione \"OK\" para continuar mesmo assim.]]> A procurar jogo... diff --git a/src/android/app/src/main/res/values-ru/strings.xml b/src/android/app/src/main/res/values-ru/strings.xml index eee249c44a..53f49b91cb 100644 --- a/src/android/app/src/main/res/values-ru/strings.xml +++ b/src/android/app/src/main/res/values-ru/strings.xml @@ -455,8 +455,7 @@ Запуск системных апплетов на установленной прошивке Прошивка не установлена или неверная версия Апплет недоступен - prod.keys и -прошивка установлены, и попробуйте снова.
Также убедитесь, что ваша прошивка версии 19.0.1 или ниже.]]>
+ prod.keys и прошивка установлены, и попробуйте снова.
Также убедитесь, что ваша прошивка версии 19.0.1 или ниже.]]>
Альбом Просмотрите изображения, сохраненные в папке скриншотов пользователя, с помощью системного просмотрщика фотографий. Mii редактор @@ -772,10 +771,10 @@ Обновления и DLC Моды и читы Важное уведомление о дополнении - + Для установки модов и читов необходимо выбрать папку, содержащую каталог cheats/, romfs/ или exefs/. Мы не можем гарантировать их совместимость с вашей игрой, поэтому будьте осторожны! Неверный каталог - + Пожалуйста, убедитесь, что выбранная вами директория содержит папку cheats/, romfs/ или exefs/ и попробуйте снова. Аддон успешно установлен Проверка содержимого... @@ -794,14 +793,14 @@ Ваш ROM зашифрованный - игровых картриджей или установленных игр.]]> + игровых картриджей или установленных игр.]]> prod.keys установлен, чтобы игры можно было расшифровать.]]> Произошла ошибка при инициализации видеоядра. Обычно это вызвано несовместимым драйвером ГП. Установка пользовательского драйвера ГП может решить эту проблему. Не удалось запустить ROM Файл ROM не существует Игре требуется прошивка - сохраните и установите прошивку или нажмите "OK" для запуска в любом случае.]]> + сохраните и установите прошивку или нажмите \"OK\" для запуска в любом случае.]]> Поиск игры... diff --git a/src/android/app/src/main/res/values-sr/strings.xml b/src/android/app/src/main/res/values-sr/strings.xml index b123757f5a..3f2de72f8b 100644 --- a/src/android/app/src/main/res/values-sr/strings.xml +++ b/src/android/app/src/main/res/values-sr/strings.xml @@ -274,10 +274,10 @@ Карусел Мапа Пре-Алпха софтвер - "УПОЗОРЕЊЕ: Овај софтвер је у пре-алфа фази и може имати грешке и непотпуне примене функција." + УПОЗОРЕЊЕ: Овај софтвер је у пре-алфа фази и може имати грешке и непотпуне примене функција. Не покажи поново Пре-Алпха софтвер - "Нова играчка игара је успешно додата" + Нова играчка игара је успешно додата Игре Тражити Подешавања @@ -287,7 +287,7 @@ Управљајте мапама игара Омогућује ЕДЕН-у да попуни листу игара Прескочите одабир мапе игре? - Игре побеђују \ "т приказују се на листи игара ако је изабрана мапа н \" т. + Игре побеђују \"т приказују се на листи игара ако је изабрана мапа н \" т. Претражите игре Подешавања претраге Изабрани Игре Именик @@ -364,7 +364,7 @@ %1$d инсталирано успешно %1$d преписано успешно Прилагођени управљачки програми нису подржани - Прилагођени управљачки програм за учитавање ИСН \ "т тренутно подржан за овај уређај. \ НХЕЦК Поново у будућности да бисте видели да ли је додата подршка! + Прилагођени управљачки програм за учитавање ИСН \"т тренутно подржан за овај уређај.\" НХЕЦК Поново у будућности да бисте видели да ли је додата подршка! Управљајте подацима ЕДЕН-а Увоз / извозни софтвер, кључеви, кориснички подаци и још много тога! Схаре Спреми датотеку @@ -376,10 +376,12 @@ Играње некретнина Увоз%d уштедите%d + Увоз%d уносе%d Увоз%d уносе%d Успешно увезено%d уштеда + Успешно увезени%d штеди Успешно увезени%d штеди Не пронађени су подаци сачувања @@ -479,7 +481,7 @@ Омјер аспекта Филтер прилагођавања прозора ФСР оштрина - Одређује колико ће се слика наоштрен трајати док користи ФСР \ "динамички контраст + Одређује колико ће се слика наоштрен трајати док користи \"ФСР\" динамички контраст Метода против алиасирања Формирајте максималне сатове (само адрено) Снагује ГПУ да се покреће максималним могућим сатовима (топлотна ограничења ће се и даље примењивати). @@ -728,10 +730,10 @@ Ажурирања и ДЛЦ Модови и варалице Важна Обавештење о Аддон-у - + Да бисте инсталирали модс и варалице, морате да одаберете мапу која садржи шифре /, Ромфс / или ЕкеФС / директориј. Не можемо да проверимо да ли ће то бити компатибилно са вашом игром, па будите опрезни! Неважећи директориј - + Молимо вас проверите да ли је име одабрано да садржи варалице /, Ромфс / или ЕкеФС / мапу и покушајте поново. Аддон је успешно инсталиран Верификација садржаја ... @@ -757,7 +759,7 @@ Није могуће учитати РОМ РОМ датотека не постоји Игра захтева firmware - направите дамп и инсталирајте firmware, или притисните "OK" да бисте наставили у сваком случају.]]> + направите дамп и инсталирајте firmware, или притисните \"OK\" да бисте наставили у сваком случају.]]> Тражење игре... diff --git a/src/android/app/src/main/res/values-uk/strings.xml b/src/android/app/src/main/res/values-uk/strings.xml index 2222402a25..b5eee4992c 100644 --- a/src/android/app/src/main/res/values-uk/strings.xml +++ b/src/android/app/src/main/res/values-uk/strings.xml @@ -413,10 +413,14 @@ Властивості теки Не вдалося імпортувати %d збереження + Не вдалося імпортувати %d збережень + Не вдалося імпортувати %d збережень Не вдалося імпортувати %d збережень Успішно імпортовано %d збереження + Успішно імпортовано %d збережень + Успішно імпортовано %d збережень Успішно імпортовано %d збережень Збережень не знайдено @@ -441,8 +445,7 @@ Запуск системних аплетів за допомогою прошивки. Прошивка не встановлена або недійсна версія Аплет недоступний - prod.keys та -прошивка встановлені, і спробуйте ще раз.
Також переконайтеся, що ваша прошивка має версію 19.0.1 або старішу.]]>
+ prod.keys та прошивка встановлені, і спробуйте ще раз.
Також переконайтеся, що ваша прошивка має версію 19.0.1 або старішу.]]>
Альбом Перегляд зображень у папці скріншотів. Редактор Mii @@ -462,7 +465,7 @@ Автори проєкту Зроблено з \u2764 командою Eden Проєкти, які зробили запуск Eden на Android можливим - + Збірка Дані користувача Імпортувати/експортувати всі дані застосунку.\n\nПід час імпорту всі наявні дані користувача буде видалено!\n\nІмпортування даних із Citron може спричинити помилки. Рекомендується вручну імпортувати всі потрібні дані. @@ -687,14 +690,14 @@ Ваш ROM зашифрований - ігрових картриджів або цифрових назв.]]> + ігрових картриджів або цифрових назв.]]> prod.keys встановлено, щоб ігри можна було розшифрувати.]]> Сталася помилка під час ініціалізації відеоядра. Зазвичай це спричинено несумісним драйвером GPU. Встановлення користувацького драйвера GPU може вирішити цю проблему. Не вдалося запустити ROM ROM файлу не існує Гра вимагає прошивки - зробіть дамп і встановіть прошивку, або натисніть "OK", щоб продовжити в будь-якому разі.]]> + зробіть дамп і встановіть прошивку, або натисніть \"OK\", щоб продовжити в будь-якому разі.]]> Пошук гри... diff --git a/src/android/app/src/main/res/values-vi/strings.xml b/src/android/app/src/main/res/values-vi/strings.xml index 784b2dec14..1a34509f5c 100644 --- a/src/android/app/src/main/res/values-vi/strings.xml +++ b/src/android/app/src/main/res/values-vi/strings.xml @@ -412,11 +412,9 @@ Thư mục đã tồn tại Thuộc tính thư mục - Lỗi nhập %d save Lỗi nhập %d saves - Nhập thành công %d save Nhập thành công %d saves Không tìm thấy save @@ -441,8 +439,7 @@ Khởi chạy applet hệ thống Firmware chưa cài đặt hoặc phiên bản không hợp lệ Applet không khả dụng - prod.keys và -firmware đã được cài đặt và thử lại.
Đồng thời đảm bảo firmware của bạn là phiên bản 19.0.1 hoặc cũ hơn.]]>
+ prod.keys và firmware đã được cài đặt và thử lại.
Đồng thời đảm bảo firmware của bạn là phiên bản 19.0.1 hoặc cũ hơn.]]>
Album Xem ảnh trong thư mục chụp màn hình Chỉnh sửa Mii @@ -662,14 +659,14 @@ Kiểm tra tính toàn vẹn thất bại! ROM của bạn đã bị mã hoá - băng trò chơi hoặc tựa game kỹ thuật số của bạn.]]> + băng trò chơi hoặc tựa game kỹ thuật số của bạn.]]> prod.keys đã được cài đặt để game có thể được giải mã.]]> Đã xảy ra lỗi khi khởi tạo lõi video Việc này thường do driver GPU không tương thích. Cài đặt một driver GPU tùy chỉnh có thể giải quyết vấn đề này. Không thể tải ROM Tệp ROM không tồn tại Trò chơi yêu cầu firmware - dump và cài đặt firmware, hoặc nhấn "OK" để tiếp tục dù sao đi nữa.]]> + dump và cài đặt firmware, hoặc nhấn \"OK\" để tiếp tục dù sao đi nữa.]]> Đang tìm kiếm trò chơi... diff --git a/src/android/app/src/main/res/values-zh-rCN/strings.xml b/src/android/app/src/main/res/values-zh-rCN/strings.xml index 5cf657ef3d..6fa40b8727 100644 --- a/src/android/app/src/main/res/values-zh-rCN/strings.xml +++ b/src/android/app/src/main/res/values-zh-rCN/strings.xml @@ -447,8 +447,7 @@ 使用已安装的固件启动系统小程序 固件未安装或版本无效 小程序不可用 - prod.keys文件和 -固件已安装并重试。
同时请确保您的固件版本为19.0.1或更早。]]>
+ prod.keys文件和 固件已安装并重试。
同时请确保您的固件版本为19.0.1或更早。]]>
相册 查看存储在用户屏幕截图文件夹中的图像 Mii edit @@ -764,10 +763,10 @@ 游戏更新和 DLC Mod 和金手指 附加项重要提醒 - + 为了安装 mod 和金手指,您必须选择一个包含 cheats/、romfs/ 或 exefs/ 目录的文件夹。我们无法验证这些内容是否与您的游戏兼容,所以请小心使用! 无效目录 - + 请确保您选择的目录下包含 cheats/、romfs/ 或 exefs/ 文件夹然后重试。 附加项安装成功 验证安装内容... @@ -786,14 +785,14 @@ 您的 ROM 已加密 - 游戏卡带或数字版游戏。]]> + 游戏卡带或数字版游戏。]]> prod.keys 文件已安装,使得游戏可以被解密。]]> 初始化视频核心时发生错误 这通常由不兼容的 GPU 驱动程序造成,安装自定义 GPU 驱动程序可能解决此问题。 无法载入 ROM ROM 文件不存在 游戏需要固件 - 转储并安装固件,或点击"确定"继续。]]> + 转储并安装固件,或点击\"确定\"继续。]]> 正在搜索游戏... diff --git a/src/android/app/src/main/res/values-zh-rTW/strings.xml b/src/android/app/src/main/res/values-zh-rTW/strings.xml index f4d690dbaa..b73ec8ccaa 100644 --- a/src/android/app/src/main/res/values-zh-rTW/strings.xml +++ b/src/android/app/src/main/res/values-zh-rTW/strings.xml @@ -452,8 +452,7 @@ 使用已安裝的韌體啟動系統小程式 韌體未安裝或版本無效 無法使用小程式 - prod.keys檔案和 -韌體已安裝並重試。
同時請確保您的韌體版本為19.0.1或更早。]]>
+ prod.keys檔案和 韌體已安裝並重試。
同時請確保您的韌體版本為19.0.1或更早。]]>
相簿 使用系統相片檢視器查看儲存在使用者螢幕截圖資料夾中的影像 Mii 編輯 @@ -769,10 +768,10 @@ 更新及 DLC 模組及密技 重要的˙附加元件通知 - + 若要安裝模組及密技,您必須選取一個包含 cheats/、romfs/ 或 exefs/ 的目錄。我們無法驗證這些內容是否與您的遊戲相容,所以請小心作業! 無效的目錄 - + 請確保您選取的目錄包含 cheats/、romfs/ 或 exefs/ 資料夾,然後再試一次。 附加元件已成功安裝 正在驗證內容… @@ -791,14 +790,14 @@ 您的 ROM 已加密 - 遊戲卡帶或數位版遊戲。]]> + 遊戲卡帶或數位版遊戲。]]> prod.keys 檔案已安裝,讓遊戲可以解密。]]> 初始化視訊核心時發生錯誤 這經常由不相容的 GPU 驅動程式造成,安裝自訂 GPU 驅動程式可能會解決此問題。 無法載入 ROM ROM 檔案不存在 遊戲需要韌體 - 轉儲並安裝韌體,或點擊"確定"繼續。]]> + 轉儲並安裝韌體,或點擊\"確定\"繼續。]]> 正在搜尋遊戲... diff --git a/src/android/app/src/main/res/values/strings.xml b/src/android/app/src/main/res/values/strings.xml index 3b76c0ba79..1545576ea8 100644 --- a/src/android/app/src/main/res/values/strings.xml +++ b/src/android/app/src/main/res/values/strings.xml @@ -271,10 +271,10 @@ Screenshot for %1$s Folder Pre-Alpha Software - "WARNING: This software is in the pre-alpha stage and may have bugs and incomplete feature implementations." + WARNING: This software is in the pre-alpha stage and may have bugs and incomplete feature implementations. Don\'t Show Again - PRE-ALPHA SOFTWARE\ - "New game directory added successfully " + PRE-ALPHA SOFTWARE + New game directory added successfully Games Search Settings @@ -751,10 +751,10 @@ Updates and DLC Mods and cheats Important addon notice - + In order to install mods and cheats, you must select a folder that contains a cheats/, romfs/, or exefs/ directory. We can\'t verify if these will be compatible with your game so be careful! Invalid directory - + Please make sure that the directory you selected contains a cheats/, romfs/, or exefs/ folder and try again. Addon installed successfully Verifying content… @@ -781,7 +781,7 @@ ROM file does not exist Game Requires Firmware - dump and install firmware, or press "OK" to launch anyways.]]> + dump and install firmware, or press \"OK\" to launch anyways.]]> Searching for game... diff --git a/src/audio_core/CMakeLists.txt b/src/audio_core/CMakeLists.txt index 389b1044e9..c9f8af7dc3 100644 --- a/src/audio_core/CMakeLists.txt +++ b/src/audio_core/CMakeLists.txt @@ -230,7 +230,7 @@ else() endif() target_include_directories(audio_core PRIVATE ${OPUS_INCLUDE_DIRS}) -target_link_libraries(audio_core PUBLIC common core opus) +target_link_libraries(audio_core PUBLIC common core Opus::opus) # what? # if (ARCHITECTURE_x86_64 OR ARCHITECTURE_arm64) @@ -243,7 +243,7 @@ if (ENABLE_CUBEB) sink/cubeb_sink.h ) - target_link_libraries(audio_core PRIVATE cubeb) + target_link_libraries(audio_core PRIVATE cubeb::cubeb) target_compile_definitions(audio_core PRIVATE HAVE_CUBEB=1) endif() diff --git a/src/network/CMakeLists.txt b/src/network/CMakeLists.txt index 1487033b22..598cc2e1be 100644 --- a/src/network/CMakeLists.txt +++ b/src/network/CMakeLists.txt @@ -22,7 +22,7 @@ add_library(network STATIC create_target_directory_groups(network) -target_link_libraries(network PRIVATE common enet Boost::headers) +target_link_libraries(network PRIVATE common enet::enet Boost::headers) if (ENABLE_WEB_SERVICE) target_compile_definitions(network PRIVATE ENABLE_WEB_SERVICE) target_link_libraries(network PRIVATE web_service) diff --git a/src/video_core/CMakeLists.txt b/src/video_core/CMakeLists.txt index 3c2473266a..642494016e 100644 --- a/src/video_core/CMakeLists.txt +++ b/src/video_core/CMakeLists.txt @@ -321,11 +321,12 @@ add_library(video_core STATIC target_link_libraries(video_core PUBLIC common core) target_link_libraries(video_core PUBLIC glad shader_recompiler stb bc_decoder) -if (YUZU_USE_BUNDLED_FFMPEG AND NOT (WIN32 OR ANDROID)) +if (YUZU_USE_EXTERNAL_FFMPEG) add_dependencies(video_core ffmpeg-build) endif() target_include_directories(video_core PRIVATE ${FFmpeg_INCLUDE_DIR}) + target_link_libraries(video_core PRIVATE ${FFmpeg_LIBRARIES}) target_link_options(video_core PRIVATE ${FFmpeg_LDFLAGS}) diff --git a/src/video_core/host1x/ffmpeg/ffmpeg.cpp b/src/video_core/host1x/ffmpeg/ffmpeg.cpp index 6609752bdb..536a01fcc8 100644 --- a/src/video_core/host1x/ffmpeg/ffmpeg.cpp +++ b/src/video_core/host1x/ffmpeg/ffmpeg.cpp @@ -28,7 +28,7 @@ constexpr AVPixelFormat PreferredCpuFormat = AV_PIX_FMT_YUV420P; constexpr std::array PreferredGpuDecoders = { #if defined (_WIN32) AV_HWDEVICE_TYPE_CUDA, - AV_HWDEVICE_TYPE_D3D11VA, + AV_HWDEVICE_TYPE_D3D11VA, AV_HWDEVICE_TYPE_DXVA2, #elif defined(__FreeBSD__) AV_HWDEVICE_TYPE_VDPAU, @@ -37,7 +37,7 @@ constexpr std::array PreferredGpuDecoders = { AV_HWDEVICE_TYPE_VAAPI, AV_HWDEVICE_TYPE_VDPAU, #endif - AV_HWDEVICE_TYPE_VULKAN, + AV_HWDEVICE_TYPE_VULKAN, }; AVPixelFormat GetGpuFormat(AVCodecContext* codec_context, const AVPixelFormat* pix_fmts) { diff --git a/tools/cpm-fetch-all.sh b/tools/cpm-fetch-all.sh index fc01e8fdfb..9d5005ec44 100755 --- a/tools/cpm-fetch-all.sh +++ b/tools/cpm-fetch-all.sh @@ -1,4 +1,4 @@ -#!/bin/bash -e +#!/bin/bash -ex # SPDX-FileCopyrightText: Copyright 2025 Eden Emulator Project # SPDX-License-Identifier: GPL-3.0-or-later @@ -6,6 +6,6 @@ # SPDX-FileCopyrightText: 2025 crueter # SPDX-License-Identifier: GPL-3.0-or-later -LIBS=$(find . externals src/qt_common src/dynarmic -maxdepth 2 -name cpmfile.json -exec jq -j 'keys_unsorted | join(" ")' {} \; -printf " ") +LIBS=$(find . src -maxdepth 3 -name cpmfile.json -exec jq -j 'keys_unsorted | join(" ")' {} \; -printf " ") tools/cpm-fetch.sh $LIBS \ No newline at end of file diff --git a/tools/cpm-fetch.sh b/tools/cpm-fetch.sh index 10d36448c5..088df8464e 100755 --- a/tools/cpm-fetch.sh +++ b/tools/cpm-fetch.sh @@ -26,7 +26,7 @@ download_package() { curl "$DOWNLOAD" -sS -L -o "$OUTFILE" ACTUAL_HASH=$(${HASH_ALGO}sum "$OUTFILE" | cut -d" " -f1) - [ "$ACTUAL_HASH" != "$HASH" ] && echo "$FILENAME did not match expected hash; expected $HASH but got $ACTUAL_HASH" && exit 1 + [ "$ACTUAL_HASH" != "$HASH" ] && echo "!! $FILENAME did not match expected hash; expected $HASH but got $ACTUAL_HASH" && exit 1 mkdir -p "$OUTDIR" @@ -69,29 +69,43 @@ download_package() { ci_package() { REPO=$(jq -r ".repo" <<< "$JSON") EXT=$(jq -r '.extension' <<< "$JSON") - [ "$EXT" == null ] && EXT="tar.zst" + [ "$EXT" = null ] && EXT="tar.zst" VERSION=$(jq -r ".version" <<< "$JSON") - NAME=$(jq -r ".name | \"$package\"" <<< "$JSON") + + NAME=$(jq -r ".name" <<< "$JSON") + [ "$NAME" = null ] && NAME="$PACKAGE" + PACKAGE=$(jq -r ".package | \"$package\"" <<< "$JSON") - # TODO(crueter) - # DISABLED=$(jq -j '.disabled_platforms | join(" ")' <<< "$JSON") + DISABLED=$(jq -j '.disabled_platforms' <<< "$JSON") - [ "$REPO" == null ] && echo "No repo defined for CI package $package" && return + [ "$REPO" = null ] && echo "No repo defined for CI package $package" && return - echo "CI package $PACKAGE" + echo "-- CI package $PACKAGE" for platform in windows-amd64 windows-arm64 android solaris freebsd linux linux-aarch64; do + echo "-- * platform $platform" + + case $DISABLED in + (*"$platform"*) + echo "-- * -- disabled" + continue + ;; + (*) ;; + esac + FILENAME="${NAME}-${platform}-${VERSION}.${EXT}" DOWNLOAD="https://$GIT_HOST/${REPO}/releases/download/v${VERSION}/${FILENAME}" PACKAGE_NAME="$PACKAGE" KEY=$platform - echo "- platform $KEY" + LOWER_PACKAGE=$(tr '[:upper:]' '[:lower:]' <<< "$PACKAGE_NAME") + OUTDIR="${CPM_SOURCE_CACHE}/${LOWER_PACKAGE}/${KEY}" + [ -d "$OUTDIR" ] && continue HASH_ALGO=$(jq -r ".hash_algo" <<< "$JSON") - [ "$HASH_ALGO" == null ] && HASH_ALGO=sha512 + [ "$HASH_ALGO" = null ] && HASH_ALGO=sha512 HASH_SUFFIX="${HASH_ALGO}sum" HASH_URL="${DOWNLOAD}.${HASH_SUFFIX}" @@ -106,12 +120,16 @@ for package in $@ do # prepare for cancer # TODO(crueter): Fetch json once? - JSON=$(find . externals src/qt_common src/dynarmic -maxdepth 1 -name cpmfile.json -exec jq -r ".\"$package\" | select( . != null )" {} \;) + JSON=$(find . src -maxdepth 3 -name cpmfile.json -exec jq -r ".\"$package\" | select( . != null )" {} \;) - [ -z "$JSON" ] && echo "No cpmfile definition for $package" && continue + [ -z "$JSON" ] && echo "!! No cpmfile definition for $package" && continue PACKAGE_NAME=$(jq -r ".package" <<< "$JSON") - [ "$PACKAGE_NAME" == null ] && PACKAGE_NAME="$package" + [ "$PACKAGE_NAME" = null ] && PACKAGE_NAME="$package" + + GIT_HOST=$(jq -r ".git_host" <<< "$JSON") + [ "$GIT_HOST" = null ] && GIT_HOST=github.com + REPO=$(jq -r ".repo" <<< "$JSON") CI=$(jq -r ".ci" <<< "$JSON") if [ "$CI" != null ]; then @@ -124,16 +142,12 @@ do TAG=$(jq -r ".tag" <<< "$JSON") SHA=$(jq -r ".sha" <<< "$JSON") - [ "$GIT_VERSION" == null ] && GIT_VERSION="$VERSION" - [ "$GIT_VERSION" == null ] && GIT_VERSION="$TAG" + [ "$GIT_VERSION" = null ] && GIT_VERSION="$VERSION" + [ "$GIT_VERSION" = null ] && GIT_VERSION="$TAG" # url parsing WOOOHOOHOHOOHOHOH URL=$(jq -r ".url" <<< "$JSON") - REPO=$(jq -r ".repo" <<< "$JSON") SHA=$(jq -r ".sha" <<< "$JSON") - GIT_HOST=$(jq -r ".git_host" <<< "$JSON") - - [ "$GIT_HOST" == null ] && GIT_HOST=github.com VERSION=$(jq -r ".version" <<< "$JSON") GIT_VERSION=$(jq -r ".git_version" <<< "$JSON") @@ -168,21 +182,21 @@ do elif [ "$SHA" != "null" ]; then DOWNLOAD="${GIT_URL}/archive/${SHA}.zip" else - if [ "$BRANCH" == null ]; then + if [ "$BRANCH" = null ]; then BRANCH=master fi DOWNLOAD="${GIT_URL}/archive/refs/heads/${BRANCH}.zip" fi else - echo "No repo or URL defined for $package" + echo "!! No repo or URL defined for $package" continue fi # key parsing KEY=$(jq -r ".key" <<< "$JSON") - if [ "$KEY" == null ]; then + if [ "$KEY" = null ]; then if [ "$SHA" != null ]; then KEY=$(cut -c1-4 - <<< "$SHA") elif [ "$GIT_VERSION" != null ]; then @@ -192,24 +206,24 @@ do elif [ "$VERSION" != null ]; then KEY="$VERSION" else - echo "No valid key could be determined for $package. Must define one of: key, sha, tag, version, git_version" + echo "!! No valid key could be determined for $package. Must define one of: key, sha, tag, version, git_version" continue fi fi - echo "Downloading regular package $package, with key $KEY, from $DOWNLOAD" + echo "-- Downloading regular package $package, with key $KEY, from $DOWNLOAD" # hash parsing HASH_ALGO=$(jq -r ".hash_algo" <<< "$JSON") - [ "$HASH_ALGO" == null ] && HASH_ALGO=sha512 + [ "$HASH_ALGO" = null ] && HASH_ALGO=sha512 HASH=$(jq -r ".hash" <<< "$JSON") - if [ "$HASH" == null ]; then + if [ "$HASH" = null ]; then HASH_SUFFIX="${HASH_ALGO}sum" HASH_URL=$(jq -r ".hash_url" <<< "$JSON") - if [ "$HASH_URL" == null ]; then + if [ "$HASH_URL" = null ]; then HASH_URL="${DOWNLOAD}.${HASH_SUFFIX}" fi