diff --git a/.ci/android/build.sh b/.ci/android/build.sh index 1fb721b3b2..4b4c9c0834 100755 --- a/.ci/android/build.sh +++ b/.ci/android/build.sh @@ -1,6 +1,6 @@ #!/bin/bash -e -# SPDX-FileCopyrightText: 2025 eden Emulator Project +# SPDX-FileCopyrightText: Copyright 2025 Eden Emulator Project # SPDX-License-Identifier: GPL-3.0-or-later export NDK_CCACHE=$(which ccache) diff --git a/.ci/android/package.sh b/.ci/android/package.sh index c2eb975a02..50b7bbc332 100755 --- a/.ci/android/package.sh +++ b/.ci/android/package.sh @@ -1,6 +1,6 @@ #!/bin/sh -# SPDX-FileCopyrightText: 2025 eden Emulator Project +# SPDX-FileCopyrightText: Copyright 2025 Eden Emulator Project # SPDX-License-Identifier: GPL-3.0-or-later GITDATE="$(git show -s --date=short --format='%ad' | sed 's/-//g')" diff --git a/.ci/license-header.sh b/.ci/license-header.sh index d14d5adf42..3d4929d1c1 100755 --- a/.ci/license-header.sh +++ b/.ci/license-header.sh @@ -1,53 +1,102 @@ #!/bin/sh -e HEADER="$(cat "$PWD/.ci/license/header.txt")" +HEADER_HASH="$(cat "$PWD/.ci/license/header-hash.txt")" echo "Getting branch changes" -BRANCH=`git rev-parse --abbrev-ref HEAD` -COMMITS=`git log ${BRANCH} --not master --pretty=format:"%h"` -RANGE="${COMMITS[${#COMMITS[@]}-1]}^..${COMMITS[0]}" -FILES=`git diff-tree --no-commit-id --name-only ${RANGE} -r` +# BRANCH=`git rev-parse --abbrev-ref HEAD` +# COMMITS=`git log ${BRANCH} --not master --pretty=format:"%h"` +# RANGE="${COMMITS[${#COMMITS[@]}-1]}^..${COMMITS[0]}" +# FILES=`git diff-tree --no-commit-id --name-only ${RANGE} -r` + +BASE=`git merge-base master HEAD` +FILES=`git diff --name-only $BASE` #FILES=$(git diff --name-only master) echo "Done" +check_header() { + CONTENT="`head -n3 < $1`" + case "$CONTENT" in + "$HEADER"*) ;; + *) BAD_FILES="$BAD_FILES $1" ;; + esac +} + +check_cmake_header() { + CONTENT="`head -n3 < $1`" + + case "$CONTENT" in + "$HEADER_HASH"*) ;; + *) + BAD_CMAKE="$BAD_CMAKE $1" ;; + esac +} for file in $FILES; do [ -f "$file" ] || continue + if [ `basename -- "$file"` = "CMakeLists.txt" ]; then + check_cmake_header "$file" + continue + fi + EXTENSION="${file##*.}" case "$EXTENSION" in kts|kt|cpp|h) - CONTENT="`cat $file`" - case "$CONTENT" in - "$HEADER"*) ;; - *) BAD_FILES="$BAD_FILES $file" ;; - esac + check_header "$file" + ;; + cmake) + check_cmake_header "$file" ;; esac done -if [ "$BAD_FILES" = "" ]; then +if [ "$BAD_FILES" = "" ] && [ "$BAD_CMAKE" = "" ]; then echo echo "All good." exit fi -echo "The following files have incorrect license headers:" -echo +if [ "$BAD_FILES" != "" ]; then + echo "The following source files have incorrect license headers:" + echo -for file in $BAD_FILES; do echo $file; done + for file in $BAD_FILES; do echo $file; done -cat << EOF + cat << EOF -The following license header should be added to the start of all offending files: +The following license header should be added to the start of all offending SOURCE files: === BEGIN === $HEADER === END === +EOF + +fi + +if [ "$BAD_CMAKE" != "" ]; then + echo "The following CMake files have incorrect license headers:" + echo + + for file in $BAD_CMAKE; do echo $file; done + + cat << EOF + +The following license header should be added to the start of all offending CMake files: + +=== BEGIN === +$HEADER_HASH +=== END === + +EOF + +fi + +cat << EOF If some of the code in this PR is not being contributed by the original author, the files which have been exclusively changed by that code can be ignored. If this happens, this PR requirement can be bypassed once all other files are addressed. @@ -70,6 +119,17 @@ if [ "$FIX" = "true" ]; then git add $file done + for file in $BAD_CMAKE; do + cat $file > $file.bak + + cat .ci/license/header-hash.txt > $file + echo >> $file + cat $file.bak >> $file + + rm $file.bak + + git add $file + done echo "License headers fixed." if [ "$COMMIT" = "true" ]; then diff --git a/.ci/license/header-hash.txt b/.ci/license/header-hash.txt new file mode 100644 index 0000000000..91bc195e23 --- /dev/null +++ b/.ci/license/header-hash.txt @@ -0,0 +1,2 @@ +# SPDX-FileCopyrightText: Copyright 2025 Eden Emulator Project +# SPDX-License-Identifier: GPL-3.0-or-later diff --git a/.ci/linux/build.sh b/.ci/linux/build.sh index 114df7051b..41e0ca308b 100755 --- a/.ci/linux/build.sh +++ b/.ci/linux/build.sh @@ -1,6 +1,6 @@ #!/bin/bash -e -# SPDX-FileCopyrightText: 2025 eden Emulator Project +# SPDX-FileCopyrightText: Copyright 2025 Eden Emulator Project # SPDX-License-Identifier: GPL-3.0-or-later case "$1" in @@ -96,7 +96,6 @@ cmake .. -G Ninja \ -DUSE_DISCORD_PRESENCE=ON \ -DCMAKE_CXX_FLAGS="$ARCH_FLAGS" \ -DCMAKE_C_FLAGS="$ARCH_FLAGS" \ - -DYUZU_USE_BUNDLED_VCPKG=OFF \ -DYUZU_USE_BUNDLED_QT=OFF \ -DYUZU_USE_BUNDLED_SDL2=OFF \ -DYUZU_USE_EXTERNAL_SDL2=ON \ @@ -105,6 +104,7 @@ cmake .. -G Ninja \ -DYUZU_USE_QT_WEB_ENGINE=$WEBENGINE \ -DYUZU_USE_FASTER_LD=ON \ -DYUZU_ENABLE_LTO=ON \ + -DDYNARMIC_ENABLE_LTO=ON \ "${EXTRA_CMAKE_FLAGS[@]}" ninja -j${NPROC} diff --git a/.ci/linux/eden.dwfsprof b/.ci/linux/eden.dwfsprof index bc360f0d46..9a3bee6f14 100644 --- a/.ci/linux/eden.dwfsprof +++ b/.ci/linux/eden.dwfsprof @@ -1,6 +1,6 @@ AppRun eden.desktop -org.eden_emu.eden.desktop +dev.eden_emu.eden.desktop shared/bin/eden shared/lib/lib.path shared/lib/ld-linux-x86-64.so.2 diff --git a/.ci/linux/package.sh b/.ci/linux/package.sh index 911fea2f7b..838476097a 100755 --- a/.ci/linux/package.sh +++ b/.ci/linux/package.sh @@ -1,6 +1,6 @@ #!/bin/sh -e -# SPDX-FileCopyrightText: 2025 eden Emulator Project +# SPDX-FileCopyrightText: Copyright 2025 Eden Emulator Project # SPDX-License-Identifier: GPL-3.0-or-later # This script assumes you're in the source directory @@ -59,15 +59,15 @@ VERSION="$(echo "$EDEN_TAG")" mkdir -p ./AppDir cd ./AppDir -cp ../dist/org.eden_emu.eden.desktop . -cp ../dist/org.eden_emu.eden.svg . +cp ../dist/dev.eden_emu.eden.desktop . +cp ../dist/dev.eden_emu.eden.svg . -ln -sf ./org.eden_emu.eden.svg ./.DirIcon +ln -sf ./dev.eden_emu.eden.svg ./.DirIcon UPINFO='gh-releases-zsync|eden-emulator|Releases|latest|*.AppImage.zsync' if [ "$DEVEL" = 'true' ]; then - sed -i 's|Name=Eden|Name=Eden Nightly|' ./org.eden_emu.eden.desktop + sed -i 's|Name=Eden|Name=Eden Nightly|' ./dev.eden_emu.eden.desktop UPINFO="$(echo "$UPINFO" | sed 's|Releases|nightly|')" fi 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/.ci/windows/build.sh b/.ci/windows/build.sh index 7504630a57..d554e00e1b 100644 --- a/.ci/windows/build.sh +++ b/.ci/windows/build.sh @@ -1,58 +1,45 @@ -#!/bin/bash -e +#!/bin/bash -ex -# SPDX-FileCopyrightText: 2025 eden Emulator Project +# SPDX-FileCopyrightText: Copyright 2025 Eden Emulator Project # SPDX-License-Identifier: GPL-3.0-or-later -if [ "$DEVEL" != "true" ]; then - export EXTRA_CMAKE_FLAGS=("${EXTRA_CMAKE_FLAGS[@]}" -DENABLE_QT_UPDATE_CHECKER=ON) +if [ "$COMPILER" == "clang" ] +then + EXTRA_CMAKE_FLAGS+=( + -DCMAKE_CXX_COMPILER=clang-cl + -DCMAKE_C_COMPILER=clang-cl + -DCMAKE_CXX_FLAGS="-O3" + -DCMAKE_C_FLAGS="-O3" + ) + + BUILD_TYPE="RelWithDebInfo" fi -if [ "$CCACHE" = "true" ]; then - export EXTRA_CMAKE_FLAGS=("${EXTRA_CMAKE_FLAGS[@]}" -DUSE_CCACHE=ON) -fi +[ -z "$WINDEPLOYQT" ] && { echo "WINDEPLOYQT environment variable required."; exit 1; } -if [ "$BUNDLE_QT" = "true" ]; then - export EXTRA_CMAKE_FLAGS=("${EXTRA_CMAKE_FLAGS[@]}" -DYUZU_USE_BUNDLED_QT=ON) -else - export EXTRA_CMAKE_FLAGS=("${EXTRA_CMAKE_FLAGS[@]}" -DYUZU_USE_BUNDLED_QT=OFF) -fi - -if [ -z "$BUILD_TYPE" ]; then - export BUILD_TYPE="Release" -fi - -if [ "$WINDEPLOYQT" == "" ]; then - echo "You must supply the WINDEPLOYQT environment variable." - exit 1 -fi - -if [ "$USE_WEBENGINE" = "true" ]; then - WEBENGINE=ON -else - WEBENGINE=OFF -fi - -if [ "$USE_MULTIMEDIA" = "false" ]; then - MULTIMEDIA=OFF -else - MULTIMEDIA=ON -fi - -export EXTRA_CMAKE_FLAGS=("${EXTRA_CMAKE_FLAGS[@]}" $@) +echo $EXTRA_CMAKE_FLAGS mkdir -p build && cd build cmake .. -G Ninja \ - -DCMAKE_BUILD_TYPE="$BUILD_TYPE" \ - -DENABLE_QT_TRANSLATION=ON \ + -DCMAKE_BUILD_TYPE="${BUILD_TYPE:-Release}" \ + -DENABLE_QT_TRANSLATION=ON \ -DUSE_DISCORD_PRESENCE=ON \ -DYUZU_USE_BUNDLED_SDL2=ON \ + -DBUILD_TESTING=OFF \ -DYUZU_TESTS=OFF \ + -DDYNARMIC_TESTS=OFF \ -DYUZU_CMD=OFF \ -DYUZU_ROOM_STANDALONE=OFF \ - -DYUZU_USE_QT_MULTIMEDIA=$MULTIMEDIA \ - -DYUZU_USE_QT_WEB_ENGINE=$WEBENGINE \ + -DYUZU_USE_QT_MULTIMEDIA=${USE_MULTIMEDIA:-false} \ + -DYUZU_USE_QT_WEB_ENGINE=${USE_WEBENGINE:-false} \ -DYUZU_ENABLE_LTO=ON \ - "${EXTRA_CMAKE_FLAGS[@]}" + -DCMAKE_EXE_LINKER_FLAGS=" /LTCG" \ + -DDYNARMIC_ENABLE_LTO=ON \ + -DYUZU_USE_BUNDLED_QT=${BUNDLE_QT:-false} \ + -DUSE_CCACHE=${CCACHE:-false} \ + -DENABLE_QT_UPDATE_CHECKER=${DEVEL:-true} \ + "${EXTRA_CMAKE_FLAGS[@]}" \ + "$@" ninja @@ -61,4 +48,5 @@ rm -f bin/*.pdb set -e $WINDEPLOYQT --release --no-compiler-runtime --no-opengl-sw --no-system-dxc-compiler --no-system-d3d-compiler --dir pkg bin/eden.exe + cp bin/* pkg diff --git a/.ci/windows/install-msvc.ps1 b/.ci/windows/install-msvc.ps1 new file mode 100755 index 0000000000..788b2848ad --- /dev/null +++ b/.ci/windows/install-msvc.ps1 @@ -0,0 +1,60 @@ +# SPDX-FileCopyrightText: 2025 Eden Emulator Project +# SPDX-License-Identifier: GPL-3.0-or-later + +$ErrorActionPreference = "Stop" + +# Check if running as administrator +if (-not ([bool](net session 2>$null))) { + Write-Host "This script must be run with administrator privileges!" + Exit 1 +} + +$VSVer = "17" +$ExeFile = "vs_community.exe" +$Uri = "https://aka.ms/vs/$VSVer/release/$ExeFile" +$Destination = "./$ExeFile" + +Write-Host "Downloading Visual Studio Build Tools from $Uri" +$WebClient = New-Object System.Net.WebClient +$WebClient.DownloadFile($Uri, $Destination) +Write-Host "Finished downloading $ExeFile" + +$Arguments = @( + "--quiet", # Suppress installer UI + "--wait", # Wait for installation to complete + "--norestart", # Prevent automatic restart + "--force", # Force installation even if components are already installed + "--add Microsoft.VisualStudio.Workload.NativeDesktop", # Desktop development with C++ + "--add Microsoft.VisualStudio.Component.VC.Tools.x86.x64", # Core C++ compiler/tools for x86/x64 + "--add Microsoft.VisualStudio.Component.Windows11SDK.26100",# Windows 11 SDK (26100) + "--add Microsoft.VisualStudio.Component.Windows10SDK.19041",# Windows 10 SDK (19041) + "--add Microsoft.VisualStudio.Component.VC.Llvm.Clang", # LLVM Clang compiler + "--add Microsoft.VisualStudio.Component.VC.Llvm.ClangToolset", # LLVM Clang integration toolset + "--add Microsoft.VisualStudio.Component.Windows11SDK.22621",# Windows 11 SDK (22621) + "--add Microsoft.VisualStudio.Component.VC.CMake.Project", # CMake project support + "--add Microsoft.VisualStudio.ComponentGroup.VC.Tools.142.x86.x64", # VC++ 14.2 toolset + "--add Microsoft.VisualStudio.ComponentGroup.NativeDesktop.Llvm.Clang" # LLVM Clang for native desktop +) + +Write-Host "Installing Visual Studio Build Tools" +$InstallProcess = Start-Process -FilePath $Destination -NoNewWindow -PassThru -ArgumentList $Arguments + +# Spinner while installing +$Spinner = "|/-\" +$i = 0 +while (-not $InstallProcess.HasExited) { + Write-Host -NoNewline ("`rInstalling... " + $Spinner[$i % $Spinner.Length]) + Start-Sleep -Milliseconds 250 + $i++ +} + +# Clear spinner line +Write-Host "`rSetup completed! " + +$ExitCode = $InstallProcess.ExitCode +if ($ExitCode -ne 0) { + Write-Host "Error installing Visual Studio Build Tools (Error: $ExitCode)" + Exit $ExitCode +} + +Write-Host "Finished installing Visual Studio Build Tools" diff --git a/.ci/windows/install-vulkan-sdk.ps1 b/.ci/windows/install-vulkan-sdk.ps1 index ca8c64b5cd..4c5274d1b7 100755 --- a/.ci/windows/install-vulkan-sdk.ps1 +++ b/.ci/windows/install-vulkan-sdk.ps1 @@ -3,8 +3,14 @@ $ErrorActionPreference = "Stop" +# Check if running as administrator +if (-not ([bool](net session 2>$null))) { + Write-Host "This script must be run with administrator privileges!" + Exit 1 +} + $VulkanSDKVer = "1.4.321.1" -$ExeFile = "VulkanSDK-$VulkanSDKVer-Installer.exe" +$ExeFile = "vulkansdk-windows-X64-$VulkanSDKVer.exe" $Uri = "https://sdk.lunarg.com/sdk/download/$VulkanSDKVer/windows/$ExeFile" $Destination = "./$ExeFile" @@ -30,4 +36,4 @@ echo "Finished installing Vulkan SDK $VulkanSDKVer" if ("$env:GITHUB_ACTIONS" -eq "true") { echo "VULKAN_SDK=$VULKAN_SDK" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append echo "$VULKAN_SDK/Bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append -} +} \ No newline at end of file diff --git a/.ci/windows/package.sh b/.ci/windows/package.sh index 090697882f..2d126dc5be 100644 --- a/.ci/windows/package.sh +++ b/.ci/windows/package.sh @@ -3,11 +3,16 @@ GITREV=$(git show -s --format='%h') ZIP_NAME="Eden-Windows-${ARCH}-${GITDATE}-${GITREV}.zip" -mkdir -p artifacts -mkdir -p pack +ARTIFACTS_DIR="artifacts" +PKG_DIR="build/pkg" -cp -r build/pkg/* pack +mkdir -p "$ARTIFACTS_DIR" -cp LICENSE* README* pack/ +TMP_DIR=$(mktemp -d) -7z a -tzip artifacts/$ZIP_NAME pack/* \ No newline at end of file +cp -r "$PKG_DIR"/* "$TMP_DIR"/ +cp LICENSE* README* "$TMP_DIR"/ + +7z a -tzip "$ARTIFACTS_DIR/$ZIP_NAME" "$TMP_DIR"/* + +rm -rf "$TMP_DIR" \ No newline at end of file diff --git a/.gitignore b/.gitignore index 83881117ac..2b342e5145 100644 --- a/.gitignore +++ b/.gitignore @@ -52,3 +52,4 @@ Thumbs.db eden-windows-msvc artifacts *.AppImage* +/install* diff --git a/.gitmodules b/.gitmodules deleted file mode 100644 index 94ac4d33f3..0000000000 --- a/.gitmodules +++ /dev/null @@ -1,6 +0,0 @@ -# SPDX-FileCopyrightText: 2014 Citra Emulator Project -# SPDX-License-Identifier: GPL-2.0-or-later - -[submodule "libusb"] - path = externals/libusb/libusb - url = https://github.com/libusb/libusb.git diff --git a/.patch/boost/0001-clang-cl.patch b/.patch/boost/0001-clang-cl.patch new file mode 100644 index 0000000000..cdabc712cb --- /dev/null +++ b/.patch/boost/0001-clang-cl.patch @@ -0,0 +1,13 @@ +diff --git a/libs/cobalt/include/boost/cobalt/concepts.hpp b/libs/cobalt/include/boost/cobalt/concepts.hpp +index d49f2ec..a9bdb80 100644 +--- a/libs/cobalt/include/boost/cobalt/concepts.hpp ++++ b/libs/cobalt/include/boost/cobalt/concepts.hpp +@@ -62,7 +62,7 @@ struct enable_awaitables + template + concept with_get_executor = requires (T& t) + { +- {t.get_executor()} -> asio::execution::executor; ++ t.get_executor(); + }; + + diff --git a/.patch/boost/0002-use-marmasm.patch b/.patch/boost/0002-use-marmasm.patch new file mode 100644 index 0000000000..10f490b878 --- /dev/null +++ b/.patch/boost/0002-use-marmasm.patch @@ -0,0 +1,11 @@ +--- a/libs/context/CMakeLists.txt 2025-09-08 00:42:31.303651800 -0400 ++++ b/libs/context/CMakeLists.txt 2025-09-08 00:42:40.592184300 -0400 +@@ -146,7 +146,7 @@ + set(ASM_LANGUAGE ASM) + endif() + elseif(BOOST_CONTEXT_ASSEMBLER STREQUAL armasm) +- set(ASM_LANGUAGE ASM_ARMASM) ++ set(ASM_LANGUAGE ASM_MARMASM) + else() + set(ASM_LANGUAGE ASM_MASM) + endif() diff --git a/.patch/boost/0003-armasm-options.patch b/.patch/boost/0003-armasm-options.patch new file mode 100644 index 0000000000..3869f95f6f --- /dev/null +++ b/.patch/boost/0003-armasm-options.patch @@ -0,0 +1,14 @@ +diff --git a/libs/context/CMakeLists.txt b/libs/context/CMakeLists.txt +index 8210f65..0e59dd7 100644 +--- a/libs/context/CMakeLists.txt ++++ b/libs/context/CMakeLists.txt +@@ -186,7 +186,8 @@ if(BOOST_CONTEXT_IMPLEMENTATION STREQUAL "fcontext") + set_property(SOURCE ${ASM_SOURCES} APPEND PROPERTY COMPILE_OPTIONS "/safeseh") + endif() + +- else() # masm ++ # armasm doesn't support most of these options ++ elseif(NOT BOOST_CONTEXT_ASSEMBLER STREQUAL armasm) # masm + if(CMAKE_CXX_COMPILER_ID STREQUAL "GNU") + set_property(SOURCE ${ASM_SOURCES} APPEND PROPERTY COMPILE_OPTIONS "-x" "assembler-with-cpp") + elseif(CMAKE_CXX_COMPILER_ID STREQUAL "Clang") diff --git a/.patch/cpp-jwt/0001-no-install.patch b/.patch/cpp-jwt/0001-no-install.patch deleted file mode 100644 index b5be557a53..0000000000 --- a/.patch/cpp-jwt/0001-no-install.patch +++ /dev/null @@ -1,47 +0,0 @@ -diff --git a/CMakeLists.txt b/CMakeLists.txt -index 8c1761f..52c4ca4 100644 ---- a/CMakeLists.txt -+++ b/CMakeLists.txt -@@ -69,42 +69,3 @@ endif() - if(CPP_JWT_BUILD_EXAMPLES) - add_subdirectory(examples) - endif() -- --# ############################################################################## --# INSTALL --# ############################################################################## -- --include(GNUInstallDirs) --include(CMakePackageConfigHelpers) --set(CPP_JWT_CONFIG_INSTALL_DIR ${CMAKE_INSTALL_DATADIR}/cmake/${PROJECT_NAME}) -- --install(TARGETS ${PROJECT_NAME} EXPORT ${PROJECT_NAME}Targets) --install( -- EXPORT ${PROJECT_NAME}Targets -- DESTINATION ${CPP_JWT_CONFIG_INSTALL_DIR} -- NAMESPACE ${PROJECT_NAME}:: -- COMPONENT dev) --configure_package_config_file(cmake/Config.cmake.in ${PROJECT_NAME}Config.cmake -- INSTALL_DESTINATION ${CPP_JWT_CONFIG_INSTALL_DIR} -- NO_SET_AND_CHECK_MACRO) --write_basic_package_version_file(${PROJECT_NAME}ConfigVersion.cmake -- COMPATIBILITY SameMajorVersion -- ARCH_INDEPENDENT) --install( -- FILES ${CMAKE_CURRENT_BINARY_DIR}/${PROJECT_NAME}Config.cmake -- ${CMAKE_CURRENT_BINARY_DIR}/${PROJECT_NAME}ConfigVersion.cmake -- DESTINATION ${CPP_JWT_CONFIG_INSTALL_DIR} -- COMPONENT dev) -- --if(NOT CPP_JWT_USE_VENDORED_NLOHMANN_JSON) -- set(CPP_JWT_VENDORED_NLOHMANN_JSON_INSTALL_PATTERN PATTERN "json" EXCLUDE) --endif() --install( -- DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/include/jwt/ -- DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/jwt -- COMPONENT dev -- FILES_MATCHING -- PATTERN "*.hpp" -- PATTERN "*.ipp" -- PATTERN "test" EXCLUDE -- ${CPP_JWT_VENDORED_NLOHMANN_JSON_INSTALL_PATTERN}) diff --git a/.patch/cpp-jwt/0002-missing-decl.patch b/.patch/cpp-jwt/0002-missing-decl.patch deleted file mode 100644 index cd5175dbe0..0000000000 --- a/.patch/cpp-jwt/0002-missing-decl.patch +++ /dev/null @@ -1,13 +0,0 @@ -diff --git a/include/jwt/algorithm.hpp b/include/jwt/algorithm.hpp -index 0e3b843..1156e6a 100644 ---- a/include/jwt/algorithm.hpp -+++ b/include/jwt/algorithm.hpp -@@ -64,6 +64,8 @@ using verify_func_t = verify_result_t (*) (const jwt::string_view key, - const jwt::string_view head, - const jwt::string_view jwt_sign); - -+verify_result_t is_secret_a_public_key(const jwt::string_view secret); -+ - namespace algo { - - //Me: TODO: All these can be done using code generaion. diff --git a/.patch/discord-rpc/0001-cmake-version.patch b/.patch/discord-rpc/0001-cmake-version.patch deleted file mode 100644 index 6a1609fadf..0000000000 --- a/.patch/discord-rpc/0001-cmake-version.patch +++ /dev/null @@ -1,10 +0,0 @@ -diff --git a/CMakeLists.txt b/CMakeLists.txt -index 5dad9e9..760a1b2 100644 ---- a/CMakeLists.txt -+++ b/CMakeLists.txt -@@ -1,4 +1,4 @@ --cmake_minimum_required (VERSION 3.2.0) -+cmake_minimum_required (VERSION 3.10) - project (DiscordRPC) - - include(GNUInstallDirs) diff --git a/.patch/discord-rpc/0002-no-clang-format.patch b/.patch/discord-rpc/0002-no-clang-format.patch deleted file mode 100644 index 4b1e37c29f..0000000000 --- a/.patch/discord-rpc/0002-no-clang-format.patch +++ /dev/null @@ -1,40 +0,0 @@ -diff --git a/CMakeLists.txt b/CMakeLists.txt -index 760a1b2..540d643 100644 ---- a/CMakeLists.txt -+++ b/CMakeLists.txt -@@ -12,20 +12,6 @@ file(GLOB_RECURSE ALL_SOURCE_FILES - src/*.cpp src/*.h src/*.c - ) - --# Set CLANG_FORMAT_SUFFIX if you are using custom clang-format, e.g. clang-format-5.0 --find_program(CLANG_FORMAT_CMD clang-format${CLANG_FORMAT_SUFFIX}) -- --if (CLANG_FORMAT_CMD) -- add_custom_target( -- clangformat -- COMMAND ${CLANG_FORMAT_CMD} -- -i -style=file -fallback-style=none -- ${ALL_SOURCE_FILES} -- DEPENDS -- ${ALL_SOURCE_FILES} -- ) --endif(CLANG_FORMAT_CMD) -- - # thirdparty stuff - execute_process( - COMMAND mkdir ${CMAKE_CURRENT_SOURCE_DIR}/thirdparty -diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt -index 290d761..cd2cc92 100644 ---- a/src/CMakeLists.txt -+++ b/src/CMakeLists.txt -@@ -120,10 +120,6 @@ if (${BUILD_SHARED_LIBS}) - target_compile_definitions(discord-rpc PRIVATE -DDISCORD_BUILDING_SDK) - endif(${BUILD_SHARED_LIBS}) - --if (CLANG_FORMAT_CMD) -- add_dependencies(discord-rpc clangformat) --endif(CLANG_FORMAT_CMD) -- - # install - - install( diff --git a/.patch/discord-rpc/0003-fix-cpp17.patch b/.patch/discord-rpc/0003-fix-cpp17.patch deleted file mode 100644 index 35b725d307..0000000000 --- a/.patch/discord-rpc/0003-fix-cpp17.patch +++ /dev/null @@ -1,31 +0,0 @@ -diff --git a/CMakeLists.txt b/CMakeLists.txt -index 540d643..5d12f3d 100644 ---- a/CMakeLists.txt -+++ b/CMakeLists.txt -@@ -17,12 +17,14 @@ execute_process( - COMMAND mkdir ${CMAKE_CURRENT_SOURCE_DIR}/thirdparty - ERROR_QUIET - ) -+# new commit that fixes c++17 -+set(RAPIDJSON_SHA 3b2441b87f99ab65f37b141a7b548ebadb607b96) - --find_file(RAPIDJSONTEST NAMES rapidjson rapidjson-1.1.0 PATHS ${CMAKE_CURRENT_SOURCE_DIR}/thirdparty CMAKE_FIND_ROOT_PATH_BOTH) -+find_file(RAPIDJSONTEST NAMES rapidjson rapidjson-${RAPIDJSON_SHA} PATHS ${CMAKE_CURRENT_SOURCE_DIR}/thirdparty CMAKE_FIND_ROOT_PATH_BOTH) - if (NOT RAPIDJSONTEST) - message("no rapidjson, download") -- set(RJ_TAR_FILE ${CMAKE_CURRENT_SOURCE_DIR}/thirdparty/v1.1.0.tar.gz) -- file(DOWNLOAD https://github.com/miloyip/rapidjson/archive/v1.1.0.tar.gz ${RJ_TAR_FILE}) -+ set(RJ_TAR_FILE ${CMAKE_CURRENT_SOURCE_DIR}/thirdparty/${RAPIDJSON_SHA}.tar.gz) -+ file(DOWNLOAD https://github.com/miloyip/rapidjson/archive/${RAPIDJSON_SHA}.tar.gz ${RJ_TAR_FILE}) - execute_process( - COMMAND ${CMAKE_COMMAND} -E tar xzf ${RJ_TAR_FILE} - WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/thirdparty -@@ -30,7 +32,7 @@ if (NOT RAPIDJSONTEST) - file(REMOVE ${RJ_TAR_FILE}) - endif(NOT RAPIDJSONTEST) - --find_file(RAPIDJSON NAMES rapidjson rapidjson-1.1.0 PATHS ${CMAKE_CURRENT_SOURCE_DIR}/thirdparty CMAKE_FIND_ROOT_PATH_BOTH) -+find_file(RAPIDJSON NAMES rapidjson rapidjson-${RAPIDJSON_SHA} PATHS ${CMAKE_CURRENT_SOURCE_DIR}/thirdparty CMAKE_FIND_ROOT_PATH_BOTH) - - add_library(rapidjson STATIC IMPORTED ${RAPIDJSON}) - diff --git a/.reuse/dep5 b/.reuse/dep5 index 79ea95781d..9bcddb1afd 100644 --- a/.reuse/dep5 +++ b/.reuse/dep5 @@ -128,10 +128,6 @@ Copyright: 2020-2021 Its-Rei 2020-2021 yuzu Emulator Project License: GPL-2.0-or-later -Files: vcpkg.json -Copyright: 2022 yuzu Emulator Project -License: GPL-3.0-or-later - Files: .github/ISSUE_TEMPLATE/* Copyright: 2022 yuzu Emulator Project License: GPL-2.0-or-later 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/.vcpkg.json b/.vcpkg.json deleted file mode 100644 index 99ed06cf25..0000000000 --- a/.vcpkg.json +++ /dev/null @@ -1,57 +0,0 @@ -{ - "$schema": "https://raw.githubusercontent.com/microsoft/vcpkg-tool/main/docs/vcpkg.schema.json", - "name": "yuzu", - "builtin-baseline": "ea2a964f9303270322cf3f2d51c265ba146c422d", - "version": "1.0", - "dependencies": [ - "boost-algorithm", - "boost-asio", - "boost-bind", - "boost-config", - "boost-container", - "boost-context", - "boost-crc", - "boost-functional", - "boost-heap", - "boost-icl", - "boost-intrusive", - "boost-mpl", - "boost-range", - "boost-spirit", - "boost-process", - "boost-test", - "boost-timer", - "boost-variant", - "fmt", - "lz4", - "nlohmann-json", - "zlib", - "zstd", - "sdl2" - ], - "features": { - "yuzu-tests": { - "description": "Compile tests", - "dependencies": [ "catch2" ] - }, - "web-service": { - "description": "Enable web services (telemetry, etc.)", - "dependencies": [ - { - "name": "openssl" - } - ] - } - }, - "overrides": [ - { - "name": "catch2", - "version": "3.3.1" - }, - { - "name": "boost-process", - "version": "1.81.0" - } - - ] -} diff --git a/CMakeLists.txt b/CMakeLists.txt index 4199f0a904..f5d7126f92 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -5,273 +5,50 @@ cmake_minimum_required(VERSION 3.22) project(yuzu) +if (${CMAKE_SYSTEM_NAME} STREQUAL "SunOS") + set(PLATFORM_SUN ON) +elseif (${CMAKE_SYSTEM_NAME} STREQUAL "FreeBSD") + set(PLATFORM_FREEBSD ON) +elseif (${CMAKE_SYSTEM_NAME} STREQUAL "OpenBSD") + set(PLATFORM_OPENBSD ON) +elseif (${CMAKE_SYSTEM_NAME} STREQUAL "Linux") + set(PLATFORM_LINUX ON) +endif() + +if (CMAKE_CXX_COMPILER_ID STREQUAL "Clang") + set(CXX_CLANG ON) + if (MSVC) + set(CXX_CLANG_CL ON) + endif() +elseif (CMAKE_CXX_COMPILER_ID STREQUAL "GNU") + set(CXX_GCC ON) +elseif (CMAKE_CXX_COMPILER_ID STREQUAL "MSVC") + set(CXX_CL ON) +elseif (CMAKE_CXX_COMPILER_ID STREQUAL "IntelLLVM") + set(CXX_ICC ON) +elseif (CMAKE_CXX_COMPILER_ID STREQUAL "AppleClang") + set(CXX_APPLE ON) +endif() + list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/CMakeModules") list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/externals/cmake-modules") -if (${CMAKE_SYSTEM_NAME} STREQUAL "SunOS") +if (PLATFORM_SUN) # Terrific Solaris pkg shenanigans list(APPEND CMAKE_PREFIX_PATH "/usr/lib/qt/6.6/lib/amd64/cmake") list(APPEND CMAKE_MODULE_PATH "/usr/lib/qt/6.6/lib/amd64/cmake") -endif() - -set(CPM_SOURCE_CACHE ${CMAKE_SOURCE_DIR}/.cache/cpm) - -include(DownloadExternals) -include(CMakeDependentOption) -include(CTest) - -# Disable Warnings as Errors for MSVC -if (MSVC) - set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /W3 /WX-") -endif() - -if (${CMAKE_SYSTEM_NAME} STREQUAL "FreeBSD") - set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -L/usr/local/lib") -endif() - -# Check if SDL2::SDL2 target exists; if not, create an alias -if (TARGET SDL2::SDL2-static) - add_library(SDL2::SDL2 ALIAS SDL2::SDL2-static) -elseif (TARGET SDL2::SDL2-shared) - add_library(SDL2::SDL2 ALIAS SDL2::SDL2-shared) -endif() - -# Set bundled sdl2/qt as dependent options. -# On Linux system SDL2 is likely to be lacking HIDAPI support which have drawbacks but is needed for SDL motion -option(ENABLE_SDL2 "Enable the SDL2 frontend" ON) -CMAKE_DEPENDENT_OPTION(YUZU_USE_BUNDLED_SDL2 "Download bundled SDL2 binaries" ON "ENABLE_SDL2;MSVC" OFF) - -if (${CMAKE_SYSTEM_NAME} STREQUAL "FreeBSD") - CMAKE_DEPENDENT_OPTION(YUZU_USE_EXTERNAL_SDL2 "Compile external SDL2" OFF "ENABLE_SDL2;NOT MSVC" OFF) -else() - CMAKE_DEPENDENT_OPTION(YUZU_USE_EXTERNAL_SDL2 "Compile external SDL2" ON "ENABLE_SDL2;NOT MSVC" OFF) -endif() - -cmake_dependent_option(ENABLE_LIBUSB "Enable the use of LibUSB" ON "NOT ANDROID" OFF) - -option(ENABLE_OPENGL "Enable OpenGL" ON) -mark_as_advanced(FORCE ENABLE_OPENGL) - -option(ENABLE_QT "Enable the Qt frontend" ON) -option(ENABLE_QT_TRANSLATION "Enable translations for the Qt frontend" OFF) -option(ENABLE_QT_UPDATE_CHECKER "Enable update checker for the Qt frontend" OFF) - -CMAKE_DEPENDENT_OPTION(YUZU_USE_BUNDLED_QT "Download bundled Qt binaries" "${MSVC}" "ENABLE_QT" OFF) - -# TODO(crueter): maybe this should default on everywhere...? -if (MSVC OR ANDROID) - set(CPM_DEFAULT ON) -else() - set(CPM_DEFAULT OFF) -endif() - -option(YUZU_USE_CPM "Use CPM for Eden dependencies" "${CPM_DEFAULT}") - -option(ENABLE_WEB_SERVICE "Enable web services (telemetry, etc.)" ON) -option(ENABLE_WIFI_SCAN "Enable WiFi scanning" OFF) - -if (${CMAKE_SYSTEM_NAME} STREQUAL "FreeBSD") - option(YUZU_USE_BUNDLED_FFMPEG "Download/Build bundled FFmpeg" OFF) -else() - option(YUZU_USE_BUNDLED_FFMPEG "Download/Build bundled FFmpeg" ON) -endif() - -if (${CMAKE_SYSTEM_NAME} STREQUAL "FreeBSD") - option(YUZU_USE_EXTERNAL_VULKAN_HEADERS "Use Vulkan-Headers from externals" OFF) -else() - option(YUZU_USE_EXTERNAL_VULKAN_HEADERS "Use Vulkan-Headers from externals" ON) -endif() - -if (${CMAKE_SYSTEM_NAME} STREQUAL "FreeBSD") - option(YUZU_USE_EXTERNAL_VULKAN_UTILITY_LIBRARIES "Use Vulkan-Utility-Libraries from externals" OFF) -else() - option(YUZU_USE_EXTERNAL_VULKAN_UTILITY_LIBRARIES "Use Vulkan-Utility-Libraries from externals" ON) -endif() - -if (${CMAKE_SYSTEM_NAME} STREQUAL "FreeBSD") - option(YUZU_USE_EXTERNAL_VULKAN_SPIRV_TOOLS "Use SPIRV-Tools from externals" OFF) -else() - option(YUZU_USE_EXTERNAL_VULKAN_SPIRV_TOOLS "Use SPIRV-Tools from externals" ON) -endif() - -option(YUZU_USE_QT_MULTIMEDIA "Use QtMultimedia for Camera" OFF) - -option(YUZU_USE_QT_WEB_ENGINE "Use QtWebEngine for web applet implementation" OFF) - -set(YUZU_QT_MIRROR "" CACHE STRING "What mirror to use for downloading the bundled Qt libraries") - -option(ENABLE_CUBEB "Enables the cubeb audio backend" ON) - -option(USE_DISCORD_PRESENCE "Enables Discord Rich Presence" OFF) - -option(ENABLE_MICROPROFILE "Enables microprofile capabilities" OFF) - -option(YUZU_TESTS "Compile tests" "${BUILD_TESTING}") - -if (${CMAKE_SYSTEM_NAME} STREQUAL "FreeBSD") - option(YUZU_USE_PRECOMPILED_HEADERS "Use precompiled headers" OFF) -else() - option(YUZU_USE_PRECOMPILED_HEADERS "Use precompiled headers" ON) -endif() - -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) - -CMAKE_DEPENDENT_OPTION(YUZU_ROOM "Enable dedicated room functionality" ON "NOT ANDROID" OFF) - -CMAKE_DEPENDENT_OPTION(YUZU_ROOM_STANDALONE "Enable standalone room executable" ON "YUZU_ROOM" OFF) - -CMAKE_DEPENDENT_OPTION(YUZU_CMD "Compile the eden-cli executable" ON "NOT ANDROID" OFF) - -CMAKE_DEPENDENT_OPTION(YUZU_CRASH_DUMPS "Compile crash dump (Minidump) support" OFF "WIN32 OR LINUX" OFF) - -if (${CMAKE_SYSTEM_NAME} STREQUAL "FreeBSD") - option(YUZU_CHECK_SUBMODULES "Check if submodules are present" OFF) -else() - option(YUZU_CHECK_SUBMODULES "Check if submodules are present" ON) -endif() - -option(YUZU_ENABLE_LTO "Enable link-time optimization" OFF) - -option(YUZU_DOWNLOAD_TIME_ZONE_DATA "Always download time zone binaries" ON) - -option(YUZU_ENABLE_PORTABLE "Allow yuzu to enable portable mode if a user folder is found in the CWD" ON) - -CMAKE_DEPENDENT_OPTION(YUZU_USE_FASTER_LD "Check if a faster linker is available" ON "NOT WIN32" OFF) - -CMAKE_DEPENDENT_OPTION(USE_SYSTEM_MOLTENVK "Use the system MoltenVK lib (instead of the bundled one)" OFF "APPLE" OFF) - -set(DEFAULT_ENABLE_OPENSSL ON) -if (ANDROID OR WIN32 OR APPLE OR ${CMAKE_SYSTEM_NAME} STREQUAL "SunOS") - # - Windows defaults to the Schannel backend. - # - macOS defaults to the SecureTransport backend. - # - Android currently has no SSL backend as the NDK doesn't include any SSL - # library; a proper 'native' backend would have to go through Java. - # But you can force builds for those platforms to use OpenSSL if you have - # your own copy of it. - set(DEFAULT_ENABLE_OPENSSL OFF) -endif() - -if (ENABLE_WEB_SERVICE) - set(DEFAULT_ENABLE_OPENSSL ON) -endif() - -option(ENABLE_OPENSSL "Enable OpenSSL backend for ISslConnection" ${DEFAULT_ENABLE_OPENSSL}) - -if (ANDROID AND YUZU_DOWNLOAD_ANDROID_VVL) - set(vvl_version "sdk-1.3.261.1") - 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" - "${vvl_zip_file}" SHOW_PROGRESS) - execute_process(COMMAND ${CMAKE_COMMAND} -E tar xf "${vvl_zip_file}" - WORKING_DIRECTORY "${CMAKE_BINARY_DIR}/externals") - endif() - - # Copy the arm64 binary to src/android/app/main/jniLibs - set(vvl_lib_path "${CMAKE_CURRENT_SOURCE_DIR}/src/android/app/src/main/jniLibs/arm64-v8a/") - file(COPY "${CMAKE_BINARY_DIR}/externals/android-binaries-${vvl_version}/arm64-v8a/libVkLayer_khronos_validation.so" - DESTINATION "${vvl_lib_path}") -endif() - -if (ANDROID) - set(CMAKE_SKIP_INSTALL_RULES ON) - set(CMAKE_POLICY_VERSION_MINIMUM 3.5) # Workaround for Oboe -endif() - -if (YUZU_USE_PRECOMPILED_HEADERS) - if (MSVC AND CCACHE) - # buildcache does not properly cache PCH files, leading to compilation errors. - # See https://github.com/mbitsnbites/buildcache/discussions/230 - message(WARNING "buildcache does not properly support Precompiled Headers. Disabling PCH") - set(DYNARMIC_USE_PRECOMPILED_HEADERS OFF CACHE BOOL "" FORCE) - set(YUZU_USE_PRECOMPILED_HEADERS OFF CACHE BOOL "" FORCE) - endif() -endif() -if (YUZU_USE_PRECOMPILED_HEADERS) - message(STATUS "Using Precompiled Headers.") - set(CMAKE_PCH_INSTANTIATE_TEMPLATES ON) -endif() - - -# Default to a Release build -get_property(IS_MULTI_CONFIG GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG) -if (NOT IS_MULTI_CONFIG AND NOT CMAKE_BUILD_TYPE) - set(CMAKE_BUILD_TYPE "Release" CACHE STRING "Choose the type of build, options are: Debug Release RelWithDebInfo MinSizeRel." FORCE) - message(STATUS "Defaulting to a Release build") -endif() - -if(EXISTS ${PROJECT_SOURCE_DIR}/hooks/pre-commit AND NOT EXISTS ${PROJECT_SOURCE_DIR}/.git/hooks/pre-commit) - if (EXISTS ${PROJECT_SOURCE_DIR}/.git/) - message(STATUS "Copying pre-commit hook") - file(COPY hooks/pre-commit DESTINATION ${PROJECT_SOURCE_DIR}/.git/hooks) + # For some mighty reason, doing a normal release build sometimes may not trigger + # the proper -O3 switch to materialize + if (CMAKE_BUILD_TYPE MATCHES "Release") + set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -O3") + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -O3") endif() endif() -# Sanity check : Check that all submodules are present -# ======================================================================= - -function(check_submodules_present) - file(READ "${PROJECT_SOURCE_DIR}/.gitmodules" gitmodules) - string(REGEX MATCHALL "path *= *[^ \t\r\n]*" gitmodules ${gitmodules}) - foreach(module ${gitmodules}) - string(REGEX REPLACE "path *= *" "" module ${module}) - - file(GLOB RESULT "${PROJECT_SOURCE_DIR}/${module}/*") - list(LENGTH RESULT RES_LEN) - if(RES_LEN EQUAL 0) - message(FATAL_ERROR "Git submodule ${module} not found. " - "Please run: \ngit submodule update --init --recursive") - endif() - if (EXISTS "${PROJECT_SOURCE_DIR}/${module}/.git") - set(SUBMODULE_DIR "${PROJECT_SOURCE_DIR}/${module}") - - execute_process( - COMMAND git rev-parse --short=10 HEAD - WORKING_DIRECTORY ${SUBMODULE_DIR} - OUTPUT_VARIABLE SUBMODULE_SHA - ) - - # would probably be better to do string parsing, but whatever - execute_process( - COMMAND git remote get-url origin - WORKING_DIRECTORY ${SUBMODULE_DIR} - OUTPUT_VARIABLE SUBMODULE_URL - ) - - string(REGEX REPLACE "\n|\r" "" SUBMODULE_SHA ${SUBMODULE_SHA}) - string(REGEX REPLACE "\n|\r|\\.git" "" SUBMODULE_URL ${SUBMODULE_URL}) - - get_filename_component(SUBMODULE_NAME ${SUBMODULE_DIR} NAME) - - set_property(GLOBAL APPEND PROPERTY CPM_PACKAGE_NAMES ${SUBMODULE_NAME}) - set_property(GLOBAL APPEND PROPERTY CPM_PACKAGE_SHAS ${SUBMODULE_SHA}) - set_property(GLOBAL APPEND PROPERTY CPM_PACKAGE_URLS ${SUBMODULE_URL}) - endif() - endforeach() -endfunction() - -if(EXISTS ${PROJECT_SOURCE_DIR}/.gitmodules AND YUZU_CHECK_SUBMODULES) - check_submodules_present() -endif() -configure_file(${PROJECT_SOURCE_DIR}/dist/compatibility_list/compatibility_list.qrc - ${PROJECT_BINARY_DIR}/dist/compatibility_list/compatibility_list.qrc - COPYONLY) -if (EXISTS ${PROJECT_SOURCE_DIR}/dist/compatibility_list/compatibility_list.json) - configure_file("${PROJECT_SOURCE_DIR}/dist/compatibility_list/compatibility_list.json" - "${PROJECT_BINARY_DIR}/dist/compatibility_list/compatibility_list.json" - COPYONLY) -endif() -if (ENABLE_COMPATIBILITY_LIST_DOWNLOAD AND NOT EXISTS ${PROJECT_BINARY_DIR}/dist/compatibility_list/compatibility_list.json) - message(STATUS "Downloading compatibility list for yuzu...") - file(DOWNLOAD - https://api.yuzu-emu.org/gamedb/ - "${PROJECT_BINARY_DIR}/dist/compatibility_list/compatibility_list.json" SHOW_PROGRESS) -endif() -if (NOT EXISTS ${PROJECT_BINARY_DIR}/dist/compatibility_list/compatibility_list.json) - file(WRITE ${PROJECT_BINARY_DIR}/dist/compatibility_list/compatibility_list.json "") +# Needed for FFmpeg w/ VAAPI and DRM +if (PLATFORM_OPENBSD) + set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -I/usr/X11R6/include") + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -I/usr/X11R6/include") + set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -L/usr/X11R6/lib") endif() # Detect current compilation architecture and create standard definitions @@ -313,23 +90,245 @@ if (NOT DEFINED ARCHITECTURE) set(ARCHITECTURE_GENERIC 1) add_definitions(-DARCHITECTURE_GENERIC=1) endif() + message(STATUS "Target architecture: ${ARCHITECTURE}") -if (UNIX) - add_definitions(-DYUZU_UNIX=1) +if (MSVC AND ARCHITECTURE_x86) + message(FATAL_ERROR "Attempting to build with the x86 environment is not supported. \ + This can typically happen if you used the Developer Command Prompt from the start menu; \ + instead, run vcvars64.bat directly, located at C:/Program Files/Microsoft Visual Studio/2022/Community/VC/Auxiliary/Build/vcvars64.bat") endif() -if (ARCHITECTURE_arm64 AND (ANDROID OR APPLE OR ${CMAKE_SYSTEM_NAME} STREQUAL "Linux")) +if (CXX_CLANG_CL) + add_compile_options( + # clang-cl prints literally 10000+ warnings without this + $<$:-Wno-unused-command-line-argument> + $<$:-Wno-unsafe-buffer-usage> + $<$:-Wno-unused-value> + $<$:-Wno-extra-semi-stmt> + $<$:-Wno-sign-conversion> + $<$:-Wno-reserved-identifier> + $<$:-Wno-deprecated-declarations> + $<$:-Wno-cast-function-type-mismatch> + $<$:/EHsc> # thanks microsoft + ) + + if (ARCHITECTURE_x86_64) + add_compile_options( + # Required CPU features for amd64 + $<$:-msse4.1> + $<$:-mcx16> + ) + endif() +endif() + +set(CPM_SOURCE_CACHE ${CMAKE_SOURCE_DIR}/.cache/cpm) + +include(DownloadExternals) +include(CMakeDependentOption) +include(CTest) + +# Disable Warnings as Errors for MSVC +if (MSVC AND NOT CXX_CLANG) + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /W3 /WX-") +endif() + +if (PLATFORM_FREEBSD) + set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -L/usr/local/lib") +endif() + +# Set bundled sdl2/qt as dependent options. +# On Linux system SDL2 is likely to be lacking HIDAPI support which have drawbacks but is needed for SDL motion +CMAKE_DEPENDENT_OPTION(ENABLE_SDL2 "Enable the SDL2 frontend" ON "NOT ANDROID" OFF) + +set(EXT_DEFAULT OFF) + +if (MSVC OR ANDROID) + set(EXT_DEFAULT ON) +endif() + +if (ENABLE_SDL2) + # TODO(crueter): Cleanup, each dep that has a bundled option should allow to choose between bundled, external, system + CMAKE_DEPENDENT_OPTION(YUZU_USE_EXTERNAL_SDL2 "Compile external SDL2" OFF "NOT MSVC" OFF) + option(YUZU_USE_BUNDLED_SDL2 "Download bundled SDL2 build" "${MSVC}") +endif() + +cmake_dependent_option(ENABLE_LIBUSB "Enable the use of LibUSB" ON "NOT ANDROID" OFF) + +cmake_dependent_option(ENABLE_OPENGL "Enable OpenGL" ON "NOT WIN32 OR NOT ARCHITECTURE_arm64" OFF) +mark_as_advanced(FORCE ENABLE_OPENGL) + +option(ENABLE_QT "Enable the Qt frontend" ON) +option(ENABLE_QT_TRANSLATION "Enable translations for the Qt frontend" OFF) +option(ENABLE_QT_UPDATE_CHECKER "Enable update checker for the Qt frontend" OFF) + +CMAKE_DEPENDENT_OPTION(YUZU_USE_BUNDLED_QT "Download bundled Qt binaries" "${MSVC}" "ENABLE_QT" OFF) + +option(YUZU_USE_CPM "Use CPM to fetch system dependencies (fmt, boost, etc) if needed. Externals will still be fetched." ${EXT_DEFAULT}) + +option(ENABLE_WEB_SERVICE "Enable web services (telemetry, etc.)" ON) +option(ENABLE_WIFI_SCAN "Enable WiFi scanning" OFF) + +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) + +option(YUZU_USE_QT_WEB_ENGINE "Use QtWebEngine for web applet implementation" OFF) + +set(YUZU_QT_MIRROR "" CACHE STRING "What mirror to use for downloading the bundled Qt libraries") + +option(ENABLE_CUBEB "Enables the cubeb audio backend" ON) + +CMAKE_DEPENDENT_OPTION(USE_DISCORD_PRESENCE "Enables Discord Rich Presence" OFF "ENABLE_QT" OFF) + +option(YUZU_TESTS "Compile tests" "${BUILD_TESTING}") + +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) + + +CMAKE_DEPENDENT_OPTION(YUZU_ROOM "Enable dedicated room functionality" ON "NOT ANDROID" OFF) + +CMAKE_DEPENDENT_OPTION(YUZU_ROOM_STANDALONE "Enable standalone room executable" ON "YUZU_ROOM" OFF) + +CMAKE_DEPENDENT_OPTION(YUZU_CMD "Compile the eden-cli executable" ON "ENABLE_SDL2;NOT ANDROID" OFF) + +CMAKE_DEPENDENT_OPTION(YUZU_CRASH_DUMPS "Compile crash dump (Minidump) support" OFF "WIN32 OR LINUX" OFF) + +option(YUZU_ENABLE_LTO "Enable link-time optimization" OFF) +if(YUZU_ENABLE_LTO) + include(CheckIPOSupported) + check_ipo_supported(RESULT COMPILER_SUPPORTS_LTO) + if(NOT COMPILER_SUPPORTS_LTO) + message(FATAL_ERROR "Your compiler does not support interprocedural optimization (IPO). Re-run CMake with -DYUZU_ENABLE_LTO=OFF.") + endif() + set(CMAKE_INTERPROCEDURAL_OPTIMIZATION ${COMPILER_SUPPORTS_LTO}) +endif() + +option(YUZU_DOWNLOAD_TIME_ZONE_DATA "Always download time zone binaries" ON) + +CMAKE_DEPENDENT_OPTION(YUZU_USE_FASTER_LD "Check if a faster linker is available" ON "NOT WIN32" OFF) + +CMAKE_DEPENDENT_OPTION(USE_SYSTEM_MOLTENVK "Use the system MoltenVK lib (instead of the bundled one)" OFF "APPLE" OFF) + +set(YUZU_TZDB_PATH "" CACHE STRING "Path to a pre-downloaded timezone database") + +option(YUZU_DISABLE_LLVM "Disable LLVM (useful for CI)" OFF) + +set(DEFAULT_ENABLE_OPENSSL ON) +if (ANDROID OR WIN32 OR APPLE OR PLATFORM_SUN) + # - Windows defaults to the Schannel backend. + # - macOS defaults to the SecureTransport backend. + # - Android currently has no SSL backend as the NDK doesn't include any SSL + # library; a proper 'native' backend would have to go through Java. + # But you can force builds for those platforms to use OpenSSL if you have + # your own copy of it. + set(DEFAULT_ENABLE_OPENSSL OFF) +endif() + +if (ENABLE_WEB_SERVICE) + set(DEFAULT_ENABLE_OPENSSL ON) +endif() + +option(ENABLE_OPENSSL "Enable OpenSSL backend for ISslConnection" ${DEFAULT_ENABLE_OPENSSL}) + +if (ENABLE_OPENSSL) + CMAKE_DEPENDENT_OPTION(YUZU_USE_BUNDLED_OPENSSL "Download bundled OpenSSL build" "${MSVC}" "NOT ANDROID" ON) +endif() + +if (ANDROID AND YUZU_DOWNLOAD_ANDROID_VVL) + # 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}/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") + endif() + + # Copy the arm64 binary to src/android/app/main/jniLibs + set(vvl_lib_path "${CMAKE_CURRENT_SOURCE_DIR}/src/android/app/src/main/jniLibs/arm64-v8a/") + file(COPY "${CMAKE_BINARY_DIR}/externals/android-binaries-${vvl_version}/arm64-v8a/libVkLayer_khronos_validation.so" + DESTINATION "${vvl_lib_path}") +endif() + +if (ANDROID) + set(CMAKE_SKIP_INSTALL_RULES ON) + set(CMAKE_POLICY_VERSION_MINIMUM 3.5) # Workaround for Oboe +endif() + +if (YUZU_USE_PRECOMPILED_HEADERS) + if (MSVC AND CCACHE) + # buildcache does not properly cache PCH files, leading to compilation errors. + # See https://github.com/mbitsnbites/buildcache/discussions/230 + message(WARNING "buildcache does not properly support Precompiled Headers. Disabling PCH") + set(DYNARMIC_USE_PRECOMPILED_HEADERS OFF CACHE BOOL "" FORCE) + set(YUZU_USE_PRECOMPILED_HEADERS OFF CACHE BOOL "" FORCE) + endif() +endif() + +if (YUZU_USE_PRECOMPILED_HEADERS) + message(STATUS "Using Precompiled Headers.") + set(CMAKE_PCH_INSTANTIATE_TEMPLATES ON) +endif() + +# Default to a Release build +get_property(IS_MULTI_CONFIG GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG) +if (NOT IS_MULTI_CONFIG AND NOT CMAKE_BUILD_TYPE) + set(CMAKE_BUILD_TYPE "Release" CACHE STRING "Choose the type of build, options are: Debug Release RelWithDebInfo MinSizeRel." FORCE) + message(STATUS "Defaulting to a Release build") +endif() + +if(EXISTS ${PROJECT_SOURCE_DIR}/hooks/pre-commit AND NOT EXISTS ${PROJECT_SOURCE_DIR}/.git/hooks/pre-commit) + if (EXISTS ${PROJECT_SOURCE_DIR}/.git/) + message(STATUS "Copying pre-commit hook") + file(COPY hooks/pre-commit DESTINATION ${PROJECT_SOURCE_DIR}/.git/hooks) + endif() +endif() + +configure_file(${PROJECT_SOURCE_DIR}/dist/compatibility_list/compatibility_list.qrc + ${PROJECT_BINARY_DIR}/dist/compatibility_list/compatibility_list.qrc + COPYONLY) + +if (EXISTS ${PROJECT_SOURCE_DIR}/dist/compatibility_list/compatibility_list.json) + configure_file("${PROJECT_SOURCE_DIR}/dist/compatibility_list/compatibility_list.json" + "${PROJECT_BINARY_DIR}/dist/compatibility_list/compatibility_list.json" + COPYONLY) +endif() + +if (ENABLE_COMPATIBILITY_LIST_DOWNLOAD AND NOT EXISTS ${PROJECT_BINARY_DIR}/dist/compatibility_list/compatibility_list.json) + message(STATUS "Downloading compatibility list for yuzu...") + file(DOWNLOAD + https://api.yuzu-emu.org/gamedb/ + "${PROJECT_BINARY_DIR}/dist/compatibility_list/compatibility_list.json" SHOW_PROGRESS) +endif() + +if (NOT EXISTS ${PROJECT_BINARY_DIR}/dist/compatibility_list/compatibility_list.json) + file(WRITE ${PROJECT_BINARY_DIR}/dist/compatibility_list/compatibility_list.json "") +endif() + +if (UNIX) + add_compile_definitions(YUZU_UNIX=1) +endif() + +if (ARCHITECTURE_arm64 AND (ANDROID OR PLATFORM_LINUX)) set(HAS_NCE 1) - add_definitions(-DHAS_NCE=1) + add_compile_definitions(HAS_NCE=1) + find_package(oaknut 2.0.1) endif() if (YUZU_ROOM) - add_definitions(-DYUZU_ROOM) + add_compile_definitions(YUZU_ROOM) endif() # Build/optimization presets -if (${CMAKE_SYSTEM_NAME} STREQUAL "Linux") +if (PLATFORM_LINUX OR CXX_CLANG) if (ARCHITECTURE_x86_64) set(YUZU_BUILD_PRESET "custom" CACHE STRING "Build preset to use. One of: custom, generic, v3, zen2, zen4, native") if (${YUZU_BUILD_PRESET} STREQUAL "generic") @@ -375,166 +374,173 @@ set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${PROJECT_BINARY_DIR}/bin) # System imported libraries # ======================================================================= +include(CPMUtil) + +# openssl funniness +if (ENABLE_OPENSSL) + if (YUZU_USE_BUNDLED_OPENSSL) + AddJsonPackage(openssl) + endif() + + find_package(OpenSSL 1.1.1 REQUIRED) +endif() + if (YUZU_USE_CPM) - include(CPMUtil) message(STATUS "Fetching needed dependencies with CPM") set(BUILD_SHARED_LIBS OFF) set(BUILD_TESTING OFF) + set(ENABLE_TESTING OFF) # TODO(crueter): renderdoc? - # openssl funniness - if (ENABLE_OPENSSL) - if (MSVC) - set(BUILD_SHARED_LIBS OFF) - AddPackage( - NAME OpenSSL - REPO crueter/OpenSSL-CI - TAG v3.5.2 - VERSION 3.5.2 - ARTIFACT openssl-windows-3.5.2.tar.zst + # boost + set(BOOST_INCLUDE_LIBRARIES algorithm icl pool container heap asio headers process filesystem crc variant) - KEY windows - HASH_SUFFIX sha512sum - BUNDLED_PACKAGE ON - ) - - include(${OpenSSL_SOURCE_DIR}/openssl.cmake) - endif() - - if (ANDROID) - set(BUILD_SHARED_LIBS OFF) - AddPackage( - NAME OpenSSL - REPO crueter/OpenSSL-CI - TAG v3.5.2 - VERSION 3.5.2 - ARTIFACT openssl-android-3.5.2.tar.zst - - KEY android - HASH_SUFFIX sha512sum - BUNDLED_PACKAGE ON - ) - - include(${OpenSSL_SOURCE_DIR}/openssl.cmake) - endif() - endif() - - AddPackage( - NAME Boost - REPO boostorg/boost - TAG boost-1.88.0 - ARTIFACT boost-1.88.0-cmake.7z - - HASH e5b049e5b61964480ca816395f63f95621e66cb9bcf616a8b10e441e0e69f129e22443acb11e77bc1e8170f8e4171b9b7719891efc43699782bfcd4b3a365f01 - - GIT_VERSION 1.88.0 - VERSION 1.57 - ) + AddJsonPackage(boost) + # really annoying thing where boost::headers doesn't work with cpm + # TODO(crueter) investigate set(BOOST_NO_HEADERS ${Boost_ADDED}) if (Boost_ADDED) if (MSVC OR ANDROID) add_compile_definitions(YUZU_BOOST_v1) - else() - message(WARNING "Using bundled Boost on a non-MSVC or Android system is not recommended. You are strongly encouraged to install Boost through your system's package manager.") endif() - if (NOT MSVC) + if (NOT MSVC OR CXX_CLANG) # boost sucks + if (PLATFORM_SUN) + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -pthreads") + set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -pthreads") + endif() + target_compile_options(boost_heap INTERFACE -Wno-shadow) target_compile_options(boost_icl INTERFACE -Wno-shadow) target_compile_options(boost_asio INTERFACE -Wno-conversion -Wno-implicit-fallthrough) endif() endif() - AddPackage( - NAME fmt - REPO fmtlib/fmt - SHA 40626af88b - HASH d59f06c24339f223de4ec2afeba1c67b5835a0f350a1ffa86242a72fc3e616a6b8b21798355428d4200c75287308b66634619ffa0b52ba5bd74cc01772ea1a8a - VERSION 8 - OPTIONS - "FMT_INSTALL OFF" - ) + # fmt + AddJsonPackage(fmt) - AddPackage( - NAME lz4 - REPO lz4/lz4 - SHA ebb370ca83 - HASH 43600e87b35256005c0f2498fa56a77de6783937ba4cfce38c099f27c03188d097863e8a50c5779ca0a7c63c29c4f7ed0ae526ec798c1fd2e3736861b62e0a37 - SOURCE_SUBDIR build/cmake - ) + # lz4 + AddJsonPackage(lz4) if (lz4_ADDED) add_library(lz4::lz4 ALIAS lz4_static) endif() - AddPackage( - NAME nlohmann_json - REPO nlohmann/json - SHA 55f93686c0 - HASH b739749b066800e21154506ea150d2c5cbce8a45344177f46f884547a1399d26753166fd0df8135269ce28cf223552b1b65cd625b88c844d54753f2434900486 - VERSION 3.8 - ) + # nlohmann + AddJsonPackage(nlohmann) - AddPackage( - NAME SimpleIni - REPO brofield/simpleini - SHA 09c21bda1d - HASH 99779ca9b6e040d36558cadf484f9ffdab5b47bcc8fc72e4d33639d1d60c0ceb4410d335ba445d72a4324e455167fd6769d99b459943aa135bec085dff2d4b7c - EXCLUDE_FROM_ALL ON - ) - - AddPackage( - NAME ZLIB - REPO madler/zlib - SHA 51b7f2abda - HASH 16eaf1f3752489d12fd9ce30f7b5f7cbd5cb8ff53d617005a9847ae72d937f65e01e68be747f62d7ac19fd0c9aeba9956e60f16d6b465c5fdc2f3d08b4db2e6c - VERSION 1.2 - OPTIONS - "ZLIB_BUILD_SHARED OFF" - "ZLIB_INSTALL OFF" - EXCLUDE_FROM_ALL ON - ) + # zlib + AddJsonPackage(zlib) if (ZLIB_ADDED) add_library(ZLIB::ZLIB ALIAS zlibstatic) endif() - set(ZSTD_BUILD_SHARED OFF) - AddPackage( - NAME zstd - REPO facebook/zstd - SHA f8745da6ff - HASH 3037007f990040fe32573b46f9bef8762fd5dbeeb07ffffcbfeba51ec98167edae39bb9c87f9299efcd61c4e467c5e84f7c19f0df7799bc1fc04864a278792ee - VERSION 1.5 - SOURCE_SUBDIR build/cmake - EXCLUDE_FROM_ALL ON - ) + # zstd + AddJsonPackage(zstd) - if (YUZU_TESTS OR DYNARMIC_TESTS) - AddPackage( - NAME Catch2 - REPO catchorg/Catch2 - SHA 644821ce28 - HASH f8795f98acf2c02c0db8e734cc866d5caebab4b4a306e93598b97cb3c0c728dafe8283dce27ffe8d42460e5ae7302f3f32e7e274a7f991b73511ac88eef21b1f - VERSION 3.0.1 - ) + if (zstd_ADDED) + add_library(zstd::zstd ALIAS libzstd_static) endif() + + # Catch2 + if (YUZU_TESTS OR DYNARMIC_TESTS) + AddJsonPackage(catch2) + endif() + + # ENet + AddJsonPackage(enet) + + if (enet_ADDED) + 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) + + if (Opus_ADDED) + if (MSVC AND CXX_CLANG) + target_compile_options(opus PRIVATE + -Wno-implicit-function-declaration + ) + 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) + + # small hack + if (NOT VulkanUtilityLibraries_ADDED) + find_package(VulkanHeaders 1.3.274 REQUIRED) + endif() + + # SPIRV Headers + AddJsonPackage(spirv-headers) + + # SPIRV Tools + AddJsonPackage(spirv-tools) + + if (SPIRV-Tools_ADDED) + add_library(SPIRV-Tools::SPIRV-Tools ALIAS SPIRV-Tools-static) + target_link_libraries(SPIRV-Tools-static PRIVATE SPIRV-Tools-opt SPIRV-Tools-link) + endif() + + # mbedtls + AddJsonPackage(mbedtls) else() # Enforce the search mode of non-required packages for better and shorter failure messages find_package(fmt 8 REQUIRED) - find_package(LLVM MODULE COMPONENTS Demangle) + if (NOT YUZU_DISABLE_LLVM) + find_package(LLVM MODULE COMPONENTS Demangle) + endif() + find_package(nlohmann_json 3.8 REQUIRED) find_package(lz4 REQUIRED) find_package(RenderDoc MODULE) - find_package(SimpleIni MODULE) find_package(stb MODULE) + find_package(enet 1.3 MODULE REQUIRED) + find_package(Opus 1.3 MODULE REQUIRED) find_package(ZLIB 1.2 REQUIRED) - find_package(zstd 1.5 REQUIRED) + find_package(zstd 1.5 REQUIRED MODULE) + + # wow + if (PLATFORM_LINUX) + find_package(Boost 1.57.0 REQUIRED headers context system fiber) + else() + find_package(Boost 1.57.0 REQUIRED) + endif() + + # OpenBSD does not package mbedtls3 (only 2) + if (PLATFORM_OPENBSD) + AddJsonPackage(mbedtls) + else() + find_package(MbedTLS 3 REQUIRED) + endif() + + find_package(VulkanUtilityLibraries REQUIRED) + find_package(VulkanHeaders 1.3.274 REQUIRED) + + # FreeBSD does not package spirv-headers + if (PLATFORM_FREEBSD) + AddJsonPackage(spirv-headers) + else() + find_package(SPIRV-Headers 1.3.274 REQUIRED) + endif() + + find_package(SPIRV-Tools MODULE REQUIRED) if (YUZU_TESTS) find_package(Catch2 3.0.1 REQUIRED) @@ -549,48 +555,92 @@ else() endif() endif() -if (ENABLE_LIBUSB) - if (${CMAKE_SYSTEM_NAME} STREQUAL "FreeBSD") - find_package(libusb MODULE) - else() - find_package(libusb 1.0.24 MODULE) - endif() +if(NOT TARGET Boost::headers) + AddJsonPackage(boost_headers) endif() -# TODO(crueter): Work around this -if (NOT YUZU_USE_EXTERNAL_VULKAN_SPIRV_TOOLS) - find_package(PkgConfig REQUIRED) - pkg_check_modules(SPIRV-Tools REQUIRED SPIRV-Tools) +# DiscordRPC +if (USE_DISCORD_PRESENCE) + if (ARCHITECTURE_arm64) + add_compile_definitions(RAPIDJSON_ENDIAN=RAPIDJSON_LITTLEENDIAN) + endif() + + AddJsonPackage(discord-rpc) + + target_include_directories(discord-rpc INTERFACE ${discord-rpc_SOURCE_DIR}/include) + add_library(DiscordRPC::discord-rpc ALIAS discord-rpc) +endif() + +# SimpleIni +AddJsonPackage(simpleini) + +# Most linux distros don't package cubeb, so enable regardless of cpm settings +if(ENABLE_CUBEB) + AddJsonPackage(cubeb) + + if (cubeb_ADDED) + if (NOT MSVC) + if (TARGET speex) + target_compile_options(speex PRIVATE -Wno-sign-compare) + endif() + + set_target_properties(cubeb PROPERTIES COMPILE_OPTIONS "") + target_compile_options(cubeb INTERFACE + -Wno-implicit-const-int-float-conversion + -Wno-shadow + -Wno-missing-declarations + -Wno-return-type + -Wno-uninitialized + ) + else() + target_compile_options(cubeb PRIVATE + /wd4456 + /wd4458 + ) + 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 -# TODO(crueter): combine this all with CPM. if (ENABLE_SDL2) - if (YUZU_USE_BUNDLED_SDL2) - # Detect toolchain and platform - if ((MSVC_VERSION GREATER_EQUAL 1920) AND ARCHITECTURE_x86_64) - set(SDL2_VER "SDL2-2.32.8") - else() - message(FATAL_ERROR "No bundled SDL2 binaries for your toolchain. Disable YUZU_USE_BUNDLED_SDL2 and provide your own.") - endif() - - if (DEFINED SDL2_VER) - download_bundled_external("sdl2/" ${SDL2_VER} "sdl2-bundled" SDL2_PREFIX 2.32.8) - endif() - - set(SDL2_FOUND YES) - set(SDL2_INCLUDE_DIR "${SDL2_PREFIX}/include" CACHE PATH "Path to SDL2 headers") - set(SDL2_LIBRARY "${SDL2_PREFIX}/lib/x64/SDL2.lib" CACHE PATH "Path to SDL2 library") - set(SDL2_DLL_DIR "${SDL2_PREFIX}/lib/x64/" CACHE PATH "Path to SDL2.dll") - - add_library(SDL2::SDL2 INTERFACE IMPORTED) - target_link_libraries(SDL2::SDL2 INTERFACE "${SDL2_LIBRARY}") - target_include_directories(SDL2::SDL2 INTERFACE "${SDL2_INCLUDE_DIR}") - elseif (YUZU_USE_EXTERNAL_SDL2) + if (YUZU_USE_EXTERNAL_SDL2) message(STATUS "Using SDL2 from externals.") - else() - find_package(SDL2 2.26.4 REQUIRED) + if (NOT WIN32) + # Yuzu itself needs: Atomic Audio Events Joystick Haptic Sensor Threads Timers + # Since 2.0.18 Atomic+Threads required for HIDAPI/libusb (see https://github.com/libsdl-org/SDL/issues/5095) + # Yuzu-cmd also needs: Video (depends on Loadso/Dlopen) + # CPUinfo also required for SDL Audio, at least until 2.28.0 (see https://github.com/libsdl-org/SDL/issues/7809) + set(SDL_UNUSED_SUBSYSTEMS + File Filesystem + Locale Power Render) + foreach(_SUB ${SDL_UNUSED_SUBSYSTEMS}) + string(TOUPPER ${_SUB} _OPT) + set(SDL_${_OPT} OFF) + endforeach() + + set(HIDAPI ON) + endif() + + if (APPLE) + set(SDL_FILE ON) + endif() + + if ("${YUZU_SYSTEM_PROFILE}" STREQUAL "steamdeck") + set(SDL_PIPEWIRE OFF) # build errors out with this on + AddJsonPackage("sdl2_steamdeck") + else() + AddJsonPackage("sdl2_generic") + endif() + elseif (YUZU_USE_BUNDLED_SDL2) + message(STATUS "Using bundled SDL2") + AddJsonPackage(sdl2) endif() + + find_package(SDL2 2.26.4 REQUIRED) endif() # List of all FFmpeg components required @@ -621,10 +671,13 @@ endfunction() add_subdirectory(externals) # pass targets from externals -find_package(VulkanHeaders) -find_package(VulkanUtilityLibraries) +find_package(libusb) find_package(VulkanMemoryAllocator) +if (ARCHITECTURE_x86 OR ARCHITECTURE_x86_64) + find_package(xbyak) +endif() + if (ENABLE_WEB_SERVICE) find_package(httplib) endif() @@ -633,10 +686,6 @@ if (ENABLE_WEB_SERVICE OR ENABLE_QT_UPDATE_CHECKER) find_package(cpp-jwt) endif() -if (NOT YUZU_USE_BUNDLED_SDL2) - find_package(SDL2 REQUIRED) -endif() - if (ENABLE_QT) if (YUZU_USE_BUNDLED_QT) download_qt(6.8.3) @@ -655,7 +704,7 @@ if (ENABLE_QT) endif() if (CMAKE_SYSTEM_NAME STREQUAL "Linux") - find_package(Qt6 REQUIRED COMPONENTS DBus GuiPrivate) + find_package(Qt6 REQUIRED COMPONENTS DBus OPTIONAL_COMPONENTS GuiPrivate) elseif (UNIX AND NOT APPLE) find_package(Qt6 REQUIRED COMPONENTS DBus Gui) endif() @@ -686,7 +735,7 @@ endif() function(set_yuzu_qt_components) # Best practice is to ask for all components at once, so they are from the same version set(YUZU_QT_COMPONENTS2 Core Widgets Concurrent) - if (${CMAKE_SYSTEM_NAME} STREQUAL "Linux") + if (PLATFORM_LINUX) list(APPEND YUZU_QT_COMPONENTS2 DBus) endif() if (YUZU_USE_QT_MULTIMEDIA) @@ -709,9 +758,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 @@ -755,7 +803,7 @@ if (APPLE) list(APPEND PLATFORM_LIBRARIES ${ICONV_LIBRARY}) elseif (WIN32) # Target Windows 10 - add_definitions(-D_WIN32_WINNT=0x0A00 -DWINVER=0x0A00) + add_compile_definitions(_WIN32_WINNT=0x0A00 WINVER=0x0A00) set(PLATFORM_LIBRARIES winmm ws2_32 iphlpapi) if (MINGW) # PSAPI is the Process Status API @@ -825,19 +873,45 @@ if (MSVC AND CMAKE_GENERATOR STREQUAL "Ninja") ) endif() -if (YUZU_USE_FASTER_LD AND CMAKE_CXX_COMPILER_ID STREQUAL "GNU") - # We will assume that if the compiler is GCC, it will attempt to use ld.bfd by default. - # Try to pick a faster linker. - find_program(LLD lld) - find_program(MOLD mold) - - if (MOLD AND CMAKE_CXX_COMPILER_VERSION VERSION_GREATER_EQUAL "12.1") - message(NOTICE "Selecting mold as linker") - add_link_options("-fuse-ld=mold") - elseif (LLD) - message(NOTICE "Selecting lld as linker") - add_link_options("-fuse-ld=lld") +# Adjustments for clang-cl +if (MSVC AND CXX_CLANG) + if (ARCHITECTURE_x86_64) + set(FILE_ARCH x86_64) + elseif (ARCHITECTURE_arm64) + set(FILE_ARCH aarch64) + else() + message(FATAL_ERROR "clang-cl: Unsupported architecture ${ARCHITECTURE}") endif() + + AddJsonPackage(llvm-mingw) + set(LIB_PATH "${llvm-mingw_SOURCE_DIR}/libclang_rt.builtins-${FILE_ARCH}.a") + + add_library(llvm-mingw-runtime STATIC IMPORTED) + set_target_properties(llvm-mingw-runtime PROPERTIES + IMPORTED_LOCATION "${LIB_PATH}" + ) + + link_libraries(llvm-mingw-runtime) +endif() + +if (YUZU_USE_FASTER_LD) + # fallback if everything fails (bfd) + set(LINKER bfd) + # clang should always use lld + find_program(LLD lld) + if (LLD) + set(LINKER lld) + endif() + # GNU appears to work better with mold + # TODO: mold has been slow lately, see if better options exist (search for gold?) + if (CXX_GCC) + find_program(MOLD mold) + if (MOLD AND CMAKE_CXX_COMPILER_VERSION VERSION_GREATER_EQUAL "12.1") + set(LINKER mold) + endif() + endif() + message(NOTICE "Selecting ${LINKER} as linker") + add_link_options("-fuse-ld=${LINKER}") endif() # Set runtime library to MD/MDd for all configurations @@ -877,14 +951,14 @@ endif() # https://specifications.freedesktop.org/shared-mime-info-spec/shared-mime-info-spec-latest.html # https://www.freedesktop.org/software/appstream/docs/ if(ENABLE_QT AND UNIX AND NOT APPLE) - install(FILES "dist/org.eden_emu.eden.desktop" + install(FILES "dist/dev.eden_emu.eden.desktop" DESTINATION "share/applications") - install(FILES "dist/org.eden_emu.eden.svg" + install(FILES "dist/dev.eden_emu.eden.svg" DESTINATION "share/icons/hicolor/scalable/apps") # TODO: these files need to be updated. - install(FILES "dist/org.eden_emu.eden.xml" + install(FILES "dist/dev.eden_emu.eden.xml" DESTINATION "share/mime/packages") - install(FILES "dist/org.eden_emu.eden.metainfo.xml" + install(FILES "dist/dev.eden_emu.eden.metainfo.xml" DESTINATION "share/metainfo") endif() diff --git a/CMakeModules/CPMUtil.cmake b/CMakeModules/CPMUtil.cmake index bd0155f8fb..d84c069399 100644 --- a/CMakeModules/CPMUtil.cmake +++ b/CMakeModules/CPMUtil.cmake @@ -1,26 +1,243 @@ -# SPDX-FileCopyrightText: Copyright 2025 Eden Emulator Project +# SPDX-FileCopyrightText: Copyright 2025 crueter # SPDX-License-Identifier: GPL-3.0-or-later -# Created-By: crueter -# Docs will come at a later date, mostly this is to just reduce boilerplate -# and some cmake magic to allow for runtime viewing of dependency versions +if (MSVC OR ANDROID) + set(BUNDLED_DEFAULT ON) +else() + set(BUNDLED_DEFAULT OFF) +endif() -include(CMakeDependentOption) -CMAKE_DEPENDENT_OPTION(CPMUTIL_DEFAULT_SYSTEM - "Allow usage of system packages for CPM dependencies" ON - "NOT ANDROID" OFF) +option(CPMUTIL_FORCE_BUNDLED + "Force bundled packages for all CPM depdendencies" ${BUNDLED_DEFAULT}) + +option(CPMUTIL_FORCE_SYSTEM + "Force system packages for all CPM dependencies (NOT RECOMMENDED)" OFF) cmake_minimum_required(VERSION 3.22) include(CPM) +# cpmfile parsing +set(CPMUTIL_JSON_FILE "${CMAKE_CURRENT_SOURCE_DIR}/cpmfile.json") + +if (EXISTS ${CPMUTIL_JSON_FILE}) + file(READ ${CPMUTIL_JSON_FILE} CPMFILE_CONTENT) +else() + message(WARNING "[CPMUtil] cpmfile ${CPMUTIL_JSON_FILE} does not exist, AddJsonPackage will be a no-op") +endif() + +# Utility stuff function(cpm_utils_message level name message) message(${level} "[CPMUtil] ${name}: ${message}") endfunction() +function(array_to_list array length out) + math(EXPR range "${length} - 1") + + foreach(IDX RANGE ${range}) + string(JSON _element GET "${array}" "${IDX}") + + list(APPEND NEW_LIST ${_element}) + endforeach() + + set("${out}" "${NEW_LIST}" PARENT_SCOPE) +endfunction() + +function(get_json_element object out member default) + string(JSON out_type ERROR_VARIABLE err TYPE "${object}" ${member}) + + if (err) + set("${out}" "${default}" PARENT_SCOPE) + return() + endif() + + string(JSON outvar GET "${object}" ${member}) + + if (out_type STREQUAL "ARRAY") + string(JSON _len LENGTH "${object}" ${member}) + # array_to_list("${outvar}" ${_len} outvar) + set("${out}_LENGTH" "${_len}" PARENT_SCOPE) + endif() + + set("${out}" "${outvar}" PARENT_SCOPE) +endfunction() + +# The preferred usage +function(AddJsonPackage) + set(oneValueArgs + NAME + + # these are overrides that can be generated at runtime, so can be defined separately from the json + DOWNLOAD_ONLY + BUNDLED_PACKAGE + ) + + set(multiValueArgs OPTIONS) + + cmake_parse_arguments(JSON "" "${oneValueArgs}" "${multiValueArgs}" + "${ARGN}") + + list(LENGTH ARGN argnLength) + + # single name argument + if(argnLength EQUAL 1) + set(JSON_NAME "${ARGV0}") + endif() + + if (NOT DEFINED CPMFILE_CONTENT) + cpm_utils_message(WARNING ${name} "No cpmfile, AddJsonPackage is a no-op") + return() + endif() + + if (NOT DEFINED JSON_NAME) + cpm_utils_message(FATAL_ERROR "json package" "No name specified") + endif() + + string(JSON object ERROR_VARIABLE err GET "${CPMFILE_CONTENT}" "${JSON_NAME}") + + if (err) + cpm_utils_message(FATAL_ERROR ${JSON_NAME} "Not found in cpmfile") + endif() + + get_json_element("${object}" package package ${JSON_NAME}) + get_json_element("${object}" repo repo "") + get_json_element("${object}" ci ci OFF) + get_json_element("${object}" version version "") + + if (ci) + get_json_element("${object}" name name "${JSON_NAME}") + get_json_element("${object}" extension extension "tar.zst") + get_json_element("${object}" min_version min_version "") + get_json_element("${object}" cmake_filename cmake_filename "") + get_json_element("${object}" raw_disabled disabled_platforms "") + + if (raw_disabled) + array_to_list("${raw_disabled}" ${raw_disabled_LENGTH} disabled_platforms) + else() + set(disabled_platforms "") + endif() + + AddCIPackage( + VERSION ${version} + NAME ${name} + REPO ${repo} + PACKAGE ${package} + EXTENSION ${extension} + MIN_VERSION ${min_version} + 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() + + get_json_element("${object}" hash hash "") + get_json_element("${object}" sha sha "") + get_json_element("${object}" url url "") + get_json_element("${object}" key key "") + get_json_element("${object}" tag tag "") + get_json_element("${object}" artifact artifact "") + get_json_element("${object}" git_version git_version "") + get_json_element("${object}" git_host git_host "") + get_json_element("${object}" source_subdir source_subdir "") + get_json_element("${object}" bundled bundled "unset") + get_json_element("${object}" find_args find_args "") + get_json_element("${object}" raw_patches patches "") + + # okay here comes the fun part: REPLACEMENTS! + # first: tag gets %VERSION% replaced if applicable, with either git_version (preferred) or version + # second: artifact gets %VERSION% and %TAG% replaced accordingly (same rules for VERSION) + + if (git_version) + set(version_replace ${git_version}) + else() + set(version_replace ${version}) + endif() + + # TODO(crueter): fmt module for cmake + if (tag) + string(REPLACE "%VERSION%" "${version_replace}" tag ${tag}) + endif() + + if (artifact) + string(REPLACE "%VERSION%" "${version_replace}" artifact ${artifact}) + string(REPLACE "%TAG%" "${tag}" artifact ${artifact}) + endif() + + # format patchdir + if (raw_patches) + math(EXPR range "${raw_patches_LENGTH} - 1") + + foreach(IDX RANGE ${range}) + string(JSON _patch GET "${raw_patches}" "${IDX}") + + set(full_patch "${CMAKE_SOURCE_DIR}/.patch/${JSON_NAME}/${_patch}") + if (NOT EXISTS ${full_patch}) + cpm_utils_message(FATAL_ERROR ${JSON_NAME} "specifies patch ${full_patch} which does not exist") + endif() + + list(APPEND patches "${full_patch}") + endforeach() + endif() + # end format patchdir + + # options + get_json_element("${object}" raw_options options "") + + if (raw_options) + array_to_list("${raw_options}" ${raw_options_LENGTH} options) + endif() + + set(options ${options} ${JSON_OPTIONS}) + # end options + + # system/bundled + if (bundled STREQUAL "unset" AND DEFINED JSON_BUNDLED_PACKAGE) + set(bundled ${JSON_BUNDLED_PACKAGE}) + endif() + + AddPackage( + NAME "${package}" + VERSION "${version}" + URL "${url}" + HASH "${hash}" + SHA "${sha}" + REPO "${repo}" + KEY "${key}" + PATCHES "${patches}" + OPTIONS "${options}" + FIND_PACKAGE_ARGUMENTS "${find_args}" + BUNDLED_PACKAGE "${bundled}" + SOURCE_SUBDIR "${source_subdir}" + + GIT_VERSION ${git_version} + GIT_HOST ${git_host} + + ARTIFACT ${artifact} + TAG ${tag} + ) + + # 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) + +endfunction() + function(AddPackage) cpm_set_policies() - # TODO(crueter): docs, git clone + # TODO(crueter): git clone? #[[ URL configurations, descending order of precedence: @@ -42,6 +259,7 @@ function(AddPackage) NAME VERSION GIT_VERSION + GIT_HOST REPO TAG @@ -58,10 +276,8 @@ function(AddPackage) GIT_URL KEY - DOWNLOAD_ONLY - FIND_PACKAGE_ARGUMENTS - SYSTEM_PACKAGE BUNDLED_PACKAGE + FIND_PACKAGE_ARGUMENTS ) set(multiValueArgs OPTIONS PATCHES) @@ -73,11 +289,20 @@ function(AddPackage) cpm_utils_message(FATAL_ERROR "package" "No package name defined") endif() + option(${PKG_ARGS_NAME}_FORCE_SYSTEM "Force the system package for ${PKG_ARGS_NAME}") + option(${PKG_ARGS_NAME}_FORCE_BUNDLED "Force the bundled package for ${PKG_ARGS_NAME}") + + if (NOT DEFINED PKG_ARGS_GIT_HOST) + set(git_host github.com) + else() + set(git_host ${PKG_ARGS_GIT_HOST}) + endif() + if (DEFINED PKG_ARGS_URL) set(pkg_url ${PKG_ARGS_URL}) if (DEFINED PKG_ARGS_REPO) - set(pkg_git_url https://github.com/${PKG_ARGS_REPO}) + set(pkg_git_url https://${git_host}/${PKG_ARGS_REPO}) else() if (DEFINED PKG_ARGS_GIT_URL) set(pkg_git_url ${PKG_ARGS_GIT_URL}) @@ -86,7 +311,7 @@ function(AddPackage) endif() endif() elseif (DEFINED PKG_ARGS_REPO) - set(pkg_git_url https://github.com/${PKG_ARGS_REPO}) + set(pkg_git_url https://${git_host}/${PKG_ARGS_REPO}) if (DEFINED PKG_ARGS_TAG) set(pkg_key ${PKG_ARGS_TAG}) @@ -117,25 +342,23 @@ function(AddPackage) cpm_utils_message(STATUS ${PKG_ARGS_NAME} "Download URL is ${pkg_url}") - if (DEFINED PKG_ARGS_GIT_VERSION) - set(git_version ${PKG_ARGS_VERSION}) - elseif(DEFINED PKG_ARGS_VERSION) - set(git_version ${PKG_ARGS_GIT_VERSION}) - endif() - if (NOT DEFINED PKG_ARGS_KEY) if (DEFINED PKG_ARGS_SHA) string(SUBSTRING ${PKG_ARGS_SHA} 0 4 pkg_key) cpm_utils_message(DEBUG ${PKG_ARGS_NAME} "No custom key defined, using ${pkg_key} from sha") - elseif (DEFINED git_version) - set(pkg_key ${git_version}) + elseif(DEFINED PKG_ARGS_GIT_VERSION) + set(pkg_key ${PKG_ARGS_GIT_VERSION}) cpm_utils_message(DEBUG ${PKG_ARGS_NAME} "No custom key defined, using ${pkg_key}") elseif (DEFINED PKG_ARGS_TAG) set(pkg_key ${PKG_ARGS_TAG}) cpm_utils_message(DEBUG ${PKG_ARGS_NAME} "No custom key defined, using ${pkg_key}") + elseif (DEFINED PKG_ARGS_VERSION) + set(pkg_key ${PKG_ARGS_VERSION}) + cpm_utils_message(DEBUG ${PKG_ARGS_NAME} + "No custom key defined, using ${pkg_key}") else() cpm_utils_message(WARNING ${PKG_ARGS_NAME} "Could not determine cache key, using CPM defaults") @@ -172,25 +395,55 @@ function(AddPackage) if (DEFINED hash_url) set(outfile ${CMAKE_CURRENT_BINARY_DIR}/${PKG_ARGS_NAME}.hash) - file(DOWNLOAD ${hash_url} ${outfile}) - file(READ ${outfile} pkg_hash_tmp) - file(REMOVE ${outfile}) + # TODO(crueter): This is kind of a bad solution + # because "technically" the hash is invalidated each week + # but it works for now kjsdnfkjdnfjksdn + string(TOLOWER ${PKG_ARGS_NAME} lowername) + if (NOT EXISTS ${outfile} AND NOT EXISTS ${CPM_SOURCE_CACHE}/${lowername}/${pkg_key}) + file(DOWNLOAD ${hash_url} ${outfile}) + endif() - set(pkg_hash "${hash_algo}=${pkg_hash_tmp}") + if (EXISTS ${outfile}) + file(READ ${outfile} pkg_hash_tmp) + endif() + + if (DEFINED ${pkg_hash_tmp}) + set(pkg_hash "${hash_algo}=${pkg_hash_tmp}") + endif() endif() - if (NOT CPMUTIL_DEFAULT_SYSTEM) - set(CPM_USE_LOCAL_PACKAGES OFF) - elseif (DEFINED PKG_ARGS_SYSTEM_PACKAGE) - set(CPM_USE_LOCAL_PACKAGES ${PKG_ARGS_SYSTEM_PACKAGE}) - elseif (DEFINED PKG_ARGS_BUNDLED_PACKAGE) + macro(set_precedence local force) + set(CPM_USE_LOCAL_PACKAGES ${local}) + set(CPM_LOCAL_PACKAGES_ONLY ${force}) + endmacro() + + #[[ + Precedence: + - package_FORCE_SYSTEM + - package_FORCE_BUNDLED + - CPMUTIL_FORCE_SYSTEM + - CPMUTIL_FORCE_BUNDLED + - BUNDLED_PACKAGE + - default to allow local + ]]# + if (${PKG_ARGS_NAME}_FORCE_SYSTEM) + set_precedence(ON ON) + elseif (${PKG_ARGS_NAME}_FORCE_BUNDLED) + set_precedence(OFF OFF) + elseif (CPMUTIL_FORCE_SYSTEM) + set_precedence(ON ON) + elseif(CPMUTIL_FORCE_BUNDLED) + set_precedence(OFF OFF) + elseif (DEFINED PKG_ARGS_BUNDLED_PACKAGE AND NOT PKG_ARGS_BUNDLED_PACKAGE STREQUAL "unset") if (PKG_ARGS_BUNDLED_PACKAGE) - set(CPM_USE_LOCAL_PACKAGES OFF) + set(local OFF) else() - set(CPM_USE_LOCAL_PACKAGES ON) + set(local ON) endif() + + set_precedence(${local} OFF) else() - set(CPM_USE_LOCAL_PACKAGES ON) + set_precedence(ON OFF) endif() CPMAddPackage( @@ -204,6 +457,7 @@ function(AddPackage) OPTIONS ${PKG_ARGS_OPTIONS} PATCHES ${PKG_ARGS_PATCHES} + EXCLUDE_FROM_ALL ON ${PKG_ARGS_UNPARSED_ARGUMENTS} ) @@ -215,12 +469,15 @@ function(AddPackage) if (DEFINED PKG_ARGS_SHA) set_property(GLOBAL APPEND PROPERTY CPM_PACKAGE_SHAS ${PKG_ARGS_SHA}) - elseif(DEFINED git_version) - set_property(GLOBAL APPEND PROPERTY CPM_PACKAGE_SHAS - ${git_version}) + elseif (DEFINED PKG_ARGS_GIT_VERSION) + set_property(GLOBAL APPEND PROPERTY CPM_PACKAGE_SHAS + ${PKG_ARGS_GIT_VERSION}) elseif (DEFINED PKG_ARGS_TAG) set_property(GLOBAL APPEND PROPERTY CPM_PACKAGE_SHAS ${PKG_ARGS_TAG}) + elseif(DEFINED PKG_ARGS_VERSION) + set_property(GLOBAL APPEND PROPERTY CPM_PACKAGE_SHAS + ${PKG_ARGS_VERSION}) else() cpm_utils_message(WARNING ${PKG_ARGS_NAME} "Package has no specified sha, tag, or version") @@ -246,3 +503,114 @@ function(AddPackage) PARENT_SCOPE) endfunction() + +function(add_ci_package key) + set(ARTIFACT ${ARTIFACT_NAME}-${key}-${ARTIFACT_VERSION}.${ARTIFACT_EXT}) + + AddPackage( + NAME ${ARTIFACT_PACKAGE} + REPO ${ARTIFACT_REPO} + TAG v${ARTIFACT_VERSION} + VERSION ${ARTIFACT_VERSION} + ARTIFACT ${ARTIFACT} + + KEY ${key} + HASH_SUFFIX sha512sum + BUNDLED_PACKAGE ON + ) + + set(ARTIFACT_DIR ${${ARTIFACT_PACKAGE}_SOURCE_DIR} PARENT_SCOPE) +endfunction() + +# TODO(crueter): we could do an AddMultiArchPackage, multiplatformpackage? +# name is the artifact name, package is for find_package override +function(AddCIPackage) + set(oneValueArgs + VERSION + NAME + REPO + PACKAGE + EXTENSION + MIN_VERSION + DISABLED_PLATFORMS + CMAKE_FILENAME + ) + + cmake_parse_arguments(PKG_ARGS "" "${oneValueArgs}" "" ${ARGN}) + + if(NOT DEFINED PKG_ARGS_VERSION) + message(FATAL_ERROR "[CPMUtil] VERSION is required") + endif() + if(NOT DEFINED PKG_ARGS_NAME) + message(FATAL_ERROR "[CPMUtil] NAME is required") + endif() + if(NOT DEFINED PKG_ARGS_REPO) + message(FATAL_ERROR "[CPMUtil] REPO is required") + endif() + if(NOT DEFINED PKG_ARGS_PACKAGE) + message(FATAL_ERROR "[CPMUtil] PACKAGE is required") + endif() + + if (NOT DEFINED PKG_ARGS_CMAKE_FILENAME) + set(ARTIFACT_CMAKE ${PKG_ARGS_NAME}) + else() + set(ARTIFACT_CMAKE ${PKG_ARGS_CMAKE_FILENAME}) + endif() + + if(NOT DEFINED PKG_ARGS_EXTENSION) + set(ARTIFACT_EXT "tar.zst") + else() + set(ARTIFACT_EXT ${PKG_ARGS_EXTENSION}) + endif() + + if (DEFINED PKG_ARGS_MIN_VERSION) + set(ARTIFACT_MIN_VERSION ${PKG_ARGS_MIN_VERSION}) + endif() + + if (DEFINED PKG_ARGS_DISABLED_PLATFORMS) + set(DISABLED_PLATFORMS ${PKG_ARGS_DISABLED_PLATFORMS}) + endif() + + # this is mildly annoying + set(ARTIFACT_VERSION ${PKG_ARGS_VERSION}) + set(ARTIFACT_NAME ${PKG_ARGS_NAME}) + set(ARTIFACT_REPO ${PKG_ARGS_REPO}) + set(ARTIFACT_PACKAGE ${PKG_ARGS_PACKAGE}) + + if ((MSVC AND ARCHITECTURE_x86_64) AND NOT "windows-amd64" IN_LIST DISABLED_PLATFORMS) + add_ci_package(windows-amd64) + endif() + + if ((MSVC AND ARCHITECTURE_arm64) AND NOT "windows-arm64" IN_LIST DISABLED_PLATFORMS) + add_ci_package(windows-arm64) + endif() + + if (ANDROID AND NOT "android" IN_LIST DISABLED_PLATFORMS) + add_ci_package(android) + endif() + + if(PLATFORM_SUN AND NOT "solaris" IN_LIST DISABLED_PLATFORMS) + add_ci_package(solaris) + endif() + + if(PLATFORM_FREEBSD AND NOT "freebsd" IN_LIST DISABLED_PLATFORMS) + add_ci_package(freebsd) + endif() + + if((PLATFORM_LINUX AND ARCHITECTURE_x86_64) AND NOT "linux" IN_LIST DISABLED_PLATFORMS) + add_ci_package(linux) + endif() + + if((PLATFORM_LINUX AND ARCHITECTURE_arm64) AND NOT "linux-aarch64" IN_LIST DISABLED_PLATFORMS) + add_ci_package(linux-aarch64) + endif() + + 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() +endfunction() diff --git a/CMakeModules/DownloadExternals.cmake b/CMakeModules/DownloadExternals.cmake index 3651781f93..6c4afc03be 100644 --- a/CMakeModules/DownloadExternals.cmake +++ b/CMakeModules/DownloadExternals.cmake @@ -11,10 +11,17 @@ function(download_bundled_external remote_path lib_name cpm_key prefix_var versi set(package_repo "no_platform") set(package_extension "no_platform") + # TODO(crueter): Need to convert ffmpeg to a CI. if (WIN32 OR FORCE_WIN_ARCHIVES) - set(CACHE_KEY "windows") - set(package_repo "ext-windows-bin/raw/master/") - set(package_extension ".7z") + if (ARCHITECTURE_arm64) + set(CACHE_KEY "windows") + set(package_repo "ext-windows-arm64-bin/raw/master/") + set(package_extension ".zip") + elseif(ARCHITECTURE_x86_64) + set(CACHE_KEY "windows") + set(package_repo "ext-windows-bin/raw/master/") + set(package_extension ".7z") + endif() elseif (${CMAKE_SYSTEM_NAME} STREQUAL "Linux") set(CACHE_KEY "linux") set(package_repo "ext-linux-bin/raw/master/") @@ -29,6 +36,7 @@ function(download_bundled_external remote_path lib_name cpm_key prefix_var versi set(package_url "${package_base_url}${package_repo}") set(full_url ${package_url}${remote_path}${lib_name}${package_extension}) + # TODO(crueter): DELETE THIS ENTIRELY, GLORY BE TO THE CI! AddPackage( NAME ${cpm_key} VERSION ${version} @@ -43,18 +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) - - # TODO(crueter): separate handling for arm64 - set(SDL2_VER "SDL2-2.32.8") - download_bundled_external("sdl2/" ${SDL2_VER} "sdl2-bundled" "" 2.32.8) - 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/CMakeModules/FindSPIRV-Tools.cmake b/CMakeModules/FindSPIRV-Tools.cmake new file mode 100644 index 0000000000..aef74df5d9 --- /dev/null +++ b/CMakeModules/FindSPIRV-Tools.cmake @@ -0,0 +1,19 @@ +# SPDX-FileCopyrightText: 2022 yuzu Emulator Project +# SPDX-License-Identifier: GPL-2.0-or-later + +include(FindPackageHandleStandardArgs) + +find_package(PkgConfig QUIET) +pkg_search_module(SPIRV-Tools QUIET IMPORTED_TARGET SPIRV-Tools) +find_package_handle_standard_args(SPIRV-Tools + REQUIRED_VARS SPIRV-Tools_LINK_LIBRARIES + VERSION_VAR SPIRV-Tools_VERSION +) + +if (SPIRV-Tools_FOUND AND NOT TARGET SPIRV-Tools::SPIRV-Tools) + if (TARGET SPIRV-Tools) + add_library(SPIRV-Tools::SPIRV-Tools ALIAS SPIRV-Tools) + else() + add_library(SPIRV-Tools::SPIRV-Tools ALIAS PkgConfig::SPIRV-Tools) + endif() +endif() diff --git a/CMakeModules/Findzstd.cmake b/CMakeModules/Findzstd.cmake index ae3ea08653..bf38d20fbf 100644 --- a/CMakeModules/Findzstd.cmake +++ b/CMakeModules/Findzstd.cmake @@ -3,17 +3,12 @@ include(FindPackageHandleStandardArgs) -find_package(zstd QUIET CONFIG) -if (zstd_CONSIDERED_CONFIGS) - find_package_handle_standard_args(zstd CONFIG_MODE) -else() - find_package(PkgConfig QUIET) - pkg_search_module(ZSTD QUIET IMPORTED_TARGET libzstd) - find_package_handle_standard_args(zstd - REQUIRED_VARS ZSTD_LINK_LIBRARIES - VERSION_VAR ZSTD_VERSION - ) -endif() +find_package(PkgConfig QUIET) +pkg_search_module(ZSTD QUIET IMPORTED_TARGET libzstd) +find_package_handle_standard_args(zstd + REQUIRED_VARS ZSTD_LINK_LIBRARIES + VERSION_VAR ZSTD_VERSION +) if (zstd_FOUND AND NOT TARGET zstd::zstd) if (TARGET zstd::libzstd_shared) diff --git a/CMakeModules/GenerateSCMRev.cmake b/CMakeModules/GenerateSCMRev.cmake index 3b8e996751..2d7081b7db 100644 --- a/CMakeModules/GenerateSCMRev.cmake +++ b/CMakeModules/GenerateSCMRev.cmake @@ -1,38 +1,37 @@ +# SPDX-FileCopyrightText: Copyright 2025 Eden Emulator Project +# SPDX-License-Identifier: GPL-3.0-or-later + # SPDX-FileCopyrightText: 2019 yuzu Emulator Project # SPDX-License-Identifier: GPL-2.0-or-later -# Gets a UTC timestamp and sets the provided variable to it +# generate git/build information +include(GetSCMRev) + function(get_timestamp _var) string(TIMESTAMP timestamp UTC) set(${_var} "${timestamp}" PARENT_SCOPE) endfunction() -# generate git/build information -include(GetGitRevisionDescription) -if(NOT GIT_REF_SPEC) - get_git_head_revision(GIT_REF_SPEC GIT_REV) -endif() -if(NOT GIT_DESC) - git_describe(GIT_DESC --always --long --dirty) -endif() -if (NOT GIT_BRANCH) - git_branch_name(GIT_BRANCH) -endif() get_timestamp(BUILD_DATE) -git_get_exact_tag(GIT_TAG --tags) -if (GIT_TAG MATCHES "NOTFOUND") - set(BUILD_VERSION "${GIT_DESC}") - set(IS_DEV_BUILD true) -else() - set(BUILD_VERSION ${GIT_TAG}) +if (DEFINED GIT_RELEASE) + set(BUILD_VERSION "${GIT_TAG}") + set(GIT_REFSPEC "${GIT_RELEASE}") set(IS_DEV_BUILD false) +else() + string(SUBSTRING ${GIT_COMMIT} 0 10 BUILD_VERSION) + set(BUILD_VERSION "${BUILD_VERSION}-${GIT_REFSPEC}") + set(IS_DEV_BUILD true) endif() +set(GIT_DESC ${BUILD_VERSION}) + # Generate cpp with Git revision from template # Also if this is a CI build, add the build name (ie: Nightly, Canary) to the scm_rev file as well set(REPO_NAME "Eden") -set(BUILD_ID ${GIT_BRANCH}) +set(BUILD_ID ${GIT_REFSPEC}) set(BUILD_FULLNAME "${REPO_NAME} ${BUILD_VERSION} ") +set(CXX_COMPILER "${CMAKE_CXX_COMPILER_ID} ${CMAKE_CXX_COMPILER_VERSION}") + configure_file(scm_rev.cpp.in scm_rev.cpp @ONLY) diff --git a/CMakeModules/GetSCMRev.cmake b/CMakeModules/GetSCMRev.cmake new file mode 100644 index 0000000000..ee5ce6a91c --- /dev/null +++ b/CMakeModules/GetSCMRev.cmake @@ -0,0 +1,49 @@ +# SPDX-FileCopyrightText: 2025 crueter +# SPDX-License-Identifier: GPL-3.0-or-later + +include(GetGitRevisionDescription) + +function(trim var) + string(REGEX REPLACE "\n" "" new "${${var}}") + set(${var} ${new} PARENT_SCOPE) +endfunction() + +set(TAG_FILE ${CMAKE_SOURCE_DIR}/GIT-TAG) +set(REF_FILE ${CMAKE_SOURCE_DIR}/GIT-REFSPEC) +set(COMMIT_FILE ${CMAKE_SOURCE_DIR}/GIT-COMMIT) +set(RELEASE_FILE ${CMAKE_SOURCE_DIR}/GIT-RELEASE) + +if (EXISTS ${REF_FILE} AND EXISTS ${COMMIT_FILE}) + file(READ ${REF_FILE} GIT_REFSPEC) + file(READ ${COMMIT_FILE} GIT_COMMIT) +else() + get_git_head_revision(GIT_REFSPEC GIT_COMMIT) + git_branch_name(GIT_REFSPEC) + if (GIT_REFSPEC MATCHES "NOTFOUND") + set(GIT_REFSPEC 1.0.0) + set(GIT_COMMIT stable) + endif() +endif() + +if (EXISTS ${TAG_FILE}) + file(READ ${TAG_FILE} GIT_TAG) +else() + git_describe(GIT_TAG --tags --abbrev=0) + if (GIT_TAG MATCHES "NOTFOUND") + set(GIT_TAG "${GIT_REFSPEC}") + endif() +endif() + +if (EXISTS ${RELEASE_FILE}) + file(READ ${RELEASE_FILE} GIT_RELEASE) + trim(GIT_RELEASE) + message(STATUS "Git release: ${GIT_RELEASE}") +endif() + +trim(GIT_REFSPEC) +trim(GIT_COMMIT) +trim(GIT_TAG) + +message(STATUS "Git commit: ${GIT_COMMIT}") +message(STATUS "Git tag: ${GIT_TAG}") +message(STATUS "Git refspec: ${GIT_REFSPEC}") diff --git a/CMakeModules/WindowsCopyFiles.cmake b/CMakeModules/WindowsCopyFiles.cmake index 08b598365d..a4afeb77bf 100644 --- a/CMakeModules/WindowsCopyFiles.cmake +++ b/CMakeModules/WindowsCopyFiles.cmake @@ -1,3 +1,6 @@ +# SPDX-FileCopyrightText: Copyright 2025 Eden Emulator Project +# SPDX-License-Identifier: GPL-3.0-or-later + # SPDX-FileCopyrightText: 2018 yuzu Emulator Project # SPDX-License-Identifier: GPL-2.0-or-later @@ -12,16 +15,25 @@ set(__windows_copy_files YES) # Any number of files to copy from SOURCE_DIR to DEST_DIR can be specified after DEST_DIR. # This copying happens post-build. -function(windows_copy_files TARGET SOURCE_DIR DEST_DIR) - # windows commandline expects the / to be \ so switch them - string(REPLACE "/" "\\\\" SOURCE_DIR ${SOURCE_DIR}) - string(REPLACE "/" "\\\\" DEST_DIR ${DEST_DIR}) +if (CMAKE_HOST_SYSTEM_NAME STREQUAL "Windows") + function(windows_copy_files TARGET SOURCE_DIR DEST_DIR) + # windows commandline expects the / to be \ so switch them + string(REPLACE "/" "\\\\" SOURCE_DIR ${SOURCE_DIR}) + string(REPLACE "/" "\\\\" DEST_DIR ${DEST_DIR}) - # /NJH /NJS /NDL /NFL /NC /NS /NP - Silence any output - # cmake adds an extra check for command success which doesn't work too well with robocopy - # so trick it into thinking the command was successful with the || cmd /c "exit /b 0" - add_custom_command(TARGET ${TARGET} POST_BUILD - COMMAND ${CMAKE_COMMAND} -E make_directory ${DEST_DIR} - COMMAND robocopy ${SOURCE_DIR} ${DEST_DIR} ${ARGN} /NJH /NJS /NDL /NFL /NC /NS /NP || cmd /c "exit /b 0" - ) -endfunction() + # /NJH /NJS /NDL /NFL /NC /NS /NP - Silence any output + # cmake adds an extra check for command success which doesn't work too well with robocopy + # so trick it into thinking the command was successful with the || cmd /c "exit /b 0" + add_custom_command(TARGET ${TARGET} POST_BUILD + COMMAND ${CMAKE_COMMAND} -E make_directory ${DEST_DIR} + COMMAND robocopy ${SOURCE_DIR} ${DEST_DIR} ${ARGN} /NJH /NJS /NDL /NFL /NC /NS /NP || cmd /c "exit /b 0" + ) + endfunction() +else() + function(windows_copy_files TARGET SOURCE_DIR DEST_DIR) + add_custom_command(TARGET ${TARGET} POST_BUILD + COMMAND ${CMAKE_COMMAND} -E make_directory ${DEST_DIR} + COMMAND cp -ra ${SOURCE_DIR}/. ${DEST_DIR} + ) + endfunction() +endif() diff --git a/README.md b/README.md index 6bdd0c0f03..1a4f017576 100644 --- a/README.md +++ b/README.md @@ -51,17 +51,17 @@ Check out our [website](https://eden-emu.dev) for the latest news on exciting fe ## Development Most of the development happens on our Git server. It is also where [our central repository](https://git.eden-emu.dev/eden-emu/eden) is hosted. For development discussions, please join us on [Discord](https://discord.gg/kXAmGCXBGD) or [Revolt](https://rvlt.gg/qKgFEAbH). +You can also follow us on [X (Twitter)](https://x.com/edenemuofficial) for updates and announcements. If you would like to contribute, we are open to new developers and pull requests. Please ensure that your work is of a high standard and properly documented. You can also contact any of the developers on Discord or Revolt to learn more about the current state of the emulator. +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 -* **Windows**: [Windows Building Guide](./docs/build/Windows.md) -* **Linux**: [Linux Building Guide](./docs/build/Linux.md) -* **Android**: [Android Building Guide](./docs/build/Android.md) -* **Solaris**: [Solaris Building Guide](./docs/build/Solaris.md) -* **FreeBSD**: [FreeBSD Building Guide](./docs/build/FreeBSD.md) -* **macOS**: [macOS Building Guide](./docs/build/macOS.md) +See the [General Build Guide](docs/Build.md) ## Download diff --git a/cpmfile.json b/cpmfile.json new file mode 100644 index 0000000000..f1fd5ce1cf --- /dev/null +++ b/cpmfile.json @@ -0,0 +1,193 @@ +{ + "openssl": { + "ci": true, + "package": "OpenSSL", + "name": "openssl", + "repo": "crueter-ci/OpenSSL", + "version": "3.5.3", + "min_version": "1.1.1" + }, + "boost": { + "package": "Boost", + "repo": "boostorg/boost", + "tag": "boost-%VERSION%", + "artifact": "%TAG%-cmake.tar.xz", + "hash": "4fb7f6fde92762305aad8754d7643cd918dd1f3f67e104e9ab385b18c73178d72a17321354eb203b790b6702f2cf6d725a5d6e2dfbc63b1e35f9eb59fb42ece9", + "git_version": "1.89.0", + "version": "1.57", + "patches": [ + "0001-clang-cl.patch", + "0002-use-marmasm.patch", + "0003-armasm-options.patch" + ] + }, + "fmt": { + "repo": "fmtlib/fmt", + "sha": "40626af88b", + "hash": "d59f06c24339f223de4ec2afeba1c67b5835a0f350a1ffa86242a72fc3e616a6b8b21798355428d4200c75287308b66634619ffa0b52ba5bd74cc01772ea1a8a", + "version": "8", + "options": [ + "FMT_INSTALL OFF" + ] + }, + "lz4": { + "name": "lz4", + "repo": "lz4/lz4", + "sha": "ebb370ca83", + "hash": "43600e87b35256005c0f2498fa56a77de6783937ba4cfce38c099f27c03188d097863e8a50c5779ca0a7c63c29c4f7ed0ae526ec798c1fd2e3736861b62e0a37", + "source_subdir": "build/cmake" + }, + "nlohmann": { + "package": "nlohmann_json", + "repo": "nlohmann/json", + "sha": "55f93686c0", + "hash": "b739749b066800e21154506ea150d2c5cbce8a45344177f46f884547a1399d26753166fd0df8135269ce28cf223552b1b65cd625b88c844d54753f2434900486", + "version": "3.8" + }, + "zlib": { + "package": "ZLIB", + "repo": "madler/zlib", + "sha": "51b7f2abda", + "hash": "16eaf1f3752489d12fd9ce30f7b5f7cbd5cb8ff53d617005a9847ae72d937f65e01e68be747f62d7ac19fd0c9aeba9956e60f16d6b465c5fdc2f3d08b4db2e6c", + "version": "1.2", + "options": [ + "ZLIB_BUILD_SHARED OFF", + "ZLIB_INSTALL OFF" + ] + }, + "zstd": { + "repo": "facebook/zstd", + "sha": "f8745da6ff", + "hash": "3037007f990040fe32573b46f9bef8762fd5dbeeb07ffffcbfeba51ec98167edae39bb9c87f9299efcd61c4e467c5e84f7c19f0df7799bc1fc04864a278792ee", + "version": "1.5", + "source_subdir": "build/cmake", + "find_args": "MODULE", + "options": [ + "ZSTD_BUILD_SHARED OFF" + ] + }, + "catch2": { + "package": "Catch2", + "repo": "catchorg/Catch2", + "sha": "644821ce28", + "hash": "f8795f98acf2c02c0db8e734cc866d5caebab4b4a306e93598b97cb3c0c728dafe8283dce27ffe8d42460e5ae7302f3f32e7e274a7f991b73511ac88eef21b1f", + "version": "3.0.1" + }, + "enet": { + "repo": "lsalzman/enet", + "sha": "2662c0de09", + "hash": "3de1beb4fa3d6b1e03eda8dd1e7580694f854af3ed3975dcdabfdcdf76b97f322b9734d35ea7f185855bb490d957842b938b26da4dd2dfded509390f8d2794dd", + "version": "1.3", + "find_args": "MODULE" + }, + "opus": { + "package": "Opus", + "repo": "crueter/opus", + "sha": "ab19c44fad", + "hash": "79d0d015b19e74ce6076197fc32b86fe91d724a0b5a79e86adfc4bdcb946ece384e252adbbf742b74d03040913b70bb0e9556eafa59ef20e42d2f3f4d6f2859a", + "version": "1.3", + "find_args": "MODULE", + "options": [ + "OPUS_PRESUME_NEON ON" + ] + }, + "vulkan-utility-headers": { + "package": "VulkanUtilityLibraries", + "repo": "scripts/VulkanUtilityHeaders", + "tag": "1.4.326", + "artifact": "VulkanUtilityHeaders.tar.zst", + "git_host": "git.crueter.xyz", + "hash": "5924629755cb1605c4aa4eee20ef7957a9dd8d61e4df548be656d98054f2730c4109693c1bd35811f401f4705d2ccff9fc849be32b0d8480bc3f73541a5e0964" + }, + "spirv-tools": { + "package": "SPIRV-Tools", + "repo": "KhronosGroup/SPIRV-Tools", + "sha": "40eb301f32", + "hash": "58d0fb1047d69373cf24c73e6f78c73a72a6cca3b4df1d9f083b9dcc0962745ef154abf3dbe9b3623b835be20c6ec769431cf11733349f45e7568b3525f707aa", + "find_args": "MODULE", + "options": [ + "SPIRV_SKIP_EXECUTABLES ON" + ] + }, + "spirv-headers": { + "package": "SPIRV-Headers", + "repo": "KhronosGroup/SPIRV-Headers", + "sha": "4e209d3d7e", + "hash": "f48bbe18341ed55ea0fe280dbbbc0a44bf222278de6e716e143ca1e95ca320b06d4d23d6583fbf8d03e1428f3dac8fa00e5b82ddcd6b425e6236d85af09550a4", + "options": [ + "SPIRV_WERROR OFF" + ] + }, + "mbedtls": { + "package": "MbedTLS", + "repo": "Mbed-TLS/mbedtls", + "tag": "mbedtls-%VERSION%", + "hash": "6671fb8fcaa832e5b115dfdce8f78baa6a4aea71f5c89a640583634cdee27aefe3bf4be075744da91f7c3ae5ea4e0c765c8fc3937b5cfd9ea73d87ef496524da", + "version": "3", + "git_version": "3.6.4", + "artifact": "%TAG%.tar.bz2" + }, + "cubeb": { + "repo": "mozilla/cubeb", + "sha": "fa02160712", + "hash": "82d808356752e4064de48c8fecbe7856715ade1e76b53937116bf07129fc1cc5b3de5e4b408de3cd000187ba8dc32ca4109661cb7e0355a52e54bd81b9be1c61", + "find_args": "CONFIG", + "options": [ + "USE_SANITIZERS OFF", + "BUILD_TESTS OFF", + "BUILD_TOOLS OFF", + "BUNDLE_SPEEX ON" + ] + }, + "boost_headers": { + "repo": "boostorg/headers", + "sha": "95930ca8f5", + "hash": "d1dece16f3b209109de02123c537bfe1adf07a62b16c166367e7e5d62e0f7c323bf804c89b3192dd6871bc58a9d879d25a1cc3f7b9da0e497cf266f165816e2a", + "bundled": true + }, + "discord-rpc": { + "repo": "eden-emulator/discord-rpc", + "sha": "1cf7772bb6", + "hash": "e9b35e6f2c075823257bcd59f06fe7bb2ccce1976f44818d2e28810435ef79c712a3c4f20f40da41f691342a4058cf86b078eb7f9d9e4dae83c0547c21ec4f97" + }, + "simpleini": { + "package": "SimpleIni", + "repo": "brofield/simpleini", + "sha": "09c21bda1d", + "hash": "99779ca9b6e040d36558cadf484f9ffdab5b47bcc8fc72e4d33639d1d60c0ceb4410d335ba445d72a4324e455167fd6769d99b459943aa135bec085dff2d4b7c", + "find_args": "MODULE" + }, + "sdl2_generic": { + "package": "SDL2", + "repo": "libsdl-org/SDL", + "sha": "54772f345a", + "hash": "2a68a0e01c390043aa9d9df63d8a20a52076c88bb460ac4e0f33194ca7d9bc8fadbbcc04e7506872ac4b6354a73fbc267c036f82200da59465789b87c7d9e3a4", + "key": "generic", + "bundled": true + }, + "sdl2_steamdeck": { + "package": "SDL2", + "repo": "libsdl-org/SDL", + "sha": "cc016b0046", + "hash": "34d5ef58da6a4f9efa6689c82f67badcbd741f5a4f562a9c2c30828fa839830fb07681c5dc6a7851520e261c8405a416ac0a2c2513b51984fb3b4fa4dcb3e20b", + "key": "steamdeck", + "bundled": true + }, + "sdl2": { + "ci": true, + "package": "SDL2", + "name": "SDL2", + "repo": "crueter-ci/SDL2", + "version": "2.32.8", + "min_version": "2.26.4", + "cmake_filename": "sdl2" + }, + "llvm-mingw": { + "repo": "misc/llvm-mingw", + "git_host": "git.crueter.xyz", + "tag": "20250828", + "version": "20250828", + "artifact": "clang-rt-builtins.tar.zst", + "hash": "d902392caf94e84f223766e2cc51ca5fab6cae36ab8dc6ef9ef6a683ab1c483bfcfe291ef0bd38ab16a4ecc4078344fa8af72da2f225ab4c378dee23f6186181" + } +} diff --git a/dist/org.eden_emu.eden.desktop b/dist/dev.eden_emu.eden.desktop similarity index 95% rename from dist/org.eden_emu.eden.desktop rename to dist/dev.eden_emu.eden.desktop index d012ab6d07..5d2d7cd8c5 100644 --- a/dist/org.eden_emu.eden.desktop +++ b/dist/dev.eden_emu.eden.desktop @@ -10,7 +10,7 @@ Type=Application Name=Eden GenericName=Switch Emulator Comment=Nintendo Switch video game console emulator -Icon=org.eden_emu.eden +Icon=dev.eden_emu.eden TryExec=eden Exec=eden %f Categories=Game;Emulator;Qt; diff --git a/dist/org.eden_emu.eden.metainfo.xml b/dist/dev.eden_emu.eden.metainfo.xml similarity index 100% rename from dist/org.eden_emu.eden.metainfo.xml rename to dist/dev.eden_emu.eden.metainfo.xml diff --git a/dist/org.eden_emu.eden.svg b/dist/dev.eden_emu.eden.svg similarity index 100% rename from dist/org.eden_emu.eden.svg rename to dist/dev.eden_emu.eden.svg diff --git a/dist/org.eden_emu.eden.xml b/dist/dev.eden_emu.eden.xml similarity index 100% rename from dist/org.eden_emu.eden.xml rename to dist/dev.eden_emu.eden.xml diff --git a/dist/icons/controller/applet_dual_joycon.png b/dist/icons/controller/applet_dual_joycon.png index 32e0a04ae5..f1701453a9 100644 Binary files a/dist/icons/controller/applet_dual_joycon.png and b/dist/icons/controller/applet_dual_joycon.png differ diff --git a/dist/icons/controller/applet_dual_joycon_dark.png b/dist/icons/controller/applet_dual_joycon_dark.png index 6adc663561..da9367b5f3 100644 Binary files a/dist/icons/controller/applet_dual_joycon_dark.png and b/dist/icons/controller/applet_dual_joycon_dark.png differ diff --git a/dist/icons/controller/applet_dual_joycon_dark_disabled.png b/dist/icons/controller/applet_dual_joycon_dark_disabled.png index 208603ee78..a4d38b633d 100644 Binary files a/dist/icons/controller/applet_dual_joycon_dark_disabled.png and b/dist/icons/controller/applet_dual_joycon_dark_disabled.png differ diff --git a/dist/icons/controller/applet_dual_joycon_disabled.png b/dist/icons/controller/applet_dual_joycon_disabled.png index 43950618da..f3cb35bbdd 100644 Binary files a/dist/icons/controller/applet_dual_joycon_disabled.png and b/dist/icons/controller/applet_dual_joycon_disabled.png differ diff --git a/dist/icons/controller/applet_dual_joycon_midnight.png b/dist/icons/controller/applet_dual_joycon_midnight.png index c7edea8a35..e3f42bb99b 100644 Binary files a/dist/icons/controller/applet_dual_joycon_midnight.png and b/dist/icons/controller/applet_dual_joycon_midnight.png differ diff --git a/dist/icons/controller/applet_dual_joycon_midnight_disabled.png b/dist/icons/controller/applet_dual_joycon_midnight_disabled.png index ee1aafc858..ac5cf51179 100644 Binary files a/dist/icons/controller/applet_dual_joycon_midnight_disabled.png and b/dist/icons/controller/applet_dual_joycon_midnight_disabled.png differ diff --git a/dist/icons/controller/applet_handheld.png b/dist/icons/controller/applet_handheld.png index 7f8dd22275..c16361b913 100644 Binary files a/dist/icons/controller/applet_handheld.png and b/dist/icons/controller/applet_handheld.png differ diff --git a/dist/icons/controller/applet_handheld_dark.png b/dist/icons/controller/applet_handheld_dark.png index 41f6d7aea9..a994041fd5 100644 Binary files a/dist/icons/controller/applet_handheld_dark.png and b/dist/icons/controller/applet_handheld_dark.png differ diff --git a/dist/icons/controller/applet_handheld_dark_disabled.png b/dist/icons/controller/applet_handheld_dark_disabled.png index 5a136ddd1d..6a083a60e1 100644 Binary files a/dist/icons/controller/applet_handheld_dark_disabled.png and b/dist/icons/controller/applet_handheld_dark_disabled.png differ diff --git a/dist/icons/controller/applet_handheld_disabled.png b/dist/icons/controller/applet_handheld_disabled.png index 53f8ce7adc..1ebda184e9 100644 Binary files a/dist/icons/controller/applet_handheld_disabled.png and b/dist/icons/controller/applet_handheld_disabled.png differ diff --git a/dist/icons/controller/applet_handheld_midnight.png b/dist/icons/controller/applet_handheld_midnight.png index 7188b91545..5183f4bb69 100644 Binary files a/dist/icons/controller/applet_handheld_midnight.png and b/dist/icons/controller/applet_handheld_midnight.png differ diff --git a/dist/icons/controller/applet_handheld_midnight_disabled.png b/dist/icons/controller/applet_handheld_midnight_disabled.png index 6ccfc32536..4021d05a1d 100644 Binary files a/dist/icons/controller/applet_handheld_midnight_disabled.png and b/dist/icons/controller/applet_handheld_midnight_disabled.png differ diff --git a/dist/icons/controller/applet_pro_controller.png b/dist/icons/controller/applet_pro_controller.png index e322588558..d6b49c3be2 100644 Binary files a/dist/icons/controller/applet_pro_controller.png and b/dist/icons/controller/applet_pro_controller.png differ diff --git a/dist/icons/controller/applet_pro_controller_dark.png b/dist/icons/controller/applet_pro_controller_dark.png index c122b7b11e..5f411af617 100644 Binary files a/dist/icons/controller/applet_pro_controller_dark.png and b/dist/icons/controller/applet_pro_controller_dark.png differ diff --git a/dist/icons/controller/applet_pro_controller_midnight.png b/dist/icons/controller/applet_pro_controller_midnight.png index 622e57fa13..1749c68162 100644 Binary files a/dist/icons/controller/applet_pro_controller_midnight.png and b/dist/icons/controller/applet_pro_controller_midnight.png differ diff --git a/dist/icons/controller/applet_single_joycon_left.png b/dist/icons/controller/applet_single_joycon_left.png index 47c44d43a7..e0ab49e6e6 100644 Binary files a/dist/icons/controller/applet_single_joycon_left.png and b/dist/icons/controller/applet_single_joycon_left.png differ diff --git a/dist/icons/controller/applet_single_joycon_left_dark.png b/dist/icons/controller/applet_single_joycon_left_dark.png index 69530b69ce..0ca0661a63 100644 Binary files a/dist/icons/controller/applet_single_joycon_left_dark.png and b/dist/icons/controller/applet_single_joycon_left_dark.png differ diff --git a/dist/icons/controller/applet_single_joycon_left_dark_disabled.png b/dist/icons/controller/applet_single_joycon_left_dark_disabled.png index cfe4b1475c..d602f99f00 100644 Binary files a/dist/icons/controller/applet_single_joycon_left_dark_disabled.png and b/dist/icons/controller/applet_single_joycon_left_dark_disabled.png differ diff --git a/dist/icons/controller/applet_single_joycon_left_disabled.png b/dist/icons/controller/applet_single_joycon_left_disabled.png index c0102dc20c..8014f80093 100644 Binary files a/dist/icons/controller/applet_single_joycon_left_disabled.png and b/dist/icons/controller/applet_single_joycon_left_disabled.png differ diff --git a/dist/icons/controller/applet_single_joycon_left_midnight.png b/dist/icons/controller/applet_single_joycon_left_midnight.png index 56522bccb3..14fad854a6 100644 Binary files a/dist/icons/controller/applet_single_joycon_left_midnight.png and b/dist/icons/controller/applet_single_joycon_left_midnight.png differ diff --git a/dist/icons/controller/applet_single_joycon_left_midnight_disabled.png b/dist/icons/controller/applet_single_joycon_left_midnight_disabled.png index 62434c188d..29acc86547 100644 Binary files a/dist/icons/controller/applet_single_joycon_left_midnight_disabled.png and b/dist/icons/controller/applet_single_joycon_left_midnight_disabled.png differ diff --git a/dist/icons/controller/applet_single_joycon_right.png b/dist/icons/controller/applet_single_joycon_right.png index b0d4fba906..0270668d04 100644 Binary files a/dist/icons/controller/applet_single_joycon_right.png and b/dist/icons/controller/applet_single_joycon_right.png differ diff --git a/dist/icons/controller/applet_single_joycon_right_dark.png b/dist/icons/controller/applet_single_joycon_right_dark.png index af26cce4bb..5e49cad49e 100644 Binary files a/dist/icons/controller/applet_single_joycon_right_dark.png and b/dist/icons/controller/applet_single_joycon_right_dark.png differ diff --git a/dist/icons/controller/applet_single_joycon_right_dark_disabled.png b/dist/icons/controller/applet_single_joycon_right_dark_disabled.png index b33efab42a..93a7d6cc92 100644 Binary files a/dist/icons/controller/applet_single_joycon_right_dark_disabled.png and b/dist/icons/controller/applet_single_joycon_right_dark_disabled.png differ diff --git a/dist/icons/controller/applet_single_joycon_right_disabled.png b/dist/icons/controller/applet_single_joycon_right_disabled.png index 01ca383226..caee64b747 100644 Binary files a/dist/icons/controller/applet_single_joycon_right_disabled.png and b/dist/icons/controller/applet_single_joycon_right_disabled.png differ diff --git a/dist/icons/controller/applet_single_joycon_right_midnight.png b/dist/icons/controller/applet_single_joycon_right_midnight.png index 5bf70e21e1..dc3be54eef 100644 Binary files a/dist/icons/controller/applet_single_joycon_right_midnight.png and b/dist/icons/controller/applet_single_joycon_right_midnight.png differ diff --git a/dist/icons/controller/applet_single_joycon_right_midnight_disabled.png b/dist/icons/controller/applet_single_joycon_right_midnight_disabled.png index e6693b0270..9b539dcb69 100644 Binary files a/dist/icons/controller/applet_single_joycon_right_midnight_disabled.png and b/dist/icons/controller/applet_single_joycon_right_midnight_disabled.png differ diff --git a/dist/icons/overlay/arrow_left.png b/dist/icons/overlay/arrow_left.png index a5d4fecfe6..00eaf6f279 100644 Binary files a/dist/icons/overlay/arrow_left.png and b/dist/icons/overlay/arrow_left.png differ diff --git a/dist/icons/overlay/arrow_left_dark.png b/dist/icons/overlay/arrow_left_dark.png index f73672a591..c84e33ead4 100644 Binary files a/dist/icons/overlay/arrow_left_dark.png and b/dist/icons/overlay/arrow_left_dark.png differ diff --git a/dist/icons/overlay/arrow_right.png b/dist/icons/overlay/arrow_right.png index e47ee94bd8..44308c5918 100644 Binary files a/dist/icons/overlay/arrow_right.png and b/dist/icons/overlay/arrow_right.png differ diff --git a/dist/icons/overlay/arrow_right_dark.png b/dist/icons/overlay/arrow_right_dark.png index 91cf83d2c5..7a6e2a62e2 100644 Binary files a/dist/icons/overlay/arrow_right_dark.png and b/dist/icons/overlay/arrow_right_dark.png differ diff --git a/dist/icons/overlay/button_A_dark.png b/dist/icons/overlay/button_A_dark.png index d6b5514fab..20f4869f01 100644 Binary files a/dist/icons/overlay/button_A_dark.png and b/dist/icons/overlay/button_A_dark.png differ diff --git a/dist/icons/overlay/button_B_dark.png b/dist/icons/overlay/button_B_dark.png index 3acbeddcd6..981aadb1d4 100644 Binary files a/dist/icons/overlay/button_B_dark.png and b/dist/icons/overlay/button_B_dark.png differ diff --git a/dist/icons/overlay/button_L.png b/dist/icons/overlay/button_L.png index 77838369ee..5acf8a242e 100644 Binary files a/dist/icons/overlay/button_L.png and b/dist/icons/overlay/button_L.png differ diff --git a/dist/icons/overlay/button_L_dark.png b/dist/icons/overlay/button_L_dark.png index c96a5e8681..59a08da1bb 100644 Binary files a/dist/icons/overlay/button_L_dark.png and b/dist/icons/overlay/button_L_dark.png differ diff --git a/dist/icons/overlay/button_R.png b/dist/icons/overlay/button_R.png index 4e55539544..f4b97b23fb 100644 Binary files a/dist/icons/overlay/button_R.png and b/dist/icons/overlay/button_R.png differ diff --git a/dist/icons/overlay/button_R_dark.png b/dist/icons/overlay/button_R_dark.png index ed13199c4a..c66203ee9b 100644 Binary files a/dist/icons/overlay/button_R_dark.png and b/dist/icons/overlay/button_R_dark.png differ diff --git a/dist/icons/overlay/button_X_dark.png b/dist/icons/overlay/button_X_dark.png index b2c83d0c11..4c80f373bf 100644 Binary files a/dist/icons/overlay/button_X_dark.png and b/dist/icons/overlay/button_X_dark.png differ diff --git a/dist/icons/overlay/button_Y_dark.png b/dist/icons/overlay/button_Y_dark.png index 0f3e4df25f..661eb5b43d 100644 Binary files a/dist/icons/overlay/button_Y_dark.png and b/dist/icons/overlay/button_Y_dark.png differ diff --git a/dist/icons/overlay/button_minus.png b/dist/icons/overlay/button_minus.png index 7b315fe79d..10ec120e95 100644 Binary files a/dist/icons/overlay/button_minus.png and b/dist/icons/overlay/button_minus.png differ diff --git a/dist/icons/overlay/button_minus_dark.png b/dist/icons/overlay/button_minus_dark.png index 6dfcdc1b5f..7d33559b76 100644 Binary files a/dist/icons/overlay/button_minus_dark.png and b/dist/icons/overlay/button_minus_dark.png differ diff --git a/dist/icons/overlay/button_plus.png b/dist/icons/overlay/button_plus.png index 4d8090d7db..fa625fd178 100644 Binary files a/dist/icons/overlay/button_plus.png and b/dist/icons/overlay/button_plus.png differ diff --git a/dist/icons/overlay/button_plus_dark.png b/dist/icons/overlay/button_plus_dark.png index abe8b9c95c..3faf46e033 100644 Binary files a/dist/icons/overlay/button_plus_dark.png and b/dist/icons/overlay/button_plus_dark.png differ diff --git a/dist/icons/overlay/button_press_stick_dark.png b/dist/icons/overlay/button_press_stick_dark.png index 757d0ab292..4953738737 100644 Binary files a/dist/icons/overlay/button_press_stick_dark.png and b/dist/icons/overlay/button_press_stick_dark.png differ diff --git a/dist/icons/overlay/controller_single_joycon_left_a.png b/dist/icons/overlay/controller_single_joycon_left_a.png index e0f5c2ad4f..e4dac234a2 100644 Binary files a/dist/icons/overlay/controller_single_joycon_left_a.png and b/dist/icons/overlay/controller_single_joycon_left_a.png differ diff --git a/dist/icons/overlay/controller_single_joycon_left_a_dark.png b/dist/icons/overlay/controller_single_joycon_left_a_dark.png index 53e04781e6..fa36ee03f9 100644 Binary files a/dist/icons/overlay/controller_single_joycon_left_a_dark.png and b/dist/icons/overlay/controller_single_joycon_left_a_dark.png differ diff --git a/dist/icons/overlay/controller_single_joycon_left_b.png b/dist/icons/overlay/controller_single_joycon_left_b.png index 7429450a33..bafa4847d4 100644 Binary files a/dist/icons/overlay/controller_single_joycon_left_b.png and b/dist/icons/overlay/controller_single_joycon_left_b.png differ diff --git a/dist/icons/overlay/controller_single_joycon_left_b_dark.png b/dist/icons/overlay/controller_single_joycon_left_b_dark.png index 3bd97a8eb6..df06dc4ec6 100644 Binary files a/dist/icons/overlay/controller_single_joycon_left_b_dark.png and b/dist/icons/overlay/controller_single_joycon_left_b_dark.png differ diff --git a/dist/icons/overlay/controller_single_joycon_left_x.png b/dist/icons/overlay/controller_single_joycon_left_x.png index 4615172a33..27a5310424 100644 Binary files a/dist/icons/overlay/controller_single_joycon_left_x.png and b/dist/icons/overlay/controller_single_joycon_left_x.png differ diff --git a/dist/icons/overlay/controller_single_joycon_left_x_dark.png b/dist/icons/overlay/controller_single_joycon_left_x_dark.png index 119e3091af..4074a22f06 100644 Binary files a/dist/icons/overlay/controller_single_joycon_left_x_dark.png and b/dist/icons/overlay/controller_single_joycon_left_x_dark.png differ diff --git a/dist/icons/overlay/controller_single_joycon_left_y.png b/dist/icons/overlay/controller_single_joycon_left_y.png index 24421d8b91..6f53699c50 100644 Binary files a/dist/icons/overlay/controller_single_joycon_left_y.png and b/dist/icons/overlay/controller_single_joycon_left_y.png differ diff --git a/dist/icons/overlay/osk_button_B.png b/dist/icons/overlay/osk_button_B.png index 2664b5923b..b572d5d7b9 100644 Binary files a/dist/icons/overlay/osk_button_B.png and b/dist/icons/overlay/osk_button_B.png differ diff --git a/dist/icons/overlay/osk_button_B_dark.png b/dist/icons/overlay/osk_button_B_dark.png index 1bd3745719..c92c41887c 100644 Binary files a/dist/icons/overlay/osk_button_B_dark.png and b/dist/icons/overlay/osk_button_B_dark.png differ diff --git a/dist/icons/overlay/osk_button_B_dark_disabled.png b/dist/icons/overlay/osk_button_B_dark_disabled.png index 3b88e393cb..df992e6d94 100644 Binary files a/dist/icons/overlay/osk_button_B_dark_disabled.png and b/dist/icons/overlay/osk_button_B_dark_disabled.png differ diff --git a/dist/icons/overlay/osk_button_B_disabled.png b/dist/icons/overlay/osk_button_B_disabled.png index 0f35cd8f26..ead1fa0423 100644 Binary files a/dist/icons/overlay/osk_button_B_disabled.png and b/dist/icons/overlay/osk_button_B_disabled.png differ diff --git a/dist/icons/overlay/osk_button_Y.png b/dist/icons/overlay/osk_button_Y.png index 2cd1934818..0a10b01b64 100644 Binary files a/dist/icons/overlay/osk_button_Y.png and b/dist/icons/overlay/osk_button_Y.png differ diff --git a/dist/icons/overlay/osk_button_Y_dark.png b/dist/icons/overlay/osk_button_Y_dark.png index 0cce567d3f..71e578002a 100644 Binary files a/dist/icons/overlay/osk_button_Y_dark.png and b/dist/icons/overlay/osk_button_Y_dark.png differ diff --git a/dist/icons/overlay/osk_button_Y_dark_disabled.png b/dist/icons/overlay/osk_button_Y_dark_disabled.png index de619efa32..279cde5418 100644 Binary files a/dist/icons/overlay/osk_button_Y_dark_disabled.png and b/dist/icons/overlay/osk_button_Y_dark_disabled.png differ diff --git a/dist/icons/overlay/osk_button_Y_disabled.png b/dist/icons/overlay/osk_button_Y_disabled.png index 8d607bc121..6cb53245ad 100644 Binary files a/dist/icons/overlay/osk_button_Y_disabled.png and b/dist/icons/overlay/osk_button_Y_disabled.png differ diff --git a/dist/icons/overlay/osk_button_plus.png b/dist/icons/overlay/osk_button_plus.png index 9f97874192..b87bc71161 100644 Binary files a/dist/icons/overlay/osk_button_plus.png and b/dist/icons/overlay/osk_button_plus.png differ diff --git a/dist/icons/overlay/osk_button_plus_dark.png b/dist/icons/overlay/osk_button_plus_dark.png index dbe7b0c66c..7701651085 100644 Binary files a/dist/icons/overlay/osk_button_plus_dark.png and b/dist/icons/overlay/osk_button_plus_dark.png differ diff --git a/dist/icons/overlay/osk_button_plus_dark_disabled.png b/dist/icons/overlay/osk_button_plus_dark_disabled.png index a79af6501c..fe53a66e71 100644 Binary files a/dist/icons/overlay/osk_button_plus_dark_disabled.png and b/dist/icons/overlay/osk_button_plus_dark_disabled.png differ diff --git a/dist/icons/overlay/osk_button_plus_disabled.png b/dist/icons/overlay/osk_button_plus_disabled.png index 52ace8ecae..72ddf6e824 100644 Binary files a/dist/icons/overlay/osk_button_plus_disabled.png and b/dist/icons/overlay/osk_button_plus_disabled.png differ diff --git a/dist/icons/overlay/osk_button_shift_lock_off.png b/dist/icons/overlay/osk_button_shift_lock_off.png index b506f456fc..91259b2b86 100644 Binary files a/dist/icons/overlay/osk_button_shift_lock_off.png and b/dist/icons/overlay/osk_button_shift_lock_off.png differ diff --git a/dist/icons/overlay/osk_button_shift_lock_on.png b/dist/icons/overlay/osk_button_shift_lock_on.png index eaa4e98ed0..48003eb77a 100644 Binary files a/dist/icons/overlay/osk_button_shift_lock_on.png and b/dist/icons/overlay/osk_button_shift_lock_on.png differ diff --git a/dist/icons/overlay/osk_button_shift_on_dark.png b/dist/icons/overlay/osk_button_shift_on_dark.png index 58e0d9cf41..484d74e302 100644 Binary files a/dist/icons/overlay/osk_button_shift_on_dark.png and b/dist/icons/overlay/osk_button_shift_on_dark.png differ 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 PÃ¥ - + 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 AÄŸ - - + + 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 Aç @@ -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/dist/qt_themes/colorful/icons/16x16/checked.png b/dist/qt_themes/colorful/icons/16x16/checked.png index b9e64e9e08..0694e3d405 100644 Binary files a/dist/qt_themes/colorful/icons/16x16/checked.png and b/dist/qt_themes/colorful/icons/16x16/checked.png differ diff --git a/dist/qt_themes/colorful/icons/16x16/info.png b/dist/qt_themes/colorful/icons/16x16/info.png index 8b9330f4c8..e7ffc60830 100644 Binary files a/dist/qt_themes/colorful/icons/16x16/info.png and b/dist/qt_themes/colorful/icons/16x16/info.png differ diff --git a/dist/qt_themes/colorful/icons/256x256/plus_folder.png b/dist/qt_themes/colorful/icons/256x256/plus_folder.png index 760fe6245e..31471e3a2a 100644 Binary files a/dist/qt_themes/colorful/icons/256x256/plus_folder.png and b/dist/qt_themes/colorful/icons/256x256/plus_folder.png differ diff --git a/dist/qt_themes/colorful/icons/48x48/chip.png b/dist/qt_themes/colorful/icons/48x48/chip.png index 6fa1589995..42b016592e 100644 Binary files a/dist/qt_themes/colorful/icons/48x48/chip.png and b/dist/qt_themes/colorful/icons/48x48/chip.png differ diff --git a/dist/qt_themes/colorful/icons/48x48/folder.png b/dist/qt_themes/colorful/icons/48x48/folder.png index 498de4c629..f4d459b053 100644 Binary files a/dist/qt_themes/colorful/icons/48x48/folder.png and b/dist/qt_themes/colorful/icons/48x48/folder.png differ diff --git a/dist/qt_themes/colorful/icons/48x48/list-add.png b/dist/qt_themes/colorful/icons/48x48/list-add.png index 74e4882aae..27a6f47c97 100644 Binary files a/dist/qt_themes/colorful/icons/48x48/list-add.png and b/dist/qt_themes/colorful/icons/48x48/list-add.png differ diff --git a/dist/qt_themes/colorful/icons/48x48/sd_card.png b/dist/qt_themes/colorful/icons/48x48/sd_card.png index 652d61bc32..fcc4c2a5fa 100644 Binary files a/dist/qt_themes/colorful/icons/48x48/sd_card.png and b/dist/qt_themes/colorful/icons/48x48/sd_card.png differ diff --git a/dist/qt_themes/colorful/icons/48x48/star.png b/dist/qt_themes/colorful/icons/48x48/star.png index 19d55a0a80..2ff57696d4 100644 Binary files a/dist/qt_themes/colorful/icons/48x48/star.png and b/dist/qt_themes/colorful/icons/48x48/star.png differ diff --git a/dist/qt_themes/default/icons/256x256/eden.png b/dist/qt_themes/default/icons/256x256/eden.png index 32a2eebe8b..c0d7d8e37c 100644 Binary files a/dist/qt_themes/default/icons/256x256/eden.png and b/dist/qt_themes/default/icons/256x256/eden.png differ diff --git a/dist/qt_themes/default/icons/256x256/eden_named.png b/dist/qt_themes/default/icons/256x256/eden_named.png index c77d32c380..e4944d624d 100644 Binary files a/dist/qt_themes/default/icons/256x256/eden_named.png and b/dist/qt_themes/default/icons/256x256/eden_named.png differ diff --git a/dist/qt_themes/default/icons/48x48/bad_folder.png b/dist/qt_themes/default/icons/48x48/bad_folder.png index 364ec646f6..b0cc440b84 100644 Binary files a/dist/qt_themes/default/icons/48x48/bad_folder.png and b/dist/qt_themes/default/icons/48x48/bad_folder.png differ diff --git a/dist/qt_themes/default/icons/48x48/list-add.png b/dist/qt_themes/default/icons/48x48/list-add.png index fd8a06132c..ce34ce5522 100644 Binary files a/dist/qt_themes/default/icons/48x48/list-add.png and b/dist/qt_themes/default/icons/48x48/list-add.png differ diff --git a/dist/qt_themes/default/icons/48x48/sd_card.png b/dist/qt_themes/default/icons/48x48/sd_card.png index 6bcb7f6b1d..083566404b 100644 Binary files a/dist/qt_themes/default/icons/48x48/sd_card.png and b/dist/qt_themes/default/icons/48x48/sd_card.png differ diff --git a/dist/qt_themes/default/style.qss b/dist/qt_themes/default/style.qss index db55b9b490..701086299d 100644 --- a/dist/qt_themes/default/style.qss +++ b/dist/qt_themes/default/style.qss @@ -95,6 +95,60 @@ QPushButton#button_reset_defaults { padding: 4px 8px; } +/* QGroupBox -------------------------------------------------------------- + +https://doc.qt.io/qt-5/stylesheet-examples.html#customizing-qgroupbox + +--------------------------------------------------------------------------- */ +QGroupBox { + border: 1px solid #32414B; + border-radius: 4px; + margin-top: 20px; + padding: 2px; +} + +QGroupBox::title { + subcontrol-origin: margin; + subcontrol-position: top left; + padding-left: 3px; + padding-right: 5px; + padding-top: 2px; +} + +QGroupBox::indicator { + margin-left: 2px; + height: 16px; + width: 16px; +} + +QGroupBox::indicator:unchecked { + border: none; + image: url(":/qss_icons/rc/checkbox_unchecked.png"); +} + +QGroupBox::indicator:unchecked:hover, QGroupBox::indicator:unchecked:focus, QGroupBox::indicator:unchecked:pressed { + border: none; + image: url(":/qss_icons/rc/checkbox_unchecked_focus.png"); +} + +QGroupBox::indicator:unchecked:disabled { + image: url(":/qss_icons/rc/checkbox_unchecked_disabled.png"); +} + +QGroupBox::indicator:checked { + border: none; + image: url(":/qss_icons/rc/checkbox_checked.png"); +} + +QGroupBox::indicator:checked:hover, QGroupBox::indicator:checked:focus, QGroupBox::indicator:checked:pressed { + border: none; + image: url(":/qss_icons/rc/checkbox_checked_focus.png"); +} + +QGroupBox::indicator:checked:disabled { + image: url(":/qss_icons/rc/checkbox_checked_disabled.png"); +} + QWidget#bottomPerGameInput, QWidget#topControllerApplet, QWidget#bottomControllerApplet, diff --git a/dist/qt_themes/default_dark/style.qss b/dist/qt_themes/default_dark/style.qss index 6a3f517cb6..dd224c3322 100644 --- a/dist/qt_themes/default_dark/style.qss +++ b/dist/qt_themes/default_dark/style.qss @@ -697,3 +697,29 @@ QDialog#QtSoftwareKeyboardDialog QPushButton#button_space:disabled, QDialog#QtSoftwareKeyboardDialog QPushButton#button_space_shift:disabled { image: url(:/overlay/osk_button_Y_disabled.png); } + +/* QGroupBox -------------------------------------------------------------- + +https://doc.qt.io/qt-5/stylesheet-examples.html#customizing-qgroupbox + +--------------------------------------------------------------------------- */ +QGroupBox { + border: 1px solid #32414B; + border-radius: 4px; + margin-top: 22px; + padding: 2px; +} + +QGroupBox::title { + subcontrol-origin: margin; + subcontrol-position: top left; + padding-left: 10px; + padding-right: 10px; + padding-top: 2px; +} + +QGroupBox::indicator { + margin-left: 2px; + height: 16px; + width: 16px; +} diff --git a/dist/qt_themes/qdarkstyle/icons/16x16/lock.png b/dist/qt_themes/qdarkstyle/icons/16x16/lock.png index 7e63927b2c..d187110ab3 100644 Binary files a/dist/qt_themes/qdarkstyle/icons/16x16/lock.png and b/dist/qt_themes/qdarkstyle/icons/16x16/lock.png differ diff --git a/dist/qt_themes/qdarkstyle/icons/48x48/bad_folder.png b/dist/qt_themes/qdarkstyle/icons/48x48/bad_folder.png index 245f96c7ba..42fee9ced2 100644 Binary files a/dist/qt_themes/qdarkstyle/icons/48x48/bad_folder.png and b/dist/qt_themes/qdarkstyle/icons/48x48/bad_folder.png differ diff --git a/dist/qt_themes/qdarkstyle/icons/48x48/chip.png b/dist/qt_themes/qdarkstyle/icons/48x48/chip.png index db0cadac13..9a727e7451 100644 Binary files a/dist/qt_themes/qdarkstyle/icons/48x48/chip.png and b/dist/qt_themes/qdarkstyle/icons/48x48/chip.png differ diff --git a/dist/qt_themes/qdarkstyle/icons/48x48/list-add.png b/dist/qt_themes/qdarkstyle/icons/48x48/list-add.png index 8fbe780116..fdc39d6ba4 100644 Binary files a/dist/qt_themes/qdarkstyle/icons/48x48/list-add.png and b/dist/qt_themes/qdarkstyle/icons/48x48/list-add.png differ diff --git a/dist/qt_themes/qdarkstyle/icons/48x48/sd_card.png b/dist/qt_themes/qdarkstyle/icons/48x48/sd_card.png index 15e5e40245..d03d13a379 100644 Binary files a/dist/qt_themes/qdarkstyle/icons/48x48/sd_card.png and b/dist/qt_themes/qdarkstyle/icons/48x48/sd_card.png differ diff --git a/dist/qt_themes/qdarkstyle/rc/Hmovetoolbar.png b/dist/qt_themes/qdarkstyle/rc/Hmovetoolbar.png index cead99ed10..a0782ef97a 100644 Binary files a/dist/qt_themes/qdarkstyle/rc/Hmovetoolbar.png and b/dist/qt_themes/qdarkstyle/rc/Hmovetoolbar.png differ diff --git a/dist/qt_themes/qdarkstyle/rc/Vmovetoolbar.png b/dist/qt_themes/qdarkstyle/rc/Vmovetoolbar.png index 512edcecd6..25db314c17 100644 Binary files a/dist/qt_themes/qdarkstyle/rc/Vmovetoolbar.png and b/dist/qt_themes/qdarkstyle/rc/Vmovetoolbar.png differ diff --git a/dist/qt_themes/qdarkstyle/rc/checkbox_indeterminate.png b/dist/qt_themes/qdarkstyle/rc/checkbox_indeterminate.png index 830cfee656..56e8c49849 100644 Binary files a/dist/qt_themes/qdarkstyle/rc/checkbox_indeterminate.png and b/dist/qt_themes/qdarkstyle/rc/checkbox_indeterminate.png differ diff --git a/dist/qt_themes/qdarkstyle/rc/checkbox_indeterminate_disabled.png b/dist/qt_themes/qdarkstyle/rc/checkbox_indeterminate_disabled.png index cb63cc2fac..8ddbdabd4c 100644 Binary files a/dist/qt_themes/qdarkstyle/rc/checkbox_indeterminate_disabled.png and b/dist/qt_themes/qdarkstyle/rc/checkbox_indeterminate_disabled.png differ diff --git a/dist/qt_themes/qdarkstyle/rc/checkbox_indeterminate_focus.png b/dist/qt_themes/qdarkstyle/rc/checkbox_indeterminate_focus.png index 671be273b0..6111a28fc9 100644 Binary files a/dist/qt_themes/qdarkstyle/rc/checkbox_indeterminate_focus.png and b/dist/qt_themes/qdarkstyle/rc/checkbox_indeterminate_focus.png differ diff --git a/dist/qt_themes/qdarkstyle/rc/checkbox_unchecked.png b/dist/qt_themes/qdarkstyle/rc/checkbox_unchecked.png index 2159aca9a1..166f5aa049 100644 Binary files a/dist/qt_themes/qdarkstyle/rc/checkbox_unchecked.png and b/dist/qt_themes/qdarkstyle/rc/checkbox_unchecked.png differ diff --git a/dist/qt_themes/qdarkstyle/rc/checkbox_unchecked_disabled.png b/dist/qt_themes/qdarkstyle/rc/checkbox_unchecked_disabled.png index ade721e81b..789a03b356 100644 Binary files a/dist/qt_themes/qdarkstyle/rc/checkbox_unchecked_disabled.png and b/dist/qt_themes/qdarkstyle/rc/checkbox_unchecked_disabled.png differ diff --git a/dist/qt_themes/qdarkstyle/rc/checkbox_unchecked_focus.png b/dist/qt_themes/qdarkstyle/rc/checkbox_unchecked_focus.png index e4258cc470..4b6981b268 100644 Binary files a/dist/qt_themes/qdarkstyle/rc/checkbox_unchecked_focus.png and b/dist/qt_themes/qdarkstyle/rc/checkbox_unchecked_focus.png differ diff --git a/dist/qt_themes/qdarkstyle/rc/close-hover.png b/dist/qt_themes/qdarkstyle/rc/close-hover.png index 657943a668..afddf97a79 100644 Binary files a/dist/qt_themes/qdarkstyle/rc/close-hover.png and b/dist/qt_themes/qdarkstyle/rc/close-hover.png differ diff --git a/dist/qt_themes/qdarkstyle/rc/close-pressed.png b/dist/qt_themes/qdarkstyle/rc/close-pressed.png index 937d005983..605ac0e6bf 100644 Binary files a/dist/qt_themes/qdarkstyle/rc/close-pressed.png and b/dist/qt_themes/qdarkstyle/rc/close-pressed.png differ diff --git a/dist/qt_themes/qdarkstyle/rc/close.png b/dist/qt_themes/qdarkstyle/rc/close.png index bc0f576109..3f843b8bcc 100644 Binary files a/dist/qt_themes/qdarkstyle/rc/close.png and b/dist/qt_themes/qdarkstyle/rc/close.png differ diff --git a/dist/qt_themes/qdarkstyle/rc/radio_checked.png b/dist/qt_themes/qdarkstyle/rc/radio_checked.png index 235e6b0ba7..edaf3f2228 100644 Binary files a/dist/qt_themes/qdarkstyle/rc/radio_checked.png and b/dist/qt_themes/qdarkstyle/rc/radio_checked.png differ diff --git a/dist/qt_themes/qdarkstyle/rc/radio_checked_disabled.png b/dist/qt_themes/qdarkstyle/rc/radio_checked_disabled.png index bf0051ede5..f2a4ce1df3 100644 Binary files a/dist/qt_themes/qdarkstyle/rc/radio_checked_disabled.png and b/dist/qt_themes/qdarkstyle/rc/radio_checked_disabled.png differ diff --git a/dist/qt_themes/qdarkstyle/rc/radio_checked_focus.png b/dist/qt_themes/qdarkstyle/rc/radio_checked_focus.png index 700c6b525e..d6b540408d 100644 Binary files a/dist/qt_themes/qdarkstyle/rc/radio_checked_focus.png and b/dist/qt_themes/qdarkstyle/rc/radio_checked_focus.png differ diff --git a/dist/qt_themes/qdarkstyle/rc/radio_unchecked.png b/dist/qt_themes/qdarkstyle/rc/radio_unchecked.png index 9a4def65c6..f69d92df09 100644 Binary files a/dist/qt_themes/qdarkstyle/rc/radio_unchecked.png and b/dist/qt_themes/qdarkstyle/rc/radio_unchecked.png differ diff --git a/dist/qt_themes/qdarkstyle/rc/radio_unchecked_disabled.png b/dist/qt_themes/qdarkstyle/rc/radio_unchecked_disabled.png index 6ece890e75..c3f29da053 100644 Binary files a/dist/qt_themes/qdarkstyle/rc/radio_unchecked_disabled.png and b/dist/qt_themes/qdarkstyle/rc/radio_unchecked_disabled.png differ diff --git a/dist/qt_themes/qdarkstyle/rc/radio_unchecked_focus.png b/dist/qt_themes/qdarkstyle/rc/radio_unchecked_focus.png index 564e022d33..81323f4150 100644 Binary files a/dist/qt_themes/qdarkstyle/rc/radio_unchecked_focus.png and b/dist/qt_themes/qdarkstyle/rc/radio_unchecked_focus.png differ diff --git a/dist/qt_themes/qdarkstyle/rc/stylesheet-branch-end.png b/dist/qt_themes/qdarkstyle/rc/stylesheet-branch-end.png index cb5d3b51f8..a50d541878 100644 Binary files a/dist/qt_themes/qdarkstyle/rc/stylesheet-branch-end.png and b/dist/qt_themes/qdarkstyle/rc/stylesheet-branch-end.png differ diff --git a/dist/qt_themes/qdarkstyle/rc/stylesheet-vline.png b/dist/qt_themes/qdarkstyle/rc/stylesheet-vline.png index 87536cce16..baf9bd8437 100644 Binary files a/dist/qt_themes/qdarkstyle/rc/stylesheet-vline.png and b/dist/qt_themes/qdarkstyle/rc/stylesheet-vline.png differ diff --git a/dist/qt_themes/qdarkstyle/rc/undock.png b/dist/qt_themes/qdarkstyle/rc/undock.png index 88691d7795..b7975a2b89 100644 Binary files a/dist/qt_themes/qdarkstyle/rc/undock.png and b/dist/qt_themes/qdarkstyle/rc/undock.png differ diff --git a/dist/qt_themes/qdarkstyle/style.qss b/dist/qt_themes/qdarkstyle/style.qss index 32610b131e..d018b9b64b 100644 --- a/dist/qt_themes/qdarkstyle/style.qss +++ b/dist/qt_themes/qdarkstyle/style.qss @@ -307,7 +307,7 @@ QAbstractItemView QLineEdit { QGroupBox { border: 1px solid #54575B; border-radius: 2px; - margin-top: 12px; + margin-top: 20px; padding-top: 2px; } diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/Hmovetoolbar.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/Hmovetoolbar.png index cead99ed10..a0782ef97a 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/Hmovetoolbar.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/Hmovetoolbar.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/Vmovetoolbar.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/Vmovetoolbar.png index 512edcecd6..25db314c17 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/Vmovetoolbar.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/Vmovetoolbar.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_down.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_down.png index c4e6894ba9..76232456f6 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_down.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_down.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_down@2x.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_down@2x.png index bb8cbed0d6..4238e31d73 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_down@2x.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_down@2x.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_down_disabled.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_down_disabled.png index aa1d06c084..f286fb7605 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_down_disabled.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_down_disabled.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_down_disabled@2x.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_down_disabled@2x.png index 86bf434b84..924f9951f9 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_down_disabled@2x.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_down_disabled@2x.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_down_focus.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_down_focus.png index 1c42ee8f6a..310cdf0ae3 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_down_focus.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_down_focus.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_down_focus@2x.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_down_focus@2x.png index 7374637c5e..c1fa23192d 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_down_focus@2x.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_down_focus@2x.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_down_pressed.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_down_pressed.png index 8139ee3e83..87cef99e61 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_down_pressed.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_down_pressed.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_down_pressed@2x.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_down_pressed@2x.png index 5e9d225ff6..47b87f55aa 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_down_pressed@2x.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_down_pressed@2x.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_left.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_left.png index ef929fdf04..e71a93cf0e 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_left.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_left.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_left@2x.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_left@2x.png index c8923d6f4c..37362f331e 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_left@2x.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_left@2x.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_left_disabled.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_left_disabled.png index 9c69561a7f..67cbd8c203 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_left_disabled.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_left_disabled.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_left_disabled@2x.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_left_disabled@2x.png index e521143121..c33c0e50a4 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_left_disabled@2x.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_left_disabled@2x.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_left_focus.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_left_focus.png index a1f0704550..58daf567b5 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_left_focus.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_left_focus.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_left_focus@2x.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_left_focus@2x.png index c4267e856b..59d58ab753 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_left_focus@2x.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_left_focus@2x.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_left_pressed.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_left_pressed.png index bd706cbdd6..54ab848e87 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_left_pressed.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_left_pressed.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_left_pressed@2x.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_left_pressed@2x.png index 341b2e5410..a61de7f5ff 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_left_pressed@2x.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_left_pressed@2x.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_right.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_right.png index 4f33885057..649da834ba 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_right.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_right.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_right@2x.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_right@2x.png index 94b2609658..a16fe6d1ee 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_right@2x.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_right@2x.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_right_disabled.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_right_disabled.png index 0fbc6b04c5..3d7f3c080e 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_right_disabled.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_right_disabled.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_right_disabled@2x.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_right_disabled@2x.png index 8e9272a5b9..723de13ce1 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_right_disabled@2x.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_right_disabled@2x.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_right_focus.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_right_focus.png index 7649409451..a0c45d83b0 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_right_focus.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_right_focus.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_right_focus@2x.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_right_focus@2x.png index 6d52b5fa37..a34b45b35a 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_right_focus@2x.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_right_focus@2x.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_right_pressed.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_right_pressed.png index a5f04522a6..a6bdecbf28 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_right_pressed.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_right_pressed.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_right_pressed@2x.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_right_pressed@2x.png index 6f6a8130c1..b650e3271b 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_right_pressed@2x.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_right_pressed@2x.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_up.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_up.png index 61d7574a4d..751c95411b 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_up.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_up.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_up@2x.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_up@2x.png index d711fae16a..b5375c7cb2 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_up@2x.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_up@2x.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_up_disabled.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_up_disabled.png index 18e8ecd8d3..fde7ba3f01 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_up_disabled.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_up_disabled.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_up_disabled@2x.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_up_disabled@2x.png index fb4defb522..c09291ab13 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_up_disabled@2x.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_up_disabled@2x.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_up_focus.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_up_focus.png index a7acd9b668..3dadfe4220 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_up_focus.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_up_focus.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_up_focus@2x.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_up_focus@2x.png index 9cd982a1d4..0ed72401e7 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_up_focus@2x.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_up_focus@2x.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_up_pressed.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_up_pressed.png index 390a80e21b..fac7fdb9e8 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_up_pressed.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_up_pressed.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_up_pressed@2x.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_up_pressed@2x.png index dd352cff39..70689f752a 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_up_pressed@2x.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/arrow_up_pressed@2x.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/base_icon.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/base_icon.png index 37a6158cc4..492cc2724e 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/base_icon.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/base_icon.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/base_icon@2x.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/base_icon@2x.png index e6e5cb9160..19fbf8d5af 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/base_icon@2x.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/base_icon@2x.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/base_icon_disabled.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/base_icon_disabled.png index 37a6158cc4..492cc2724e 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/base_icon_disabled.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/base_icon_disabled.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/base_icon_disabled@2x.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/base_icon_disabled@2x.png index e6e5cb9160..19fbf8d5af 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/base_icon_disabled@2x.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/base_icon_disabled@2x.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/base_icon_focus.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/base_icon_focus.png index 37a6158cc4..492cc2724e 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/base_icon_focus.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/base_icon_focus.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/base_icon_focus@2x.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/base_icon_focus@2x.png index e6e5cb9160..19fbf8d5af 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/base_icon_focus@2x.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/base_icon_focus@2x.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/base_icon_pressed.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/base_icon_pressed.png index 37a6158cc4..492cc2724e 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/base_icon_pressed.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/base_icon_pressed.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/base_icon_pressed@2x.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/base_icon_pressed@2x.png index e6e5cb9160..19fbf8d5af 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/base_icon_pressed@2x.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/base_icon_pressed@2x.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_closed.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_closed.png index 53e2c51f57..df389d19fa 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_closed.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_closed.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_closed@2x.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_closed@2x.png index 06cdefa5f1..606f905309 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_closed@2x.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_closed@2x.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_closed_disabled.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_closed_disabled.png index 5106a1438b..43d7b70185 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_closed_disabled.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_closed_disabled.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_closed_disabled@2x.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_closed_disabled@2x.png index 180bae9e61..86dbc5bc69 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_closed_disabled@2x.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_closed_disabled@2x.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_closed_focus.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_closed_focus.png index c227f9f71c..c530d0ee3c 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_closed_focus.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_closed_focus.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_closed_focus@2x.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_closed_focus@2x.png index ad23d0d332..954592f027 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_closed_focus@2x.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_closed_focus@2x.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_closed_pressed.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_closed_pressed.png index 90845a81fa..4e7831ed41 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_closed_pressed.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_closed_pressed.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_closed_pressed@2x.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_closed_pressed@2x.png index 60aaeb7fb3..61b924e9f2 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_closed_pressed@2x.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_closed_pressed@2x.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_end.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_end.png index 08b5559b21..4372be7a06 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_end.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_end.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_end@2x.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_end@2x.png index ae6dbe9913..a5c0485530 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_end@2x.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_end@2x.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_end_disabled.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_end_disabled.png index 027a8894a6..e748e2e728 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_end_disabled.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_end_disabled.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_end_disabled@2x.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_end_disabled@2x.png index 43c1b0c769..fe12891a7e 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_end_disabled@2x.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_end_disabled@2x.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_end_focus.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_end_focus.png index fdb3160bb8..7a283b46b9 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_end_focus.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_end_focus.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_end_focus@2x.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_end_focus@2x.png index 3ca8904498..c1a173e418 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_end_focus@2x.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_end_focus@2x.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_end_pressed.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_end_pressed.png index 1c2432dd4b..12afd7b17a 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_end_pressed.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_end_pressed.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_end_pressed@2x.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_end_pressed@2x.png index af0f8fa5a9..cb781ab4dc 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_end_pressed@2x.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_end_pressed@2x.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_line.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_line.png index a3a564e447..5bdb43fd41 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_line.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_line.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_line@2x.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_line@2x.png index 1dbf71fc72..b5dced34e2 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_line@2x.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_line@2x.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_line_disabled.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_line_disabled.png index ecc7e6d932..d0ad0e07ec 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_line_disabled.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_line_disabled.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_line_disabled@2x.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_line_disabled@2x.png index adc6446c97..4bd61d377b 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_line_disabled@2x.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_line_disabled@2x.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_line_focus.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_line_focus.png index 0037f175ad..08ec6d12fe 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_line_focus.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_line_focus.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_line_focus@2x.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_line_focus@2x.png index cb257a9143..53a3164aa3 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_line_focus@2x.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_line_focus@2x.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_line_pressed.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_line_pressed.png index 2d08565278..4d1e85a178 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_line_pressed.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_line_pressed.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_line_pressed@2x.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_line_pressed@2x.png index 803708fb45..102b287c28 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_line_pressed@2x.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_line_pressed@2x.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_more.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_more.png index 31b6cee873..e676e28e46 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_more.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_more.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_more@2x.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_more@2x.png index f1f7a67f16..7bf47a36af 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_more@2x.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_more@2x.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_more_disabled.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_more_disabled.png index d4b6049055..f9b714eba9 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_more_disabled.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_more_disabled.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_more_disabled@2x.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_more_disabled@2x.png index 3ef752108d..212b56ec5d 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_more_disabled@2x.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_more_disabled@2x.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_more_focus.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_more_focus.png index 943c13d0b2..8a74cad89c 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_more_focus.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_more_focus.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_more_focus@2x.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_more_focus@2x.png index 9f53ef1fa5..6b3c2b8fbb 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_more_focus@2x.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_more_focus@2x.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_more_pressed.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_more_pressed.png index 9037ed3b3f..dafad3dcf3 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_more_pressed.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_more_pressed.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_more_pressed@2x.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_more_pressed@2x.png index 675d52c761..b1a5d22842 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_more_pressed@2x.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_more_pressed@2x.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_open.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_open.png index 0861d0bc76..b9e2719214 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_open.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_open.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_open@2x.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_open@2x.png index 8850f7367b..541786551f 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_open@2x.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_open@2x.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_open_disabled.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_open_disabled.png index b6c80243b6..0f2e2e6cbf 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_open_disabled.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_open_disabled.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_open_disabled@2x.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_open_disabled@2x.png index 15ce9f2650..cbd1f2823f 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_open_disabled@2x.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_open_disabled@2x.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_open_focus.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_open_focus.png index eadb0962a5..c7f8089abb 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_open_focus.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_open_focus.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_open_focus@2x.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_open_focus@2x.png index 7dfcbbe8ab..5d08b01c8c 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_open_focus@2x.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_open_focus@2x.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_open_pressed.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_open_pressed.png index 2b22e8d08d..361b1bff04 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_open_pressed.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_open_pressed.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_open_pressed@2x.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_open_pressed@2x.png index 269a0cbee8..bde4b37e8d 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_open_pressed@2x.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/branch_open_pressed@2x.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/checkbox_checked.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/checkbox_checked.png index e7ed080810..2a698618b5 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/checkbox_checked.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/checkbox_checked.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/checkbox_checked@2x.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/checkbox_checked@2x.png index 35f2ade589..eebc45b172 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/checkbox_checked@2x.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/checkbox_checked@2x.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/checkbox_checked_disabled.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/checkbox_checked_disabled.png index 512b0a3e4c..414e315d04 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/checkbox_checked_disabled.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/checkbox_checked_disabled.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/checkbox_checked_disabled@2x.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/checkbox_checked_disabled@2x.png index 557383ec88..fc7973ccb6 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/checkbox_checked_disabled@2x.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/checkbox_checked_disabled@2x.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/checkbox_checked_focus.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/checkbox_checked_focus.png index 0b90412f29..1a9894a616 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/checkbox_checked_focus.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/checkbox_checked_focus.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/checkbox_checked_focus@2x.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/checkbox_checked_focus@2x.png index 7aee03cbb2..d2f515b4cd 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/checkbox_checked_focus@2x.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/checkbox_checked_focus@2x.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/checkbox_checked_pressed.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/checkbox_checked_pressed.png index 3d4c869b79..8b5d23177b 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/checkbox_checked_pressed.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/checkbox_checked_pressed.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/checkbox_checked_pressed@2x.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/checkbox_checked_pressed@2x.png index bfbc14b94d..0279f750f5 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/checkbox_checked_pressed@2x.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/checkbox_checked_pressed@2x.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/checkbox_indeterminate.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/checkbox_indeterminate.png index c21ab99bfb..158038aa55 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/checkbox_indeterminate.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/checkbox_indeterminate.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/checkbox_indeterminate@2x.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/checkbox_indeterminate@2x.png index 2fc29cee62..cf63ceab7f 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/checkbox_indeterminate@2x.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/checkbox_indeterminate@2x.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/checkbox_indeterminate_disabled.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/checkbox_indeterminate_disabled.png index 1d3c214923..b8602ab3c7 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/checkbox_indeterminate_disabled.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/checkbox_indeterminate_disabled.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/checkbox_indeterminate_disabled@2x.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/checkbox_indeterminate_disabled@2x.png index bb8e7a7477..0aecf329a5 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/checkbox_indeterminate_disabled@2x.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/checkbox_indeterminate_disabled@2x.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/checkbox_indeterminate_focus.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/checkbox_indeterminate_focus.png index 13ca4a7a40..2f3a5c098d 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/checkbox_indeterminate_focus.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/checkbox_indeterminate_focus.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/checkbox_indeterminate_focus@2x.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/checkbox_indeterminate_focus@2x.png index 3907eb8d46..3f5e08f884 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/checkbox_indeterminate_focus@2x.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/checkbox_indeterminate_focus@2x.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/checkbox_indeterminate_pressed.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/checkbox_indeterminate_pressed.png index 12f83ceba3..34fc686b9c 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/checkbox_indeterminate_pressed.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/checkbox_indeterminate_pressed.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/checkbox_indeterminate_pressed@2x.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/checkbox_indeterminate_pressed@2x.png index 5ff4f66298..344d2fe47b 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/checkbox_indeterminate_pressed@2x.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/checkbox_indeterminate_pressed@2x.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/checkbox_unchecked.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/checkbox_unchecked.png index e2da452faa..f569143fe8 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/checkbox_unchecked.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/checkbox_unchecked.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/checkbox_unchecked@2x.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/checkbox_unchecked@2x.png index 3732d5406e..883cd95814 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/checkbox_unchecked@2x.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/checkbox_unchecked@2x.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/checkbox_unchecked_disabled.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/checkbox_unchecked_disabled.png index c2e30c690a..de85ec5e87 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/checkbox_unchecked_disabled.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/checkbox_unchecked_disabled.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/checkbox_unchecked_disabled@2x.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/checkbox_unchecked_disabled@2x.png index c4bddb6eb1..eac24e56b7 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/checkbox_unchecked_disabled@2x.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/checkbox_unchecked_disabled@2x.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/checkbox_unchecked_focus.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/checkbox_unchecked_focus.png index c57f04d9f8..ee8eb5650a 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/checkbox_unchecked_focus.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/checkbox_unchecked_focus.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/checkbox_unchecked_focus@2x.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/checkbox_unchecked_focus@2x.png index 1776ad0486..6421b2f75c 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/checkbox_unchecked_focus@2x.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/checkbox_unchecked_focus@2x.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/checkbox_unchecked_pressed.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/checkbox_unchecked_pressed.png index be41236e1b..54f7917304 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/checkbox_unchecked_pressed.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/checkbox_unchecked_pressed.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/checkbox_unchecked_pressed@2x.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/checkbox_unchecked_pressed@2x.png index b1ad7c72fe..136d9f6b77 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/checkbox_unchecked_pressed@2x.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/checkbox_unchecked_pressed@2x.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/close-hover.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/close-hover.png index 657943a668..afddf97a79 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/close-hover.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/close-hover.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/close-pressed.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/close-pressed.png index 937d005983..605ac0e6bf 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/close-pressed.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/close-pressed.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/close.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/close.png index bc0f576109..3f843b8bcc 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/close.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/close.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/line_horizontal@2x.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/line_horizontal@2x.png index c229ac963d..41a3a1ef0a 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/line_horizontal@2x.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/line_horizontal@2x.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/line_horizontal_disabled@2x.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/line_horizontal_disabled@2x.png index a4713c565e..12f07fbb9d 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/line_horizontal_disabled@2x.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/line_horizontal_disabled@2x.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/line_horizontal_focus@2x.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/line_horizontal_focus@2x.png index 84397efdbf..0c26376506 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/line_horizontal_focus@2x.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/line_horizontal_focus@2x.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/line_horizontal_pressed@2x.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/line_horizontal_pressed@2x.png index 140552e4ff..a6aeed8754 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/line_horizontal_pressed@2x.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/line_horizontal_pressed@2x.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/line_vertical.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/line_vertical.png index a3a564e447..5bdb43fd41 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/line_vertical.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/line_vertical.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/line_vertical@2x.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/line_vertical@2x.png index 1dbf71fc72..b5dced34e2 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/line_vertical@2x.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/line_vertical@2x.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/line_vertical_disabled.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/line_vertical_disabled.png index ecc7e6d932..d0ad0e07ec 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/line_vertical_disabled.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/line_vertical_disabled.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/line_vertical_disabled@2x.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/line_vertical_disabled@2x.png index adc6446c97..4bd61d377b 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/line_vertical_disabled@2x.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/line_vertical_disabled@2x.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/line_vertical_focus.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/line_vertical_focus.png index 0037f175ad..08ec6d12fe 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/line_vertical_focus.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/line_vertical_focus.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/line_vertical_focus@2x.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/line_vertical_focus@2x.png index cb257a9143..53a3164aa3 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/line_vertical_focus@2x.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/line_vertical_focus@2x.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/line_vertical_pressed.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/line_vertical_pressed.png index 2d08565278..4d1e85a178 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/line_vertical_pressed.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/line_vertical_pressed.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/line_vertical_pressed@2x.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/line_vertical_pressed@2x.png index 803708fb45..102b287c28 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/line_vertical_pressed@2x.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/line_vertical_pressed@2x.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/radio_checked.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/radio_checked.png index 6f1fd6ca69..4e5cc4445b 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/radio_checked.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/radio_checked.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/radio_checked@2x.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/radio_checked@2x.png index 228ffdbf21..94f0939ba1 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/radio_checked@2x.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/radio_checked@2x.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/radio_checked_disabled.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/radio_checked_disabled.png index 27788530d1..74fd0faae7 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/radio_checked_disabled.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/radio_checked_disabled.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/radio_checked_disabled@2x.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/radio_checked_disabled@2x.png index 930bfaf70d..ee6fab7c00 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/radio_checked_disabled@2x.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/radio_checked_disabled@2x.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/radio_checked_focus.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/radio_checked_focus.png index ca8e8bc9a7..183930162f 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/radio_checked_focus.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/radio_checked_focus.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/radio_checked_focus@2x.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/radio_checked_focus@2x.png index aa0f1152be..4fd15f7f7d 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/radio_checked_focus@2x.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/radio_checked_focus@2x.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/radio_checked_pressed.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/radio_checked_pressed.png index 6e391a0ff3..24ecf6781d 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/radio_checked_pressed.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/radio_checked_pressed.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/radio_checked_pressed@2x.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/radio_checked_pressed@2x.png index 0512731ae5..f816f32387 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/radio_checked_pressed@2x.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/radio_checked_pressed@2x.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/radio_unchecked.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/radio_unchecked.png index 763306bdcc..391acb69e8 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/radio_unchecked.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/radio_unchecked.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/radio_unchecked@2x.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/radio_unchecked@2x.png index 28b6a07842..8bae28f3fb 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/radio_unchecked@2x.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/radio_unchecked@2x.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/radio_unchecked_disabled.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/radio_unchecked_disabled.png index fc0b12f781..300d86068a 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/radio_unchecked_disabled.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/radio_unchecked_disabled.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/radio_unchecked_disabled@2x.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/radio_unchecked_disabled@2x.png index d31f2b4b9d..16d595ccee 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/radio_unchecked_disabled@2x.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/radio_unchecked_disabled@2x.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/radio_unchecked_focus.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/radio_unchecked_focus.png index 9c87b01e49..edd78cb43b 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/radio_unchecked_focus.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/radio_unchecked_focus.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/radio_unchecked_focus@2x.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/radio_unchecked_focus@2x.png index 4b4c7321dd..7ab8c79fba 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/radio_unchecked_focus@2x.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/radio_unchecked_focus@2x.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/radio_unchecked_pressed.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/radio_unchecked_pressed.png index 709e316336..9046c4b764 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/radio_unchecked_pressed.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/radio_unchecked_pressed.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/radio_unchecked_pressed@2x.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/radio_unchecked_pressed@2x.png index b014de5f01..a6c3cd9b0f 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/radio_unchecked_pressed@2x.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/radio_unchecked_pressed@2x.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/stylesheet-branch-end.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/stylesheet-branch-end.png index cb5d3b51f8..a50d541878 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/stylesheet-branch-end.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/stylesheet-branch-end.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/stylesheet-vline.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/stylesheet-vline.png index 87536cce16..baf9bd8437 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/stylesheet-vline.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/stylesheet-vline.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/toolbar_move_horizontal.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/toolbar_move_horizontal.png index 012ea2dfb1..fd0cf328b4 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/toolbar_move_horizontal.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/toolbar_move_horizontal.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/toolbar_move_horizontal@2x.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/toolbar_move_horizontal@2x.png index 520c34f98d..0b07144fdd 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/toolbar_move_horizontal@2x.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/toolbar_move_horizontal@2x.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/toolbar_move_horizontal_disabled.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/toolbar_move_horizontal_disabled.png index 1f91df98fd..bba0cf74b7 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/toolbar_move_horizontal_disabled.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/toolbar_move_horizontal_disabled.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/toolbar_move_horizontal_disabled@2x.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/toolbar_move_horizontal_disabled@2x.png index 738008f92e..3162df8c18 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/toolbar_move_horizontal_disabled@2x.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/toolbar_move_horizontal_disabled@2x.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/toolbar_move_horizontal_focus.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/toolbar_move_horizontal_focus.png index 999b3c7d82..fd021e97ec 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/toolbar_move_horizontal_focus.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/toolbar_move_horizontal_focus.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/toolbar_move_horizontal_focus@2x.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/toolbar_move_horizontal_focus@2x.png index f8e40b7d19..d9aae5ecdd 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/toolbar_move_horizontal_focus@2x.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/toolbar_move_horizontal_focus@2x.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/toolbar_move_horizontal_pressed.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/toolbar_move_horizontal_pressed.png index c31b69deb6..1e170e9a73 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/toolbar_move_horizontal_pressed.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/toolbar_move_horizontal_pressed.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/toolbar_move_horizontal_pressed@2x.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/toolbar_move_horizontal_pressed@2x.png index 2f4cb41c7e..bedb94a89e 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/toolbar_move_horizontal_pressed@2x.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/toolbar_move_horizontal_pressed@2x.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/toolbar_move_vertical@2x.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/toolbar_move_vertical@2x.png index 90a5caee37..ab7e0a52f1 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/toolbar_move_vertical@2x.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/toolbar_move_vertical@2x.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/toolbar_move_vertical_disabled.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/toolbar_move_vertical_disabled.png index 2d240edb52..e2e2afce86 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/toolbar_move_vertical_disabled.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/toolbar_move_vertical_disabled.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/toolbar_move_vertical_disabled@2x.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/toolbar_move_vertical_disabled@2x.png index fd1df30f11..7eccab8513 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/toolbar_move_vertical_disabled@2x.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/toolbar_move_vertical_disabled@2x.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/toolbar_move_vertical_focus.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/toolbar_move_vertical_focus.png index 58cda1f805..82b2482ef5 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/toolbar_move_vertical_focus.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/toolbar_move_vertical_focus.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/toolbar_move_vertical_focus@2x.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/toolbar_move_vertical_focus@2x.png index 9222b4fd8e..66504f977f 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/toolbar_move_vertical_focus@2x.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/toolbar_move_vertical_focus@2x.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/toolbar_move_vertical_pressed.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/toolbar_move_vertical_pressed.png index e7d6419261..013bc2d3f0 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/toolbar_move_vertical_pressed.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/toolbar_move_vertical_pressed.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/toolbar_move_vertical_pressed@2x.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/toolbar_move_vertical_pressed@2x.png index 9c438faf42..6ad8b47f16 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/toolbar_move_vertical_pressed@2x.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/toolbar_move_vertical_pressed@2x.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/toolbar_separator_horizontal.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/toolbar_separator_horizontal.png index 3c0acbdcc0..71f79e7c18 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/toolbar_separator_horizontal.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/toolbar_separator_horizontal.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/toolbar_separator_horizontal@2x.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/toolbar_separator_horizontal@2x.png index fb4e24c88f..4049b34530 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/toolbar_separator_horizontal@2x.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/toolbar_separator_horizontal@2x.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/toolbar_separator_horizontal_disabled.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/toolbar_separator_horizontal_disabled.png index 32f7e8ca6f..eb5944bba0 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/toolbar_separator_horizontal_disabled.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/toolbar_separator_horizontal_disabled.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/toolbar_separator_horizontal_disabled@2x.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/toolbar_separator_horizontal_disabled@2x.png index f7bec188bb..12df69aad9 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/toolbar_separator_horizontal_disabled@2x.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/toolbar_separator_horizontal_disabled@2x.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/toolbar_separator_horizontal_focus.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/toolbar_separator_horizontal_focus.png index 91c19d65c3..d05adc4a58 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/toolbar_separator_horizontal_focus.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/toolbar_separator_horizontal_focus.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/toolbar_separator_horizontal_focus@2x.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/toolbar_separator_horizontal_focus@2x.png index c4829918d6..70556d96c7 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/toolbar_separator_horizontal_focus@2x.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/toolbar_separator_horizontal_focus@2x.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/toolbar_separator_horizontal_pressed.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/toolbar_separator_horizontal_pressed.png index 7a7f917374..1ade9619f5 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/toolbar_separator_horizontal_pressed.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/toolbar_separator_horizontal_pressed.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/toolbar_separator_horizontal_pressed@2x.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/toolbar_separator_horizontal_pressed@2x.png index d65773b487..1c2f542ecf 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/toolbar_separator_horizontal_pressed@2x.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/toolbar_separator_horizontal_pressed@2x.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/toolbar_separator_vertical@2x.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/toolbar_separator_vertical@2x.png index fe97c0de36..4cced09e9b 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/toolbar_separator_vertical@2x.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/toolbar_separator_vertical@2x.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/toolbar_separator_vertical_disabled@2x.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/toolbar_separator_vertical_disabled@2x.png index 7acc6d33ea..7975862422 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/toolbar_separator_vertical_disabled@2x.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/toolbar_separator_vertical_disabled@2x.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/toolbar_separator_vertical_focus.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/toolbar_separator_vertical_focus.png index 6e3c121433..a0c764d010 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/toolbar_separator_vertical_focus.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/toolbar_separator_vertical_focus.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/toolbar_separator_vertical_focus@2x.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/toolbar_separator_vertical_focus@2x.png index cac3a56c28..1088091c5e 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/toolbar_separator_vertical_focus@2x.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/toolbar_separator_vertical_focus@2x.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/toolbar_separator_vertical_pressed.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/toolbar_separator_vertical_pressed.png index b777784b88..dd8529c4b6 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/toolbar_separator_vertical_pressed.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/toolbar_separator_vertical_pressed.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/toolbar_separator_vertical_pressed@2x.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/toolbar_separator_vertical_pressed@2x.png index 7ed878fd3f..11007b6fca 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/toolbar_separator_vertical_pressed@2x.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/toolbar_separator_vertical_pressed@2x.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/undock.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/undock.png index 88691d7795..b7975a2b89 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/undock.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/undock.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_close.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_close.png index 6f55c3ae77..72af3edd36 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_close.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_close.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_close@2x.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_close@2x.png index ff644f2e81..41a82e7a5b 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_close@2x.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_close@2x.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_close_disabled.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_close_disabled.png index 22694e31dd..6e5f534d55 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_close_disabled.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_close_disabled.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_close_disabled@2x.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_close_disabled@2x.png index ebc97db707..d6d3a6127c 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_close_disabled@2x.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_close_disabled@2x.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_close_focus.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_close_focus.png index f017eda31f..23b0129b85 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_close_focus.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_close_focus.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_close_focus@2x.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_close_focus@2x.png index 5a354d7963..f1f2a8271a 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_close_focus@2x.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_close_focus@2x.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_close_pressed.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_close_pressed.png index 04b922dd08..a7924de6f9 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_close_pressed.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_close_pressed.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_close_pressed@2x.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_close_pressed@2x.png index 58c0bf592c..92e7a86e2b 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_close_pressed@2x.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_close_pressed@2x.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_grip.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_grip.png index 0528049bbd..a5b556fefa 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_grip.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_grip.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_grip@2x.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_grip@2x.png index 1ca1b073c9..e2a91a6b57 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_grip@2x.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_grip@2x.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_grip_disabled.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_grip_disabled.png index 15f55c0560..509c335897 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_grip_disabled.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_grip_disabled.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_grip_disabled@2x.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_grip_disabled@2x.png index 33a4588e8e..cb18102c61 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_grip_disabled@2x.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_grip_disabled@2x.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_grip_focus.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_grip_focus.png index 06e76c31f2..ef4abe6215 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_grip_focus.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_grip_focus.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_grip_focus@2x.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_grip_focus@2x.png index 58c2d06e4f..f4b7479e71 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_grip_focus@2x.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_grip_focus@2x.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_grip_pressed.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_grip_pressed.png index b3a566cdb9..9a365bfc3f 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_grip_pressed.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_grip_pressed.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_grip_pressed@2x.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_grip_pressed@2x.png index e9da940497..e299648d08 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_grip_pressed@2x.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_grip_pressed@2x.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_minimize.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_minimize.png index f609816153..6f85fb6489 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_minimize.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_minimize.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_minimize@2x.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_minimize@2x.png index 30f728f022..2a53538b34 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_minimize@2x.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_minimize@2x.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_minimize_disabled.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_minimize_disabled.png index 29db1c9b18..e498972494 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_minimize_disabled.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_minimize_disabled.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_minimize_disabled@2x.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_minimize_disabled@2x.png index 1572ca2fea..063c8f635d 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_minimize_disabled@2x.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_minimize_disabled@2x.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_minimize_focus.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_minimize_focus.png index cb592f5988..561039af1a 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_minimize_focus.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_minimize_focus.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_minimize_focus@2x.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_minimize_focus@2x.png index 6f6465169d..1f0c2e1b90 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_minimize_focus@2x.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_minimize_focus@2x.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_minimize_pressed.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_minimize_pressed.png index 6962440ace..c1cb9fcb77 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_minimize_pressed.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_minimize_pressed.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_minimize_pressed@2x.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_minimize_pressed@2x.png index cb028272b8..588baf4336 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_minimize_pressed@2x.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_minimize_pressed@2x.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_undock.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_undock.png index 616da991a5..70c4dbcad5 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_undock.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_undock.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_undock@2x.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_undock@2x.png index 511036bf2d..db805412b5 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_undock@2x.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_undock@2x.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_undock_disabled.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_undock_disabled.png index a2b3d25b23..0156d0be80 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_undock_disabled.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_undock_disabled.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_undock_disabled@2x.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_undock_disabled@2x.png index 638ec8104a..ce1909f2c4 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_undock_disabled@2x.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_undock_disabled@2x.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_undock_focus.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_undock_focus.png index ae6dc4a606..746a4d1909 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_undock_focus.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_undock_focus.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_undock_focus@2x.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_undock_focus@2x.png index d06dd1eac8..603d3966cc 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_undock_focus@2x.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_undock_focus@2x.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_undock_pressed.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_undock_pressed.png index e9142ded2c..0b6fc91950 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_undock_pressed.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_undock_pressed.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_undock_pressed@2x.png b/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_undock_pressed@2x.png index a597420f36..736707afc1 100644 Binary files a/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_undock_pressed@2x.png and b/dist/qt_themes/qdarkstyle_midnight_blue/rc/window_undock_pressed@2x.png differ diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/style.qss b/dist/qt_themes/qdarkstyle_midnight_blue/style.qss index 43db5ad0b5..ca80f8b665 100644 --- a/dist/qt_themes/qdarkstyle_midnight_blue/style.qss +++ b/dist/qt_themes/qdarkstyle_midnight_blue/style.qss @@ -235,10 +235,9 @@ https://doc.qt.io/qt-5/stylesheet-examples.html#customizing-qgroupbox --------------------------------------------------------------------------- */ QGroupBox { - font-weight: bold; border: 1px solid #32414B; border-radius: 4px; - margin-top: 12px; + margin-top: 20px; padding: 2px; } diff --git a/docs/Build.md b/docs/Build.md new file mode 100644 index 0000000000..52a671ab1e --- /dev/null +++ b/docs/Build.md @@ -0,0 +1,160 @@ +# Building Eden + +> [!WARNING] +> This guide is intended for developers ONLY. If you are not a developer or packager, you are unlikely to receive support. + +This is a full-fledged guide to build Eden on all supported platforms. + +## Dependencies +First, you must [install some dependencies](Deps.md). + +## Clone +Next, you will want to clone Eden via the terminal: + +```sh +git clone https://git.eden-emu.dev/eden-emu/eden.git +cd eden +``` + +Or use Qt Creator (Create Project -> Import Project -> Git Clone). + +## Android + +Android has a completely different build process than other platforms. See its [dedicated page](build/Android.md). + +## Initial Configuration + +If the configure phase fails, see the `Troubleshooting` section below. Usually, as long as you followed the dependencies guide, the defaults *should* successfully configure and build. + +### Qt Creator + +This is the recommended GUI method for Linux, macOS, and Windows. + +
+Click to Open + +> [!WARNING] +> On MSYS2, to use Qt Creator you are recommended to *also* install Qt from the online installer, ensuring to select the "MinGW" version. + +Open the CMakeLists.txt file in your cloned directory via File -> Open File or Project (Ctrl+O), if you didn't clone Eden via the project import tool. + +Select your desired "kit" (usually, the default is okay). RelWithDebInfo or Release is recommended: + +![Qt Creator kits](img/creator-1.png) + +Hit "Configure Project", then wait for CMake to finish configuring (may take a while on Windows). + +
+ +### Command Line + +This is recommended for *BSD, Solaris, Linux, and MSYS2. MSVC is possible, but not recommended. + +
+Click to Open + +Note that CMake must be in your PATH, and you must be in the cloned Eden directory. On Windows, you must also set up a Visual C++ development environment. This can be done by running `C:\Program Files\Microsoft Visual Studio\2022\Community\VC\Auxiliary\Build\vcvars64.bat` in the same terminal. + +Recommended generators: + +- MSYS2: `MSYS Makefiles` +- MSVC: Install **[ninja](https://ninja-build.org/)** and use `Ninja`, OR use `Visual Studio 17 2022` +- macOS: `Ninja` (preferred) or `Xcode` +- Others: `Ninja` (preferred) or `UNIX Makefiles` + +BUILD_TYPE should usually be `Release` or `RelWithDebInfo` (debug symbols--compiled executable will be large). If you are using a debugger and annoyed with stuff getting optimized out, try `Debug`. + +Also see the [Options](Options.md) page for additional CMake options. + +```sh +cmake -S . -B build -G "GENERATOR" -DCMAKE_BUILD_TYPE= -DYUZU_TESTS=OFF +``` + +If you are on Windows and prefer to use Clang: + +```sh +cmake -S . -B build -G "GENERATOR" -DCMAKE_C_COMPILER=clang-cl -DCMAKE_CXX_COMPILER=clang-cl +``` + +
+ +### [CLion](https://www.jetbrains.com/clion/) + +
+Click to Open + +* Clone the Repository: + + + + + +--- + +### Building & Setup + +* Once Cloned, You will be taken to a prompt like the image below: + + + +* Set the settings to the image below: +* Change `Build type: Release` +* Change `Name: Release` +* Change `Toolchain Visual Studio` +* Change `Generator: Let CMake decide` +* Change `Build directory: build` + + + +* Click OK; now Clion will build a directory and index your code to allow for IntelliSense. Please be patient. +* Once this process has been completed (No loading bar bottom right), you can now build eden +* In the top right, click on the drop-down menu, select all configurations, then select eden + + + +* Now run by clicking the play button or pressing Shift+F10, and eden will auto-launch once built. + + +
+ +## Troubleshooting + +If your initial configure failed: +- *Carefully* re-read the [dependencies guide](Deps.md) +- Clear the CPM cache (`.cache/cpm`) and CMake cache (`/CMakeCache.txt`) +- Evaluate the error and find any related settings +- See the [CPM docs](CPM.md) to see if you may need to forcefully bundle any packages + +Otherwise, feel free to ask for help in Revolt or Discord. + +## Caveats + +Many platforms have quirks, bugs, and other fun stuff that may cause issues when building OR running. See the [Caveats page](Caveats.md) before continuing. + +## Building & Running + +### Qt Creator + +Simply hit Ctrl+B, or the "hammer" icon in the bottom left. To run, hit the "play" icon, or Ctrl+R. + +### Command Line + +If you are not on Windows and are using the `UNIX Makefiles` generator, you must also add `-j$(nproc)` to this command. + +``` +cmake --build build +``` + +Your compiled executable will be in: +- `build/bin/eden.exe` for Windows, +- `build/bin/eden.app/Contents/MacOS/eden` for macOS, +- and `build/bin/eden` for others. + +## Scripts + +Some platforms have convenience scripts provided for building. + +- **[Linux](scripts/Linux.md)** +- **[Windows](scripts/Windows.md)** + +macOS scripts will come soon. \ No newline at end of file diff --git a/docs/CODEOWNERS b/docs/CODEOWNERS new file mode 100644 index 0000000000..dcb97a5e83 --- /dev/null +++ b/docs/CODEOWNERS @@ -0,0 +1,27 @@ +# ui stuff +/src/android @AleksandrPopovich @nyxynx @Producdevity +/src/yuzu @crueter +/src/eden @crueter +/src/frontend_common @crueter +/src/qt_common @crueter + +# docs, meta +/docs @Lizzie @crueter +/.ci @crueter + +# cmake +*.cmake @crueter +*CMakeLists.txt @crueter +*.in @crueter + +# individual stuff +src/web_service @AleksandrPopovich +src/dynarmic @Lizzie +src/core @Lizzie @Maufeat @PavelBARABANOV @MrPurple666 @JPikachu +src/core/hle @Maufeat @PavelBARABANOV @SDK-Chan +src/core/arm @Lizzie @MrPurple666 +src/*_room @AleksandrPopovich +src/video_core @CamilleLaVey @MaranBr @Wildcard @weakboson + +# Global owners/triage +* @CamilleLaVey @Maufeat @crueter @MrPurple666 @MaranBr @Lizzie \ No newline at end of file diff --git a/docs/CPM.md b/docs/CPM.md new file mode 100644 index 0000000000..03d8a039f9 --- /dev/null +++ b/docs/CPM.md @@ -0,0 +1,250 @@ +# CPM + +CPM (CMake Package Manager) is the preferred method of managing dependencies within Eden. + +Global Options: + +- `YUZU_USE_CPM` is set by default on MSVC and Android. Other platforms should use this if certain "required" system dependencies (e.g. OpenSSL) are broken or missing + * If this is `OFF`, required system dependencies will be searched via `find_package`, although certain externals use CPM regardless. +- `CPMUTIL_FORCE_SYSTEM` (default `OFF`): Require all CPM dependencies to use system packages. NOT RECOMMENDED! + * Many packages, e.g. mcl, sirit, xbyak, discord-rpc, are not generally available as a system package. + * You may optionally override these (see CPMUtil section) +- `CPMUTIL_FORCE_BUNDLED` (default `ON` on MSVC and Android, `OFF` elsewhere): Require all CPM dependencies to use bundled packages. + +## CPMUtil + +CPMUtil is a wrapper around CPM that aims to reduce boilerplate and add useful utility functions to make dependency management a piece of cake. + +### AddPackage + +`AddPackage` is the core of the CPMUtil wrapper, and is generally the lowest level you will need to go when dealing with dependencies. + +**Identification/Fetching** + +- `NAME` (required): The package name (must be the same as the `find_package` name if applicable) +- `VERSION`: The minimum version of this package that can be used on the system +- `GIT_VERSION`: The "version" found within git +- `URL`: The URL to fetch. +- `REPO`: The GitHub repo to use (`owner/repo`). + * Only GitHub is supported for now, though other platforms will see support at some point +- `TAG`: The tag to fetch, if applicable. +- `ARTIFACT`: The name of the artifact, if applicable. +- `SHA`: Commit sha to fetch, if applicable. +- `BRANCH`: Branch to fetch, if applicable. + +The following configurations are supported, in descending order of precedence: + +- `URL`: Bare URL download, useful for custom artifacts + * If this is set, `GIT_URL` or `REPO` should be set to allow the dependency viewer to link to the project's Git repository. + * If this is NOT set, `REPO` must be defined. +- `REPO + TAG + ARTIFACT`: GitHub release artifact + * The final download URL will be `https://github.com/${REPO}/releases/download/${TAG}/${ARTIFACT}` + * Useful for prebuilt libraries and prefetched archives +- `REPO + TAG`: GitHub tag archive + * The final download URL will be `https://github.com/${REPO}/archive/refs/tags/${TAG}.tar.gz` + * Useful for pinning to a specific tag, better for build identification +- `REPO + SHA`: GitHub commit archive + * The final download URL will be `https://github.com/${REPO}/archive/${SHA}.zip` + * Useful for pinning to a specific commit +- `REPO + BRANCH`: GitHub branch archive + * The final download URL will be `https://github.com/${REPO}/archive/refs/heads/${BRANCH}.zip` + * Generally not recommended unless the branch is frozen +- `REPO`: GitHub master archive + * The final download URL will be `https://github.com/${REPO}/archive/refs/heads/master.zip` + * Generally not recommended unless the project is dead + +**Hashing** + +Hashing is used for verifying downloads. It's highly recommended to use these. + +- `HASH_ALGO` (default `SHA512`): Hash algorithm to use + +Hashing strategies, descending order of precedence: + +- `HASH`: Bare hash verification, useful for static downloads e.g. commit archives +- `HASH_SUFFIX`: Download the hash as `${DOWNLOAD_URL}.${HASH_SUFFIX}` + * The downloaded hash *must* match the hash algorithm and contain nothing but the hash; no filenames or extra content. +- `HASH_URL`: Download the hash from a separate URL + +**Additional Options** + +- `KEY`: Custom cache key to use (stored as `.cache/cpm/${packagename_lower}/${key}`) + * Default is based on, in descending order of precedence: + - First 4 characters of the sha + - `GIT_VERSION` + - Tag + - `VERSION` + - Otherwise, CPM defaults will be used. This is not recommended as it doesn't produce reproducible caches +- `DOWNLOAD_ONLY`: Whether or not to configure the downloaded package via CMake + * Useful to turn `OFF` if the project doesn't use CMake +- `SOURCE_SUBDIR`: Subdirectory of the project containing a CMakeLists.txt file +- `FIND_PACKAGE_ARGUMENTS`: Arguments to pass to the `find_package` call +- `BUNDLED_PACKAGE`: Set to `ON` to force the usage of a bundled package +- `OPTIONS`: Options to pass to the configuration of the package +- `PATCHES`: Patches to apply to the package, stored in `.patch/${packagename_lower}/0001-patch-name.patch` and so on +- Other arguments can be passed to CPM as well + +**Extra Variables** + +For each added package, users may additionally force usage of the system/bundled package. + +- `${package}_FORCE_SYSTEM`: Require the package to be installed on the system +- `${package}_FORCE_BUNDLED`: Force the package to be fetched and use the bundled version + +**Bundled/System Switching** + +Descending order of precedence: +- If `${package}_FORCE_SYSTEM` is true, requires the package to be on the system +- If `${package}_FORCE_BUNDLED` is true, forcefully uses the bundled package +- If `CPMUTIL_FORCE_SYSTEM` is true, requires the package to be on the system +- If `CPMUTIL_FORCE_BUNDLED` is true, forcefully uses the bundled package +- If the `BUNDLED_PACKAGE` argument is true, forcefully uses the bundled package +- Otherwise, CPM will search for the package first, and if not found, will use the bundled package + +**Identification** + +All dependencies must be identifiable in some way for usage in the dependency viewer. Lists are provided in descending order of precedence. + +URLs: + +- `GIT_URL` +- `REPO` as a GitHub repository +- `URL` + +Versions (bundled): + +- `SHA` +- `GIT_VERSION` +- `VERSION` +- `TAG` +- "unknown" + +If the package is a system package, AddPackage will attempt to determine the package version and append ` (system)` to the identifier. Otherwise, it will be marked as `unknown (system)` + +### AddCIPackage + +Adds a package that follows crueter's CI repository spec. + +- `VERSION` (required): The version to get (the tag will be `v${VERSION}`) +- `NAME` (required): Name used within the artifacts +- `REPO` (required): CI repository, e.g. `crueter-ci/OpenSSL` +- `PACKAGE` (required): `find_package` package name +- `EXTENSION`: Artifact extension (default `tar.zst`) +- `MIN_VERSION`: Minimum version for `find_package`. Only used if platform does not support this package as a bundled artifact +- `DISABLED_PLATFORMS`: List of platforms that lack artifacts for this package. One of: + * `windows-amd64` + * `windows-arm64` + * `android` + * `solaris` + * `freebsd` + * `linux` + * `linux-aarch64` +- `CMAKE_FILENAME`: Custom CMake filename, relative to the package root (default `${PACKAGE_ROOT}/${NAME}.cmake`) + +### AddJsonPackage + +This is the recommended method of usage for CPMUtil. In each directory that utilizes `CPMUtil`, there must be a `cpmfile.json` that defines dependencies in a similar manner to the individual calls. + +The cpmfile is an object of objects, with each sub-object being named according to the package's identifier, e.g. `openssl`, which can then be fetched with `AddJsonPackage()`. Options are designed to map closely to the argument names, and are always strings unless otherwise specified. + +- `package` -> `NAME` (`PACKAGE` for CI), defaults to the object key +- `repo` -> `REPO` +- `version` -> `VERSION` +- `ci` (bool) + +If `ci` is `false`: + +- `hash` -> `HASH` +- `sha` -> `SHA` +- `tag` -> `TAG` +- `artifact` -> `ARTIFACT` +- `git_version` -> `GIT_VERSION` +- `source_subdir` -> `SOURCE_SUBDIR` +- `bundled` -> `BUNDLED_PACKAGE` +- `find_args` -> `FIND_PACKAGE_ARGUMENTS` +- `patches` -> `PATCHES` (array) +- `options` -> `OPTIONS` (array) + +Other arguments aren't currently supported. If you wish to add them, see the `AddJsonPackage` function in `CMakeModules/CPMUtil.cmake`. + +If `ci` is `true`: + +- `name` -> `NAME`, defaults to the object key +- `extension` -> `EXTENSION`, defaults to `tar.zst` +- `min_version` -> `MIN_VERSION` +- `cmake_filename` -> `CMAKE_FILENAME` +- `extension` -> `EXTENSION` + +### Examples + +In order: OpenSSL CI, Boost (tag + artifact), Opus (options + find_args), discord-rpc (sha + options + patches) + +```json +{ + "openssl": { + "ci": true, + "package": "OpenSSL", + "name": "openssl", + "repo": "crueter-ci/OpenSSL", + "version": "3.5.2", + "min_version": "1.1.1" + }, + "boost": { + "package": "Boost", + "repo": "boostorg/boost", + "tag": "boost-1.88.0", + "artifact": "boost-1.88.0-cmake.7z", + "hash": "e5b049e5b61964480ca816395f63f95621e66cb9bcf616a8b10e441e0e69f129e22443acb11e77bc1e8170f8e4171b9b7719891efc43699782bfcd4b3a365f01", + "git_version": "1.88.0", + "version": "1.57" + }, + "opus": { + "package": "Opus", + "repo": "xiph/opus", + "sha": "5ded705cf4", + "hash": "0dc89e58ddda1f3bc6a7037963994770c5806c10e66f5cc55c59286fc76d0544fe4eca7626772b888fd719f434bc8a92f792bdb350c807968b2ac14cfc04b203", + "version": "1.3", + "find_args": "MODULE", + "options": [ + "OPUS_BUILD_TESTING OFF", + "OPUS_BUILD_PROGRAMS OFF", + "OPUS_INSTALL_PKG_CONFIG_MODULE OFF", + "OPUS_INSTALL_CMAKE_CONFIG_MODULE OFF" + ] + }, + "discord-rpc": { + "repo": "discord/discord-rpc", + "sha": "963aa9f3e5", + "hash": "386e1344e9a666d730f2d335ee3aef1fd05b1039febefd51aa751b705009cc764411397f3ca08dffd46205c72f75b235c870c737b2091a4ed0c3b061f5919bde", + "options": [ + "BUILD_EXAMPLES OFF" + ], + "patches": [ + "0001-cmake-version.patch", + "0002-no-clang-format.patch", + "0003-fix-cpp17.patch" + ] + }, +} +``` + +### Inclusion + +To include CPMUtil: + +```cmake +include(CPMUtil) +``` + +## Prefetching + +- To prefetch a CPM dependency (requires cpmfile): + * `tools/cpm-fetch.sh ` +- To prefetch all CPM dependencies: + * `tools/cpm-fetch-all.sh` + +Currently, `cpm-fetch.sh` defines the following directories for cpmfiles (max depth of 2, so subdirs are caught as well): + +`externals src/qt_common src/dynarmic .` + +Whenever you add a new cpmfile, update the script accordingly \ No newline at end of file diff --git a/docs/Caveats.md b/docs/Caveats.md new file mode 100644 index 0000000000..7bc2428bab --- /dev/null +++ b/docs/Caveats.md @@ -0,0 +1,52 @@ +# Caveats + +## Arch Linux + +- httplib AUR package is broken. Set `httplib_FORCE_BUNDLED=ON` if you have it installed. +- Eden is also available as an [AUR package](https://aur.archlinux.org/packages/eden-git). If you are unable to build, either use that or compare your process to the PKGBUILD. + +## Gentoo Linux + +Do not use the system sirit or xbyak packages. + +## macOS + +macOS is largely untested. Expect crashes, significant Vulkan issues, and other fun stuff. + +## Solaris + +Qt Widgets appears to be broken. For now, add `-DENABLE_QT=OFF` to your configure command. In the meantime, a Qt Quick frontend is in the works--check back later! + +This is needed for some dependencies that call cc directly (tz): + +```sh +echo '#!/bin/sh' >cc +echo 'gcc $@' >>cc +chmod +x cc +export PATH="$PATH:$PWD" +``` + +Default MESA is a bit outdated, the following environment variables should be set for a smoother experience: +```sh +export MESA_GL_VERSION_OVERRIDE=4.6 +export MESA_GLSL_VERSION_OVERRIDE=460 +export MESA_EXTENSION_MAX_YEAR=2025 +export MESA_DEBUG=1 +export MESA_VK_VERSION_OVERRIDE=1.3 +# Only if nvidia/intel drm drivers cause crashes, will severely hinder performance +export LIBGL_ALWAYS_SOFTWARE=1 +``` + +- Modify the generated ffmpeg.make (in build dir) if using multiple threads (base system `make` doesn't use `-j4`, so change for `gmake`). +- If using OpenIndiana, due to a bug in SDL2's CMake configuration, audio driver defaults to SunOS ``, which does not exist on OpenIndiana. Using external or bundled SDL2 may solve this. +- System OpenSSL generally does not work. Instead, use `-DYUZU_USE_BUNDLED_OPENSSL=ON` to use a bundled static OpenSSL, or build a system dependency from source. + +## OpenBSD + +After configuration, you may need to modify `externals/ffmpeg/CMakeFiles/ffmpeg-build/build.make` to use `-j$(nproc)` instead of just `-j`. + +## FreeBSD + +Eden is not currently available as a port on FreeBSD, though it is in the works. For now, the recommended method of usage is to compile it yourself. + +The available OpenSSL port (3.0.17) is out-of-date, and using a bundled static library instead is recommended; to do so, add `-DYUZU_USE_BUNDLED_OPENSSL=ON` to your CMake configure command. \ No newline at end of file diff --git a/docs/Deps.md b/docs/Deps.md new file mode 100644 index 0000000000..0e7b7cff62 --- /dev/null +++ b/docs/Deps.md @@ -0,0 +1,214 @@ +# Dependencies + +To build Eden, you MUST have a C++ compiler. +* On Linux, this is usually [GCC](https://gcc.gnu.org/) 11+ or [Clang](https://clang.llvm.org/) v14+ + - GCC 12 also requires Clang 14+ +* On Windows, this is either: + - **[MSVC](https://visualstudio.microsoft.com/downloads/)** (you should select *Community* option), + * *A convenience script to install the Visual Community Studio 2022 with necessary tools is provided in `.ci/windows/install-msvc.ps1`* + - clang-cl - can be downloaded from the MSVC installer, + - or **[MSYS2](https://www.msys2.org)** +* On macOS, this is Apple Clang + - This can be installed with `xcode-select --install` + +The following additional tools are also required: + +* **[CMake](https://www.cmake.org/)** 3.22+ - already included with the Android SDK +* **[Git](https://git-scm.com/)** for version control + - **[Windows installer](https://gitforwindows.org)** +* On Windows, you must install the **[Vulkan SDK](https://vulkan.lunarg.com/sdk/home#windows)** as well + - *A convenience script to install the latest SDK is provided in `.ci/windows/install-vulkan-sdk.ps1`* + +If you are on desktop and plan to use the Qt frontend, you *must* install Qt 6, and optionally Qt Creator (the recommended IDE for building) +* On Linux, *BSD and macOS, this can be done by the package manager + - If you wish to use Qt Creator, append `qtcreator` or `qt-creator` to the commands seen below. +* MSVC/clang-cl users on Windows must install through the [official installer](https://www.qt.io/download-qt-installer-oss) +* Linux and macOS users may choose to use the installer as well. +* MSYS2 can also install Qt 6 via the package manager + +If you are on Windows and NOT building with MSYS2, you may go [back home](Build.md) and continue. + +## Externals +The following are handled by Eden's externals: + +* [FFmpeg](https://ffmpeg.org/) (should use `-DYUZU_USE_EXTERNAL_FFMPEG=ON`) +* [SDL2](https://www.libsdl.org/download-2.0.php) 2.0.18+ (should use `-DYUZU_USE_EXTERNAL_SDL2=ON` OR `-DYUZU_USE_BUNDLED_SDL2=ON` to reduce compile time) + +All other dependencies will be downloaded and built by [CPM](https://github.com/cpm-cmake/CPM.cmake/) if `YUZU_USE_CPM` is on, but will always use system dependencies if available (UNIX-like only): + +* [Boost](https://www.boost.org/users/download/) 1.57.0+ +* [Catch2](https://github.com/catchorg/Catch2) 3.0.1 if `YUZU_TESTS` or `DYNARMIC_TESTS` are on +* [fmt](https://fmt.dev/) 8.0.1+ +* [lz4](http://www.lz4.org) +* [nlohmann\_json](https://github.com/nlohmann/json) 3.8+ +* [OpenSSL](https://www.openssl.org/source/) 1.1.1+ +* [ZLIB](https://www.zlib.net/) 1.2+ +* [zstd](https://facebook.github.io/zstd/) 1.5+ +* [enet](http://enet.bespin.org/) 1.3+ +* [Opus](https://opus-codec.org/) 1.3+ +* [MbedTLS](https://github.com/Mbed-TLS/mbedtls) 3+ + +Vulkan 1.3.274+ is also needed: +* [VulkanUtilityLibraries](https://github.com/KhronosGroup/Vulkan-Utility-Libraries) +* [VulkanHeaders](https://github.com/KhronosGroup/Vulkan-Headers) +* [SPIRV-Tools](https://github.com/KhronosGroup/SPIRV-Tools) +* [SPIRV-Headers](https://github.com/KhronosGroup/SPIRV-Headers) + +Certain other dependencies will be fetched by CPM regardless. System packages *can* be used for these libraries, but many are either not packaged by most distributions OR have issues when used by the system: + +* [SimpleIni](https://github.com/brofield/simpleini) +* [DiscordRPC](https://github.com/eden-emulator/discord-rpc) +* [cubeb](https://github.com/mozilla/cubeb) +* [libusb](https://github.com/libusb/libusb) +* [VulkanMemoryAllocator](https://github.com/GPUOpen-LibrariesAndSDKs/VulkanMemoryAllocator) +* [sirit](https://github.com/eden-emulator/sirit) +* [httplib](https://github.com/yhirose/cpp-httplib) - if `ENABLE_QT_UPDATE_CHECKER` or `ENABLE_WEB_SERVICE` are on +* [cpp-jwt](https://github.com/arun11299/cpp-jwt) 1.4+ - if `ENABLE_WEB_SERVICE` is on +* [unordered-dense](https://github.com/martinus/unordered_dense) +* [mcl](https://github.com/azahar-emu/mcl) - subject to removal + +On amd64: +* [xbyak](https://github.com/herumi/xbyak) - 7.22 or earlier is recommended +* [zycore](https://github.com/zyantific/zycore-c) +* [zydis](https://github.com/zyantific/zydis) 4+ +* Note: zydis and zycore-c MUST match. Using one as a system dependency and the other as a bundled dependency WILL break things + +On aarch64 OR if `DYNARMIC_TESTS` is on: +* [oaknut](https://github.com/merryhime/oaknut) 2.0.1+ + +On riscv64: +* [biscuit](https://github.com/lioncash/biscuit) 0.9.1+ + +## Commands + +These are commands to install all necessary dependencies on various Linux and BSD distributions, as well as macOS. Always review what you're running before you hit Enter! + +Click on the arrows to expand. + +
+Arch Linux + +```sh +sudo pacman -Syu --needed base-devel boost catch2 cmake enet ffmpeg fmt git glslang libzip lz4 mbedtls ninja nlohmann-json openssl opus qt6-base qt6-multimedia sdl2 zlib zstd zip unzip zydis zycore vulkan-headers vulkan-utility-libraries libusb spirv-tools spirv-headers +``` + +* Building with QT Web Engine requires `qt6-webengine` as well. +* Proper Wayland support requires `qt6-wayland` +* GCC 11 or later is required. +
+ +
+Ubuntu, Debian, Mint Linux + +```sh +sudo apt-get install autoconf cmake g++ gcc git glslang-tools libasound2 libboost-context-dev libglu1-mesa-dev libhidapi-dev libpulse-dev libtool libudev-dev libxcb-icccm4 libxcb-image0 libxcb-keysyms1 libxcb-render-util0 libxcb-xinerama0 libxcb-xkb1 libxext-dev libxkbcommon-x11-0 mesa-common-dev nasm ninja-build qt6-base-private-dev libmbedtls-dev catch2 libfmt-dev liblz4-dev nlohmann-json3-dev libzstd-dev libssl-dev libavfilter-dev libavcodec-dev libswscale-dev pkg-config zlib1g-dev libva-dev libvdpau-dev qt6-tools-dev libzydis-dev zydis-tools libzycore-dev +``` + +* Ubuntu 22.04, Linux Mint 20, or Debian 12 or later is required. +* To enable QT Web Engine, add `-DYUZU_USE_QT_WEB_ENGINE=ON` when running CMake. +
+ +
+Fedora Linux + +```sh +sudo dnf install autoconf ccache cmake fmt-devel gcc{,-c++} glslang hidapi-devel json-devel libtool libusb1-devel libzstd-devel lz4-devel nasm ninja-build openssl-devel pulseaudio-libs-devel qt6-linguist qt6-qtbase{-private,}-devel qt6-qtwebengine-devel qt6-qtmultimedia-devel speexdsp-devel wayland-devel zlib-devel ffmpeg-devel libXext-devel +``` + +* Force system libraries via CMake arguments: + * SDL2: `-DYUZU_USE_BUNDLED_SDL2=OFF -DYUZU_USE_EXTERNAL_SDL2=OFF` + * FFmpeg: `-DYUZU_USE_EXTERNAL_FFMPEG=OFF` +* [RPM Fusion](https://rpmfusion.org/) is required for `ffmpeg-devel` +* Fedora 32 or later is required. +* Fedora 36+ users with GCC 12 need Clang and should configure CMake with: +
+ +
+macOS + +Install dependencies from **[Homebrew](https://brew.sh/)** + +```sh +brew install autoconf automake boost ffmpeg fmt glslang hidapi libtool libusb lz4 ninja nlohmann-json openssl pkg-config qt@6 sdl2 speexdsp zlib zstd cmake Catch2 molten-vk vulkan-loader spirv-tools +``` + +If you are compiling on Intel Mac, or are using a Rosetta Homebrew installation, you must replace all references of `/opt/homebrew` with `/usr/local`. + +To run with MoltenVK, install additional dependencies: +```sh +brew install molten-vk vulkan-loader +``` + +
+ +
+FreeBSD + +``` +devel/cmake +devel/sdl20 +devel/boost-libs +devel/catch2 +devel/libfmt +devel/nlohmann-json +devel/ninja +devel/nasm +devel/autoconf +devel/pkgconf +devel/qt6-base + +net/enet + +multimedia/ffnvcodec-headers +multimedia/ffmpeg + +audio/opus + +archivers/liblz4 + +lang/gcc12 + +graphics/glslang +graphics/vulkan-utility-libraries +``` + +If using FreeBSD 12 or prior, use `devel/pkg-config` instead. +
+ +
+OpenBSD + +```sh +pkg_add -u +pkg_add cmake nasm git boost unzip--iconv autoconf-2.72p0 bash ffmpeg glslang gmake llvm-19.1.7p3 qt6 jq fmt nlohmann-json enet boost vulkan-utility-libraries vulkan-headers spirv-headers spirv-tools catch2 sdl2 libusb1.1.0.27 +``` +
+ +
+Solaris / OpenIndiana + +Always consult [the OpenIndiana package list](https://pkg.openindiana.org/hipster/en/index.shtml) to cross-verify availability. + +Run the usual update + install of essential toolings: `sudo pkg update && sudo pkg install git cmake`. + +- **gcc**: `sudo pkg install developer/gcc-14`. +- **clang**: Version 20 is broken, use `sudo pkg install developer/clang-19`. + +Then install the libraries: `sudo pkg install qt6 boost glslang libzip library/lz4 nlohmann-json openssl opus sdl2 zlib compress/zstd unzip pkg-config nasm autoconf mesa library/libdrm header-drm developer/fmt`. +
+ +
+MSYS2 + +* Open the `MSYS2 MinGW 64-bit` shell (`mingw64.exe`) +* Download and install all dependencies using: + * `pacman -Syu git make mingw-w64-x86_64-SDL2 mingw-w64-x86_64-cmake mingw-w64-x86_64-python-pip mingw-w64-x86_64-qt6 mingw-w64-x86_64-toolchain autoconf libtool automake-wrapper` +* Add MinGW binaries to the PATH: + * `echo 'PATH=/mingw64/bin:$PATH' >> ~/.bashrc` +* Add VulkanSDK to the PATH: + * `echo 'PATH=$(readlink -e /c/VulkanSDK/*/Bin/):$PATH' >> ~/.bashrc` +
+ +## All Done + +You may now return to the **[root build guide](Build.md)**. diff --git a/docs/Development.md b/docs/Development.md index 26a10fd062..c223409243 100644 --- a/docs/Development.md +++ b/docs/Development.md @@ -1,12 +1,3 @@ -# Development - -* **Windows**: [Windows Building Guide](./docs/build/Windows.md) -* **Linux**: [Linux Building Guide](./docs/build/Linux.md) -* **Android**: [Android Building Guide](./docs/build/Android.md) -* **Solaris**: [Solaris Building Guide](./docs/build/Solaris.md) -* **FreeBSD**: [FreeBSD Building Guide](./docs/build/FreeBSD.md) -* **macOS**: [macOS Building Guide](./docs/build/macOS.md) - # Guidelines ## License Headers @@ -26,6 +17,8 @@ FIX=true .ci/license-header.sh git commit --amend -a --no-edit ``` +If the work is licensed/vendored from other people or projects, you may omit the license headers. Additionally, if you wish to retain authorship over a piece of code, you may attribute it to yourself; however, the code may be changed at any given point and brought under the attribution of Eden. + ## Pull Requests Pull requests are only to be merged by core developers when properly tested and discussions conclude on Discord or other communication channels. Labels are recommended but not required. However, all PRs MUST be namespaced and optionally typed: ``` @@ -38,11 +31,33 @@ Pull requests are only to be merged by core developers when properly tested and - The level of namespacing is generally left to the committer's choice. - However, we never recommend going more than two levels *except* in `hle`, in which case you may go as many as four levels depending on the specificity of your changes. -- Ocassionally, up to two namespaces may be provided for more clarity. +- Ocassionally, up to two additional namespaces may be provided for more clarity. * Changes that affect the entire project (sans CMake changes) should be namespaced as `meta`. - Maintainers are permitted to change namespaces at will. - Commits within PRs are not required to be namespaced, but it is highly recommended. +## Adding new settings + +When adding new settings, use `tr("Setting:")` if the setting is meant to be a field, otherwise use `tr("Setting")` if the setting is meant to be a Yes/No or checkmark type of setting, see [this short style guide](https://learn.microsoft.com/en-us/style-guide/punctuation/colons#in-ui). + +- The majority of software must work with the default option selected for such setting. Unless the setting significantly degrades performance. +- Debug settings must never be turned on by default. +- Provide reasonable bounds (for example, a setting controlling the amount of VRAM should never be 0). +- The description of the setting must be short and concise, if the setting "does a lot of things" consider splitting the setting into multiple if possible. +- Try to avoid excessive/redundant explainations "recommended for most users and games" can just be "(recommended)". +- Try to not write "slow/fast" options unless it clearly degrades/increases performance for a given case, as most options may modify behaviour that result in different metrics accross different systems. If for example the option is an "accuracy" option, writing "High" is sufficient to imply "Slow". No need to write "High (Slow)". + +Some examples: +- "[...] negatively affecting image quality", "[...] degrading image quality": Same wording but with less filler. +- "[...] this may cause some glitches or crashes in some games", "[...] this may cause soft-crashes": Crashes implies there may be glitches (as crashes are technically a form of a fatal glitch). The entire sentence is structured as "may cause [...] on some games", which is redundant, because "may cause [...] in games" has the same semantic meaning ("may" is a chance that it will occur on "some" given set). +- "FIFO Relaxed is similar to FIFO [...]", "FIFO Relaxed [...]": The name already implies similarity. +- "[...] but may also reduce performance in some cases", "[...] but may degrade performance": Again, "some cases" and "may" implies there is a probability. +- "[...] it can [...] in some cases", "[...] it can [...]": Implied probability. + +Before adding a new setting, consider: +- Does the piece of code that the setting pertains to, make a significant difference if it's on/off? +- Can it be auto-detected? + # IDE setup ## VSCode @@ -76,9 +91,28 @@ cmake --build /tmp/ramdisk -- -j32 sudo umount /tmp/ramdisk ``` -# How to test JIT +# Assets and large files -## gdb +A general rule of thumb, before uploading files: +- PNG files: Use [optipng](https://web.archive.org/web/20240325055059/https://optipng.sourceforge.net/). +- SVG files: Use [svgo](https://github.com/svg/svgo). + +May not be used but worth mentioning nonethless: +- OGG files: Use [OptiVorbis](https://github.com/OptiVorbis/OptiVorbis). +- Video files: Use ffmpeg, preferably re-encode as AV1. + +# Debugging + +## Debugging (host code) + +Ignoring SIGSEGV when debugging in host: + +- **gdb**: `handle all nostop pass`. +- **lldb**: `pro hand -p true -s false -n false SIGSEGV`. + +## Debugging (guest code) + +### gdb Run `./build/bin/eden-cli -c -d -g ` @@ -87,7 +121,7 @@ Then type `target remote localhost:1234` and type `c` (for continue) - and then ### gdb cheatsheet -- `mo `: Monitor commands, `get info`, `get fastmem` and `get mappings` are available. +- `mo `: Monitor commands, `get info`, `get fastmem` and `get mappings` are available. Type `mo help` for more info. - `detach`: Detach from remote (i.e restarting the emulator). - `c`: Continue - `p `: Print variable, `p/x ` for hexadecimal. @@ -110,7 +144,7 @@ Expressions can be `variable_names` or `1234` (numbers) or `*var` (dereference o For more information type `info gdb` and read [the man page](https://man7.org/linux/man-pages/man1/gdb.1.html). -## Bisecting older commits +# Bisecting older commits Since going into the past can be tricky (especially due to the dependencies from the project being lost thru time). This should "restore" the URLs for the respective submodules. diff --git a/docs/Options.md b/docs/Options.md new file mode 100644 index 0000000000..d19aab63f6 --- /dev/null +++ b/docs/Options.md @@ -0,0 +1,69 @@ +# CMake Options + +To change these options, add `-DOPTION_NAME=NEWVALUE` to the command line. + +- On Qt Creator, go to Project -> Current Configuration + +Notes: +- Defaults are marked per-platform. +- "Non-UNIX" just means Windows/MSVC and Android (yes, macOS is UNIX +- Android generally doesn't need to change anything; if you do, go to `src/android/app/build.gradle.kts` +- To set a boolean variable to on, use `ON` for the value; to turn it off, use `OFF` +- If a variable is mentioned as being e.g. "ON" for a specific platform(s), that means it is defaulted to OFF on others +- TYPE is always boolean unless otherwise specified +- Format: + * `OPTION_NAME` (TYPE DEFAULT) DESCRIPTION + +## Options + +- `YUZU_USE_CPM` (ON for non-UNIX) Use CPM to fetch system dependencies (fmt, boost, etc) if needed. Externals will still be fetched. See the [CPM](CPM.md) and [Deps](Deps.md) docs for more info. +- `ENABLE_WEB_SERVICE` (ON) Enable multiplayer service +- `ENABLE_WIFI_SCAN` (OFF) Enable WiFi scanning (requires iw on Linux) - experimental +- `YUZU_USE_BUNDLED_FFMPEG` (ON for non-UNIX) Download (Windows, Android) or build (UNIX) bundled FFmpeg +- `ENABLE_CUBEB` (ON) Enables the cubeb audio backend +- `YUZU_TESTS` (ON) Compile tests - requires Catch2 +- `YUZU_USE_PRECOMPILED_HEADERS` (ON for non-UNIX) Use precompiled headers +- `YUZU_DOWNLOAD_ANDROID_VVL` (ON) Download validation layer binary for Android +- `YUZU_ENABLE_LTO` (OFF) Enable link-time optimization + * Not recommended on Windows + * UNIX may be better off appending `-flto=thin` to compiler args +- `YUZU_DOWNLOAD_TIME_ZONE_DATA` (ON) Always download time zone binaries + * Currently, build fails without this +- `YUZU_USE_FASTER_LD` (ON) Check if a faster linker is available + * Only available on UNIX +- `USE_SYSTEM_MOLTENVK` (OFF, macOS only) Use the system MoltenVK lib (instead of the bundled one) +- `YUZU_TZDB_PATH` (string) Path to a pre-downloaded timezone database (useful for nixOS) +- `ENABLE_OPENSSL` (ON for Linux and *BSD) Enable OpenSSL backend for the ssl service + * Always enabled if the web service is enabled +- `YUZU_USE_BUNDLED_OPENSSL` (ON for MSVC) Download bundled OpenSSL build + * Always on for Android + * Unavailable on OpenBSD + +The following options are desktop only: +- `ENABLE_SDL2` (ON) Enable the SDL2 desktop, audio, and input frontend (HIGHLY RECOMMENDED!) + * Unavailable on Android +- `YUZU_USE_EXTERNAL_SDL2` (ON for non-UNIX) Compiles SDL2 from source +- `YUZU_USE_BUNDLED_SDL2` (ON for MSVC) Download a prebuilt SDL2 + * Unavailable on OpenBSD + * Only enabled if YUZU_USE_CPM and ENABLE_SDL2 are both ON +- `ENABLE_LIBUSB` (ON) Enable the use of the libusb input frontend (HIGHLY RECOMMENDED) +- `ENABLE_OPENGL` (ON) Enable the OpenGL graphics frontend + * Unavailable on Windows/ARM64 and Android +- `ENABLE_QT` (ON) Enable the Qt frontend (recommended) +- `ENABLE_QT_TRANSLATION` (OFF) Enable translations for the Qt frontend +- `ENABLE_QT_UPDATE_CHECKER` (OFF) Enable update checker for the Qt frontend +- `YUZU_USE_BUNDLED_QT` (ON for MSVC) Download bundled Qt binaries + * Note that using **system Qt** requires you to include the Qt CMake directory in `CMAKE_PREFIX_PATH`, e.g: + * `-DCMAKE_PREFIX_PATH=C:/Qt/6.9.0/msvc2022_64/lib/cmake/Qt6` +- `YUZU_QT_MIRROR` (string) What mirror to use for downloading the bundled Qt libraries +- `YUZU_USE_QT_MULTIMEDIA` (OFF) Use QtMultimedia for camera support +- `YUZU_USE_QT_WEB_ENGINE` (OFF) Use QtWebEngine for web applet implementation (requires the huge QtWebEngine dependency; not recommended) +- `USE_DISCORD_PRESENCE` (OFF) Enables Discord Rich Presence (Qt frontend only) +- `YUZU_ROOM` (ON) Enable dedicated room functionality +- `YUZU_ROOM_STANDALONE` (ON) Enable standalone room executable (eden-room) + * Requires `YUZU_ROOM` +- `YUZU_CMD` (ON) Compile the SDL2 frontend (eden-cli) - requires SDL2 +- `YUZU_CRASH_DUMPS` Compile crash dump (Minidump) support" + * Currently only available on Windows and Linux + +See `src/dynarmic/CMakeLists.txt` for additional options--usually, these don't need changed \ No newline at end of file diff --git a/docs/README.md b/docs/README.md new file mode 100644 index 0000000000..71e79e15ea --- /dev/null +++ b/docs/README.md @@ -0,0 +1,10 @@ +# Eden Build Documentation + +This contains documentation created by developers. This contains build instructions, guidelines, instructions/layouts for [cool stuff we made](CPM.md), and more. + +- **[General Build Instructions](Build.md)** +- **[Development Guidelines](Development.md)** +- **[Dependencies](Deps.md)** +- **[CPM - CMake Package Manager](CPM.md)** +- **[Platform-Specific Caveats](Caveats.md)** +- **[User Directory Handling](User.md)** \ No newline at end of file diff --git a/docs/SIGNUP.md b/docs/SIGNUP.md new file mode 100644 index 0000000000..f8cc315830 --- /dev/null +++ b/docs/SIGNUP.md @@ -0,0 +1,56 @@ +# Signup + +To prevent spam and reduce bandwidth usage, registration is closed, and will likely remain this way. + +## Valid Reasons + +First of all, you MUST have a valid reason to sign up for our Git. Valid reasons include (but are not limited to): + +- I want to add feature XYZ... +- I want to improve the macOS version... +- I want to improve the Vulkan backend... +- I want to fix bug XYZ... +- I have experience in XYZ... +- I can provide insight on XYZ... + +## Invalid Reasons + +The following are not valid reasons to sign up: + +- I want to contribute to Eden. + * Be at least somewhat specific! +- I want to support Eden. + * If you wish to support us through development, be more specific; otherwise, to support us, check out our [donations page](https://eden-emu.dev/donations). +- I want to report issues. + * Most of our issue tracking is handled on [GitHub](https://github.com/eden-emulator/Issue-Reports) for the time being. This is subject to change. +- I want to play/use Eden. + * To download and use Eden, see our [Releases page](https://github.com/eden-emulator/Releases/releases)! +- I want to see the source code. + * To see Eden's source code, go [here](https://git.eden-emu.dev/eden-emu/eden). +## Other Information + +Requests that appear suspicious, automated, OR blank will generally be automatically filtered. In cases of suspicion, or any of the invalid reasons listed above, you may receive an email back asking for clarification. + +You MUST use the following format: + +``` +Subject: [Eden Git] Registration Request +Username: +Email: +I wish to sign up because... +``` + +Email notifications are disabled for the time being, so you don't have to use a real email. If you wish to remain anonymous, either send a separate email asking for access to a shared anonymous account, *or* create a fake username and email. + +## Instructions + +If you have read everything above and affirm that you will not abuse your access, click the summary below to get the email to send your request to. + +
+I affirm that I have read ALL of the information above, and will not abuse my access to Eden, nor will I send unnecessary spam requests or the following email. + +Email [crueter@crueter.xyz](mailto:crueter@crueter.xyz) with the format above. + +Once your request is processed, you should receive a confirmation email from crueter with your password alongside a link to a repository containing instructions on SSH, etc. Note that you are required to change your password. If your request is rejected, you will receive a notice as such, asking for clarification if needed. If you do not receive a response in 48 hours, you may send another email. + +
\ No newline at end of file diff --git a/docs/User.md b/docs/User.md new file mode 100644 index 0000000000..cfc81063f8 --- /dev/null +++ b/docs/User.md @@ -0,0 +1,11 @@ +# User configuration + +## Configuration directories + +Eden will store configuration in the following directories: + +- **Windows**: `%AppData%\Roaming`. +- **Android**: Data is stored internally. +- **Linux, macOS, FreeBSD, Solaris, OpenBSD**: `$XDG_DATA_HOME`, `$XDG_CACHE_HOME`, `$XDG_CONFIG_HOME`. + +If a `user` directory is present in the current working directory, that will override all global configuration directories and the emulator will use that instead. diff --git a/docs/build/Android.md b/docs/build/Android.md index 4bb1c868b6..c8ff3a3b1e 100644 --- a/docs/build/Android.md +++ b/docs/build/Android.md @@ -1,42 +1,41 @@ -# Note: These build instructions are a work-in-progress. - -## Dependencies -* [Android Studio](https://developer.android.com/studio) -* [NDK 25.2.9519653 and CMake 3.22.1](https://developer.android.com/studio/projects/install-ndk#default-version) -* [Git](https://git-scm.com/download) - -### WINDOWS ONLY - Additional Dependencies - * **[Visual Studio 2022 Community](https://visualstudio.microsoft.com/downloads/)** - **Make sure to select "Desktop development with C++" support in the installer. Make sure to update to the latest version if already installed.** - * **[Vulkan SDK](https://vulkan.lunarg.com/sdk/home#windows)** - **Make sure to select Latest SDK.** - - A convenience script to install the latest SDK is provided in `.ci\windows\install-vulkan-sdk.ps1`. - -## Cloning Eden with Git -``` -git clone --recursive https://git.eden-emu.dev/eden-emu/eden.git -``` -Eden by default will be cloned into - -* `C:\Users\\eden` on Windows -* `~/eden` on Linux -* And wherever on macOS - -## Building -1. Start Android Studio, on the startup dialog select `Open`. -2. Navigate to the `eden/src/android` directory and click on `OK`. -3. In `Build > Select Build Variant`, select `release` or `relWithDebInfo` as the "Active build variant". -4. Build the project with `Build > Make Project` or run it on an Android device with `Run > Run 'app'`. - -## Building with Terminal -1. Download the SDK and NDK from Android Studio. -2. Navigate to SDK and NDK paths. -3. Then set ANDROID_SDK_ROOT and ANDROID_NDK_ROOT in terminal via -`export ANDROID_SDK_ROOT=path/to/sdk` -`export ANDROID_NDK_ROOT=path/to/ndk`. -4. Navigate to `eden/src/android`. -5. Then Build with `./gradlew assemblerelWithDebInfo`. -6. To build the optimised build use `./gradlew assembleGenshinSpoofRelWithDebInfo`. - -### Script -A convenience script for building is provided in `.ci/android/build.sh`. The built APK can be put into an `artifacts` directory via `.ci/android/package.sh`. On Windows, these must be done in the Git Bash or MinGW terminal. - -### Additional Resources -https://developer.android.com/studio/intro +# Note: These build instructions are a work-in-progress. + +## Dependencies +* [Android Studio](https://developer.android.com/studio) +* [NDK 27+ and CMake 3.22.1](https://developer.android.com/studio/projects/install-ndk#default-version) +* [Git](https://git-scm.com/download) + +### WINDOWS ONLY - Additional Dependencies + * **[Visual Studio 2022 Community](https://visualstudio.microsoft.com/downloads/)** - **Make sure to select "Desktop development with C++" support in the installer. Make sure to update to the latest version if already installed.** + * **[Vulkan SDK](https://vulkan.lunarg.com/sdk/home#windows)** - **Make sure to select Latest SDK.** + - A convenience script to install the latest SDK is provided in `.ci\windows\install-vulkan-sdk.ps1`. + +## Cloning Eden with Git +``` +git clone --recursive https://git.eden-emu.dev/eden-emu/eden.git +``` +Eden by default will be cloned into - +* `C:\Users\\eden` on Windows +* `~/eden` on Linux and macOS + +## Building +1. Start Android Studio, on the startup dialog select `Open`. +2. Navigate to the `eden/src/android` directory and click on `OK`. +3. In `Build > Select Build Variant`, select `release` or `relWithDebInfo` as the "Active build variant". +4. Build the project with `Build > Make Project` or run it on an Android device with `Run > Run 'app'`. + +## Building with Terminal +1. Download the SDK and NDK from Android Studio. +2. Navigate to SDK and NDK paths. +3. Then set ANDROID_SDK_ROOT and ANDROID_NDK_ROOT in terminal via +`export ANDROID_SDK_ROOT=path/to/sdk` +`export ANDROID_NDK_ROOT=path/to/ndk`. +4. Navigate to `eden/src/android`. +5. Then Build with `./gradlew assembleRelWithDebInfo`. +6. To build the optimised build use `./gradlew assembleGenshinSpoofRelWithDebInfo`. + +### Script +A convenience script for building is provided in `.ci/android/build.sh`. The built APK can be put into an `artifacts` directory via `.ci/android/package.sh`. On Windows, these must be done in the Git Bash or MinGW terminal. + +### Additional Resources +https://developer.android.com/studio/intro diff --git a/docs/build/FreeBSD.md b/docs/build/FreeBSD.md deleted file mode 100644 index 059f757361..0000000000 --- a/docs/build/FreeBSD.md +++ /dev/null @@ -1,83 +0,0 @@ -## One word of caution before proceeding. -This is not the usual or preferred way to build programs on FreeBSD. -As of writing there is no official fresh port available for eden-emu, but it is in the works. -After it is available you can find a link to the eden-emu fresh port here and on Escarys github repo. -See this build as an App Image alternative for FreeBSD. - -## Dependencies. -Before we start we need some dependencies. -These dependencies are generally needed to build eden-emu on FreeBSD. - -``` -devel/cmake -devel/sdl20 -devel/boost-libs -devel/catch2 -devel/libfmt -devel/nlohmann-json -devel/ninja -devel/nasm -devel/autoconf -devel/pkgconf -devel/qt6-base - -multimedia/ffnvcodec-headers -multimedia/ffmpeg - -audio/opus - -archivers/liblz4 - -lang/gcc12 - -graphics/glslang -graphics/vulkan-utility-libraries -``` - -If using FreeBSD 12 or prior, use `devel/pkg-config` instead. - ---- - -### Build preparations: -Run the following command to clone eden with git: -```sh -git clone --recursive https://git.eden-emu.dev/eden-emu/eden -``` -You usually want to add the `--recursive` parameter as it also takes care of the external dependencies for you. - -Now change into the eden directory and create a build directory there: -```sh -cd eden -mkdir build -``` - -Change into that build directory: -```sh -cd build -``` - -Now choose one option either 1 or 2, but not both as one option overwrites the other. - -#### 1. Building in Release Mode (usually preferred and the most performant choice): -```sh -cmake .. -GNinja -DYUZU_TESTS=OFF -``` - -#### 2. Building in Release Mode with debugging symbols (useful if you want to debug errors for a eventual fix): -```sh -cmake .. -GNinja -DCMAKE_BUILD_TYPE=RelWithDebInfo -DYUZU_TESTS=ON -``` - -Build the emulator locally: -```sh -ninja -``` - -Optional: If you wish to install eden globally onto your system issue the following command: -```sh -sudo ninja install -``` -OR -```sh -doas -- ninja install -``` diff --git a/docs/build/Linux.md b/docs/build/Linux.md deleted file mode 100644 index d2401443a2..0000000000 --- a/docs/build/Linux.md +++ /dev/null @@ -1,135 +0,0 @@ -### Dependencies - -You'll need to download and install the following to build Eden: - - * [GCC](https://gcc.gnu.org/) v11+ (for C++20 support) & misc - * If GCC 12 is installed, [Clang](https://clang.llvm.org/) v14+ is required for compiling - * [CMake](https://www.cmake.org/) 3.22+ - -The following are handled by Eden's externals: - - * [FFmpeg](https://ffmpeg.org/) - * [SDL2](https://www.libsdl.org/download-2.0.php) 2.0.18+ - * [opus](https://opus-codec.org/downloads/) - -All other dependencies will be downloaded by [vcpkg](https://vcpkg.io/) if needed: - - * [Boost](https://www.boost.org/users/download/) 1.79.0+ - * [Catch2](https://github.com/catchorg/Catch2) 2.13.7 - 2.13.9 - * [fmt](https://fmt.dev/) 8.0.1+ - * [lz4](http://www.lz4.org) 1.8+ - * [nlohmann_json](https://github.com/nlohmann/json) 3.8+ - * [OpenSSL](https://www.openssl.org/source/) - * [ZLIB](https://www.zlib.net/) 1.2+ - * [zstd](https://facebook.github.io/zstd/) 1.5+ - -If an ARM64 build is intended, export `VCPKG_FORCE_SYSTEM_BINARIES=1`. - -Dependencies are listed here as commands that can be copied/pasted. Of course, they should be inspected before being run. - -- Arch / Manjaro: - - `sudo pacman -Syu --needed base-devel boost catch2 cmake ffmpeg fmt git glslang libzip lz4 mbedtls ninja nlohmann-json openssl opus qt6-base qt6-multimedia sdl2 zlib zstd zip unzip` - - Building with QT Web Engine requires `qt6-webengine` as well. - - Proper wayland support requires `qt6-wayland` - - GCC 11 or later is required. - -- Ubuntu / Linux Mint / Debian: - - `sudo apt-get install autoconf cmake g++ gcc git glslang-tools libasound2 libboost-context-dev libglu1-mesa-dev libhidapi-dev libpulse-dev libtool libudev-dev libxcb-icccm4 libxcb-image0 libxcb-keysyms1 libxcb-render-util0 libxcb-xinerama0 libxcb-xkb1 libxext-dev libxkbcommon-x11-0 mesa-common-dev nasm ninja-build qt6-base-private-dev libmbedtls-dev catch2 libfmt-dev liblz4-dev nlohmann-json3-dev libzstd-dev libssl-dev libavfilter-dev libavcodec-dev libswscale-dev pkg-config zlib1g-dev` - - Ubuntu 22.04, Linux Mint 20, or Debian 12 or later is required. - - Users need to manually specify building with QT Web Engine enabled. This is done using the parameter `-DYUZU_USE_QT_WEB_ENGINE=ON` when running CMake. - - Users need to manually disable building SDL2 from externals if they intend to use the version provided by their system by adding the parameters `-DYUZU_USE_EXTERNAL_SDL2=OFF` - -```sh -git submodule update --init --recursive -cmake .. -GNinja -DCMAKE_C_COMPILER=gcc-11 -DCMAKE_CXX_COMPILER=g++-11 -``` - -- Fedora: - - `sudo dnf install autoconf ccache cmake fmt-devel gcc{,-c++} glslang hidapi-devel json-devel libtool libusb1-devel libzstd-devel lz4-devel nasm ninja-build openssl-devel pulseaudio-libs-devel qt6-linguist qt6-qtbase{-private,}-devel qt6-qtwebengine-devel qt6-qtmultimedia-devel speexdsp-devel wayland-devel zlib-devel ffmpeg-devel libXext-devel` - - Fedora 32 or later is required. - - Due to GCC 12, Fedora 36 or later users need to install `clang`, and configure CMake to use it via `-DCMAKE_CXX_COMPILER=clang++ -DCMAKE_C_COMPILER=clang` - - CMake arguments to force system libraries: - - SDL2: `-DYUZU_USE_BUNDLED_SDL2=OFF -DYUZU_USE_EXTERNAL_SDL2=OFF` - - FFmpeg: `-DYUZU_USE_EXTERNAL_FFMPEG=OFF` - - [RPM Fusion](https://rpmfusion.org/) (free) is required to install `ffmpeg-devel` - -### Cloning Eden with Git - -**Master:** - -```bash -git clone --recursive https://git.eden-emu.dev/eden-emu/eden -cd eden -``` - -The `--recursive` option automatically clones the required Git submodules. - -### Building Eden in Release Mode (Optimised) - -If you need to run ctests, you can disable `-DYUZU_TESTS=OFF` and install Catch2. - -```bash -mkdir build && cd build -cmake .. -GNinja -DYUZU_TESTS=OFF -ninja -sudo ninja install -``` -You may also want to include support for Discord Rich Presence by adding `-DUSE_DISCORD_PRESENCE=ON` after `cmake ..` - -`-DYUZU_USE_EXTERNAL_VULKAN_SPIRV_TOOLS=OFF` might be needed if ninja command failed with `undefined reference to symbol 'spvOptimizerOptionsCreate`, reason currently unknown - -Optionally, you can use `cmake-gui ..` to adjust various options (e.g. disable the Qt GUI). - -### Building Eden in Debug Mode (Slow) - -```bash -mkdir build && cd build -cmake .. -GNinja -DCMAKE_BUILD_TYPE=Debug -DYUZU_TESTS=OFF -ninja -``` - -### Building with debug symbols - -```bash -mkdir build && cd build -cmake .. -GNinja -DCMAKE_BUILD_TYPE=RelWithDebInfo -DYUZU -DYUZU_TESTS=OFF -ninja -``` - -### Building with Scripts -A convenience script for building is provided in `.ci/linux/build.sh`. You must provide an arch target for optimization, e.g. `.ci/linux/build.sh amd64`. Valid targets: -- `legacy`: x86_64 generic, only needed for CPUs older than 2013 or so -- `amd64`: x86_64-v3, for CPUs newer than 2013 or so -- `steamdeck` / `zen2`: For Steam Deck or Zen >= 2 AMD CPUs (untested on Intel) -- `rog-ally` / `allyx` / `zen4`: For ROG Ally X or Zen >= 4 AMD CPUs (untested on Intel) -- `aarch64`: For armv8-a CPUs, older than mid-2021 or so -- `armv9`: For armv9-a CPUs, newer than mid-2021 or so -- `native`: Optimize to your native host architecture - -Extra flags to pass to CMake should be passed after the arch target. - -Additional environment variables can be used to control building: -- `NPROC`: Number of threads to use for compilation (defaults to all) -- `TARGET`: Set to `appimage` to disable standalone `eden-cli` and `eden-room` executables -- `BUILD_TYPE`: Sets the build type to use. Defaults to `Release` - -The following environment variables are boolean flags. Set to `true` to enable or `false` to disable: -- `DEVEL` (default FALSE): Disable Qt update checker -- `USE_WEBENGINE` (default FALSE): Enable Qt WebEngine -- `USE_MULTIMEDIA` (default TRUE): Enable Qt Multimedia - -After building, an AppImage can be packaged via `.ci/linux/package.sh`. This script takes the same arch targets as the build script. If the build was created in a different directory, you can specify its path relative to the source directory, e.g. `.ci/linux/package.sh amd64 build-appimage`. Additionally, set the `DEVEL` environment variable to `true` to change the app name to `Eden Nightly`. - -### Running without installing - -After building, the binaries `eden` and `eden-cmd` (depending on your build options) will end up in `build/bin/`. - -```bash -# SDL -cd build/bin/ -./eden-cmd - -# Qt -cd build/bin/ -./eden -``` diff --git a/docs/build/Solaris.md b/docs/build/Solaris.md deleted file mode 100644 index be681d5308..0000000000 --- a/docs/build/Solaris.md +++ /dev/null @@ -1,107 +0,0 @@ -# Building for Solaris - -## Dependencies. -Always consult [the OpenIndiana package list](https://pkg.openindiana.org/hipster/en/index.shtml) to cross-verify availability. - -Run the usual update + install of essential toolings: `sudo pkg update && sudo pkg install git cmake`. - -- **gcc**: `sudo pkg install developer/gcc-14`. -- **clang**: Version 20 is broken, use `sudo pkg install developer/clang-19`. - -Then install the libraies: `sudo pkg install qt6 boost glslang libzip library/lz4 nlohmann-json openssl opus sdl2 zlib compress/zstd unzip pkg-config nasm autoconf mesa library/libdrm header-drm`. - -fmtlib is not available on repositories and has to be manually built: -```sh -git clone --recurisve --depth=1 https://github.com/fmtlib/fmt.git -cd fmt -cmake -DCMAKE_BUILD_TYPE=Release -B build -cmake --build build -sudo cmake --install build -``` - -pkg lz4 doesn't provide a proper CMakeFile to find the library, has to also be manually built: -```sh -git clone --depth=1 https://github.com/lz4/lz4.git -cd lz4 -gmake -sudo gmake install -``` - -Same goes for zstd: -```sh -git clone --depth=1 https://github.com/facebook/zstd.git -cd zstd -cmake -DCMAKE_BUILD_TYPE=Release -B build0 -S build/cmake -cmake --build build0 -cd build0 -sudo gmake install -``` - -pkg SDL2 is also not nice to work with on CMake, save yourself some pain and compile it yourself: -```sh -git clone --depth=1 --branch=release-2.32.8 https://github.com/libsdl-org/SDL -cmake -DCMAKE_BUILD_TYPE=Release -B build -cmake --build build -sudo cmake --install build -``` - -Audio is broken in OpenIndiana [see this issue](https://github.com/libsdl-org/SDL/issues/13405), go into `SDL/CMakeLists.txt` and comment out lines 1468: -```diff -+# set(SDL_AUDIO_DRIVER_SUNAUDIO 1) -+# file(GLOB SUN_AUDIO_SOURCES ${SDL2_SOURCE_DIR}/src/audio/sun/*.c) -+# list(APPEND SOURCE_FILES ${SUN_AUDIO_SOURCES}) -+# set(HAVE_SDL_AUDIO TRUE) -``` -For Solaris this issue does not exist - however PulseAudio crashes on Solaris - so use a different backend. - ---- - -### Build preparations: -Run the following command to clone eden with git: -```sh -git clone --recursive https://git.eden-emu.dev/eden-emu/eden -``` -You usually want to add the `--recursive` parameter as it also takes care of the external dependencies for you. - -Now change into the eden directory and create a build directory there: -```sh -cd eden -mkdir build -``` - -Change into that build directory: `cd build` - -Now choose one option either 1 or 2, but not both as one option overwrites the other. - -### Building - -```sh -# Needed for some dependencies that call cc directly (tz) -echo '#!/bin/sh' >cc -echo 'gcc $@' >>cc -chmod +x cc -export PATH="$PATH:$PWD" -``` - -- **Configure**: `cmake -B build -DYUZU_TESTS=OFF -DYUZU_USE_BUNDLED_SDL2=OFF -DYUZU_USE_EXTERNAL_SDL2=OFF -DYUZU_USE_LLVM_DEMANGLE=OFF -DYUZU_USE_QT_MULTIMEDIA=OFF -DYUZU_USE_QT_WEB_ENGINE=OFF -DYUZU_USE_BUNDLED_VCPKG=OFF -DYUZU_USE_BUNDLED_QT=OFF -DENABLE_QT=OFF -DSDL_AUDIO=OFF -DENABLE_WEB_SERVICE=OFF -DENABLE_QT_UPDATE_CHECKER=OFF`. -- **Build**: `cmake --build build`. -- **Installing**: `sudo cmake --install build`. - -### Running - -Default Mesa is a bit outdated, the following environment variables should be set for a smoother experience: -```sh -export MESA_GL_VERSION_OVERRIDE=4.6 -export MESA_GLSL_VERSION_OVERRIDE=460 -export MESA_EXTENSION_MAX_YEAR=2025 -export MESA_DEBUG=1 -export MESA_VK_VERSION_OVERRIDE=1.3 -# Only if nvidia/intel drm drivers cause crashes, will severely hinder performance -export LIBGL_ALWAYS_SOFTWARE=1 -``` - -### Notes - -- Modify the generated ffmpeg.make (in build dir) if using multiple threads (base system `make` doesn't use `-j4`, so change for `gmake`). -- If using OpenIndiana, due to a bug in SDL2 cmake configuration; Audio driver defaults to SunOS ``, which does not exist on OpenIndiana. -- Enabling OpenSSL requires compiling OpenSSL manually instead of using the provided one from repositores. diff --git a/docs/build/Windows.md b/docs/build/Windows.md deleted file mode 100644 index f753d11385..0000000000 --- a/docs/build/Windows.md +++ /dev/null @@ -1,196 +0,0 @@ -# THIS GUIDE IS INTENDED FOR DEVELOPERS ONLY, SUPPORT WILL ONLY BE GIVEN IF YOU'RE A DEVELOPER. - -## Method I: MSVC Build for Windows - -### Minimal Dependencies - -On Windows, all library dependencies are automatically included within the `externals` folder, or can be downloaded on-demand. To build Eden, you need to install: - - * **[Visual Studio 2022 Community](https://visualstudio.microsoft.com/downloads/)** - **Make sure to select C++ support in the installer. Make sure to update to the latest version if already installed.** - * **[CMake](https://cmake.org/download/)** - Used to generate Visual Studio project files. Does not matter if either 32-bit or 64-bit version is installed. - * **[Vulkan SDK](https://vulkan.lunarg.com/sdk/home#windows)** - **Make sure to select Latest SDK.** - - A convenience script to install the latest SDK is provided in `.ci\windows\install-vulkan-sdk.ps1`. - * **[OpenSSL](https://slproweb.com/products/Win32OpenSSL.html)** - You are recommended to keep the default install location, otherwise you will have to specify a custom OpenSSL root. - - ![2](https://i.imgur.com/giDwuTm.png) - - * **Git** - We recommend [Git for Windows](https://gitforwindows.org). - - ![3](https://i.imgur.com/UeSzkBw.png) - - * While installing Git Bash, you should tell it to include Git in your system path. (Choose the "Git from the command line and also from 3rd-party software" option.) If you missed that, don't worry, you'll just have to manually tell CMake where your git.exe is, since it's used to include version info into the built executable. - - ![4](https://i.imgur.com/x0rRs1t.png) - -### Cloning Eden with Git - -**Master:** - ```cmd - git clone --recursive https://git.eden-emu.dev/eden-emu/eden - cd eden - ``` - - ![9](https://i.imgur.com/CcxIAht.png) - -* *(Note: eden by default downloads to `C:\Users\\eden` (Master) - -### Building - -* Open the CMake GUI application and point it to the `eden` (Master) - - ![10](https://i.imgur.com/qOslIWv.png) - -* For the build directory, use a `/build` subdirectory inside the source directory or some other directory of your choice. (Tell CMake to create it.) - -* Click the "Configure" button and choose `Visual Studio 17 2022`, with `x64` for the optional platform. - - ![12](https://i.imgur.com/DKiREaK.png) - - * *(Note: If you used GitHub's own app to clone, run `git submodule update --init --recursive` to get the remaining dependencies)* - -* If you get an error about missing packages, enable `YUZU_USE_BUNDLED_VCPKG`, and then click Configure again. - - * *(You may also want to disable `YUZU_TESTS` in this case since Catch2 is not yet supported with this.)* - - ![13](https://user-images.githubusercontent.com/22451773/180585999-07316d6e-9751-4d11-b957-1cf57cd7cd58.png) - -* Click "Generate" to create the project files. - - ![15](https://i.imgur.com/5LKg92k.png) - -* Open the solution file `yuzu.sln` in Visual Studio 2022, which is located in the build folder. - - ![16](https://i.imgur.com/208yMml.png) - -* Depending if you want a graphical user interface or not (`eden` has the graphical user interface, while `eden-cmd` doesn't), select `eden` or `eden-cmd` in the Solution Explorer, right-click and `Set as StartUp Project`. - - ![17](https://i.imgur.com/nPMajnn.png) ![18](https://i.imgur.com/BDMLzRZ.png) - -* Select the appropriate build type, Debug for debug purposes or Release for performance (in case of doubt choose Release). - - ![19](https://i.imgur.com/qxg4roC.png) - -* Right-click the project you want to build and press Build in the submenu or press F5. - - ![20](https://i.imgur.com/CkQgOFW.png) - -## Method II: MinGW-w64 Build with MSYS2 - -### Prerequisites to install - -* [MSYS2](https://www.msys2.org) -* [Vulkan SDK](https://vulkan.lunarg.com/sdk/home#windows) - **Make sure to select Latest SDK.** -* Make sure to follow the instructions and update to the latest version by running `pacman -Syu` as many times as needed. - -### Install eden dependencies for MinGW-w64 - -* Open the `MSYS2 MinGW 64-bit` (mingw64.exe) shell -* Download and install all dependencies using: `pacman -Syu git make mingw-w64-x86_64-SDL2 mingw-w64-x86_64-cmake mingw-w64-x86_64-python-pip mingw-w64-x86_64-qt6 mingw-w64-x86_64-toolchain autoconf libtool automake-wrapper` -* Add MinGW binaries to the PATH: `echo 'PATH=/mingw64/bin:$PATH' >> ~/.bashrc` -* Add glslangValidator to the PATH: `echo 'PATH=$(readlink -e /c/VulkanSDK/*/Bin/):$PATH' >> ~/.bashrc` - -### Clone the eden repository with Git - - ```bash - git clone --recursive https://git.eden-emu.dev/eden-emu/eden - cd eden - ``` - -### Run the following commands to build eden (dynamically linked build) - -```bash -mkdir build && cd build -cmake -G "MSYS Makefiles" -DYUZU_USE_BUNDLED_VCPKG=ON -DYUZU_TESTS=OFF .. -make -j$(nproc) -# test eden out with -./bin/eden.exe -``` - -* *(Note: This build is not a static build meaning that you need to include all of the DLLs with the .exe in order to use it!)* - -e.g. -```Bash -cp externals/ffmpeg-*/bin/*.dll bin/ -``` - -Bonus Note: Running programs from inside `MSYS2 MinGW x64` shell has a different %PATH% than directly from explorer. This different %PATH% has the locations of the other DLLs required. -![image](https://user-images.githubusercontent.com/190571/165000848-005e8428-8a82-41b1-bb4d-4ce7797cdac8.png) - - -### Building without Qt (Optional) - -Doesn't require the rather large Qt dependency, but you will lack a GUI frontend: - - * Pass the `-DENABLE_QT=no` flag to cmake - -## Method III: CLion Environment Setup - -### Minimal Dependencies - -To build eden, you need to install the following: - -* [CLion](https://www.jetbrains.com/clion/) - This IDE is not free; for a free alternative, check Method I -* [Vulkan SDK](https://vulkan.lunarg.com/sdk/home#windows) - Make sure to select the Latest SDK. - -### Cloning eden with CLion - -* Clone the Repository: - -![1](https://user-images.githubusercontent.com/42481638/216899046-0d41d7d6-8e4d-4ed2-9587-b57088af5214.png) -![2](https://user-images.githubusercontent.com/42481638/216899061-b2ea274a-e88c-40ae-bf0b-4450b46e9fea.png) -![3](https://user-images.githubusercontent.com/42481638/216899076-0e5988c4-d431-4284-a5ff-9ecff973db76.png) - - - -### Building & Setup - -* Once Cloned, You will be taken to a prompt like the image below: - -![4](https://user-images.githubusercontent.com/42481638/216899092-3fe4cec6-a540-44e3-9e1e-3de9c2fffc2f.png) - -* Set the settings to the image below: -* Change `Build type: Release` -* Change `Name: Release` -* Change `Toolchain Visual Studio` -* Change `Generator: Let CMake decide` -* Change `Build directory: build` - -![5](https://user-images.githubusercontent.com/42481638/216899164-6cee8482-3d59-428f-b1bc-e6dc793c9b20.png) - -* Click OK; now Clion will build a directory and index your code to allow for IntelliSense. Please be patient. -* Once this process has been completed (No loading bar bottom right), you can now build eden -* In the top right, click on the drop-down menu, select all configurations, then select eden - -![6](https://user-images.githubusercontent.com/42481638/216899226-975048e9-bc6d-4ec1-bc2d-bd8a1e15ed04.png) - -* Now run by clicking the play button or pressing Shift+F10, and eden will auto-launch once built. - -![7](https://user-images.githubusercontent.com/42481638/216899275-d514ec6a-e563-470e-81e2-3e04f0429b68.png) - -## Building from the command line with MSVC - -```cmd -git clone --recursive https://git.eden-emu.dev/eden-emu/eden -cd eden -mkdir build -cd build -cmake .. -G "Visual Studio 17 2022" -A x64 -cmake --build . --config Release -``` - -### Building with Scripts -A convenience script for building is provided in `.ci/windows/build.sh`. You must run this with Bash, e.g. Git Bash or MinGW TTY. To use this script, you must have windeployqt installed (usually bundled with Qt) and set the `WINDEPLOYQT` environment variable to its canonical Bash location, e.g. `WINDEPLOYQT="/c/Qt/6.9.1/msvc2022_64/bin/windeployqt6.exe" .ci/windows/build.sh`. - -Extra CMake flags should be placed in the arguments of the script. - -Additional environment variables can be used to control building: -- `BUILD_TYPE`: Sets the build type to use. Defaults to `Release` - -The following environment variables are boolean flags. Set to `true` to enable or `false` to disable: -- `DEVEL` (default FALSE): Disable Qt update checker -- `USE_WEBENGINE` (default FALSE): Enable Qt WebEngine -- `USE_MULTIMEDIA` (default TRUE): Enable Qt Multimedia -- `BUNDLE_QT` (default FALSE): Use bundled Qt - * Note that using system Qt requires you to include the Qt CMake directory in `CMAKE_PREFIX_PATH`, e.g. `.ci/windows/build.sh -DCMAKE_PREFIX_PATH=C:/Qt/6.9.0/msvc2022_64/lib/cmake/Qt6` - -After building, a zip can be packaged via `.ci/windows/package.sh`. Note that you must have 7-zip installed and in your PATH. The resulting zip will be placed into `artifacts` in the source directory. diff --git a/docs/build/macOS.md b/docs/build/macOS.md deleted file mode 100644 index 6cb62273cb..0000000000 --- a/docs/build/macOS.md +++ /dev/null @@ -1,105 +0,0 @@ -Please note this article is intended for development, and eden on macOS is not currently ready for regular use. - -This article was written for developers. eden support for macOS is not ready for casual use. - -## Method I: ninja ---- -If you are compiling on Intel Mac or are using a Rosetta Homebrew installation, you must replace all references of `/opt/homebrew` to `/usr/local`. - -Install dependencies from Homebrew: -```sh -brew install autoconf automake boost ccache ffmpeg fmt glslang hidapi libtool libusb lz4 ninja nlohmann-json openssl pkg-config qt@6 sdl2 speexdsp zlib zlib zstd cmake Catch2 molten-vk vulkan-loader -``` - -Clone the repo -```sh -git clone --recursive https://git.eden-emu.dev/eden-emu/eden - -cd eden -``` - -Build for release -```sh -mkdir build && cd build - -export Qt6_DIR="/opt/homebrew/opt/qt@6/lib/cmake" - -export LIBVULKAN_PATH=/opt/homebrew/lib/libvulkan.dylib - -cmake .. -GNinja -DCMAKE_BUILD_TYPE=RelWithDebInfo -DYUZU_USE_BUNDLED_VCPKG=OFF -DYUZU_TESTS=OFF -DENABLE_WEB_SERVICE=ON -DENABLE_LIBUSB=OFF -DCLANG_FORMAT=ON -DSDL2_DISABLE_INSTALL=ON -DSDL_ALTIVEC=ON - -ninja -``` - -You may also want to include support for Discord Rich Presence by adding `-DUSE_DISCORD_PRESENCE=ON` after `cmake ..` - -Build with debug symbols (vcpkg is not currently used due to broken boost-context library): -```sh -mkdir build && cd build -export Qt6_DIR="/opt/homebrew/opt/qt@6/lib/cmake" -cmake .. -GNinja -DCMAKE_BUILD_TYPE=RelWithDebInfo -DYUZU_USE_BUNDLED_VCPKG=OFF -DYUZU_TESTS=OFF -DENABLE_WEB_SERVICE=OFF -DENABLE_LIBUSB=OFF -ninja -``` - -Run the output: -``` -bin/eden.app/Contents/MacOS/eden -``` - -## Method II: Xcode - ---- -If you are compiling on Intel Mac or are using a Rosetta Homebrew installation, you must replace all references of `/opt/homebrew` to `/usr/local`. - -Install dependencies from Homebrew: -```sh -brew install autoconf automake boost ccache ffmpeg fmt glslang hidapi libtool libusb lz4 ninja nlohmann-json openssl pkg-config qt@6 sdl2 speexdsp zlib zlib zstd cmake Catch2 molten-vk vulkan-loader -``` - -Clone the repo -```sh -git clone --recursive https://git.eden-emu.dev/eden-emu/eden - -cd eden -``` - -Build for release -```sh -mkdir build && cd build - -export Qt6_DIR="/opt/homebrew/opt/qt@6/lib/cmake" - -export LIBVULKAN_PATH=/opt/homebrew/lib/libvulkan.dylib - -cmake .. -GXcode -DCMAKE_BUILD_TYPE=RelWithDebInfo -DYUZU_USE_BUNDLED_VCPKG=OFF -DYUZU_TESTS=OFF -DENABLE_WEB_SERVICE=ON -DENABLE_LIBUSB=OFF -DCLANG_FORMAT=ON -DSDL2_DISABLE_INSTALL=ON -DSDL_ALTIVEC=ON - -xcodebuild build -project eden.xcodeproj -scheme "eden" -configuration "RelWithDebInfo" -``` - -You may also want to include support for Discord Rich Presence by adding `-DUSE_DISCORD_PRESENCE=ON` after `cmake ..` - -Build with debug symbols (vcpkg is not currently used due to broken boost-context library): -```sh -mkdir build && cd build -export Qt6_DIR="/opt/homebrew/opt/qt@6/lib/cmake" -cmake .. -GNinja -DCMAKE_BUILD_TYPE=RelWithDebInfo -DYUZU_USE_BUNDLED_VCPKG=OFF -DYUZU_TESTS=OFF -DENABLE_WEB_SERVICE=OFF -DENABLE_LIBUSB=OFF -ninja -``` - -Run the output: -``` -bin/eden.app/Contents/MacOS/eden -``` - ---- - -To run with MoltenVK, install additional dependencies: -```sh -brew install molten-vk vulkan-loader -``` - -Run with Vulkan loader path: -```sh -export LIBVULKAN_PATH=/opt/homebrew/lib/libvulkan.dylib -bin/eden.app/Contents/MacOS/eden -``` \ No newline at end of file diff --git a/docs/img/creator-1.png b/docs/img/creator-1.png new file mode 100644 index 0000000000..3e43ee7eca Binary files /dev/null and b/docs/img/creator-1.png differ diff --git a/docs/scripts/Linux.md b/docs/scripts/Linux.md new file mode 100644 index 0000000000..8b18e41ced --- /dev/null +++ b/docs/scripts/Linux.md @@ -0,0 +1,31 @@ +# Linux Build Scripts + +* Provided script: `.ci/linux/build.sh` +* Must specify arch target, e.g.: `.ci/linux/build.sh amd64` +* Valid targets: + * `native`: Optimize to your native host architecture + * `legacy`: x86\_64 generic, only needed for CPUs older than 2013 or so + * `amd64`: x86\_64-v3, for CPUs newer than 2013 or so + * `steamdeck` / `zen2`: For Steam Deck or Zen >= 2 AMD CPUs (untested on Intel) + * `rog-ally` / `allyx` / `zen4`: For ROG Ally X or Zen >= 4 AMD CPUs (untested on Intel) + * `aarch64`: For armv8-a CPUs, older than mid-2021 or so + * `armv9`: For armv9-a CPUs, newer than mid-2021 or so +* Extra CMake flags go after the arch target. + +### Environment Variables + +* `NPROC`: Number of compilation threads (default: all cores) +* `TARGET`: Set `appimage` to disable standalone `eden-cli` and `eden-room` +* `BUILD_TYPE`: Build type (default: `Release`) + +Boolean flags (set `true` to enable, `false` to disable): + +* `DEVEL` (default `FALSE`): Disable Qt update checker +* `USE_WEBENGINE` (default `FALSE`): Enable Qt WebEngine +* `USE_MULTIMEDIA` (default `FALSE`): Enable Qt Multimedia + +* AppImage packaging script: `.ci/linux/package.sh` + + * Accepts same arch targets as build script + * Use `DEVEL=true` to rename app to `Eden Nightly` + * This should generally not be used unless in a tailor-made packaging environment (e.g. Actions/CI) \ No newline at end of file diff --git a/docs/scripts/Windows.md b/docs/scripts/Windows.md new file mode 100644 index 0000000000..e60c2119a2 --- /dev/null +++ b/docs/scripts/Windows.md @@ -0,0 +1,29 @@ +# Windows Build Scripts + +* A convenience script for building is provided in `.ci/windows/build.sh`. +* You must run this with Bash, e.g. Git Bash or the MinGW TTY. +* To use this script, you must have `windeployqt` installed (usually bundled with Qt) and set the `WINDEPLOYQT` environment variable to its canonical Bash location: + * `WINDEPLOYQT="/c/Qt/6.9.1/msvc2022_64/bin/windeployqt6.exe" .ci/windows/build.sh`. +* You can use `aqtinstall`, more info on and + + +* Extra CMake flags should be placed in the arguments of the script. + +#### Additional environment variables can be used to control building: + +* `BUILD_TYPE` (default `Release`): Sets the build type to use. + +* The following environment variables are boolean flags. Set to `true` to enable or `false` to disable: + + * `DEVEL` (default FALSE): Disable Qt update checker + * `USE_WEBENGINE` (default FALSE): Enable Qt WebEngine + * `USE_MULTIMEDIA` (default FALSE): Enable Qt Multimedia + * `BUNDLE_QT` (default FALSE): Use bundled Qt + + * Note that using **system Qt** requires you to include the Qt CMake directory in `CMAKE_PREFIX_PATH` + * `.ci/windows/build.sh -DCMAKE_PREFIX_PATH=C:/Qt/6.9.0/msvc2022_64/lib/cmake/Qt6` + +* After building, a zip can be packaged via `.ci/windows/package.sh`. You must have 7-zip installed and in your PATH. + * The resulting zip will be placed into `artifacts` in the source directory. + + diff --git a/externals/CMakeLists.txt b/externals/CMakeLists.txt index 232cc866da..754ba61a0b 100644 --- a/externals/CMakeLists.txt +++ b/externals/CMakeLists.txt @@ -1,4 +1,4 @@ -# SPDX-FileCopyrightText: 2025 Eden Emulator Project +# SPDX-FileCopyrightText: Copyright 2025 Eden Emulator Project # SPDX-License-Identifier: GPL-3.0-or-later # SPDX-FileCopyrightText: 2016 Citra Emulator Project @@ -7,7 +7,6 @@ # TODO(crueter): A lot of this should be moved to the root. # otherwise we have to do weird shenanigans with library linking and stuff -# cpm include(CPMUtil) # Explicitly declare this option here to propagate to the oaknut CPM call @@ -26,40 +25,19 @@ 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 ("${CMAKE_SYSTEM_NAME}" STREQUAL "SunOS") - # Fix regset.h collisions - set(XBYAK_HASH 51f507b0b3) - set(XBYAK_SHA512SUM 4a29a3c2f97f7d5adf667a21a008be03c951fb6696b0d7ba27e7e4afa037bc76eb5e059bb84860e01baf741d4d3ac851b840cd54c99d038812fbe0f1fa6d38a4) + if (PLATFORM_SUN OR PLATFORM_OPENBSD) + AddJsonPackage(xbyak_sun) else() - set(XBYAK_HASH 4e44f4614d) - set(XBYAK_SHA512SUM 5824e92159e07fa36a774aedd3b3ef3541d0241371d522cffa4ab3e1f215fa5097b1b77865b47b2481376c704fa079875557ea463ca63d0a7fd6a8a20a589e70) + AddJsonPackage(xbyak) endif() - - AddPackage( - NAME xbyak - REPO "Lizzie841/xbyak" - SHA ${XBYAK_HASH} - HASH ${XBYAK_SHA512SUM} - BUNDLED_PACKAGE ON - ) endif() # Oaknut (also used by Dynarmic, so needs to be added first) if (ARCHITECTURE_arm64 OR DYNARMIC_TESTS) - AddPackage( - NAME oaknut - VERSION 2.0.1 - REPO "merryhime/oaknut" - SHA 94c726ce03 - HASH d8d082242fa1881abce3c82f8dafa002c4e561e66a69e7fc038af67faa5eff2630f082d3d19579c88c4c9f9488e54552accc8cb90e7ce743efe043b6230c08ac - ) - endif() + AddJsonPackage(oaknut) +endif() # getopt if (MSVC) @@ -69,278 +47,67 @@ endif() # Glad add_subdirectory(glad) -# mbedtls -# TODO(crueter): test local mbedtls -AddPackage( - NAME mbedtls - REPO "Mbed-TLS/mbedtls" - SHA "8c88150ca1" - HASH 769ad1e94c570671071e1f2a5c0f1027e0bf6bcdd1a80ea8ac970f2c86bc45ce4e31aa88d6d8110fc1bed1de81c48bc624df1b38a26f8b340a44e109d784a966 - PATCHES - ${CMAKE_SOURCE_DIR}/.patch/mbedtls/0001-cmake-version.patch -) - -if (mbedtls_ADDED) - target_include_directories(mbedtls PUBLIC ${mbedtls_SOURCE_DIR}/include) - - if (NOT MSVC) - target_compile_options(mbedcrypto PRIVATE - -Wno-unused-but-set-variable - -Wno-string-concatenation) - endif() -endif() - # libusb -if (ENABLE_LIBUSB AND NOT TARGET libusb::usb) +if (ENABLE_LIBUSB) add_subdirectory(libusb) endif() -# SDL2 -if (NOT YUZU_USE_BUNDLED_SDL2) - if (NOT WIN32) - # Yuzu itself needs: Atomic Audio Events Joystick Haptic Sensor Threads Timers - # Since 2.0.18 Atomic+Threads required for HIDAPI/libusb (see https://github.com/libsdl-org/SDL/issues/5095) - # Yuzu-cmd also needs: Video (depends on Loadso/Dlopen) - # CPUinfo also required for SDL Audio, at least until 2.28.0 (see https://github.com/libsdl-org/SDL/issues/7809) - set(SDL_UNUSED_SUBSYSTEMS - File Filesystem - Locale Power Render) - foreach(_SUB ${SDL_UNUSED_SUBSYSTEMS}) - string(TOUPPER ${_SUB} _OPT) - set(SDL_${_OPT} OFF) - endforeach() +# VMA +AddJsonPackage(vulkan-memory-allocator) - set(HIDAPI ON) - endif() - if (APPLE) - set(SDL_FILE ON) - endif() - - if ("${YUZU_SYSTEM_PROFILE}" STREQUAL "steamdeck") - set(SDL_HASH cc016b0046) - set(SDL_PIPEWIRE OFF) # build errors out with this on - set(SDL_SHA512SUM 34d5ef58da6a4f9efa6689c82f67badcbd741f5a4f562a9c2c30828fa839830fb07681c5dc6a7851520e261c8405a416ac0a2c2513b51984fb3b4fa4dcb3e20b) - elseif ("${CMAKE_SYSTEM_NAME}" STREQUAL "SunOS") - set(SDL_HASH d310b5679f) - set(SDL_SHA512SUM cf83e1357eefb8bdf1542850d66d8007d620e4050b5715dc83f4a921d36ce9ce47d0d13c5d85f2b0ff8318d2877eec2f63b931bd47417a81a538327af927da3e) - else() - set(SDL_HASH 2e4c12cd2c) - set(SDL_SHA512SUM d95af47f469a312876f8ab361074a1e7b8083db19935a102d9c6e5887ace6008e64475a8c54b00164b40cad86492bb1b2366084efdd0b2555e5fea6d9c5da80e) - endif() - - AddPackage( - NAME SDL2 - REPO "libsdl-org/SDL" - SHA ${SDL_HASH} - HASH ${SDL_SHA512SUM} - KEY ${YUZU_SYSTEM_PROFILE} - BUNDLED_PACKAGE ${YUZU_USE_EXTERNAL_SDL2} - ) -endif() - -# ENet -AddPackage( - NAME enet - REPO lsalzman/enet - SHA 2662c0de09 - VERSION 1.3 - HASH 3de1beb4fa3d6b1e03eda8dd1e7580694f854af3ed3975dcdabfdcdf76b97f322b9734d35ea7f185855bb490d957842b938b26da4dd2dfded509390f8d2794dd - FIND_PACKAGE_ARGUMENTS "MODULE" -) - -if (enet_ADDED) - target_include_directories(enet INTERFACE ${enet_SOURCE_DIR}/include) -endif() - -AddPackage( - NAME cubeb - REPO "mozilla/cubeb" - SHA fa02160712 - HASH 82d808356752e4064de48c8fecbe7856715ade1e76b53937116bf07129fc1cc5b3de5e4b408de3cd000187ba8dc32ca4109661cb7e0355a52e54bd81b9be1c61 - FIND_PACKAGE_ARGUMENTS "CONFIG" # not sure this works outside of gentoo - OPTIONS - "USE_SANITIZERS OFF" - "BUILD_TESTS OFF" - "BUILD_TOOLS OFF" - "BUNDLE_SPEEX ON" -) - -if (cubeb_ADDED) - if (NOT MSVC) - if (TARGET speex) - target_compile_options(speex PRIVATE -Wno-sign-compare) - endif() - - set_target_properties(cubeb PROPERTIES COMPILE_OPTIONS "") - target_compile_options(cubeb INTERFACE - -Wno-implicit-const-int-float-conversion - -Wno-shadow - -Wno-missing-declarations - -Wno-return-type - -Wno-uninitialized +if (VulkanMemoryAllocator_ADDED) + if (CXX_CLANG) + target_compile_options(VulkanMemoryAllocator INTERFACE + -Wno-unused-variable ) - else() - target_compile_options(cubeb PRIVATE - /wd4456 - /wd4458 + elseif(MSVC) + target_compile_options(VulkanMemoryAllocator INTERFACE + /wd4189 ) endif() endif() -# DiscordRPC -if (USE_DISCORD_PRESENCE) - AddPackage( - NAME discord-rpc - REPO "discord/discord-rpc" - SHA 963aa9f3e5 - HASH 386e1344e9a666d730f2d335ee3aef1fd05b1039febefd51aa751b705009cc764411397f3ca08dffd46205c72f75b235c870c737b2091a4ed0c3b061f5919bde - OPTIONS - "BUILD_EXAMPLES OFF" - PATCHES - ${CMAKE_SOURCE_DIR}/.patch/discord-rpc/0001-cmake-version.patch - ${CMAKE_SOURCE_DIR}/.patch/discord-rpc/0002-no-clang-format.patch - ${CMAKE_SOURCE_DIR}/.patch/discord-rpc/0003-fix-cpp17.patch - ) - - target_include_directories(discord-rpc INTERFACE ${discord-rpc_SOURCE_DIR}/include) - add_library(DiscordRPC::discord-rpc ALIAS discord-rpc) -endif() - # Sirit -# TODO(crueter): spirv-tools doesn't work w/ system -AddPackage( - NAME SPIRV-Headers - REPO "KhronosGroup/SPIRV-Headers" - SHA 4e209d3d7e - HASH f48bbe18341ed55ea0fe280dbbbc0a44bf222278de6e716e143ca1e95ca320b06d4d23d6583fbf8d03e1428f3dac8fa00e5b82ddcd6b425e6236d85af09550a4 -) +AddJsonPackage(sirit) -AddPackage( - NAME sirit - REPO "eden-emulator/sirit" - SHA db1f1e8ab5 - HASH 73eb3a042848c63a10656545797e85f40d142009dfb7827384548a385e1e28e1ac72f42b25924ce530d58275f8638554281e884d72f9c7aaf4ed08690a414b05 - OPTIONS - "SIRIT_USE_SYSTEM_SPIRV_HEADERS ON" -) +if(MSVC AND USE_CCACHE AND sirit_ADDED) + get_target_property(_opts sirit COMPILE_OPTIONS) + list(FILTER _opts EXCLUDE REGEX "/Zi") + list(APPEND _opts "/Z7") + set_target_properties(sirit PROPERTIES COMPILE_OPTIONS "${_opts}") +elseif(MSVC AND CXX_CLANG) + target_compile_options(sirit PRIVATE -Wno-error=unused-command-line-argument) +endif() # httplib -if ((ENABLE_WEB_SERVICE OR ENABLE_QT_UPDATE_CHECKER)) - AddPackage( - NAME httplib - REPO "yhirose/cpp-httplib" - SHA a609330e4c - HASH dd3fd0572f8367d8549e1319fd98368b3e75801a293b0c3ac9b4adb806473a4506a484b3d389dc5bee5acc460cb90af7a20e5df705a1696b56496b30b9ce7ed2 - OPTIONS - "HTTPLIB_REQUIRE_OPENSSL ${ENABLE_OPENSSL}" - ) +if (ENABLE_WEB_SERVICE OR ENABLE_QT_UPDATE_CHECKER) + AddJsonPackage(httplib) endif() # cpp-jwt if (ENABLE_WEB_SERVICE) - AddPackage( - NAME cpp-jwt - VERSION 1.4 - REPO "arun11299/cpp-jwt" - SHA a54fa08a3b - HASH a90f7e594ada0c7e49d5ff9211c71097534e7742a8e44bf0851b0362642a7271d53f5d83d04eeaae2bad17ef3f35e09e6818434d8eaefa038f3d1f7359d0969a - FIND_PACKAGE_ARGUMENTS "CONFIG" - OPTIONS - "CPP_JWT_BUILD_EXAMPLES OFF" - "CPP_JWT_BUILD_TESTS OFF" - "CPP_JWT_USE_VENDORED_NLOHMANN_JSON OFF" - PATCHES - ${CMAKE_SOURCE_DIR}/.patch/cpp-jwt/0001-no-install.patch - ${CMAKE_SOURCE_DIR}/.patch/cpp-jwt/0002-missing-decl.patch - ) + AddJsonPackage(cpp-jwt) endif() -# Opus -AddPackage( - NAME Opus - VERSION 1.3 - REPO "xiph/opus" - SHA 5ded705cf4 - HASH 0dc89e58ddda1f3bc6a7037963994770c5806c10e66f5cc55c59286fc76d0544fe4eca7626772b888fd719f434bc8a92f792bdb350c807968b2ac14cfc04b203 - FIND_PACKAGE_ARGUMENTS "MODULE" - OPTIONS - "OPUS_BUILD_TESTING OFF" - "OPUS_BUILD_PROGRAMS OFF" - "OPUS_INSTALL_PKG_CONFIG_MODULE OFF" - "OPUS_INSTALL_CMAKE_CONFIG_MODULE OFF" -) +# unordered_dense +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) -endif() -# Vulkan-Headers - -# TODO(crueter): Vk1.4 impl - -AddPackage( - NAME VulkanHeaders - VERSION 1.3.274 - REPO "KhronosGroup/Vulkan-Headers" - SHA 89268a6d17 - HASH 3ab349f74298ba72cafb8561015690c0674d428a09fb91ccd3cd3daca83650d190d46d33fd97b0a8fd4223fe6df2bcabae89136fbbf7c0bfeb8776f9448304c8 - BUNDLED_PACKAGE ${YUZU_USE_EXTERNAL_VULKAN_HEADERS} -) - -# CMake's interface generator sucks -# if (VulkanHeaders_ADDED) -# target_include_directories(Vulkan-Headers INTERFACE ${VulkanHeaders_SOURCE_DIR}/include) -# endif() - -# Vulkan-Utility-Libraries -AddPackage( - NAME VulkanUtilityLibraries - REPO "KhronosGroup/Vulkan-Utility-Libraries" - SHA df2e358152 - HASH 3e468c3d9ff93f6d418d71e5527abe0a12c8c7ab5b0b52278bbbee4d02bb87e99073906729b727e0147242b7e3fd5dedf68b803f1878cb4c0e4f730bc2238d79 - BUNDLED_PACKAGE ${YUZU_USE_EXTERNAL_VULKAN_UTILITY_LIBRARIES} -) - -# SPIRV-Tools -if (YUZU_USE_EXTERNAL_VULKAN_SPIRV_TOOLS) - AddPackage( - NAME SPIRV-Tools - REPO "KhronosGroup/SPIRV-Tools" - SHA 40eb301f32 - HASH 58d0fb1047d69373cf24c73e6f78c73a72a6cca3b4df1d9f083b9dcc0962745ef154abf3dbe9b3623b835be20c6ec769431cf11733349f45e7568b3525f707aa - OPTIONS - "SPIRV_SKIP_EXECUTABLES ON" - ) -endif() - -# Boost headers -if (NOT Boost_ADDED AND NOT TARGET Boost::headers) - AddPackage( - NAME boost_headers - REPO "boostorg/headers" - SHA 0456900fad - HASH 50cd75dcdfc5f082225cdace058f47b4fb114a47585f7aee1d22236a910a80b667186254c214fa2fcebac67ae6d37ba4b6e695e1faea8affd6fd42a03cf996e3 - BUNDLED_PACKAGE ON - ) + message(STATUS "FFmpeg Libraries: ${FFmpeg_LIBRARIES}") endif() # TZDB (Time Zone Database) add_subdirectory(nx_tzdb) -# VMA -AddPackage( - NAME VulkanMemoryAllocator - REPO "GPUOpen-LibrariesAndSDKs/VulkanMemoryAllocator" - SHA 1076b348ab - HASH a46b44e4286d08cffda058e856c47f44c7fed3da55fe9555976eb3907fdcc20ead0b1860b0c38319cda01dbf9b1aa5d4b4038c7f1f8fbd97283d837fa9af9772 - FIND_PACKAGE_ARGUMENTS "CONFIG" -) - if (NOT TARGET LLVM::Demangle) add_library(demangle demangle/ItaniumDemangle.cpp) target_include_directories(demangle PUBLIC ./demangle) @@ -369,17 +136,8 @@ if (NOT TARGET RenderDoc::API) add_library(RenderDoc::API ALIAS renderdoc) endif() -if (ANDROID) - if (ARCHITECTURE_arm64) - AddPackage( - NAME libadrenotools - REPO "bylaws/libadrenotools" - SHA 8fae8ce254 - HASH c74fa855f0edebbf25c9bce40b00966daa2447bfc5e15f0cf1a95f86cbf70fc6b02590707edbde16328a0a2a4fb9a1fc419d2dfc22a4a4150971be91892d4edb - PATCHES - ${CMAKE_SOURCE_DIR}/.patch/libadrenotools/0001-linkerns-cpm.patch - ) - endif() +if (ANDROID AND ARCHITECTURE_arm64) + AddJsonPackage(libadrenotools) endif() if (UNIX AND NOT APPLE AND NOT TARGET gamemode::headers) @@ -402,6 +160,7 @@ if (YUZU_CRASH_DUMPS AND NOT TARGET libbreakpad_client) _CRT_NONSTDC_NO_DEPRECATE ) + # TODO AddPackage( NAME breakpad URL "google/breakpad" @@ -445,7 +204,7 @@ if (YUZU_CRASH_DUMPS AND NOT TARGET libbreakpad_client) file(GLOB_RECURSE LIBBREAKPAD_CLIENT_SOURCES ${breakpad_SOURCE_DIR}/src/client/mac/*.cc ${breakpad_SOURCE_DIR}/src/common/mac/*.cc) list(APPEND LIBBREAKPAD_CLIENT_SOURCES ${breakpad_SOURCE_DIR}/src/common/mac/MachIPC.mm) else() - target_compile_definitions(libbreakpad_client PUBLIC -DHAVE_A_OUT_H) + target_compile_definitions(libbreakpad_client PUBLIC HAVE_A_OUT_H) file(GLOB_RECURSE LIBBREAKPAD_CLIENT_SOURCES ${breakpad_SOURCE_DIR}/src/client/linux/*.cc ${breakpad_SOURCE_DIR}/src/common/linux/*.cc) endif() list(APPEND LIBBREAKPAD_CLIENT_SOURCES ${LIBBREAKPAD_COMMON_SOURCES}) @@ -500,19 +259,9 @@ if (YUZU_CRASH_DUMPS AND NOT TARGET libbreakpad_client) endif() endif() -# SimpleIni -if (NOT TARGET SimpleIni::SimpleIni) - add_subdirectory(simpleini) -endif() - # oboe if (ANDROID) - AddPackage( - NAME oboe - REPO "google/oboe" - SHA 2bc873e53c - HASH 02329058a7f9cf7d5039afaae5ab170d9f42f60f4c01e21eaf4f46073886922b057a9ae30eeac040b3ac182f51b9c1bfe9fe1050a2c9f6ce567a1a9a0ec2c768 - ) + AddJsonPackage(oboe) add_library(oboe::oboe ALIAS oboe) endif() diff --git a/externals/cpmfile.json b/externals/cpmfile.json new file mode 100644 index 0000000000..dcafc8f97d --- /dev/null +++ b/externals/cpmfile.json @@ -0,0 +1,74 @@ +{ + "vulkan-memory-allocator": { + "package": "VulkanMemoryAllocator", + "repo": "GPUOpen-LibrariesAndSDKs/VulkanMemoryAllocator", + "sha": "1076b348ab", + "hash": "a46b44e4286d08cffda058e856c47f44c7fed3da55fe9555976eb3907fdcc20ead0b1860b0c38319cda01dbf9b1aa5d4b4038c7f1f8fbd97283d837fa9af9772", + "find_args": "CONFIG" + }, + "sirit": { + "repo": "eden-emulator/sirit", + "sha": "db1f1e8ab5", + "hash": "73eb3a042848c63a10656545797e85f40d142009dfb7827384548a385e1e28e1ac72f42b25924ce530d58275f8638554281e884d72f9c7aaf4ed08690a414b05", + "find_args": "CONFIG", + "options": [ + "SIRIT_USE_SYSTEM_SPIRV_HEADERS ON" + ] + }, + "httplib": { + "repo": "yhirose/cpp-httplib", + "sha": "a609330e4c", + "hash": "dd3fd0572f8367d8549e1319fd98368b3e75801a293b0c3ac9b4adb806473a4506a484b3d389dc5bee5acc460cb90af7a20e5df705a1696b56496b30b9ce7ed2" + }, + "cpp-jwt": { + "version": "1.4", + "repo": "crueter/cpp-jwt", + "sha": "9eaea6328f", + "hash": "e237d92c59ebbf0dc8ac0bae3bc80340e1e9cf430e1c1c9638443001118e16de2b3e9036ac4b98105427667b0386d97831415170b68c432438dcad9ef8052de7", + "find_args": "CONFIG", + "options": [ + "CPP_JWT_USE_VENDORED_NLOHMANN_JSON OFF" + ] + }, + "xbyak_sun": { + "package": "xbyak", + "repo": "herumi/xbyak", + "sha": "9bb219333a", + "hash": "303165d45c8c19387ec49d9fda7d7a4e0d86d4c0153898c23f25ce2d58ece567f44c0bbbfe348239b933edb6e1a1e34f4bc1c0ab3a285bee5da0e548879387b0", + "bundled": true + }, + "xbyak": { + "package": "xbyak", + "repo": "herumi/xbyak", + "sha": "4e44f4614d", + "hash": "5824e92159e07fa36a774aedd3b3ef3541d0241371d522cffa4ab3e1f215fa5097b1b77865b47b2481376c704fa079875557ea463ca63d0a7fd6a8a20a589e70", + "bundled": true + }, + "oaknut": { + "version": "2.0.1", + "repo": "merryhime/oaknut", + "sha": "94c726ce03", + "hash": "d8d082242fa1881abce3c82f8dafa002c4e561e66a69e7fc038af67faa5eff2630f082d3d19579c88c4c9f9488e54552accc8cb90e7ce743efe043b6230c08ac" + }, + "libadrenotools": { + "repo": "bylaws/libadrenotools", + "sha": "8fae8ce254", + "hash": "c74fa855f0edebbf25c9bce40b00966daa2447bfc5e15f0cf1a95f86cbf70fc6b02590707edbde16328a0a2a4fb9a1fc419d2dfc22a4a4150971be91892d4edb", + "patches": [ + "0001-linkerns-cpm.patch" + ] + }, + "oboe": { + "repo": "google/oboe", + "sha": "2bc873e53c", + "hash": "02329058a7f9cf7d5039afaae5ab170d9f42f60f4c01e21eaf4f46073886922b057a9ae30eeac040b3ac182f51b9c1bfe9fe1050a2c9f6ce567a1a9a0ec2c768", + "bundled": true + }, + "unordered-dense": { + "package": "unordered_dense", + "repo": "martinus/unordered_dense", + "sha": "73f3cbb237", + "hash": "c08c03063938339d61392b687562909c1a92615b6ef39ec8df19ea472aa6b6478e70d7d5e33d4a27b5d23f7806daf57fe1bacb8124c8a945c918c7663a9e8532", + "find_args": "CONFIG" + } +} diff --git a/externals/ffmpeg/CMakeLists.txt b/externals/ffmpeg/CMakeLists.txt index 048ab36c17..59397f6acb 100644 --- a/externals/ffmpeg/CMakeLists.txt +++ b/externals/ffmpeg/CMakeLists.txt @@ -1,7 +1,143 @@ +# SPDX-FileCopyrightText: Copyright 2025 Eden Emulator Project +# SPDX-License-Identifier: GPL-3.0-or-later + # SPDX-FileCopyrightText: 2021 yuzu Emulator Project # SPDX-License-Identifier: GPL-2.0-or-later -if (NOT WIN32 AND NOT ANDROID) +include(CPMUtil) + +# 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") @@ -19,13 +155,7 @@ if (NOT WIN32 AND NOT ANDROID) message(FATAL_ERROR "Required program `autoconf` not found.") endif() - AddPackage( - NAME ffmpeg - REPO "FFmpeg/FFmpeg" - SHA c2184b65d2 - HASH 2a89d664119debbb3c006ab1c48d5d7f26e889f4a65ad2e25c8b0503308295123d5a9c5c78bf683aef5ff09acef8c3fc2837f22d3e8c611528b933bf03bcdd97 - SYSTEM_PACKAGE OFF - ) + AddJsonPackage(ffmpeg) set(FFmpeg_PREFIX ${ffmpeg_SOURCE_DIR}) set(FFmpeg_BUILD_DIR ${ffmpeg_BINARY_DIR}) @@ -52,86 +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(LIBVA_FOUND) - pkg_check_modules(LIBDRM libdrm REQUIRED) - 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 - ${LIBDRM_LIBRARIES} - ${X11_LIBRARIES} - ${LIBVA-DRM_LIBRARIES} - ${LIBVA-X11_LIBRARIES} - ${LIBVA_LIBRARIES}) - set(FFmpeg_HWACCEL_FLAGS - --enable-hwaccel=h264_vaapi - --enable-hwaccel=vp8_vaapi - --enable-hwaccel=vp9_vaapi - --enable-libdrm) - list(APPEND FFmpeg_HWACCEL_INCLUDE_DIRS - ${LIBDRM_INCLUDE_DIRS} - ${X11_INCLUDE_DIRS} - ${LIBVA-DRM_INCLUDE_DIRS} - ${LIBVA-X11_INCLUDE_DIRS} - ${LIBVA_INCLUDE_DIRS} - ) - message(STATUS "VA-API found") - else() - set(FFmpeg_HWACCEL_FLAGS --disable-vaapi) - 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 "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 "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 "vdpau libraries version ${VDPAU_VERSION} found") - else() - list(APPEND FFmpeg_HWACCEL_FLAGS --disable-vdpau) - endif() - find_program(BASH_PROGRAM bash REQUIRED) set(FFmpeg_CROSS_COMPILE_FLAGS "") @@ -231,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 new file mode 100644 index 0000000000..9b9efaadde --- /dev/null +++ b/externals/ffmpeg/cpmfile.json @@ -0,0 +1,20 @@ +{ + "ffmpeg": { + "repo": "FFmpeg/FFmpeg", + "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/externals/libusb/CMakeLists.txt b/externals/libusb/CMakeLists.txt index ec7724e874..77a762d070 100644 --- a/externals/libusb/CMakeLists.txt +++ b/externals/libusb/CMakeLists.txt @@ -1,7 +1,30 @@ +# SPDX-FileCopyrightText: Copyright 2025 Eden Emulator Project +# SPDX-License-Identifier: GPL-3.0-or-later + # SPDX-FileCopyrightText: 2020 yuzu Emulator Project # SPDX-License-Identifier: GPL-2.0-or-later -if (MINGW OR (${CMAKE_SYSTEM_NAME} MATCHES "Linux") OR APPLE) +include(CPMUtil) + +# we love our libraries don't we folks +if (PLATFORM_SUN) + set(libusb_bundled ON) +else() + set(libusb_bundled OFF) +endif() + +# TODO(crueter): Fix on Solaris +AddJsonPackage( + NAME libusb + BUNDLED_PACKAGE ${libusb_bundled} +) + +if (NOT libusb_ADDED) + return() +endif() + +# TODO: *BSD fails to compile--may need different configs/symbols +if (MINGW OR PLATFORM_LINUX OR APPLE) set(LIBUSB_FOUND ON CACHE BOOL "libusb is present" FORCE) set(LIBUSB_VERSION "1.0.24" CACHE STRING "libusb version string" FORCE) @@ -19,8 +42,8 @@ if (MINGW OR (${CMAKE_SYSTEM_NAME} MATCHES "Linux") OR APPLE) message(FATAL_ERROR "Required program `libtoolize` not found.") endif() - set(LIBUSB_PREFIX "${CMAKE_CURRENT_BINARY_DIR}/libusb") - set(LIBUSB_SRC_DIR "${CMAKE_CURRENT_SOURCE_DIR}/libusb") + set(LIBUSB_PREFIX "${libusb_BINARY_DIR}") + set(LIBUSB_SRC_DIR "${libusb_SOURCE_DIR}") # Workarounds for MSYS/MinGW if (MSYS) @@ -118,27 +141,27 @@ else() # MINGW OR (${CMAKE_SYSTEM_NAME} MATCHES "Linux") endif() add_library(usb - libusb/libusb/core.c - libusb/libusb/core.c - libusb/libusb/descriptor.c - libusb/libusb/hotplug.c - libusb/libusb/io.c - libusb/libusb/strerror.c - libusb/libusb/sync.c + ${libusb_SOURCE_DIR}/libusb/core.c + ${libusb_SOURCE_DIR}/libusb/core.c + ${libusb_SOURCE_DIR}/libusb/descriptor.c + ${libusb_SOURCE_DIR}/libusb/hotplug.c + ${libusb_SOURCE_DIR}/libusb/io.c + ${libusb_SOURCE_DIR}/libusb/strerror.c + ${libusb_SOURCE_DIR}/libusb/sync.c ) set_target_properties(usb PROPERTIES VERSION 1.0.24) if(WIN32) target_include_directories(usb BEFORE PUBLIC - libusb/libusb + ${libusb_SOURCE_DIR}/libusb PRIVATE "${CMAKE_CURRENT_BINARY_DIR}" ) if (NOT MINGW) - target_include_directories(usb BEFORE PRIVATE libusb/msvc) + target_include_directories(usb BEFORE PRIVATE ${libusb_SOURCE_DIR}/msvc) endif() else() @@ -148,7 +171,7 @@ else() # MINGW OR (${CMAKE_SYSTEM_NAME} MATCHES "Linux") BEFORE PUBLIC - libusb/libusb + ${libusb_SOURCE_DIR}/libusb PRIVATE "${CMAKE_CURRENT_BINARY_DIR}" @@ -157,15 +180,15 @@ else() # MINGW OR (${CMAKE_SYSTEM_NAME} MATCHES "Linux") if(WIN32 OR CYGWIN) target_sources(usb PRIVATE - libusb/libusb/os/threads_windows.c - libusb/libusb/os/windows_winusb.c - libusb/libusb/os/windows_usbdk.c - libusb/libusb/os/windows_common.c + ${libusb_SOURCE_DIR}/libusb/os/threads_windows.c + ${libusb_SOURCE_DIR}/libusb/os/windows_winusb.c + ${libusb_SOURCE_DIR}/libusb/os/windows_usbdk.c + ${libusb_SOURCE_DIR}/libusb/os/windows_common.c ) set(OS_WINDOWS TRUE) elseif(APPLE) target_sources(usb PRIVATE - libusb/libusb/os/darwin_usb.c + ${libusb_SOURCE_DIR}/libusb/os/darwin_usb.c ) find_library(COREFOUNDATION_LIBRARY CoreFoundation) find_library(IOKIT_LIBRARY IOKit) @@ -178,20 +201,20 @@ else() # MINGW OR (${CMAKE_SYSTEM_NAME} MATCHES "Linux") set(OS_DARWIN TRUE) elseif(ANDROID) target_sources(usb PRIVATE - libusb/libusb/os/linux_usbfs.c - libusb/libusb/os/linux_netlink.c + ${libusb_SOURCE_DIR}/libusb/os/linux_usbfs.c + ${libusb_SOURCE_DIR}/libusb/os/linux_netlink.c ) find_library(LOG_LIBRARY log) target_link_libraries(usb PRIVATE ${LOG_LIBRARY}) set(OS_LINUX TRUE) elseif(${CMAKE_SYSTEM_NAME} MATCHES "Linux") target_sources(usb PRIVATE - libusb/libusb/os/linux_usbfs.c + ${libusb_SOURCE_DIR}/libusb/os/linux_usbfs.c ) find_package(Libudev) if(LIBUDEV_FOUND) target_sources(usb PRIVATE - libusb/libusb/os/linux_udev.c + ${libusb_SOURCE_DIR}/libusb/os/linux_udev.c ) target_link_libraries(usb PRIVATE "${LIBUDEV_LIBRARIES}") target_include_directories(usb PRIVATE "${LIBUDEV_INCLUDE_DIR}") @@ -199,26 +222,26 @@ else() # MINGW OR (${CMAKE_SYSTEM_NAME} MATCHES "Linux") set(USE_UDEV TRUE) else() target_sources(usb PRIVATE - libusb/libusb/os/linux_netlink.c + ${libusb_SOURCE_DIR}/libusb/os/linux_netlink.c ) endif() set(OS_LINUX TRUE) elseif(${CMAKE_SYSTEM_NAME} MATCHES "NetBSD") target_sources(usb PRIVATE - libusb/libusb/os/netbsd_usb.c + ${libusb_SOURCE_DIR}/libusb/os/netbsd_usb.c ) set(OS_NETBSD TRUE) elseif(${CMAKE_SYSTEM_NAME} MATCHES "OpenBSD") target_sources(usb PRIVATE - libusb/libusb/os/openbsd_usb.c + ${libusb_SOURCE_DIR}/libusb/os/openbsd_usb.c ) set(OS_OPENBSD TRUE) endif() if(UNIX) target_sources(usb PRIVATE - libusb/libusb/os/events_posix.c - libusb/libusb/os/threads_posix.c + ${libusb_SOURCE_DIR}/libusb/os/events_posix.c + ${libusb_SOURCE_DIR}/libusb/os/threads_posix.c ) find_package(Threads REQUIRED) if(THREADS_HAVE_PTHREAD_ARG) @@ -230,8 +253,8 @@ else() # MINGW OR (${CMAKE_SYSTEM_NAME} MATCHES "Linux") set(THREADS_POSIX TRUE) elseif(WIN32) target_sources(usb PRIVATE - libusb/libusb/os/events_windows.c - libusb/libusb/os/threads_windows.c + ${libusb_SOURCE_DIR}/libusb/os/events_windows.c + ${libusb_SOURCE_DIR}/libusb/os/threads_windows.c ) endif() diff --git a/externals/libusb/cpmfile.json b/externals/libusb/cpmfile.json new file mode 100644 index 0000000000..0bfa0d7a86 --- /dev/null +++ b/externals/libusb/cpmfile.json @@ -0,0 +1,8 @@ +{ + "libusb": { + "repo": "libusb/libusb", + "sha": "c060e9ce30", + "hash": "44647357ba1179020cfa6674d809fc35cf6f89bff1c57252fe3a610110f5013ad678fc6eb5918e751d4384c30e2fe678868dbffc5f85736157e546cb9d10accc", + "find_args": "MODULE" + } +} \ No newline at end of file diff --git a/externals/libusb/libusb b/externals/libusb/libusb deleted file mode 160000 index c060e9ce30..0000000000 --- a/externals/libusb/libusb +++ /dev/null @@ -1 +0,0 @@ -Subproject commit c060e9ce30ac2e3ffb49d94209c4dae77b6642f7 diff --git a/externals/nx_tzdb/CMakeLists.txt b/externals/nx_tzdb/CMakeLists.txt index a86a97b4da..a51939f7c8 100644 --- a/externals/nx_tzdb/CMakeLists.txt +++ b/externals/nx_tzdb/CMakeLists.txt @@ -1,6 +1,11 @@ +# SPDX-FileCopyrightText: Copyright 2025 Eden Emulator Project +# SPDX-License-Identifier: GPL-3.0-or-later + # SPDX-FileCopyrightText: 2023 yuzu Emulator Project # SPDX-License-Identifier: GPL-2.0-or-later +include(CPMUtil) + set(NX_TZDB_INCLUDE_DIR "${CMAKE_CURRENT_BINARY_DIR}/include") add_library(nx_tzdb INTERFACE) @@ -11,33 +16,41 @@ find_program(DATE_PROG date) set(CAN_BUILD_NX_TZDB true) -if (NOT GIT) - set(CAN_BUILD_NX_TZDB false) -endif() -if (NOT GNU_MAKE) - set(CAN_BUILD_NX_TZDB false) -endif() -if (NOT DATE_PROG) - set(CAN_BUILD_NX_TZDB false) -endif() -if (CMAKE_SYSTEM_NAME STREQUAL "Windows" OR ANDROID) +if (NOT (GIT AND GNU_MAKE AND DATE_PROG) OR CMAKE_SYSTEM_NAME STREQUAL "Windows" OR ANDROID) # tzdb_to_nx currently requires a posix-compliant host # MinGW and Android are handled here due to the executable format being different from the host system # TODO (lat9nq): cross-compiling support + set(CAN_BUILD_NX_TZDB false) endif() -set(NX_TZDB_VERSION "250725") -set(NX_TZDB_ARCHIVE "${CPM_SOURCE_CACHE}/nx_tzdb/${NX_TZDB_VERSION}.zip") +if (CAN_BUILD_NX_TZDB AND NOT YUZU_DOWNLOAD_TIME_ZONE_DATA) + message(FATAL_ERROR "Building tzdb is currently unsupported. Check back later.") + add_subdirectory(tzdb_to_nx) + add_dependencies(nx_tzdb x80e) -set(NX_TZDB_ROMFS_DIR "${CPM_SOURCE_CACHE}/nx_tzdb/tz") + set(NX_TZDB_BASE_DIR "${NX_TZDB_DIR}") + set(NX_TZDB_TZ_DIR "${NX_TZDB_BASE_DIR}/zoneinfo") +endif() + +if(NOT YUZU_TZDB_PATH STREQUAL "") + set(NX_TZDB_BASE_DIR "${YUZU_TZDB_PATH}") + set(NX_TZDB_TZ_DIR "${NX_TZDB_BASE_DIR}/zoneinfo") +elseif (MSVC) + # TODO(crueter): This is a terrible solution, but MSVC fails to link without it + # Need to investigate further but I still can't reproduce... + set(NX_TZDB_VERSION "250725") + set(NX_TZDB_ARCHIVE "${CPM_SOURCE_CACHE}/nx_tzdb/${NX_TZDB_VERSION}.zip") + + set(NX_TZDB_BASE_DIR "${CPM_SOURCE_CACHE}/nx_tzdb/tz") + set(NX_TZDB_TZ_DIR "${NX_TZDB_BASE_DIR}/zoneinfo") -if ((NOT CAN_BUILD_NX_TZDB OR YUZU_DOWNLOAD_TIME_ZONE_DATA) AND NOT EXISTS ${NX_TZDB_ROMFS_DIR}) set(NX_TZDB_DOWNLOAD_URL "https://github.com/crueter/tzdb_to_nx/releases/download/${NX_TZDB_VERSION}/${NX_TZDB_VERSION}.zip") message(STATUS "Downloading time zone data from ${NX_TZDB_DOWNLOAD_URL}...") file(DOWNLOAD ${NX_TZDB_DOWNLOAD_URL} ${NX_TZDB_ARCHIVE} STATUS NX_TZDB_DOWNLOAD_STATUS) + list(GET NX_TZDB_DOWNLOAD_STATUS 0 NX_TZDB_DOWNLOAD_STATUS_CODE) if (NOT NX_TZDB_DOWNLOAD_STATUS_CODE EQUAL 0) message(FATAL_ERROR "Time zone data download failed (status code ${NX_TZDB_DOWNLOAD_STATUS_CODE})") @@ -47,13 +60,17 @@ if ((NOT CAN_BUILD_NX_TZDB OR YUZU_DOWNLOAD_TIME_ZONE_DATA) AND NOT EXISTS ${NX_ INPUT ${NX_TZDB_ARCHIVE} DESTINATION - ${NX_TZDB_ROMFS_DIR}) -elseif (CAN_BUILD_NX_TZDB AND NOT YUZU_DOWNLOAD_TIME_ZONE_DATA) - # TODO(crueter): this sucked to do with cpm, see if i can get it to work again - add_subdirectory(tzdb_to_nx) - add_dependencies(nx_tzdb x80e) + ${NX_TZDB_BASE_DIR}) +else() + message(STATUS "Downloading time zone data...") + AddJsonPackage(tzdb) - set(NX_TZDB_ROMFS_DIR "${NX_TZDB_DIR}") + target_include_directories(nx_tzdb + INTERFACE ${CMAKE_CURRENT_SOURCE_DIR}/include + INTERFACE ${NX_TZDB_INCLUDE_DIR}) + + set(NX_TZDB_BASE_DIR "${CPM_SOURCE_CACHE}/nx_tzdb") + set(NX_TZDB_TZ_DIR "${nx_tzdb_SOURCE_DIR}") endif() target_include_directories(nx_tzdb @@ -78,25 +95,25 @@ function(CreateHeader ZONE_PATH HEADER_NAME) target_sources(nx_tzdb PRIVATE ${HEADER_PATH}) endfunction() -CreateHeader(${NX_TZDB_ROMFS_DIR} base) -CreateHeader(${NX_TZDB_ROMFS_DIR}/zoneinfo zoneinfo) -CreateHeader(${NX_TZDB_ROMFS_DIR}/zoneinfo/Africa africa) -CreateHeader(${NX_TZDB_ROMFS_DIR}/zoneinfo/America america) -CreateHeader(${NX_TZDB_ROMFS_DIR}/zoneinfo/America/Argentina america_argentina) -CreateHeader(${NX_TZDB_ROMFS_DIR}/zoneinfo/America/Indiana america_indiana) -CreateHeader(${NX_TZDB_ROMFS_DIR}/zoneinfo/America/Kentucky america_kentucky) -CreateHeader(${NX_TZDB_ROMFS_DIR}/zoneinfo/America/North_Dakota america_north_dakota) -CreateHeader(${NX_TZDB_ROMFS_DIR}/zoneinfo/Antarctica antarctica) -CreateHeader(${NX_TZDB_ROMFS_DIR}/zoneinfo/Arctic arctic) -CreateHeader(${NX_TZDB_ROMFS_DIR}/zoneinfo/Asia asia) -CreateHeader(${NX_TZDB_ROMFS_DIR}/zoneinfo/Atlantic atlantic) -CreateHeader(${NX_TZDB_ROMFS_DIR}/zoneinfo/Australia australia) -CreateHeader(${NX_TZDB_ROMFS_DIR}/zoneinfo/Brazil brazil) -CreateHeader(${NX_TZDB_ROMFS_DIR}/zoneinfo/Canada canada) -CreateHeader(${NX_TZDB_ROMFS_DIR}/zoneinfo/Chile chile) -CreateHeader(${NX_TZDB_ROMFS_DIR}/zoneinfo/Etc etc) -CreateHeader(${NX_TZDB_ROMFS_DIR}/zoneinfo/Europe europe) -CreateHeader(${NX_TZDB_ROMFS_DIR}/zoneinfo/Indian indian) -CreateHeader(${NX_TZDB_ROMFS_DIR}/zoneinfo/Mexico mexico) -CreateHeader(${NX_TZDB_ROMFS_DIR}/zoneinfo/Pacific pacific) -CreateHeader(${NX_TZDB_ROMFS_DIR}/zoneinfo/US us) +CreateHeader(${NX_TZDB_BASE_DIR} base) +CreateHeader(${NX_TZDB_TZ_DIR} zoneinfo) +CreateHeader(${NX_TZDB_TZ_DIR}/Africa africa) +CreateHeader(${NX_TZDB_TZ_DIR}/America america) +CreateHeader(${NX_TZDB_TZ_DIR}/America/Argentina america_argentina) +CreateHeader(${NX_TZDB_TZ_DIR}/America/Indiana america_indiana) +CreateHeader(${NX_TZDB_TZ_DIR}/America/Kentucky america_kentucky) +CreateHeader(${NX_TZDB_TZ_DIR}/America/North_Dakota america_north_dakota) +CreateHeader(${NX_TZDB_TZ_DIR}/Antarctica antarctica) +CreateHeader(${NX_TZDB_TZ_DIR}/Arctic arctic) +CreateHeader(${NX_TZDB_TZ_DIR}/Asia asia) +CreateHeader(${NX_TZDB_TZ_DIR}/Atlantic atlantic) +CreateHeader(${NX_TZDB_TZ_DIR}/Australia australia) +CreateHeader(${NX_TZDB_TZ_DIR}/Brazil brazil) +CreateHeader(${NX_TZDB_TZ_DIR}/Canada canada) +CreateHeader(${NX_TZDB_TZ_DIR}/Chile chile) +CreateHeader(${NX_TZDB_TZ_DIR}/Etc etc) +CreateHeader(${NX_TZDB_TZ_DIR}/Europe europe) +CreateHeader(${NX_TZDB_TZ_DIR}/Indian indian) +CreateHeader(${NX_TZDB_TZ_DIR}/Mexico mexico) +CreateHeader(${NX_TZDB_TZ_DIR}/Pacific pacific) +CreateHeader(${NX_TZDB_TZ_DIR}/US us) diff --git a/externals/nx_tzdb/cpmfile.json b/externals/nx_tzdb/cpmfile.json new file mode 100644 index 0000000000..feb9daf7da --- /dev/null +++ b/externals/nx_tzdb/cpmfile.json @@ -0,0 +1,11 @@ +{ + "tzdb": { + "package": "nx_tzdb", + "repo": "misc/tzdb_to_nx", + "git_host": "git.crueter.xyz", + "artifact": "%VERSION%.zip", + "tag": "%VERSION%", + "hash": "8f60b4b29f285e39c0443f3d5572a73780f3dbfcfd5b35004451fadad77f3a215b2e2aa8d0fffe7e348e2a7b0660882b35228b6178dda8804a14ce44509fd2ca", + "version": "250725" + } +} diff --git a/externals/simpleini/.github/workflows/build-and-test.yml b/externals/simpleini/.github/workflows/build-and-test.yml deleted file mode 100644 index 63251a3217..0000000000 --- a/externals/simpleini/.github/workflows/build-and-test.yml +++ /dev/null @@ -1,61 +0,0 @@ -name: Build and Test - -on: - push: - branches: [ master ] - pull_request: - branches: [ master ] - -jobs: - Windows: - runs-on: windows-latest - steps: - - uses: actions/checkout@v3 - - uses: microsoft/setup-msbuild@v2 - - name: Build - run: | - nuget restore vcproj\SimpleIni.sln - msbuild vcproj\SimpleIni.sln /p:Configuration=Release - - name: Run tests - run: | - cd tests - ..\vcproj\x64\Release\tests.exe - - - Ubuntu: - runs-on: ubuntu-latest - steps: - - name: Install requirements - run: sudo apt install libgtest-dev cmake - - uses: actions/checkout@v3 - - run: make all && make test - - - name: test with CMake (-DSIMPLEINI_USE_SYSTEM_GTEST=OFF) - run: | - cmake . -B build -DSIMPLEINI_USE_SYSTEM_GTEST=OFF - cmake --build build - ctest --verbose --test-dir build - - name: test with CMake (-DSIMPLEINI_USE_SYSTEM_GTEST=ON) - run: | - cmake . -B build-system-gtest -DSIMPLEINI_USE_SYSTEM_GTEST=ON - cmake --build build-system-gtest - ctest --verbose --test-dir build-system-gtest - - MacOS: - runs-on: macos-latest - steps: - - name: Install requirements - run: brew install googletest cmake - - uses: actions/checkout@v3 - - run: make all && make test - - - name: test with CMake (-DSIMPLEINI_USE_SYSTEM_GTEST=OFF) - run: | - cmake . -B build -DSIMPLEINI_USE_SYSTEM_GTEST=OFF - cmake --build build - ctest --verbose --test-dir build - - name: test with CMake (-DSIMPLEINI_USE_SYSTEM_GTEST=ON) - run: | - cmake . -B build-system-gtest -DSIMPLEINI_USE_SYSTEM_GTEST=ON - cmake --build build-system-gtest - ctest --verbose --test-dir build-system-gtest diff --git a/externals/simpleini/.github/workflows/build-doxygen.yml b/externals/simpleini/.github/workflows/build-doxygen.yml deleted file mode 100644 index ac87801e32..0000000000 --- a/externals/simpleini/.github/workflows/build-doxygen.yml +++ /dev/null @@ -1,24 +0,0 @@ -name: Build Doxygen Docs - -on: - workflow_run: - workflows: ["Build and Test"] - types: - - completed - -jobs: - deploy: - if: ${{ github.event.workflow_run.conclusion == 'success' }} - runs-on: ubuntu-latest - steps: - - name: Checkout code - uses: actions/checkout@v2 - - name: Install Doxygen - run: sudo apt-get update && sudo apt-get install -y doxygen graphviz - - name: Generate Doxygen Documentation - run: doxygen Doxyfile - - name: Deploy to GitHub Pages - uses: peaceiris/actions-gh-pages@v3 - with: - github_token: ${{ secrets.GITHUB_TOKEN }} - publish_dir: ./docs/html diff --git a/externals/simpleini/.github/workflows/codeql.yml b/externals/simpleini/.github/workflows/codeql.yml deleted file mode 100644 index a96a71f01e..0000000000 --- a/externals/simpleini/.github/workflows/codeql.yml +++ /dev/null @@ -1,37 +0,0 @@ -name: "CodeQL" - -on: workflow_dispatch -#on: -# push: -# branches: [ "master" ] -# pull_request: -# branches: [ "master" ] - -jobs: - analyze: - name: Analyze - runs-on: ubuntu-latest - permissions: - actions: read - contents: read - security-events: write - - strategy: - fail-fast: false - matrix: - language: [ 'cpp' ] - - steps: - - name: Checkout repository - uses: actions/checkout@v3 - - - name: Initialize CodeQL - uses: github/codeql-action/init@v2 - with: - languages: ${{ matrix.language }} - - - name: Autobuild - uses: github/codeql-action/autobuild@v2 - - - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v2 diff --git a/externals/simpleini/.gitignore b/externals/simpleini/.gitignore deleted file mode 100644 index 47ef8d9de9..0000000000 --- a/externals/simpleini/.gitignore +++ /dev/null @@ -1,365 +0,0 @@ -## Ignore Visual Studio temporary files, build results, and -## files generated by popular Visual Studio add-ons. -## -## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore - -docs - - -# User-specific files -*.rsuser -*.suo -*.user -*.userosscache -*.sln.docstates - -# User-specific files (MonoDevelop/Xamarin Studio) -*.userprefs - -# Mono auto generated files -mono_crash.* - -# Build results -[Dd]ebug/ -[Dd]ebugPublic/ -[Rr]elease/ -[Rr]eleases/ -x64/ -x86/ -[Ww][Ii][Nn]32/ -[Aa][Rr][Mm]/ -[Aa][Rr][Mm]64/ -bld/ -[Bb]in/ -[Oo]bj/ -[Ll]og/ -[Ll]ogs/ -build/ -build-system-gtest/ - -# Visual Studio 2015/2017 cache/options directory -.vs/ -# Uncomment if you have tasks that create the project's static files in wwwroot -#wwwroot/ - -# Visual Studio 2017 auto generated files -Generated\ Files/ - -# MSTest test Results -[Tt]est[Rr]esult*/ -[Bb]uild[Ll]og.* - -# NUnit -*.VisualState.xml -TestResult.xml -nunit-*.xml - -# Build Results of an ATL Project -[Dd]ebugPS/ -[Rr]eleasePS/ -dlldata.c - -# Benchmark Results -BenchmarkDotNet.Artifacts/ - -# .NET Core -project.lock.json -project.fragment.lock.json -artifacts/ - -# ASP.NET Scaffolding -ScaffoldingReadMe.txt - -# StyleCop -StyleCopReport.xml - -# Files built by Visual Studio -*_i.c -*_p.c -*_h.h -*.ilk -*.meta -*.obj -*.iobj -*.pch -*.pdb -*.ipdb -*.pgc -*.pgd -*.rsp -*.sbr -*.tlb -*.tli -*.tlh -*.tmp -*.tmp_proj -*_wpftmp.csproj -*.log -*.vspscc -*.vssscc -.builds -*.pidb -*.svclog -*.scc - -# Chutzpah Test files -_Chutzpah* - -# Visual C++ cache files -ipch/ -*.aps -*.ncb -*.opendb -*.opensdf -*.sdf -*.cachefile -*.VC.db -*.VC.VC.opendb - -# Visual Studio profiler -*.psess -*.vsp -*.vspx -*.sap - -# Visual Studio Trace Files -*.e2e - -# TFS 2012 Local Workspace -$tf/ - -# Guidance Automation Toolkit -*.gpState - -# ReSharper is a .NET coding add-in -_ReSharper*/ -*.[Rr]e[Ss]harper -*.DotSettings.user - -# TeamCity is a build add-in -_TeamCity* - -# DotCover is a Code Coverage Tool -*.dotCover - -# AxoCover is a Code Coverage Tool -.axoCover/* -!.axoCover/settings.json - -# Coverlet is a free, cross platform Code Coverage Tool -coverage*[.json, .xml, .info] - -# Visual Studio code coverage results -*.coverage -*.coveragexml - -# NCrunch -_NCrunch_* -.*crunch*.local.xml -nCrunchTemp_* - -# MightyMoose -*.mm.* -AutoTest.Net/ - -# Web workbench (sass) -.sass-cache/ - -# Installshield output folder -[Ee]xpress/ - -# DocProject is a documentation generator add-in -DocProject/buildhelp/ -DocProject/Help/*.HxT -DocProject/Help/*.HxC -DocProject/Help/*.hhc -DocProject/Help/*.hhk -DocProject/Help/*.hhp -DocProject/Help/Html2 -DocProject/Help/html - -# Click-Once directory -publish/ - -# Publish Web Output -*.[Pp]ublish.xml -*.azurePubxml -# Note: Comment the next line if you want to checkin your web deploy settings, -# but database connection strings (with potential passwords) will be unencrypted -*.pubxml -*.publishproj - -# Microsoft Azure Web App publish settings. Comment the next line if you want to -# checkin your Azure Web App publish settings, but sensitive information contained -# in these scripts will be unencrypted -PublishScripts/ - -# NuGet Packages -*.nupkg -# NuGet Symbol Packages -*.snupkg -# The packages folder can be ignored because of Package Restore -**/[Pp]ackages/* -# except build/, which is used as an MSBuild target. -!**/[Pp]ackages/build/ -# Uncomment if necessary however generally it will be regenerated when needed -#!**/[Pp]ackages/repositories.config -# NuGet v3's project.json files produces more ignorable files -*.nuget.props -*.nuget.targets - -# Microsoft Azure Build Output -csx/ -*.build.csdef - -# Microsoft Azure Emulator -ecf/ -rcf/ - -# Windows Store app package directories and files -AppPackages/ -BundleArtifacts/ -Package.StoreAssociation.xml -_pkginfo.txt -*.appx -*.appxbundle -*.appxupload - -# Visual Studio cache files -# files ending in .cache can be ignored -*.[Cc]ache -# but keep track of directories ending in .cache -!?*.[Cc]ache/ - -# Others -ClientBin/ -~$* -*~ -*.dbmdl -*.dbproj.schemaview -*.jfm -*.pfx -*.publishsettings -orleans.codegen.cs - -# Including strong name files can present a security risk -# (https://github.com/github/gitignore/pull/2483#issue-259490424) -#*.snk - -# Since there are multiple workflows, uncomment next line to ignore bower_components -# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622) -#bower_components/ - -# RIA/Silverlight projects -Generated_Code/ - -# Backup & report files from converting an old project file -# to a newer Visual Studio version. Backup files are not needed, -# because we have git ;-) -_UpgradeReport_Files/ -Backup*/ -UpgradeLog*.XML -UpgradeLog*.htm -ServiceFabricBackup/ -*.rptproj.bak - -# SQL Server files -*.mdf -*.ldf -*.ndf - -# Business Intelligence projects -*.rdl.data -*.bim.layout -*.bim_*.settings -*.rptproj.rsuser -*- [Bb]ackup.rdl -*- [Bb]ackup ([0-9]).rdl -*- [Bb]ackup ([0-9][0-9]).rdl - -# Microsoft Fakes -FakesAssemblies/ - -# GhostDoc plugin setting file -*.GhostDoc.xml - -# Node.js Tools for Visual Studio -.ntvs_analysis.dat -node_modules/ - -# Visual Studio 6 build log -*.plg - -# Visual Studio 6 workspace options file -*.opt - -# Visual Studio 6 auto-generated workspace file (contains which files were open etc.) -*.vbw - -# Visual Studio LightSwitch build output -**/*.HTMLClient/GeneratedArtifacts -**/*.DesktopClient/GeneratedArtifacts -**/*.DesktopClient/ModelManifest.xml -**/*.Server/GeneratedArtifacts -**/*.Server/ModelManifest.xml -_Pvt_Extensions - -# Paket dependency manager -.paket/paket.exe -paket-files/ - -# FAKE - F# Make -.fake/ - -# CodeRush personal settings -.cr/personal - -# Python Tools for Visual Studio (PTVS) -__pycache__/ -*.pyc - -# Cake - Uncomment if you are using it -# tools/** -# !tools/packages.config - -# Tabs Studio -*.tss - -# Telerik's JustMock configuration file -*.jmconfig - -# BizTalk build output -*.btp.cs -*.btm.cs -*.odx.cs -*.xsd.cs - -# OpenCover UI analysis results -OpenCover/ - -# Azure Stream Analytics local run output -ASALocalRun/ - -# MSBuild Binary and Structured Log -*.binlog - -# NVidia Nsight GPU debugger configuration file -*.nvuser - -# MFractors (Xamarin productivity tool) working folder -.mfractor/ - -# Local History for Visual Studio -.localhistory/ - -# BeatPulse healthcheck temp database -healthchecksdb - -# Backup folder for Package Reference Convert tool in Visual Studio 2017 -MigrationBackup/ - -# Ionide (cross platform F# VS Code tools) working folder -.ionide/ - -# Fody - auto-generated XML schema -FodyWeavers.xsd diff --git a/externals/simpleini/CMakeLists.txt b/externals/simpleini/CMakeLists.txt deleted file mode 100644 index 3b96f82298..0000000000 --- a/externals/simpleini/CMakeLists.txt +++ /dev/null @@ -1,66 +0,0 @@ -cmake_minimum_required(VERSION 3.14) - -project( - SimpleIni - VERSION 4.22 - DESCRIPTION "Cross-platform C++ library providing a simple API to read and write INI-style configuration files" - LANGUAGES CXX -) - -option(SIMPLEINI_USE_SYSTEM_GTEST "Use system GoogleTest dependency" OFF) - -# disable in-source builds -if(CMAKE_SOURCE_DIR STREQUAL CMAKE_BINARY_DIR) - message(FATAL_ERROR "In-source builds are not allowed, use cmake -S . -B build.") -endif() - - -# Define library paths and include directories -set(EXPORT_NAMESPACE "${PROJECT_NAME}::") -set(HEADERS SimpleIni.h) - -add_library(${PROJECT_NAME} INTERFACE) -add_library(${EXPORT_NAMESPACE}${PROJECT_NAME} ALIAS ${PROJECT_NAME}) - -include(GNUInstallDirs) - -include(CMakePackageConfigHelpers) -write_basic_package_version_file(${CMAKE_CURRENT_BINARY_DIR}/${PROJECT_NAME}ConfigVersion.cmake - VERSION ${PROJECT_VERSION} - COMPATIBILITY SameMajorVersion -) -configure_package_config_file(${PROJECT_NAME}Config.cmake.in - ${CMAKE_CURRENT_BINARY_DIR}/${PROJECT_NAME}Config.cmake - INSTALL_DESTINATION ${CMAKE_INSTALL_DATADIR}/cmake/${PROJECT_NAME} -) - -install(FILES SimpleIni.h - DESTINATION ${CMAKE_INSTALL_INCLUDEDIR} -) - -install(TARGETS ${PROJECT_NAME} - EXPORT ${PROJECT_NAME}Targets -) - -install(FILES - ${CMAKE_CURRENT_BINARY_DIR}/${PROJECT_NAME}Config.cmake - ${CMAKE_CURRENT_BINARY_DIR}/${PROJECT_NAME}ConfigVersion.cmake - DESTINATION ${CMAKE_INSTALL_DATADIR}/cmake/${PROJECT_NAME} -) -install(EXPORT ${PROJECT_NAME}Targets - DESTINATION ${CMAKE_INSTALL_DATADIR}/cmake/${PROJECT_NAME} - NAMESPACE ${EXPORT_NAMESPACE} -) - -target_include_directories(${PROJECT_NAME} INTERFACE - $ - $ -) - -# only build tests when top level and testing enabled -if(CMAKE_PROJECT_NAME STREQUAL PROJECT_NAME) - include(CTest) - if(BUILD_TESTING) - add_subdirectory(tests) - endif() -endif() diff --git a/externals/simpleini/ConvertUTF.c b/externals/simpleini/ConvertUTF.c deleted file mode 100644 index de6bf13ee8..0000000000 --- a/externals/simpleini/ConvertUTF.c +++ /dev/null @@ -1,578 +0,0 @@ -/* - * https://web.archive.org/web/20090529064329/http://www.unicode.org:80/Public/PROGRAMS/CVTUTF/ - * - * Copyright 2001-2004 Unicode, Inc. - * - * Disclaimer - * - * This source code is provided as is by Unicode, Inc. No claims are - * made as to fitness for any particular purpose. No warranties of any - * kind are expressed or implied. The recipient agrees to determine - * applicability of information provided. If this file has been - * purchased on magnetic or optical media from Unicode, Inc., the - * sole remedy for any claim will be exchange of defective media - * within 90 days of receipt. - * - * Limitations on Rights to Redistribute This Code - * - * Unicode, Inc. hereby grants the right to freely use the information - * supplied in this file in the creation of products supporting the - * Unicode Standard, and to make copies of this file in any form - * for internal or external distribution as long as this notice - * remains attached. - */ - - /* --------------------------------------------------------------------- - - Conversions between UTF32, UTF-16, and UTF-8. Source code file. - Author: Mark E. Davis, 1994. - Rev History: Rick McGowan, fixes & updates May 2001. - Sept 2001: fixed const & error conditions per - mods suggested by S. Parent & A. Lillich. - June 2002: Tim Dodd added detection and handling of incomplete - source sequences, enhanced error detection, added casts - to eliminate compiler warnings. - July 2003: slight mods to back out aggressive FFFE detection. - Jan 2004: updated switches in from-UTF8 conversions. - Oct 2004: updated to use UNI_MAX_LEGAL_UTF32 in UTF-32 conversions. - - See the header file "ConvertUTF.h" for complete documentation. - - ------------------------------------------------------------------------ */ - - -#include "ConvertUTF.h" -#ifdef CVTUTF_DEBUG -#include -#endif - -static const int halfShift = 10; /* used for shifting by 10 bits */ - -static const UTF32 halfBase = 0x0010000UL; -static const UTF32 halfMask = 0x3FFUL; - -#define UNI_SUR_HIGH_START (UTF32)0xD800 -#define UNI_SUR_HIGH_END (UTF32)0xDBFF -#define UNI_SUR_LOW_START (UTF32)0xDC00 -#define UNI_SUR_LOW_END (UTF32)0xDFFF -#define false 0 -#define true 1 - -/* --------------------------------------------------------------------- */ - -ConversionResult ConvertUTF32toUTF16( - const UTF32** sourceStart, const UTF32* sourceEnd, - UTF16** targetStart, UTF16* targetEnd, ConversionFlags flags) { - ConversionResult result = conversionOK; - const UTF32* source = *sourceStart; - UTF16* target = *targetStart; - while (source < sourceEnd) { - UTF32 ch; - if (target >= targetEnd) { - result = targetExhausted; break; - } - ch = *source++; - if (ch <= UNI_MAX_BMP) { /* Target is a character <= 0xFFFF */ - /* UTF-16 surrogate values are illegal in UTF-32; 0xffff or 0xfffe are both reserved values */ - if (ch >= UNI_SUR_HIGH_START && ch <= UNI_SUR_LOW_END) { - if (flags == strictConversion) { - --source; /* return to the illegal value itself */ - result = sourceIllegal; - break; - } - else { - *target++ = UNI_REPLACEMENT_CHAR; - } - } - else { - *target++ = (UTF16)ch; /* normal case */ - } - } - else if (ch > UNI_MAX_LEGAL_UTF32) { - if (flags == strictConversion) { - result = sourceIllegal; - } - else { - *target++ = UNI_REPLACEMENT_CHAR; - } - } - else { - /* target is a character in range 0xFFFF - 0x10FFFF. */ - if (target + 1 >= targetEnd) { - --source; /* Back up source pointer! */ - result = targetExhausted; break; - } - ch -= halfBase; - *target++ = (UTF16)((ch >> halfShift) + UNI_SUR_HIGH_START); - *target++ = (UTF16)((ch & halfMask) + UNI_SUR_LOW_START); - } - } - *sourceStart = source; - *targetStart = target; - return result; -} - -/* --------------------------------------------------------------------- */ - -ConversionResult ConvertUTF16toUTF32( - const UTF16** sourceStart, const UTF16* sourceEnd, - UTF32** targetStart, UTF32* targetEnd, ConversionFlags flags) { - ConversionResult result = conversionOK; - const UTF16* source = *sourceStart; - UTF32* target = *targetStart; - UTF32 ch, ch2; - while (source < sourceEnd) { - const UTF16* oldSource = source; /* In case we have to back up because of target overflow. */ - ch = *source++; - /* If we have a surrogate pair, convert to UTF32 first. */ - if (ch >= UNI_SUR_HIGH_START && ch <= UNI_SUR_HIGH_END) { - /* If the 16 bits following the high surrogate are in the source buffer... */ - if (source < sourceEnd) { - ch2 = *source; - /* If it's a low surrogate, convert to UTF32. */ - if (ch2 >= UNI_SUR_LOW_START && ch2 <= UNI_SUR_LOW_END) { - ch = ((ch - UNI_SUR_HIGH_START) << halfShift) - + (ch2 - UNI_SUR_LOW_START) + halfBase; - ++source; - } - else if (flags == strictConversion) { /* it's an unpaired high surrogate */ - --source; /* return to the illegal value itself */ - result = sourceIllegal; - break; - } - } - else { /* We don't have the 16 bits following the high surrogate. */ - --source; /* return to the high surrogate */ - result = sourceExhausted; - break; - } - } - else if (flags == strictConversion) { - /* UTF-16 surrogate values are illegal in UTF-32 */ - if (ch >= UNI_SUR_LOW_START && ch <= UNI_SUR_LOW_END) { - --source; /* return to the illegal value itself */ - result = sourceIllegal; - break; - } - } - if (target >= targetEnd) { - source = oldSource; /* Back up source pointer! */ - result = targetExhausted; break; - } - *target++ = ch; - } - *sourceStart = source; - *targetStart = target; -#ifdef CVTUTF_DEBUG - if (result == sourceIllegal) { - fprintf(stderr, "ConvertUTF16toUTF32 illegal seq 0x%04x,%04x\n", ch, ch2); - fflush(stderr); - } -#endif - return result; -} - -/* --------------------------------------------------------------------- */ - -/* - * Index into the table below with the first byte of a UTF-8 sequence to - * get the number of trailing bytes that are supposed to follow it. - * Note that *legal* UTF-8 values can't have 4 or 5-bytes. The table is - * left as-is for anyone who may want to do such conversion, which was - * allowed in earlier algorithms. - */ -static const char trailingBytesForUTF8[256] = { - 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, - 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, - 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, - 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, - 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, - 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, - 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, - 2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, 3,3,3,3,3,3,3,3,4,4,4,4,5,5,5,5 -}; - -/* - * Magic values subtracted from a buffer value during UTF8 conversion. - * This table contains as many values as there might be trailing bytes - * in a UTF-8 sequence. - */ -static const UTF32 offsetsFromUTF8[6] = { 0x00000000UL, 0x00003080UL, 0x000E2080UL, - 0x03C82080UL, 0xFA082080UL, 0x82082080UL }; - -/* - * Once the bits are split out into bytes of UTF-8, this is a mask OR-ed - * into the first byte, depending on how many bytes follow. There are - * as many entries in this table as there are UTF-8 sequence types. - * (I.e., one byte sequence, two byte... etc.). Remember that sequencs - * for *legal* UTF-8 will be 4 or fewer bytes total. - */ -static const UTF8 firstByteMark[7] = { 0x00, 0x00, 0xC0, 0xE0, 0xF0, 0xF8, 0xFC }; - -/* --------------------------------------------------------------------- */ - -/* The interface converts a whole buffer to avoid function-call overhead. - * Constants have been gathered. Loops & conditionals have been removed as - * much as possible for efficiency, in favor of drop-through switches. - * (See "Note A" at the bottom of the file for equivalent code.) - * If your compiler supports it, the "isLegalUTF8" call can be turned - * into an inline function. - */ - - /* --------------------------------------------------------------------- */ - -ConversionResult ConvertUTF16toUTF8( - const UTF16** sourceStart, const UTF16* sourceEnd, - UTF8** targetStart, UTF8* targetEnd, ConversionFlags flags) { - ConversionResult result = conversionOK; - const UTF16* source = *sourceStart; - UTF8* target = *targetStart; - while (source < sourceEnd) { - UTF32 ch; - unsigned short bytesToWrite = 0; - const UTF32 byteMask = 0xBF; - const UTF32 byteMark = 0x80; - const UTF16* oldSource = source; /* In case we have to back up because of target overflow. */ - ch = *source++; - /* If we have a surrogate pair, convert to UTF32 first. */ - if (ch >= UNI_SUR_HIGH_START && ch <= UNI_SUR_HIGH_END) { - /* If the 16 bits following the high surrogate are in the source buffer... */ - if (source < sourceEnd) { - UTF32 ch2 = *source; - /* If it's a low surrogate, convert to UTF32. */ - if (ch2 >= UNI_SUR_LOW_START && ch2 <= UNI_SUR_LOW_END) { - ch = ((ch - UNI_SUR_HIGH_START) << halfShift) - + (ch2 - UNI_SUR_LOW_START) + halfBase; - ++source; - } - else if (flags == strictConversion) { /* it's an unpaired high surrogate */ - --source; /* return to the illegal value itself */ - result = sourceIllegal; - break; - } - } - else { /* We don't have the 16 bits following the high surrogate. */ - --source; /* return to the high surrogate */ - result = sourceExhausted; - break; - } - } - else if (flags == strictConversion) { - /* UTF-16 surrogate values are illegal in UTF-32 */ - if (ch >= UNI_SUR_LOW_START && ch <= UNI_SUR_LOW_END) { - --source; /* return to the illegal value itself */ - result = sourceIllegal; - break; - } - } - /* Figure out how many bytes the result will require */ - if (ch < (UTF32)0x80) { - bytesToWrite = 1; - } - else if (ch < (UTF32)0x800) { - bytesToWrite = 2; - } - else if (ch < (UTF32)0x10000) { - bytesToWrite = 3; - } - else if (ch < (UTF32)0x110000) { - bytesToWrite = 4; - } - else { - bytesToWrite = 3; - ch = UNI_REPLACEMENT_CHAR; - } - - target += bytesToWrite; - if (target > targetEnd) { - source = oldSource; /* Back up source pointer! */ - target -= bytesToWrite; result = targetExhausted; break; - } - switch (bytesToWrite) { /* note: everything falls through. */ - case 4: *--target = (UTF8)((ch | byteMark) & byteMask); ch >>= 6; - case 3: *--target = (UTF8)((ch | byteMark) & byteMask); ch >>= 6; - case 2: *--target = (UTF8)((ch | byteMark) & byteMask); ch >>= 6; - case 1: *--target = (UTF8)(ch | firstByteMark[bytesToWrite]); - } - target += bytesToWrite; - } - *sourceStart = source; - *targetStart = target; - return result; -} - -/* --------------------------------------------------------------------- */ - -/* - * Utility routine to tell whether a sequence of bytes is legal UTF-8. - * This must be called with the length pre-determined by the first byte. - * If not calling this from ConvertUTF8to*, then the length can be set by: - * length = trailingBytesForUTF8[*source]+1; - * and the sequence is illegal right away if there aren't that many bytes - * available. - * If presented with a length > 4, this returns false. The Unicode - * definition of UTF-8 goes up to 4-byte sequences. - */ - -static Boolean isLegalUTF8(const UTF8* source, int length) { - UTF8 a; - const UTF8* srcptr = source + length; - switch (length) { - default: return false; - /* Everything else falls through when "true"... */ - case 4: if ((a = (*--srcptr)) < 0x80 || a > 0xBF) return false; - case 3: if ((a = (*--srcptr)) < 0x80 || a > 0xBF) return false; - case 2: if ((a = (*--srcptr)) > 0xBF) return false; - - switch (*source) { - /* no fall-through in this inner switch */ - case 0xE0: if (a < 0xA0) return false; break; - case 0xED: if (a > 0x9F) return false; break; - case 0xF0: if (a < 0x90) return false; break; - case 0xF4: if (a > 0x8F) return false; break; - default: if (a < 0x80) return false; - } - - case 1: if (*source >= 0x80 && *source < 0xC2) return false; - } - if (*source > 0xF4) return false; - return true; -} - -/* --------------------------------------------------------------------- */ - -/* - * Exported function to return whether a UTF-8 sequence is legal or not. - * This is not used here; it's just exported. - */ -Boolean isLegalUTF8Sequence(const UTF8* source, const UTF8* sourceEnd) { - int length = trailingBytesForUTF8[*source] + 1; - if (source + length > sourceEnd) { - return false; - } - return isLegalUTF8(source, length); -} - -/* --------------------------------------------------------------------- */ - -ConversionResult ConvertUTF8toUTF16( - const UTF8** sourceStart, const UTF8* sourceEnd, - UTF16** targetStart, UTF16* targetEnd, ConversionFlags flags) { - ConversionResult result = conversionOK; - const UTF8* source = *sourceStart; - UTF16* target = *targetStart; - while (source < sourceEnd) { - UTF32 ch = 0; - unsigned short extraBytesToRead = trailingBytesForUTF8[*source]; - if (source + extraBytesToRead >= sourceEnd) { - result = sourceExhausted; break; - } - /* Do this check whether lenient or strict */ - if (!isLegalUTF8(source, extraBytesToRead + 1)) { - result = sourceIllegal; - break; - } - /* - * The cases all fall through. See "Note A" below. - */ - switch (extraBytesToRead) { - case 5: ch += *source++; ch <<= 6; /* remember, illegal UTF-8 */ - case 4: ch += *source++; ch <<= 6; /* remember, illegal UTF-8 */ - case 3: ch += *source++; ch <<= 6; - case 2: ch += *source++; ch <<= 6; - case 1: ch += *source++; ch <<= 6; - case 0: ch += *source++; - } - ch -= offsetsFromUTF8[extraBytesToRead]; - - if (target >= targetEnd) { - source -= (extraBytesToRead + 1); /* Back up source pointer! */ - result = targetExhausted; break; - } - if (ch <= UNI_MAX_BMP) { /* Target is a character <= 0xFFFF */ - /* UTF-16 surrogate values are illegal in UTF-32 */ - if (ch >= UNI_SUR_HIGH_START && ch <= UNI_SUR_LOW_END) { - if (flags == strictConversion) { - source -= (extraBytesToRead + 1); /* return to the illegal value itself */ - result = sourceIllegal; - break; - } - else { - *target++ = UNI_REPLACEMENT_CHAR; - } - } - else { - *target++ = (UTF16)ch; /* normal case */ - } - } - else if (ch > UNI_MAX_UTF16) { - if (flags == strictConversion) { - result = sourceIllegal; - source -= (extraBytesToRead + 1); /* return to the start */ - break; /* Bail out; shouldn't continue */ - } - else { - *target++ = UNI_REPLACEMENT_CHAR; - } - } - else { - /* target is a character in range 0xFFFF - 0x10FFFF. */ - if (target + 1 >= targetEnd) { - source -= (extraBytesToRead + 1); /* Back up source pointer! */ - result = targetExhausted; break; - } - ch -= halfBase; - *target++ = (UTF16)((ch >> halfShift) + UNI_SUR_HIGH_START); - *target++ = (UTF16)((ch & halfMask) + UNI_SUR_LOW_START); - } - } - *sourceStart = source; - *targetStart = target; - return result; -} - -/* --------------------------------------------------------------------- */ - -ConversionResult ConvertUTF32toUTF8( - const UTF32** sourceStart, const UTF32* sourceEnd, - UTF8** targetStart, UTF8* targetEnd, ConversionFlags flags) { - ConversionResult result = conversionOK; - const UTF32* source = *sourceStart; - UTF8* target = *targetStart; - while (source < sourceEnd) { - UTF32 ch; - unsigned short bytesToWrite = 0; - const UTF32 byteMask = 0xBF; - const UTF32 byteMark = 0x80; - ch = *source++; - if (flags == strictConversion) { - /* UTF-16 surrogate values are illegal in UTF-32 */ - if (ch >= UNI_SUR_HIGH_START && ch <= UNI_SUR_LOW_END) { - --source; /* return to the illegal value itself */ - result = sourceIllegal; - break; - } - } - /* - * Figure out how many bytes the result will require. Turn any - * illegally large UTF32 things (> Plane 17) into replacement chars. - */ - if (ch < (UTF32)0x80) { - bytesToWrite = 1; - } - else if (ch < (UTF32)0x800) { - bytesToWrite = 2; - } - else if (ch < (UTF32)0x10000) { - bytesToWrite = 3; - } - else if (ch <= UNI_MAX_LEGAL_UTF32) { - bytesToWrite = 4; - } - else { - bytesToWrite = 3; - ch = UNI_REPLACEMENT_CHAR; - result = sourceIllegal; - } - - target += bytesToWrite; - if (target > targetEnd) { - --source; /* Back up source pointer! */ - target -= bytesToWrite; result = targetExhausted; break; - } - switch (bytesToWrite) { /* note: everything falls through. */ - case 4: *--target = (UTF8)((ch | byteMark) & byteMask); ch >>= 6; - case 3: *--target = (UTF8)((ch | byteMark) & byteMask); ch >>= 6; - case 2: *--target = (UTF8)((ch | byteMark) & byteMask); ch >>= 6; - case 1: *--target = (UTF8)(ch | firstByteMark[bytesToWrite]); - } - target += bytesToWrite; - } - *sourceStart = source; - *targetStart = target; - return result; -} - -/* --------------------------------------------------------------------- */ - -ConversionResult ConvertUTF8toUTF32( - const UTF8** sourceStart, const UTF8* sourceEnd, - UTF32** targetStart, UTF32* targetEnd, ConversionFlags flags) { - ConversionResult result = conversionOK; - const UTF8* source = *sourceStart; - UTF32* target = *targetStart; - while (source < sourceEnd) { - UTF32 ch = 0; - unsigned short extraBytesToRead = trailingBytesForUTF8[*source]; - if (source + extraBytesToRead >= sourceEnd) { - result = sourceExhausted; break; - } - /* Do this check whether lenient or strict */ - if (!isLegalUTF8(source, extraBytesToRead + 1)) { - result = sourceIllegal; - break; - } - /* - * The cases all fall through. See "Note A" below. - */ - switch (extraBytesToRead) { - case 5: ch += *source++; ch <<= 6; - case 4: ch += *source++; ch <<= 6; - case 3: ch += *source++; ch <<= 6; - case 2: ch += *source++; ch <<= 6; - case 1: ch += *source++; ch <<= 6; - case 0: ch += *source++; - } - ch -= offsetsFromUTF8[extraBytesToRead]; - - if (target >= targetEnd) { - source -= (extraBytesToRead + 1); /* Back up the source pointer! */ - result = targetExhausted; break; - } - if (ch <= UNI_MAX_LEGAL_UTF32) { - /* - * UTF-16 surrogate values are illegal in UTF-32, and anything - * over Plane 17 (> 0x10FFFF) is illegal. - */ - if (ch >= UNI_SUR_HIGH_START && ch <= UNI_SUR_LOW_END) { - if (flags == strictConversion) { - source -= (extraBytesToRead + 1); /* return to the illegal value itself */ - result = sourceIllegal; - break; - } - else { - *target++ = UNI_REPLACEMENT_CHAR; - } - } - else { - *target++ = ch; - } - } - else { /* i.e., ch > UNI_MAX_LEGAL_UTF32 */ - result = sourceIllegal; - *target++ = UNI_REPLACEMENT_CHAR; - } - } - *sourceStart = source; - *targetStart = target; - return result; -} - -/* --------------------------------------------------------------------- - - Note A. - The fall-through switches in UTF-8 reading code save a - temp variable, some decrements & conditionals. The switches - are equivalent to the following loop: - { - int tmpBytesToRead = extraBytesToRead+1; - do { - ch += *source++; - --tmpBytesToRead; - if (tmpBytesToRead) ch <<= 6; - } while (tmpBytesToRead > 0); - } - In UTF-8 writing code, the switches on "bytesToWrite" are - similarly unrolled loops. - - --------------------------------------------------------------------- */ \ No newline at end of file diff --git a/externals/simpleini/ConvertUTF.h b/externals/simpleini/ConvertUTF.h deleted file mode 100644 index 528c963987..0000000000 --- a/externals/simpleini/ConvertUTF.h +++ /dev/null @@ -1,151 +0,0 @@ -/* - * https://web.archive.org/web/20090529064329/http://www.unicode.org:80/Public/PROGRAMS/CVTUTF/ - * - * Copyright 2001-2004 Unicode, Inc. - * - * Disclaimer - * - * This source code is provided as is by Unicode, Inc. No claims are - * made as to fitness for any particular purpose. No warranties of any - * kind are expressed or implied. The recipient agrees to determine - * applicability of information provided. If this file has been - * purchased on magnetic or optical media from Unicode, Inc., the - * sole remedy for any claim will be exchange of defective media - * within 90 days of receipt. - * - * Limitations on Rights to Redistribute This Code - * - * Unicode, Inc. hereby grants the right to freely use the information - * supplied in this file in the creation of products supporting the - * Unicode Standard, and to make copies of this file in any form - * for internal or external distribution as long as this notice - * remains attached. - */ - - /* --------------------------------------------------------------------- - - Conversions between UTF32, UTF-16, and UTF-8. Header file. - - Several funtions are included here, forming a complete set of - conversions between the three formats. UTF-7 is not included - here, but is handled in a separate source file. - - Each of these routines takes pointers to input buffers and output - buffers. The input buffers are const. - - Each routine converts the text between *sourceStart and sourceEnd, - putting the result into the buffer between *targetStart and - targetEnd. Note: the end pointers are *after* the last item: e.g. - *(sourceEnd - 1) is the last item. - - The return result indicates whether the conversion was successful, - and if not, whether the problem was in the source or target buffers. - (Only the first encountered problem is indicated.) - - After the conversion, *sourceStart and *targetStart are both - updated to point to the end of last text successfully converted in - the respective buffers. - - Input parameters: - sourceStart - pointer to a pointer to the source buffer. - The contents of this are modified on return so that - it points at the next thing to be converted. - targetStart - similarly, pointer to pointer to the target buffer. - sourceEnd, targetEnd - respectively pointers to the ends of the - two buffers, for overflow checking only. - - These conversion functions take a ConversionFlags argument. When this - flag is set to strict, both irregular sequences and isolated surrogates - will cause an error. When the flag is set to lenient, both irregular - sequences and isolated surrogates are converted. - - Whether the flag is strict or lenient, all illegal sequences will cause - an error return. This includes sequences such as: , , - or in UTF-8, and values above 0x10FFFF in UTF-32. Conformant code - must check for illegal sequences. - - When the flag is set to lenient, characters over 0x10FFFF are converted - to the replacement character; otherwise (when the flag is set to strict) - they constitute an error. - - Output parameters: - The value "sourceIllegal" is returned from some routines if the input - sequence is malformed. When "sourceIllegal" is returned, the source - value will point to the illegal value that caused the problem. E.g., - in UTF-8 when a sequence is malformed, it points to the start of the - malformed sequence. - - Author: Mark E. Davis, 1994. - Rev History: Rick McGowan, fixes & updates May 2001. - Fixes & updates, Sept 2001. - - ------------------------------------------------------------------------ */ - - /* --------------------------------------------------------------------- - The following 4 definitions are compiler-specific. - The C standard does not guarantee that wchar_t has at least - 16 bits, so wchar_t is no less portable than unsigned short! - All should be unsigned values to avoid sign extension during - bit mask & shift operations. - ------------------------------------------------------------------------ */ - -typedef unsigned long UTF32; /* at least 32 bits */ -typedef unsigned short UTF16; /* at least 16 bits */ -typedef unsigned char UTF8; /* typically 8 bits */ -typedef unsigned char Boolean; /* 0 or 1 */ - -/* Some fundamental constants */ -#define UNI_REPLACEMENT_CHAR (UTF32)0x0000FFFD -#define UNI_MAX_BMP (UTF32)0x0000FFFF -#define UNI_MAX_UTF16 (UTF32)0x0010FFFF -#define UNI_MAX_UTF32 (UTF32)0x7FFFFFFF -#define UNI_MAX_LEGAL_UTF32 (UTF32)0x0010FFFF - -typedef enum { - conversionOK, /* conversion successful */ - sourceExhausted, /* partial character in source, but hit end */ - targetExhausted, /* insuff. room in target for conversion */ - sourceIllegal /* source sequence is illegal/malformed */ -} ConversionResult; - -typedef enum { - strictConversion = 0, - lenientConversion -} ConversionFlags; - -/* This is for C++ and does no harm in C */ -#ifdef __cplusplus -extern "C" { -#endif - - ConversionResult ConvertUTF8toUTF16( - const UTF8** sourceStart, const UTF8* sourceEnd, - UTF16** targetStart, UTF16* targetEnd, ConversionFlags flags); - - ConversionResult ConvertUTF16toUTF8( - const UTF16** sourceStart, const UTF16* sourceEnd, - UTF8** targetStart, UTF8* targetEnd, ConversionFlags flags); - - ConversionResult ConvertUTF8toUTF32( - const UTF8** sourceStart, const UTF8* sourceEnd, - UTF32** targetStart, UTF32* targetEnd, ConversionFlags flags); - - ConversionResult ConvertUTF32toUTF8( - const UTF32** sourceStart, const UTF32* sourceEnd, - UTF8** targetStart, UTF8* targetEnd, ConversionFlags flags); - - ConversionResult ConvertUTF16toUTF32( - const UTF16** sourceStart, const UTF16* sourceEnd, - UTF32** targetStart, UTF32* targetEnd, ConversionFlags flags); - - ConversionResult ConvertUTF32toUTF16( - const UTF32** sourceStart, const UTF32* sourceEnd, - UTF16** targetStart, UTF16* targetEnd, ConversionFlags flags); - - Boolean isLegalUTF8Sequence(const UTF8* source, const UTF8* sourceEnd); - -#ifdef __cplusplus -} -#endif - -/* --------------------------------------------------------------------- */ \ No newline at end of file diff --git a/externals/simpleini/ConvertUTF_readme.txt b/externals/simpleini/ConvertUTF_readme.txt deleted file mode 100644 index 402eaa4b10..0000000000 --- a/externals/simpleini/ConvertUTF_readme.txt +++ /dev/null @@ -1,43 +0,0 @@ -https://web.archive.org/web/20090529064329/http://www.unicode.org:80/Public/PROGRAMS/CVTUTF/ - -The accompanying C source code file "ConvertUTF.c" and the associated header -file "ConvertUTF.h" provide for conversion between various transformation -formats of Unicode characters. The following conversions are supported: - - UTF-32 to UTF-16 - UTF-32 to UTF-8 - UTF-16 to UTF-32 - UTF-16 to UTF-8 - UTF-8 to UTF-16 - UTF-8 to UTF-32 - -In addition, there is a test harness which runs various tests. - -The files "CVTUTF7.C" and "CVTUTF7.H" are for archival and historical purposes -only. They have not been updated to Unicode 3.0 or later and should be -considered obsolescent. "CVTUTF7.C" contains two functions that can convert -between UCS2 (i.e., the BMP characters only) and UTF-7. Surrogates are -not supported, the code has not been tested, and should be considered -unsuitable for general purpose use. - -Please submit any bug reports about these programs here: - - http://www.unicode.org/unicode/reporting.html - -Version 1.0: initial version. - -Version 1.1: corrected some minor problems; added stricter checks. - -Version 1.2: corrected switch statements associated with "extraBytesToRead" - in 4 & 5 byte cases, in functions for conversion from UTF8. - Note: formally, the 4 & 5 byte cases are illegal in the latest - UTF8, but the table and this code has always catered for those, - cases since at one time they were legal. - -Version 1.3: Updated UTF-8 legality check; - updated to use UNI_MAX_LEGAL_UTF32 in UTF-32 conversions - Updated UTF-8 legality tests in harness.c - - -Last update: October 19, 2004 - diff --git a/externals/simpleini/Doxyfile b/externals/simpleini/Doxyfile deleted file mode 100644 index 9ef86d5292..0000000000 --- a/externals/simpleini/Doxyfile +++ /dev/null @@ -1,2658 +0,0 @@ -# Doxyfile 1.9.1 - -# This file describes the settings to be used by the documentation system -# doxygen (www.doxygen.org) for a project. -# -# All text after a double hash (##) is considered a comment and is placed in -# front of the TAG it is preceding. -# -# All text after a single hash (#) is considered a comment and will be ignored. -# The format is: -# TAG = value [value, ...] -# For lists, items can also be appended using: -# TAG += value [value, ...] -# Values that contain spaces should be placed between quotes (\" \"). - -#--------------------------------------------------------------------------- -# Project related configuration options -#--------------------------------------------------------------------------- - -# This tag specifies the encoding used for all characters in the configuration -# file that follow. The default is UTF-8 which is also the encoding used for all -# text before the first occurrence of this tag. Doxygen uses libiconv (or the -# iconv built into libc) for the transcoding. See -# https://www.gnu.org/software/libiconv/ for the list of possible encodings. -# The default value is: UTF-8. - -DOXYFILE_ENCODING = UTF-8 - -# The PROJECT_NAME tag is a single word (or a sequence of words surrounded by -# double-quotes, unless you are using Doxywizard) that should identify the -# project for which the documentation is generated. This name is used in the -# title of most generated pages and in a few other places. -# The default value is: My Project. - -PROJECT_NAME = "SimpleIni" - -# The PROJECT_NUMBER tag can be used to enter a project or revision number. This -# could be handy for archiving the generated documentation or if some version -# control system is used. - -PROJECT_NUMBER = - -# Using the PROJECT_BRIEF tag one can provide an optional one line description -# for a project that appears at the top of each page and should give viewer a -# quick idea about the purpose of the project. Keep the description short. - -PROJECT_BRIEF = - -# With the PROJECT_LOGO tag one can specify a logo or an icon that is included -# in the documentation. The maximum height of the logo should not exceed 55 -# pixels and the maximum width should not exceed 200 pixels. Doxygen will copy -# the logo to the output directory. - -PROJECT_LOGO = - -# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) path -# into which the generated documentation will be written. If a relative path is -# entered, it will be relative to the location where doxygen was started. If -# left blank the current directory will be used. - -OUTPUT_DIRECTORY = docs - -# If the CREATE_SUBDIRS tag is set to YES then doxygen will create 4096 sub- -# directories (in 2 levels) under the output directory of each output format and -# will distribute the generated files over these directories. Enabling this -# option can be useful when feeding doxygen a huge amount of source files, where -# putting all generated files in the same directory would otherwise causes -# performance problems for the file system. -# The default value is: NO. - -CREATE_SUBDIRS = NO - -# If the ALLOW_UNICODE_NAMES tag is set to YES, doxygen will allow non-ASCII -# characters to appear in the names of generated files. If set to NO, non-ASCII -# characters will be escaped, for example _xE3_x81_x84 will be used for Unicode -# U+3044. -# The default value is: NO. - -ALLOW_UNICODE_NAMES = NO - -# The OUTPUT_LANGUAGE tag is used to specify the language in which all -# documentation generated by doxygen is written. Doxygen will use this -# information to generate all constant output in the proper language. -# Possible values are: Afrikaans, Arabic, Armenian, Brazilian, Catalan, Chinese, -# Chinese-Traditional, Croatian, Czech, Danish, Dutch, English (United States), -# Esperanto, Farsi (Persian), Finnish, French, German, Greek, Hungarian, -# Indonesian, Italian, Japanese, Japanese-en (Japanese with English messages), -# Korean, Korean-en (Korean with English messages), Latvian, Lithuanian, -# Macedonian, Norwegian, Persian (Farsi), Polish, Portuguese, Romanian, Russian, -# Serbian, Serbian-Cyrillic, Slovak, Slovene, Spanish, Swedish, Turkish, -# Ukrainian and Vietnamese. -# The default value is: English. - -OUTPUT_LANGUAGE = English - -# The OUTPUT_TEXT_DIRECTION tag is used to specify the direction in which all -# documentation generated by doxygen is written. Doxygen will use this -# information to generate all generated output in the proper direction. -# Possible values are: None, LTR, RTL and Context. -# The default value is: None. - -OUTPUT_TEXT_DIRECTION = None - -# If the BRIEF_MEMBER_DESC tag is set to YES, doxygen will include brief member -# descriptions after the members that are listed in the file and class -# documentation (similar to Javadoc). Set to NO to disable this. -# The default value is: YES. - -BRIEF_MEMBER_DESC = YES - -# If the REPEAT_BRIEF tag is set to YES, doxygen will prepend the brief -# description of a member or function before the detailed description -# -# Note: If both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the -# brief descriptions will be completely suppressed. -# The default value is: YES. - -REPEAT_BRIEF = YES - -# This tag implements a quasi-intelligent brief description abbreviator that is -# used to form the text in various listings. Each string in this list, if found -# as the leading text of the brief description, will be stripped from the text -# and the result, after processing the whole list, is used as the annotated -# text. Otherwise, the brief description is used as-is. If left blank, the -# following values are used ($name is automatically replaced with the name of -# the entity):The $name class, The $name widget, The $name file, is, provides, -# specifies, contains, represents, a, an and the. - -ABBREVIATE_BRIEF = "The $name class" \ - "The $name widget" \ - "The $name file" \ - is \ - provides \ - specifies \ - contains \ - represents \ - a \ - an \ - the - -# If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then -# doxygen will generate a detailed section even if there is only a brief -# description. -# The default value is: NO. - -ALWAYS_DETAILED_SEC = NO - -# If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all -# inherited members of a class in the documentation of that class as if those -# members were ordinary class members. Constructors, destructors and assignment -# operators of the base classes will not be shown. -# The default value is: NO. - -INLINE_INHERITED_MEMB = NO - -# If the FULL_PATH_NAMES tag is set to YES, doxygen will prepend the full path -# before files name in the file list and in the header files. If set to NO the -# shortest path that makes the file name unique will be used -# The default value is: YES. - -FULL_PATH_NAMES = YES - -# The STRIP_FROM_PATH tag can be used to strip a user-defined part of the path. -# Stripping is only done if one of the specified strings matches the left-hand -# part of the path. The tag can be used to show relative paths in the file list. -# If left blank the directory from which doxygen is run is used as the path to -# strip. -# -# Note that you can specify absolute paths here, but also relative paths, which -# will be relative from the directory where doxygen is started. -# This tag requires that the tag FULL_PATH_NAMES is set to YES. - -STRIP_FROM_PATH = - -# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of the -# path mentioned in the documentation of a class, which tells the reader which -# header file to include in order to use a class. If left blank only the name of -# the header file containing the class definition is used. Otherwise one should -# specify the list of include paths that are normally passed to the compiler -# using the -I flag. - -STRIP_FROM_INC_PATH = - -# If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter (but -# less readable) file names. This can be useful is your file systems doesn't -# support long names like on DOS, Mac, or CD-ROM. -# The default value is: NO. - -SHORT_NAMES = NO - -# If the JAVADOC_AUTOBRIEF tag is set to YES then doxygen will interpret the -# first line (until the first dot) of a Javadoc-style comment as the brief -# description. If set to NO, the Javadoc-style will behave just like regular Qt- -# style comments (thus requiring an explicit @brief command for a brief -# description.) -# The default value is: NO. - -JAVADOC_AUTOBRIEF = NO - -# If the JAVADOC_BANNER tag is set to YES then doxygen will interpret a line -# such as -# /*************** -# as being the beginning of a Javadoc-style comment "banner". If set to NO, the -# Javadoc-style will behave just like regular comments and it will not be -# interpreted by doxygen. -# The default value is: NO. - -JAVADOC_BANNER = NO - -# If the QT_AUTOBRIEF tag is set to YES then doxygen will interpret the first -# line (until the first dot) of a Qt-style comment as the brief description. If -# set to NO, the Qt-style will behave just like regular Qt-style comments (thus -# requiring an explicit \brief command for a brief description.) -# The default value is: NO. - -QT_AUTOBRIEF = NO - -# The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make doxygen treat a -# multi-line C++ special comment block (i.e. a block of //! or /// comments) as -# a brief description. This used to be the default behavior. The new default is -# to treat a multi-line C++ comment block as a detailed description. Set this -# tag to YES if you prefer the old behavior instead. -# -# Note that setting this tag to YES also means that rational rose comments are -# not recognized any more. -# The default value is: NO. - -MULTILINE_CPP_IS_BRIEF = NO - -# By default Python docstrings are displayed as preformatted text and doxygen's -# special commands cannot be used. By setting PYTHON_DOCSTRING to NO the -# doxygen's special commands can be used and the contents of the docstring -# documentation blocks is shown as doxygen documentation. -# The default value is: YES. - -PYTHON_DOCSTRING = YES - -# If the INHERIT_DOCS tag is set to YES then an undocumented member inherits the -# documentation from any documented member that it re-implements. -# The default value is: YES. - -INHERIT_DOCS = YES - -# If the SEPARATE_MEMBER_PAGES tag is set to YES then doxygen will produce a new -# page for each member. If set to NO, the documentation of a member will be part -# of the file/class/namespace that contains it. -# The default value is: NO. - -SEPARATE_MEMBER_PAGES = NO - -# The TAB_SIZE tag can be used to set the number of spaces in a tab. Doxygen -# uses this value to replace tabs by spaces in code fragments. -# Minimum value: 1, maximum value: 16, default value: 4. - -TAB_SIZE = 4 - -# This tag can be used to specify a number of aliases that act as commands in -# the documentation. An alias has the form: -# name=value -# For example adding -# "sideeffect=@par Side Effects:\n" -# will allow you to put the command \sideeffect (or @sideeffect) in the -# documentation, which will result in a user-defined paragraph with heading -# "Side Effects:". You can put \n's in the value part of an alias to insert -# newlines (in the resulting output). You can put ^^ in the value part of an -# alias to insert a newline as if a physical newline was in the original file. -# When you need a literal { or } or , in the value part of an alias you have to -# escape them by means of a backslash (\), this can lead to conflicts with the -# commands \{ and \} for these it is advised to use the version @{ and @} or use -# a double escape (\\{ and \\}) - -ALIASES = - -# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C sources -# only. Doxygen will then generate output that is more tailored for C. For -# instance, some of the names that are used will be different. The list of all -# members will be omitted, etc. -# The default value is: NO. - -OPTIMIZE_OUTPUT_FOR_C = NO - -# Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java or -# Python sources only. Doxygen will then generate output that is more tailored -# for that language. For instance, namespaces will be presented as packages, -# qualified scopes will look different, etc. -# The default value is: NO. - -OPTIMIZE_OUTPUT_JAVA = NO - -# Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran -# sources. Doxygen will then generate output that is tailored for Fortran. -# The default value is: NO. - -OPTIMIZE_FOR_FORTRAN = NO - -# Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL -# sources. Doxygen will then generate output that is tailored for VHDL. -# The default value is: NO. - -OPTIMIZE_OUTPUT_VHDL = NO - -# Set the OPTIMIZE_OUTPUT_SLICE tag to YES if your project consists of Slice -# sources only. Doxygen will then generate output that is more tailored for that -# language. For instance, namespaces will be presented as modules, types will be -# separated into more groups, etc. -# The default value is: NO. - -OPTIMIZE_OUTPUT_SLICE = NO - -# Doxygen selects the parser to use depending on the extension of the files it -# parses. With this tag you can assign which parser to use for a given -# extension. Doxygen has a built-in mapping, but you can override or extend it -# using this tag. The format is ext=language, where ext is a file extension, and -# language is one of the parsers supported by doxygen: IDL, Java, JavaScript, -# Csharp (C#), C, C++, D, PHP, md (Markdown), Objective-C, Python, Slice, VHDL, -# Fortran (fixed format Fortran: FortranFixed, free formatted Fortran: -# FortranFree, unknown formatted Fortran: Fortran. In the later case the parser -# tries to guess whether the code is fixed or free formatted code, this is the -# default for Fortran type files). For instance to make doxygen treat .inc files -# as Fortran files (default is PHP), and .f files as C (default is Fortran), -# use: inc=Fortran f=C. -# -# Note: For files without extension you can use no_extension as a placeholder. -# -# Note that for custom extensions you also need to set FILE_PATTERNS otherwise -# the files are not read by doxygen. When specifying no_extension you should add -# * to the FILE_PATTERNS. -# -# Note see also the list of default file extension mappings. - -EXTENSION_MAPPING = - -# If the MARKDOWN_SUPPORT tag is enabled then doxygen pre-processes all comments -# according to the Markdown format, which allows for more readable -# documentation. See https://daringfireball.net/projects/markdown/ for details. -# The output of markdown processing is further processed by doxygen, so you can -# mix doxygen, HTML, and XML commands with Markdown formatting. Disable only in -# case of backward compatibilities issues. -# The default value is: YES. - -MARKDOWN_SUPPORT = YES - -# When the TOC_INCLUDE_HEADINGS tag is set to a non-zero value, all headings up -# to that level are automatically included in the table of contents, even if -# they do not have an id attribute. -# Note: This feature currently applies only to Markdown headings. -# Minimum value: 0, maximum value: 99, default value: 5. -# This tag requires that the tag MARKDOWN_SUPPORT is set to YES. - -TOC_INCLUDE_HEADINGS = 5 - -# When enabled doxygen tries to link words that correspond to documented -# classes, or namespaces to their corresponding documentation. Such a link can -# be prevented in individual cases by putting a % sign in front of the word or -# globally by setting AUTOLINK_SUPPORT to NO. -# The default value is: YES. - -AUTOLINK_SUPPORT = YES - -# If you use STL classes (i.e. std::string, std::vector, etc.) but do not want -# to include (a tag file for) the STL sources as input, then you should set this -# tag to YES in order to let doxygen match functions declarations and -# definitions whose arguments contain STL classes (e.g. func(std::string); -# versus func(std::string) {}). This also make the inheritance and collaboration -# diagrams that involve STL classes more complete and accurate. -# The default value is: NO. - -BUILTIN_STL_SUPPORT = NO - -# If you use Microsoft's C++/CLI language, you should set this option to YES to -# enable parsing support. -# The default value is: NO. - -CPP_CLI_SUPPORT = NO - -# Set the SIP_SUPPORT tag to YES if your project consists of sip (see: -# https://www.riverbankcomputing.com/software/sip/intro) sources only. Doxygen -# will parse them like normal C++ but will assume all classes use public instead -# of private inheritance when no explicit protection keyword is present. -# The default value is: NO. - -SIP_SUPPORT = NO - -# For Microsoft's IDL there are propget and propput attributes to indicate -# getter and setter methods for a property. Setting this option to YES will make -# doxygen to replace the get and set methods by a property in the documentation. -# This will only work if the methods are indeed getting or setting a simple -# type. If this is not the case, or you want to show the methods anyway, you -# should set this option to NO. -# The default value is: YES. - -IDL_PROPERTY_SUPPORT = YES - -# If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC -# tag is set to YES then doxygen will reuse the documentation of the first -# member in the group (if any) for the other members of the group. By default -# all members of a group must be documented explicitly. -# The default value is: NO. - -DISTRIBUTE_GROUP_DOC = NO - -# If one adds a struct or class to a group and this option is enabled, then also -# any nested class or struct is added to the same group. By default this option -# is disabled and one has to add nested compounds explicitly via \ingroup. -# The default value is: NO. - -GROUP_NESTED_COMPOUNDS = NO - -# Set the SUBGROUPING tag to YES to allow class member groups of the same type -# (for instance a group of public functions) to be put as a subgroup of that -# type (e.g. under the Public Functions section). Set it to NO to prevent -# subgrouping. Alternatively, this can be done per class using the -# \nosubgrouping command. -# The default value is: YES. - -SUBGROUPING = YES - -# When the INLINE_GROUPED_CLASSES tag is set to YES, classes, structs and unions -# are shown inside the group in which they are included (e.g. using \ingroup) -# instead of on a separate page (for HTML and Man pages) or section (for LaTeX -# and RTF). -# -# Note that this feature does not work in combination with -# SEPARATE_MEMBER_PAGES. -# The default value is: NO. - -INLINE_GROUPED_CLASSES = NO - -# When the INLINE_SIMPLE_STRUCTS tag is set to YES, structs, classes, and unions -# with only public data fields or simple typedef fields will be shown inline in -# the documentation of the scope in which they are defined (i.e. file, -# namespace, or group documentation), provided this scope is documented. If set -# to NO, structs, classes, and unions are shown on a separate page (for HTML and -# Man pages) or section (for LaTeX and RTF). -# The default value is: NO. - -INLINE_SIMPLE_STRUCTS = NO - -# When TYPEDEF_HIDES_STRUCT tag is enabled, a typedef of a struct, union, or -# enum is documented as struct, union, or enum with the name of the typedef. So -# typedef struct TypeS {} TypeT, will appear in the documentation as a struct -# with name TypeT. When disabled the typedef will appear as a member of a file, -# namespace, or class. And the struct will be named TypeS. This can typically be -# useful for C code in case the coding convention dictates that all compound -# types are typedef'ed and only the typedef is referenced, never the tag name. -# The default value is: NO. - -TYPEDEF_HIDES_STRUCT = NO - -# The size of the symbol lookup cache can be set using LOOKUP_CACHE_SIZE. This -# cache is used to resolve symbols given their name and scope. Since this can be -# an expensive process and often the same symbol appears multiple times in the -# code, doxygen keeps a cache of pre-resolved symbols. If the cache is too small -# doxygen will become slower. If the cache is too large, memory is wasted. The -# cache size is given by this formula: 2^(16+LOOKUP_CACHE_SIZE). The valid range -# is 0..9, the default is 0, corresponding to a cache size of 2^16=65536 -# symbols. At the end of a run doxygen will report the cache usage and suggest -# the optimal cache size from a speed point of view. -# Minimum value: 0, maximum value: 9, default value: 0. - -LOOKUP_CACHE_SIZE = 0 - -# The NUM_PROC_THREADS specifies the number threads doxygen is allowed to use -# during processing. When set to 0 doxygen will based this on the number of -# cores available in the system. You can set it explicitly to a value larger -# than 0 to get more control over the balance between CPU load and processing -# speed. At this moment only the input processing can be done using multiple -# threads. Since this is still an experimental feature the default is set to 1, -# which efficively disables parallel processing. Please report any issues you -# encounter. Generating dot graphs in parallel is controlled by the -# DOT_NUM_THREADS setting. -# Minimum value: 0, maximum value: 32, default value: 1. - -NUM_PROC_THREADS = 1 - -#--------------------------------------------------------------------------- -# Build related configuration options -#--------------------------------------------------------------------------- - -# If the EXTRACT_ALL tag is set to YES, doxygen will assume all entities in -# documentation are documented, even if no documentation was available. Private -# class members and static file members will be hidden unless the -# EXTRACT_PRIVATE respectively EXTRACT_STATIC tags are set to YES. -# Note: This will also disable the warnings about undocumented members that are -# normally produced when WARNINGS is set to YES. -# The default value is: NO. - -EXTRACT_ALL = NO - -# If the EXTRACT_PRIVATE tag is set to YES, all private members of a class will -# be included in the documentation. -# The default value is: NO. - -EXTRACT_PRIVATE = NO - -# If the EXTRACT_PRIV_VIRTUAL tag is set to YES, documented private virtual -# methods of a class will be included in the documentation. -# The default value is: NO. - -EXTRACT_PRIV_VIRTUAL = NO - -# If the EXTRACT_PACKAGE tag is set to YES, all members with package or internal -# scope will be included in the documentation. -# The default value is: NO. - -EXTRACT_PACKAGE = NO - -# If the EXTRACT_STATIC tag is set to YES, all static members of a file will be -# included in the documentation. -# The default value is: NO. - -EXTRACT_STATIC = NO - -# If the EXTRACT_LOCAL_CLASSES tag is set to YES, classes (and structs) defined -# locally in source files will be included in the documentation. If set to NO, -# only classes defined in header files are included. Does not have any effect -# for Java sources. -# The default value is: YES. - -EXTRACT_LOCAL_CLASSES = YES - -# This flag is only useful for Objective-C code. If set to YES, local methods, -# which are defined in the implementation section but not in the interface are -# included in the documentation. If set to NO, only methods in the interface are -# included. -# The default value is: NO. - -EXTRACT_LOCAL_METHODS = NO - -# If this flag is set to YES, the members of anonymous namespaces will be -# extracted and appear in the documentation as a namespace called -# 'anonymous_namespace{file}', where file will be replaced with the base name of -# the file that contains the anonymous namespace. By default anonymous namespace -# are hidden. -# The default value is: NO. - -EXTRACT_ANON_NSPACES = NO - -# If this flag is set to YES, the name of an unnamed parameter in a declaration -# will be determined by the corresponding definition. By default unnamed -# parameters remain unnamed in the output. -# The default value is: YES. - -RESOLVE_UNNAMED_PARAMS = YES - -# If the HIDE_UNDOC_MEMBERS tag is set to YES, doxygen will hide all -# undocumented members inside documented classes or files. If set to NO these -# members will be included in the various overviews, but no documentation -# section is generated. This option has no effect if EXTRACT_ALL is enabled. -# The default value is: NO. - -HIDE_UNDOC_MEMBERS = NO - -# If the HIDE_UNDOC_CLASSES tag is set to YES, doxygen will hide all -# undocumented classes that are normally visible in the class hierarchy. If set -# to NO, these classes will be included in the various overviews. This option -# has no effect if EXTRACT_ALL is enabled. -# The default value is: NO. - -HIDE_UNDOC_CLASSES = NO - -# If the HIDE_FRIEND_COMPOUNDS tag is set to YES, doxygen will hide all friend -# declarations. If set to NO, these declarations will be included in the -# documentation. -# The default value is: NO. - -HIDE_FRIEND_COMPOUNDS = NO - -# If the HIDE_IN_BODY_DOCS tag is set to YES, doxygen will hide any -# documentation blocks found inside the body of a function. If set to NO, these -# blocks will be appended to the function's detailed documentation block. -# The default value is: NO. - -HIDE_IN_BODY_DOCS = NO - -# The INTERNAL_DOCS tag determines if documentation that is typed after a -# \internal command is included. If the tag is set to NO then the documentation -# will be excluded. Set it to YES to include the internal documentation. -# The default value is: NO. - -INTERNAL_DOCS = NO - -# With the correct setting of option CASE_SENSE_NAMES doxygen will better be -# able to match the capabilities of the underlying filesystem. In case the -# filesystem is case sensitive (i.e. it supports files in the same directory -# whose names only differ in casing), the option must be set to YES to properly -# deal with such files in case they appear in the input. For filesystems that -# are not case sensitive the option should be be set to NO to properly deal with -# output files written for symbols that only differ in casing, such as for two -# classes, one named CLASS and the other named Class, and to also support -# references to files without having to specify the exact matching casing. On -# Windows (including Cygwin) and MacOS, users should typically set this option -# to NO, whereas on Linux or other Unix flavors it should typically be set to -# YES. -# The default value is: system dependent. - -CASE_SENSE_NAMES = YES - -# If the HIDE_SCOPE_NAMES tag is set to NO then doxygen will show members with -# their full class and namespace scopes in the documentation. If set to YES, the -# scope will be hidden. -# The default value is: NO. - -HIDE_SCOPE_NAMES = NO - -# If the HIDE_COMPOUND_REFERENCE tag is set to NO (default) then doxygen will -# append additional text to a page's title, such as Class Reference. If set to -# YES the compound reference will be hidden. -# The default value is: NO. - -HIDE_COMPOUND_REFERENCE= NO - -# If the SHOW_INCLUDE_FILES tag is set to YES then doxygen will put a list of -# the files that are included by a file in the documentation of that file. -# The default value is: YES. - -SHOW_INCLUDE_FILES = YES - -# If the SHOW_GROUPED_MEMB_INC tag is set to YES then Doxygen will add for each -# grouped member an include statement to the documentation, telling the reader -# which file to include in order to use the member. -# The default value is: NO. - -SHOW_GROUPED_MEMB_INC = NO - -# If the FORCE_LOCAL_INCLUDES tag is set to YES then doxygen will list include -# files with double quotes in the documentation rather than with sharp brackets. -# The default value is: NO. - -FORCE_LOCAL_INCLUDES = NO - -# If the INLINE_INFO tag is set to YES then a tag [inline] is inserted in the -# documentation for inline members. -# The default value is: YES. - -INLINE_INFO = YES - -# If the SORT_MEMBER_DOCS tag is set to YES then doxygen will sort the -# (detailed) documentation of file and class members alphabetically by member -# name. If set to NO, the members will appear in declaration order. -# The default value is: YES. - -SORT_MEMBER_DOCS = YES - -# If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the brief -# descriptions of file, namespace and class members alphabetically by member -# name. If set to NO, the members will appear in declaration order. Note that -# this will also influence the order of the classes in the class list. -# The default value is: NO. - -SORT_BRIEF_DOCS = NO - -# If the SORT_MEMBERS_CTORS_1ST tag is set to YES then doxygen will sort the -# (brief and detailed) documentation of class members so that constructors and -# destructors are listed first. If set to NO the constructors will appear in the -# respective orders defined by SORT_BRIEF_DOCS and SORT_MEMBER_DOCS. -# Note: If SORT_BRIEF_DOCS is set to NO this option is ignored for sorting brief -# member documentation. -# Note: If SORT_MEMBER_DOCS is set to NO this option is ignored for sorting -# detailed member documentation. -# The default value is: NO. - -SORT_MEMBERS_CTORS_1ST = NO - -# If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the hierarchy -# of group names into alphabetical order. If set to NO the group names will -# appear in their defined order. -# The default value is: NO. - -SORT_GROUP_NAMES = NO - -# If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be sorted by -# fully-qualified names, including namespaces. If set to NO, the class list will -# be sorted only by class name, not including the namespace part. -# Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES. -# Note: This option applies only to the class list, not to the alphabetical -# list. -# The default value is: NO. - -SORT_BY_SCOPE_NAME = NO - -# If the STRICT_PROTO_MATCHING option is enabled and doxygen fails to do proper -# type resolution of all parameters of a function it will reject a match between -# the prototype and the implementation of a member function even if there is -# only one candidate or it is obvious which candidate to choose by doing a -# simple string match. By disabling STRICT_PROTO_MATCHING doxygen will still -# accept a match between prototype and implementation in such cases. -# The default value is: NO. - -STRICT_PROTO_MATCHING = NO - -# The GENERATE_TODOLIST tag can be used to enable (YES) or disable (NO) the todo -# list. This list is created by putting \todo commands in the documentation. -# The default value is: YES. - -GENERATE_TODOLIST = YES - -# The GENERATE_TESTLIST tag can be used to enable (YES) or disable (NO) the test -# list. This list is created by putting \test commands in the documentation. -# The default value is: YES. - -GENERATE_TESTLIST = YES - -# The GENERATE_BUGLIST tag can be used to enable (YES) or disable (NO) the bug -# list. This list is created by putting \bug commands in the documentation. -# The default value is: YES. - -GENERATE_BUGLIST = YES - -# The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or disable (NO) -# the deprecated list. This list is created by putting \deprecated commands in -# the documentation. -# The default value is: YES. - -GENERATE_DEPRECATEDLIST= YES - -# The ENABLED_SECTIONS tag can be used to enable conditional documentation -# sections, marked by \if ... \endif and \cond -# ... \endcond blocks. - -ENABLED_SECTIONS = - -# The MAX_INITIALIZER_LINES tag determines the maximum number of lines that the -# initial value of a variable or macro / define can have for it to appear in the -# documentation. If the initializer consists of more lines than specified here -# it will be hidden. Use a value of 0 to hide initializers completely. The -# appearance of the value of individual variables and macros / defines can be -# controlled using \showinitializer or \hideinitializer command in the -# documentation regardless of this setting. -# Minimum value: 0, maximum value: 10000, default value: 30. - -MAX_INITIALIZER_LINES = 30 - -# Set the SHOW_USED_FILES tag to NO to disable the list of files generated at -# the bottom of the documentation of classes and structs. If set to YES, the -# list will mention the files that were used to generate the documentation. -# The default value is: YES. - -SHOW_USED_FILES = YES - -# Set the SHOW_FILES tag to NO to disable the generation of the Files page. This -# will remove the Files entry from the Quick Index and from the Folder Tree View -# (if specified). -# The default value is: YES. - -SHOW_FILES = YES - -# Set the SHOW_NAMESPACES tag to NO to disable the generation of the Namespaces -# page. This will remove the Namespaces entry from the Quick Index and from the -# Folder Tree View (if specified). -# The default value is: YES. - -SHOW_NAMESPACES = YES - -# The FILE_VERSION_FILTER tag can be used to specify a program or script that -# doxygen should invoke to get the current version for each file (typically from -# the version control system). Doxygen will invoke the program by executing (via -# popen()) the command command input-file, where command is the value of the -# FILE_VERSION_FILTER tag, and input-file is the name of an input file provided -# by doxygen. Whatever the program writes to standard output is used as the file -# version. For an example see the documentation. - -FILE_VERSION_FILTER = - -# The LAYOUT_FILE tag can be used to specify a layout file which will be parsed -# by doxygen. The layout file controls the global structure of the generated -# output files in an output format independent way. To create the layout file -# that represents doxygen's defaults, run doxygen with the -l option. You can -# optionally specify a file name after the option, if omitted DoxygenLayout.xml -# will be used as the name of the layout file. -# -# Note that if you run doxygen from a directory containing a file called -# DoxygenLayout.xml, doxygen will parse it automatically even if the LAYOUT_FILE -# tag is left empty. - -LAYOUT_FILE = - -# The CITE_BIB_FILES tag can be used to specify one or more bib files containing -# the reference definitions. This must be a list of .bib files. The .bib -# extension is automatically appended if omitted. This requires the bibtex tool -# to be installed. See also https://en.wikipedia.org/wiki/BibTeX for more info. -# For LaTeX the style of the bibliography can be controlled using -# LATEX_BIB_STYLE. To use this feature you need bibtex and perl available in the -# search path. See also \cite for info how to create references. - -CITE_BIB_FILES = - -#--------------------------------------------------------------------------- -# Configuration options related to warning and progress messages -#--------------------------------------------------------------------------- - -# The QUIET tag can be used to turn on/off the messages that are generated to -# standard output by doxygen. If QUIET is set to YES this implies that the -# messages are off. -# The default value is: NO. - -QUIET = NO - -# The WARNINGS tag can be used to turn on/off the warning messages that are -# generated to standard error (stderr) by doxygen. If WARNINGS is set to YES -# this implies that the warnings are on. -# -# Tip: Turn warnings on while writing the documentation. -# The default value is: YES. - -WARNINGS = YES - -# If the WARN_IF_UNDOCUMENTED tag is set to YES then doxygen will generate -# warnings for undocumented members. If EXTRACT_ALL is set to YES then this flag -# will automatically be disabled. -# The default value is: YES. - -WARN_IF_UNDOCUMENTED = YES - -# If the WARN_IF_DOC_ERROR tag is set to YES, doxygen will generate warnings for -# potential errors in the documentation, such as not documenting some parameters -# in a documented function, or documenting parameters that don't exist or using -# markup commands wrongly. -# The default value is: YES. - -WARN_IF_DOC_ERROR = YES - -# This WARN_NO_PARAMDOC option can be enabled to get warnings for functions that -# are documented, but have no documentation for their parameters or return -# value. If set to NO, doxygen will only warn about wrong or incomplete -# parameter documentation, but not about the absence of documentation. If -# EXTRACT_ALL is set to YES then this flag will automatically be disabled. -# The default value is: NO. - -WARN_NO_PARAMDOC = NO - -# If the WARN_AS_ERROR tag is set to YES then doxygen will immediately stop when -# a warning is encountered. If the WARN_AS_ERROR tag is set to FAIL_ON_WARNINGS -# then doxygen will continue running as if WARN_AS_ERROR tag is set to NO, but -# at the end of the doxygen process doxygen will return with a non-zero status. -# Possible values are: NO, YES and FAIL_ON_WARNINGS. -# The default value is: NO. - -WARN_AS_ERROR = NO - -# The WARN_FORMAT tag determines the format of the warning messages that doxygen -# can produce. The string should contain the $file, $line, and $text tags, which -# will be replaced by the file and line number from which the warning originated -# and the warning text. Optionally the format may contain $version, which will -# be replaced by the version of the file (if it could be obtained via -# FILE_VERSION_FILTER) -# The default value is: $file:$line: $text. - -WARN_FORMAT = "$file:$line: $text" - -# The WARN_LOGFILE tag can be used to specify a file to which warning and error -# messages should be written. If left blank the output is written to standard -# error (stderr). - -WARN_LOGFILE = - -#--------------------------------------------------------------------------- -# Configuration options related to the input files -#--------------------------------------------------------------------------- - -# The INPUT tag is used to specify the files and/or directories that contain -# documented source files. You may enter file names like myfile.cpp or -# directories like /usr/src/myproject. Separate the files or directories with -# spaces. See also FILE_PATTERNS and EXTENSION_MAPPING -# Note: If this tag is empty the current directory is searched. - -INPUT = - -# This tag can be used to specify the character encoding of the source files -# that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses -# libiconv (or the iconv built into libc) for the transcoding. See the libiconv -# documentation (see: -# https://www.gnu.org/software/libiconv/) for the list of possible encodings. -# The default value is: UTF-8. - -INPUT_ENCODING = UTF-8 - -# If the value of the INPUT tag contains directories, you can use the -# FILE_PATTERNS tag to specify one or more wildcard patterns (like *.cpp and -# *.h) to filter out the source-files in the directories. -# -# Note that for custom extensions or not directly supported extensions you also -# need to set EXTENSION_MAPPING for the extension otherwise the files are not -# read by doxygen. -# -# Note the list of default checked file patterns might differ from the list of -# default file extension mappings. -# -# If left blank the following patterns are tested:*.c, *.cc, *.cxx, *.cpp, -# *.c++, *.java, *.ii, *.ixx, *.ipp, *.i++, *.inl, *.idl, *.ddl, *.odl, *.h, -# *.hh, *.hxx, *.hpp, *.h++, *.cs, *.d, *.php, *.php4, *.php5, *.phtml, *.inc, -# *.m, *.markdown, *.md, *.mm, *.dox (to be provided as doxygen C comment), -# *.py, *.pyw, *.f90, *.f95, *.f03, *.f08, *.f18, *.f, *.for, *.vhd, *.vhdl, -# *.ucf, *.qsf and *.ice. - -FILE_PATTERNS = *.c \ - *.cc \ - *.cxx \ - *.cpp \ - *.c++ \ - *.java \ - *.ii \ - *.ixx \ - *.ipp \ - *.i++ \ - *.inl \ - *.idl \ - *.ddl \ - *.odl \ - *.h \ - *.hh \ - *.hxx \ - *.hpp \ - *.h++ \ - *.cs \ - *.d \ - *.php \ - *.php4 \ - *.php5 \ - *.phtml \ - *.inc \ - *.m \ - *.markdown \ - *.md \ - *.mm \ - *.dox \ - *.py \ - *.pyw \ - *.f90 \ - *.f95 \ - *.f03 \ - *.f08 \ - *.f18 \ - *.f \ - *.for \ - *.vhd \ - *.vhdl \ - *.ucf \ - *.qsf \ - *.ice - -# The RECURSIVE tag can be used to specify whether or not subdirectories should -# be searched for input files as well. -# The default value is: NO. - -RECURSIVE = NO - -# The EXCLUDE tag can be used to specify files and/or directories that should be -# excluded from the INPUT source files. This way you can easily exclude a -# subdirectory from a directory tree whose root is specified with the INPUT tag. -# -# Note that relative paths are relative to the directory from which doxygen is -# run. - -EXCLUDE = - -# The EXCLUDE_SYMLINKS tag can be used to select whether or not files or -# directories that are symbolic links (a Unix file system feature) are excluded -# from the input. -# The default value is: NO. - -EXCLUDE_SYMLINKS = NO - -# If the value of the INPUT tag contains directories, you can use the -# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude -# certain files from those directories. -# -# Note that the wildcards are matched against the file with absolute path, so to -# exclude all test directories for example use the pattern */test/* - -EXCLUDE_PATTERNS = - -# The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names -# (namespaces, classes, functions, etc.) that should be excluded from the -# output. The symbol name can be a fully qualified name, a word, or if the -# wildcard * is used, a substring. Examples: ANamespace, AClass, -# AClass::ANamespace, ANamespace::*Test -# -# Note that the wildcards are matched against the file with absolute path, so to -# exclude all test directories use the pattern */test/* - -EXCLUDE_SYMBOLS = - -# The EXAMPLE_PATH tag can be used to specify one or more files or directories -# that contain example code fragments that are included (see the \include -# command). - -EXAMPLE_PATH = - -# If the value of the EXAMPLE_PATH tag contains directories, you can use the -# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp and -# *.h) to filter out the source-files in the directories. If left blank all -# files are included. - -EXAMPLE_PATTERNS = * - -# If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be -# searched for input files to be used with the \include or \dontinclude commands -# irrespective of the value of the RECURSIVE tag. -# The default value is: NO. - -EXAMPLE_RECURSIVE = NO - -# The IMAGE_PATH tag can be used to specify one or more files or directories -# that contain images that are to be included in the documentation (see the -# \image command). - -IMAGE_PATH = - -# The INPUT_FILTER tag can be used to specify a program that doxygen should -# invoke to filter for each input file. Doxygen will invoke the filter program -# by executing (via popen()) the command: -# -# -# -# where is the value of the INPUT_FILTER tag, and is the -# name of an input file. Doxygen will then use the output that the filter -# program writes to standard output. If FILTER_PATTERNS is specified, this tag -# will be ignored. -# -# Note that the filter must not add or remove lines; it is applied before the -# code is scanned, but not when the output code is generated. If lines are added -# or removed, the anchors will not be placed correctly. -# -# Note that for custom extensions or not directly supported extensions you also -# need to set EXTENSION_MAPPING for the extension otherwise the files are not -# properly processed by doxygen. - -INPUT_FILTER = - -# The FILTER_PATTERNS tag can be used to specify filters on a per file pattern -# basis. Doxygen will compare the file name with each pattern and apply the -# filter if there is a match. The filters are a list of the form: pattern=filter -# (like *.cpp=my_cpp_filter). See INPUT_FILTER for further information on how -# filters are used. If the FILTER_PATTERNS tag is empty or if none of the -# patterns match the file name, INPUT_FILTER is applied. -# -# Note that for custom extensions or not directly supported extensions you also -# need to set EXTENSION_MAPPING for the extension otherwise the files are not -# properly processed by doxygen. - -FILTER_PATTERNS = - -# If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using -# INPUT_FILTER) will also be used to filter the input files that are used for -# producing the source files to browse (i.e. when SOURCE_BROWSER is set to YES). -# The default value is: NO. - -FILTER_SOURCE_FILES = NO - -# The FILTER_SOURCE_PATTERNS tag can be used to specify source filters per file -# pattern. A pattern will override the setting for FILTER_PATTERN (if any) and -# it is also possible to disable source filtering for a specific pattern using -# *.ext= (so without naming a filter). -# This tag requires that the tag FILTER_SOURCE_FILES is set to YES. - -FILTER_SOURCE_PATTERNS = - -# If the USE_MDFILE_AS_MAINPAGE tag refers to the name of a markdown file that -# is part of the input, its contents will be placed on the main page -# (index.html). This can be useful if you have a project on for instance GitHub -# and want to reuse the introduction page also for the doxygen output. - -USE_MDFILE_AS_MAINPAGE = - -#--------------------------------------------------------------------------- -# Configuration options related to source browsing -#--------------------------------------------------------------------------- - -# If the SOURCE_BROWSER tag is set to YES then a list of source files will be -# generated. Documented entities will be cross-referenced with these sources. -# -# Note: To get rid of all source code in the generated output, make sure that -# also VERBATIM_HEADERS is set to NO. -# The default value is: NO. - -SOURCE_BROWSER = NO - -# Setting the INLINE_SOURCES tag to YES will include the body of functions, -# classes and enums directly into the documentation. -# The default value is: NO. - -INLINE_SOURCES = NO - -# Setting the STRIP_CODE_COMMENTS tag to YES will instruct doxygen to hide any -# special comment blocks from generated source code fragments. Normal C, C++ and -# Fortran comments will always remain visible. -# The default value is: YES. - -STRIP_CODE_COMMENTS = YES - -# If the REFERENCED_BY_RELATION tag is set to YES then for each documented -# entity all documented functions referencing it will be listed. -# The default value is: NO. - -REFERENCED_BY_RELATION = NO - -# If the REFERENCES_RELATION tag is set to YES then for each documented function -# all documented entities called/used by that function will be listed. -# The default value is: NO. - -REFERENCES_RELATION = NO - -# If the REFERENCES_LINK_SOURCE tag is set to YES and SOURCE_BROWSER tag is set -# to YES then the hyperlinks from functions in REFERENCES_RELATION and -# REFERENCED_BY_RELATION lists will link to the source code. Otherwise they will -# link to the documentation. -# The default value is: YES. - -REFERENCES_LINK_SOURCE = YES - -# If SOURCE_TOOLTIPS is enabled (the default) then hovering a hyperlink in the -# source code will show a tooltip with additional information such as prototype, -# brief description and links to the definition and documentation. Since this -# will make the HTML file larger and loading of large files a bit slower, you -# can opt to disable this feature. -# The default value is: YES. -# This tag requires that the tag SOURCE_BROWSER is set to YES. - -SOURCE_TOOLTIPS = YES - -# If the USE_HTAGS tag is set to YES then the references to source code will -# point to the HTML generated by the htags(1) tool instead of doxygen built-in -# source browser. The htags tool is part of GNU's global source tagging system -# (see https://www.gnu.org/software/global/global.html). You will need version -# 4.8.6 or higher. -# -# To use it do the following: -# - Install the latest version of global -# - Enable SOURCE_BROWSER and USE_HTAGS in the configuration file -# - Make sure the INPUT points to the root of the source tree -# - Run doxygen as normal -# -# Doxygen will invoke htags (and that will in turn invoke gtags), so these -# tools must be available from the command line (i.e. in the search path). -# -# The result: instead of the source browser generated by doxygen, the links to -# source code will now point to the output of htags. -# The default value is: NO. -# This tag requires that the tag SOURCE_BROWSER is set to YES. - -USE_HTAGS = NO - -# If the VERBATIM_HEADERS tag is set the YES then doxygen will generate a -# verbatim copy of the header file for each class for which an include is -# specified. Set to NO to disable this. -# See also: Section \class. -# The default value is: YES. - -VERBATIM_HEADERS = YES - -# If the CLANG_ASSISTED_PARSING tag is set to YES then doxygen will use the -# clang parser (see: -# http://clang.llvm.org/) for more accurate parsing at the cost of reduced -# performance. This can be particularly helpful with template rich C++ code for -# which doxygen's built-in parser lacks the necessary type information. -# Note: The availability of this option depends on whether or not doxygen was -# generated with the -Duse_libclang=ON option for CMake. -# The default value is: NO. - -CLANG_ASSISTED_PARSING = NO - -# If clang assisted parsing is enabled and the CLANG_ADD_INC_PATHS tag is set to -# YES then doxygen will add the directory of each input to the include path. -# The default value is: YES. - -CLANG_ADD_INC_PATHS = YES - -# If clang assisted parsing is enabled you can provide the compiler with command -# line options that you would normally use when invoking the compiler. Note that -# the include paths will already be set by doxygen for the files and directories -# specified with INPUT and INCLUDE_PATH. -# This tag requires that the tag CLANG_ASSISTED_PARSING is set to YES. - -CLANG_OPTIONS = - -# If clang assisted parsing is enabled you can provide the clang parser with the -# path to the directory containing a file called compile_commands.json. This -# file is the compilation database (see: -# http://clang.llvm.org/docs/HowToSetupToolingForLLVM.html) containing the -# options used when the source files were built. This is equivalent to -# specifying the -p option to a clang tool, such as clang-check. These options -# will then be passed to the parser. Any options specified with CLANG_OPTIONS -# will be added as well. -# Note: The availability of this option depends on whether or not doxygen was -# generated with the -Duse_libclang=ON option for CMake. - -CLANG_DATABASE_PATH = - -#--------------------------------------------------------------------------- -# Configuration options related to the alphabetical class index -#--------------------------------------------------------------------------- - -# If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index of all -# compounds will be generated. Enable this if the project contains a lot of -# classes, structs, unions or interfaces. -# The default value is: YES. - -ALPHABETICAL_INDEX = YES - -# In case all classes in a project start with a common prefix, all classes will -# be put under the same header in the alphabetical index. The IGNORE_PREFIX tag -# can be used to specify a prefix (or a list of prefixes) that should be ignored -# while generating the index headers. -# This tag requires that the tag ALPHABETICAL_INDEX is set to YES. - -IGNORE_PREFIX = - -#--------------------------------------------------------------------------- -# Configuration options related to the HTML output -#--------------------------------------------------------------------------- - -# If the GENERATE_HTML tag is set to YES, doxygen will generate HTML output -# The default value is: YES. - -GENERATE_HTML = YES - -# The HTML_OUTPUT tag is used to specify where the HTML docs will be put. If a -# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of -# it. -# The default directory is: html. -# This tag requires that the tag GENERATE_HTML is set to YES. - -HTML_OUTPUT = html - -# The HTML_FILE_EXTENSION tag can be used to specify the file extension for each -# generated HTML page (for example: .htm, .php, .asp). -# The default value is: .html. -# This tag requires that the tag GENERATE_HTML is set to YES. - -HTML_FILE_EXTENSION = .html - -# The HTML_HEADER tag can be used to specify a user-defined HTML header file for -# each generated HTML page. If the tag is left blank doxygen will generate a -# standard header. -# -# To get valid HTML the header file that includes any scripts and style sheets -# that doxygen needs, which is dependent on the configuration options used (e.g. -# the setting GENERATE_TREEVIEW). It is highly recommended to start with a -# default header using -# doxygen -w html new_header.html new_footer.html new_stylesheet.css -# YourConfigFile -# and then modify the file new_header.html. See also section "Doxygen usage" -# for information on how to generate the default header that doxygen normally -# uses. -# Note: The header is subject to change so you typically have to regenerate the -# default header when upgrading to a newer version of doxygen. For a description -# of the possible markers and block names see the documentation. -# This tag requires that the tag GENERATE_HTML is set to YES. - -HTML_HEADER = - -# The HTML_FOOTER tag can be used to specify a user-defined HTML footer for each -# generated HTML page. If the tag is left blank doxygen will generate a standard -# footer. See HTML_HEADER for more information on how to generate a default -# footer and what special commands can be used inside the footer. See also -# section "Doxygen usage" for information on how to generate the default footer -# that doxygen normally uses. -# This tag requires that the tag GENERATE_HTML is set to YES. - -HTML_FOOTER = - -# The HTML_STYLESHEET tag can be used to specify a user-defined cascading style -# sheet that is used by each HTML page. It can be used to fine-tune the look of -# the HTML output. If left blank doxygen will generate a default style sheet. -# See also section "Doxygen usage" for information on how to generate the style -# sheet that doxygen normally uses. -# Note: It is recommended to use HTML_EXTRA_STYLESHEET instead of this tag, as -# it is more robust and this tag (HTML_STYLESHEET) will in the future become -# obsolete. -# This tag requires that the tag GENERATE_HTML is set to YES. - -HTML_STYLESHEET = - -# The HTML_EXTRA_STYLESHEET tag can be used to specify additional user-defined -# cascading style sheets that are included after the standard style sheets -# created by doxygen. Using this option one can overrule certain style aspects. -# This is preferred over using HTML_STYLESHEET since it does not replace the -# standard style sheet and is therefore more robust against future updates. -# Doxygen will copy the style sheet files to the output directory. -# Note: The order of the extra style sheet files is of importance (e.g. the last -# style sheet in the list overrules the setting of the previous ones in the -# list). For an example see the documentation. -# This tag requires that the tag GENERATE_HTML is set to YES. - -HTML_EXTRA_STYLESHEET = - -# The HTML_EXTRA_FILES tag can be used to specify one or more extra images or -# other source files which should be copied to the HTML output directory. Note -# that these files will be copied to the base HTML output directory. Use the -# $relpath^ marker in the HTML_HEADER and/or HTML_FOOTER files to load these -# files. In the HTML_STYLESHEET file, use the file name only. Also note that the -# files will be copied as-is; there are no commands or markers available. -# This tag requires that the tag GENERATE_HTML is set to YES. - -HTML_EXTRA_FILES = - -# The HTML_COLORSTYLE_HUE tag controls the color of the HTML output. Doxygen -# will adjust the colors in the style sheet and background images according to -# this color. Hue is specified as an angle on a colorwheel, see -# https://en.wikipedia.org/wiki/Hue for more information. For instance the value -# 0 represents red, 60 is yellow, 120 is green, 180 is cyan, 240 is blue, 300 -# purple, and 360 is red again. -# Minimum value: 0, maximum value: 359, default value: 220. -# This tag requires that the tag GENERATE_HTML is set to YES. - -HTML_COLORSTYLE_HUE = 220 - -# The HTML_COLORSTYLE_SAT tag controls the purity (or saturation) of the colors -# in the HTML output. For a value of 0 the output will use grayscales only. A -# value of 255 will produce the most vivid colors. -# Minimum value: 0, maximum value: 255, default value: 100. -# This tag requires that the tag GENERATE_HTML is set to YES. - -HTML_COLORSTYLE_SAT = 100 - -# The HTML_COLORSTYLE_GAMMA tag controls the gamma correction applied to the -# luminance component of the colors in the HTML output. Values below 100 -# gradually make the output lighter, whereas values above 100 make the output -# darker. The value divided by 100 is the actual gamma applied, so 80 represents -# a gamma of 0.8, The value 220 represents a gamma of 2.2, and 100 does not -# change the gamma. -# Minimum value: 40, maximum value: 240, default value: 80. -# This tag requires that the tag GENERATE_HTML is set to YES. - -HTML_COLORSTYLE_GAMMA = 80 - -# If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML -# page will contain the date and time when the page was generated. Setting this -# to YES can help to show when doxygen was last run and thus if the -# documentation is up to date. -# The default value is: NO. -# This tag requires that the tag GENERATE_HTML is set to YES. - -HTML_TIMESTAMP = NO - -# If the HTML_DYNAMIC_MENUS tag is set to YES then the generated HTML -# documentation will contain a main index with vertical navigation menus that -# are dynamically created via JavaScript. If disabled, the navigation index will -# consists of multiple levels of tabs that are statically embedded in every HTML -# page. Disable this option to support browsers that do not have JavaScript, -# like the Qt help browser. -# The default value is: YES. -# This tag requires that the tag GENERATE_HTML is set to YES. - -HTML_DYNAMIC_MENUS = YES - -# If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML -# documentation will contain sections that can be hidden and shown after the -# page has loaded. -# The default value is: NO. -# This tag requires that the tag GENERATE_HTML is set to YES. - -HTML_DYNAMIC_SECTIONS = NO - -# With HTML_INDEX_NUM_ENTRIES one can control the preferred number of entries -# shown in the various tree structured indices initially; the user can expand -# and collapse entries dynamically later on. Doxygen will expand the tree to -# such a level that at most the specified number of entries are visible (unless -# a fully collapsed tree already exceeds this amount). So setting the number of -# entries 1 will produce a full collapsed tree by default. 0 is a special value -# representing an infinite number of entries and will result in a full expanded -# tree by default. -# Minimum value: 0, maximum value: 9999, default value: 100. -# This tag requires that the tag GENERATE_HTML is set to YES. - -HTML_INDEX_NUM_ENTRIES = 100 - -# If the GENERATE_DOCSET tag is set to YES, additional index files will be -# generated that can be used as input for Apple's Xcode 3 integrated development -# environment (see: -# https://developer.apple.com/xcode/), introduced with OSX 10.5 (Leopard). To -# create a documentation set, doxygen will generate a Makefile in the HTML -# output directory. Running make will produce the docset in that directory and -# running make install will install the docset in -# ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find it at -# startup. See https://developer.apple.com/library/archive/featuredarticles/Doxy -# genXcode/_index.html for more information. -# The default value is: NO. -# This tag requires that the tag GENERATE_HTML is set to YES. - -GENERATE_DOCSET = NO - -# This tag determines the name of the docset feed. A documentation feed provides -# an umbrella under which multiple documentation sets from a single provider -# (such as a company or product suite) can be grouped. -# The default value is: Doxygen generated docs. -# This tag requires that the tag GENERATE_DOCSET is set to YES. - -DOCSET_FEEDNAME = "Doxygen generated docs" - -# This tag specifies a string that should uniquely identify the documentation -# set bundle. This should be a reverse domain-name style string, e.g. -# com.mycompany.MyDocSet. Doxygen will append .docset to the name. -# The default value is: org.doxygen.Project. -# This tag requires that the tag GENERATE_DOCSET is set to YES. - -DOCSET_BUNDLE_ID = org.doxygen.Project - -# The DOCSET_PUBLISHER_ID tag specifies a string that should uniquely identify -# the documentation publisher. This should be a reverse domain-name style -# string, e.g. com.mycompany.MyDocSet.documentation. -# The default value is: org.doxygen.Publisher. -# This tag requires that the tag GENERATE_DOCSET is set to YES. - -DOCSET_PUBLISHER_ID = org.doxygen.Publisher - -# The DOCSET_PUBLISHER_NAME tag identifies the documentation publisher. -# The default value is: Publisher. -# This tag requires that the tag GENERATE_DOCSET is set to YES. - -DOCSET_PUBLISHER_NAME = Publisher - -# If the GENERATE_HTMLHELP tag is set to YES then doxygen generates three -# additional HTML index files: index.hhp, index.hhc, and index.hhk. The -# index.hhp is a project file that can be read by Microsoft's HTML Help Workshop -# (see: -# https://www.microsoft.com/en-us/download/details.aspx?id=21138) on Windows. -# -# The HTML Help Workshop contains a compiler that can convert all HTML output -# generated by doxygen into a single compiled HTML file (.chm). Compiled HTML -# files are now used as the Windows 98 help format, and will replace the old -# Windows help format (.hlp) on all Windows platforms in the future. Compressed -# HTML files also contain an index, a table of contents, and you can search for -# words in the documentation. The HTML workshop also contains a viewer for -# compressed HTML files. -# The default value is: NO. -# This tag requires that the tag GENERATE_HTML is set to YES. - -GENERATE_HTMLHELP = NO - -# The CHM_FILE tag can be used to specify the file name of the resulting .chm -# file. You can add a path in front of the file if the result should not be -# written to the html output directory. -# This tag requires that the tag GENERATE_HTMLHELP is set to YES. - -CHM_FILE = - -# The HHC_LOCATION tag can be used to specify the location (absolute path -# including file name) of the HTML help compiler (hhc.exe). If non-empty, -# doxygen will try to run the HTML help compiler on the generated index.hhp. -# The file has to be specified with full path. -# This tag requires that the tag GENERATE_HTMLHELP is set to YES. - -HHC_LOCATION = - -# The GENERATE_CHI flag controls if a separate .chi index file is generated -# (YES) or that it should be included in the main .chm file (NO). -# The default value is: NO. -# This tag requires that the tag GENERATE_HTMLHELP is set to YES. - -GENERATE_CHI = NO - -# The CHM_INDEX_ENCODING is used to encode HtmlHelp index (hhk), content (hhc) -# and project file content. -# This tag requires that the tag GENERATE_HTMLHELP is set to YES. - -CHM_INDEX_ENCODING = - -# The BINARY_TOC flag controls whether a binary table of contents is generated -# (YES) or a normal table of contents (NO) in the .chm file. Furthermore it -# enables the Previous and Next buttons. -# The default value is: NO. -# This tag requires that the tag GENERATE_HTMLHELP is set to YES. - -BINARY_TOC = NO - -# The TOC_EXPAND flag can be set to YES to add extra items for group members to -# the table of contents of the HTML help documentation and to the tree view. -# The default value is: NO. -# This tag requires that the tag GENERATE_HTMLHELP is set to YES. - -TOC_EXPAND = NO - -# If the GENERATE_QHP tag is set to YES and both QHP_NAMESPACE and -# QHP_VIRTUAL_FOLDER are set, an additional index file will be generated that -# can be used as input for Qt's qhelpgenerator to generate a Qt Compressed Help -# (.qch) of the generated HTML documentation. -# The default value is: NO. -# This tag requires that the tag GENERATE_HTML is set to YES. - -GENERATE_QHP = NO - -# If the QHG_LOCATION tag is specified, the QCH_FILE tag can be used to specify -# the file name of the resulting .qch file. The path specified is relative to -# the HTML output folder. -# This tag requires that the tag GENERATE_QHP is set to YES. - -QCH_FILE = - -# The QHP_NAMESPACE tag specifies the namespace to use when generating Qt Help -# Project output. For more information please see Qt Help Project / Namespace -# (see: -# https://doc.qt.io/archives/qt-4.8/qthelpproject.html#namespace). -# The default value is: org.doxygen.Project. -# This tag requires that the tag GENERATE_QHP is set to YES. - -QHP_NAMESPACE = org.doxygen.Project - -# The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating Qt -# Help Project output. For more information please see Qt Help Project / Virtual -# Folders (see: -# https://doc.qt.io/archives/qt-4.8/qthelpproject.html#virtual-folders). -# The default value is: doc. -# This tag requires that the tag GENERATE_QHP is set to YES. - -QHP_VIRTUAL_FOLDER = doc - -# If the QHP_CUST_FILTER_NAME tag is set, it specifies the name of a custom -# filter to add. For more information please see Qt Help Project / Custom -# Filters (see: -# https://doc.qt.io/archives/qt-4.8/qthelpproject.html#custom-filters). -# This tag requires that the tag GENERATE_QHP is set to YES. - -QHP_CUST_FILTER_NAME = - -# The QHP_CUST_FILTER_ATTRS tag specifies the list of the attributes of the -# custom filter to add. For more information please see Qt Help Project / Custom -# Filters (see: -# https://doc.qt.io/archives/qt-4.8/qthelpproject.html#custom-filters). -# This tag requires that the tag GENERATE_QHP is set to YES. - -QHP_CUST_FILTER_ATTRS = - -# The QHP_SECT_FILTER_ATTRS tag specifies the list of the attributes this -# project's filter section matches. Qt Help Project / Filter Attributes (see: -# https://doc.qt.io/archives/qt-4.8/qthelpproject.html#filter-attributes). -# This tag requires that the tag GENERATE_QHP is set to YES. - -QHP_SECT_FILTER_ATTRS = - -# The QHG_LOCATION tag can be used to specify the location (absolute path -# including file name) of Qt's qhelpgenerator. If non-empty doxygen will try to -# run qhelpgenerator on the generated .qhp file. -# This tag requires that the tag GENERATE_QHP is set to YES. - -QHG_LOCATION = - -# If the GENERATE_ECLIPSEHELP tag is set to YES, additional index files will be -# generated, together with the HTML files, they form an Eclipse help plugin. To -# install this plugin and make it available under the help contents menu in -# Eclipse, the contents of the directory containing the HTML and XML files needs -# to be copied into the plugins directory of eclipse. The name of the directory -# within the plugins directory should be the same as the ECLIPSE_DOC_ID value. -# After copying Eclipse needs to be restarted before the help appears. -# The default value is: NO. -# This tag requires that the tag GENERATE_HTML is set to YES. - -GENERATE_ECLIPSEHELP = NO - -# A unique identifier for the Eclipse help plugin. When installing the plugin -# the directory name containing the HTML and XML files should also have this -# name. Each documentation set should have its own identifier. -# The default value is: org.doxygen.Project. -# This tag requires that the tag GENERATE_ECLIPSEHELP is set to YES. - -ECLIPSE_DOC_ID = org.doxygen.Project - -# If you want full control over the layout of the generated HTML pages it might -# be necessary to disable the index and replace it with your own. The -# DISABLE_INDEX tag can be used to turn on/off the condensed index (tabs) at top -# of each HTML page. A value of NO enables the index and the value YES disables -# it. Since the tabs in the index contain the same information as the navigation -# tree, you can set this option to YES if you also set GENERATE_TREEVIEW to YES. -# The default value is: NO. -# This tag requires that the tag GENERATE_HTML is set to YES. - -DISABLE_INDEX = NO - -# The GENERATE_TREEVIEW tag is used to specify whether a tree-like index -# structure should be generated to display hierarchical information. If the tag -# value is set to YES, a side panel will be generated containing a tree-like -# index structure (just like the one that is generated for HTML Help). For this -# to work a browser that supports JavaScript, DHTML, CSS and frames is required -# (i.e. any modern browser). Windows users are probably better off using the -# HTML help feature. Via custom style sheets (see HTML_EXTRA_STYLESHEET) one can -# further fine-tune the look of the index. As an example, the default style -# sheet generated by doxygen has an example that shows how to put an image at -# the root of the tree instead of the PROJECT_NAME. Since the tree basically has -# the same information as the tab index, you could consider setting -# DISABLE_INDEX to YES when enabling this option. -# The default value is: NO. -# This tag requires that the tag GENERATE_HTML is set to YES. - -GENERATE_TREEVIEW = NO - -# The ENUM_VALUES_PER_LINE tag can be used to set the number of enum values that -# doxygen will group on one line in the generated HTML documentation. -# -# Note that a value of 0 will completely suppress the enum values from appearing -# in the overview section. -# Minimum value: 0, maximum value: 20, default value: 4. -# This tag requires that the tag GENERATE_HTML is set to YES. - -ENUM_VALUES_PER_LINE = 4 - -# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be used -# to set the initial width (in pixels) of the frame in which the tree is shown. -# Minimum value: 0, maximum value: 1500, default value: 250. -# This tag requires that the tag GENERATE_HTML is set to YES. - -TREEVIEW_WIDTH = 250 - -# If the EXT_LINKS_IN_WINDOW option is set to YES, doxygen will open links to -# external symbols imported via tag files in a separate window. -# The default value is: NO. -# This tag requires that the tag GENERATE_HTML is set to YES. - -EXT_LINKS_IN_WINDOW = NO - -# If the HTML_FORMULA_FORMAT option is set to svg, doxygen will use the pdf2svg -# tool (see https://github.com/dawbarton/pdf2svg) or inkscape (see -# https://inkscape.org) to generate formulas as SVG images instead of PNGs for -# the HTML output. These images will generally look nicer at scaled resolutions. -# Possible values are: png (the default) and svg (looks nicer but requires the -# pdf2svg or inkscape tool). -# The default value is: png. -# This tag requires that the tag GENERATE_HTML is set to YES. - -HTML_FORMULA_FORMAT = png - -# Use this tag to change the font size of LaTeX formulas included as images in -# the HTML documentation. When you change the font size after a successful -# doxygen run you need to manually remove any form_*.png images from the HTML -# output directory to force them to be regenerated. -# Minimum value: 8, maximum value: 50, default value: 10. -# This tag requires that the tag GENERATE_HTML is set to YES. - -FORMULA_FONTSIZE = 10 - -# Use the FORMULA_TRANSPARENT tag to determine whether or not the images -# generated for formulas are transparent PNGs. Transparent PNGs are not -# supported properly for IE 6.0, but are supported on all modern browsers. -# -# Note that when changing this option you need to delete any form_*.png files in -# the HTML output directory before the changes have effect. -# The default value is: YES. -# This tag requires that the tag GENERATE_HTML is set to YES. - -FORMULA_TRANSPARENT = YES - -# The FORMULA_MACROFILE can contain LaTeX \newcommand and \renewcommand commands -# to create new LaTeX commands to be used in formulas as building blocks. See -# the section "Including formulas" for details. - -FORMULA_MACROFILE = - -# Enable the USE_MATHJAX option to render LaTeX formulas using MathJax (see -# https://www.mathjax.org) which uses client side JavaScript for the rendering -# instead of using pre-rendered bitmaps. Use this if you do not have LaTeX -# installed or if you want to formulas look prettier in the HTML output. When -# enabled you may also need to install MathJax separately and configure the path -# to it using the MATHJAX_RELPATH option. -# The default value is: NO. -# This tag requires that the tag GENERATE_HTML is set to YES. - -USE_MATHJAX = NO - -# When MathJax is enabled you can set the default output format to be used for -# the MathJax output. See the MathJax site (see: -# http://docs.mathjax.org/en/v2.7-latest/output.html) for more details. -# Possible values are: HTML-CSS (which is slower, but has the best -# compatibility), NativeMML (i.e. MathML) and SVG. -# The default value is: HTML-CSS. -# This tag requires that the tag USE_MATHJAX is set to YES. - -MATHJAX_FORMAT = HTML-CSS - -# When MathJax is enabled you need to specify the location relative to the HTML -# output directory using the MATHJAX_RELPATH option. The destination directory -# should contain the MathJax.js script. For instance, if the mathjax directory -# is located at the same level as the HTML output directory, then -# MATHJAX_RELPATH should be ../mathjax. The default value points to the MathJax -# Content Delivery Network so you can quickly see the result without installing -# MathJax. However, it is strongly recommended to install a local copy of -# MathJax from https://www.mathjax.org before deployment. -# The default value is: https://cdn.jsdelivr.net/npm/mathjax@2. -# This tag requires that the tag USE_MATHJAX is set to YES. - -MATHJAX_RELPATH = https://cdn.jsdelivr.net/npm/mathjax@2 - -# The MATHJAX_EXTENSIONS tag can be used to specify one or more MathJax -# extension names that should be enabled during MathJax rendering. For example -# MATHJAX_EXTENSIONS = TeX/AMSmath TeX/AMSsymbols -# This tag requires that the tag USE_MATHJAX is set to YES. - -MATHJAX_EXTENSIONS = - -# The MATHJAX_CODEFILE tag can be used to specify a file with javascript pieces -# of code that will be used on startup of the MathJax code. See the MathJax site -# (see: -# http://docs.mathjax.org/en/v2.7-latest/output.html) for more details. For an -# example see the documentation. -# This tag requires that the tag USE_MATHJAX is set to YES. - -MATHJAX_CODEFILE = - -# When the SEARCHENGINE tag is enabled doxygen will generate a search box for -# the HTML output. The underlying search engine uses javascript and DHTML and -# should work on any modern browser. Note that when using HTML help -# (GENERATE_HTMLHELP), Qt help (GENERATE_QHP), or docsets (GENERATE_DOCSET) -# there is already a search function so this one should typically be disabled. -# For large projects the javascript based search engine can be slow, then -# enabling SERVER_BASED_SEARCH may provide a better solution. It is possible to -# search using the keyboard; to jump to the search box use + S -# (what the is depends on the OS and browser, but it is typically -# , /