mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2026-08-24 16:30:44 +00:00
Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| bddb51bf1a | |||
| 308c7ebb7a | |||
| 5219b9f3d2 | |||
| eaad33adcd | |||
| 3e31831cb0 |
@@ -52,7 +52,7 @@ jobs:
|
||||
}
|
||||
EOF
|
||||
|
||||
curl -X 'POST' \
|
||||
curl -XPOST \
|
||||
'https://git.eden-emu.dev/api/v1/repos/eden-emu/eden/pulls' \
|
||||
-H 'accept: application/json' \
|
||||
-H 'Authorization: Bearer ${{ secrets.CI_FJ_TOKEN }}' \
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
name: update-deps
|
||||
name: Update Dependencies
|
||||
|
||||
on:
|
||||
# saturday at noon
|
||||
@@ -7,7 +7,7 @@ on:
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
tx-update:
|
||||
update-deps:
|
||||
runs-on: source
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
@@ -24,18 +24,21 @@ jobs:
|
||||
git remote set-url origin ci:eden-emu/eden.git
|
||||
|
||||
DATE=$(date +"%b %d")
|
||||
TIMESTAMP=$(date +"%s")
|
||||
echo "DATE=$DATE" >> "$GITHUB_ENV"
|
||||
echo "TIMESTAMP=$TIMESTAMP" >> "$GITHUB_ENV"
|
||||
|
||||
git switch -c update-deps-$DATE
|
||||
git switch -c update-deps-$TIMESTAMP
|
||||
tools/cpmutil.sh package update -ac
|
||||
git push
|
||||
|
||||
- name: Create PR
|
||||
run: |
|
||||
set -x
|
||||
TITLE="[externals] Dependency update for $DATE"
|
||||
BODY="$(git show -s --format='%b')"
|
||||
BASE=master
|
||||
HEAD=update-deps-$DATE
|
||||
HEAD=update-deps-$TIMESTAMP
|
||||
|
||||
cat << EOF > data.json
|
||||
{
|
||||
@@ -46,7 +49,7 @@ jobs:
|
||||
}
|
||||
EOF
|
||||
|
||||
curl -X 'POST' \
|
||||
curl -XPOST \
|
||||
'https://git.eden-emu.dev/api/v1/repos/eden-emu/eden/pulls' \
|
||||
-H 'accept: application/json' \
|
||||
-H 'Authorization: Bearer ${{ secrets.CI_FJ_TOKEN }}' \
|
||||
|
||||
@@ -1,89 +0,0 @@
|
||||
From 509be32bbfa6eb95014860f7c9ea6d45c8ddaa56 Mon Sep 17 00:00:00 2001
|
||||
From: crueter <crueter@eden-emu.dev>
|
||||
Date: Sun, 8 Mar 2026 15:11:12 -0400
|
||||
Subject: [PATCH] [cmake] Simplify zstd find logic, and support pre-existing
|
||||
zstd target
|
||||
|
||||
Some deduplication work on the zstd required/if-available logic. Also
|
||||
adds support for pre-existing `zstd::libzstd` which is useful for
|
||||
projects that bundle their own zstd in a way that doesn't get caught by
|
||||
`CONFIG`
|
||||
|
||||
Signed-off-by: crueter <crueter@eden-emu.dev>
|
||||
---
|
||||
CMakeLists.txt | 46 ++++++++++++++++++++++++++--------------------
|
||||
1 file changed, 26 insertions(+), 20 deletions(-)
|
||||
|
||||
diff --git a/CMakeLists.txt b/CMakeLists.txt
|
||||
index 1874e36be0..8d31198006 100644
|
||||
--- a/CMakeLists.txt
|
||||
+++ b/CMakeLists.txt
|
||||
@@ -241,28 +241,34 @@ endif()
|
||||
# NOTE:
|
||||
# zstd < 1.5.6 does not provide the CMake imported target `zstd::libzstd`.
|
||||
# Older versions must be consumed via their pkg-config file.
|
||||
-if(HTTPLIB_REQUIRE_ZSTD)
|
||||
- find_package(zstd 1.5.6 CONFIG)
|
||||
- if(NOT zstd_FOUND)
|
||||
- find_package(PkgConfig REQUIRED)
|
||||
- pkg_check_modules(zstd REQUIRED IMPORTED_TARGET libzstd)
|
||||
- add_library(zstd::libzstd ALIAS PkgConfig::zstd)
|
||||
- endif()
|
||||
- set(HTTPLIB_IS_USING_ZSTD TRUE)
|
||||
-elseif(HTTPLIB_USE_ZSTD_IF_AVAILABLE)
|
||||
- find_package(zstd 1.5.6 CONFIG QUIET)
|
||||
- if(NOT zstd_FOUND)
|
||||
- find_package(PkgConfig QUIET)
|
||||
- if(PKG_CONFIG_FOUND)
|
||||
- pkg_check_modules(zstd QUIET IMPORTED_TARGET libzstd)
|
||||
-
|
||||
- if(TARGET PkgConfig::zstd)
|
||||
+if (HTTPLIB_REQUIRE_ZSTD)
|
||||
+ set(HTTPLIB_ZSTD_REQUESTED ON)
|
||||
+ set(HTTPLIB_ZSTD_REQUIRED REQUIRED)
|
||||
+elseif (HTTPLIB_USE_ZSTD_IF_AVAILABLE)
|
||||
+ set(HTTPLIB_ZSTD_REQUESTED ON)
|
||||
+ set(HTTPLIB_ZSTD_REQUIRED QUIET)
|
||||
+endif()
|
||||
+
|
||||
+if (HTTPLIB_ZSTD_REQUESTED)
|
||||
+ if (TARGET zstd::libzstd)
|
||||
+ set(HTTPLIB_IS_USING_ZSTD TRUE)
|
||||
+ else()
|
||||
+ find_package(zstd 1.5.6 CONFIG QUIET)
|
||||
+
|
||||
+ if (NOT zstd_FOUND)
|
||||
+ find_package(PkgConfig ${HTTPLIB_ZSTD_REQUIRED})
|
||||
+ pkg_check_modules(zstd ${HTTPLIB_ZSTD_REQUIRED} IMPORTED_TARGET libzstd)
|
||||
+
|
||||
+ if (TARGET PkgConfig::zstd)
|
||||
add_library(zstd::libzstd ALIAS PkgConfig::zstd)
|
||||
endif()
|
||||
endif()
|
||||
+
|
||||
+ # This will always be true if zstd is required.
|
||||
+ # If zstd *isn't* found when zstd is set to required,
|
||||
+ # CMake will error out earlier in this block.
|
||||
+ set(HTTPLIB_IS_USING_ZSTD ${zstd_FOUND})
|
||||
endif()
|
||||
- # Both find_package and PkgConf set a XXX_FOUND var
|
||||
- set(HTTPLIB_IS_USING_ZSTD ${zstd_FOUND})
|
||||
endif()
|
||||
|
||||
# Used for default, common dirs that the end-user can change (if needed)
|
||||
@@ -317,13 +323,13 @@ if(HTTPLIB_COMPILE)
|
||||
$<BUILD_INTERFACE:${_httplib_build_includedir}/httplib.h>
|
||||
$<INSTALL_INTERFACE:${CMAKE_INSTALL_INCLUDEDIR}/httplib.h>
|
||||
)
|
||||
-
|
||||
+
|
||||
# Add C++20 module support if requested
|
||||
# Include from separate file to prevent parse errors on older CMake versions
|
||||
if(CMAKE_VERSION VERSION_GREATER_EQUAL "3.28")
|
||||
include(cmake/modules.cmake)
|
||||
endif()
|
||||
-
|
||||
+
|
||||
set_target_properties(${PROJECT_NAME}
|
||||
PROPERTIES
|
||||
VERSION ${${PROJECT_NAME}_VERSION}
|
||||
+2
-2
@@ -590,9 +590,9 @@ if (ENABLE_QT)
|
||||
if (YUZU_USE_BUNDLED_QT)
|
||||
# Qt 6.8+ is broken on macOS (??)
|
||||
if (APPLE)
|
||||
AddQt(6.7.3)
|
||||
AddQt(Eden-CI/Qt 6.7.3)
|
||||
else()
|
||||
AddQt(6.9.3)
|
||||
AddQt(Eden-CI/Qt 6.11.1)
|
||||
endif()
|
||||
else()
|
||||
message(STATUS "Using system Qt")
|
||||
|
||||
+51
-29
@@ -3,7 +3,7 @@
|
||||
|
||||
set(CPM_SOURCE_CACHE "${PROJECT_SOURCE_DIR}/.cache/cpm" CACHE STRING "" FORCE)
|
||||
|
||||
if(MSVC OR ANDROID)
|
||||
if(MSVC OR ANDROID OR IOS)
|
||||
set(BUNDLED_DEFAULT ON)
|
||||
else()
|
||||
set(BUNDLED_DEFAULT OFF)
|
||||
@@ -128,7 +128,8 @@ function(AddDependentPackages)
|
||||
message(FATAL_ERROR "Partial dependency installation detected "
|
||||
"for the following packages:\n${package_names}\n"
|
||||
"You can solve this in one of two ways:\n"
|
||||
"1. Install the following packages to your system if available:"
|
||||
"1. Install or upgrade the following packages "
|
||||
"to your system if available:"
|
||||
"\n\t${bundled_names}\n"
|
||||
"2. Set the following variables to ON:"
|
||||
"\n\t${system_names}\n"
|
||||
@@ -247,7 +248,9 @@ function(AddJsonPackage)
|
||||
|
||||
set(multiValueArgs OPTIONS)
|
||||
|
||||
cmake_parse_arguments(JSON "" "${oneValueArgs}" "${multiValueArgs}"
|
||||
set(optionArgs MODULE)
|
||||
|
||||
cmake_parse_arguments(JSON "${optionArgs}" "${oneValueArgs}" "${multiValueArgs}"
|
||||
"${ARGN}")
|
||||
|
||||
list(LENGTH ARGN argnLength)
|
||||
@@ -276,6 +279,10 @@ function(AddJsonPackage)
|
||||
|
||||
parse_object(${object})
|
||||
|
||||
if (JSON_MODULE)
|
||||
set(EXTRA_ARGS MODULE)
|
||||
endif()
|
||||
|
||||
if(ci)
|
||||
AddCIPackage(
|
||||
VERSION ${version}
|
||||
@@ -284,8 +291,8 @@ function(AddJsonPackage)
|
||||
PACKAGE ${package}
|
||||
EXTENSION ${extension}
|
||||
MIN_VERSION ${min_version}
|
||||
DISABLED_PLATFORMS ${disabled_platforms})
|
||||
|
||||
DISABLED_PLATFORMS ${disabled_platforms}
|
||||
${EXTRA_ARGS})
|
||||
else()
|
||||
if (NOT DEFINED JSON_FORCE_BUNDLED_PACKAGE)
|
||||
set(JSON_FORCE_BUNDLED_PACKAGE OFF)
|
||||
@@ -307,23 +314,24 @@ function(AddJsonPackage)
|
||||
FORCE_BUNDLED_PACKAGE "${JSON_FORCE_BUNDLED_PACKAGE}"
|
||||
SOURCE_SUBDIR "${source_subdir}"
|
||||
|
||||
GIT_VERSION ${git_version}
|
||||
GIT_HOST ${git_host}
|
||||
GIT_VERSION "${git_version}"
|
||||
GIT_HOST "${git_host}"
|
||||
|
||||
ARTIFACT ${artifact}
|
||||
TAG ${tag})
|
||||
ARTIFACT "${artifact}"
|
||||
TAG "${tag}"
|
||||
${EXTRA_ARGS})
|
||||
endif()
|
||||
|
||||
# pass stuff to parent scope
|
||||
Propagate(${package}_ADDED)
|
||||
Propagate(${package}_SOURCE_DIR)
|
||||
Propagate(${package}_BINARY_DIR)
|
||||
Propagate(CMAKE_PREFIX_PATH)
|
||||
endfunction()
|
||||
|
||||
function(AddPackage)
|
||||
cpm_set_policies()
|
||||
|
||||
# TODO(crueter): git clone?
|
||||
set(EXTRA_ARGS "")
|
||||
|
||||
#[[
|
||||
URL configurations, descending order of precedence:
|
||||
@@ -368,7 +376,9 @@ function(AddPackage)
|
||||
|
||||
set(multiValueArgs OPTIONS PATCHES)
|
||||
|
||||
cmake_parse_arguments(PKG_ARGS "" "${oneValueArgs}" "${multiValueArgs}"
|
||||
set(optionArgs MODULE)
|
||||
|
||||
cmake_parse_arguments(PKG_ARGS "${optionArgs}" "${oneValueArgs}" "${multiValueArgs}"
|
||||
"${ARGN}")
|
||||
|
||||
if(NOT DEFINED PKG_ARGS_NAME)
|
||||
@@ -552,6 +562,12 @@ function(AddPackage)
|
||||
VERSION ${PKG_ARGS_VERSION})
|
||||
endif()
|
||||
|
||||
if (PKG_ARGS_MODULE)
|
||||
set(PKG_ARGS_DOWNLOAD_ONLY ON)
|
||||
elseif (NOT DEFINED PKG_ARGS_DOWNLOAD_ONLY)
|
||||
set(PKG_ARGS_DOWNLOAD_ONLY OFF)
|
||||
endif()
|
||||
|
||||
CPMAddPackage(
|
||||
NAME ${PKG_ARGS_NAME}
|
||||
URL ${pkg_url}
|
||||
@@ -601,13 +617,14 @@ function(AddPackage)
|
||||
endif()
|
||||
|
||||
# pass stuff to parent scope
|
||||
set(${PKG_ARGS_NAME}_ADDED "${${PKG_ARGS_NAME}_ADDED}"
|
||||
PARENT_SCOPE)
|
||||
set(${PKG_ARGS_NAME}_SOURCE_DIR "${${PKG_ARGS_NAME}_SOURCE_DIR}"
|
||||
PARENT_SCOPE)
|
||||
set(${PKG_ARGS_NAME}_BINARY_DIR "${${PKG_ARGS_NAME}_BINARY_DIR}"
|
||||
PARENT_SCOPE)
|
||||
Propagate(${PKG_ARGS_NAME}_ADDED)
|
||||
Propagate(${PKG_ARGS_NAME}_SOURCE_DIR)
|
||||
Propagate(${PKG_ARGS_NAME}_BINARY_DIR)
|
||||
|
||||
if (PKG_ARGS_MODULE)
|
||||
list(PREPEND CMAKE_PREFIX_PATH "${${ARTIFACT_PACKAGE}_SOURCE_DIR}")
|
||||
Propagate(CMAKE_PREFIX_PATH)
|
||||
endif()
|
||||
endfunction()
|
||||
|
||||
# TODO(crueter): we could do an AddMultiArchPackage, multiplatformpackage?
|
||||
@@ -690,14 +707,20 @@ function(AddCIPackage)
|
||||
set(pkgname linux-amd64)
|
||||
elseif(PLATFORM_LINUX AND ARCHITECTURE_arm64)
|
||||
set(pkgname linux-aarch64)
|
||||
elseif(APPLE)
|
||||
elseif(APPLE AND NOT IOS)
|
||||
set(pkgname macos-universal)
|
||||
elseif(IOS AND ARCHITECTURE_arm64)
|
||||
set(pkgname ios-aarch64)
|
||||
endif()
|
||||
|
||||
if (DEFINED pkgname AND NOT "${pkgname}" IN_LIST DISABLED_PLATFORMS)
|
||||
set(ARTIFACT
|
||||
"${ARTIFACT_NAME}-${pkgname}-${ARTIFACT_VERSION}.${ARTIFACT_EXT}")
|
||||
|
||||
if (PKG_ARGS_MODULE)
|
||||
set(EXTRA_ARGS MODULE)
|
||||
endif()
|
||||
|
||||
AddPackage(
|
||||
NAME ${ARTIFACT_PACKAGE}
|
||||
REPO ${ARTIFACT_REPO}
|
||||
@@ -708,23 +731,22 @@ function(AddCIPackage)
|
||||
KEY "${pkgname}-${ARTIFACT_VERSION}"
|
||||
HASH_SUFFIX sha512sum
|
||||
FORCE_BUNDLED_PACKAGE ON
|
||||
DOWNLOAD_ONLY ${PKG_ARGS_MODULE})
|
||||
${EXTRA_ARGS})
|
||||
|
||||
set(${ARTIFACT_PACKAGE}_ADDED TRUE PARENT_SCOPE)
|
||||
set(${ARTIFACT_PACKAGE}_SOURCE_DIR
|
||||
"${${ARTIFACT_PACKAGE}_SOURCE_DIR}" PARENT_SCOPE)
|
||||
|
||||
if (PKG_ARGS_MODULE)
|
||||
list(PREPEND CMAKE_PREFIX_PATH "${${ARTIFACT_PACKAGE}_SOURCE_DIR}")
|
||||
Propagate(CMAKE_PREFIX_PATH)
|
||||
endif()
|
||||
Propagate(${ARTIFACT_PACKAGE}_SOURCE_DIR)
|
||||
Propagate(CMAKE_PREFIX_PATH)
|
||||
else()
|
||||
find_package(${ARTIFACT_PACKAGE} ${ARTIFACT_MIN_VERSION} REQUIRED)
|
||||
endif()
|
||||
endfunction()
|
||||
|
||||
# Utility function for Qt
|
||||
function(AddQt version)
|
||||
function(AddQt repo version)
|
||||
if (NOT DEFINED repo)
|
||||
message(FATAL_ERROR "[CPMUtil] AddQt: repo is required")
|
||||
endif()
|
||||
|
||||
if (NOT DEFINED version)
|
||||
message(FATAL_ERROR "[CPMUtil] AddQt: version is required")
|
||||
endif()
|
||||
@@ -734,7 +756,7 @@ function(AddQt version)
|
||||
PACKAGE Qt6
|
||||
VERSION ${version}
|
||||
MIN_VERSION 6
|
||||
REPO crueter-ci/Qt
|
||||
REPO ${repo}
|
||||
DISABLED_PLATFORMS
|
||||
android-x86_64 android-aarch64
|
||||
freebsd-amd64 solaris-amd64 openbsd-amd64
|
||||
|
||||
+1
-1
@@ -4,7 +4,7 @@
|
||||
"package": "OpenSSL",
|
||||
"name": "openssl",
|
||||
"repo": "crueter-ci/OpenSSL",
|
||||
"version": "3.6.0-1cb0d36b39",
|
||||
"version": "4.0.0-11b7b6ea3b",
|
||||
"min_version": "3"
|
||||
},
|
||||
"openssl-cmake": {
|
||||
|
||||
Vendored
+15
-15
@@ -8268,7 +8268,7 @@ If you wish to clean up the files which were left in the old data location, you
|
||||
%1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/migration_worker.h" line="74"/>
|
||||
<location filename="../../src/yuzu/migration_worker.h" line="73"/>
|
||||
<source>Data was migrated successfully.</source>
|
||||
<translation>تم نقل البيانات بنجاح.</translation>
|
||||
</message>
|
||||
@@ -10643,66 +10643,66 @@ By selecting "From Eden", previous save data stored in Ryujinx will be
|
||||
<translation>%1 متاح للتنزيل</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="78"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="79"/>
|
||||
<source>New Version Location</source>
|
||||
<translation>موقع الإصدار الجديد</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="80"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="81"/>
|
||||
<source>All Files (*.*)</source>
|
||||
<translation>جميع الملفات (*.*)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="88"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="128"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="143"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="89"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="129"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="144"/>
|
||||
<source>Failed to save file</source>
|
||||
<translation>فشل حفظ الملف</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="89"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="90"/>
|
||||
<source>Could not open file %1 for writing.</source>
|
||||
<translation>تعذر فتح الملف 1% للكتابة</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="111"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="112"/>
|
||||
<source>Downloading...</source>
|
||||
<translation>جارٍ التنزيل...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="111"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="112"/>
|
||||
<source>Cancel</source>
|
||||
<translation>إلغاء</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="129"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="130"/>
|
||||
<source>Could not write to file %1.</source>
|
||||
<translation>تعذر الكتابة إلى الملف %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="144"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="145"/>
|
||||
<source>Could not commit to file %1.</source>
|
||||
<translation>تعذر حفظ التغييرات في الملف %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="156"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="157"/>
|
||||
<source>Failed to download file</source>
|
||||
<translation>فشل تنزيل الملف</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="157"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="158"/>
|
||||
<source>Could not download from %1%2
|
||||
Error code: %3</source>
|
||||
<translation>تعذر التنزيل من %1%2
|
||||
رمز الخطأ: %3</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="170"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="171"/>
|
||||
<source>Download Complete</source>
|
||||
<translation>اكتمل التنزيل</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="171"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="172"/>
|
||||
<source>Successfully downloaded %1. Would you like to open it?</source>
|
||||
<translation>تم تنزيل 1% بنجاح. هل تريد فتحه؟</translation>
|
||||
</message>
|
||||
|
||||
Vendored
+15
-15
@@ -8164,7 +8164,7 @@ If you wish to clean up the files which were left in the old data location, you
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/migration_worker.h" line="74"/>
|
||||
<location filename="../../src/yuzu/migration_worker.h" line="73"/>
|
||||
<source>Data was migrated successfully.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
@@ -10518,65 +10518,65 @@ By selecting "From Eden", previous save data stored in Ryujinx will be
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="78"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="79"/>
|
||||
<source>New Version Location</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="80"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="81"/>
|
||||
<source>All Files (*.*)</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="88"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="128"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="143"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="89"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="129"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="144"/>
|
||||
<source>Failed to save file</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="89"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="90"/>
|
||||
<source>Could not open file %1 for writing.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="111"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="112"/>
|
||||
<source>Downloading...</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="111"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="112"/>
|
||||
<source>Cancel</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="129"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="130"/>
|
||||
<source>Could not write to file %1.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="144"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="145"/>
|
||||
<source>Could not commit to file %1.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="156"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="157"/>
|
||||
<source>Failed to download file</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="157"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="158"/>
|
||||
<source>Could not download from %1%2
|
||||
Error code: %3</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="170"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="171"/>
|
||||
<source>Download Complete</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="171"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="172"/>
|
||||
<source>Successfully downloaded %1. Would you like to open it?</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
|
||||
Vendored
+15
-15
@@ -8154,7 +8154,7 @@ If you wish to clean up the files which were left in the old data location, you
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/migration_worker.h" line="74"/>
|
||||
<location filename="../../src/yuzu/migration_worker.h" line="73"/>
|
||||
<source>Data was migrated successfully.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
@@ -10506,65 +10506,65 @@ By selecting "From Eden", previous save data stored in Ryujinx will be
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="78"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="79"/>
|
||||
<source>New Version Location</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="80"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="81"/>
|
||||
<source>All Files (*.*)</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="88"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="128"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="143"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="89"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="129"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="144"/>
|
||||
<source>Failed to save file</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="89"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="90"/>
|
||||
<source>Could not open file %1 for writing.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="111"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="112"/>
|
||||
<source>Downloading...</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="111"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="112"/>
|
||||
<source>Cancel</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="129"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="130"/>
|
||||
<source>Could not write to file %1.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="144"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="145"/>
|
||||
<source>Could not commit to file %1.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="156"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="157"/>
|
||||
<source>Failed to download file</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="157"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="158"/>
|
||||
<source>Could not download from %1%2
|
||||
Error code: %3</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="170"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="171"/>
|
||||
<source>Download Complete</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="171"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="172"/>
|
||||
<source>Successfully downloaded %1. Would you like to open it?</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
|
||||
Vendored
+15
-15
@@ -8162,7 +8162,7 @@ If you wish to clean up the files which were left in the old data location, you
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/migration_worker.h" line="74"/>
|
||||
<location filename="../../src/yuzu/migration_worker.h" line="73"/>
|
||||
<source>Data was migrated successfully.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
@@ -10500,65 +10500,65 @@ By selecting "From Eden", previous save data stored in Ryujinx will be
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="78"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="79"/>
|
||||
<source>New Version Location</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="80"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="81"/>
|
||||
<source>All Files (*.*)</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="88"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="128"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="143"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="89"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="129"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="144"/>
|
||||
<source>Failed to save file</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="89"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="90"/>
|
||||
<source>Could not open file %1 for writing.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="111"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="112"/>
|
||||
<source>Downloading...</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="111"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="112"/>
|
||||
<source>Cancel</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="129"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="130"/>
|
||||
<source>Could not write to file %1.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="144"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="145"/>
|
||||
<source>Could not commit to file %1.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="156"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="157"/>
|
||||
<source>Failed to download file</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="157"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="158"/>
|
||||
<source>Could not download from %1%2
|
||||
Error code: %3</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="170"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="171"/>
|
||||
<source>Download Complete</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="171"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="172"/>
|
||||
<source>Successfully downloaded %1. Would you like to open it?</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
|
||||
Vendored
+969
-849
File diff suppressed because it is too large
Load Diff
Vendored
+15
-15
@@ -8153,7 +8153,7 @@ If you wish to clean up the files which were left in the old data location, you
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/migration_worker.h" line="74"/>
|
||||
<location filename="../../src/yuzu/migration_worker.h" line="73"/>
|
||||
<source>Data was migrated successfully.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
@@ -10496,65 +10496,65 @@ By selecting "From Eden", previous save data stored in Ryujinx will be
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="78"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="79"/>
|
||||
<source>New Version Location</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="80"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="81"/>
|
||||
<source>All Files (*.*)</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="88"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="128"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="143"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="89"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="129"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="144"/>
|
||||
<source>Failed to save file</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="89"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="90"/>
|
||||
<source>Could not open file %1 for writing.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="111"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="112"/>
|
||||
<source>Downloading...</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="111"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="112"/>
|
||||
<source>Cancel</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="129"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="130"/>
|
||||
<source>Could not write to file %1.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="144"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="145"/>
|
||||
<source>Could not commit to file %1.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="156"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="157"/>
|
||||
<source>Failed to download file</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="157"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="158"/>
|
||||
<source>Could not download from %1%2
|
||||
Error code: %3</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="170"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="171"/>
|
||||
<source>Download Complete</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="171"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="172"/>
|
||||
<source>Successfully downloaded %1. Would you like to open it?</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
|
||||
Vendored
+22
-22
@@ -5556,7 +5556,7 @@ Arrastre los puntos para cambiar de posición, o haga doble clic en las celdas d
|
||||
<message>
|
||||
<location filename="../../src/yuzu/configuration/configure_ui.ui" line="89"/>
|
||||
<source>Show Add-Ons Column</source>
|
||||
<translation>Mostrar columna de complementos</translation>
|
||||
<translation>Mostrar la columna de complementos</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/configuration/configure_ui.ui" line="96"/>
|
||||
@@ -6370,32 +6370,32 @@ Por favor, vaya a Configuración -> Sistema -> Red y selecciona una interf
|
||||
<message>
|
||||
<location filename="../../src/qt_common/game_list/model.cpp" line="285"/>
|
||||
<source>Name</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Nombre</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/qt_common/game_list/model.cpp" line="286"/>
|
||||
<source>Compatibility</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Compatibilidad</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/qt_common/game_list/model.cpp" line="287"/>
|
||||
<source>Add-ons</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Complementos</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/qt_common/game_list/model.cpp" line="288"/>
|
||||
<source>File type</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Tipo de archivo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/qt_common/game_list/model.cpp" line="289"/>
|
||||
<source>Size</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Tamaño</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/qt_common/game_list/model.cpp" line="290"/>
|
||||
<source>Play time</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Tiempo de juego</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@@ -8274,7 +8274,7 @@ Si quieres limpiar los archivos que se quedaron en el ubicacion de datos anticua
|
||||
%1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/migration_worker.h" line="74"/>
|
||||
<location filename="../../src/yuzu/migration_worker.h" line="73"/>
|
||||
<source>Data was migrated successfully.</source>
|
||||
<translation>Datos se migraron con exito.</translation>
|
||||
</message>
|
||||
@@ -10657,66 +10657,66 @@ Seleccionando "Desde Eden", los datos de guardado anteriores alojados
|
||||
<translation>%1 está disponible para descargar.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="78"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="79"/>
|
||||
<source>New Version Location</source>
|
||||
<translation>Ubicación de la nueva versión</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="80"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="81"/>
|
||||
<source>All Files (*.*)</source>
|
||||
<translation>Todos los archivos (*.*)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="88"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="128"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="143"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="89"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="129"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="144"/>
|
||||
<source>Failed to save file</source>
|
||||
<translation>Fallo al guardar el archivo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="89"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="90"/>
|
||||
<source>Could not open file %1 for writing.</source>
|
||||
<translation>No se pudo abrir el archivo %1 para su escritura.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="111"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="112"/>
|
||||
<source>Downloading...</source>
|
||||
<translation>Descargando...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="111"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="112"/>
|
||||
<source>Cancel</source>
|
||||
<translation>Cancelar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="129"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="130"/>
|
||||
<source>Could not write to file %1.</source>
|
||||
<translation>No se pudo escribir en el archivo %1.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="144"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="145"/>
|
||||
<source>Could not commit to file %1.</source>
|
||||
<translation>No se pudo cometer en el archivo %1.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="156"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="157"/>
|
||||
<source>Failed to download file</source>
|
||||
<translation>Fallo al descargar el archivo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="157"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="158"/>
|
||||
<source>Could not download from %1%2
|
||||
Error code: %3</source>
|
||||
<translation>No se pudo descargar desde %1%2
|
||||
Código de error: %3</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="170"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="171"/>
|
||||
<source>Download Complete</source>
|
||||
<translation>Descarga completada</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="171"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="172"/>
|
||||
<source>Successfully downloaded %1. Would you like to open it?</source>
|
||||
<translation>%1 descargado con éxito. ¿Desea abrirlo?</translation>
|
||||
</message>
|
||||
|
||||
Vendored
+15
-15
@@ -8131,7 +8131,7 @@ If you wish to clean up the files which were left in the old data location, you
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/migration_worker.h" line="74"/>
|
||||
<location filename="../../src/yuzu/migration_worker.h" line="73"/>
|
||||
<source>Data was migrated successfully.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
@@ -10469,65 +10469,65 @@ By selecting "From Eden", previous save data stored in Ryujinx will be
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="78"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="79"/>
|
||||
<source>New Version Location</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="80"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="81"/>
|
||||
<source>All Files (*.*)</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="88"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="128"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="143"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="89"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="129"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="144"/>
|
||||
<source>Failed to save file</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="89"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="90"/>
|
||||
<source>Could not open file %1 for writing.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="111"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="112"/>
|
||||
<source>Downloading...</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="111"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="112"/>
|
||||
<source>Cancel</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="129"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="130"/>
|
||||
<source>Could not write to file %1.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="144"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="145"/>
|
||||
<source>Could not commit to file %1.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="156"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="157"/>
|
||||
<source>Failed to download file</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="157"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="158"/>
|
||||
<source>Could not download from %1%2
|
||||
Error code: %3</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="170"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="171"/>
|
||||
<source>Download Complete</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="171"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="172"/>
|
||||
<source>Successfully downloaded %1. Would you like to open it?</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
|
||||
Vendored
+15
-15
@@ -8232,7 +8232,7 @@ Si vous souhaitez supprimer les fichiers qui ont été laissés dans l'anci
|
||||
%1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/migration_worker.h" line="74"/>
|
||||
<location filename="../../src/yuzu/migration_worker.h" line="73"/>
|
||||
<source>Data was migrated successfully.</source>
|
||||
<translation>Les données ont été migré avec succès</translation>
|
||||
</message>
|
||||
@@ -10602,65 +10602,65 @@ En sélectionnant « Depuis Eden », les données de sauvegarde précédemment s
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="78"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="79"/>
|
||||
<source>New Version Location</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="80"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="81"/>
|
||||
<source>All Files (*.*)</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="88"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="128"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="143"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="89"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="129"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="144"/>
|
||||
<source>Failed to save file</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="89"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="90"/>
|
||||
<source>Could not open file %1 for writing.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="111"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="112"/>
|
||||
<source>Downloading...</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="111"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="112"/>
|
||||
<source>Cancel</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="129"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="130"/>
|
||||
<source>Could not write to file %1.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="144"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="145"/>
|
||||
<source>Could not commit to file %1.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="156"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="157"/>
|
||||
<source>Failed to download file</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="157"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="158"/>
|
||||
<source>Could not download from %1%2
|
||||
Error code: %3</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="170"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="171"/>
|
||||
<source>Download Complete</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="171"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="172"/>
|
||||
<source>Successfully downloaded %1. Would you like to open it?</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
|
||||
Vendored
+15
-15
@@ -8147,7 +8147,7 @@ If you wish to clean up the files which were left in the old data location, you
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/migration_worker.h" line="74"/>
|
||||
<location filename="../../src/yuzu/migration_worker.h" line="73"/>
|
||||
<source>Data was migrated successfully.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
@@ -10501,65 +10501,65 @@ By selecting "From Eden", previous save data stored in Ryujinx will be
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="78"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="79"/>
|
||||
<source>New Version Location</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="80"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="81"/>
|
||||
<source>All Files (*.*)</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="88"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="128"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="143"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="89"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="129"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="144"/>
|
||||
<source>Failed to save file</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="89"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="90"/>
|
||||
<source>Could not open file %1 for writing.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="111"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="112"/>
|
||||
<source>Downloading...</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="111"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="112"/>
|
||||
<source>Cancel</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="129"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="130"/>
|
||||
<source>Could not write to file %1.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="144"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="145"/>
|
||||
<source>Could not commit to file %1.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="156"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="157"/>
|
||||
<source>Failed to download file</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="157"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="158"/>
|
||||
<source>Could not download from %1%2
|
||||
Error code: %3</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="170"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="171"/>
|
||||
<source>Download Complete</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="171"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="172"/>
|
||||
<source>Successfully downloaded %1. Would you like to open it?</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
|
||||
Vendored
+15
-15
@@ -8182,7 +8182,7 @@ If you wish to clean up the files which were left in the old data location, you
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/migration_worker.h" line="74"/>
|
||||
<location filename="../../src/yuzu/migration_worker.h" line="73"/>
|
||||
<source>Data was migrated successfully.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
@@ -10520,65 +10520,65 @@ By selecting "From Eden", previous save data stored in Ryujinx will be
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="78"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="79"/>
|
||||
<source>New Version Location</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="80"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="81"/>
|
||||
<source>All Files (*.*)</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="88"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="128"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="143"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="89"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="129"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="144"/>
|
||||
<source>Failed to save file</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="89"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="90"/>
|
||||
<source>Could not open file %1 for writing.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="111"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="112"/>
|
||||
<source>Downloading...</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="111"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="112"/>
|
||||
<source>Cancel</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="129"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="130"/>
|
||||
<source>Could not write to file %1.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="144"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="145"/>
|
||||
<source>Could not commit to file %1.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="156"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="157"/>
|
||||
<source>Failed to download file</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="157"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="158"/>
|
||||
<source>Could not download from %1%2
|
||||
Error code: %3</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="170"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="171"/>
|
||||
<source>Download Complete</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="171"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="172"/>
|
||||
<source>Successfully downloaded %1. Would you like to open it?</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
|
||||
Vendored
+15
-15
@@ -8261,7 +8261,7 @@ If you wish to clean up the files which were left in the old data location, you
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/migration_worker.h" line="74"/>
|
||||
<location filename="../../src/yuzu/migration_worker.h" line="73"/>
|
||||
<source>Data was migrated successfully.</source>
|
||||
<translation>I dati sono stati trasferiti con successo.</translation>
|
||||
</message>
|
||||
@@ -10635,65 +10635,65 @@ Selezionando "Da Eden", i dati di salvataggio pre-esistenti in Ryujinx
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="78"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="79"/>
|
||||
<source>New Version Location</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="80"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="81"/>
|
||||
<source>All Files (*.*)</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="88"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="128"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="143"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="89"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="129"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="144"/>
|
||||
<source>Failed to save file</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="89"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="90"/>
|
||||
<source>Could not open file %1 for writing.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="111"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="112"/>
|
||||
<source>Downloading...</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="111"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="112"/>
|
||||
<source>Cancel</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="129"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="130"/>
|
||||
<source>Could not write to file %1.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="144"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="145"/>
|
||||
<source>Could not commit to file %1.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="156"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="157"/>
|
||||
<source>Failed to download file</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="157"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="158"/>
|
||||
<source>Could not download from %1%2
|
||||
Error code: %3</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="170"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="171"/>
|
||||
<source>Download Complete</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="171"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="172"/>
|
||||
<source>Successfully downloaded %1. Would you like to open it?</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
|
||||
Vendored
+15
-15
@@ -8170,7 +8170,7 @@ If you wish to clean up the files which were left in the old data location, you
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/migration_worker.h" line="74"/>
|
||||
<location filename="../../src/yuzu/migration_worker.h" line="73"/>
|
||||
<source>Data was migrated successfully.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
@@ -10524,65 +10524,65 @@ By selecting "From Eden", previous save data stored in Ryujinx will be
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="78"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="79"/>
|
||||
<source>New Version Location</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="80"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="81"/>
|
||||
<source>All Files (*.*)</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="88"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="128"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="143"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="89"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="129"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="144"/>
|
||||
<source>Failed to save file</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="89"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="90"/>
|
||||
<source>Could not open file %1 for writing.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="111"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="112"/>
|
||||
<source>Downloading...</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="111"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="112"/>
|
||||
<source>Cancel</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="129"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="130"/>
|
||||
<source>Could not write to file %1.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="144"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="145"/>
|
||||
<source>Could not commit to file %1.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="156"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="157"/>
|
||||
<source>Failed to download file</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="157"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="158"/>
|
||||
<source>Could not download from %1%2
|
||||
Error code: %3</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="170"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="171"/>
|
||||
<source>Download Complete</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="171"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="172"/>
|
||||
<source>Successfully downloaded %1. Would you like to open it?</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
|
||||
Vendored
+69
-55
@@ -726,7 +726,7 @@ Options lower than 1X can cause artifacts.</source>
|
||||
<message>
|
||||
<location filename="../../src/qt_common/config/shared_translation.cpp" line="152"/>
|
||||
<source>Determines how sharpened the image will look using FSR's or SGSR's dynamic contrast.</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>FSR 또는 SGSR의 동적 대비를 사용하여 이미지가 얼마나 선명하게 보일지 결정합니다.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/qt_common/config/shared_translation.cpp" line="153"/>
|
||||
@@ -752,7 +752,9 @@ FXAA는 저해상도에서 더 안정적인 화면을 구현할 수 있습니다
|
||||
<source>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.</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>창을 전체 화면으로 렌더링하는 데 사용되는 방법입니다.
|
||||
테두리 없는 창 모드는 일부 게임에서 입력을 위해 요구하는 화면 키보드와의 호환성이 가장 좋습니다.
|
||||
전체 화면 전용 모드는 더 나은 성능과 FreeSync/GSync 지원을 제공할 수 있습니다.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/qt_common/config/shared_translation.cpp" line="161"/>
|
||||
@@ -789,7 +791,8 @@ Disabling it is only intended for debugging.</source>
|
||||
<location filename="../../src/qt_common/config/shared_translation.cpp" line="170"/>
|
||||
<source>Uses an extra CPU thread for rendering.
|
||||
This option should always remain enabled.</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>렌더링에 추가 CPU 스레드를 사용합니다.
|
||||
이 옵션은 항상 활성화된 상태로 유지해야 합니다.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/qt_common/config/shared_translation.cpp" line="171"/>
|
||||
@@ -801,7 +804,9 @@ This option should always remain enabled.</source>
|
||||
<source>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.</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>비디오를 디코딩하는 방법을 지정합니다.
|
||||
디코딩에 CPU 또는 GPU를 사용할 수 있으며, 디코딩을 전혀 수행하지 않을 수도 있습니다(비디오가 검은 화면으로 표시됨).
|
||||
대부분의 경우 GPU 디코딩이 가장 좋은 성능을 제공합니다.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/qt_common/config/shared_translation.cpp" line="175"/>
|
||||
@@ -815,7 +820,10 @@ CPU: Use the CPU for decoding.
|
||||
GPU: Use the GPU's compute shaders to decode ASTC textures (recommended).
|
||||
CPU Asynchronously: Use the CPU to decode ASTC textures on demand. EliminatesASTC decoding
|
||||
stuttering but may present artifacts.</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>이 옵션은 ASTC 텍스처를 디코딩하는 방식을 제어합니다.
|
||||
CPU: CPU를 사용하여 디코딩합니다.
|
||||
GPU: GPU의 컴퓨트 셰이더를 사용하여 ASTC 텍스처를 디코딩합니다(권장).
|
||||
CPU 비동기: 필요에 따라 CPU를 사용하여 ASTC 텍스처를 디코딩합니다. ASTC 디코딩으로 인한 끊김 현상이 없어지지만, 아티팩트가 발생할 수 있습니다.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/qt_common/config/shared_translation.cpp" line="181"/>
|
||||
@@ -827,17 +835,19 @@ stuttering but may present artifacts.</source>
|
||||
<source>Most GPUs lack support for ASTC textures and must decompress to anintermediate format: RGBA8.
|
||||
BC1/BC3: The intermediate format will be recompressed to BC1 or BC3 format,
|
||||
saving VRAM but degrading image quality.</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>대부분의 GPU는 ASTC 텍스처를 지원하지 않으므로 중간 형식인 RGBA8로 압축 해제해야 합니다.
|
||||
BC1/BC3: 중간 형식은 BC1 또는 BC3 형식으로 재압축되어
|
||||
VRAM을 절약하지만 이미지 품질이 저하됩니다.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/qt_common/config/shared_translation.cpp" line="186"/>
|
||||
<source>Frame Pacing Mode (Vulkan only)</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>프레임 페이싱 모드(Vulkan 전용)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/qt_common/config/shared_translation.cpp" line="187"/>
|
||||
<source>Controls how the emulator manages frame pacing to reduce stuttering and make the frame rate smoother and more consistent.</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>에뮬레이터가 프레임 페이싱을 관리하는 방식을 제어하여 끊김 현상을 줄이고 프레임 속도를 더욱 부드럽고 일관되게 만듭니다.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/qt_common/config/shared_translation.cpp" line="189"/>
|
||||
@@ -854,12 +864,12 @@ Aggressive mode may impact performance of other applications such as recording s
|
||||
<message>
|
||||
<location filename="../../src/qt_common/config/shared_translation.cpp" line="193"/>
|
||||
<source>Skip CPU Inner Invalidation</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>CPU 내부 무효화 건너뛰기</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/qt_common/config/shared_translation.cpp" line="194"/>
|
||||
<source>Skips certain cache invalidations during memory updates, reducing CPU usage and improving latency. This may cause soft-crashes.</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>메모리 업데이트 중 특정 캐시 무효화를 건너뛰어 CPU 사용량을 줄이고 지연 시간을 개선합니다. 하지만 이로 인해 소프트 크래시가 발생할 수 있습니다.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/qt_common/config/shared_translation.cpp" line="196"/>
|
||||
@@ -910,7 +920,7 @@ Unreal Engine 4 games often see the most significant changes thereof.</source>
|
||||
<message>
|
||||
<location filename="../../src/qt_common/config/shared_translation.cpp" line="217"/>
|
||||
<source>Slightly improves performance by moving presentation to a separate CPU thread.</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>프레젠테이션을 별도의 CPU 스레드로 이동시켜 성능을 약간 향상시킵니다.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/qt_common/config/shared_translation.cpp" line="219"/>
|
||||
@@ -966,18 +976,19 @@ Particles tend to only render correctly with Accurate mode.</source>
|
||||
<message>
|
||||
<location filename="../../src/qt_common/config/shared_translation.cpp" line="233"/>
|
||||
<source>May reduce shader stutter.</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>셰이더 끊김 현상을 줄일 수 있습니다.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/qt_common/config/shared_translation.cpp" line="234"/>
|
||||
<source>Fast GPU Time</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>빠른 CPU 시간</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/qt_common/config/shared_translation.cpp" line="235"/>
|
||||
<source>Overclocks the emulated GPU to increase dynamic resolution and render distance.
|
||||
Use 256 for maximal performance and 512 for maximal graphics fidelity.</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>에뮬레이션된 GPU를 오버클럭하여 동적 해상도와 렌더링 거리를 향상시킵니다.
|
||||
최대 성능을 위해서는 256을, 최대 그래픽 품질을 위해서는 512를 사용하세요.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/qt_common/config/shared_translation.cpp" line="237"/>
|
||||
@@ -988,7 +999,8 @@ Use 256 for maximal performance and 512 for maximal graphics fidelity.</source>
|
||||
<location filename="../../src/qt_common/config/shared_translation.cpp" line="238"/>
|
||||
<source>Accelerates BCn 3D texture decoding using GPU compute.
|
||||
Disable if experiencing crashes or graphical glitches.</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>GPU 컴퓨팅을 사용하여 BCn 3D 텍스처 디코딩을 가속화합니다.
|
||||
충돌이나 그래픽 결함이 발생하는 경우 이 기능을 비활성화하세요.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/qt_common/config/shared_translation.cpp" line="240"/>
|
||||
@@ -1013,7 +1025,8 @@ GPU는 중간 및 큰 크기의 텍스처에서 더 빠르지만, 매우 작은
|
||||
<location filename="../../src/qt_common/config/shared_translation.cpp" line="246"/>
|
||||
<source>Sets the maximum amount of texture data (in MiB) processed per frame.
|
||||
Higher values can reduce stutter during texture loading but may impact frame consistency.</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>프레임당 처리할 최대 텍스처 데이터 양(MiB 단위)을 설정합니다.
|
||||
값이 높을수록 텍스처 로딩 중 끊김 현상을 줄일 수 있지만 프레임 일관성에 영향을 미칠 수 있습니다.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/qt_common/config/shared_translation.cpp" line="249"/>
|
||||
@@ -1103,7 +1116,7 @@ This option may improve rendering quality and performance consistency in some ga
|
||||
<message>
|
||||
<location filename="../../src/qt_common/config/shared_translation.cpp" line="274"/>
|
||||
<source>Removes bloom in Burnout.</source>
|
||||
<translation>번아웃에서의 블룸 현상을 제거합니다.</translation>
|
||||
<translation>Burnout에서의 블룸 현상을 제거합니다.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/qt_common/config/shared_translation.cpp" line="276"/>
|
||||
@@ -1336,7 +1349,7 @@ When a program attempts to open the controller applet, it is immediately closed.
|
||||
<message>
|
||||
<location filename="../../src/qt_common/config/shared_translation.cpp" line="389"/>
|
||||
<source>Always</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>항상</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/qt_common/config/shared_translation.cpp" line="393"/>
|
||||
@@ -1484,7 +1497,7 @@ When a program attempts to open the controller applet, it is immediately closed.
|
||||
<message>
|
||||
<location filename="../../src/qt_common/config/shared_translation.cpp" line="450"/>
|
||||
<source>NCE</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>NCE</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/qt_common/config/shared_translation.cpp" line="454"/>
|
||||
@@ -1514,12 +1527,12 @@ When a program attempts to open the controller applet, it is immediately closed.
|
||||
<message>
|
||||
<location filename="../../src/qt_common/config/shared_translation.cpp" line="466"/>
|
||||
<source>0.25X (180p/270p) [EXPERIMENTAL]</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>0.25X (180p/270p) [실험적]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/qt_common/config/shared_translation.cpp" line="467"/>
|
||||
<source>0.5X (360p/540p) [EXPERIMENTAL]</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>0.5X (360p/540p) [실험적]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/qt_common/config/shared_translation.cpp" line="468"/>
|
||||
@@ -1534,7 +1547,7 @@ When a program attempts to open the controller applet, it is immediately closed.
|
||||
<message>
|
||||
<location filename="../../src/qt_common/config/shared_translation.cpp" line="470"/>
|
||||
<source>1.25X (900p/1350p) [EXPERIMENTAL]</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>1.25X (900p/1350p) [실험적]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/qt_common/config/shared_translation.cpp" line="471"/>
|
||||
@@ -1599,7 +1612,7 @@ When a program attempts to open the controller applet, it is immediately closed.
|
||||
<message>
|
||||
<location filename="../../src/qt_common/config/shared_translation.cpp" line="486"/>
|
||||
<source>Lanczos</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>란초스</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/qt_common/config/shared_translation.cpp" line="487"/>
|
||||
@@ -1609,7 +1622,7 @@ When a program attempts to open the controller applet, it is immediately closed.
|
||||
<message>
|
||||
<location filename="../../src/qt_common/config/shared_translation.cpp" line="488"/>
|
||||
<source>AMD FidelityFX Super Resolution</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>AMD FidelityFX Super Resolution</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/qt_common/config/shared_translation.cpp" line="489"/>
|
||||
@@ -1619,7 +1632,7 @@ When a program attempts to open the controller applet, it is immediately closed.
|
||||
<message>
|
||||
<location filename="../../src/qt_common/config/shared_translation.cpp" line="490"/>
|
||||
<source>MMPX</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>MMPX</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/qt_common/config/shared_translation.cpp" line="491"/>
|
||||
@@ -1644,7 +1657,7 @@ When a program attempts to open the controller applet, it is immediately closed.
|
||||
<message>
|
||||
<location filename="../../src/qt_common/config/shared_translation.cpp" line="495"/>
|
||||
<source>Snapdragon Game Super Resolution</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Snapdragon Game Super Resolution</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/qt_common/config/shared_translation.cpp" line="496"/>
|
||||
@@ -1720,12 +1733,12 @@ When a program attempts to open the controller applet, it is immediately closed.
|
||||
<message>
|
||||
<location filename="../../src/qt_common/config/shared_translation.cpp" line="520"/>
|
||||
<source>32x</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>32x</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/qt_common/config/shared_translation.cpp" line="521"/>
|
||||
<source>64x</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>64x</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/qt_common/config/shared_translation.cpp" line="527"/>
|
||||
@@ -2108,7 +2121,7 @@ When a program attempts to open the controller applet, it is immediately closed.
|
||||
<message>
|
||||
<location filename="../../src/qt_common/config/shared_translation.cpp" line="621"/>
|
||||
<source>4GB DRAM (Default)</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>4GB DRAM(기본값)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/qt_common/config/shared_translation.cpp" line="622"/>
|
||||
@@ -2118,7 +2131,7 @@ When a program attempts to open the controller applet, it is immediately closed.
|
||||
<message>
|
||||
<location filename="../../src/qt_common/config/shared_translation.cpp" line="623"/>
|
||||
<source>8GB DRAM</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>8GB DRAM</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/qt_common/config/shared_translation.cpp" line="624"/>
|
||||
@@ -2159,7 +2172,7 @@ When a program attempts to open the controller applet, it is immediately closed.
|
||||
<message>
|
||||
<location filename="../../src/qt_common/config/shared_translation.cpp" line="641"/>
|
||||
<source>Always ask (Default)</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>항상 묻기(기본값)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/qt_common/config/shared_translation.cpp" line="642"/>
|
||||
@@ -2379,7 +2392,7 @@ When a program attempts to open the controller applet, it is immediately closed.
|
||||
<message>
|
||||
<location filename="../../src/yuzu/configuration/configure_cpu.ui" line="68"/>
|
||||
<source>CPU Backend</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>CPU 백엔드</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/configuration/configure_cpu.ui" line="95"/>
|
||||
@@ -2756,12 +2769,12 @@ When a program attempts to open the controller applet, it is immediately closed.
|
||||
<message>
|
||||
<location filename="../../src/yuzu/configuration/configure_debug.ui" line="384"/>
|
||||
<source><html><head/><body><p>When checked, disables reordering of mapped memory uploads which allows to associate uploads with specific draws. May reduce performance in some cases.</p></body></html></source>
|
||||
<translation type="unfinished"/>
|
||||
<translation><html><head/><body><p>이 옵션을 선택하면 매핑된 메모리 업로드의 재배열 기능이 비활성화되어 특정 드로우와 업로드를 연결할 수 있습니다. 경우에 따라 성능이 저하될 수 있습니다.</p></body></html></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/configuration/configure_debug.ui" line="387"/>
|
||||
<source>Disable Buffer Reorder</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>버퍼 재배열 비활성화</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/configuration/configure_debug.ui" line="397"/>
|
||||
@@ -2861,7 +2874,7 @@ When a program attempts to open the controller applet, it is immediately closed.
|
||||
<message>
|
||||
<location filename="../../src/yuzu/configuration/configure_debug.ui" line="611"/>
|
||||
<source>Flush log output on each line</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>각 줄의 로그 출력을 플러시합니다</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/configuration/configure_debug.ui" line="618"/>
|
||||
@@ -3261,7 +3274,7 @@ Would you like to delete the old save data?</source>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/configuration/configure_general.ui" line="52"/>
|
||||
<source>External Content</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>외부 콘텐츠</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/configuration/configure_general.ui" line="58"/>
|
||||
@@ -3306,7 +3319,7 @@ Would you like to delete the old save data?</source>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/configuration/configure_general.cpp" line="154"/>
|
||||
<source>This directory is already in the list.</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>이 디렉터리는 이미 목록에 있습니다.</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@@ -7234,7 +7247,7 @@ Debug Message: </source>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/main.ui" line="573"/>
|
||||
<source>&Eden Dependencies</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Eden 의존물(&E)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/main.ui" line="578"/>
|
||||
@@ -7301,7 +7314,7 @@ Debug Message: </source>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/main_window.cpp" line="472"/>
|
||||
<source>Vulkan initialization failed during boot.</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>부팅 중 Vulkan 초기화에 실패했습니다.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/main_window.cpp" line="493"/>
|
||||
@@ -8219,7 +8232,8 @@ Would you like to bypass this and exit anyway?</source>
|
||||
<location filename="../../src/yuzu/migration_worker.cpp" line="52"/>
|
||||
<source>Linking the old directory failed. You may need to re-run with administrative privileges on Windows.
|
||||
OS gave error: %1</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>이전 디렉터리 연결에 실패했습니다. Windows에서는 관리자 권한으로 다시 실행해야 할 수 있습니다.
|
||||
OS 오류: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/migration_worker.cpp" line="70"/>
|
||||
@@ -8250,7 +8264,7 @@ If you wish to clean up the files which were left in the old data location, you
|
||||
%1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/migration_worker.h" line="74"/>
|
||||
<location filename="../../src/yuzu/migration_worker.h" line="73"/>
|
||||
<source>Data was migrated successfully.</source>
|
||||
<translation>데이터 마이그레이션이 성공적으로 완료되었습니다.</translation>
|
||||
</message>
|
||||
@@ -10623,66 +10637,66 @@ By selecting "From Eden", previous save data stored in Ryujinx will be
|
||||
<translation>%1 다운로드가 가능합니다.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="78"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="79"/>
|
||||
<source>New Version Location</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="80"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="81"/>
|
||||
<source>All Files (*.*)</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="88"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="128"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="143"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="89"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="129"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="144"/>
|
||||
<source>Failed to save file</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="89"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="90"/>
|
||||
<source>Could not open file %1 for writing.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="111"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="112"/>
|
||||
<source>Downloading...</source>
|
||||
<translation>다운로드 중...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="111"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="112"/>
|
||||
<source>Cancel</source>
|
||||
<translation>취소</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="129"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="130"/>
|
||||
<source>Could not write to file %1.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="144"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="145"/>
|
||||
<source>Could not commit to file %1.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="156"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="157"/>
|
||||
<source>Failed to download file</source>
|
||||
<translation>파일 다운로드에 실패했습니다</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="157"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="158"/>
|
||||
<source>Could not download from %1%2
|
||||
Error code: %3</source>
|
||||
<translation>%1%2에서 다운로드할 수 없습니다
|
||||
오류 코드: %3</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="170"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="171"/>
|
||||
<source>Download Complete</source>
|
||||
<translation>다운로드 완료</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="171"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="172"/>
|
||||
<source>Successfully downloaded %1. Would you like to open it?</source>
|
||||
<translation>%1이(가) 성공적으로 다운로드됐습니다. 열어보겠습니까?</translation>
|
||||
</message>
|
||||
|
||||
Vendored
+15
-15
@@ -8167,7 +8167,7 @@ If you wish to clean up the files which were left in the old data location, you
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/migration_worker.h" line="74"/>
|
||||
<location filename="../../src/yuzu/migration_worker.h" line="73"/>
|
||||
<source>Data was migrated successfully.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
@@ -10523,65 +10523,65 @@ By selecting "From Eden", previous save data stored in Ryujinx will be
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="78"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="79"/>
|
||||
<source>New Version Location</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="80"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="81"/>
|
||||
<source>All Files (*.*)</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="88"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="128"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="143"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="89"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="129"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="144"/>
|
||||
<source>Failed to save file</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="89"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="90"/>
|
||||
<source>Could not open file %1 for writing.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="111"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="112"/>
|
||||
<source>Downloading...</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="111"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="112"/>
|
||||
<source>Cancel</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="129"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="130"/>
|
||||
<source>Could not write to file %1.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="144"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="145"/>
|
||||
<source>Could not commit to file %1.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="156"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="157"/>
|
||||
<source>Failed to download file</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="157"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="158"/>
|
||||
<source>Could not download from %1%2
|
||||
Error code: %3</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="170"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="171"/>
|
||||
<source>Download Complete</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="171"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="172"/>
|
||||
<source>Successfully downloaded %1. Would you like to open it?</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
|
||||
Vendored
+15
-15
@@ -8165,7 +8165,7 @@ If you wish to clean up the files which were left in the old data location, you
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/migration_worker.h" line="74"/>
|
||||
<location filename="../../src/yuzu/migration_worker.h" line="73"/>
|
||||
<source>Data was migrated successfully.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
@@ -10519,65 +10519,65 @@ By selecting "From Eden", previous save data stored in Ryujinx will be
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="78"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="79"/>
|
||||
<source>New Version Location</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="80"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="81"/>
|
||||
<source>All Files (*.*)</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="88"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="128"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="143"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="89"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="129"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="144"/>
|
||||
<source>Failed to save file</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="89"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="90"/>
|
||||
<source>Could not open file %1 for writing.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="111"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="112"/>
|
||||
<source>Downloading...</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="111"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="112"/>
|
||||
<source>Cancel</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="129"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="130"/>
|
||||
<source>Could not write to file %1.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="144"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="145"/>
|
||||
<source>Could not commit to file %1.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="156"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="157"/>
|
||||
<source>Failed to download file</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="157"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="158"/>
|
||||
<source>Could not download from %1%2
|
||||
Error code: %3</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="170"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="171"/>
|
||||
<source>Download Complete</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="171"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="172"/>
|
||||
<source>Successfully downloaded %1. Would you like to open it?</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
|
||||
Vendored
+15
-15
@@ -8263,7 +8263,7 @@ Jeśli chcesz usunąć pliki, które pozostały w starej lokalizacji danych, mo
|
||||
%1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/migration_worker.h" line="74"/>
|
||||
<location filename="../../src/yuzu/migration_worker.h" line="73"/>
|
||||
<source>Data was migrated successfully.</source>
|
||||
<translation>Dane zostały pomyślnie przeniesione.</translation>
|
||||
</message>
|
||||
@@ -10634,65 +10634,65 @@ Wybierając „Z Eden”, dotychczasowe dane zapisu przechowywane w Ryujinx zost
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="78"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="79"/>
|
||||
<source>New Version Location</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="80"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="81"/>
|
||||
<source>All Files (*.*)</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="88"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="128"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="143"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="89"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="129"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="144"/>
|
||||
<source>Failed to save file</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="89"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="90"/>
|
||||
<source>Could not open file %1 for writing.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="111"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="112"/>
|
||||
<source>Downloading...</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="111"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="112"/>
|
||||
<source>Cancel</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="129"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="130"/>
|
||||
<source>Could not write to file %1.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="144"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="145"/>
|
||||
<source>Could not commit to file %1.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="156"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="157"/>
|
||||
<source>Failed to download file</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="157"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="158"/>
|
||||
<source>Could not download from %1%2
|
||||
Error code: %3</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="170"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="171"/>
|
||||
<source>Download Complete</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="171"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="172"/>
|
||||
<source>Successfully downloaded %1. Would you like to open it?</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
|
||||
Vendored
+27
-26
@@ -723,7 +723,7 @@ Resoluções mais altas exigem mais VRAM e largura de banda.
|
||||
<message>
|
||||
<location filename="../../src/qt_common/config/shared_translation.cpp" line="152"/>
|
||||
<source>Determines how sharpened the image will look using FSR's or SGSR's dynamic contrast.</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Determina o quão nítida a imagem ficará usando o contraste dinâmico do FSR ou do SGSR.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/qt_common/config/shared_translation.cpp" line="153"/>
|
||||
@@ -870,13 +870,14 @@ O modo agressivo pode impactar a performance de outros aplicativos, como softwar
|
||||
<message>
|
||||
<location filename="../../src/qt_common/config/shared_translation.cpp" line="196"/>
|
||||
<source>Anti-Flicker</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Anti-Cintilação</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/qt_common/config/shared_translation.cpp" line="197"/>
|
||||
<source>Forces GPU fence callbacks to wait for submitted GPU work.
|
||||
Use with Fast GPU mode, to avoid flicker with lower performance impact.</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Força os callbacks de GPU fence a aguardarem o trabalho enviado da GPU.
|
||||
Use com o modo Fast GPU para evitar tremores com menor impacto no desempenho.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/qt_common/config/shared_translation.cpp" line="199"/>
|
||||
@@ -6364,32 +6365,32 @@ Por favor vá para Configuração -> Sistema -> Rede e selecione.</transla
|
||||
<message>
|
||||
<location filename="../../src/qt_common/game_list/model.cpp" line="285"/>
|
||||
<source>Name</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Nome</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/qt_common/game_list/model.cpp" line="286"/>
|
||||
<source>Compatibility</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Compatibilidade</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/qt_common/game_list/model.cpp" line="287"/>
|
||||
<source>Add-ons</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Complementos</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/qt_common/game_list/model.cpp" line="288"/>
|
||||
<source>File type</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Tipo de arquivo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/qt_common/game_list/model.cpp" line="289"/>
|
||||
<source>Size</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Tamanho</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/qt_common/game_list/model.cpp" line="290"/>
|
||||
<source>Play time</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Tempo de jogo</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@@ -7350,12 +7351,12 @@ Mensagem de Depuração: </translation>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/main_window.cpp" line="1000"/>
|
||||
<source>Current emulation speed. Values higher or lower than 100% indicate emulation is running faster or slower than a Switch.</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Velocidade atual da emulação. Valores altos ou mais baixo que 100% indicam que o emulador está rodando mais rápido ou mais lento que um Switch.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/main_window.cpp" line="1003"/>
|
||||
<source>How many frames per second the game is currently displaying. This will vary from game to game and scene to scene.</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Quantos quadros por segundo o jogo está mostrando atualmente. Isto varia de jogo para jogo e de cena a cena.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/main_window.cpp" line="1007"/>
|
||||
@@ -8242,7 +8243,7 @@ If you wish to clean up the files which were left in the old data location, you
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/migration_worker.h" line="74"/>
|
||||
<location filename="../../src/yuzu/migration_worker.h" line="73"/>
|
||||
<source>Data was migrated successfully.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
@@ -10602,65 +10603,65 @@ Ao selecionar "Do Eden", os dados salvos anteriores armazenados no Ryu
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="78"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="79"/>
|
||||
<source>New Version Location</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="80"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="81"/>
|
||||
<source>All Files (*.*)</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="88"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="128"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="143"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="89"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="129"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="144"/>
|
||||
<source>Failed to save file</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="89"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="90"/>
|
||||
<source>Could not open file %1 for writing.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="111"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="112"/>
|
||||
<source>Downloading...</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="111"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="112"/>
|
||||
<source>Cancel</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="129"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="130"/>
|
||||
<source>Could not write to file %1.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="144"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="145"/>
|
||||
<source>Could not commit to file %1.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="156"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="157"/>
|
||||
<source>Failed to download file</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="157"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="158"/>
|
||||
<source>Could not download from %1%2
|
||||
Error code: %3</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="170"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="171"/>
|
||||
<source>Download Complete</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="171"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="172"/>
|
||||
<source>Successfully downloaded %1. Would you like to open it?</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
|
||||
Vendored
+15
-15
@@ -8168,7 +8168,7 @@ If you wish to clean up the files which were left in the old data location, you
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/migration_worker.h" line="74"/>
|
||||
<location filename="../../src/yuzu/migration_worker.h" line="73"/>
|
||||
<source>Data was migrated successfully.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
@@ -10522,65 +10522,65 @@ By selecting "From Eden", previous save data stored in Ryujinx will be
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="78"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="79"/>
|
||||
<source>New Version Location</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="80"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="81"/>
|
||||
<source>All Files (*.*)</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="88"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="128"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="143"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="89"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="129"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="144"/>
|
||||
<source>Failed to save file</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="89"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="90"/>
|
||||
<source>Could not open file %1 for writing.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="111"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="112"/>
|
||||
<source>Downloading...</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="111"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="112"/>
|
||||
<source>Cancel</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="129"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="130"/>
|
||||
<source>Could not write to file %1.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="144"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="145"/>
|
||||
<source>Could not commit to file %1.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="156"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="157"/>
|
||||
<source>Failed to download file</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="157"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="158"/>
|
||||
<source>Could not download from %1%2
|
||||
Error code: %3</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="170"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="171"/>
|
||||
<source>Download Complete</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="171"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="172"/>
|
||||
<source>Successfully downloaded %1. Would you like to open it?</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
|
||||
Vendored
+15
-15
@@ -8279,7 +8279,7 @@ If you wish to clean up the files which were left in the old data location, you
|
||||
%1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/migration_worker.h" line="74"/>
|
||||
<location filename="../../src/yuzu/migration_worker.h" line="73"/>
|
||||
<source>Data was migrated successfully.</source>
|
||||
<translation>Данные успешно перенесены.</translation>
|
||||
</message>
|
||||
@@ -10656,66 +10656,66 @@ By selecting "From Eden", previous save data stored in Ryujinx will be
|
||||
<translation>%1 доступна для загрузки.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="78"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="79"/>
|
||||
<source>New Version Location</source>
|
||||
<translation>Местоположение новой версии</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="80"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="81"/>
|
||||
<source>All Files (*.*)</source>
|
||||
<translation>Все файлы (*.*)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="88"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="128"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="143"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="89"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="129"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="144"/>
|
||||
<source>Failed to save file</source>
|
||||
<translation>Не удалось сохранить файл</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="89"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="90"/>
|
||||
<source>Could not open file %1 for writing.</source>
|
||||
<translation>Не удалось открыть файл %1 для записи.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="111"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="112"/>
|
||||
<source>Downloading...</source>
|
||||
<translation>Загрузка...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="111"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="112"/>
|
||||
<source>Cancel</source>
|
||||
<translation>Отмена</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="129"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="130"/>
|
||||
<source>Could not write to file %1.</source>
|
||||
<translation>Не удалось записать в файл %1.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="144"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="145"/>
|
||||
<source>Could not commit to file %1.</source>
|
||||
<translation>Не удалось сохранить файл %1.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="156"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="157"/>
|
||||
<source>Failed to download file</source>
|
||||
<translation>Не удалось загрузить файл</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="157"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="158"/>
|
||||
<source>Could not download from %1%2
|
||||
Error code: %3</source>
|
||||
<translation>Не удалось загрузить из %1%2
|
||||
Код ошибки: %3</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="170"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="171"/>
|
||||
<source>Download Complete</source>
|
||||
<translation>Загрузка завершена</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="171"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="172"/>
|
||||
<source>Successfully downloaded %1. Would you like to open it?</source>
|
||||
<translation>%1 был успешно загружен. Хотите открыть?</translation>
|
||||
</message>
|
||||
|
||||
Vendored
+15
-15
@@ -8280,7 +8280,7 @@ Om du vill rensa upp bland de filer som låg kvar på den gamla dataplatsen kan
|
||||
%1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/migration_worker.h" line="74"/>
|
||||
<location filename="../../src/yuzu/migration_worker.h" line="73"/>
|
||||
<source>Data was migrated successfully.</source>
|
||||
<translation>Datamigrering lyckades.</translation>
|
||||
</message>
|
||||
@@ -10655,65 +10655,65 @@ Om du väljer ”Från Eden” tas tidigare sparade data bort som lagrats i Ryuj
|
||||
<translation>%1 finns tillgänglig för hämtning.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="78"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="79"/>
|
||||
<source>New Version Location</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="80"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="81"/>
|
||||
<source>All Files (*.*)</source>
|
||||
<translation>Alla filer (*.*)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="88"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="128"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="143"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="89"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="129"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="144"/>
|
||||
<source>Failed to save file</source>
|
||||
<translation>Misslyckades med att spara filen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="89"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="90"/>
|
||||
<source>Could not open file %1 for writing.</source>
|
||||
<translation>Kunde inte öppna filen %1 för skrivning.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="111"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="112"/>
|
||||
<source>Downloading...</source>
|
||||
<translation>Hämtar ner...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="111"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="112"/>
|
||||
<source>Cancel</source>
|
||||
<translation>Avbryt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="129"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="130"/>
|
||||
<source>Could not write to file %1.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="144"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="145"/>
|
||||
<source>Could not commit to file %1.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="156"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="157"/>
|
||||
<source>Failed to download file</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="157"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="158"/>
|
||||
<source>Could not download from %1%2
|
||||
Error code: %3</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="170"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="171"/>
|
||||
<source>Download Complete</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="171"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="172"/>
|
||||
<source>Successfully downloaded %1. Would you like to open it?</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
|
||||
Vendored
+15
-15
@@ -8196,7 +8196,7 @@ If you wish to clean up the files which were left in the old data location, you
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/migration_worker.h" line="74"/>
|
||||
<location filename="../../src/yuzu/migration_worker.h" line="73"/>
|
||||
<source>Data was migrated successfully.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
@@ -10550,65 +10550,65 @@ By selecting "From Eden", previous save data stored in Ryujinx will be
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="78"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="79"/>
|
||||
<source>New Version Location</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="80"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="81"/>
|
||||
<source>All Files (*.*)</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="88"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="128"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="143"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="89"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="129"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="144"/>
|
||||
<source>Failed to save file</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="89"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="90"/>
|
||||
<source>Could not open file %1 for writing.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="111"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="112"/>
|
||||
<source>Downloading...</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="111"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="112"/>
|
||||
<source>Cancel</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="129"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="130"/>
|
||||
<source>Could not write to file %1.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="144"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="145"/>
|
||||
<source>Could not commit to file %1.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="156"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="157"/>
|
||||
<source>Failed to download file</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="157"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="158"/>
|
||||
<source>Could not download from %1%2
|
||||
Error code: %3</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="170"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="171"/>
|
||||
<source>Download Complete</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="171"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="172"/>
|
||||
<source>Successfully downloaded %1. Would you like to open it?</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
|
||||
Vendored
+21
-21
@@ -6375,32 +6375,32 @@ Please go to Configure -> System -> Network and make a selection.</source>
|
||||
<message>
|
||||
<location filename="../../src/qt_common/game_list/model.cpp" line="285"/>
|
||||
<source>Name</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Назва</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/qt_common/game_list/model.cpp" line="286"/>
|
||||
<source>Compatibility</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Сумісність</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/qt_common/game_list/model.cpp" line="287"/>
|
||||
<source>Add-ons</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Додатки</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/qt_common/game_list/model.cpp" line="288"/>
|
||||
<source>File type</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Тип файлу</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/qt_common/game_list/model.cpp" line="289"/>
|
||||
<source>Size</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Розмір</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/qt_common/game_list/model.cpp" line="290"/>
|
||||
<source>Play time</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Награний час</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@@ -8282,7 +8282,7 @@ If you wish to clean up the files which were left in the old data location, you
|
||||
%1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/migration_worker.h" line="74"/>
|
||||
<location filename="../../src/yuzu/migration_worker.h" line="73"/>
|
||||
<source>Data was migrated successfully.</source>
|
||||
<translation>Дані перенесено успішно.</translation>
|
||||
</message>
|
||||
@@ -10658,66 +10658,66 @@ By selecting "From Eden", previous save data stored in Ryujinx will be
|
||||
<translation>%1 доступно для завантаження.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="78"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="79"/>
|
||||
<source>New Version Location</source>
|
||||
<translation>Розташування нової версії</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="80"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="81"/>
|
||||
<source>All Files (*.*)</source>
|
||||
<translation>Усі файли (*.*)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="88"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="128"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="143"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="89"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="129"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="144"/>
|
||||
<source>Failed to save file</source>
|
||||
<translation>Не вдалося зберегти файл</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="89"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="90"/>
|
||||
<source>Could not open file %1 for writing.</source>
|
||||
<translation>Не вдалося відкрити файл «%1» для запису.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="111"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="112"/>
|
||||
<source>Downloading...</source>
|
||||
<translation>Завантаження...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="111"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="112"/>
|
||||
<source>Cancel</source>
|
||||
<translation>Скасувати</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="129"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="130"/>
|
||||
<source>Could not write to file %1.</source>
|
||||
<translation>Не вдалося записати до файлу «%1».</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="144"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="145"/>
|
||||
<source>Could not commit to file %1.</source>
|
||||
<translation>Не вдалося вкласти до файлу «%1».</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="156"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="157"/>
|
||||
<source>Failed to download file</source>
|
||||
<translation>Не вдалося завантажити файл</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="157"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="158"/>
|
||||
<source>Could not download from %1%2
|
||||
Error code: %3</source>
|
||||
<translation>Не вдалося завантажити з %1%2
|
||||
Код помилки: %3</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="170"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="171"/>
|
||||
<source>Download Complete</source>
|
||||
<translation>Завантажено</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="171"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="172"/>
|
||||
<source>Successfully downloaded %1. Would you like to open it?</source>
|
||||
<translation>%1 успішно завантажено. Хочете відкрити?</translation>
|
||||
</message>
|
||||
|
||||
Vendored
+15
-15
@@ -8168,7 +8168,7 @@ If you wish to clean up the files which were left in the old data location, you
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/migration_worker.h" line="74"/>
|
||||
<location filename="../../src/yuzu/migration_worker.h" line="73"/>
|
||||
<source>Data was migrated successfully.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
@@ -10522,65 +10522,65 @@ By selecting "From Eden", previous save data stored in Ryujinx will be
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="78"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="79"/>
|
||||
<source>New Version Location</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="80"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="81"/>
|
||||
<source>All Files (*.*)</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="88"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="128"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="143"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="89"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="129"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="144"/>
|
||||
<source>Failed to save file</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="89"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="90"/>
|
||||
<source>Could not open file %1 for writing.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="111"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="112"/>
|
||||
<source>Downloading...</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="111"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="112"/>
|
||||
<source>Cancel</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="129"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="130"/>
|
||||
<source>Could not write to file %1.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="144"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="145"/>
|
||||
<source>Could not commit to file %1.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="156"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="157"/>
|
||||
<source>Failed to download file</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="157"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="158"/>
|
||||
<source>Could not download from %1%2
|
||||
Error code: %3</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="170"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="171"/>
|
||||
<source>Download Complete</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="171"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="172"/>
|
||||
<source>Successfully downloaded %1. Would you like to open it?</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
|
||||
Vendored
+15
-15
@@ -8168,7 +8168,7 @@ If you wish to clean up the files which were left in the old data location, you
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/migration_worker.h" line="74"/>
|
||||
<location filename="../../src/yuzu/migration_worker.h" line="73"/>
|
||||
<source>Data was migrated successfully.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
@@ -10522,65 +10522,65 @@ By selecting "From Eden", previous save data stored in Ryujinx will be
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="78"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="79"/>
|
||||
<source>New Version Location</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="80"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="81"/>
|
||||
<source>All Files (*.*)</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="88"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="128"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="143"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="89"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="129"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="144"/>
|
||||
<source>Failed to save file</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="89"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="90"/>
|
||||
<source>Could not open file %1 for writing.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="111"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="112"/>
|
||||
<source>Downloading...</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="111"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="112"/>
|
||||
<source>Cancel</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="129"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="130"/>
|
||||
<source>Could not write to file %1.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="144"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="145"/>
|
||||
<source>Could not commit to file %1.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="156"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="157"/>
|
||||
<source>Failed to download file</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="157"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="158"/>
|
||||
<source>Could not download from %1%2
|
||||
Error code: %3</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="170"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="171"/>
|
||||
<source>Download Complete</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="171"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="172"/>
|
||||
<source>Successfully downloaded %1. Would you like to open it?</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
|
||||
Vendored
+39
-36
@@ -729,7 +729,7 @@ Options lower than 1X can cause artifacts.</source>
|
||||
<message>
|
||||
<location filename="../../src/qt_common/config/shared_translation.cpp" line="152"/>
|
||||
<source>Determines how sharpened the image will look using FSR's or SGSR's dynamic contrast.</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>确定使用 FSR 或 SGSR 的动态对比度时图像看起来有多锐利。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/qt_common/config/shared_translation.cpp" line="153"/>
|
||||
@@ -878,13 +878,14 @@ Aggressive mode may impact performance of other applications such as recording s
|
||||
<message>
|
||||
<location filename="../../src/qt_common/config/shared_translation.cpp" line="196"/>
|
||||
<source>Anti-Flicker</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>防闪烁</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/qt_common/config/shared_translation.cpp" line="197"/>
|
||||
<source>Forces GPU fence callbacks to wait for submitted GPU work.
|
||||
Use with Fast GPU mode, to avoid flicker with lower performance impact.</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>强制 GPU fence 回调等待已提交的 GPU 工作。
|
||||
与快速 GPU 模式一起使用,以避免较低性能影响下的闪烁。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/qt_common/config/shared_translation.cpp" line="199"/>
|
||||
@@ -1656,12 +1657,12 @@ When a program attempts to open the controller applet, it is immediately closed.
|
||||
<message>
|
||||
<location filename="../../src/qt_common/config/shared_translation.cpp" line="495"/>
|
||||
<source>Snapdragon Game Super Resolution</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>骁龙游戏超级分辨率</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/qt_common/config/shared_translation.cpp" line="496"/>
|
||||
<source>Snapdragon Game Super Resolution EdgeDir</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>骁龙游戏超级分辨率 EdgeDir</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/qt_common/config/shared_translation.cpp" line="500"/>
|
||||
@@ -3344,7 +3345,7 @@ Would you like to delete the old save data?</source>
|
||||
<location filename="../../src/yuzu/configuration/configure_graphics.cpp" line="224"/>
|
||||
<source>%</source>
|
||||
<comment>FSR/SGSR sharpening percentage (e.g. 50%)</comment>
|
||||
<translation type="unfinished"/>
|
||||
<translation>%</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/configuration/configure_graphics.cpp" line="361"/>
|
||||
@@ -6110,7 +6111,7 @@ Please go to Configure -> System -> Network and make a selection.</source>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/bootmanager.cpp" line="916"/>
|
||||
<source>This build doesn't have OpenGL support.</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>此版本不支持 OpenGL。</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@@ -6360,32 +6361,32 @@ Please go to Configure -> System -> Network and make a selection.</source>
|
||||
<message>
|
||||
<location filename="../../src/qt_common/game_list/model.cpp" line="285"/>
|
||||
<source>Name</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>名称</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/qt_common/game_list/model.cpp" line="286"/>
|
||||
<source>Compatibility</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>兼容性</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/qt_common/game_list/model.cpp" line="287"/>
|
||||
<source>Add-ons</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>附加内容</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/qt_common/game_list/model.cpp" line="288"/>
|
||||
<source>File type</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>文件类型</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/qt_common/game_list/model.cpp" line="289"/>
|
||||
<source>Size</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>大小</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/qt_common/game_list/model.cpp" line="290"/>
|
||||
<source>Play time</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>游戏时间</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@@ -8160,12 +8161,12 @@ Would you like to bypass this and exit anyway?</source>
|
||||
<message>
|
||||
<location filename="../../src/qt_common/config/shared_translation.h" line="56"/>
|
||||
<source>SGSR</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>SGSR</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/qt_common/config/shared_translation.h" line="57"/>
|
||||
<source>SGSR EdgeDir</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>SGSR EdgeDir</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/qt_common/config/shared_translation.h" line="61"/>
|
||||
@@ -8256,7 +8257,7 @@ If you wish to clean up the files which were left in the old data location, you
|
||||
%1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/migration_worker.h" line="74"/>
|
||||
<location filename="../../src/yuzu/migration_worker.h" line="73"/>
|
||||
<source>Data was migrated successfully.</source>
|
||||
<translation>数据已成功迁移。</translation>
|
||||
</message>
|
||||
@@ -9529,34 +9530,36 @@ Only do this if you're 100% sure you want to delete this data.</source>
|
||||
<message>
|
||||
<location filename="../../src/qt_common/util/content.cpp" line="501"/>
|
||||
<source>Keys not installed</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>未安装密钥</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/qt_common/util/content.cpp" line="502"/>
|
||||
<source>Install decryption keys and restart Eden before attempting to install firmware.</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>在尝试安装固件之前先安装解密密钥并重启 Eden。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/qt_common/util/content.cpp" line="514"/>
|
||||
<source>Select Dumped Firmware Source Location</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>选择已转储的固件源位置</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/qt_common/util/content.cpp" line="525"/>
|
||||
<source>Select Dumped Firmware ZIP</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>选择已转储的固件 ZIP</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/qt_common/util/content.cpp" line="542"/>
|
||||
<source>Firmware cleanup failed</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>清理固件失败</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/qt_common/util/content.cpp" line="543"/>
|
||||
<source>Failed to clean up extracted firmware cache.
|
||||
Check write permissions in the system temp directory and try again.
|
||||
OS reported error: %1</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>清理提取的固件缓存失败。
|
||||
请检查系统临时目录的写入权限然后重试。
|
||||
OS 报告的错误: %1</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@@ -10629,66 +10632,66 @@ By selecting "From Eden", previous save data stored in Ryujinx will be
|
||||
<translation>%1 可用于下载。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="78"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="79"/>
|
||||
<source>New Version Location</source>
|
||||
<translation>新版本位置</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="80"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="81"/>
|
||||
<source>All Files (*.*)</source>
|
||||
<translation>所有文件 (*.*)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="88"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="128"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="143"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="89"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="129"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="144"/>
|
||||
<source>Failed to save file</source>
|
||||
<translation>保存文件失败</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="89"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="90"/>
|
||||
<source>Could not open file %1 for writing.</source>
|
||||
<translation>无法打开要写入的 %1 文件。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="111"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="112"/>
|
||||
<source>Downloading...</source>
|
||||
<translation>正在下载...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="111"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="112"/>
|
||||
<source>Cancel</source>
|
||||
<translation>取消</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="129"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="130"/>
|
||||
<source>Could not write to file %1.</source>
|
||||
<translation>无法写入到文件 %1。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="144"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="145"/>
|
||||
<source>Could not commit to file %1.</source>
|
||||
<translation>无法提交到文件 %1。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="156"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="157"/>
|
||||
<source>Failed to download file</source>
|
||||
<translation>下载文件失败</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="157"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="158"/>
|
||||
<source>Could not download from %1%2
|
||||
Error code: %3</source>
|
||||
<translation>无法从 %1%2 下载
|
||||
错误代码: %3</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="170"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="171"/>
|
||||
<source>Download Complete</source>
|
||||
<translation>下载完成</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="171"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="172"/>
|
||||
<source>Successfully downloaded %1. Would you like to open it?</source>
|
||||
<translation>已成功下载 %1。您要打开它吗?</translation>
|
||||
</message>
|
||||
|
||||
Vendored
+15
-15
@@ -8194,7 +8194,7 @@ If you wish to clean up the files which were left in the old data location, you
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/migration_worker.h" line="74"/>
|
||||
<location filename="../../src/yuzu/migration_worker.h" line="73"/>
|
||||
<source>Data was migrated successfully.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
@@ -10548,65 +10548,65 @@ By selecting "From Eden", previous save data stored in Ryujinx will be
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="78"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="79"/>
|
||||
<source>New Version Location</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="80"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="81"/>
|
||||
<source>All Files (*.*)</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="88"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="128"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="143"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="89"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="129"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="144"/>
|
||||
<source>Failed to save file</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="89"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="90"/>
|
||||
<source>Could not open file %1 for writing.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="111"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="112"/>
|
||||
<source>Downloading...</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="111"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="112"/>
|
||||
<source>Cancel</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="129"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="130"/>
|
||||
<source>Could not write to file %1.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="144"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="145"/>
|
||||
<source>Could not commit to file %1.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="156"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="157"/>
|
||||
<source>Failed to download file</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="157"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="158"/>
|
||||
<source>Could not download from %1%2
|
||||
Error code: %3</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="170"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="171"/>
|
||||
<source>Download Complete</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="171"/>
|
||||
<location filename="../../src/yuzu/updater/update_dialog.cpp" line="172"/>
|
||||
<source>Successfully downloaded %1. Would you like to open it?</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
|
||||
@@ -18,3 +18,4 @@
|
||||
- `linux-amd64`
|
||||
- `linux-aarch64`
|
||||
- `macos-universal`
|
||||
- `ios-aarch64`
|
||||
|
||||
@@ -61,7 +61,8 @@ In order: OpenSSL CI, Boost (tag + artifact), Opus (options + find_args), discor
|
||||
"version": "3.6.0",
|
||||
"min_version": "1.1.1",
|
||||
"disabled_platforms": [
|
||||
"macos-universal"
|
||||
"macos-universal",
|
||||
"ios-aarch64"
|
||||
]
|
||||
},
|
||||
"boost": {
|
||||
|
||||
Vendored
+5
-6
@@ -9,7 +9,7 @@
|
||||
},
|
||||
"sirit": {
|
||||
"repo": "eden-emulator/sirit",
|
||||
"git_version": "1.0.4",
|
||||
"git_version": "1.0.5",
|
||||
"tag": "v%VERSION%",
|
||||
"artifact": "sirit-source-%VERSION%.tar.zst",
|
||||
"hash_suffix": "sha512sum",
|
||||
@@ -23,17 +23,16 @@
|
||||
"package": "sirit",
|
||||
"name": "sirit",
|
||||
"repo": "eden-emulator/sirit",
|
||||
"version": "1.0.4"
|
||||
"version": "1.0.5"
|
||||
},
|
||||
"httplib": {
|
||||
"repo": "yhirose/cpp-httplib",
|
||||
"tag": "v%VERSION%",
|
||||
"hash": "5efa8140aadffe105dcf39935b732476e95755f6c7473ada3d0b64df2bc02c557633ae3948a25b45e1cf67e89a3ff6329fb30362e4ac033b9a1d1e453aa2eded",
|
||||
"git_version": "0.37.0",
|
||||
"hash": "159ed94965018f2a371d45a3bfc1961e5fb1549e501ded70a6b4532d7fe99d0579c18b5195aff6e35f96f399b426cea2650ec9fb75ef80d4c9edeccb51f2e6c9",
|
||||
"git_version": "0.46.0",
|
||||
"find_args": "MODULE GLOBAL",
|
||||
"patches": [
|
||||
"0001-mingw.patch",
|
||||
"0002-fix-zstd.patch"
|
||||
"0001-mingw.patch"
|
||||
],
|
||||
"options": [
|
||||
"HTTPLIB_REQUIRE_OPENSSL ON",
|
||||
|
||||
Vendored
+2
-2
@@ -59,7 +59,7 @@ endif()
|
||||
if (PLATFORM_PS4 OR PLATFORM_MANAGARM)
|
||||
# Doesn't support VA-API, don't go thru the embarrassment of trying to enable it
|
||||
list(APPEND FFmpeg_HWACCEL_FLAGS --disable-vaapi)
|
||||
elseif (UNIX AND NOT DEFINED FFmpeg_IS_CROSS_COMPILING)
|
||||
elseif (UNIX AND NOT DEFINED FFmpeg_IS_CROSS_COMPILING AND NOT ANDROID)
|
||||
find_package(PkgConfig REQUIRED)
|
||||
pkg_check_modules(LIBVA libva)
|
||||
pkg_check_modules(CUDA cuda)
|
||||
@@ -169,7 +169,7 @@ if (PLATFORM_PS4)
|
||||
)
|
||||
elseif (PLATFORM_MANAGARM)
|
||||
# Required for proper stuff
|
||||
list(APPEND FFmpeg_CROSS_COMPILE_FLAGS
|
||||
list(APPEND FFmpeg_CROSS_COMPILE_FLAGS
|
||||
--disable-pthreads
|
||||
--extra-libs="${FFmpeg_CROSS_COMPILE_LIBS}"
|
||||
)
|
||||
|
||||
@@ -33,3 +33,5 @@ if (ENABLE_UPDATE_CHECKER)
|
||||
endif()
|
||||
|
||||
set(CPACK_PACKAGE_EXECUTABLES ${CPACK_PACKAGE_EXECUTABLES} yuzu-android)
|
||||
|
||||
target_link_options(yuzu-android PRIVATE "-Wl,-Bsymbolic")
|
||||
|
||||
@@ -805,7 +805,7 @@
|
||||
<string name="select_content_type">Tipo de contenido</string>
|
||||
<string name="updates_and_dlc">Actualizaciones y contenido descargable</string>
|
||||
<string name="mods_and_cheats">Mods y trucos</string>
|
||||
<string name="addon_notice">Aviso importante de complementos</string>
|
||||
<string name="addon_notice">Aviso importante sobre los complementos</string>
|
||||
<!-- \"cheats/" "romfs/" and \"exefs/ should not be translated -->
|
||||
<string name="addon_notice_description">Para instalar mods y trucos, debe seleccionar una carpeta que contenga los directorios cheats/, romfs/, o exefs/ . ¡No podemos confirmar si éstos serán compatibles con su juego, así que tenga cuidado!</string>
|
||||
<string name="invalid_directory">Directorio no válido</string>
|
||||
@@ -816,7 +816,7 @@
|
||||
<string name="content_install_notice">Aviso importante de contenido</string>
|
||||
<string name="content_install_notice_description">El contenido seleccionado no es de este juego.\n¿Instalar aun que\?</string>
|
||||
<string name="confirm_uninstall">Confirmar desinstalación</string>
|
||||
<string name="confirm_uninstall_description">¿Está seguro de que quiere desinstalar este complemento\?</string>
|
||||
<string name="confirm_uninstall_description">¿Estás seguro de que quieres desinstalar este complemento\?</string>
|
||||
<string name="verify_integrity">Verificar integridad</string>
|
||||
<string name="verifying">Verificando...</string>
|
||||
<string name="verify_success">¡La verificación de integridad ha sido un éxito!</string>
|
||||
|
||||
@@ -496,7 +496,7 @@
|
||||
<string name="antiflicker">防闪烁</string>
|
||||
<string name="antiflicker_description">强制 GPU 围栏回调等待已提交的 GPU 任务。配合“快速 GPU 模式”一起使用,以避免画面闪烁现象,仅会牺牲少量性能。</string>
|
||||
<string name="fix_bloom_effects">修复 Bloom 效果</string>
|
||||
<string name="fix_bloom_effects_description">减少《塞尔达传说:智慧的再现》(Adreno A6XX - A7XX/ Turnip)中的 bloom 模糊,并移除《Burnout》中的 bloom 效果。警告:可能会导致在其他游戏中出现图形异常。</string>
|
||||
<string name="fix_bloom_effects_description">减少《智慧的再现》和《众神的三角力量2》(Adreno A6XX - A7XX/ Turnip)中的 bloom 模糊,并移除《Burnout》中的 bloom 效果。警告:可能会导致在其他游戏中出现图形异常。</string>
|
||||
<string name="emulate_bgr565">模拟 BGR565</string>
|
||||
<string name="emulate_bgr565_description">修复游戏中的颜色反转或是异常的画面瑕疵或阴影问题</string>
|
||||
<string name="rescale_hack">启用旧版缩放处理</string>
|
||||
|
||||
@@ -83,7 +83,7 @@ ci_package() {
|
||||
android-aarch64 android-x86_64 \
|
||||
solaris-amd64 freebsd-amd64 openbsd-amd64 \
|
||||
linux-amd64 linux-aarch64 \
|
||||
macos-universal; do
|
||||
macos-universal ios-aarch64; do
|
||||
echo "-- * platform $platform"
|
||||
|
||||
case $DISABLED in
|
||||
|
||||
@@ -83,8 +83,13 @@ for pkg in $packages; do
|
||||
echo "-- Package $PACKAGE"
|
||||
|
||||
# TODO(crueter): Support for Forgejo updates w/ forgejo_token
|
||||
# Use gh-cli to avoid ratelimits lmao
|
||||
TAGS=$(gh api --method GET "/repos/$REPO/tags")
|
||||
# Use gh-cli to avoid ratelimits, if available
|
||||
endpoint="/repos/$REPO/tags"
|
||||
if command -v gh >/dev/null 2>&1; then
|
||||
TAGS=$(gh api --method GET "$endpoint")
|
||||
else
|
||||
TAGS=$(curl -sfL "https://api.github.com$endpoint")
|
||||
fi
|
||||
|
||||
# filter out some commonly known annoyances
|
||||
# TODO add more
|
||||
@@ -105,6 +110,12 @@ for pkg in $packages; do
|
||||
filter_out beta
|
||||
filter_out rc
|
||||
|
||||
# openssl
|
||||
if [ "$PACKAGE" = openssl ]; then
|
||||
filter_out rsaref
|
||||
filter_in "openssl-"
|
||||
fi
|
||||
|
||||
# Add package-specific overrides here, e.g. here for fmt:
|
||||
[ "$PACKAGE" != fmt ] || filter_out v0.11
|
||||
|
||||
|
||||
@@ -151,7 +151,7 @@ mingw-amd64 mingw-arm64
|
||||
android-aarch64 android-x86_64
|
||||
solaris-amd64 freebsd-amd64 openbsd-amd64
|
||||
linux-amd64 linux-aarch64
|
||||
macos-universal"
|
||||
macos-universal ios-aarch64"
|
||||
|
||||
DISABLED_PLATFORMS="$reply"
|
||||
fi
|
||||
|
||||
Reference in New Issue
Block a user