diff --git a/.gitmodules b/.gitmodules
index bac18a1143..24b27e4ddc 100644
--- a/.gitmodules
+++ b/.gitmodules
@@ -63,3 +63,12 @@
[submodule "Externals/fmt/fmt"]
path = Externals/fmt/fmt
url = https://github.com/fmtlib/fmt.git
+[submodule "Externals/lz4/lz4"]
+ path = Externals/lz4/lz4
+ url = https://github.com/lz4/lz4
+[submodule "Externals/xxhash/xxHash"]
+ path = Externals/xxhash/xxHash
+ url = https://github.com/Cyan4973/xxHash.git
+[submodule "Externals/enet/enet"]
+ path = Externals/enet/enet
+ url = https://github.com/lsalzman/enet.git
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 74c7fee5fe..8645a6dcce 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -219,9 +219,7 @@ if(ENABLE_GENERIC)
set(_M_GENERIC 1)
add_definitions(-D_M_GENERIC=1)
elseif(_ARCH_64 AND CMAKE_SYSTEM_PROCESSOR MATCHES "x86_64|amd64|AMD64")
- set(_M_X86 1)
set(_M_X86_64 1)
- add_definitions(-D_M_X86=1)
add_definitions(-D_M_X86_64=1)
check_and_add_flag(HAVE_SSE2 -msse2)
elseif(_ARCH_64 AND CMAKE_SYSTEM_PROCESSOR MATCHES "aarch64|arm64")
@@ -625,7 +623,7 @@ endif()
# - place the CMakeLists.txt in the first-level subdirectory, e.g.
# Externals/zlib/CMakeLists.txt (that is: NOT in some Src/ subdirectory)
#
-if (_M_X86)
+if (_M_X86_64)
add_subdirectory(Externals/Bochs_disasm)
endif()
add_subdirectory(Externals/cpp-optparse)
@@ -661,12 +659,9 @@ endif()
dolphin_find_optional_system_library(pugixml Externals/pugixml)
-dolphin_find_optional_system_library_pkgconfig(ENET libenet>=1.3.8 enet::enet Externals/enet)
+dolphin_find_optional_system_library_pkgconfig(ENET libenet>=1.3.18 enet::enet Externals/enet)
-if(NOT XXHASH_FOUND)
- message(STATUS "Using static xxhash from Externals")
- add_subdirectory(Externals/xxhash)
-endif()
+dolphin_find_optional_system_library_pkgconfig(xxhash libxxhash>=0.8.2 xxhash::xxhash Externals/xxhash)
dolphin_find_optional_system_library(BZip2 Externals/bzip2)
@@ -682,6 +677,8 @@ dolphin_find_optional_system_library_pkgconfig(MINIZIP minizip>=3.0.0 minizip::m
dolphin_find_optional_system_library(LZO Externals/LZO)
+dolphin_find_optional_system_library_pkgconfig(lz4 liblz4>=1.8 LZ4::LZ4 Externals/lz4)
+
dolphin_find_optional_system_library_pkgconfig(SPNG spng spng::spng Externals/libspng)
# Using static FreeSurround from Externals
diff --git a/Contributing.md b/Contributing.md
index 21c6a96888..341e719b72 100644
--- a/Contributing.md
+++ b/Contributing.md
@@ -1,17 +1,32 @@
-# Dolphin Coding Style & Licensing
+# Dolphin Coding Style & Legal Requirements
-If you make any contributions to Dolphin after December 1st, 2014, you are agreeing that any code you have contributed will be licensed under the GNU GPL version 2 (or any later version).
-
-# Main sections
-
-- [Introduction](#introduction)
+- [Legal](#legal)
+- [Coding style introduction](#introduction)
- [C++ coding style and formatting](#cpp-coding-style-and-formatting)
- [C++ code-specific guidelines](#cpp-code-specific-guidelines)
- [Android](#android)
- [Help](#help)
+# Legal
-# Introduction
+Summary:
+
+- [Trade secrets](#trade-secrets)
+- [Code licensing](#code-licensing)
+
+## Trade secrets
+
+Following all relevant laws is of utmost importance for an emulation project like Dolphin.
+
+If you know any confidential information related to the GameCube, Wii, or Triforce, either because you signed a non-disclosure agreement or because you looked at leaked materials, we ask that you don't contribute code to Dolphin **at all**. While accepting code from contributors who know confidential information is legal if the code is unrelated to the confidential information, we refuse to accept code from such contributors because it greatly increases our review burden and increases the legal risk we take.
+
+Also, this probably goes without saying, but piracy is strictly forbidden both on GitHub and in all other Dolphin channels.
+
+## Code licensing
+
+If you make any contributions to Dolphin after December 1st, 2014, you are agreeing that any code you have contributed will be licensed under the GNU GPL version 2 (or any later version).
+
+# Coding style introduction
Summary:
diff --git a/Data/Sys/GameSettings/G2BE5G.ini b/Data/Sys/GameSettings/G2BE5G.ini
new file mode 100644
index 0000000000..af06b01fac
--- /dev/null
+++ b/Data/Sys/GameSettings/G2BE5G.ini
@@ -0,0 +1,16 @@
+# G2BE5G - Black & Bruised
+
+[Core]
+# Values set here will override the main Dolphin settings.
+
+[OnLoad]
+# Add memory patches to be loaded once on boot here.
+
+[OnFrame]
+# Add memory patches to be applied every frame here.
+$Disable interlaced rendering
+0x800D8520:dword:0x38600000
+
+[ActionReplay]
+# Add action replay cheats here.
+
diff --git a/Data/Sys/GameSettings/G2BP7D.ini b/Data/Sys/GameSettings/G2BP7D.ini
new file mode 100644
index 0000000000..39f453fcbb
--- /dev/null
+++ b/Data/Sys/GameSettings/G2BP7D.ini
@@ -0,0 +1,16 @@
+# G2BP7D - Black & Bruised
+
+[Core]
+# Values set here will override the main Dolphin settings.
+
+[OnLoad]
+# Add memory patches to be loaded once on boot here.
+
+[OnFrame]
+# Add memory patches to be applied every frame here.
+$Disable interlaced rendering
+0x800D9E68:dword:0x38600000
+
+[ActionReplay]
+# Add action replay cheats here.
+
diff --git a/Data/Sys/GameSettings/GC8JA4.ini b/Data/Sys/GameSettings/GC8JA4.ini
new file mode 100644
index 0000000000..1fb765408f
--- /dev/null
+++ b/Data/Sys/GameSettings/GC8JA4.ini
@@ -0,0 +1,24 @@
+# GC8JA4 - クラッシュ・バンディクー 爆走!ニトロカート
+
+[Core]
+# Values set here will override the main Dolphin settings.
+
+[OnLoad]
+# Add memory patches to be loaded once on boot here.
+
+[OnFrame]
+# Add memory patches to be applied every frame here.
+
+[ActionReplay]
+# Add action replay cheats here.
+$Fix C4 texture tiling (used for buttons and some character icons)
+0400328C 7D0340AE
+04003290 5108452E
+04003294 5508E13E
+04003298 4E800020
+040CA1B4 4BF390D9
+
+[Video_Settings]
+
+[Video_Hacks]
+ImmediateXFBEnable = False
diff --git a/Data/Sys/GameSettings/GCN.ini b/Data/Sys/GameSettings/GCN.ini
index dd91e91734..1db5e2472c 100644
--- a/Data/Sys/GameSettings/GCN.ini
+++ b/Data/Sys/GameSettings/GCN.ini
@@ -11,6 +11,12 @@
[ActionReplay]
# Add action replay cheats here.
+$Fix C4 texture tiling (used for buttons and some character icons)
+0400328C 7D0340AE
+04003290 5108452E
+04003294 5508E13E
+04003298 4E800020
+040CC574 4BF36D19
[Video_Settings]
diff --git a/Data/Sys/GameSettings/RJ3.ini b/Data/Sys/GameSettings/RJ3.ini
new file mode 100644
index 0000000000..61a0c51df5
--- /dev/null
+++ b/Data/Sys/GameSettings/RJ3.ini
@@ -0,0 +1,17 @@
+# RJ3E20, RJ3P7J - Jeep Thrills
+
+[Core]
+# Values set here will override the main Dolphin settings.
+# Fixes the blue screen problem. See issue 13118 for more info.
+AccurateNaNs = True
+
+[OnLoad]
+# Add memory patches to be loaded once on boot here.
+
+[OnFrame]
+# Add memory patches to be applied every frame here.
+
+[ActionReplay]
+# Add action replay cheats here.
+
+[Video_Settings]
diff --git a/Data/Sys/GameSettings/RTH.ini b/Data/Sys/GameSettings/RTH.ini
index b9fa18cc3f..5234f0ea7e 100644
--- a/Data/Sys/GameSettings/RTH.ini
+++ b/Data/Sys/GameSettings/RTH.ini
@@ -8,6 +8,8 @@
[OnFrame]
# Add memory patches to be applied every frame here.
+$Disable blur
+0x8015b900:dword:0x60000000
[ActionReplay]
# Add action replay cheats here.
diff --git a/Data/Sys/GameSettings/SFI.ini b/Data/Sys/GameSettings/SFI.ini
index aefd527295..77c18a1925 100644
--- a/Data/Sys/GameSettings/SFI.ini
+++ b/Data/Sys/GameSettings/SFI.ini
@@ -12,9 +12,9 @@
[ActionReplay]
# Add action replay cheats here.
-[Video_Settings]
-SafeTextureCacheColorSamples = 512
-
[Video_Hacks]
+# Needed for cutscenes and the book to work properly (https://bugs.dolphin-emu.org/issues/4723)
ImmediateXFBEnable = False
+# Needed for the book to work properly (https://bugs.dolphin-emu.org/issues/13356)
+EFBToTextureEnable = False
diff --git a/Data/Sys/GameSettings/SGLPA4.ini b/Data/Sys/GameSettings/SGLPA4.ini
new file mode 100644
index 0000000000..f70ade77e3
--- /dev/null
+++ b/Data/Sys/GameSettings/SGLPA4.ini
@@ -0,0 +1,8 @@
+# SGLPA4 - Gormiti: The Lords of Nature!
+
+[OnFrame]
+# Fixes black screen ingame, see https://bugs.dolphin-emu.org/issues/12436
+# This NOPs out UpdateFade's call to RenderFade. We are probably emulating the way the fade works
+# incorrectly, but for now this patch makes the game playable.
+$Fix black screen
+0x801D59C8:dword:0x60000000
diff --git a/Data/Sys/Shaders/AutoHDR.glsl b/Data/Sys/Shaders/AutoHDR.glsl
index 6226d70d7c..b806d65838 100644
--- a/Data/Sys/Shaders/AutoHDR.glsl
+++ b/Data/Sys/Shaders/AutoHDR.glsl
@@ -30,6 +30,11 @@ DefaultValue = 2.5
[/configuration]
*/
+float luminance(float3 color)
+{
+ return dot(color, float3(0.2126f, 0.7152f, 0.0722f));
+}
+
void main()
{
float4 color = Sample();
@@ -46,8 +51,8 @@ void main()
// Restore the original SDR (0-1) brightness (we might or might not restore it later)
color.rgb /= hdr_paper_white;
- // Find the color average
- float sdr_ratio = (color.r + color.g + color.b) / 3.0;
+ // Find the color luminance (it works better than average)
+ float sdr_ratio = luminance(color.rgb);
const float auto_hdr_max_white = max(HDR_DISPLAY_MAX_NITS / (hdr_paper_white_nits / hdr_sdr_white_nits), hdr_sdr_white_nits) / hdr_sdr_white_nits;
if (sdr_ratio > AUTO_HDR_SHOULDER_START_ALPHA && AUTO_HDR_SHOULDER_START_ALPHA < 1.0)
@@ -61,4 +66,4 @@ void main()
color.rgb *= hdr_paper_white;
SetOutput(color);
-}
\ No newline at end of file
+}
diff --git a/Data/Sys/Shaders/default_pre_post_process.glsl b/Data/Sys/Shaders/default_pre_post_process.glsl
index 795518d616..f6854d11fd 100644
--- a/Data/Sys/Shaders/default_pre_post_process.glsl
+++ b/Data/Sys/Shaders/default_pre_post_process.glsl
@@ -199,15 +199,16 @@ float4 AreaSampling(float3 uvw, float gamma)
{
// Determine the sizes of the source and target images.
float2 source_size = GetResolution();
+ float2 target_size = GetWindowResolution();
float2 inverted_target_size = GetInvWindowResolution();
- // Determine the range of the source image that the target pixel will cover.
- // Workaround: shift the resolution by 1/4 pixel to align the results with other sampling algorithms,
- // otherwise the results would be offsetted, and we'd be sampling from coordinates outside the valid range.
- float2 adjusted_source_size = source_size - 0.25;
- float2 range = adjusted_source_size * inverted_target_size;
- float2 beg = (uvw.xy * adjusted_source_size) - (range * 0.5);
- float2 end = beg + range;
+ // Compute the top-left and bottom-right corners of the target pixel box.
+ float2 t_beg = floor(uvw.xy * target_size);
+ float2 t_end = t_beg + float2(1.0, 1.0);
+
+ // Convert the target pixel box to source pixel box.
+ float2 beg = t_beg * inverted_target_size * source_size;
+ float2 end = t_end * inverted_target_size * source_size;
// Compute the top-left and bottom-right corners of the pixel box.
float2 f_beg = floor(beg);
@@ -236,10 +237,10 @@ float4 AreaSampling(float3 uvw, float gamma)
avg_color += area_ne * QuickSampleByPixel(float2(f_end.x, f_beg.y) + offset, uvw.z, gamma);
avg_color += area_sw * QuickSampleByPixel(float2(f_beg.x, f_end.y) + offset, uvw.z, gamma);
avg_color += area_se * QuickSampleByPixel(float2(f_end.x, f_end.y) + offset, uvw.z, gamma);
-
+
// Determine the size of the pixel box.
- int x_range = int(f_end.x - f_beg.x + 0.5);
- int y_range = int(f_end.y - f_beg.y + 0.5);
+ int x_range = int(f_end.x - f_beg.x - 0.5);
+ int y_range = int(f_end.y - f_beg.y - 0.5);
// Workaround to compile the shader with DX11/12.
// If this isn't done, it will complain that the loop could have too many iterations.
@@ -404,4 +405,4 @@ void main()
}
SetOutput(color);
-}
\ No newline at end of file
+}
diff --git a/Data/Sys/Themes/Clean Blue/assembler_assemble.png b/Data/Sys/Themes/Clean Blue/assembler_assemble.png
new file mode 100644
index 0000000000..0a32341e4e
Binary files /dev/null and b/Data/Sys/Themes/Clean Blue/assembler_assemble.png differ
diff --git a/Data/Sys/Themes/Clean Blue/assembler_assemble@2x.png b/Data/Sys/Themes/Clean Blue/assembler_assemble@2x.png
new file mode 100644
index 0000000000..55d3e5e173
Binary files /dev/null and b/Data/Sys/Themes/Clean Blue/assembler_assemble@2x.png differ
diff --git a/Data/Sys/Themes/Clean Blue/assembler_assemble@4x.png b/Data/Sys/Themes/Clean Blue/assembler_assemble@4x.png
new file mode 100644
index 0000000000..2db94c3ec6
Binary files /dev/null and b/Data/Sys/Themes/Clean Blue/assembler_assemble@4x.png differ
diff --git a/Data/Sys/Themes/Clean Blue/assembler_clipboard.png b/Data/Sys/Themes/Clean Blue/assembler_clipboard.png
new file mode 100644
index 0000000000..fd4efa41ff
Binary files /dev/null and b/Data/Sys/Themes/Clean Blue/assembler_clipboard.png differ
diff --git a/Data/Sys/Themes/Clean Blue/assembler_inject.png b/Data/Sys/Themes/Clean Blue/assembler_inject.png
new file mode 100644
index 0000000000..b523074635
Binary files /dev/null and b/Data/Sys/Themes/Clean Blue/assembler_inject.png differ
diff --git a/Data/Sys/Themes/Clean Blue/assembler_inject@2x.png b/Data/Sys/Themes/Clean Blue/assembler_inject@2x.png
new file mode 100644
index 0000000000..5daea84753
Binary files /dev/null and b/Data/Sys/Themes/Clean Blue/assembler_inject@2x.png differ
diff --git a/Data/Sys/Themes/Clean Blue/assembler_inject@4x.png b/Data/Sys/Themes/Clean Blue/assembler_inject@4x.png
new file mode 100644
index 0000000000..85d7d60fde
Binary files /dev/null and b/Data/Sys/Themes/Clean Blue/assembler_inject@4x.png differ
diff --git a/Data/Sys/Themes/Clean Blue/assembler_new.png b/Data/Sys/Themes/Clean Blue/assembler_new.png
new file mode 100644
index 0000000000..93ccac7810
Binary files /dev/null and b/Data/Sys/Themes/Clean Blue/assembler_new.png differ
diff --git a/Data/Sys/Themes/Clean Blue/assembler_new@2x.png b/Data/Sys/Themes/Clean Blue/assembler_new@2x.png
new file mode 100644
index 0000000000..e0df86de3c
Binary files /dev/null and b/Data/Sys/Themes/Clean Blue/assembler_new@2x.png differ
diff --git a/Data/Sys/Themes/Clean Blue/assembler_new@4x.png b/Data/Sys/Themes/Clean Blue/assembler_new@4x.png
new file mode 100644
index 0000000000..eb3ee00dbb
Binary files /dev/null and b/Data/Sys/Themes/Clean Blue/assembler_new@4x.png differ
diff --git a/Data/Sys/Themes/Clean Blue/assembler_openasm.png b/Data/Sys/Themes/Clean Blue/assembler_openasm.png
new file mode 100644
index 0000000000..48afdc2e2b
Binary files /dev/null and b/Data/Sys/Themes/Clean Blue/assembler_openasm.png differ
diff --git a/Data/Sys/Themes/Clean Blue/assembler_openasm@2x.png b/Data/Sys/Themes/Clean Blue/assembler_openasm@2x.png
new file mode 100644
index 0000000000..5dc43ba275
Binary files /dev/null and b/Data/Sys/Themes/Clean Blue/assembler_openasm@2x.png differ
diff --git a/Data/Sys/Themes/Clean Blue/assembler_openasm@4x.png b/Data/Sys/Themes/Clean Blue/assembler_openasm@4x.png
new file mode 100644
index 0000000000..f932ecda39
Binary files /dev/null and b/Data/Sys/Themes/Clean Blue/assembler_openasm@4x.png differ
diff --git a/Data/Sys/Themes/Clean Blue/assembler_save.png b/Data/Sys/Themes/Clean Blue/assembler_save.png
new file mode 100644
index 0000000000..2e38c7198f
Binary files /dev/null and b/Data/Sys/Themes/Clean Blue/assembler_save.png differ
diff --git a/Data/Sys/Themes/Clean Blue/assembler_save@2x.png b/Data/Sys/Themes/Clean Blue/assembler_save@2x.png
new file mode 100644
index 0000000000..0559a90bc0
Binary files /dev/null and b/Data/Sys/Themes/Clean Blue/assembler_save@2x.png differ
diff --git a/Data/Sys/Themes/Clean Blue/assembler_save@4x.png b/Data/Sys/Themes/Clean Blue/assembler_save@4x.png
new file mode 100644
index 0000000000..811ffa570f
Binary files /dev/null and b/Data/Sys/Themes/Clean Blue/assembler_save@4x.png differ
diff --git a/Data/Sys/Themes/Clean Emerald/assembler_assemble.png b/Data/Sys/Themes/Clean Emerald/assembler_assemble.png
new file mode 100644
index 0000000000..47d7a8999e
Binary files /dev/null and b/Data/Sys/Themes/Clean Emerald/assembler_assemble.png differ
diff --git a/Data/Sys/Themes/Clean Emerald/assembler_assemble@2x.png b/Data/Sys/Themes/Clean Emerald/assembler_assemble@2x.png
new file mode 100644
index 0000000000..154a15642b
Binary files /dev/null and b/Data/Sys/Themes/Clean Emerald/assembler_assemble@2x.png differ
diff --git a/Data/Sys/Themes/Clean Emerald/assembler_assemble@4x.png b/Data/Sys/Themes/Clean Emerald/assembler_assemble@4x.png
new file mode 100644
index 0000000000..e89df7594e
Binary files /dev/null and b/Data/Sys/Themes/Clean Emerald/assembler_assemble@4x.png differ
diff --git a/Data/Sys/Themes/Clean Emerald/assembler_clipboard.png b/Data/Sys/Themes/Clean Emerald/assembler_clipboard.png
new file mode 100644
index 0000000000..32abfee226
Binary files /dev/null and b/Data/Sys/Themes/Clean Emerald/assembler_clipboard.png differ
diff --git a/Data/Sys/Themes/Clean Emerald/assembler_inject.png b/Data/Sys/Themes/Clean Emerald/assembler_inject.png
new file mode 100644
index 0000000000..1d0eff0507
Binary files /dev/null and b/Data/Sys/Themes/Clean Emerald/assembler_inject.png differ
diff --git a/Data/Sys/Themes/Clean Emerald/assembler_inject@2x.png b/Data/Sys/Themes/Clean Emerald/assembler_inject@2x.png
new file mode 100644
index 0000000000..836b3a6f23
Binary files /dev/null and b/Data/Sys/Themes/Clean Emerald/assembler_inject@2x.png differ
diff --git a/Data/Sys/Themes/Clean Emerald/assembler_inject@4x.png b/Data/Sys/Themes/Clean Emerald/assembler_inject@4x.png
new file mode 100644
index 0000000000..8d299173c8
Binary files /dev/null and b/Data/Sys/Themes/Clean Emerald/assembler_inject@4x.png differ
diff --git a/Data/Sys/Themes/Clean Emerald/assembler_new.png b/Data/Sys/Themes/Clean Emerald/assembler_new.png
new file mode 100644
index 0000000000..b90004c7aa
Binary files /dev/null and b/Data/Sys/Themes/Clean Emerald/assembler_new.png differ
diff --git a/Data/Sys/Themes/Clean Emerald/assembler_new@2x.png b/Data/Sys/Themes/Clean Emerald/assembler_new@2x.png
new file mode 100644
index 0000000000..6c0cd0ae17
Binary files /dev/null and b/Data/Sys/Themes/Clean Emerald/assembler_new@2x.png differ
diff --git a/Data/Sys/Themes/Clean Emerald/assembler_new@4x.png b/Data/Sys/Themes/Clean Emerald/assembler_new@4x.png
new file mode 100644
index 0000000000..a694b724f1
Binary files /dev/null and b/Data/Sys/Themes/Clean Emerald/assembler_new@4x.png differ
diff --git a/Data/Sys/Themes/Clean Emerald/assembler_openasm.png b/Data/Sys/Themes/Clean Emerald/assembler_openasm.png
new file mode 100644
index 0000000000..959dceed4b
Binary files /dev/null and b/Data/Sys/Themes/Clean Emerald/assembler_openasm.png differ
diff --git a/Data/Sys/Themes/Clean Emerald/assembler_openasm@2x.png b/Data/Sys/Themes/Clean Emerald/assembler_openasm@2x.png
new file mode 100644
index 0000000000..5e664d50b8
Binary files /dev/null and b/Data/Sys/Themes/Clean Emerald/assembler_openasm@2x.png differ
diff --git a/Data/Sys/Themes/Clean Emerald/assembler_openasm@4x.png b/Data/Sys/Themes/Clean Emerald/assembler_openasm@4x.png
new file mode 100644
index 0000000000..5a4cfeb819
Binary files /dev/null and b/Data/Sys/Themes/Clean Emerald/assembler_openasm@4x.png differ
diff --git a/Data/Sys/Themes/Clean Emerald/assembler_save.png b/Data/Sys/Themes/Clean Emerald/assembler_save.png
new file mode 100644
index 0000000000..5fb5a976d8
Binary files /dev/null and b/Data/Sys/Themes/Clean Emerald/assembler_save.png differ
diff --git a/Data/Sys/Themes/Clean Emerald/assembler_save@2x.png b/Data/Sys/Themes/Clean Emerald/assembler_save@2x.png
new file mode 100644
index 0000000000..afa054c607
Binary files /dev/null and b/Data/Sys/Themes/Clean Emerald/assembler_save@2x.png differ
diff --git a/Data/Sys/Themes/Clean Emerald/assembler_save@4x.png b/Data/Sys/Themes/Clean Emerald/assembler_save@4x.png
new file mode 100644
index 0000000000..e7d8ec92e0
Binary files /dev/null and b/Data/Sys/Themes/Clean Emerald/assembler_save@4x.png differ
diff --git a/Data/Sys/Themes/Clean Lite/assembler_assemble.png b/Data/Sys/Themes/Clean Lite/assembler_assemble.png
new file mode 100644
index 0000000000..d92f75c7b0
Binary files /dev/null and b/Data/Sys/Themes/Clean Lite/assembler_assemble.png differ
diff --git a/Data/Sys/Themes/Clean Lite/assembler_assemble@2x.png b/Data/Sys/Themes/Clean Lite/assembler_assemble@2x.png
new file mode 100644
index 0000000000..212e98162c
Binary files /dev/null and b/Data/Sys/Themes/Clean Lite/assembler_assemble@2x.png differ
diff --git a/Data/Sys/Themes/Clean Lite/assembler_assemble@4x.png b/Data/Sys/Themes/Clean Lite/assembler_assemble@4x.png
new file mode 100644
index 0000000000..d3b177250f
Binary files /dev/null and b/Data/Sys/Themes/Clean Lite/assembler_assemble@4x.png differ
diff --git a/Data/Sys/Themes/Clean Lite/assembler_clipboard.png b/Data/Sys/Themes/Clean Lite/assembler_clipboard.png
new file mode 100644
index 0000000000..bd081dec5f
Binary files /dev/null and b/Data/Sys/Themes/Clean Lite/assembler_clipboard.png differ
diff --git a/Data/Sys/Themes/Clean Lite/assembler_inject.png b/Data/Sys/Themes/Clean Lite/assembler_inject.png
new file mode 100644
index 0000000000..454a8fe83a
Binary files /dev/null and b/Data/Sys/Themes/Clean Lite/assembler_inject.png differ
diff --git a/Data/Sys/Themes/Clean Lite/assembler_inject@2x.png b/Data/Sys/Themes/Clean Lite/assembler_inject@2x.png
new file mode 100644
index 0000000000..36c8d0ce34
Binary files /dev/null and b/Data/Sys/Themes/Clean Lite/assembler_inject@2x.png differ
diff --git a/Data/Sys/Themes/Clean Lite/assembler_inject@4x.png b/Data/Sys/Themes/Clean Lite/assembler_inject@4x.png
new file mode 100644
index 0000000000..192532b34c
Binary files /dev/null and b/Data/Sys/Themes/Clean Lite/assembler_inject@4x.png differ
diff --git a/Data/Sys/Themes/Clean Lite/assembler_new.png b/Data/Sys/Themes/Clean Lite/assembler_new.png
new file mode 100644
index 0000000000..2839a21018
Binary files /dev/null and b/Data/Sys/Themes/Clean Lite/assembler_new.png differ
diff --git a/Data/Sys/Themes/Clean Lite/assembler_new@2x.png b/Data/Sys/Themes/Clean Lite/assembler_new@2x.png
new file mode 100644
index 0000000000..9a17ced62b
Binary files /dev/null and b/Data/Sys/Themes/Clean Lite/assembler_new@2x.png differ
diff --git a/Data/Sys/Themes/Clean Lite/assembler_new@4x.png b/Data/Sys/Themes/Clean Lite/assembler_new@4x.png
new file mode 100644
index 0000000000..98e6ef294c
Binary files /dev/null and b/Data/Sys/Themes/Clean Lite/assembler_new@4x.png differ
diff --git a/Data/Sys/Themes/Clean Lite/assembler_openasm.png b/Data/Sys/Themes/Clean Lite/assembler_openasm.png
new file mode 100644
index 0000000000..def45f8523
Binary files /dev/null and b/Data/Sys/Themes/Clean Lite/assembler_openasm.png differ
diff --git a/Data/Sys/Themes/Clean Lite/assembler_openasm@2x.png b/Data/Sys/Themes/Clean Lite/assembler_openasm@2x.png
new file mode 100644
index 0000000000..abf0d28473
Binary files /dev/null and b/Data/Sys/Themes/Clean Lite/assembler_openasm@2x.png differ
diff --git a/Data/Sys/Themes/Clean Lite/assembler_openasm@4x.png b/Data/Sys/Themes/Clean Lite/assembler_openasm@4x.png
new file mode 100644
index 0000000000..a7f0810bfe
Binary files /dev/null and b/Data/Sys/Themes/Clean Lite/assembler_openasm@4x.png differ
diff --git a/Data/Sys/Themes/Clean Lite/assembler_save.png b/Data/Sys/Themes/Clean Lite/assembler_save.png
new file mode 100644
index 0000000000..842b8287e4
Binary files /dev/null and b/Data/Sys/Themes/Clean Lite/assembler_save.png differ
diff --git a/Data/Sys/Themes/Clean Lite/assembler_save@2x.png b/Data/Sys/Themes/Clean Lite/assembler_save@2x.png
new file mode 100644
index 0000000000..785f8ecd27
Binary files /dev/null and b/Data/Sys/Themes/Clean Lite/assembler_save@2x.png differ
diff --git a/Data/Sys/Themes/Clean Lite/assembler_save@4x.png b/Data/Sys/Themes/Clean Lite/assembler_save@4x.png
new file mode 100644
index 0000000000..7414bce7c2
Binary files /dev/null and b/Data/Sys/Themes/Clean Lite/assembler_save@4x.png differ
diff --git a/Data/Sys/Themes/Clean Pink/assembler_assemble.png b/Data/Sys/Themes/Clean Pink/assembler_assemble.png
new file mode 100644
index 0000000000..846dca33c3
Binary files /dev/null and b/Data/Sys/Themes/Clean Pink/assembler_assemble.png differ
diff --git a/Data/Sys/Themes/Clean Pink/assembler_assemble@2x.png b/Data/Sys/Themes/Clean Pink/assembler_assemble@2x.png
new file mode 100644
index 0000000000..4fc4735b89
Binary files /dev/null and b/Data/Sys/Themes/Clean Pink/assembler_assemble@2x.png differ
diff --git a/Data/Sys/Themes/Clean Pink/assembler_assemble@4x.png b/Data/Sys/Themes/Clean Pink/assembler_assemble@4x.png
new file mode 100644
index 0000000000..6afc2d4d81
Binary files /dev/null and b/Data/Sys/Themes/Clean Pink/assembler_assemble@4x.png differ
diff --git a/Data/Sys/Themes/Clean Pink/assembler_clipboard.png b/Data/Sys/Themes/Clean Pink/assembler_clipboard.png
new file mode 100644
index 0000000000..3d0f4fc6e4
Binary files /dev/null and b/Data/Sys/Themes/Clean Pink/assembler_clipboard.png differ
diff --git a/Data/Sys/Themes/Clean Pink/assembler_inject.png b/Data/Sys/Themes/Clean Pink/assembler_inject.png
new file mode 100644
index 0000000000..bf5d0dcae9
Binary files /dev/null and b/Data/Sys/Themes/Clean Pink/assembler_inject.png differ
diff --git a/Data/Sys/Themes/Clean Pink/assembler_inject@2x.png b/Data/Sys/Themes/Clean Pink/assembler_inject@2x.png
new file mode 100644
index 0000000000..794a0642da
Binary files /dev/null and b/Data/Sys/Themes/Clean Pink/assembler_inject@2x.png differ
diff --git a/Data/Sys/Themes/Clean Pink/assembler_inject@4x.png b/Data/Sys/Themes/Clean Pink/assembler_inject@4x.png
new file mode 100644
index 0000000000..0a92f52b08
Binary files /dev/null and b/Data/Sys/Themes/Clean Pink/assembler_inject@4x.png differ
diff --git a/Data/Sys/Themes/Clean Pink/assembler_new.png b/Data/Sys/Themes/Clean Pink/assembler_new.png
new file mode 100644
index 0000000000..1e6756e07e
Binary files /dev/null and b/Data/Sys/Themes/Clean Pink/assembler_new.png differ
diff --git a/Data/Sys/Themes/Clean Pink/assembler_new@2x.png b/Data/Sys/Themes/Clean Pink/assembler_new@2x.png
new file mode 100644
index 0000000000..c3235d846f
Binary files /dev/null and b/Data/Sys/Themes/Clean Pink/assembler_new@2x.png differ
diff --git a/Data/Sys/Themes/Clean Pink/assembler_new@4x.png b/Data/Sys/Themes/Clean Pink/assembler_new@4x.png
new file mode 100644
index 0000000000..c26c9bba14
Binary files /dev/null and b/Data/Sys/Themes/Clean Pink/assembler_new@4x.png differ
diff --git a/Data/Sys/Themes/Clean Pink/assembler_openasm.png b/Data/Sys/Themes/Clean Pink/assembler_openasm.png
new file mode 100644
index 0000000000..89e13c8f35
Binary files /dev/null and b/Data/Sys/Themes/Clean Pink/assembler_openasm.png differ
diff --git a/Data/Sys/Themes/Clean Pink/assembler_openasm@2x.png b/Data/Sys/Themes/Clean Pink/assembler_openasm@2x.png
new file mode 100644
index 0000000000..1c8d6d3ee4
Binary files /dev/null and b/Data/Sys/Themes/Clean Pink/assembler_openasm@2x.png differ
diff --git a/Data/Sys/Themes/Clean Pink/assembler_openasm@4x.png b/Data/Sys/Themes/Clean Pink/assembler_openasm@4x.png
new file mode 100644
index 0000000000..4308c8f02f
Binary files /dev/null and b/Data/Sys/Themes/Clean Pink/assembler_openasm@4x.png differ
diff --git a/Data/Sys/Themes/Clean Pink/assembler_save.png b/Data/Sys/Themes/Clean Pink/assembler_save.png
new file mode 100644
index 0000000000..ea340280fb
Binary files /dev/null and b/Data/Sys/Themes/Clean Pink/assembler_save.png differ
diff --git a/Data/Sys/Themes/Clean Pink/assembler_save@2x.png b/Data/Sys/Themes/Clean Pink/assembler_save@2x.png
new file mode 100644
index 0000000000..91ef30bf88
Binary files /dev/null and b/Data/Sys/Themes/Clean Pink/assembler_save@2x.png differ
diff --git a/Data/Sys/Themes/Clean Pink/assembler_save@4x.png b/Data/Sys/Themes/Clean Pink/assembler_save@4x.png
new file mode 100644
index 0000000000..8abe37c305
Binary files /dev/null and b/Data/Sys/Themes/Clean Pink/assembler_save@4x.png differ
diff --git a/Data/Sys/Themes/Clean/assembler_assemble.png b/Data/Sys/Themes/Clean/assembler_assemble.png
new file mode 100644
index 0000000000..4c12ec5b25
Binary files /dev/null and b/Data/Sys/Themes/Clean/assembler_assemble.png differ
diff --git a/Data/Sys/Themes/Clean/assembler_assemble@2x.png b/Data/Sys/Themes/Clean/assembler_assemble@2x.png
new file mode 100644
index 0000000000..f6ad930937
Binary files /dev/null and b/Data/Sys/Themes/Clean/assembler_assemble@2x.png differ
diff --git a/Data/Sys/Themes/Clean/assembler_assemble@4x.png b/Data/Sys/Themes/Clean/assembler_assemble@4x.png
new file mode 100644
index 0000000000..d640fb41a4
Binary files /dev/null and b/Data/Sys/Themes/Clean/assembler_assemble@4x.png differ
diff --git a/Data/Sys/Themes/Clean/assembler_clipboard.png b/Data/Sys/Themes/Clean/assembler_clipboard.png
new file mode 100644
index 0000000000..31870d10e7
Binary files /dev/null and b/Data/Sys/Themes/Clean/assembler_clipboard.png differ
diff --git a/Data/Sys/Themes/Clean/assembler_inject.png b/Data/Sys/Themes/Clean/assembler_inject.png
new file mode 100644
index 0000000000..f3d4a83061
Binary files /dev/null and b/Data/Sys/Themes/Clean/assembler_inject.png differ
diff --git a/Data/Sys/Themes/Clean/assembler_inject@2x.png b/Data/Sys/Themes/Clean/assembler_inject@2x.png
new file mode 100644
index 0000000000..edbc05e88a
Binary files /dev/null and b/Data/Sys/Themes/Clean/assembler_inject@2x.png differ
diff --git a/Data/Sys/Themes/Clean/assembler_inject@4x.png b/Data/Sys/Themes/Clean/assembler_inject@4x.png
new file mode 100644
index 0000000000..0f6c7a9f7d
Binary files /dev/null and b/Data/Sys/Themes/Clean/assembler_inject@4x.png differ
diff --git a/Data/Sys/Themes/Clean/assembler_new.png b/Data/Sys/Themes/Clean/assembler_new.png
new file mode 100644
index 0000000000..275822538d
Binary files /dev/null and b/Data/Sys/Themes/Clean/assembler_new.png differ
diff --git a/Data/Sys/Themes/Clean/assembler_new@2x.png b/Data/Sys/Themes/Clean/assembler_new@2x.png
new file mode 100644
index 0000000000..e81537a297
Binary files /dev/null and b/Data/Sys/Themes/Clean/assembler_new@2x.png differ
diff --git a/Data/Sys/Themes/Clean/assembler_new@4x.png b/Data/Sys/Themes/Clean/assembler_new@4x.png
new file mode 100644
index 0000000000..48f868355c
Binary files /dev/null and b/Data/Sys/Themes/Clean/assembler_new@4x.png differ
diff --git a/Data/Sys/Themes/Clean/assembler_openasm.png b/Data/Sys/Themes/Clean/assembler_openasm.png
new file mode 100644
index 0000000000..7b8ee320c5
Binary files /dev/null and b/Data/Sys/Themes/Clean/assembler_openasm.png differ
diff --git a/Data/Sys/Themes/Clean/assembler_openasm@2x.png b/Data/Sys/Themes/Clean/assembler_openasm@2x.png
new file mode 100644
index 0000000000..75002087ff
Binary files /dev/null and b/Data/Sys/Themes/Clean/assembler_openasm@2x.png differ
diff --git a/Data/Sys/Themes/Clean/assembler_openasm@4x.png b/Data/Sys/Themes/Clean/assembler_openasm@4x.png
new file mode 100644
index 0000000000..de674aebc5
Binary files /dev/null and b/Data/Sys/Themes/Clean/assembler_openasm@4x.png differ
diff --git a/Data/Sys/Themes/Clean/assembler_save.png b/Data/Sys/Themes/Clean/assembler_save.png
new file mode 100644
index 0000000000..5a5528b71f
Binary files /dev/null and b/Data/Sys/Themes/Clean/assembler_save.png differ
diff --git a/Data/Sys/Themes/Clean/assembler_save@2x.png b/Data/Sys/Themes/Clean/assembler_save@2x.png
new file mode 100644
index 0000000000..e932cb0e19
Binary files /dev/null and b/Data/Sys/Themes/Clean/assembler_save@2x.png differ
diff --git a/Data/Sys/Themes/Clean/assembler_save@4x.png b/Data/Sys/Themes/Clean/assembler_save@4x.png
new file mode 100644
index 0000000000..fdc7c725bc
Binary files /dev/null and b/Data/Sys/Themes/Clean/assembler_save@4x.png differ
diff --git a/Data/User/Wii/shared2/wc24/mbox/wc24recv.ctl b/Data/User/Wii/shared2/wc24/mbox/wc24recv.ctl
index a4880f368a..64c26b57cc 100644
Binary files a/Data/User/Wii/shared2/wc24/mbox/wc24recv.ctl and b/Data/User/Wii/shared2/wc24/mbox/wc24recv.ctl differ
diff --git a/Externals/cubeb/CMakeLists.txt b/Externals/cubeb/CMakeLists.txt
index 07f4493dd9..e428d88e01 100644
--- a/Externals/cubeb/CMakeLists.txt
+++ b/Externals/cubeb/CMakeLists.txt
@@ -18,8 +18,9 @@ endif()
if (NOT MSVC)
set(CMAKE_C_STANDARD 99)
- set(CMAKE_CXX_STANDARD 11)
+ set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
+ set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
endif()
if(USE_SANITIZERS)
@@ -56,8 +57,8 @@ if(NOT MSVC)
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -Wextra -Wno-unused-parameter")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -Wextra -Wno-unused-parameter -fno-exceptions -fno-rtti")
else()
- #string(REPLACE "/GR" "" CMAKE_CXX_FLAGS ${CMAKE_CXX_FLAGS}) # Disable RTTI
- #string(REPLACE "/EHsc" "" CMAKE_CXX_FLAGS ${CMAKE_CXX_FLAGS}) # Disable Exceptions
+ #string(REPLACE "/GR" "" CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}") # Disable RTTI
+ #string(REPLACE "/EHsc" "" CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}") # Disable Exceptions
endif()
add_library(cubeb
@@ -157,6 +158,10 @@ if(LAZY_LOAD_LIBS)
if(USE_PULSE OR USE_ALSA OR USE_JACK OR USE_SNDIO OR USE_AAUDIO)
target_link_libraries(cubeb PRIVATE ${CMAKE_DL_LIBS})
+
+ if(ANDROID)
+ target_compile_definitions(cubeb PRIVATE __ANDROID_UNAVAILABLE_SYMBOLS_ARE_WEAK__)
+ endif()
endif()
else()
@@ -262,7 +267,7 @@ endif()
check_include_files(SLES/OpenSLES.h USE_OPENSL)
if(USE_OPENSL)
target_sources(cubeb PRIVATE
- cubeb/src/cubeb_opensl.c
+ cubeb/src/cubeb_opensl.cpp
cubeb/src/cubeb-jni.cpp)
target_compile_definitions(cubeb PRIVATE USE_OPENSL)
target_link_libraries(cubeb PRIVATE OpenSLES)
diff --git a/Externals/cubeb/cubeb b/Externals/cubeb/cubeb
index 27d2a102b0..54217bca3f 160000
--- a/Externals/cubeb/cubeb
+++ b/Externals/cubeb/cubeb
@@ -1 +1 @@
-Subproject commit 27d2a102b0b75d9e49d43bc1ea516233fb87d778
+Subproject commit 54217bca3f3e0cd53c073690a23dd25d83557909
diff --git a/Externals/cubeb/msvc/cubeb.vcxproj b/Externals/cubeb/msvc/cubeb.vcxproj
index 163e4ab273..4f8d4b6da3 100644
--- a/Externals/cubeb/msvc/cubeb.vcxproj
+++ b/Externals/cubeb/msvc/cubeb.vcxproj
@@ -42,6 +42,7 @@
+
diff --git a/Externals/cubeb/msvc/cubeb.vcxproj.filters b/Externals/cubeb/msvc/cubeb.vcxproj.filters
index bc88c6dd70..3050421803 100644
--- a/Externals/cubeb/msvc/cubeb.vcxproj.filters
+++ b/Externals/cubeb/msvc/cubeb.vcxproj.filters
@@ -11,6 +11,7 @@
+
diff --git a/Externals/curl/curl b/Externals/curl/curl
index 7ab9d43720..d755a5f7c0 160000
--- a/Externals/curl/curl
+++ b/Externals/curl/curl
@@ -1 +1 @@
-Subproject commit 7ab9d43720bc34d9aa351c7ca683c1668ebf8335
+Subproject commit d755a5f7c009dd63a61b2c745180d8ba937cbfeb
diff --git a/Externals/curl/curl.vcxproj b/Externals/curl/curl.vcxproj
index 922fa1d8a5..6868807e0a 100644
--- a/Externals/curl/curl.vcxproj
+++ b/Externals/curl/curl.vcxproj
@@ -48,7 +48,6 @@
-
@@ -59,6 +58,7 @@
+
@@ -102,6 +102,7 @@
+
@@ -148,20 +149,15 @@
-
-
-
-
-
-
-
+
+
@@ -170,35 +166,41 @@
+
+
+
-
+
-
+
-
+
+
+
+
@@ -237,7 +239,6 @@
-
@@ -255,9 +256,9 @@
+
-
@@ -292,6 +293,7 @@
+
@@ -339,33 +341,32 @@
-
-
-
-
-
-
-
+
+
+
+
+
-
-
+
-
+
+
+
-
+
diff --git a/Externals/enet/CMakeLists.txt b/Externals/enet/CMakeLists.txt
index f6244a7f4e..c52052330b 100644
--- a/Externals/enet/CMakeLists.txt
+++ b/Externals/enet/CMakeLists.txt
@@ -59,7 +59,7 @@ if(HAS_SOCKLEN_T)
add_definitions(-DHAS_SOCKLEN_T=1)
endif()
-set(INCLUDE_FILES_PREFIX include/enet)
+set(INCLUDE_FILES_PREFIX enet/include/enet)
set(INCLUDE_FILES
${INCLUDE_FILES_PREFIX}/callbacks.h
${INCLUDE_FILES_PREFIX}/enet.h
@@ -73,15 +73,15 @@ set(INCLUDE_FILES
)
set(SOURCE_FILES
- callbacks.c
- compress.c
- host.c
- list.c
- packet.c
- peer.c
- protocol.c
- unix.c
- win32.c)
+ enet/callbacks.c
+ enet/compress.c
+ enet/host.c
+ enet/list.c
+ enet/packet.c
+ enet/peer.c
+ enet/protocol.c
+ enet/unix.c
+ enet/win32.c)
source_group(include FILES ${INCLUDE_FILES})
source_group(source FILES ${SOURCE_FILES})
@@ -90,7 +90,7 @@ add_library(enet STATIC
${INCLUDE_FILES}
${SOURCE_FILES}
)
-target_include_directories(enet PUBLIC include)
+target_include_directories(enet PUBLIC enet/include)
dolphin_disable_warnings_msvc(enet)
add_library(enet::enet ALIAS enet)
diff --git a/Externals/enet/ChangeLog b/Externals/enet/ChangeLog
deleted file mode 100644
index e182076425..0000000000
--- a/Externals/enet/ChangeLog
+++ /dev/null
@@ -1,200 +0,0 @@
-ENet 1.3.17 (November 15, 2020):
-
-* fixes for sender getting too far ahead of receiver that can cause instability with reliable packets
-
-ENet 1.3.16 (September 8, 2020):
-
-* fix bug in unreliable fragment queuing
-* use single output queue for reliable and unreliable packets for saner ordering
-* revert experimental throttle changes that were less stable than prior algorithm
-
-ENet 1.3.15 (April 20, 2020):
-
-* quicker RTT initialization
-* use fractional precision for RTT calculations
-* fixes for packet throttle with low RTT variance
-* miscellaneous socket bug fixes
-
-ENet 1.3.14 (January 27, 2019):
-
-* bug fix for enet_peer_disconnect_later()
-* use getaddrinfo and getnameinfo where available
-* miscellaneous cleanups
-
-ENet 1.3.13 (April 30, 2015):
-
-* miscellaneous bug fixes
-* added premake and cmake support
-* miscellaneous documentation cleanups
-
-ENet 1.3.12 (April 24, 2014):
-
-* added maximumPacketSize and maximumWaitingData fields to ENetHost to limit the amount of
-data waiting to be delivered on a peer (beware that the default maximumPacketSize is
-32MB and should be set higher if desired as should maximumWaitingData)
-
-ENet 1.3.11 (December 26, 2013):
-
-* allow an ENetHost to connect to itself
-* fixed possible bug with disconnect notifications during connect attempts
-* fixed some preprocessor definition bugs
-
-ENet 1.3.10 (October 23, 2013);
-
-* doubled maximum reliable window size
-* fixed RCVTIMEO/SNDTIMEO socket options and also added NODELAY
-
-ENet 1.3.9 (August 19, 2013):
-
-* added duplicatePeers option to ENetHost which can limit the number of peers from duplicate IPs
-* added enet_socket_get_option() and ENET_SOCKOPT_ERROR
-* added enet_host_random_seed() platform stub
-
-ENet 1.3.8 (June 2, 2013):
-
-* added enet_linked_version() for checking the linked version
-* added enet_socket_get_address() for querying the local address of a socket
-* silenced some debugging prints unless ENET_DEBUG is defined during compilation
-* handle EINTR in enet_socket_wait() so that enet_host_service() doesn't propagate errors from signals
-* optimized enet_host_bandwidth_throttle() to be less expensive for large numbers of peers
-
-ENet 1.3.7 (March 6, 2013):
-
-* added ENET_PACKET_FLAG_SENT to indicate that a packet is being freed because it has been sent
-* added userData field to ENetPacket
-* changed how random seed is generated on Windows to avoid import warnings
-* fixed case where disconnects could be generated with no preceding connect event
-
-ENet 1.3.6 (December 11, 2012):
-
-* added support for intercept callback in ENetHost that can be used to process raw packets before ENet
-* added enet_socket_shutdown() for issuing shutdown on a socket
-* fixed enet_socket_connect() to not error on non-blocking connects
-* fixed bug in MTU negotiation during connections
-
-ENet 1.3.5 (July 31, 2012):
-
-* fixed bug in unreliable packet fragment queuing
-
-ENet 1.3.4 (May 29, 2012):
-
-* added enet_peer_ping_interval() for configuring per-peer ping intervals
-* added enet_peer_timeout() for configuring per-peer timeouts
-* added protocol packet size limits
-
-ENet 1.3.3 (June 28, 2011):
-
-* fixed bug with simultaneous disconnects not dispatching events
-
-ENet 1.3.2 (May 31, 2011):
-
-* added support for unreliable packet fragmenting via the packet flag
-ENET_PACKET_FLAG_UNRELIABLE_FRAGMENT
-* fixed regression in unreliable packet queuing
-* added check against received port to limit some forms of IP-spoofing
-
-ENet 1.3.1 (February 10, 2011):
-
-* fixed bug in tracking of reliable data in transit
-* reliable data window size now scales with the throttle
-* fixed bug in fragment length calculation when checksums are used
-
-ENet 1.3.0 (June 5, 2010):
-
-* enet_host_create() now requires the channel limit to be specified as
-a parameter
-* enet_host_connect() now accepts a data parameter which is supplied
-to the receiving receiving host in the event data field for a connect event
-* added an adaptive order-2 PPM range coder as a built-in compressor option
-which can be set with enet_host_compress_with_range_coder()
-* added support for packet compression configurable with a callback
-* improved session number handling to not rely on the packet checksum
-field, saving 4 bytes per packet unless the checksum option is used
-* removed the dependence on the rand callback for session number handling
-
-Caveats: This version is not protocol compatible with the 1.2 series or
-earlier. The enet_host_connect and enet_host_create API functions require
-supplying additional parameters.
-
-ENet 1.2.5 (June 28, 2011):
-
-* fixed bug with simultaneous disconnects not dispatching events
-
-ENet 1.2.4 (May 31, 2011):
-
-* fixed regression in unreliable packet queuing
-* added check against received port to limit some forms of IP-spoofing
-
-ENet 1.2.3 (February 10, 2011):
-
-* fixed bug in tracking reliable data in transit
-
-ENet 1.2.2 (June 5, 2010):
-
-* checksum functionality is now enabled by setting a checksum callback
-inside ENetHost instead of being a configure script option
-* added totalSentData, totalSentPackets, totalReceivedData, and
-totalReceivedPackets counters inside ENetHost for getting usage
-statistics
-* added enet_host_channel_limit() for limiting the maximum number of
-channels allowed by connected peers
-* now uses dispatch queues for event dispatch rather than potentially
-unscalable array walking
-* added no_memory callback that is called when a malloc attempt fails,
-such that if no_memory returns rather than aborts (the default behavior),
-then the error is propagated to the return value of the API calls
-* now uses packed attribute for protocol structures on platforms with
-strange alignment rules
-* improved autoconf build system contributed by Nathan Brink allowing
-for easier building as a shared library
-
-Caveats: If you were using the compile-time option that enabled checksums,
-make sure to set the checksum callback inside ENetHost to enet_crc32 to
-regain the old behavior. The ENetCallbacks structure has added new fields,
-so make sure to clear the structure to zero before use if
-using enet_initialize_with_callbacks().
-
-ENet 1.2.1 (November 12, 2009):
-
-* fixed bug that could cause disconnect events to be dropped
-* added thin wrapper around select() for portable usage
-* added ENET_SOCKOPT_REUSEADDR socket option
-* factored enet_socket_bind()/enet_socket_listen() out of enet_socket_create()
-* added contributed Code::Blocks build file
-
-ENet 1.2 (February 12, 2008):
-
-* fixed bug in VERIFY_CONNECT acknowledgement that could cause connect
-attempts to occasionally timeout
-* fixed acknowledgements to check both the outgoing and sent queues
-when removing acknowledged packets
-* fixed accidental bit rot in the MSVC project file
-* revised sequence number overflow handling to address some possible
-disconnect bugs
-* added enet_host_check_events() for getting only local queued events
-* factored out socket option setting into enet_socket_set_option() so
-that socket options are now set separately from enet_socket_create()
-
-Caveats: While this release is superficially protocol compatible with 1.1,
-differences in the sequence number overflow handling can potentially cause
-random disconnects.
-
-ENet 1.1 (June 6, 2007):
-
-* optional CRC32 just in case someone needs a stronger checksum than UDP
-provides (--enable-crc32 configure option)
-* the size of packet headers are half the size they used to be (so less
-overhead when sending small packets)
-* enet_peer_disconnect_later() that waits till all queued outgoing
-packets get sent before issuing an actual disconnect
-* freeCallback field in individual packets for notification of when a
-packet is about to be freed
-* ENET_PACKET_FLAG_NO_ALLOCATE for supplying pre-allocated data to a
-packet (can be used in concert with freeCallback to support some custom
-allocation schemes that the normal memory allocation callbacks would
-normally not allow)
-* enet_address_get_host_ip() for printing address numbers
-* promoted the enet_socket_*() functions to be part of the API now
-* a few stability/crash fixes
-
-
diff --git a/Externals/enet/Doxyfile b/Externals/enet/Doxyfile
deleted file mode 100644
index 6b4d06fb29..0000000000
--- a/Externals/enet/Doxyfile
+++ /dev/null
@@ -1,2303 +0,0 @@
-# Doxyfile 1.8.6
-
-# This file describes the settings to be used by the documentation system
-# doxygen (www.doxygen.org) for a project.
-#
-# All text after a double hash (##) is considered a comment and is placed in
-# front of the TAG it is preceding.
-#
-# All text after a single hash (#) is considered a comment and will be ignored.
-# The format is:
-# TAG = value [value, ...]
-# For lists, items can also be appended using:
-# TAG += value [value, ...]
-# Values that contain spaces should be placed between quotes (\" \").
-
-#---------------------------------------------------------------------------
-# Project related configuration options
-#---------------------------------------------------------------------------
-
-# This tag specifies the encoding used for all characters in the config file
-# that follow. The default is UTF-8 which is also the encoding used for all text
-# before the first occurrence of this tag. Doxygen uses libiconv (or the iconv
-# built into libc) for the transcoding. See http://www.gnu.org/software/libiconv
-# for the list of possible encodings.
-# The default value is: UTF-8.
-
-DOXYFILE_ENCODING = UTF-8
-
-# The PROJECT_NAME tag is a single word (or a sequence of words surrounded by
-# double-quotes, unless you are using Doxywizard) that should identify the
-# project for which the documentation is generated. This name is used in the
-# title of most generated pages and in a few other places.
-# The default value is: My Project.
-
-PROJECT_NAME = "ENet"
-
-# The PROJECT_NUMBER tag can be used to enter a project or revision number. This
-# could be handy for archiving the generated documentation or if some version
-# control system is used.
-
-PROJECT_NUMBER = v1.3.17
-
-# Using the PROJECT_BRIEF tag one can provide an optional one line description
-# for a project that appears at the top of each page and should give viewer a
-# quick idea about the purpose of the project. Keep the description short.
-
-PROJECT_BRIEF = "Reliable UDP networking library"
-
-# With the PROJECT_LOGO tag one can specify an logo or icon that is included in
-# the documentation. The maximum height of the logo should not exceed 55 pixels
-# and the maximum width should not exceed 200 pixels. Doxygen will copy the logo
-# to the output directory.
-
-PROJECT_LOGO =
-
-# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) path
-# into which the generated documentation will be written. If a relative path is
-# entered, it will be relative to the location where doxygen was started. If
-# left blank the current directory will be used.
-
-OUTPUT_DIRECTORY = docs
-
-# If the CREATE_SUBDIRS tag is set to YES, then doxygen will create 4096 sub-
-# directories (in 2 levels) under the output directory of each output format and
-# will distribute the generated files over these directories. Enabling this
-# option can be useful when feeding doxygen a huge amount of source files, where
-# putting all generated files in the same directory would otherwise causes
-# performance problems for the file system.
-# The default value is: NO.
-
-CREATE_SUBDIRS = NO
-
-# The OUTPUT_LANGUAGE tag is used to specify the language in which all
-# documentation generated by doxygen is written. Doxygen will use this
-# information to generate all constant output in the proper language.
-# Possible values are: Afrikaans, Arabic, Armenian, Brazilian, Catalan, Chinese,
-# Chinese-Traditional, Croatian, Czech, Danish, Dutch, English (United States),
-# Esperanto, Farsi (Persian), Finnish, French, German, Greek, Hungarian,
-# Indonesian, Italian, Japanese, Japanese-en (Japanese with English messages),
-# Korean, Korean-en (Korean with English messages), Latvian, Lithuanian,
-# Macedonian, Norwegian, Persian (Farsi), Polish, Portuguese, Romanian, Russian,
-# Serbian, Serbian-Cyrillic, Slovak, Slovene, Spanish, Swedish, Turkish,
-# Ukrainian and Vietnamese.
-# The default value is: English.
-
-OUTPUT_LANGUAGE = English
-
-# If the BRIEF_MEMBER_DESC tag is set to YES doxygen will include brief member
-# descriptions after the members that are listed in the file and class
-# documentation (similar to Javadoc). Set to NO to disable this.
-# The default value is: YES.
-
-BRIEF_MEMBER_DESC = YES
-
-# If the REPEAT_BRIEF tag is set to YES doxygen will prepend the brief
-# description of a member or function before the detailed description
-#
-# Note: If both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the
-# brief descriptions will be completely suppressed.
-# The default value is: YES.
-
-REPEAT_BRIEF = YES
-
-# This tag implements a quasi-intelligent brief description abbreviator that is
-# used to form the text in various listings. Each string in this list, if found
-# as the leading text of the brief description, will be stripped from the text
-# and the result, after processing the whole list, is used as the annotated
-# text. Otherwise, the brief description is used as-is. If left blank, the
-# following values are used ($name is automatically replaced with the name of
-# the entity):The $name class, The $name widget, The $name file, is, provides,
-# specifies, contains, represents, a, an and the.
-
-ABBREVIATE_BRIEF =
-
-# If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then
-# doxygen will generate a detailed section even if there is only a brief
-# description.
-# The default value is: NO.
-
-ALWAYS_DETAILED_SEC = YES
-
-# If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all
-# inherited members of a class in the documentation of that class as if those
-# members were ordinary class members. Constructors, destructors and assignment
-# operators of the base classes will not be shown.
-# The default value is: NO.
-
-INLINE_INHERITED_MEMB = YES
-
-# If the FULL_PATH_NAMES tag is set to YES doxygen will prepend the full path
-# before files name in the file list and in the header files. If set to NO the
-# shortest path that makes the file name unique will be used
-# The default value is: YES.
-
-FULL_PATH_NAMES = YES
-
-# The STRIP_FROM_PATH tag can be used to strip a user-defined part of the path.
-# Stripping is only done if one of the specified strings matches the left-hand
-# part of the path. The tag can be used to show relative paths in the file list.
-# If left blank the directory from which doxygen is run is used as the path to
-# strip.
-#
-# Note that you can specify absolute paths here, but also relative paths, which
-# will be relative from the directory where doxygen is started.
-# This tag requires that the tag FULL_PATH_NAMES is set to YES.
-
-STRIP_FROM_PATH =
-
-# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of the
-# path mentioned in the documentation of a class, which tells the reader which
-# header file to include in order to use a class. If left blank only the name of
-# the header file containing the class definition is used. Otherwise one should
-# specify the list of include paths that are normally passed to the compiler
-# using the -I flag.
-
-STRIP_FROM_INC_PATH =
-
-# If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter (but
-# less readable) file names. This can be useful is your file systems doesn't
-# support long names like on DOS, Mac, or CD-ROM.
-# The default value is: NO.
-
-SHORT_NAMES = NO
-
-# If the JAVADOC_AUTOBRIEF tag is set to YES then doxygen will interpret the
-# first line (until the first dot) of a Javadoc-style comment as the brief
-# description. If set to NO, the Javadoc-style will behave just like regular Qt-
-# style comments (thus requiring an explicit @brief command for a brief
-# description.)
-# The default value is: NO.
-
-JAVADOC_AUTOBRIEF = YES
-
-# If the QT_AUTOBRIEF tag is set to YES then doxygen will interpret the first
-# line (until the first dot) of a Qt-style comment as the brief description. If
-# set to NO, the Qt-style will behave just like regular Qt-style comments (thus
-# requiring an explicit \brief command for a brief description.)
-# The default value is: NO.
-
-QT_AUTOBRIEF = NO
-
-# The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make doxygen treat a
-# multi-line C++ special comment block (i.e. a block of //! or /// comments) as
-# a brief description. This used to be the default behavior. The new default is
-# to treat a multi-line C++ comment block as a detailed description. Set this
-# tag to YES if you prefer the old behavior instead.
-#
-# Note that setting this tag to YES also means that rational rose comments are
-# not recognized any more.
-# The default value is: NO.
-
-MULTILINE_CPP_IS_BRIEF = NO
-
-# If the INHERIT_DOCS tag is set to YES then an undocumented member inherits the
-# documentation from any documented member that it re-implements.
-# The default value is: YES.
-
-INHERIT_DOCS = YES
-
-# If the SEPARATE_MEMBER_PAGES tag is set to YES, then doxygen will produce a
-# new page for each member. If set to NO, the documentation of a member will be
-# part of the file/class/namespace that contains it.
-# The default value is: NO.
-
-SEPARATE_MEMBER_PAGES = NO
-
-# The TAB_SIZE tag can be used to set the number of spaces in a tab. Doxygen
-# uses this value to replace tabs by spaces in code fragments.
-# Minimum value: 1, maximum value: 16, default value: 4.
-
-TAB_SIZE = 4
-
-# This tag can be used to specify a number of aliases that act as commands in
-# the documentation. An alias has the form:
-# name=value
-# For example adding
-# "sideeffect=@par Side Effects:\n"
-# will allow you to put the command \sideeffect (or @sideeffect) in the
-# documentation, which will result in a user-defined paragraph with heading
-# "Side Effects:". You can put \n's in the value part of an alias to insert
-# newlines.
-
-ALIASES =
-
-# This tag can be used to specify a number of word-keyword mappings (TCL only).
-# A mapping has the form "name=value". For example adding "class=itcl::class"
-# will allow you to use the command class in the itcl::class meaning.
-
-TCL_SUBST =
-
-# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C sources
-# only. Doxygen will then generate output that is more tailored for C. For
-# instance, some of the names that are used will be different. The list of all
-# members will be omitted, etc.
-# The default value is: NO.
-
-OPTIMIZE_OUTPUT_FOR_C = YES
-
-# Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java or
-# Python sources only. Doxygen will then generate output that is more tailored
-# for that language. For instance, namespaces will be presented as packages,
-# qualified scopes will look different, etc.
-# The default value is: NO.
-
-OPTIMIZE_OUTPUT_JAVA = NO
-
-# Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran
-# sources. Doxygen will then generate output that is tailored for Fortran.
-# The default value is: NO.
-
-OPTIMIZE_FOR_FORTRAN = NO
-
-# Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL
-# sources. Doxygen will then generate output that is tailored for VHDL.
-# The default value is: NO.
-
-OPTIMIZE_OUTPUT_VHDL = NO
-
-# Doxygen selects the parser to use depending on the extension of the files it
-# parses. With this tag you can assign which parser to use for a given
-# extension. Doxygen has a built-in mapping, but you can override or extend it
-# using this tag. The format is ext=language, where ext is a file extension, and
-# language is one of the parsers supported by doxygen: IDL, Java, Javascript,
-# C#, C, C++, D, PHP, Objective-C, Python, Fortran, VHDL. For instance to make
-# doxygen treat .inc files as Fortran files (default is PHP), and .f files as C
-# (default is Fortran), use: inc=Fortran f=C.
-#
-# Note For files without extension you can use no_extension as a placeholder.
-#
-# Note that for custom extensions you also need to set FILE_PATTERNS otherwise
-# the files are not read by doxygen.
-
-EXTENSION_MAPPING =
-
-# If the MARKDOWN_SUPPORT tag is enabled then doxygen pre-processes all comments
-# according to the Markdown format, which allows for more readable
-# documentation. See http://daringfireball.net/projects/markdown/ for details.
-# The output of markdown processing is further processed by doxygen, so you can
-# mix doxygen, HTML, and XML commands with Markdown formatting. Disable only in
-# case of backward compatibilities issues.
-# The default value is: YES.
-
-MARKDOWN_SUPPORT = YES
-
-# When enabled doxygen tries to link words that correspond to documented
-# classes, or namespaces to their corresponding documentation. Such a link can
-# be prevented in individual cases by by putting a % sign in front of the word
-# or globally by setting AUTOLINK_SUPPORT to NO.
-# The default value is: YES.
-
-AUTOLINK_SUPPORT = YES
-
-# If you use STL classes (i.e. std::string, std::vector, etc.) but do not want
-# to include (a tag file for) the STL sources as input, then you should set this
-# tag to YES in order to let doxygen match functions declarations and
-# definitions whose arguments contain STL classes (e.g. func(std::string);
-# versus func(std::string) {}). This also make the inheritance and collaboration
-# diagrams that involve STL classes more complete and accurate.
-# The default value is: NO.
-
-BUILTIN_STL_SUPPORT = NO
-
-# If you use Microsoft's C++/CLI language, you should set this option to YES to
-# enable parsing support.
-# The default value is: NO.
-
-CPP_CLI_SUPPORT = NO
-
-# Set the SIP_SUPPORT tag to YES if your project consists of sip (see:
-# http://www.riverbankcomputing.co.uk/software/sip/intro) sources only. Doxygen
-# will parse them like normal C++ but will assume all classes use public instead
-# of private inheritance when no explicit protection keyword is present.
-# The default value is: NO.
-
-SIP_SUPPORT = NO
-
-# For Microsoft's IDL there are propget and propput attributes to indicate
-# getter and setter methods for a property. Setting this option to YES will make
-# doxygen to replace the get and set methods by a property in the documentation.
-# This will only work if the methods are indeed getting or setting a simple
-# type. If this is not the case, or you want to show the methods anyway, you
-# should set this option to NO.
-# The default value is: YES.
-
-IDL_PROPERTY_SUPPORT = YES
-
-# If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC
-# tag is set to YES, then doxygen will reuse the documentation of the first
-# member in the group (if any) for the other members of the group. By default
-# all members of a group must be documented explicitly.
-# The default value is: NO.
-
-DISTRIBUTE_GROUP_DOC = YES
-
-# Set the SUBGROUPING tag to YES to allow class member groups of the same type
-# (for instance a group of public functions) to be put as a subgroup of that
-# type (e.g. under the Public Functions section). Set it to NO to prevent
-# subgrouping. Alternatively, this can be done per class using the
-# \nosubgrouping command.
-# The default value is: YES.
-
-SUBGROUPING = YES
-
-# When the INLINE_GROUPED_CLASSES tag is set to YES, classes, structs and unions
-# are shown inside the group in which they are included (e.g. using \ingroup)
-# instead of on a separate page (for HTML and Man pages) or section (for LaTeX
-# and RTF).
-#
-# Note that this feature does not work in combination with
-# SEPARATE_MEMBER_PAGES.
-# The default value is: NO.
-
-INLINE_GROUPED_CLASSES = YES
-
-# When the INLINE_SIMPLE_STRUCTS tag is set to YES, structs, classes, and unions
-# with only public data fields or simple typedef fields will be shown inline in
-# the documentation of the scope in which they are defined (i.e. file,
-# namespace, or group documentation), provided this scope is documented. If set
-# to NO, structs, classes, and unions are shown on a separate page (for HTML and
-# Man pages) or section (for LaTeX and RTF).
-# The default value is: NO.
-
-INLINE_SIMPLE_STRUCTS = NO
-
-# When TYPEDEF_HIDES_STRUCT tag is enabled, a typedef of a struct, union, or
-# enum is documented as struct, union, or enum with the name of the typedef. So
-# typedef struct TypeS {} TypeT, will appear in the documentation as a struct
-# with name TypeT. When disabled the typedef will appear as a member of a file,
-# namespace, or class. And the struct will be named TypeS. This can typically be
-# useful for C code in case the coding convention dictates that all compound
-# types are typedef'ed and only the typedef is referenced, never the tag name.
-# The default value is: NO.
-
-TYPEDEF_HIDES_STRUCT = YES
-
-# The size of the symbol lookup cache can be set using LOOKUP_CACHE_SIZE. This
-# cache is used to resolve symbols given their name and scope. Since this can be
-# an expensive process and often the same symbol appears multiple times in the
-# code, doxygen keeps a cache of pre-resolved symbols. If the cache is too small
-# doxygen will become slower. If the cache is too large, memory is wasted. The
-# cache size is given by this formula: 2^(16+LOOKUP_CACHE_SIZE). The valid range
-# is 0..9, the default is 0, corresponding to a cache size of 2^16=65536
-# symbols. At the end of a run doxygen will report the cache usage and suggest
-# the optimal cache size from a speed point of view.
-# Minimum value: 0, maximum value: 9, default value: 0.
-
-LOOKUP_CACHE_SIZE = 0
-
-#---------------------------------------------------------------------------
-# Build related configuration options
-#---------------------------------------------------------------------------
-
-# If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in
-# documentation are documented, even if no documentation was available. Private
-# class members and static file members will be hidden unless the
-# EXTRACT_PRIVATE respectively EXTRACT_STATIC tags are set to YES.
-# Note: This will also disable the warnings about undocumented members that are
-# normally produced when WARNINGS is set to YES.
-# The default value is: NO.
-
-EXTRACT_ALL = YES
-
-# If the EXTRACT_PRIVATE tag is set to YES all private members of a class will
-# be included in the documentation.
-# The default value is: NO.
-
-EXTRACT_PRIVATE = NO
-
-# If the EXTRACT_PACKAGE tag is set to YES all members with package or internal
-# scope will be included in the documentation.
-# The default value is: NO.
-
-EXTRACT_PACKAGE = NO
-
-# If the EXTRACT_STATIC tag is set to YES all static members of a file will be
-# included in the documentation.
-# The default value is: NO.
-
-EXTRACT_STATIC = NO
-
-# If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs) defined
-# locally in source files will be included in the documentation. If set to NO
-# only classes defined in header files are included. Does not have any effect
-# for Java sources.
-# The default value is: YES.
-
-EXTRACT_LOCAL_CLASSES = NO
-
-# This flag is only useful for Objective-C code. When set to YES local methods,
-# which are defined in the implementation section but not in the interface are
-# included in the documentation. If set to NO only methods in the interface are
-# included.
-# The default value is: NO.
-
-EXTRACT_LOCAL_METHODS = NO
-
-# If this flag is set to YES, the members of anonymous namespaces will be
-# extracted and appear in the documentation as a namespace called
-# 'anonymous_namespace{file}', where file will be replaced with the base name of
-# the file that contains the anonymous namespace. By default anonymous namespace
-# are hidden.
-# The default value is: NO.
-
-EXTRACT_ANON_NSPACES = NO
-
-# If the HIDE_UNDOC_MEMBERS tag is set to YES, doxygen will hide all
-# undocumented members inside documented classes or files. If set to NO these
-# members will be included in the various overviews, but no documentation
-# section is generated. This option has no effect if EXTRACT_ALL is enabled.
-# The default value is: NO.
-
-HIDE_UNDOC_MEMBERS = YES
-
-# If the HIDE_UNDOC_CLASSES tag is set to YES, doxygen will hide all
-# undocumented classes that are normally visible in the class hierarchy. If set
-# to NO these classes will be included in the various overviews. This option has
-# no effect if EXTRACT_ALL is enabled.
-# The default value is: NO.
-
-HIDE_UNDOC_CLASSES = YES
-
-# If the HIDE_FRIEND_COMPOUNDS tag is set to YES, doxygen will hide all friend
-# (class|struct|union) declarations. If set to NO these declarations will be
-# included in the documentation.
-# The default value is: NO.
-
-HIDE_FRIEND_COMPOUNDS = NO
-
-# If the HIDE_IN_BODY_DOCS tag is set to YES, doxygen will hide any
-# documentation blocks found inside the body of a function. If set to NO these
-# blocks will be appended to the function's detailed documentation block.
-# The default value is: NO.
-
-HIDE_IN_BODY_DOCS = NO
-
-# The INTERNAL_DOCS tag determines if documentation that is typed after a
-# \internal command is included. If the tag is set to NO then the documentation
-# will be excluded. Set it to YES to include the internal documentation.
-# The default value is: NO.
-
-INTERNAL_DOCS = NO
-
-# If the CASE_SENSE_NAMES tag is set to NO then doxygen will only generate file
-# names in lower-case letters. If set to YES upper-case letters are also
-# allowed. This is useful if you have classes or files whose names only differ
-# in case and if your file system supports case sensitive file names. Windows
-# and Mac users are advised to set this option to NO.
-# The default value is: system dependent.
-
-CASE_SENSE_NAMES = YES
-
-# If the HIDE_SCOPE_NAMES tag is set to NO then doxygen will show members with
-# their full class and namespace scopes in the documentation. If set to YES the
-# scope will be hidden.
-# The default value is: NO.
-
-HIDE_SCOPE_NAMES = NO
-
-# If the SHOW_INCLUDE_FILES tag is set to YES then doxygen will put a list of
-# the files that are included by a file in the documentation of that file.
-# The default value is: YES.
-
-SHOW_INCLUDE_FILES = YES
-
-# If the SHOW_GROUPED_MEMB_INC tag is set to YES then Doxygen will add for each
-# grouped member an include statement to the documentation, telling the reader
-# which file to include in order to use the member.
-# The default value is: NO.
-
-SHOW_GROUPED_MEMB_INC = YES
-
-# If the FORCE_LOCAL_INCLUDES tag is set to YES then doxygen will list include
-# files with double quotes in the documentation rather than with sharp brackets.
-# The default value is: NO.
-
-FORCE_LOCAL_INCLUDES = NO
-
-# If the INLINE_INFO tag is set to YES then a tag [inline] is inserted in the
-# documentation for inline members.
-# The default value is: YES.
-
-INLINE_INFO = YES
-
-# If the SORT_MEMBER_DOCS tag is set to YES then doxygen will sort the
-# (detailed) documentation of file and class members alphabetically by member
-# name. If set to NO the members will appear in declaration order.
-# The default value is: YES.
-
-SORT_MEMBER_DOCS = YES
-
-# If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the brief
-# descriptions of file, namespace and class members alphabetically by member
-# name. If set to NO the members will appear in declaration order. Note that
-# this will also influence the order of the classes in the class list.
-# The default value is: NO.
-
-SORT_BRIEF_DOCS = YES
-
-# If the SORT_MEMBERS_CTORS_1ST tag is set to YES then doxygen will sort the
-# (brief and detailed) documentation of class members so that constructors and
-# destructors are listed first. If set to NO the constructors will appear in the
-# respective orders defined by SORT_BRIEF_DOCS and SORT_MEMBER_DOCS.
-# Note: If SORT_BRIEF_DOCS is set to NO this option is ignored for sorting brief
-# member documentation.
-# Note: If SORT_MEMBER_DOCS is set to NO this option is ignored for sorting
-# detailed member documentation.
-# The default value is: NO.
-
-SORT_MEMBERS_CTORS_1ST = YES
-
-# If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the hierarchy
-# of group names into alphabetical order. If set to NO the group names will
-# appear in their defined order.
-# The default value is: NO.
-
-SORT_GROUP_NAMES = YES
-
-# If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be sorted by
-# fully-qualified names, including namespaces. If set to NO, the class list will
-# be sorted only by class name, not including the namespace part.
-# Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES.
-# Note: This option applies only to the class list, not to the alphabetical
-# list.
-# The default value is: NO.
-
-SORT_BY_SCOPE_NAME = YES
-
-# If the STRICT_PROTO_MATCHING option is enabled and doxygen fails to do proper
-# type resolution of all parameters of a function it will reject a match between
-# the prototype and the implementation of a member function even if there is
-# only one candidate or it is obvious which candidate to choose by doing a
-# simple string match. By disabling STRICT_PROTO_MATCHING doxygen will still
-# accept a match between prototype and implementation in such cases.
-# The default value is: NO.
-
-STRICT_PROTO_MATCHING = NO
-
-# The GENERATE_TODOLIST tag can be used to enable ( YES) or disable ( NO) the
-# todo list. This list is created by putting \todo commands in the
-# documentation.
-# The default value is: YES.
-
-GENERATE_TODOLIST = YES
-
-# The GENERATE_TESTLIST tag can be used to enable ( YES) or disable ( NO) the
-# test list. This list is created by putting \test commands in the
-# documentation.
-# The default value is: YES.
-
-GENERATE_TESTLIST = YES
-
-# The GENERATE_BUGLIST tag can be used to enable ( YES) or disable ( NO) the bug
-# list. This list is created by putting \bug commands in the documentation.
-# The default value is: YES.
-
-GENERATE_BUGLIST = YES
-
-# The GENERATE_DEPRECATEDLIST tag can be used to enable ( YES) or disable ( NO)
-# the deprecated list. This list is created by putting \deprecated commands in
-# the documentation.
-# The default value is: YES.
-
-GENERATE_DEPRECATEDLIST= YES
-
-# The ENABLED_SECTIONS tag can be used to enable conditional documentation
-# sections, marked by \if ... \endif and \cond
-# ... \endcond blocks.
-
-ENABLED_SECTIONS =
-
-# The MAX_INITIALIZER_LINES tag determines the maximum number of lines that the
-# initial value of a variable or macro / define can have for it to appear in the
-# documentation. If the initializer consists of more lines than specified here
-# it will be hidden. Use a value of 0 to hide initializers completely. The
-# appearance of the value of individual variables and macros / defines can be
-# controlled using \showinitializer or \hideinitializer command in the
-# documentation regardless of this setting.
-# Minimum value: 0, maximum value: 10000, default value: 30.
-
-MAX_INITIALIZER_LINES = 30
-
-# Set the SHOW_USED_FILES tag to NO to disable the list of files generated at
-# the bottom of the documentation of classes and structs. If set to YES the list
-# will mention the files that were used to generate the documentation.
-# The default value is: YES.
-
-SHOW_USED_FILES = YES
-
-# Set the SHOW_FILES tag to NO to disable the generation of the Files page. This
-# will remove the Files entry from the Quick Index and from the Folder Tree View
-# (if specified).
-# The default value is: YES.
-
-SHOW_FILES = YES
-
-# Set the SHOW_NAMESPACES tag to NO to disable the generation of the Namespaces
-# page. This will remove the Namespaces entry from the Quick Index and from the
-# Folder Tree View (if specified).
-# The default value is: YES.
-
-SHOW_NAMESPACES = YES
-
-# The FILE_VERSION_FILTER tag can be used to specify a program or script that
-# doxygen should invoke to get the current version for each file (typically from
-# the version control system). Doxygen will invoke the program by executing (via
-# popen()) the command command input-file, where command is the value of the
-# FILE_VERSION_FILTER tag, and input-file is the name of an input file provided
-# by doxygen. Whatever the program writes to standard output is used as the file
-# version. For an example see the documentation.
-
-FILE_VERSION_FILTER =
-
-# The LAYOUT_FILE tag can be used to specify a layout file which will be parsed
-# by doxygen. The layout file controls the global structure of the generated
-# output files in an output format independent way. To create the layout file
-# that represents doxygen's defaults, run doxygen with the -l option. You can
-# optionally specify a file name after the option, if omitted DoxygenLayout.xml
-# will be used as the name of the layout file.
-#
-# Note that if you run doxygen from a directory containing a file called
-# DoxygenLayout.xml, doxygen will parse it automatically even if the LAYOUT_FILE
-# tag is left empty.
-
-LAYOUT_FILE = DoxygenLayout.xml
-
-# The CITE_BIB_FILES tag can be used to specify one or more bib files containing
-# the reference definitions. This must be a list of .bib files. The .bib
-# extension is automatically appended if omitted. This requires the bibtex tool
-# to be installed. See also http://en.wikipedia.org/wiki/BibTeX for more info.
-# For LaTeX the style of the bibliography can be controlled using
-# LATEX_BIB_STYLE. To use this feature you need bibtex and perl available in the
-# search path. Do not use file names with spaces, bibtex cannot handle them. See
-# also \cite for info how to create references.
-
-CITE_BIB_FILES =
-
-#---------------------------------------------------------------------------
-# Configuration options related to warning and progress messages
-#---------------------------------------------------------------------------
-
-# The QUIET tag can be used to turn on/off the messages that are generated to
-# standard output by doxygen. If QUIET is set to YES this implies that the
-# messages are off.
-# The default value is: NO.
-
-QUIET = NO
-
-# The WARNINGS tag can be used to turn on/off the warning messages that are
-# generated to standard error ( stderr) by doxygen. If WARNINGS is set to YES
-# this implies that the warnings are on.
-#
-# Tip: Turn warnings on while writing the documentation.
-# The default value is: YES.
-
-WARNINGS = YES
-
-# If the WARN_IF_UNDOCUMENTED tag is set to YES, then doxygen will generate
-# warnings for undocumented members. If EXTRACT_ALL is set to YES then this flag
-# will automatically be disabled.
-# The default value is: YES.
-
-WARN_IF_UNDOCUMENTED = YES
-
-# If the WARN_IF_DOC_ERROR tag is set to YES, doxygen will generate warnings for
-# potential errors in the documentation, such as not documenting some parameters
-# in a documented function, or documenting parameters that don't exist or using
-# markup commands wrongly.
-# The default value is: YES.
-
-WARN_IF_DOC_ERROR = YES
-
-# This WARN_NO_PARAMDOC option can be enabled to get warnings for functions that
-# are documented, but have no documentation for their parameters or return
-# value. If set to NO doxygen will only warn about wrong or incomplete parameter
-# documentation, but not about the absence of documentation.
-# The default value is: NO.
-
-WARN_NO_PARAMDOC = YES
-
-# The WARN_FORMAT tag determines the format of the warning messages that doxygen
-# can produce. The string should contain the $file, $line, and $text tags, which
-# will be replaced by the file and line number from which the warning originated
-# and the warning text. Optionally the format may contain $version, which will
-# be replaced by the version of the file (if it could be obtained via
-# FILE_VERSION_FILTER)
-# The default value is: $file:$line: $text.
-
-WARN_FORMAT = "$file:$line: $text"
-
-# The WARN_LOGFILE tag can be used to specify a file to which warning and error
-# messages should be written. If left blank the output is written to standard
-# error (stderr).
-
-WARN_LOGFILE =
-
-#---------------------------------------------------------------------------
-# Configuration options related to the input files
-#---------------------------------------------------------------------------
-
-# The INPUT tag is used to specify the files and/or directories that contain
-# documented source files. You may enter file names like myfile.cpp or
-# directories like /usr/src/myproject. Separate the files or directories with
-# spaces.
-# Note: If this tag is empty the current directory is searched.
-
-INPUT =
-
-# This tag can be used to specify the character encoding of the source files
-# that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses
-# libiconv (or the iconv built into libc) for the transcoding. See the libiconv
-# documentation (see: http://www.gnu.org/software/libiconv) for the list of
-# possible encodings.
-# The default value is: UTF-8.
-
-INPUT_ENCODING = UTF-8
-
-# If the value of the INPUT tag contains directories, you can use the
-# FILE_PATTERNS tag to specify one or more wildcard patterns (like *.cpp and
-# *.h) to filter out the source-files in the directories. If left blank the
-# following patterns are tested:*.c, *.cc, *.cxx, *.cpp, *.c++, *.java, *.ii,
-# *.ixx, *.ipp, *.i++, *.inl, *.idl, *.ddl, *.odl, *.h, *.hh, *.hxx, *.hpp,
-# *.h++, *.cs, *.d, *.php, *.php4, *.php5, *.phtml, *.inc, *.m, *.markdown,
-# *.md, *.mm, *.dox, *.py, *.f90, *.f, *.for, *.tcl, *.vhd, *.vhdl, *.ucf,
-# *.qsf, *.as and *.js.
-
-FILE_PATTERNS = *.c *.h *.dox
-
-# The RECURSIVE tag can be used to specify whether or not subdirectories should
-# be searched for input files as well.
-# The default value is: NO.
-
-RECURSIVE = YES
-
-# The EXCLUDE tag can be used to specify files and/or directories that should be
-# excluded from the INPUT source files. This way you can easily exclude a
-# subdirectory from a directory tree whose root is specified with the INPUT tag.
-#
-# Note that relative paths are relative to the directory from which doxygen is
-# run.
-
-EXCLUDE =
-
-# The EXCLUDE_SYMLINKS tag can be used to select whether or not files or
-# directories that are symbolic links (a Unix file system feature) are excluded
-# from the input.
-# The default value is: NO.
-
-EXCLUDE_SYMLINKS = NO
-
-# If the value of the INPUT tag contains directories, you can use the
-# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude
-# certain files from those directories.
-#
-# Note that the wildcards are matched against the file with absolute path, so to
-# exclude all test directories for example use the pattern */test/*
-
-EXCLUDE_PATTERNS =
-
-# The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names
-# (namespaces, classes, functions, etc.) that should be excluded from the
-# output. The symbol name can be a fully qualified name, a word, or if the
-# wildcard * is used, a substring. Examples: ANamespace, AClass,
-# AClass::ANamespace, ANamespace::*Test
-#
-# Note that the wildcards are matched against the file with absolute path, so to
-# exclude all test directories use the pattern */test/*
-
-EXCLUDE_SYMBOLS =
-
-# The EXAMPLE_PATH tag can be used to specify one or more files or directories
-# that contain example code fragments that are included (see the \include
-# command).
-
-EXAMPLE_PATH =
-
-# If the value of the EXAMPLE_PATH tag contains directories, you can use the
-# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp and
-# *.h) to filter out the source-files in the directories. If left blank all
-# files are included.
-
-EXAMPLE_PATTERNS =
-
-# If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be
-# searched for input files to be used with the \include or \dontinclude commands
-# irrespective of the value of the RECURSIVE tag.
-# The default value is: NO.
-
-EXAMPLE_RECURSIVE = NO
-
-# The IMAGE_PATH tag can be used to specify one or more files or directories
-# that contain images that are to be included in the documentation (see the
-# \image command).
-
-IMAGE_PATH = ${CMAKE_CURRENT_SOURCE_DIR}
-
-# The INPUT_FILTER tag can be used to specify a program that doxygen should
-# invoke to filter for each input file. Doxygen will invoke the filter program
-# by executing (via popen()) the command:
-#
-#
-#
-# where is the value of the INPUT_FILTER tag, and is the
-# name of an input file. Doxygen will then use the output that the filter
-# program writes to standard output. If FILTER_PATTERNS is specified, this tag
-# will be ignored.
-#
-# Note that the filter must not add or remove lines; it is applied before the
-# code is scanned, but not when the output code is generated. If lines are added
-# or removed, the anchors will not be placed correctly.
-
-INPUT_FILTER =
-
-# The FILTER_PATTERNS tag can be used to specify filters on a per file pattern
-# basis. Doxygen will compare the file name with each pattern and apply the
-# filter if there is a match. The filters are a list of the form: pattern=filter
-# (like *.cpp=my_cpp_filter). See INPUT_FILTER for further information on how
-# filters are used. If the FILTER_PATTERNS tag is empty or if none of the
-# patterns match the file name, INPUT_FILTER is applied.
-
-FILTER_PATTERNS =
-
-# If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using
-# INPUT_FILTER ) will also be used to filter the input files that are used for
-# producing the source files to browse (i.e. when SOURCE_BROWSER is set to YES).
-# The default value is: NO.
-
-FILTER_SOURCE_FILES = NO
-
-# The FILTER_SOURCE_PATTERNS tag can be used to specify source filters per file
-# pattern. A pattern will override the setting for FILTER_PATTERN (if any) and
-# it is also possible to disable source filtering for a specific pattern using
-# *.ext= (so without naming a filter).
-# This tag requires that the tag FILTER_SOURCE_FILES is set to YES.
-
-FILTER_SOURCE_PATTERNS =
-
-# If the USE_MDFILE_AS_MAINPAGE tag refers to the name of a markdown file that
-# is part of the input, its contents will be placed on the main page
-# (index.html). This can be useful if you have a project on for instance GitHub
-# and want to reuse the introduction page also for the doxygen output.
-
-USE_MDFILE_AS_MAINPAGE =
-
-#---------------------------------------------------------------------------
-# Configuration options related to source browsing
-#---------------------------------------------------------------------------
-
-# If the SOURCE_BROWSER tag is set to YES then a list of source files will be
-# generated. Documented entities will be cross-referenced with these sources.
-#
-# Note: To get rid of all source code in the generated output, make sure that
-# also VERBATIM_HEADERS is set to NO.
-# The default value is: NO.
-
-SOURCE_BROWSER = NO
-
-# Setting the INLINE_SOURCES tag to YES will include the body of functions,
-# classes and enums directly into the documentation.
-# The default value is: NO.
-
-INLINE_SOURCES = NO
-
-# Setting the STRIP_CODE_COMMENTS tag to YES will instruct doxygen to hide any
-# special comment blocks from generated source code fragments. Normal C, C++ and
-# Fortran comments will always remain visible.
-# The default value is: YES.
-
-STRIP_CODE_COMMENTS = YES
-
-# If the REFERENCED_BY_RELATION tag is set to YES then for each documented
-# function all documented functions referencing it will be listed.
-# The default value is: NO.
-
-REFERENCED_BY_RELATION = NO
-
-# If the REFERENCES_RELATION tag is set to YES then for each documented function
-# all documented entities called/used by that function will be listed.
-# The default value is: NO.
-
-REFERENCES_RELATION = NO
-
-# If the REFERENCES_LINK_SOURCE tag is set to YES and SOURCE_BROWSER tag is set
-# to YES, then the hyperlinks from functions in REFERENCES_RELATION and
-# REFERENCED_BY_RELATION lists will link to the source code. Otherwise they will
-# link to the documentation.
-# The default value is: YES.
-
-REFERENCES_LINK_SOURCE = NO
-
-# If SOURCE_TOOLTIPS is enabled (the default) then hovering a hyperlink in the
-# source code will show a tooltip with additional information such as prototype,
-# brief description and links to the definition and documentation. Since this
-# will make the HTML file larger and loading of large files a bit slower, you
-# can opt to disable this feature.
-# The default value is: YES.
-# This tag requires that the tag SOURCE_BROWSER is set to YES.
-
-SOURCE_TOOLTIPS = YES
-
-# If the USE_HTAGS tag is set to YES then the references to source code will
-# point to the HTML generated by the htags(1) tool instead of doxygen built-in
-# source browser. The htags tool is part of GNU's global source tagging system
-# (see http://www.gnu.org/software/global/global.html). You will need version
-# 4.8.6 or higher.
-#
-# To use it do the following:
-# - Install the latest version of global
-# - Enable SOURCE_BROWSER and USE_HTAGS in the config file
-# - Make sure the INPUT points to the root of the source tree
-# - Run doxygen as normal
-#
-# Doxygen will invoke htags (and that will in turn invoke gtags), so these
-# tools must be available from the command line (i.e. in the search path).
-#
-# The result: instead of the source browser generated by doxygen, the links to
-# source code will now point to the output of htags.
-# The default value is: NO.
-# This tag requires that the tag SOURCE_BROWSER is set to YES.
-
-USE_HTAGS = NO
-
-# If the VERBATIM_HEADERS tag is set the YES then doxygen will generate a
-# verbatim copy of the header file for each class for which an include is
-# specified. Set to NO to disable this.
-# See also: Section \class.
-# The default value is: YES.
-
-VERBATIM_HEADERS = NO
-
-#---------------------------------------------------------------------------
-# Configuration options related to the alphabetical class index
-#---------------------------------------------------------------------------
-
-# If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index of all
-# compounds will be generated. Enable this if the project contains a lot of
-# classes, structs, unions or interfaces.
-# The default value is: YES.
-
-ALPHABETICAL_INDEX = YES
-
-# The COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns in
-# which the alphabetical index list will be split.
-# Minimum value: 1, maximum value: 20, default value: 5.
-# This tag requires that the tag ALPHABETICAL_INDEX is set to YES.
-
-COLS_IN_ALPHA_INDEX = 1
-
-# In case all classes in a project start with a common prefix, all classes will
-# be put under the same header in the alphabetical index. The IGNORE_PREFIX tag
-# can be used to specify a prefix (or a list of prefixes) that should be ignored
-# while generating the index headers.
-# This tag requires that the tag ALPHABETICAL_INDEX is set to YES.
-
-IGNORE_PREFIX =
-
-#---------------------------------------------------------------------------
-# Configuration options related to the HTML output
-#---------------------------------------------------------------------------
-
-# If the GENERATE_HTML tag is set to YES doxygen will generate HTML output
-# The default value is: YES.
-
-GENERATE_HTML = YES
-
-# The HTML_OUTPUT tag is used to specify where the HTML docs will be put. If a
-# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of
-# it.
-# The default directory is: html.
-# This tag requires that the tag GENERATE_HTML is set to YES.
-
-HTML_OUTPUT = html
-
-# The HTML_FILE_EXTENSION tag can be used to specify the file extension for each
-# generated HTML page (for example: .htm, .php, .asp).
-# The default value is: .html.
-# This tag requires that the tag GENERATE_HTML is set to YES.
-
-HTML_FILE_EXTENSION = .html
-
-# The HTML_HEADER tag can be used to specify a user-defined HTML header file for
-# each generated HTML page. If the tag is left blank doxygen will generate a
-# standard header.
-#
-# To get valid HTML the header file that includes any scripts and style sheets
-# that doxygen needs, which is dependent on the configuration options used (e.g.
-# the setting GENERATE_TREEVIEW). It is highly recommended to start with a
-# default header using
-# doxygen -w html new_header.html new_footer.html new_stylesheet.css
-# YourConfigFile
-# and then modify the file new_header.html. See also section "Doxygen usage"
-# for information on how to generate the default header that doxygen normally
-# uses.
-# Note: The header is subject to change so you typically have to regenerate the
-# default header when upgrading to a newer version of doxygen. For a description
-# of the possible markers and block names see the documentation.
-# This tag requires that the tag GENERATE_HTML is set to YES.
-
-HTML_HEADER =
-
-# The HTML_FOOTER tag can be used to specify a user-defined HTML footer for each
-# generated HTML page. If the tag is left blank doxygen will generate a standard
-# footer. See HTML_HEADER for more information on how to generate a default
-# footer and what special commands can be used inside the footer. See also
-# section "Doxygen usage" for information on how to generate the default footer
-# that doxygen normally uses.
-# This tag requires that the tag GENERATE_HTML is set to YES.
-
-HTML_FOOTER =
-
-# The HTML_STYLESHEET tag can be used to specify a user-defined cascading style
-# sheet that is used by each HTML page. It can be used to fine-tune the look of
-# the HTML output. If left blank doxygen will generate a default style sheet.
-# See also section "Doxygen usage" for information on how to generate the style
-# sheet that doxygen normally uses.
-# Note: It is recommended to use HTML_EXTRA_STYLESHEET instead of this tag, as
-# it is more robust and this tag (HTML_STYLESHEET) will in the future become
-# obsolete.
-# This tag requires that the tag GENERATE_HTML is set to YES.
-
-HTML_STYLESHEET =
-
-# The HTML_EXTRA_STYLESHEET tag can be used to specify an additional user-
-# defined cascading style sheet that is included after the standard style sheets
-# created by doxygen. Using this option one can overrule certain style aspects.
-# This is preferred over using HTML_STYLESHEET since it does not replace the
-# standard style sheet and is therefor more robust against future updates.
-# Doxygen will copy the style sheet file to the output directory. For an example
-# see the documentation.
-# This tag requires that the tag GENERATE_HTML is set to YES.
-
-HTML_EXTRA_STYLESHEET =
-
-# The HTML_EXTRA_FILES tag can be used to specify one or more extra images or
-# other source files which should be copied to the HTML output directory. Note
-# that these files will be copied to the base HTML output directory. Use the
-# $relpath^ marker in the HTML_HEADER and/or HTML_FOOTER files to load these
-# files. In the HTML_STYLESHEET file, use the file name only. Also note that the
-# files will be copied as-is; there are no commands or markers available.
-# This tag requires that the tag GENERATE_HTML is set to YES.
-
-HTML_EXTRA_FILES =
-
-# The HTML_COLORSTYLE_HUE tag controls the color of the HTML output. Doxygen
-# will adjust the colors in the stylesheet and background images according to
-# this color. Hue is specified as an angle on a colorwheel, see
-# http://en.wikipedia.org/wiki/Hue for more information. For instance the value
-# 0 represents red, 60 is yellow, 120 is green, 180 is cyan, 240 is blue, 300
-# purple, and 360 is red again.
-# Minimum value: 0, maximum value: 359, default value: 220.
-# This tag requires that the tag GENERATE_HTML is set to YES.
-
-HTML_COLORSTYLE_HUE = 118
-
-# The HTML_COLORSTYLE_SAT tag controls the purity (or saturation) of the colors
-# in the HTML output. For a value of 0 the output will use grayscales only. A
-# value of 255 will produce the most vivid colors.
-# Minimum value: 0, maximum value: 255, default value: 100.
-# This tag requires that the tag GENERATE_HTML is set to YES.
-
-HTML_COLORSTYLE_SAT = 100
-
-# The HTML_COLORSTYLE_GAMMA tag controls the gamma correction applied to the
-# luminance component of the colors in the HTML output. Values below 100
-# gradually make the output lighter, whereas values above 100 make the output
-# darker. The value divided by 100 is the actual gamma applied, so 80 represents
-# a gamma of 0.8, The value 220 represents a gamma of 2.2, and 100 does not
-# change the gamma.
-# Minimum value: 40, maximum value: 240, default value: 80.
-# This tag requires that the tag GENERATE_HTML is set to YES.
-
-HTML_COLORSTYLE_GAMMA = 240
-
-# If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML
-# page will contain the date and time when the page was generated. Setting this
-# to NO can help when comparing the output of multiple runs.
-# The default value is: YES.
-# This tag requires that the tag GENERATE_HTML is set to YES.
-
-HTML_TIMESTAMP = YES
-
-# If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML
-# documentation will contain sections that can be hidden and shown after the
-# page has loaded.
-# The default value is: NO.
-# This tag requires that the tag GENERATE_HTML is set to YES.
-
-HTML_DYNAMIC_SECTIONS = NO
-
-# With HTML_INDEX_NUM_ENTRIES one can control the preferred number of entries
-# shown in the various tree structured indices initially; the user can expand
-# and collapse entries dynamically later on. Doxygen will expand the tree to
-# such a level that at most the specified number of entries are visible (unless
-# a fully collapsed tree already exceeds this amount). So setting the number of
-# entries 1 will produce a full collapsed tree by default. 0 is a special value
-# representing an infinite number of entries and will result in a full expanded
-# tree by default.
-# Minimum value: 0, maximum value: 9999, default value: 100.
-# This tag requires that the tag GENERATE_HTML is set to YES.
-
-HTML_INDEX_NUM_ENTRIES = 0
-
-# If the GENERATE_DOCSET tag is set to YES, additional index files will be
-# generated that can be used as input for Apple's Xcode 3 integrated development
-# environment (see: http://developer.apple.com/tools/xcode/), introduced with
-# OSX 10.5 (Leopard). To create a documentation set, doxygen will generate a
-# Makefile in the HTML output directory. Running make will produce the docset in
-# that directory and running make install will install the docset in
-# ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find it at
-# startup. See http://developer.apple.com/tools/creatingdocsetswithdoxygen.html
-# for more information.
-# The default value is: NO.
-# This tag requires that the tag GENERATE_HTML is set to YES.
-
-GENERATE_DOCSET = NO
-
-# This tag determines the name of the docset feed. A documentation feed provides
-# an umbrella under which multiple documentation sets from a single provider
-# (such as a company or product suite) can be grouped.
-# The default value is: Doxygen generated docs.
-# This tag requires that the tag GENERATE_DOCSET is set to YES.
-
-DOCSET_FEEDNAME = "Doxygen generated docs"
-
-# This tag specifies a string that should uniquely identify the documentation
-# set bundle. This should be a reverse domain-name style string, e.g.
-# com.mycompany.MyDocSet. Doxygen will append .docset to the name.
-# The default value is: org.doxygen.Project.
-# This tag requires that the tag GENERATE_DOCSET is set to YES.
-
-DOCSET_BUNDLE_ID = org.doxygen.Project
-
-# The DOCSET_PUBLISHER_ID tag specifies a string that should uniquely identify
-# the documentation publisher. This should be a reverse domain-name style
-# string, e.g. com.mycompany.MyDocSet.documentation.
-# The default value is: org.doxygen.Publisher.
-# This tag requires that the tag GENERATE_DOCSET is set to YES.
-
-DOCSET_PUBLISHER_ID = org.doxygen.Publisher
-
-# The DOCSET_PUBLISHER_NAME tag identifies the documentation publisher.
-# The default value is: Publisher.
-# This tag requires that the tag GENERATE_DOCSET is set to YES.
-
-DOCSET_PUBLISHER_NAME = Publisher
-
-# If the GENERATE_HTMLHELP tag is set to YES then doxygen generates three
-# additional HTML index files: index.hhp, index.hhc, and index.hhk. The
-# index.hhp is a project file that can be read by Microsoft's HTML Help Workshop
-# (see: http://www.microsoft.com/en-us/download/details.aspx?id=21138) on
-# Windows.
-#
-# The HTML Help Workshop contains a compiler that can convert all HTML output
-# generated by doxygen into a single compiled HTML file (.chm). Compiled HTML
-# files are now used as the Windows 98 help format, and will replace the old
-# Windows help format (.hlp) on all Windows platforms in the future. Compressed
-# HTML files also contain an index, a table of contents, and you can search for
-# words in the documentation. The HTML workshop also contains a viewer for
-# compressed HTML files.
-# The default value is: NO.
-# This tag requires that the tag GENERATE_HTML is set to YES.
-
-GENERATE_HTMLHELP = NO
-
-# The CHM_FILE tag can be used to specify the file name of the resulting .chm
-# file. You can add a path in front of the file if the result should not be
-# written to the html output directory.
-# This tag requires that the tag GENERATE_HTMLHELP is set to YES.
-
-CHM_FILE =
-
-# The HHC_LOCATION tag can be used to specify the location (absolute path
-# including file name) of the HTML help compiler ( hhc.exe). If non-empty
-# doxygen will try to run the HTML help compiler on the generated index.hhp.
-# The file has to be specified with full path.
-# This tag requires that the tag GENERATE_HTMLHELP is set to YES.
-
-HHC_LOCATION =
-
-# The GENERATE_CHI flag controls if a separate .chi index file is generated (
-# YES) or that it should be included in the master .chm file ( NO).
-# The default value is: NO.
-# This tag requires that the tag GENERATE_HTMLHELP is set to YES.
-
-GENERATE_CHI = NO
-
-# The CHM_INDEX_ENCODING is used to encode HtmlHelp index ( hhk), content ( hhc)
-# and project file content.
-# This tag requires that the tag GENERATE_HTMLHELP is set to YES.
-
-CHM_INDEX_ENCODING =
-
-# The BINARY_TOC flag controls whether a binary table of contents is generated (
-# YES) or a normal table of contents ( NO) in the .chm file.
-# The default value is: NO.
-# This tag requires that the tag GENERATE_HTMLHELP is set to YES.
-
-BINARY_TOC = NO
-
-# The TOC_EXPAND flag can be set to YES to add extra items for group members to
-# the table of contents of the HTML help documentation and to the tree view.
-# The default value is: NO.
-# This tag requires that the tag GENERATE_HTMLHELP is set to YES.
-
-TOC_EXPAND = YES
-
-# If the GENERATE_QHP tag is set to YES and both QHP_NAMESPACE and
-# QHP_VIRTUAL_FOLDER are set, an additional index file will be generated that
-# can be used as input for Qt's qhelpgenerator to generate a Qt Compressed Help
-# (.qch) of the generated HTML documentation.
-# The default value is: NO.
-# This tag requires that the tag GENERATE_HTML is set to YES.
-
-GENERATE_QHP = NO
-
-# If the QHG_LOCATION tag is specified, the QCH_FILE tag can be used to specify
-# the file name of the resulting .qch file. The path specified is relative to
-# the HTML output folder.
-# This tag requires that the tag GENERATE_QHP is set to YES.
-
-QCH_FILE =
-
-# The QHP_NAMESPACE tag specifies the namespace to use when generating Qt Help
-# Project output. For more information please see Qt Help Project / Namespace
-# (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#namespace).
-# The default value is: org.doxygen.Project.
-# This tag requires that the tag GENERATE_QHP is set to YES.
-
-QHP_NAMESPACE = org.doxygen.Project
-
-# The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating Qt
-# Help Project output. For more information please see Qt Help Project / Virtual
-# Folders (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#virtual-
-# folders).
-# The default value is: doc.
-# This tag requires that the tag GENERATE_QHP is set to YES.
-
-QHP_VIRTUAL_FOLDER = doc
-
-# If the QHP_CUST_FILTER_NAME tag is set, it specifies the name of a custom
-# filter to add. For more information please see Qt Help Project / Custom
-# Filters (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#custom-
-# filters).
-# This tag requires that the tag GENERATE_QHP is set to YES.
-
-QHP_CUST_FILTER_NAME =
-
-# The QHP_CUST_FILTER_ATTRS tag specifies the list of the attributes of the
-# custom filter to add. For more information please see Qt Help Project / Custom
-# Filters (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#custom-
-# filters).
-# This tag requires that the tag GENERATE_QHP is set to YES.
-
-QHP_CUST_FILTER_ATTRS =
-
-# The QHP_SECT_FILTER_ATTRS tag specifies the list of the attributes this
-# project's filter section matches. Qt Help Project / Filter Attributes (see:
-# http://qt-project.org/doc/qt-4.8/qthelpproject.html#filter-attributes).
-# This tag requires that the tag GENERATE_QHP is set to YES.
-
-QHP_SECT_FILTER_ATTRS =
-
-# The QHG_LOCATION tag can be used to specify the location of Qt's
-# qhelpgenerator. If non-empty doxygen will try to run qhelpgenerator on the
-# generated .qhp file.
-# This tag requires that the tag GENERATE_QHP is set to YES.
-
-QHG_LOCATION =
-
-# If the GENERATE_ECLIPSEHELP tag is set to YES, additional index files will be
-# generated, together with the HTML files, they form an Eclipse help plugin. To
-# install this plugin and make it available under the help contents menu in
-# Eclipse, the contents of the directory containing the HTML and XML files needs
-# to be copied into the plugins directory of eclipse. The name of the directory
-# within the plugins directory should be the same as the ECLIPSE_DOC_ID value.
-# After copying Eclipse needs to be restarted before the help appears.
-# The default value is: NO.
-# This tag requires that the tag GENERATE_HTML is set to YES.
-
-GENERATE_ECLIPSEHELP = NO
-
-# A unique identifier for the Eclipse help plugin. When installing the plugin
-# the directory name containing the HTML and XML files should also have this
-# name. Each documentation set should have its own identifier.
-# The default value is: org.doxygen.Project.
-# This tag requires that the tag GENERATE_ECLIPSEHELP is set to YES.
-
-ECLIPSE_DOC_ID = org.doxygen.Project
-
-# If you want full control over the layout of the generated HTML pages it might
-# be necessary to disable the index and replace it with your own. The
-# DISABLE_INDEX tag can be used to turn on/off the condensed index (tabs) at top
-# of each HTML page. A value of NO enables the index and the value YES disables
-# it. Since the tabs in the index contain the same information as the navigation
-# tree, you can set this option to YES if you also set GENERATE_TREEVIEW to YES.
-# The default value is: NO.
-# This tag requires that the tag GENERATE_HTML is set to YES.
-
-DISABLE_INDEX = NO
-
-# The GENERATE_TREEVIEW tag is used to specify whether a tree-like index
-# structure should be generated to display hierarchical information. If the tag
-# value is set to YES, a side panel will be generated containing a tree-like
-# index structure (just like the one that is generated for HTML Help). For this
-# to work a browser that supports JavaScript, DHTML, CSS and frames is required
-# (i.e. any modern browser). Windows users are probably better off using the
-# HTML help feature. Via custom stylesheets (see HTML_EXTRA_STYLESHEET) one can
-# further fine-tune the look of the index. As an example, the default style
-# sheet generated by doxygen has an example that shows how to put an image at
-# the root of the tree instead of the PROJECT_NAME. Since the tree basically has
-# the same information as the tab index, you could consider setting
-# DISABLE_INDEX to YES when enabling this option.
-# The default value is: NO.
-# This tag requires that the tag GENERATE_HTML is set to YES.
-
-GENERATE_TREEVIEW = NO
-
-# The ENUM_VALUES_PER_LINE tag can be used to set the number of enum values that
-# doxygen will group on one line in the generated HTML documentation.
-#
-# Note that a value of 0 will completely suppress the enum values from appearing
-# in the overview section.
-# Minimum value: 0, maximum value: 20, default value: 4.
-# This tag requires that the tag GENERATE_HTML is set to YES.
-
-ENUM_VALUES_PER_LINE = 1
-
-# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be used
-# to set the initial width (in pixels) of the frame in which the tree is shown.
-# Minimum value: 0, maximum value: 1500, default value: 250.
-# This tag requires that the tag GENERATE_HTML is set to YES.
-
-TREEVIEW_WIDTH = 250
-
-# When the EXT_LINKS_IN_WINDOW option is set to YES doxygen will open links to
-# external symbols imported via tag files in a separate window.
-# The default value is: NO.
-# This tag requires that the tag GENERATE_HTML is set to YES.
-
-EXT_LINKS_IN_WINDOW = NO
-
-# Use this tag to change the font size of LaTeX formulas included as images in
-# the HTML documentation. When you change the font size after a successful
-# doxygen run you need to manually remove any form_*.png images from the HTML
-# output directory to force them to be regenerated.
-# Minimum value: 8, maximum value: 50, default value: 10.
-# This tag requires that the tag GENERATE_HTML is set to YES.
-
-FORMULA_FONTSIZE = 10
-
-# Use the FORMULA_TRANPARENT tag to determine whether or not the images
-# generated for formulas are transparent PNGs. Transparent PNGs are not
-# supported properly for IE 6.0, but are supported on all modern browsers.
-#
-# Note that when changing this option you need to delete any form_*.png files in
-# the HTML output directory before the changes have effect.
-# The default value is: YES.
-# This tag requires that the tag GENERATE_HTML is set to YES.
-
-FORMULA_TRANSPARENT = YES
-
-# Enable the USE_MATHJAX option to render LaTeX formulas using MathJax (see
-# http://www.mathjax.org) which uses client side Javascript for the rendering
-# instead of using prerendered bitmaps. Use this if you do not have LaTeX
-# installed or if you want to formulas look prettier in the HTML output. When
-# enabled you may also need to install MathJax separately and configure the path
-# to it using the MATHJAX_RELPATH option.
-# The default value is: NO.
-# This tag requires that the tag GENERATE_HTML is set to YES.
-
-USE_MATHJAX = NO
-
-# When MathJax is enabled you can set the default output format to be used for
-# the MathJax output. See the MathJax site (see:
-# http://docs.mathjax.org/en/latest/output.html) for more details.
-# Possible values are: HTML-CSS (which is slower, but has the best
-# compatibility), NativeMML (i.e. MathML) and SVG.
-# The default value is: HTML-CSS.
-# This tag requires that the tag USE_MATHJAX is set to YES.
-
-MATHJAX_FORMAT = HTML-CSS
-
-# When MathJax is enabled you need to specify the location relative to the HTML
-# output directory using the MATHJAX_RELPATH option. The destination directory
-# should contain the MathJax.js script. For instance, if the mathjax directory
-# is located at the same level as the HTML output directory, then
-# MATHJAX_RELPATH should be ../mathjax. The default value points to the MathJax
-# Content Delivery Network so you can quickly see the result without installing
-# MathJax. However, it is strongly recommended to install a local copy of
-# MathJax from http://www.mathjax.org before deployment.
-# The default value is: http://cdn.mathjax.org/mathjax/latest.
-# This tag requires that the tag USE_MATHJAX is set to YES.
-
-MATHJAX_RELPATH = http://cdn.mathjax.org/mathjax/latest
-
-# The MATHJAX_EXTENSIONS tag can be used to specify one or more MathJax
-# extension names that should be enabled during MathJax rendering. For example
-# MATHJAX_EXTENSIONS = TeX/AMSmath TeX/AMSsymbols
-# This tag requires that the tag USE_MATHJAX is set to YES.
-
-MATHJAX_EXTENSIONS =
-
-# The MATHJAX_CODEFILE tag can be used to specify a file with javascript pieces
-# of code that will be used on startup of the MathJax code. See the MathJax site
-# (see: http://docs.mathjax.org/en/latest/output.html) for more details. For an
-# example see the documentation.
-# This tag requires that the tag USE_MATHJAX is set to YES.
-
-MATHJAX_CODEFILE =
-
-# When the SEARCHENGINE tag is enabled doxygen will generate a search box for
-# the HTML output. The underlying search engine uses javascript and DHTML and
-# should work on any modern browser. Note that when using HTML help
-# (GENERATE_HTMLHELP), Qt help (GENERATE_QHP), or docsets (GENERATE_DOCSET)
-# there is already a search function so this one should typically be disabled.
-# For large projects the javascript based search engine can be slow, then
-# enabling SERVER_BASED_SEARCH may provide a better solution. It is possible to
-# search using the keyboard; to jump to the search box use + S
-# (what the is depends on the OS and browser, but it is typically
-# , /
-
+ include
-
+ include
-
+ include
-
+ include
-
+ include
-
+ include
-
+ include
-
+ include
-
+ include
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
-
+
+
\ No newline at end of file
diff --git a/Externals/enet/enet_dll.cbp b/Externals/enet/enet_dll.cbp
deleted file mode 100644
index 961274c760..0000000000
--- a/Externals/enet/enet_dll.cbp
+++ /dev/null
@@ -1,86 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/Externals/enet/exports.props b/Externals/enet/exports.props
index ec44d60e08..1b2650e63d 100644
--- a/Externals/enet/exports.props
+++ b/Externals/enet/exports.props
@@ -2,7 +2,7 @@
- $(ExternalsDir)enet\include;%(AdditionalIncludeDirectories)
+ $(ExternalsDir)enet\enet\include\;%(AdditionalIncludeDirectories)
diff --git a/Externals/enet/host.c b/Externals/enet/host.c
deleted file mode 100644
index fff946a392..0000000000
--- a/Externals/enet/host.c
+++ /dev/null
@@ -1,503 +0,0 @@
-/**
- @file host.c
- @brief ENet host management functions
-*/
-#define ENET_BUILDING_LIB 1
-#include
-#include "enet/enet.h"
-
-/** @defgroup host ENet host functions
- @{
-*/
-
-/** Creates a host for communicating to peers.
-
- @param address the address at which other peers may connect to this host. If NULL, then no peers may connect to the host.
- @param peerCount the maximum number of peers that should be allocated for the host.
- @param channelLimit the maximum number of channels allowed; if 0, then this is equivalent to ENET_PROTOCOL_MAXIMUM_CHANNEL_COUNT
- @param incomingBandwidth downstream bandwidth of the host in bytes/second; if 0, ENet will assume unlimited bandwidth.
- @param outgoingBandwidth upstream bandwidth of the host in bytes/second; if 0, ENet will assume unlimited bandwidth.
-
- @returns the host on success and NULL on failure
-
- @remarks ENet will strategically drop packets on specific sides of a connection between hosts
- to ensure the host's bandwidth is not overwhelmed. The bandwidth parameters also determine
- the window size of a connection which limits the amount of reliable packets that may be in transit
- at any given time.
-*/
-ENetHost *
-enet_host_create (const ENetAddress * address, size_t peerCount, size_t channelLimit, enet_uint32 incomingBandwidth, enet_uint32 outgoingBandwidth)
-{
- ENetHost * host;
- ENetPeer * currentPeer;
-
- if (peerCount > ENET_PROTOCOL_MAXIMUM_PEER_ID)
- return NULL;
-
- host = (ENetHost *) enet_malloc (sizeof (ENetHost));
- if (host == NULL)
- return NULL;
- memset (host, 0, sizeof (ENetHost));
-
- host -> peers = (ENetPeer *) enet_malloc (peerCount * sizeof (ENetPeer));
- if (host -> peers == NULL)
- {
- enet_free (host);
-
- return NULL;
- }
- memset (host -> peers, 0, peerCount * sizeof (ENetPeer));
-
- host -> socket = enet_socket_create (ENET_SOCKET_TYPE_DATAGRAM);
- if (host -> socket == ENET_SOCKET_NULL || (address != NULL && enet_socket_bind (host -> socket, address) < 0))
- {
- if (host -> socket != ENET_SOCKET_NULL)
- enet_socket_destroy (host -> socket);
-
- enet_free (host -> peers);
- enet_free (host);
-
- return NULL;
- }
-
- enet_socket_set_option (host -> socket, ENET_SOCKOPT_NONBLOCK, 1);
- enet_socket_set_option (host -> socket, ENET_SOCKOPT_BROADCAST, 1);
- enet_socket_set_option (host -> socket, ENET_SOCKOPT_RCVBUF, ENET_HOST_RECEIVE_BUFFER_SIZE);
- enet_socket_set_option (host -> socket, ENET_SOCKOPT_SNDBUF, ENET_HOST_SEND_BUFFER_SIZE);
-
- if (address != NULL && enet_socket_get_address (host -> socket, & host -> address) < 0)
- host -> address = * address;
-
- if (! channelLimit || channelLimit > ENET_PROTOCOL_MAXIMUM_CHANNEL_COUNT)
- channelLimit = ENET_PROTOCOL_MAXIMUM_CHANNEL_COUNT;
- else
- if (channelLimit < ENET_PROTOCOL_MINIMUM_CHANNEL_COUNT)
- channelLimit = ENET_PROTOCOL_MINIMUM_CHANNEL_COUNT;
-
- host -> randomSeed = (enet_uint32) (size_t) host;
- host -> randomSeed += enet_host_random_seed ();
- host -> randomSeed = (host -> randomSeed << 16) | (host -> randomSeed >> 16);
- host -> channelLimit = channelLimit;
- host -> incomingBandwidth = incomingBandwidth;
- host -> outgoingBandwidth = outgoingBandwidth;
- host -> bandwidthThrottleEpoch = 0;
- host -> recalculateBandwidthLimits = 0;
- host -> mtu = ENET_HOST_DEFAULT_MTU;
- host -> peerCount = peerCount;
- host -> commandCount = 0;
- host -> bufferCount = 0;
- host -> checksum = NULL;
- host -> receivedAddress.host = ENET_HOST_ANY;
- host -> receivedAddress.port = 0;
- host -> receivedData = NULL;
- host -> receivedDataLength = 0;
-
- host -> totalSentData = 0;
- host -> totalSentPackets = 0;
- host -> totalReceivedData = 0;
- host -> totalReceivedPackets = 0;
- host -> totalQueued = 0;
-
- host -> connectedPeers = 0;
- host -> bandwidthLimitedPeers = 0;
- host -> duplicatePeers = ENET_PROTOCOL_MAXIMUM_PEER_ID;
- host -> maximumPacketSize = ENET_HOST_DEFAULT_MAXIMUM_PACKET_SIZE;
- host -> maximumWaitingData = ENET_HOST_DEFAULT_MAXIMUM_WAITING_DATA;
-
- host -> compressor.context = NULL;
- host -> compressor.compress = NULL;
- host -> compressor.decompress = NULL;
- host -> compressor.destroy = NULL;
-
- host -> intercept = NULL;
-
- enet_list_clear (& host -> dispatchQueue);
-
- for (currentPeer = host -> peers;
- currentPeer < & host -> peers [host -> peerCount];
- ++ currentPeer)
- {
- currentPeer -> host = host;
- currentPeer -> incomingPeerID = currentPeer - host -> peers;
- currentPeer -> outgoingSessionID = currentPeer -> incomingSessionID = 0xFF;
- currentPeer -> data = NULL;
-
- enet_list_clear (& currentPeer -> acknowledgements);
- enet_list_clear (& currentPeer -> sentReliableCommands);
- enet_list_clear (& currentPeer -> outgoingCommands);
- enet_list_clear (& currentPeer -> outgoingSendReliableCommands);
- enet_list_clear (& currentPeer -> dispatchedCommands);
-
- enet_peer_reset (currentPeer);
- }
-
- return host;
-}
-
-/** Destroys the host and all resources associated with it.
- @param host pointer to the host to destroy
-*/
-void
-enet_host_destroy (ENetHost * host)
-{
- ENetPeer * currentPeer;
-
- if (host == NULL)
- return;
-
- enet_socket_destroy (host -> socket);
-
- for (currentPeer = host -> peers;
- currentPeer < & host -> peers [host -> peerCount];
- ++ currentPeer)
- {
- enet_peer_reset (currentPeer);
- }
-
- if (host -> compressor.context != NULL && host -> compressor.destroy)
- (* host -> compressor.destroy) (host -> compressor.context);
-
- enet_free (host -> peers);
- enet_free (host);
-}
-
-enet_uint32
-enet_host_random (ENetHost * host)
-{
- /* Mulberry32 by Tommy Ettinger */
- enet_uint32 n = (host -> randomSeed += 0x6D2B79F5U);
- n = (n ^ (n >> 15)) * (n | 1U);
- n ^= n + (n ^ (n >> 7)) * (n | 61U);
- return n ^ (n >> 14);
-}
-
-/** Initiates a connection to a foreign host.
- @param host host seeking the connection
- @param address destination for the connection
- @param channelCount number of channels to allocate
- @param data user data supplied to the receiving host
- @returns a peer representing the foreign host on success, NULL on failure
- @remarks The peer returned will have not completed the connection until enet_host_service()
- notifies of an ENET_EVENT_TYPE_CONNECT event for the peer.
-*/
-ENetPeer *
-enet_host_connect (ENetHost * host, const ENetAddress * address, size_t channelCount, enet_uint32 data)
-{
- ENetPeer * currentPeer;
- ENetChannel * channel;
- ENetProtocol command;
-
- if (channelCount < ENET_PROTOCOL_MINIMUM_CHANNEL_COUNT)
- channelCount = ENET_PROTOCOL_MINIMUM_CHANNEL_COUNT;
- else
- if (channelCount > ENET_PROTOCOL_MAXIMUM_CHANNEL_COUNT)
- channelCount = ENET_PROTOCOL_MAXIMUM_CHANNEL_COUNT;
-
- for (currentPeer = host -> peers;
- currentPeer < & host -> peers [host -> peerCount];
- ++ currentPeer)
- {
- if (currentPeer -> state == ENET_PEER_STATE_DISCONNECTED)
- break;
- }
-
- if (currentPeer >= & host -> peers [host -> peerCount])
- return NULL;
-
- currentPeer -> channels = (ENetChannel *) enet_malloc (channelCount * sizeof (ENetChannel));
- if (currentPeer -> channels == NULL)
- return NULL;
- currentPeer -> channelCount = channelCount;
- currentPeer -> state = ENET_PEER_STATE_CONNECTING;
- currentPeer -> address = * address;
- currentPeer -> connectID = enet_host_random (host);
- currentPeer -> mtu = host -> mtu;
-
- if (host -> outgoingBandwidth == 0)
- currentPeer -> windowSize = ENET_PROTOCOL_MAXIMUM_WINDOW_SIZE;
- else
- currentPeer -> windowSize = (host -> outgoingBandwidth /
- ENET_PEER_WINDOW_SIZE_SCALE) *
- ENET_PROTOCOL_MINIMUM_WINDOW_SIZE;
-
- if (currentPeer -> windowSize < ENET_PROTOCOL_MINIMUM_WINDOW_SIZE)
- currentPeer -> windowSize = ENET_PROTOCOL_MINIMUM_WINDOW_SIZE;
- else
- if (currentPeer -> windowSize > ENET_PROTOCOL_MAXIMUM_WINDOW_SIZE)
- currentPeer -> windowSize = ENET_PROTOCOL_MAXIMUM_WINDOW_SIZE;
-
- for (channel = currentPeer -> channels;
- channel < & currentPeer -> channels [channelCount];
- ++ channel)
- {
- channel -> outgoingReliableSequenceNumber = 0;
- channel -> outgoingUnreliableSequenceNumber = 0;
- channel -> incomingReliableSequenceNumber = 0;
- channel -> incomingUnreliableSequenceNumber = 0;
-
- enet_list_clear (& channel -> incomingReliableCommands);
- enet_list_clear (& channel -> incomingUnreliableCommands);
-
- channel -> usedReliableWindows = 0;
- memset (channel -> reliableWindows, 0, sizeof (channel -> reliableWindows));
- }
-
- command.header.command = ENET_PROTOCOL_COMMAND_CONNECT | ENET_PROTOCOL_COMMAND_FLAG_ACKNOWLEDGE;
- command.header.channelID = 0xFF;
- command.connect.outgoingPeerID = ENET_HOST_TO_NET_16 (currentPeer -> incomingPeerID);
- command.connect.incomingSessionID = currentPeer -> incomingSessionID;
- command.connect.outgoingSessionID = currentPeer -> outgoingSessionID;
- command.connect.mtu = ENET_HOST_TO_NET_32 (currentPeer -> mtu);
- command.connect.windowSize = ENET_HOST_TO_NET_32 (currentPeer -> windowSize);
- command.connect.channelCount = ENET_HOST_TO_NET_32 (channelCount);
- command.connect.incomingBandwidth = ENET_HOST_TO_NET_32 (host -> incomingBandwidth);
- command.connect.outgoingBandwidth = ENET_HOST_TO_NET_32 (host -> outgoingBandwidth);
- command.connect.packetThrottleInterval = ENET_HOST_TO_NET_32 (currentPeer -> packetThrottleInterval);
- command.connect.packetThrottleAcceleration = ENET_HOST_TO_NET_32 (currentPeer -> packetThrottleAcceleration);
- command.connect.packetThrottleDeceleration = ENET_HOST_TO_NET_32 (currentPeer -> packetThrottleDeceleration);
- command.connect.connectID = currentPeer -> connectID;
- command.connect.data = ENET_HOST_TO_NET_32 (data);
-
- enet_peer_queue_outgoing_command (currentPeer, & command, NULL, 0, 0);
-
- return currentPeer;
-}
-
-/** Queues a packet to be sent to all peers associated with the host.
- @param host host on which to broadcast the packet
- @param channelID channel on which to broadcast
- @param packet packet to broadcast
-*/
-void
-enet_host_broadcast (ENetHost * host, enet_uint8 channelID, ENetPacket * packet)
-{
- ENetPeer * currentPeer;
-
- for (currentPeer = host -> peers;
- currentPeer < & host -> peers [host -> peerCount];
- ++ currentPeer)
- {
- if (currentPeer -> state != ENET_PEER_STATE_CONNECTED)
- continue;
-
- enet_peer_send (currentPeer, channelID, packet);
- }
-
- if (packet -> referenceCount == 0)
- enet_packet_destroy (packet);
-}
-
-/** Sets the packet compressor the host should use to compress and decompress packets.
- @param host host to enable or disable compression for
- @param compressor callbacks for for the packet compressor; if NULL, then compression is disabled
-*/
-void
-enet_host_compress (ENetHost * host, const ENetCompressor * compressor)
-{
- if (host -> compressor.context != NULL && host -> compressor.destroy)
- (* host -> compressor.destroy) (host -> compressor.context);
-
- if (compressor)
- host -> compressor = * compressor;
- else
- host -> compressor.context = NULL;
-}
-
-/** Limits the maximum allowed channels of future incoming connections.
- @param host host to limit
- @param channelLimit the maximum number of channels allowed; if 0, then this is equivalent to ENET_PROTOCOL_MAXIMUM_CHANNEL_COUNT
-*/
-void
-enet_host_channel_limit (ENetHost * host, size_t channelLimit)
-{
- if (! channelLimit || channelLimit > ENET_PROTOCOL_MAXIMUM_CHANNEL_COUNT)
- channelLimit = ENET_PROTOCOL_MAXIMUM_CHANNEL_COUNT;
- else
- if (channelLimit < ENET_PROTOCOL_MINIMUM_CHANNEL_COUNT)
- channelLimit = ENET_PROTOCOL_MINIMUM_CHANNEL_COUNT;
-
- host -> channelLimit = channelLimit;
-}
-
-
-/** Adjusts the bandwidth limits of a host.
- @param host host to adjust
- @param incomingBandwidth new incoming bandwidth
- @param outgoingBandwidth new outgoing bandwidth
- @remarks the incoming and outgoing bandwidth parameters are identical in function to those
- specified in enet_host_create().
-*/
-void
-enet_host_bandwidth_limit (ENetHost * host, enet_uint32 incomingBandwidth, enet_uint32 outgoingBandwidth)
-{
- host -> incomingBandwidth = incomingBandwidth;
- host -> outgoingBandwidth = outgoingBandwidth;
- host -> recalculateBandwidthLimits = 1;
-}
-
-void
-enet_host_bandwidth_throttle (ENetHost * host)
-{
- enet_uint32 timeCurrent = enet_time_get (),
- elapsedTime = timeCurrent - host -> bandwidthThrottleEpoch,
- peersRemaining = (enet_uint32) host -> connectedPeers,
- dataTotal = ~0,
- bandwidth = ~0,
- throttle = 0,
- bandwidthLimit = 0;
- int needsAdjustment = host -> bandwidthLimitedPeers > 0 ? 1 : 0;
- ENetPeer * peer;
- ENetProtocol command;
-
- if (elapsedTime < ENET_HOST_BANDWIDTH_THROTTLE_INTERVAL)
- return;
-
- host -> bandwidthThrottleEpoch = timeCurrent;
-
- if (peersRemaining == 0)
- return;
-
- if (host -> outgoingBandwidth != 0)
- {
- dataTotal = 0;
- bandwidth = (host -> outgoingBandwidth * elapsedTime) / 1000;
-
- for (peer = host -> peers;
- peer < & host -> peers [host -> peerCount];
- ++ peer)
- {
- if (peer -> state != ENET_PEER_STATE_CONNECTED && peer -> state != ENET_PEER_STATE_DISCONNECT_LATER)
- continue;
-
- dataTotal += peer -> outgoingDataTotal;
- }
- }
-
- while (peersRemaining > 0 && needsAdjustment != 0)
- {
- needsAdjustment = 0;
-
- if (dataTotal <= bandwidth)
- throttle = ENET_PEER_PACKET_THROTTLE_SCALE;
- else
- throttle = (bandwidth * ENET_PEER_PACKET_THROTTLE_SCALE) / dataTotal;
-
- for (peer = host -> peers;
- peer < & host -> peers [host -> peerCount];
- ++ peer)
- {
- enet_uint32 peerBandwidth;
-
- if ((peer -> state != ENET_PEER_STATE_CONNECTED && peer -> state != ENET_PEER_STATE_DISCONNECT_LATER) ||
- peer -> incomingBandwidth == 0 ||
- peer -> outgoingBandwidthThrottleEpoch == timeCurrent)
- continue;
-
- peerBandwidth = (peer -> incomingBandwidth * elapsedTime) / 1000;
- if ((throttle * peer -> outgoingDataTotal) / ENET_PEER_PACKET_THROTTLE_SCALE <= peerBandwidth)
- continue;
-
- peer -> packetThrottleLimit = (peerBandwidth *
- ENET_PEER_PACKET_THROTTLE_SCALE) / peer -> outgoingDataTotal;
-
- if (peer -> packetThrottleLimit == 0)
- peer -> packetThrottleLimit = 1;
-
- if (peer -> packetThrottle > peer -> packetThrottleLimit)
- peer -> packetThrottle = peer -> packetThrottleLimit;
-
- peer -> outgoingBandwidthThrottleEpoch = timeCurrent;
-
- peer -> incomingDataTotal = 0;
- peer -> outgoingDataTotal = 0;
-
- needsAdjustment = 1;
- -- peersRemaining;
- bandwidth -= peerBandwidth;
- dataTotal -= peerBandwidth;
- }
- }
-
- if (peersRemaining > 0)
- {
- if (dataTotal <= bandwidth)
- throttle = ENET_PEER_PACKET_THROTTLE_SCALE;
- else
- throttle = (bandwidth * ENET_PEER_PACKET_THROTTLE_SCALE) / dataTotal;
-
- for (peer = host -> peers;
- peer < & host -> peers [host -> peerCount];
- ++ peer)
- {
- if ((peer -> state != ENET_PEER_STATE_CONNECTED && peer -> state != ENET_PEER_STATE_DISCONNECT_LATER) ||
- peer -> outgoingBandwidthThrottleEpoch == timeCurrent)
- continue;
-
- peer -> packetThrottleLimit = throttle;
-
- if (peer -> packetThrottle > peer -> packetThrottleLimit)
- peer -> packetThrottle = peer -> packetThrottleLimit;
-
- peer -> incomingDataTotal = 0;
- peer -> outgoingDataTotal = 0;
- }
- }
-
- if (host -> recalculateBandwidthLimits)
- {
- host -> recalculateBandwidthLimits = 0;
-
- peersRemaining = (enet_uint32) host -> connectedPeers;
- bandwidth = host -> incomingBandwidth;
- needsAdjustment = 1;
-
- if (bandwidth == 0)
- bandwidthLimit = 0;
- else
- while (peersRemaining > 0 && needsAdjustment != 0)
- {
- needsAdjustment = 0;
- bandwidthLimit = bandwidth / peersRemaining;
-
- for (peer = host -> peers;
- peer < & host -> peers [host -> peerCount];
- ++ peer)
- {
- if ((peer -> state != ENET_PEER_STATE_CONNECTED && peer -> state != ENET_PEER_STATE_DISCONNECT_LATER) ||
- peer -> incomingBandwidthThrottleEpoch == timeCurrent)
- continue;
-
- if (peer -> outgoingBandwidth > 0 &&
- peer -> outgoingBandwidth >= bandwidthLimit)
- continue;
-
- peer -> incomingBandwidthThrottleEpoch = timeCurrent;
-
- needsAdjustment = 1;
- -- peersRemaining;
- bandwidth -= peer -> outgoingBandwidth;
- }
- }
-
- for (peer = host -> peers;
- peer < & host -> peers [host -> peerCount];
- ++ peer)
- {
- if (peer -> state != ENET_PEER_STATE_CONNECTED && peer -> state != ENET_PEER_STATE_DISCONNECT_LATER)
- continue;
-
- command.header.command = ENET_PROTOCOL_COMMAND_BANDWIDTH_LIMIT | ENET_PROTOCOL_COMMAND_FLAG_ACKNOWLEDGE;
- command.header.channelID = 0xFF;
- command.bandwidthLimit.outgoingBandwidth = ENET_HOST_TO_NET_32 (host -> outgoingBandwidth);
-
- if (peer -> incomingBandwidthThrottleEpoch == timeCurrent)
- command.bandwidthLimit.incomingBandwidth = ENET_HOST_TO_NET_32 (peer -> outgoingBandwidth);
- else
- command.bandwidthLimit.incomingBandwidth = ENET_HOST_TO_NET_32 (bandwidthLimit);
-
- enet_peer_queue_outgoing_command (peer, & command, NULL, 0, 0);
- }
- }
-}
-
-/** @} */
diff --git a/Externals/enet/include/enet/callbacks.h b/Externals/enet/include/enet/callbacks.h
deleted file mode 100644
index 340a4a9896..0000000000
--- a/Externals/enet/include/enet/callbacks.h
+++ /dev/null
@@ -1,27 +0,0 @@
-/**
- @file callbacks.h
- @brief ENet callbacks
-*/
-#ifndef __ENET_CALLBACKS_H__
-#define __ENET_CALLBACKS_H__
-
-#include
-
-typedef struct _ENetCallbacks
-{
- void * (ENET_CALLBACK * malloc) (size_t size);
- void (ENET_CALLBACK * free) (void * memory);
- void (ENET_CALLBACK * no_memory) (void);
-} ENetCallbacks;
-
-/** @defgroup callbacks ENet internal callbacks
- @{
- @ingroup private
-*/
-extern void * enet_malloc (size_t);
-extern void enet_free (void *);
-
-/** @} */
-
-#endif /* __ENET_CALLBACKS_H__ */
-
diff --git a/Externals/enet/include/enet/enet.h b/Externals/enet/include/enet/enet.h
deleted file mode 100644
index be59c10796..0000000000
--- a/Externals/enet/include/enet/enet.h
+++ /dev/null
@@ -1,616 +0,0 @@
-/**
- @file enet.h
- @brief ENet public header file
-*/
-#ifndef __ENET_ENET_H__
-#define __ENET_ENET_H__
-
-#ifdef __cplusplus
-extern "C"
-{
-#endif
-
-#include
-
-#ifdef _WIN32
-#include "enet/win32.h"
-#else
-#include "enet/unix.h"
-#endif
-
-#include "enet/types.h"
-#include "enet/protocol.h"
-#include "enet/list.h"
-#include "enet/callbacks.h"
-
-#define ENET_VERSION_MAJOR 1
-#define ENET_VERSION_MINOR 3
-#define ENET_VERSION_PATCH 17
-#define ENET_VERSION_CREATE(major, minor, patch) (((major)<<16) | ((minor)<<8) | (patch))
-#define ENET_VERSION_GET_MAJOR(version) (((version)>>16)&0xFF)
-#define ENET_VERSION_GET_MINOR(version) (((version)>>8)&0xFF)
-#define ENET_VERSION_GET_PATCH(version) ((version)&0xFF)
-#define ENET_VERSION ENET_VERSION_CREATE(ENET_VERSION_MAJOR, ENET_VERSION_MINOR, ENET_VERSION_PATCH)
-
-typedef enet_uint32 ENetVersion;
-
-struct _ENetHost;
-struct _ENetEvent;
-struct _ENetPacket;
-
-typedef enum _ENetSocketType
-{
- ENET_SOCKET_TYPE_STREAM = 1,
- ENET_SOCKET_TYPE_DATAGRAM = 2
-} ENetSocketType;
-
-typedef enum _ENetSocketWait
-{
- ENET_SOCKET_WAIT_NONE = 0,
- ENET_SOCKET_WAIT_SEND = (1 << 0),
- ENET_SOCKET_WAIT_RECEIVE = (1 << 1),
- ENET_SOCKET_WAIT_INTERRUPT = (1 << 2)
-} ENetSocketWait;
-
-typedef enum _ENetSocketOption
-{
- ENET_SOCKOPT_NONBLOCK = 1,
- ENET_SOCKOPT_BROADCAST = 2,
- ENET_SOCKOPT_RCVBUF = 3,
- ENET_SOCKOPT_SNDBUF = 4,
- ENET_SOCKOPT_REUSEADDR = 5,
- ENET_SOCKOPT_RCVTIMEO = 6,
- ENET_SOCKOPT_SNDTIMEO = 7,
- ENET_SOCKOPT_ERROR = 8,
- ENET_SOCKOPT_NODELAY = 9,
- ENET_SOCKOPT_TTL = 10
-} ENetSocketOption;
-
-typedef enum _ENetSocketShutdown
-{
- ENET_SOCKET_SHUTDOWN_READ = 0,
- ENET_SOCKET_SHUTDOWN_WRITE = 1,
- ENET_SOCKET_SHUTDOWN_READ_WRITE = 2
-} ENetSocketShutdown;
-
-#define ENET_HOST_ANY 0
-#define ENET_HOST_BROADCAST 0xFFFFFFFFU
-#define ENET_PORT_ANY 0
-
-/**
- * Portable internet address structure.
- *
- * The host must be specified in network byte-order, and the port must be in host
- * byte-order. The constant ENET_HOST_ANY may be used to specify the default
- * server host. The constant ENET_HOST_BROADCAST may be used to specify the
- * broadcast address (255.255.255.255). This makes sense for enet_host_connect,
- * but not for enet_host_create. Once a server responds to a broadcast, the
- * address is updated from ENET_HOST_BROADCAST to the server's actual IP address.
- */
-typedef struct _ENetAddress
-{
- enet_uint32 host;
- enet_uint16 port;
-} ENetAddress;
-
-/**
- * Packet flag bit constants.
- *
- * The host must be specified in network byte-order, and the port must be in
- * host byte-order. The constant ENET_HOST_ANY may be used to specify the
- * default server host.
-
- @sa ENetPacket
-*/
-typedef enum _ENetPacketFlag
-{
- /** packet must be received by the target peer and resend attempts should be
- * made until the packet is delivered */
- ENET_PACKET_FLAG_RELIABLE = (1 << 0),
- /** packet will not be sequenced with other packets
- * not supported for reliable packets
- */
- ENET_PACKET_FLAG_UNSEQUENCED = (1 << 1),
- /** packet will not allocate data, and user must supply it instead */
- ENET_PACKET_FLAG_NO_ALLOCATE = (1 << 2),
- /** packet will be fragmented using unreliable (instead of reliable) sends
- * if it exceeds the MTU */
- ENET_PACKET_FLAG_UNRELIABLE_FRAGMENT = (1 << 3),
-
- /** whether the packet has been sent from all queues it has been entered into */
- ENET_PACKET_FLAG_SENT = (1<<8)
-} ENetPacketFlag;
-
-typedef void (ENET_CALLBACK * ENetPacketFreeCallback) (struct _ENetPacket *);
-
-/**
- * ENet packet structure.
- *
- * An ENet data packet that may be sent to or received from a peer. The shown
- * fields should only be read and never modified. The data field contains the
- * allocated data for the packet. The dataLength fields specifies the length
- * of the allocated data. The flags field is either 0 (specifying no flags),
- * or a bitwise-or of any combination of the following flags:
- *
- * ENET_PACKET_FLAG_RELIABLE - packet must be received by the target peer
- * and resend attempts should be made until the packet is delivered
- *
- * ENET_PACKET_FLAG_UNSEQUENCED - packet will not be sequenced with other packets
- * (not supported for reliable packets)
- *
- * ENET_PACKET_FLAG_NO_ALLOCATE - packet will not allocate data, and user must supply it instead
- *
- * ENET_PACKET_FLAG_UNRELIABLE_FRAGMENT - packet will be fragmented using unreliable
- * (instead of reliable) sends if it exceeds the MTU
- *
- * ENET_PACKET_FLAG_SENT - whether the packet has been sent from all queues it has been entered into
- @sa ENetPacketFlag
- */
-typedef struct _ENetPacket
-{
- size_t referenceCount; /**< internal use only */
- enet_uint32 flags; /**< bitwise-or of ENetPacketFlag constants */
- enet_uint8 * data; /**< allocated data for packet */
- size_t dataLength; /**< length of data */
- ENetPacketFreeCallback freeCallback; /**< function to be called when the packet is no longer in use */
- void * userData; /**< application private data, may be freely modified */
-} ENetPacket;
-
-typedef struct _ENetAcknowledgement
-{
- ENetListNode acknowledgementList;
- enet_uint32 sentTime;
- ENetProtocol command;
-} ENetAcknowledgement;
-
-typedef struct _ENetOutgoingCommand
-{
- ENetListNode outgoingCommandList;
- enet_uint16 reliableSequenceNumber;
- enet_uint16 unreliableSequenceNumber;
- enet_uint32 sentTime;
- enet_uint32 roundTripTimeout;
- enet_uint32 queueTime;
- enet_uint32 fragmentOffset;
- enet_uint16 fragmentLength;
- enet_uint16 sendAttempts;
- ENetProtocol command;
- ENetPacket * packet;
-} ENetOutgoingCommand;
-
-typedef struct _ENetIncomingCommand
-{
- ENetListNode incomingCommandList;
- enet_uint16 reliableSequenceNumber;
- enet_uint16 unreliableSequenceNumber;
- ENetProtocol command;
- enet_uint32 fragmentCount;
- enet_uint32 fragmentsRemaining;
- enet_uint32 * fragments;
- ENetPacket * packet;
-} ENetIncomingCommand;
-
-typedef enum _ENetPeerState
-{
- ENET_PEER_STATE_DISCONNECTED = 0,
- ENET_PEER_STATE_CONNECTING = 1,
- ENET_PEER_STATE_ACKNOWLEDGING_CONNECT = 2,
- ENET_PEER_STATE_CONNECTION_PENDING = 3,
- ENET_PEER_STATE_CONNECTION_SUCCEEDED = 4,
- ENET_PEER_STATE_CONNECTED = 5,
- ENET_PEER_STATE_DISCONNECT_LATER = 6,
- ENET_PEER_STATE_DISCONNECTING = 7,
- ENET_PEER_STATE_ACKNOWLEDGING_DISCONNECT = 8,
- ENET_PEER_STATE_ZOMBIE = 9
-} ENetPeerState;
-
-#ifndef ENET_BUFFER_MAXIMUM
-#define ENET_BUFFER_MAXIMUM (1 + 2 * ENET_PROTOCOL_MAXIMUM_PACKET_COMMANDS)
-#endif
-
-enum
-{
- ENET_HOST_RECEIVE_BUFFER_SIZE = 256 * 1024,
- ENET_HOST_SEND_BUFFER_SIZE = 256 * 1024,
- ENET_HOST_BANDWIDTH_THROTTLE_INTERVAL = 1000,
- ENET_HOST_DEFAULT_MTU = 1400,
- ENET_HOST_DEFAULT_MAXIMUM_PACKET_SIZE = 32 * 1024 * 1024,
- ENET_HOST_DEFAULT_MAXIMUM_WAITING_DATA = 32 * 1024 * 1024,
-
- ENET_PEER_DEFAULT_ROUND_TRIP_TIME = 500,
- ENET_PEER_DEFAULT_PACKET_THROTTLE = 32,
- ENET_PEER_PACKET_THROTTLE_SCALE = 32,
- ENET_PEER_PACKET_THROTTLE_COUNTER = 7,
- ENET_PEER_PACKET_THROTTLE_ACCELERATION = 2,
- ENET_PEER_PACKET_THROTTLE_DECELERATION = 2,
- ENET_PEER_PACKET_THROTTLE_INTERVAL = 5000,
- ENET_PEER_PACKET_LOSS_SCALE = (1 << 16),
- ENET_PEER_PACKET_LOSS_INTERVAL = 10000,
- ENET_PEER_WINDOW_SIZE_SCALE = 64 * 1024,
- ENET_PEER_TIMEOUT_LIMIT = 32,
- ENET_PEER_TIMEOUT_MINIMUM = 5000,
- ENET_PEER_TIMEOUT_MAXIMUM = 30000,
- ENET_PEER_PING_INTERVAL = 500,
- ENET_PEER_UNSEQUENCED_WINDOWS = 64,
- ENET_PEER_UNSEQUENCED_WINDOW_SIZE = 1024,
- ENET_PEER_FREE_UNSEQUENCED_WINDOWS = 32,
- ENET_PEER_RELIABLE_WINDOWS = 16,
- ENET_PEER_RELIABLE_WINDOW_SIZE = 0x1000,
- ENET_PEER_FREE_RELIABLE_WINDOWS = 8
-};
-
-typedef struct _ENetChannel
-{
- enet_uint16 outgoingReliableSequenceNumber;
- enet_uint16 outgoingUnreliableSequenceNumber;
- enet_uint16 usedReliableWindows;
- enet_uint16 reliableWindows [ENET_PEER_RELIABLE_WINDOWS];
- enet_uint16 incomingReliableSequenceNumber;
- enet_uint16 incomingUnreliableSequenceNumber;
- ENetList incomingReliableCommands;
- ENetList incomingUnreliableCommands;
-} ENetChannel;
-
-typedef enum _ENetPeerFlag
-{
- ENET_PEER_FLAG_NEEDS_DISPATCH = (1 << 0),
- ENET_PEER_FLAG_CONTINUE_SENDING = (1 << 1)
-} ENetPeerFlag;
-
-/**
- * An ENet peer which data packets may be sent or received from.
- *
- * No fields should be modified unless otherwise specified.
- */
-typedef struct _ENetPeer
-{
- ENetListNode dispatchList;
- struct _ENetHost * host;
- enet_uint16 outgoingPeerID;
- enet_uint16 incomingPeerID;
- enet_uint32 connectID;
- enet_uint8 outgoingSessionID;
- enet_uint8 incomingSessionID;
- ENetAddress address; /**< Internet address of the peer */
- void * data; /**< Application private data, may be freely modified */
- ENetPeerState state;
- ENetChannel * channels;
- size_t channelCount; /**< Number of channels allocated for communication with peer */
- enet_uint32 incomingBandwidth; /**< Downstream bandwidth of the client in bytes/second */
- enet_uint32 outgoingBandwidth; /**< Upstream bandwidth of the client in bytes/second */
- enet_uint32 incomingBandwidthThrottleEpoch;
- enet_uint32 outgoingBandwidthThrottleEpoch;
- enet_uint32 incomingDataTotal;
- enet_uint32 outgoingDataTotal;
- enet_uint32 lastSendTime;
- enet_uint32 lastReceiveTime;
- enet_uint32 nextTimeout;
- enet_uint32 earliestTimeout;
- enet_uint32 packetLossEpoch;
- enet_uint32 packetsSent;
- enet_uint32 packetsLost;
- enet_uint32 packetLoss; /**< mean packet loss of reliable packets as a ratio with respect to the constant ENET_PEER_PACKET_LOSS_SCALE */
- enet_uint32 packetLossVariance;
- enet_uint32 packetThrottle;
- enet_uint32 packetThrottleLimit;
- enet_uint32 packetThrottleCounter;
- enet_uint32 packetThrottleEpoch;
- enet_uint32 packetThrottleAcceleration;
- enet_uint32 packetThrottleDeceleration;
- enet_uint32 packetThrottleInterval;
- enet_uint32 pingInterval;
- enet_uint32 timeoutLimit;
- enet_uint32 timeoutMinimum;
- enet_uint32 timeoutMaximum;
- enet_uint32 lastRoundTripTime;
- enet_uint32 lowestRoundTripTime;
- enet_uint32 lastRoundTripTimeVariance;
- enet_uint32 highestRoundTripTimeVariance;
- enet_uint32 roundTripTime; /**< mean round trip time (RTT), in milliseconds, between sending a reliable packet and receiving its acknowledgement */
- enet_uint32 roundTripTimeVariance;
- enet_uint32 mtu;
- enet_uint32 windowSize;
- enet_uint32 reliableDataInTransit;
- enet_uint16 outgoingReliableSequenceNumber;
- ENetList acknowledgements;
- ENetList sentReliableCommands;
- ENetList outgoingSendReliableCommands;
- ENetList outgoingCommands;
- ENetList dispatchedCommands;
- enet_uint16 flags;
- enet_uint16 reserved;
- enet_uint16 incomingUnsequencedGroup;
- enet_uint16 outgoingUnsequencedGroup;
- enet_uint32 unsequencedWindow [ENET_PEER_UNSEQUENCED_WINDOW_SIZE / 32];
- enet_uint32 eventData;
- size_t totalWaitingData;
-} ENetPeer;
-
-/** An ENet packet compressor for compressing UDP packets before socket sends or receives.
- */
-typedef struct _ENetCompressor
-{
- /** Context data for the compressor. Must be non-NULL. */
- void * context;
- /** Compresses from inBuffers[0:inBufferCount-1], containing inLimit bytes, to outData, outputting at most outLimit bytes. Should return 0 on failure. */
- size_t (ENET_CALLBACK * compress) (void * context, const ENetBuffer * inBuffers, size_t inBufferCount, size_t inLimit, enet_uint8 * outData, size_t outLimit);
- /** Decompresses from inData, containing inLimit bytes, to outData, outputting at most outLimit bytes. Should return 0 on failure. */
- size_t (ENET_CALLBACK * decompress) (void * context, const enet_uint8 * inData, size_t inLimit, enet_uint8 * outData, size_t outLimit);
- /** Destroys the context when compression is disabled or the host is destroyed. May be NULL. */
- void (ENET_CALLBACK * destroy) (void * context);
-} ENetCompressor;
-
-/** Callback that computes the checksum of the data held in buffers[0:bufferCount-1] */
-typedef enet_uint32 (ENET_CALLBACK * ENetChecksumCallback) (const ENetBuffer * buffers, size_t bufferCount);
-
-/** Callback for intercepting received raw UDP packets. Should return 1 to intercept, 0 to ignore, or -1 to propagate an error. */
-typedef int (ENET_CALLBACK * ENetInterceptCallback) (struct _ENetHost * host, struct _ENetEvent * event);
-
-/** An ENet host for communicating with peers.
- *
- * No fields should be modified unless otherwise stated.
-
- @sa enet_host_create()
- @sa enet_host_destroy()
- @sa enet_host_connect()
- @sa enet_host_service()
- @sa enet_host_flush()
- @sa enet_host_broadcast()
- @sa enet_host_compress()
- @sa enet_host_compress_with_range_coder()
- @sa enet_host_channel_limit()
- @sa enet_host_bandwidth_limit()
- @sa enet_host_bandwidth_throttle()
- */
-typedef struct _ENetHost
-{
- ENetSocket socket;
- ENetAddress address; /**< Internet address of the host */
- enet_uint32 incomingBandwidth; /**< downstream bandwidth of the host */
- enet_uint32 outgoingBandwidth; /**< upstream bandwidth of the host */
- enet_uint32 bandwidthThrottleEpoch;
- enet_uint32 mtu;
- enet_uint32 randomSeed;
- int recalculateBandwidthLimits;
- ENetPeer * peers; /**< array of peers allocated for this host */
- size_t peerCount; /**< number of peers allocated for this host */
- size_t channelLimit; /**< maximum number of channels allowed for connected peers */
- enet_uint32 serviceTime;
- ENetList dispatchQueue;
- enet_uint32 totalQueued;
- size_t packetSize;
- enet_uint16 headerFlags;
- ENetProtocol commands [ENET_PROTOCOL_MAXIMUM_PACKET_COMMANDS];
- size_t commandCount;
- ENetBuffer buffers [ENET_BUFFER_MAXIMUM];
- size_t bufferCount;
- ENetChecksumCallback checksum; /**< callback the user can set to enable packet checksums for this host */
- ENetCompressor compressor;
- enet_uint8 packetData [2][ENET_PROTOCOL_MAXIMUM_MTU];
- ENetAddress receivedAddress;
- enet_uint8 * receivedData;
- size_t receivedDataLength;
- enet_uint32 totalSentData; /**< total data sent, user should reset to 0 as needed to prevent overflow */
- enet_uint32 totalSentPackets; /**< total UDP packets sent, user should reset to 0 as needed to prevent overflow */
- enet_uint32 totalReceivedData; /**< total data received, user should reset to 0 as needed to prevent overflow */
- enet_uint32 totalReceivedPackets; /**< total UDP packets received, user should reset to 0 as needed to prevent overflow */
- ENetInterceptCallback intercept; /**< callback the user can set to intercept received raw UDP packets */
- size_t connectedPeers;
- size_t bandwidthLimitedPeers;
- size_t duplicatePeers; /**< optional number of allowed peers from duplicate IPs, defaults to ENET_PROTOCOL_MAXIMUM_PEER_ID */
- size_t maximumPacketSize; /**< the maximum allowable packet size that may be sent or received on a peer */
- size_t maximumWaitingData; /**< the maximum aggregate amount of buffer space a peer may use waiting for packets to be delivered */
-} ENetHost;
-
-/**
- * An ENet event type, as specified in @ref ENetEvent.
- */
-typedef enum _ENetEventType
-{
- /** no event occurred within the specified time limit */
- ENET_EVENT_TYPE_NONE = 0,
-
- /** a connection request initiated by enet_host_connect has completed.
- * The peer field contains the peer which successfully connected.
- */
- ENET_EVENT_TYPE_CONNECT = 1,
-
- /** a peer has disconnected. This event is generated on a successful
- * completion of a disconnect initiated by enet_peer_disconnect, if
- * a peer has timed out, or if a connection request intialized by
- * enet_host_connect has timed out. The peer field contains the peer
- * which disconnected. The data field contains user supplied data
- * describing the disconnection, or 0, if none is available.
- */
- ENET_EVENT_TYPE_DISCONNECT = 2,
-
- /** a packet has been received from a peer. The peer field specifies the
- * peer which sent the packet. The channelID field specifies the channel
- * number upon which the packet was received. The packet field contains
- * the packet that was received; this packet must be destroyed with
- * enet_packet_destroy after use.
- */
- ENET_EVENT_TYPE_RECEIVE = 3
-} ENetEventType;
-
-/**
- * An ENet event as returned by enet_host_service().
-
- @sa enet_host_service
- */
-typedef struct _ENetEvent
-{
- ENetEventType type; /**< type of the event */
- ENetPeer * peer; /**< peer that generated a connect, disconnect or receive event */
- enet_uint8 channelID; /**< channel on the peer that generated the event, if appropriate */
- enet_uint32 data; /**< data associated with the event, if appropriate */
- ENetPacket * packet; /**< packet associated with the event, if appropriate */
-} ENetEvent;
-
-/** @defgroup global ENet global functions
- @{
-*/
-
-/**
- Initializes ENet globally. Must be called prior to using any functions in
- ENet.
- @returns 0 on success, < 0 on failure
-*/
-ENET_API int enet_initialize (void);
-
-/**
- Initializes ENet globally and supplies user-overridden callbacks. Must be called prior to using any functions in ENet. Do not use enet_initialize() if you use this variant. Make sure the ENetCallbacks structure is zeroed out so that any additional callbacks added in future versions will be properly ignored.
-
- @param version the constant ENET_VERSION should be supplied so ENet knows which version of ENetCallbacks struct to use
- @param inits user-overridden callbacks where any NULL callbacks will use ENet's defaults
- @returns 0 on success, < 0 on failure
-*/
-ENET_API int enet_initialize_with_callbacks (ENetVersion version, const ENetCallbacks * inits);
-
-/**
- Shuts down ENet globally. Should be called when a program that has
- initialized ENet exits.
-*/
-ENET_API void enet_deinitialize (void);
-
-/**
- Gives the linked version of the ENet library.
- @returns the version number
-*/
-ENET_API ENetVersion enet_linked_version (void);
-
-/** @} */
-
-/** @defgroup private ENet private implementation functions */
-
-/**
- Returns the wall-time in milliseconds. Its initial value is unspecified
- unless otherwise set.
- */
-ENET_API enet_uint32 enet_time_get (void);
-/**
- Sets the current wall-time in milliseconds.
- */
-ENET_API void enet_time_set (enet_uint32);
-
-/** @defgroup socket ENet socket functions
- @{
-*/
-ENET_API ENetSocket enet_socket_create (ENetSocketType);
-ENET_API int enet_socket_bind (ENetSocket, const ENetAddress *);
-ENET_API int enet_socket_get_address (ENetSocket, ENetAddress *);
-ENET_API int enet_socket_listen (ENetSocket, int);
-ENET_API ENetSocket enet_socket_accept (ENetSocket, ENetAddress *);
-ENET_API int enet_socket_connect (ENetSocket, const ENetAddress *);
-ENET_API int enet_socket_send (ENetSocket, const ENetAddress *, const ENetBuffer *, size_t);
-ENET_API int enet_socket_receive (ENetSocket, ENetAddress *, ENetBuffer *, size_t);
-ENET_API int enet_socket_wait (ENetSocket, enet_uint32 *, enet_uint32);
-ENET_API int enet_socket_set_option (ENetSocket, ENetSocketOption, int);
-ENET_API int enet_socket_get_option (ENetSocket, ENetSocketOption, int *);
-ENET_API int enet_socket_shutdown (ENetSocket, ENetSocketShutdown);
-ENET_API void enet_socket_destroy (ENetSocket);
-ENET_API int enet_socketset_select (ENetSocket, ENetSocketSet *, ENetSocketSet *, enet_uint32);
-
-/** @} */
-
-/** @defgroup Address ENet address functions
- @{
-*/
-
-/** Attempts to parse the printable form of the IP address in the parameter hostName
- and sets the host field in the address parameter if successful.
- @param address destination to store the parsed IP address
- @param hostName IP address to parse
- @retval 0 on success
- @retval < 0 on failure
- @returns the address of the given hostName in address on success
-*/
-ENET_API int enet_address_set_host_ip (ENetAddress * address, const char * hostName);
-
-/** Attempts to resolve the host named by the parameter hostName and sets
- the host field in the address parameter if successful.
- @param address destination to store resolved address
- @param hostName host name to lookup
- @retval 0 on success
- @retval < 0 on failure
- @returns the address of the given hostName in address on success
-*/
-ENET_API int enet_address_set_host (ENetAddress * address, const char * hostName);
-
-/** Gives the printable form of the IP address specified in the address parameter.
- @param address address printed
- @param hostName destination for name, must not be NULL
- @param nameLength maximum length of hostName.
- @returns the null-terminated name of the host in hostName on success
- @retval 0 on success
- @retval < 0 on failure
-*/
-ENET_API int enet_address_get_host_ip (const ENetAddress * address, char * hostName, size_t nameLength);
-
-/** Attempts to do a reverse lookup of the host field in the address parameter.
- @param address address used for reverse lookup
- @param hostName destination for name, must not be NULL
- @param nameLength maximum length of hostName.
- @returns the null-terminated name of the host in hostName on success
- @retval 0 on success
- @retval < 0 on failure
-*/
-ENET_API int enet_address_get_host (const ENetAddress * address, char * hostName, size_t nameLength);
-
-/** @} */
-
-ENET_API ENetPacket * enet_packet_create (const void *, size_t, enet_uint32);
-ENET_API void enet_packet_destroy (ENetPacket *);
-ENET_API int enet_packet_resize (ENetPacket *, size_t);
-ENET_API enet_uint32 enet_crc32 (const ENetBuffer *, size_t);
-
-ENET_API ENetHost * enet_host_create (const ENetAddress *, size_t, size_t, enet_uint32, enet_uint32);
-ENET_API void enet_host_destroy (ENetHost *);
-ENET_API ENetPeer * enet_host_connect (ENetHost *, const ENetAddress *, size_t, enet_uint32);
-ENET_API int enet_host_check_events (ENetHost *, ENetEvent *);
-ENET_API int enet_host_service (ENetHost *, ENetEvent *, enet_uint32);
-ENET_API void enet_host_flush (ENetHost *);
-ENET_API void enet_host_broadcast (ENetHost *, enet_uint8, ENetPacket *);
-ENET_API void enet_host_compress (ENetHost *, const ENetCompressor *);
-ENET_API int enet_host_compress_with_range_coder (ENetHost * host);
-ENET_API void enet_host_channel_limit (ENetHost *, size_t);
-ENET_API void enet_host_bandwidth_limit (ENetHost *, enet_uint32, enet_uint32);
-extern void enet_host_bandwidth_throttle (ENetHost *);
-extern enet_uint32 enet_host_random_seed (void);
-extern enet_uint32 enet_host_random (ENetHost *);
-
-ENET_API int enet_peer_send (ENetPeer *, enet_uint8, ENetPacket *);
-ENET_API ENetPacket * enet_peer_receive (ENetPeer *, enet_uint8 * channelID);
-ENET_API void enet_peer_ping (ENetPeer *);
-ENET_API void enet_peer_ping_interval (ENetPeer *, enet_uint32);
-ENET_API void enet_peer_timeout (ENetPeer *, enet_uint32, enet_uint32, enet_uint32);
-ENET_API void enet_peer_reset (ENetPeer *);
-ENET_API void enet_peer_disconnect (ENetPeer *, enet_uint32);
-ENET_API void enet_peer_disconnect_now (ENetPeer *, enet_uint32);
-ENET_API void enet_peer_disconnect_later (ENetPeer *, enet_uint32);
-ENET_API void enet_peer_throttle_configure (ENetPeer *, enet_uint32, enet_uint32, enet_uint32);
-extern int enet_peer_throttle (ENetPeer *, enet_uint32);
-extern void enet_peer_reset_queues (ENetPeer *);
-extern int enet_peer_has_outgoing_commands (ENetPeer *);
-extern void enet_peer_setup_outgoing_command (ENetPeer *, ENetOutgoingCommand *);
-extern ENetOutgoingCommand * enet_peer_queue_outgoing_command (ENetPeer *, const ENetProtocol *, ENetPacket *, enet_uint32, enet_uint16);
-extern ENetIncomingCommand * enet_peer_queue_incoming_command (ENetPeer *, const ENetProtocol *, const void *, size_t, enet_uint32, enet_uint32);
-extern ENetAcknowledgement * enet_peer_queue_acknowledgement (ENetPeer *, const ENetProtocol *, enet_uint16);
-extern void enet_peer_dispatch_incoming_unreliable_commands (ENetPeer *, ENetChannel *, ENetIncomingCommand *);
-extern void enet_peer_dispatch_incoming_reliable_commands (ENetPeer *, ENetChannel *, ENetIncomingCommand *);
-extern void enet_peer_on_connect (ENetPeer *);
-extern void enet_peer_on_disconnect (ENetPeer *);
-
-ENET_API void * enet_range_coder_create (void);
-ENET_API void enet_range_coder_destroy (void *);
-ENET_API size_t enet_range_coder_compress (void *, const ENetBuffer *, size_t, size_t, enet_uint8 *, size_t);
-ENET_API size_t enet_range_coder_decompress (void *, const enet_uint8 *, size_t, enet_uint8 *, size_t);
-
-extern size_t enet_protocol_command_size (enet_uint8);
-
-#ifdef __cplusplus
-}
-#endif
-
-#endif /* __ENET_ENET_H__ */
-
diff --git a/Externals/enet/include/enet/list.h b/Externals/enet/include/enet/list.h
deleted file mode 100644
index d7b2600848..0000000000
--- a/Externals/enet/include/enet/list.h
+++ /dev/null
@@ -1,43 +0,0 @@
-/**
- @file list.h
- @brief ENet list management
-*/
-#ifndef __ENET_LIST_H__
-#define __ENET_LIST_H__
-
-#include
-
-typedef struct _ENetListNode
-{
- struct _ENetListNode * next;
- struct _ENetListNode * previous;
-} ENetListNode;
-
-typedef ENetListNode * ENetListIterator;
-
-typedef struct _ENetList
-{
- ENetListNode sentinel;
-} ENetList;
-
-extern void enet_list_clear (ENetList *);
-
-extern ENetListIterator enet_list_insert (ENetListIterator, void *);
-extern void * enet_list_remove (ENetListIterator);
-extern ENetListIterator enet_list_move (ENetListIterator, void *, void *);
-
-extern size_t enet_list_size (ENetList *);
-
-#define enet_list_begin(list) ((list) -> sentinel.next)
-#define enet_list_end(list) (& (list) -> sentinel)
-
-#define enet_list_empty(list) (enet_list_begin (list) == enet_list_end (list))
-
-#define enet_list_next(iterator) ((iterator) -> next)
-#define enet_list_previous(iterator) ((iterator) -> previous)
-
-#define enet_list_front(list) ((void *) (list) -> sentinel.next)
-#define enet_list_back(list) ((void *) (list) -> sentinel.previous)
-
-#endif /* __ENET_LIST_H__ */
-
diff --git a/Externals/enet/include/enet/protocol.h b/Externals/enet/include/enet/protocol.h
deleted file mode 100644
index f8c73d8a66..0000000000
--- a/Externals/enet/include/enet/protocol.h
+++ /dev/null
@@ -1,198 +0,0 @@
-/**
- @file protocol.h
- @brief ENet protocol
-*/
-#ifndef __ENET_PROTOCOL_H__
-#define __ENET_PROTOCOL_H__
-
-#include "enet/types.h"
-
-enum
-{
- ENET_PROTOCOL_MINIMUM_MTU = 576,
- ENET_PROTOCOL_MAXIMUM_MTU = 4096,
- ENET_PROTOCOL_MAXIMUM_PACKET_COMMANDS = 32,
- ENET_PROTOCOL_MINIMUM_WINDOW_SIZE = 4096,
- ENET_PROTOCOL_MAXIMUM_WINDOW_SIZE = 65536,
- ENET_PROTOCOL_MINIMUM_CHANNEL_COUNT = 1,
- ENET_PROTOCOL_MAXIMUM_CHANNEL_COUNT = 255,
- ENET_PROTOCOL_MAXIMUM_PEER_ID = 0xFFF,
- ENET_PROTOCOL_MAXIMUM_FRAGMENT_COUNT = 1024 * 1024
-};
-
-typedef enum _ENetProtocolCommand
-{
- ENET_PROTOCOL_COMMAND_NONE = 0,
- ENET_PROTOCOL_COMMAND_ACKNOWLEDGE = 1,
- ENET_PROTOCOL_COMMAND_CONNECT = 2,
- ENET_PROTOCOL_COMMAND_VERIFY_CONNECT = 3,
- ENET_PROTOCOL_COMMAND_DISCONNECT = 4,
- ENET_PROTOCOL_COMMAND_PING = 5,
- ENET_PROTOCOL_COMMAND_SEND_RELIABLE = 6,
- ENET_PROTOCOL_COMMAND_SEND_UNRELIABLE = 7,
- ENET_PROTOCOL_COMMAND_SEND_FRAGMENT = 8,
- ENET_PROTOCOL_COMMAND_SEND_UNSEQUENCED = 9,
- ENET_PROTOCOL_COMMAND_BANDWIDTH_LIMIT = 10,
- ENET_PROTOCOL_COMMAND_THROTTLE_CONFIGURE = 11,
- ENET_PROTOCOL_COMMAND_SEND_UNRELIABLE_FRAGMENT = 12,
- ENET_PROTOCOL_COMMAND_COUNT = 13,
-
- ENET_PROTOCOL_COMMAND_MASK = 0x0F
-} ENetProtocolCommand;
-
-typedef enum _ENetProtocolFlag
-{
- ENET_PROTOCOL_COMMAND_FLAG_ACKNOWLEDGE = (1 << 7),
- ENET_PROTOCOL_COMMAND_FLAG_UNSEQUENCED = (1 << 6),
-
- ENET_PROTOCOL_HEADER_FLAG_COMPRESSED = (1 << 14),
- ENET_PROTOCOL_HEADER_FLAG_SENT_TIME = (1 << 15),
- ENET_PROTOCOL_HEADER_FLAG_MASK = ENET_PROTOCOL_HEADER_FLAG_COMPRESSED | ENET_PROTOCOL_HEADER_FLAG_SENT_TIME,
-
- ENET_PROTOCOL_HEADER_SESSION_MASK = (3 << 12),
- ENET_PROTOCOL_HEADER_SESSION_SHIFT = 12
-} ENetProtocolFlag;
-
-#ifdef _MSC_VER
-#pragma pack(push, 1)
-#define ENET_PACKED
-#elif defined(__GNUC__) || defined(__clang__)
-#define ENET_PACKED __attribute__ ((packed))
-#else
-#define ENET_PACKED
-#endif
-
-typedef struct _ENetProtocolHeader
-{
- enet_uint16 peerID;
- enet_uint16 sentTime;
-} ENET_PACKED ENetProtocolHeader;
-
-typedef struct _ENetProtocolCommandHeader
-{
- enet_uint8 command;
- enet_uint8 channelID;
- enet_uint16 reliableSequenceNumber;
-} ENET_PACKED ENetProtocolCommandHeader;
-
-typedef struct _ENetProtocolAcknowledge
-{
- ENetProtocolCommandHeader header;
- enet_uint16 receivedReliableSequenceNumber;
- enet_uint16 receivedSentTime;
-} ENET_PACKED ENetProtocolAcknowledge;
-
-typedef struct _ENetProtocolConnect
-{
- ENetProtocolCommandHeader header;
- enet_uint16 outgoingPeerID;
- enet_uint8 incomingSessionID;
- enet_uint8 outgoingSessionID;
- enet_uint32 mtu;
- enet_uint32 windowSize;
- enet_uint32 channelCount;
- enet_uint32 incomingBandwidth;
- enet_uint32 outgoingBandwidth;
- enet_uint32 packetThrottleInterval;
- enet_uint32 packetThrottleAcceleration;
- enet_uint32 packetThrottleDeceleration;
- enet_uint32 connectID;
- enet_uint32 data;
-} ENET_PACKED ENetProtocolConnect;
-
-typedef struct _ENetProtocolVerifyConnect
-{
- ENetProtocolCommandHeader header;
- enet_uint16 outgoingPeerID;
- enet_uint8 incomingSessionID;
- enet_uint8 outgoingSessionID;
- enet_uint32 mtu;
- enet_uint32 windowSize;
- enet_uint32 channelCount;
- enet_uint32 incomingBandwidth;
- enet_uint32 outgoingBandwidth;
- enet_uint32 packetThrottleInterval;
- enet_uint32 packetThrottleAcceleration;
- enet_uint32 packetThrottleDeceleration;
- enet_uint32 connectID;
-} ENET_PACKED ENetProtocolVerifyConnect;
-
-typedef struct _ENetProtocolBandwidthLimit
-{
- ENetProtocolCommandHeader header;
- enet_uint32 incomingBandwidth;
- enet_uint32 outgoingBandwidth;
-} ENET_PACKED ENetProtocolBandwidthLimit;
-
-typedef struct _ENetProtocolThrottleConfigure
-{
- ENetProtocolCommandHeader header;
- enet_uint32 packetThrottleInterval;
- enet_uint32 packetThrottleAcceleration;
- enet_uint32 packetThrottleDeceleration;
-} ENET_PACKED ENetProtocolThrottleConfigure;
-
-typedef struct _ENetProtocolDisconnect
-{
- ENetProtocolCommandHeader header;
- enet_uint32 data;
-} ENET_PACKED ENetProtocolDisconnect;
-
-typedef struct _ENetProtocolPing
-{
- ENetProtocolCommandHeader header;
-} ENET_PACKED ENetProtocolPing;
-
-typedef struct _ENetProtocolSendReliable
-{
- ENetProtocolCommandHeader header;
- enet_uint16 dataLength;
-} ENET_PACKED ENetProtocolSendReliable;
-
-typedef struct _ENetProtocolSendUnreliable
-{
- ENetProtocolCommandHeader header;
- enet_uint16 unreliableSequenceNumber;
- enet_uint16 dataLength;
-} ENET_PACKED ENetProtocolSendUnreliable;
-
-typedef struct _ENetProtocolSendUnsequenced
-{
- ENetProtocolCommandHeader header;
- enet_uint16 unsequencedGroup;
- enet_uint16 dataLength;
-} ENET_PACKED ENetProtocolSendUnsequenced;
-
-typedef struct _ENetProtocolSendFragment
-{
- ENetProtocolCommandHeader header;
- enet_uint16 startSequenceNumber;
- enet_uint16 dataLength;
- enet_uint32 fragmentCount;
- enet_uint32 fragmentNumber;
- enet_uint32 totalLength;
- enet_uint32 fragmentOffset;
-} ENET_PACKED ENetProtocolSendFragment;
-
-typedef union _ENetProtocol
-{
- ENetProtocolCommandHeader header;
- ENetProtocolAcknowledge acknowledge;
- ENetProtocolConnect connect;
- ENetProtocolVerifyConnect verifyConnect;
- ENetProtocolDisconnect disconnect;
- ENetProtocolPing ping;
- ENetProtocolSendReliable sendReliable;
- ENetProtocolSendUnreliable sendUnreliable;
- ENetProtocolSendUnsequenced sendUnsequenced;
- ENetProtocolSendFragment sendFragment;
- ENetProtocolBandwidthLimit bandwidthLimit;
- ENetProtocolThrottleConfigure throttleConfigure;
-} ENET_PACKED ENetProtocol;
-
-#ifdef _MSC_VER
-#pragma pack(pop)
-#endif
-
-#endif /* __ENET_PROTOCOL_H__ */
-
diff --git a/Externals/enet/include/enet/time.h b/Externals/enet/include/enet/time.h
deleted file mode 100644
index c82a546035..0000000000
--- a/Externals/enet/include/enet/time.h
+++ /dev/null
@@ -1,18 +0,0 @@
-/**
- @file time.h
- @brief ENet time constants and macros
-*/
-#ifndef __ENET_TIME_H__
-#define __ENET_TIME_H__
-
-#define ENET_TIME_OVERFLOW 86400000
-
-#define ENET_TIME_LESS(a, b) ((a) - (b) >= ENET_TIME_OVERFLOW)
-#define ENET_TIME_GREATER(a, b) ((b) - (a) >= ENET_TIME_OVERFLOW)
-#define ENET_TIME_LESS_EQUAL(a, b) (! ENET_TIME_GREATER (a, b))
-#define ENET_TIME_GREATER_EQUAL(a, b) (! ENET_TIME_LESS (a, b))
-
-#define ENET_TIME_DIFFERENCE(a, b) ((a) - (b) >= ENET_TIME_OVERFLOW ? (b) - (a) : (a) - (b))
-
-#endif /* __ENET_TIME_H__ */
-
diff --git a/Externals/enet/include/enet/types.h b/Externals/enet/include/enet/types.h
deleted file mode 100644
index ab010a4b13..0000000000
--- a/Externals/enet/include/enet/types.h
+++ /dev/null
@@ -1,13 +0,0 @@
-/**
- @file types.h
- @brief type definitions for ENet
-*/
-#ifndef __ENET_TYPES_H__
-#define __ENET_TYPES_H__
-
-typedef unsigned char enet_uint8; /**< unsigned 8-bit type */
-typedef unsigned short enet_uint16; /**< unsigned 16-bit type */
-typedef unsigned int enet_uint32; /**< unsigned 32-bit type */
-
-#endif /* __ENET_TYPES_H__ */
-
diff --git a/Externals/enet/include/enet/unix.h b/Externals/enet/include/enet/unix.h
deleted file mode 100644
index b55be33103..0000000000
--- a/Externals/enet/include/enet/unix.h
+++ /dev/null
@@ -1,48 +0,0 @@
-/**
- @file unix.h
- @brief ENet Unix header
-*/
-#ifndef __ENET_UNIX_H__
-#define __ENET_UNIX_H__
-
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-
-#ifdef MSG_MAXIOVLEN
-#define ENET_BUFFER_MAXIMUM MSG_MAXIOVLEN
-#endif
-
-typedef int ENetSocket;
-
-#define ENET_SOCKET_NULL -1
-
-#define ENET_HOST_TO_NET_16(value) (htons (value)) /**< macro that converts host to net byte-order of a 16-bit value */
-#define ENET_HOST_TO_NET_32(value) (htonl (value)) /**< macro that converts host to net byte-order of a 32-bit value */
-
-#define ENET_NET_TO_HOST_16(value) (ntohs (value)) /**< macro that converts net to host byte-order of a 16-bit value */
-#define ENET_NET_TO_HOST_32(value) (ntohl (value)) /**< macro that converts net to host byte-order of a 32-bit value */
-
-typedef struct
-{
- void * data;
- size_t dataLength;
-} ENetBuffer;
-
-#define ENET_CALLBACK
-
-#define ENET_API extern
-
-typedef fd_set ENetSocketSet;
-
-#define ENET_SOCKETSET_EMPTY(sockset) FD_ZERO (& (sockset))
-#define ENET_SOCKETSET_ADD(sockset, socket) FD_SET (socket, & (sockset))
-#define ENET_SOCKETSET_REMOVE(sockset, socket) FD_CLR (socket, & (sockset))
-#define ENET_SOCKETSET_CHECK(sockset, socket) FD_ISSET (socket, & (sockset))
-
-#endif /* __ENET_UNIX_H__ */
-
diff --git a/Externals/enet/include/enet/utility.h b/Externals/enet/include/enet/utility.h
deleted file mode 100644
index b04bb7a5b3..0000000000
--- a/Externals/enet/include/enet/utility.h
+++ /dev/null
@@ -1,13 +0,0 @@
-/**
- @file utility.h
- @brief ENet utility header
-*/
-#ifndef __ENET_UTILITY_H__
-#define __ENET_UTILITY_H__
-
-#define ENET_MAX(x, y) ((x) > (y) ? (x) : (y))
-#define ENET_MIN(x, y) ((x) < (y) ? (x) : (y))
-#define ENET_DIFFERENCE(x, y) ((x) < (y) ? (y) - (x) : (x) - (y))
-
-#endif /* __ENET_UTILITY_H__ */
-
diff --git a/Externals/enet/include/enet/win32.h b/Externals/enet/include/enet/win32.h
deleted file mode 100644
index 6fbd7c02c8..0000000000
--- a/Externals/enet/include/enet/win32.h
+++ /dev/null
@@ -1,59 +0,0 @@
-/**
- @file win32.h
- @brief ENet Win32 header
-*/
-#ifndef __ENET_WIN32_H__
-#define __ENET_WIN32_H__
-
-#ifdef _MSC_VER
-#ifdef ENET_BUILDING_LIB
-#pragma warning (disable: 4267) // size_t to int conversion
-#pragma warning (disable: 4244) // 64bit to 32bit int
-#pragma warning (disable: 4018) // signed/unsigned mismatch
-#pragma warning (disable: 4146) // unary minus operator applied to unsigned type
-#define _CRT_SECURE_NO_DEPRECATE
-#define _CRT_SECURE_NO_WARNINGS
-#endif
-#endif
-
-#include
-#include
-
-typedef SOCKET ENetSocket;
-
-#define ENET_SOCKET_NULL INVALID_SOCKET
-
-#define ENET_HOST_TO_NET_16(value) (htons (value))
-#define ENET_HOST_TO_NET_32(value) (htonl (value))
-
-#define ENET_NET_TO_HOST_16(value) (ntohs (value))
-#define ENET_NET_TO_HOST_32(value) (ntohl (value))
-
-typedef struct
-{
- size_t dataLength;
- void * data;
-} ENetBuffer;
-
-#define ENET_CALLBACK __cdecl
-
-#ifdef ENET_DLL
-#ifdef ENET_BUILDING_LIB
-#define ENET_API __declspec( dllexport )
-#else
-#define ENET_API __declspec( dllimport )
-#endif /* ENET_BUILDING_LIB */
-#else /* !ENET_DLL */
-#define ENET_API extern
-#endif /* ENET_DLL */
-
-typedef fd_set ENetSocketSet;
-
-#define ENET_SOCKETSET_EMPTY(sockset) FD_ZERO (& (sockset))
-#define ENET_SOCKETSET_ADD(sockset, socket) FD_SET (socket, & (sockset))
-#define ENET_SOCKETSET_REMOVE(sockset, socket) FD_CLR (socket, & (sockset))
-#define ENET_SOCKETSET_CHECK(sockset, socket) FD_ISSET (socket, & (sockset))
-
-#endif /* __ENET_WIN32_H__ */
-
-
diff --git a/Externals/enet/libenet.pc.in b/Externals/enet/libenet.pc.in
deleted file mode 100644
index 7af85adbf4..0000000000
--- a/Externals/enet/libenet.pc.in
+++ /dev/null
@@ -1,10 +0,0 @@
-prefix=@prefix@
-exec_prefix=@exec_prefix@
-libdir=@libdir@
-includedir=@includedir@
-
-Name: @PACKAGE_NAME@
-Description: Low-latency UDP networking library supporting optional reliability
-Version: @PACKAGE_VERSION@
-Cflags: -I${includedir}
-Libs: -L${libdir} -lenet
diff --git a/Externals/enet/list.c b/Externals/enet/list.c
deleted file mode 100644
index 1c1a8dfaaf..0000000000
--- a/Externals/enet/list.c
+++ /dev/null
@@ -1,75 +0,0 @@
-/**
- @file list.c
- @brief ENet linked list functions
-*/
-#define ENET_BUILDING_LIB 1
-#include "enet/enet.h"
-
-/**
- @defgroup list ENet linked list utility functions
- @ingroup private
- @{
-*/
-void
-enet_list_clear (ENetList * list)
-{
- list -> sentinel.next = & list -> sentinel;
- list -> sentinel.previous = & list -> sentinel;
-}
-
-ENetListIterator
-enet_list_insert (ENetListIterator position, void * data)
-{
- ENetListIterator result = (ENetListIterator) data;
-
- result -> previous = position -> previous;
- result -> next = position;
-
- result -> previous -> next = result;
- position -> previous = result;
-
- return result;
-}
-
-void *
-enet_list_remove (ENetListIterator position)
-{
- position -> previous -> next = position -> next;
- position -> next -> previous = position -> previous;
-
- return position;
-}
-
-ENetListIterator
-enet_list_move (ENetListIterator position, void * dataFirst, void * dataLast)
-{
- ENetListIterator first = (ENetListIterator) dataFirst,
- last = (ENetListIterator) dataLast;
-
- first -> previous -> next = last -> next;
- last -> next -> previous = first -> previous;
-
- first -> previous = position -> previous;
- last -> next = position;
-
- first -> previous -> next = first;
- position -> previous = last;
-
- return first;
-}
-
-size_t
-enet_list_size (ENetList * list)
-{
- size_t size = 0;
- ENetListIterator position;
-
- for (position = enet_list_begin (list);
- position != enet_list_end (list);
- position = enet_list_next (position))
- ++ size;
-
- return size;
-}
-
-/** @} */
diff --git a/Externals/enet/m4/.keep b/Externals/enet/m4/.keep
deleted file mode 100644
index e69de29bb2..0000000000
diff --git a/Externals/enet/packet.c b/Externals/enet/packet.c
deleted file mode 100644
index d51c640404..0000000000
--- a/Externals/enet/packet.c
+++ /dev/null
@@ -1,158 +0,0 @@
-/**
- @file packet.c
- @brief ENet packet management functions
-*/
-#include
-#define ENET_BUILDING_LIB 1
-#include "enet/enet.h"
-
-/** @defgroup Packet ENet packet functions
- @{
-*/
-
-/** Creates a packet that may be sent to a peer.
- @param data initial contents of the packet's data; the packet's data will remain uninitialized if data is NULL.
- @param dataLength size of the data allocated for this packet
- @param flags flags for this packet as described for the ENetPacket structure.
- @returns the packet on success, NULL on failure
-*/
-ENetPacket *
-enet_packet_create (const void * data, size_t dataLength, enet_uint32 flags)
-{
- ENetPacket * packet = (ENetPacket *) enet_malloc (sizeof (ENetPacket));
- if (packet == NULL)
- return NULL;
-
- if (flags & ENET_PACKET_FLAG_NO_ALLOCATE)
- packet -> data = (enet_uint8 *) data;
- else
- if (dataLength <= 0)
- packet -> data = NULL;
- else
- {
- packet -> data = (enet_uint8 *) enet_malloc (dataLength);
- if (packet -> data == NULL)
- {
- enet_free (packet);
- return NULL;
- }
-
- if (data != NULL)
- memcpy (packet -> data, data, dataLength);
- }
-
- packet -> referenceCount = 0;
- packet -> flags = flags;
- packet -> dataLength = dataLength;
- packet -> freeCallback = NULL;
- packet -> userData = NULL;
-
- return packet;
-}
-
-/** Destroys the packet and deallocates its data.
- @param packet packet to be destroyed
-*/
-void
-enet_packet_destroy (ENetPacket * packet)
-{
- if (packet == NULL)
- return;
-
- if (packet -> freeCallback != NULL)
- (* packet -> freeCallback) (packet);
- if (! (packet -> flags & ENET_PACKET_FLAG_NO_ALLOCATE) &&
- packet -> data != NULL)
- enet_free (packet -> data);
- enet_free (packet);
-}
-
-/** Attempts to resize the data in the packet to length specified in the
- dataLength parameter
- @param packet packet to resize
- @param dataLength new size for the packet data
- @returns 0 on success, < 0 on failure
-*/
-int
-enet_packet_resize (ENetPacket * packet, size_t dataLength)
-{
- enet_uint8 * newData;
-
- if (dataLength <= packet -> dataLength || (packet -> flags & ENET_PACKET_FLAG_NO_ALLOCATE))
- {
- packet -> dataLength = dataLength;
-
- return 0;
- }
-
- newData = (enet_uint8 *) enet_malloc (dataLength);
- if (newData == NULL)
- return -1;
-
- memcpy (newData, packet -> data, packet -> dataLength);
- enet_free (packet -> data);
-
- packet -> data = newData;
- packet -> dataLength = dataLength;
-
- return 0;
-}
-
-static const enet_uint32 crcTable [256] =
-{
- 0, 0x77073096, 0xEE0E612C, 0x990951BA, 0x076DC419, 0x706AF48F, 0xE963A535, 0x9E6495A3,
- 0x0EDB8832, 0x79DCB8A4, 0xE0D5E91E, 0x97D2D988, 0x09B64C2B, 0x7EB17CBD, 0xE7B82D07, 0x90BF1D91,
- 0x1DB71064, 0x6AB020F2, 0xF3B97148, 0x84BE41DE, 0x1ADAD47D, 0x6DDDE4EB, 0xF4D4B551, 0x83D385C7,
- 0x136C9856, 0x646BA8C0, 0xFD62F97A, 0x8A65C9EC, 0x14015C4F, 0x63066CD9, 0xFA0F3D63, 0x8D080DF5,
- 0x3B6E20C8, 0x4C69105E, 0xD56041E4, 0xA2677172, 0x3C03E4D1, 0x4B04D447, 0xD20D85FD, 0xA50AB56B,
- 0x35B5A8FA, 0x42B2986C, 0xDBBBC9D6, 0xACBCF940, 0x32D86CE3, 0x45DF5C75, 0xDCD60DCF, 0xABD13D59,
- 0x26D930AC, 0x51DE003A, 0xC8D75180, 0xBFD06116, 0x21B4F4B5, 0x56B3C423, 0xCFBA9599, 0xB8BDA50F,
- 0x2802B89E, 0x5F058808, 0xC60CD9B2, 0xB10BE924, 0x2F6F7C87, 0x58684C11, 0xC1611DAB, 0xB6662D3D,
- 0x76DC4190, 0x01DB7106, 0x98D220BC, 0xEFD5102A, 0x71B18589, 0x06B6B51F, 0x9FBFE4A5, 0xE8B8D433,
- 0x7807C9A2, 0x0F00F934, 0x9609A88E, 0xE10E9818, 0x7F6A0DBB, 0x086D3D2D, 0x91646C97, 0xE6635C01,
- 0x6B6B51F4, 0x1C6C6162, 0x856530D8, 0xF262004E, 0x6C0695ED, 0x1B01A57B, 0x8208F4C1, 0xF50FC457,
- 0x65B0D9C6, 0x12B7E950, 0x8BBEB8EA, 0xFCB9887C, 0x62DD1DDF, 0x15DA2D49, 0x8CD37CF3, 0xFBD44C65,
- 0x4DB26158, 0x3AB551CE, 0xA3BC0074, 0xD4BB30E2, 0x4ADFA541, 0x3DD895D7, 0xA4D1C46D, 0xD3D6F4FB,
- 0x4369E96A, 0x346ED9FC, 0xAD678846, 0xDA60B8D0, 0x44042D73, 0x33031DE5, 0xAA0A4C5F, 0xDD0D7CC9,
- 0x5005713C, 0x270241AA, 0xBE0B1010, 0xC90C2086, 0x5768B525, 0x206F85B3, 0xB966D409, 0xCE61E49F,
- 0x5EDEF90E, 0x29D9C998, 0xB0D09822, 0xC7D7A8B4, 0x59B33D17, 0x2EB40D81, 0xB7BD5C3B, 0xC0BA6CAD,
- 0xEDB88320, 0x9ABFB3B6, 0x03B6E20C, 0x74B1D29A, 0xEAD54739, 0x9DD277AF, 0x04DB2615, 0x73DC1683,
- 0xE3630B12, 0x94643B84, 0x0D6D6A3E, 0x7A6A5AA8, 0xE40ECF0B, 0x9309FF9D, 0x0A00AE27, 0x7D079EB1,
- 0xF00F9344, 0x8708A3D2, 0x1E01F268, 0x6906C2FE, 0xF762575D, 0x806567CB, 0x196C3671, 0x6E6B06E7,
- 0xFED41B76, 0x89D32BE0, 0x10DA7A5A, 0x67DD4ACC, 0xF9B9DF6F, 0x8EBEEFF9, 0x17B7BE43, 0x60B08ED5,
- 0xD6D6A3E8, 0xA1D1937E, 0x38D8C2C4, 0x4FDFF252, 0xD1BB67F1, 0xA6BC5767, 0x3FB506DD, 0x48B2364B,
- 0xD80D2BDA, 0xAF0A1B4C, 0x36034AF6, 0x41047A60, 0xDF60EFC3, 0xA867DF55, 0x316E8EEF, 0x4669BE79,
- 0xCB61B38C, 0xBC66831A, 0x256FD2A0, 0x5268E236, 0xCC0C7795, 0xBB0B4703, 0x220216B9, 0x5505262F,
- 0xC5BA3BBE, 0xB2BD0B28, 0x2BB45A92, 0x5CB36A04, 0xC2D7FFA7, 0xB5D0CF31, 0x2CD99E8B, 0x5BDEAE1D,
- 0x9B64C2B0, 0xEC63F226, 0x756AA39C, 0x026D930A, 0x9C0906A9, 0xEB0E363F, 0x72076785, 0x5005713,
- 0x95BF4A82, 0xE2B87A14, 0x7BB12BAE, 0x0CB61B38, 0x92D28E9B, 0xE5D5BE0D, 0x7CDCEFB7, 0xBDBDF21,
- 0x86D3D2D4, 0xF1D4E242, 0x68DDB3F8, 0x1FDA836E, 0x81BE16CD, 0xF6B9265B, 0x6FB077E1, 0x18B74777,
- 0x88085AE6, 0xFF0F6A70, 0x66063BCA, 0x11010B5C, 0x8F659EFF, 0xF862AE69, 0x616BFFD3, 0x166CCF45,
- 0xA00AE278, 0xD70DD2EE, 0x4E048354, 0x3903B3C2, 0xA7672661, 0xD06016F7, 0x4969474D, 0x3E6E77DB,
- 0xAED16A4A, 0xD9D65ADC, 0x40DF0B66, 0x37D83BF0, 0xA9BCAE53, 0xDEBB9EC5, 0x47B2CF7F, 0x30B5FFE9,
- 0xBDBDF21C, 0xCABAC28A, 0x53B39330, 0x24B4A3A6, 0xBAD03605, 0xCDD70693, 0x54DE5729, 0x23D967BF,
- 0xB3667A2E, 0xC4614AB8, 0x5D681B02, 0x2A6F2B94, 0xB40BBE37, 0xC30C8EA1, 0x5A05DF1B, 0x2D02EF8D
-};
-
-enet_uint32
-enet_crc32 (const ENetBuffer * buffers, size_t bufferCount)
-{
- enet_uint32 crc = 0xFFFFFFFF;
-
- while (bufferCount -- > 0)
- {
- const enet_uint8 * data = (const enet_uint8 *) buffers -> data,
- * dataEnd = & data [buffers -> dataLength];
-
- while (data < dataEnd)
- {
- crc = (crc >> 8) ^ crcTable [(crc & 0xFF) ^ *data++];
- }
-
- ++ buffers;
- }
-
- return ENET_HOST_TO_NET_32 (~ crc);
-}
-
-/** @} */
diff --git a/Externals/enet/peer.c b/Externals/enet/peer.c
deleted file mode 100644
index a7ac012079..0000000000
--- a/Externals/enet/peer.c
+++ /dev/null
@@ -1,1027 +0,0 @@
-/**
- @file peer.c
- @brief ENet peer management functions
-*/
-#include
-#define ENET_BUILDING_LIB 1
-#include "enet/enet.h"
-
-/** @defgroup peer ENet peer functions
- @{
-*/
-
-/** Configures throttle parameter for a peer.
-
- Unreliable packets are dropped by ENet in response to the varying conditions
- of the Internet connection to the peer. The throttle represents a probability
- that an unreliable packet should not be dropped and thus sent by ENet to the peer.
- The lowest mean round trip time from the sending of a reliable packet to the
- receipt of its acknowledgement is measured over an amount of time specified by
- the interval parameter in milliseconds. If a measured round trip time happens to
- be significantly less than the mean round trip time measured over the interval,
- then the throttle probability is increased to allow more traffic by an amount
- specified in the acceleration parameter, which is a ratio to the ENET_PEER_PACKET_THROTTLE_SCALE
- constant. If a measured round trip time happens to be significantly greater than
- the mean round trip time measured over the interval, then the throttle probability
- is decreased to limit traffic by an amount specified in the deceleration parameter, which
- is a ratio to the ENET_PEER_PACKET_THROTTLE_SCALE constant. When the throttle has
- a value of ENET_PEER_PACKET_THROTTLE_SCALE, no unreliable packets are dropped by
- ENet, and so 100% of all unreliable packets will be sent. When the throttle has a
- value of 0, all unreliable packets are dropped by ENet, and so 0% of all unreliable
- packets will be sent. Intermediate values for the throttle represent intermediate
- probabilities between 0% and 100% of unreliable packets being sent. The bandwidth
- limits of the local and foreign hosts are taken into account to determine a
- sensible limit for the throttle probability above which it should not raise even in
- the best of conditions.
-
- @param peer peer to configure
- @param interval interval, in milliseconds, over which to measure lowest mean RTT; the default value is ENET_PEER_PACKET_THROTTLE_INTERVAL.
- @param acceleration rate at which to increase the throttle probability as mean RTT declines
- @param deceleration rate at which to decrease the throttle probability as mean RTT increases
-*/
-void
-enet_peer_throttle_configure (ENetPeer * peer, enet_uint32 interval, enet_uint32 acceleration, enet_uint32 deceleration)
-{
- ENetProtocol command;
-
- peer -> packetThrottleInterval = interval;
- peer -> packetThrottleAcceleration = acceleration;
- peer -> packetThrottleDeceleration = deceleration;
-
- command.header.command = ENET_PROTOCOL_COMMAND_THROTTLE_CONFIGURE | ENET_PROTOCOL_COMMAND_FLAG_ACKNOWLEDGE;
- command.header.channelID = 0xFF;
-
- command.throttleConfigure.packetThrottleInterval = ENET_HOST_TO_NET_32 (interval);
- command.throttleConfigure.packetThrottleAcceleration = ENET_HOST_TO_NET_32 (acceleration);
- command.throttleConfigure.packetThrottleDeceleration = ENET_HOST_TO_NET_32 (deceleration);
-
- enet_peer_queue_outgoing_command (peer, & command, NULL, 0, 0);
-}
-
-int
-enet_peer_throttle (ENetPeer * peer, enet_uint32 rtt)
-{
- if (peer -> lastRoundTripTime <= peer -> lastRoundTripTimeVariance)
- {
- peer -> packetThrottle = peer -> packetThrottleLimit;
- }
- else
- if (rtt <= peer -> lastRoundTripTime)
- {
- peer -> packetThrottle += peer -> packetThrottleAcceleration;
-
- if (peer -> packetThrottle > peer -> packetThrottleLimit)
- peer -> packetThrottle = peer -> packetThrottleLimit;
-
- return 1;
- }
- else
- if (rtt > peer -> lastRoundTripTime + 2 * peer -> lastRoundTripTimeVariance)
- {
- if (peer -> packetThrottle > peer -> packetThrottleDeceleration)
- peer -> packetThrottle -= peer -> packetThrottleDeceleration;
- else
- peer -> packetThrottle = 0;
-
- return -1;
- }
-
- return 0;
-}
-
-/** Queues a packet to be sent.
-
- On success, ENet will assume ownership of the packet, and so enet_packet_destroy
- should not be called on it thereafter. On failure, the caller still must destroy
- the packet on its own as ENet has not queued the packet. The caller can also
- check the packet's referenceCount field after sending to check if ENet queued
- the packet and thus incremented the referenceCount.
-
- @param peer destination for the packet
- @param channelID channel on which to send
- @param packet packet to send
- @retval 0 on success
- @retval < 0 on failure
-*/
-int
-enet_peer_send (ENetPeer * peer, enet_uint8 channelID, ENetPacket * packet)
-{
- ENetChannel * channel;
- ENetProtocol command;
- size_t fragmentLength;
-
- if (peer -> state != ENET_PEER_STATE_CONNECTED ||
- channelID >= peer -> channelCount ||
- packet -> dataLength > peer -> host -> maximumPacketSize)
- return -1;
-
- channel = & peer -> channels [channelID];
- fragmentLength = peer -> mtu - sizeof (ENetProtocolHeader) - sizeof (ENetProtocolSendFragment);
- if (peer -> host -> checksum != NULL)
- fragmentLength -= sizeof(enet_uint32);
-
- if (packet -> dataLength > fragmentLength)
- {
- enet_uint32 fragmentCount = (packet -> dataLength + fragmentLength - 1) / fragmentLength,
- fragmentNumber,
- fragmentOffset;
- enet_uint8 commandNumber;
- enet_uint16 startSequenceNumber;
- ENetList fragments;
- ENetOutgoingCommand * fragment;
-
- if (fragmentCount > ENET_PROTOCOL_MAXIMUM_FRAGMENT_COUNT)
- return -1;
-
- if ((packet -> flags & (ENET_PACKET_FLAG_RELIABLE | ENET_PACKET_FLAG_UNRELIABLE_FRAGMENT)) == ENET_PACKET_FLAG_UNRELIABLE_FRAGMENT &&
- channel -> outgoingUnreliableSequenceNumber < 0xFFFF)
- {
- commandNumber = ENET_PROTOCOL_COMMAND_SEND_UNRELIABLE_FRAGMENT;
- startSequenceNumber = ENET_HOST_TO_NET_16 (channel -> outgoingUnreliableSequenceNumber + 1);
- }
- else
- {
- commandNumber = ENET_PROTOCOL_COMMAND_SEND_FRAGMENT | ENET_PROTOCOL_COMMAND_FLAG_ACKNOWLEDGE;
- startSequenceNumber = ENET_HOST_TO_NET_16 (channel -> outgoingReliableSequenceNumber + 1);
- }
-
- enet_list_clear (& fragments);
-
- for (fragmentNumber = 0,
- fragmentOffset = 0;
- fragmentOffset < packet -> dataLength;
- ++ fragmentNumber,
- fragmentOffset += fragmentLength)
- {
- if (packet -> dataLength - fragmentOffset < fragmentLength)
- fragmentLength = packet -> dataLength - fragmentOffset;
-
- fragment = (ENetOutgoingCommand *) enet_malloc (sizeof (ENetOutgoingCommand));
- if (fragment == NULL)
- {
- while (! enet_list_empty (& fragments))
- {
- fragment = (ENetOutgoingCommand *) enet_list_remove (enet_list_begin (& fragments));
-
- enet_free (fragment);
- }
-
- return -1;
- }
-
- fragment -> fragmentOffset = fragmentOffset;
- fragment -> fragmentLength = fragmentLength;
- fragment -> packet = packet;
- fragment -> command.header.command = commandNumber;
- fragment -> command.header.channelID = channelID;
- fragment -> command.sendFragment.startSequenceNumber = startSequenceNumber;
- fragment -> command.sendFragment.dataLength = ENET_HOST_TO_NET_16 (fragmentLength);
- fragment -> command.sendFragment.fragmentCount = ENET_HOST_TO_NET_32 (fragmentCount);
- fragment -> command.sendFragment.fragmentNumber = ENET_HOST_TO_NET_32 (fragmentNumber);
- fragment -> command.sendFragment.totalLength = ENET_HOST_TO_NET_32 (packet -> dataLength);
- fragment -> command.sendFragment.fragmentOffset = ENET_NET_TO_HOST_32 (fragmentOffset);
-
- enet_list_insert (enet_list_end (& fragments), fragment);
- }
-
- packet -> referenceCount += fragmentNumber;
-
- while (! enet_list_empty (& fragments))
- {
- fragment = (ENetOutgoingCommand *) enet_list_remove (enet_list_begin (& fragments));
-
- enet_peer_setup_outgoing_command (peer, fragment);
- }
-
- return 0;
- }
-
- command.header.channelID = channelID;
-
- if ((packet -> flags & (ENET_PACKET_FLAG_RELIABLE | ENET_PACKET_FLAG_UNSEQUENCED)) == ENET_PACKET_FLAG_UNSEQUENCED)
- {
- command.header.command = ENET_PROTOCOL_COMMAND_SEND_UNSEQUENCED | ENET_PROTOCOL_COMMAND_FLAG_UNSEQUENCED;
- command.sendUnsequenced.dataLength = ENET_HOST_TO_NET_16 (packet -> dataLength);
- }
- else
- if (packet -> flags & ENET_PACKET_FLAG_RELIABLE || channel -> outgoingUnreliableSequenceNumber >= 0xFFFF)
- {
- command.header.command = ENET_PROTOCOL_COMMAND_SEND_RELIABLE | ENET_PROTOCOL_COMMAND_FLAG_ACKNOWLEDGE;
- command.sendReliable.dataLength = ENET_HOST_TO_NET_16 (packet -> dataLength);
- }
- else
- {
- command.header.command = ENET_PROTOCOL_COMMAND_SEND_UNRELIABLE;
- command.sendUnreliable.dataLength = ENET_HOST_TO_NET_16 (packet -> dataLength);
- }
-
- if (enet_peer_queue_outgoing_command (peer, & command, packet, 0, packet -> dataLength) == NULL)
- return -1;
-
- return 0;
-}
-
-/** Attempts to dequeue any incoming queued packet.
- @param peer peer to dequeue packets from
- @param channelID holds the channel ID of the channel the packet was received on success
- @returns a pointer to the packet, or NULL if there are no available incoming queued packets
-*/
-ENetPacket *
-enet_peer_receive (ENetPeer * peer, enet_uint8 * channelID)
-{
- ENetIncomingCommand * incomingCommand;
- ENetPacket * packet;
-
- if (enet_list_empty (& peer -> dispatchedCommands))
- return NULL;
-
- incomingCommand = (ENetIncomingCommand *) enet_list_remove (enet_list_begin (& peer -> dispatchedCommands));
-
- if (channelID != NULL)
- * channelID = incomingCommand -> command.header.channelID;
-
- packet = incomingCommand -> packet;
-
- -- packet -> referenceCount;
-
- if (incomingCommand -> fragments != NULL)
- enet_free (incomingCommand -> fragments);
-
- enet_free (incomingCommand);
-
- peer -> totalWaitingData -= packet -> dataLength;
-
- return packet;
-}
-
-static void
-enet_peer_reset_outgoing_commands (ENetList * queue)
-{
- ENetOutgoingCommand * outgoingCommand;
-
- while (! enet_list_empty (queue))
- {
- outgoingCommand = (ENetOutgoingCommand *) enet_list_remove (enet_list_begin (queue));
-
- if (outgoingCommand -> packet != NULL)
- {
- -- outgoingCommand -> packet -> referenceCount;
-
- if (outgoingCommand -> packet -> referenceCount == 0)
- enet_packet_destroy (outgoingCommand -> packet);
- }
-
- enet_free (outgoingCommand);
- }
-}
-
-static void
-enet_peer_remove_incoming_commands (ENetList * queue, ENetListIterator startCommand, ENetListIterator endCommand, ENetIncomingCommand * excludeCommand)
-{
- ENetListIterator currentCommand;
-
- for (currentCommand = startCommand; currentCommand != endCommand; )
- {
- ENetIncomingCommand * incomingCommand = (ENetIncomingCommand *) currentCommand;
-
- currentCommand = enet_list_next (currentCommand);
-
- if (incomingCommand == excludeCommand)
- continue;
-
- enet_list_remove (& incomingCommand -> incomingCommandList);
-
- if (incomingCommand -> packet != NULL)
- {
- -- incomingCommand -> packet -> referenceCount;
-
- if (incomingCommand -> packet -> referenceCount == 0)
- enet_packet_destroy (incomingCommand -> packet);
- }
-
- if (incomingCommand -> fragments != NULL)
- enet_free (incomingCommand -> fragments);
-
- enet_free (incomingCommand);
- }
-}
-
-static void
-enet_peer_reset_incoming_commands (ENetList * queue)
-{
- enet_peer_remove_incoming_commands(queue, enet_list_begin (queue), enet_list_end (queue), NULL);
-}
-
-void
-enet_peer_reset_queues (ENetPeer * peer)
-{
- ENetChannel * channel;
-
- if (peer -> flags & ENET_PEER_FLAG_NEEDS_DISPATCH)
- {
- enet_list_remove (& peer -> dispatchList);
-
- peer -> flags &= ~ ENET_PEER_FLAG_NEEDS_DISPATCH;
- }
-
- while (! enet_list_empty (& peer -> acknowledgements))
- enet_free (enet_list_remove (enet_list_begin (& peer -> acknowledgements)));
-
- enet_peer_reset_outgoing_commands (& peer -> sentReliableCommands);
- enet_peer_reset_outgoing_commands (& peer -> outgoingCommands);
- enet_peer_reset_outgoing_commands (& peer -> outgoingSendReliableCommands);
- enet_peer_reset_incoming_commands (& peer -> dispatchedCommands);
-
- if (peer -> channels != NULL && peer -> channelCount > 0)
- {
- for (channel = peer -> channels;
- channel < & peer -> channels [peer -> channelCount];
- ++ channel)
- {
- enet_peer_reset_incoming_commands (& channel -> incomingReliableCommands);
- enet_peer_reset_incoming_commands (& channel -> incomingUnreliableCommands);
- }
-
- enet_free (peer -> channels);
- }
-
- peer -> channels = NULL;
- peer -> channelCount = 0;
-}
-
-void
-enet_peer_on_connect (ENetPeer * peer)
-{
- if (peer -> state != ENET_PEER_STATE_CONNECTED && peer -> state != ENET_PEER_STATE_DISCONNECT_LATER)
- {
- if (peer -> incomingBandwidth != 0)
- ++ peer -> host -> bandwidthLimitedPeers;
-
- ++ peer -> host -> connectedPeers;
- }
-}
-
-void
-enet_peer_on_disconnect (ENetPeer * peer)
-{
- if (peer -> state == ENET_PEER_STATE_CONNECTED || peer -> state == ENET_PEER_STATE_DISCONNECT_LATER)
- {
- if (peer -> incomingBandwidth != 0)
- -- peer -> host -> bandwidthLimitedPeers;
-
- -- peer -> host -> connectedPeers;
- }
-}
-
-/** Forcefully disconnects a peer.
- @param peer peer to forcefully disconnect
- @remarks The foreign host represented by the peer is not notified of the disconnection and will timeout
- on its connection to the local host.
-*/
-void
-enet_peer_reset (ENetPeer * peer)
-{
- enet_peer_on_disconnect (peer);
-
- peer -> outgoingPeerID = ENET_PROTOCOL_MAXIMUM_PEER_ID;
- peer -> connectID = 0;
-
- peer -> state = ENET_PEER_STATE_DISCONNECTED;
-
- peer -> incomingBandwidth = 0;
- peer -> outgoingBandwidth = 0;
- peer -> incomingBandwidthThrottleEpoch = 0;
- peer -> outgoingBandwidthThrottleEpoch = 0;
- peer -> incomingDataTotal = 0;
- peer -> outgoingDataTotal = 0;
- peer -> lastSendTime = 0;
- peer -> lastReceiveTime = 0;
- peer -> nextTimeout = 0;
- peer -> earliestTimeout = 0;
- peer -> packetLossEpoch = 0;
- peer -> packetsSent = 0;
- peer -> packetsLost = 0;
- peer -> packetLoss = 0;
- peer -> packetLossVariance = 0;
- peer -> packetThrottle = ENET_PEER_DEFAULT_PACKET_THROTTLE;
- peer -> packetThrottleLimit = ENET_PEER_PACKET_THROTTLE_SCALE;
- peer -> packetThrottleCounter = 0;
- peer -> packetThrottleEpoch = 0;
- peer -> packetThrottleAcceleration = ENET_PEER_PACKET_THROTTLE_ACCELERATION;
- peer -> packetThrottleDeceleration = ENET_PEER_PACKET_THROTTLE_DECELERATION;
- peer -> packetThrottleInterval = ENET_PEER_PACKET_THROTTLE_INTERVAL;
- peer -> pingInterval = ENET_PEER_PING_INTERVAL;
- peer -> timeoutLimit = ENET_PEER_TIMEOUT_LIMIT;
- peer -> timeoutMinimum = ENET_PEER_TIMEOUT_MINIMUM;
- peer -> timeoutMaximum = ENET_PEER_TIMEOUT_MAXIMUM;
- peer -> lastRoundTripTime = ENET_PEER_DEFAULT_ROUND_TRIP_TIME;
- peer -> lowestRoundTripTime = ENET_PEER_DEFAULT_ROUND_TRIP_TIME;
- peer -> lastRoundTripTimeVariance = 0;
- peer -> highestRoundTripTimeVariance = 0;
- peer -> roundTripTime = ENET_PEER_DEFAULT_ROUND_TRIP_TIME;
- peer -> roundTripTimeVariance = 0;
- peer -> mtu = peer -> host -> mtu;
- peer -> reliableDataInTransit = 0;
- peer -> outgoingReliableSequenceNumber = 0;
- peer -> windowSize = ENET_PROTOCOL_MAXIMUM_WINDOW_SIZE;
- peer -> incomingUnsequencedGroup = 0;
- peer -> outgoingUnsequencedGroup = 0;
- peer -> eventData = 0;
- peer -> totalWaitingData = 0;
- peer -> flags = 0;
-
- memset (peer -> unsequencedWindow, 0, sizeof (peer -> unsequencedWindow));
-
- enet_peer_reset_queues (peer);
-}
-
-/** Sends a ping request to a peer.
- @param peer destination for the ping request
- @remarks ping requests factor into the mean round trip time as designated by the
- roundTripTime field in the ENetPeer structure. ENet automatically pings all connected
- peers at regular intervals, however, this function may be called to ensure more
- frequent ping requests.
-*/
-void
-enet_peer_ping (ENetPeer * peer)
-{
- ENetProtocol command;
-
- if (peer -> state != ENET_PEER_STATE_CONNECTED)
- return;
-
- command.header.command = ENET_PROTOCOL_COMMAND_PING | ENET_PROTOCOL_COMMAND_FLAG_ACKNOWLEDGE;
- command.header.channelID = 0xFF;
-
- enet_peer_queue_outgoing_command (peer, & command, NULL, 0, 0);
-}
-
-/** Sets the interval at which pings will be sent to a peer.
-
- Pings are used both to monitor the liveness of the connection and also to dynamically
- adjust the throttle during periods of low traffic so that the throttle has reasonable
- responsiveness during traffic spikes.
-
- @param peer the peer to adjust
- @param pingInterval the interval at which to send pings; defaults to ENET_PEER_PING_INTERVAL if 0
-*/
-void
-enet_peer_ping_interval (ENetPeer * peer, enet_uint32 pingInterval)
-{
- peer -> pingInterval = pingInterval ? pingInterval : ENET_PEER_PING_INTERVAL;
-}
-
-/** Sets the timeout parameters for a peer.
-
- The timeout parameter control how and when a peer will timeout from a failure to acknowledge
- reliable traffic. Timeout values use an exponential backoff mechanism, where if a reliable
- packet is not acknowledge within some multiple of the average RTT plus a variance tolerance,
- the timeout will be doubled until it reaches a set limit. If the timeout is thus at this
- limit and reliable packets have been sent but not acknowledged within a certain minimum time
- period, the peer will be disconnected. Alternatively, if reliable packets have been sent
- but not acknowledged for a certain maximum time period, the peer will be disconnected regardless
- of the current timeout limit value.
-
- @param peer the peer to adjust
- @param timeoutLimit the timeout limit; defaults to ENET_PEER_TIMEOUT_LIMIT if 0
- @param timeoutMinimum the timeout minimum; defaults to ENET_PEER_TIMEOUT_MINIMUM if 0
- @param timeoutMaximum the timeout maximum; defaults to ENET_PEER_TIMEOUT_MAXIMUM if 0
-*/
-
-void
-enet_peer_timeout (ENetPeer * peer, enet_uint32 timeoutLimit, enet_uint32 timeoutMinimum, enet_uint32 timeoutMaximum)
-{
- peer -> timeoutLimit = timeoutLimit ? timeoutLimit : ENET_PEER_TIMEOUT_LIMIT;
- peer -> timeoutMinimum = timeoutMinimum ? timeoutMinimum : ENET_PEER_TIMEOUT_MINIMUM;
- peer -> timeoutMaximum = timeoutMaximum ? timeoutMaximum : ENET_PEER_TIMEOUT_MAXIMUM;
-}
-
-/** Force an immediate disconnection from a peer.
- @param peer peer to disconnect
- @param data data describing the disconnection
- @remarks No ENET_EVENT_DISCONNECT event will be generated. The foreign peer is not
- guaranteed to receive the disconnect notification, and is reset immediately upon
- return from this function.
-*/
-void
-enet_peer_disconnect_now (ENetPeer * peer, enet_uint32 data)
-{
- ENetProtocol command;
-
- if (peer -> state == ENET_PEER_STATE_DISCONNECTED)
- return;
-
- if (peer -> state != ENET_PEER_STATE_ZOMBIE &&
- peer -> state != ENET_PEER_STATE_DISCONNECTING)
- {
- enet_peer_reset_queues (peer);
-
- command.header.command = ENET_PROTOCOL_COMMAND_DISCONNECT | ENET_PROTOCOL_COMMAND_FLAG_UNSEQUENCED;
- command.header.channelID = 0xFF;
- command.disconnect.data = ENET_HOST_TO_NET_32 (data);
-
- enet_peer_queue_outgoing_command (peer, & command, NULL, 0, 0);
-
- enet_host_flush (peer -> host);
- }
-
- enet_peer_reset (peer);
-}
-
-/** Request a disconnection from a peer.
- @param peer peer to request a disconnection
- @param data data describing the disconnection
- @remarks An ENET_EVENT_DISCONNECT event will be generated by enet_host_service()
- once the disconnection is complete.
-*/
-void
-enet_peer_disconnect (ENetPeer * peer, enet_uint32 data)
-{
- ENetProtocol command;
-
- if (peer -> state == ENET_PEER_STATE_DISCONNECTING ||
- peer -> state == ENET_PEER_STATE_DISCONNECTED ||
- peer -> state == ENET_PEER_STATE_ACKNOWLEDGING_DISCONNECT ||
- peer -> state == ENET_PEER_STATE_ZOMBIE)
- return;
-
- enet_peer_reset_queues (peer);
-
- command.header.command = ENET_PROTOCOL_COMMAND_DISCONNECT;
- command.header.channelID = 0xFF;
- command.disconnect.data = ENET_HOST_TO_NET_32 (data);
-
- if (peer -> state == ENET_PEER_STATE_CONNECTED || peer -> state == ENET_PEER_STATE_DISCONNECT_LATER)
- command.header.command |= ENET_PROTOCOL_COMMAND_FLAG_ACKNOWLEDGE;
- else
- command.header.command |= ENET_PROTOCOL_COMMAND_FLAG_UNSEQUENCED;
-
- enet_peer_queue_outgoing_command (peer, & command, NULL, 0, 0);
-
- if (peer -> state == ENET_PEER_STATE_CONNECTED || peer -> state == ENET_PEER_STATE_DISCONNECT_LATER)
- {
- enet_peer_on_disconnect (peer);
-
- peer -> state = ENET_PEER_STATE_DISCONNECTING;
- }
- else
- {
- enet_host_flush (peer -> host);
- enet_peer_reset (peer);
- }
-}
-
-int
-enet_peer_has_outgoing_commands (ENetPeer * peer)
-{
- if (enet_list_empty (& peer -> outgoingCommands) &&
- enet_list_empty (& peer -> outgoingSendReliableCommands) &&
- enet_list_empty (& peer -> sentReliableCommands))
- return 0;
-
- return 1;
-}
-
-/** Request a disconnection from a peer, but only after all queued outgoing packets are sent.
- @param peer peer to request a disconnection
- @param data data describing the disconnection
- @remarks An ENET_EVENT_DISCONNECT event will be generated by enet_host_service()
- once the disconnection is complete.
-*/
-void
-enet_peer_disconnect_later (ENetPeer * peer, enet_uint32 data)
-{
- if ((peer -> state == ENET_PEER_STATE_CONNECTED || peer -> state == ENET_PEER_STATE_DISCONNECT_LATER) &&
- enet_peer_has_outgoing_commands (peer))
- {
- peer -> state = ENET_PEER_STATE_DISCONNECT_LATER;
- peer -> eventData = data;
- }
- else
- enet_peer_disconnect (peer, data);
-}
-
-ENetAcknowledgement *
-enet_peer_queue_acknowledgement (ENetPeer * peer, const ENetProtocol * command, enet_uint16 sentTime)
-{
- ENetAcknowledgement * acknowledgement;
-
- if (command -> header.channelID < peer -> channelCount)
- {
- ENetChannel * channel = & peer -> channels [command -> header.channelID];
- enet_uint16 reliableWindow = command -> header.reliableSequenceNumber / ENET_PEER_RELIABLE_WINDOW_SIZE,
- currentWindow = channel -> incomingReliableSequenceNumber / ENET_PEER_RELIABLE_WINDOW_SIZE;
-
- if (command -> header.reliableSequenceNumber < channel -> incomingReliableSequenceNumber)
- reliableWindow += ENET_PEER_RELIABLE_WINDOWS;
-
- if (reliableWindow >= currentWindow + ENET_PEER_FREE_RELIABLE_WINDOWS - 1 && reliableWindow <= currentWindow + ENET_PEER_FREE_RELIABLE_WINDOWS)
- return NULL;
- }
-
- acknowledgement = (ENetAcknowledgement *) enet_malloc (sizeof (ENetAcknowledgement));
- if (acknowledgement == NULL)
- return NULL;
-
- peer -> outgoingDataTotal += sizeof (ENetProtocolAcknowledge);
-
- acknowledgement -> sentTime = sentTime;
- acknowledgement -> command = * command;
-
- enet_list_insert (enet_list_end (& peer -> acknowledgements), acknowledgement);
-
- return acknowledgement;
-}
-
-void
-enet_peer_setup_outgoing_command (ENetPeer * peer, ENetOutgoingCommand * outgoingCommand)
-{
- peer -> outgoingDataTotal += enet_protocol_command_size (outgoingCommand -> command.header.command) + outgoingCommand -> fragmentLength;
-
- if (outgoingCommand -> command.header.channelID == 0xFF)
- {
- ++ peer -> outgoingReliableSequenceNumber;
-
- outgoingCommand -> reliableSequenceNumber = peer -> outgoingReliableSequenceNumber;
- outgoingCommand -> unreliableSequenceNumber = 0;
- }
- else
- {
- ENetChannel * channel = & peer -> channels [outgoingCommand -> command.header.channelID];
-
- if (outgoingCommand -> command.header.command & ENET_PROTOCOL_COMMAND_FLAG_ACKNOWLEDGE)
- {
- ++ channel -> outgoingReliableSequenceNumber;
- channel -> outgoingUnreliableSequenceNumber = 0;
-
- outgoingCommand -> reliableSequenceNumber = channel -> outgoingReliableSequenceNumber;
- outgoingCommand -> unreliableSequenceNumber = 0;
- }
- else
- if (outgoingCommand -> command.header.command & ENET_PROTOCOL_COMMAND_FLAG_UNSEQUENCED)
- {
- ++ peer -> outgoingUnsequencedGroup;
-
- outgoingCommand -> reliableSequenceNumber = 0;
- outgoingCommand -> unreliableSequenceNumber = 0;
- }
- else
- {
- if (outgoingCommand -> fragmentOffset == 0)
- ++ channel -> outgoingUnreliableSequenceNumber;
-
- outgoingCommand -> reliableSequenceNumber = channel -> outgoingReliableSequenceNumber;
- outgoingCommand -> unreliableSequenceNumber = channel -> outgoingUnreliableSequenceNumber;
- }
- }
-
- outgoingCommand -> sendAttempts = 0;
- outgoingCommand -> sentTime = 0;
- outgoingCommand -> roundTripTimeout = 0;
- outgoingCommand -> command.header.reliableSequenceNumber = ENET_HOST_TO_NET_16 (outgoingCommand -> reliableSequenceNumber);
- outgoingCommand -> queueTime = ++ peer -> host -> totalQueued;
-
- switch (outgoingCommand -> command.header.command & ENET_PROTOCOL_COMMAND_MASK)
- {
- case ENET_PROTOCOL_COMMAND_SEND_UNRELIABLE:
- outgoingCommand -> command.sendUnreliable.unreliableSequenceNumber = ENET_HOST_TO_NET_16 (outgoingCommand -> unreliableSequenceNumber);
- break;
-
- case ENET_PROTOCOL_COMMAND_SEND_UNSEQUENCED:
- outgoingCommand -> command.sendUnsequenced.unsequencedGroup = ENET_HOST_TO_NET_16 (peer -> outgoingUnsequencedGroup);
- break;
-
- default:
- break;
- }
-
- if ((outgoingCommand -> command.header.command & ENET_PROTOCOL_COMMAND_FLAG_ACKNOWLEDGE) != 0 &&
- outgoingCommand -> packet != NULL)
- enet_list_insert (enet_list_end (& peer -> outgoingSendReliableCommands), outgoingCommand);
- else
- enet_list_insert (enet_list_end (& peer -> outgoingCommands), outgoingCommand);
-}
-
-ENetOutgoingCommand *
-enet_peer_queue_outgoing_command (ENetPeer * peer, const ENetProtocol * command, ENetPacket * packet, enet_uint32 offset, enet_uint16 length)
-{
- ENetOutgoingCommand * outgoingCommand = (ENetOutgoingCommand *) enet_malloc (sizeof (ENetOutgoingCommand));
- if (outgoingCommand == NULL)
- return NULL;
-
- outgoingCommand -> command = * command;
- outgoingCommand -> fragmentOffset = offset;
- outgoingCommand -> fragmentLength = length;
- outgoingCommand -> packet = packet;
- if (packet != NULL)
- ++ packet -> referenceCount;
-
- enet_peer_setup_outgoing_command (peer, outgoingCommand);
-
- return outgoingCommand;
-}
-
-void
-enet_peer_dispatch_incoming_unreliable_commands (ENetPeer * peer, ENetChannel * channel, ENetIncomingCommand * queuedCommand)
-{
- ENetListIterator droppedCommand, startCommand, currentCommand;
-
- for (droppedCommand = startCommand = currentCommand = enet_list_begin (& channel -> incomingUnreliableCommands);
- currentCommand != enet_list_end (& channel -> incomingUnreliableCommands);
- currentCommand = enet_list_next (currentCommand))
- {
- ENetIncomingCommand * incomingCommand = (ENetIncomingCommand *) currentCommand;
-
- if ((incomingCommand -> command.header.command & ENET_PROTOCOL_COMMAND_MASK) == ENET_PROTOCOL_COMMAND_SEND_UNSEQUENCED)
- continue;
-
- if (incomingCommand -> reliableSequenceNumber == channel -> incomingReliableSequenceNumber)
- {
- if (incomingCommand -> fragmentsRemaining <= 0)
- {
- channel -> incomingUnreliableSequenceNumber = incomingCommand -> unreliableSequenceNumber;
- continue;
- }
-
- if (startCommand != currentCommand)
- {
- enet_list_move (enet_list_end (& peer -> dispatchedCommands), startCommand, enet_list_previous (currentCommand));
-
- if (! (peer -> flags & ENET_PEER_FLAG_NEEDS_DISPATCH))
- {
- enet_list_insert (enet_list_end (& peer -> host -> dispatchQueue), & peer -> dispatchList);
-
- peer -> flags |= ENET_PEER_FLAG_NEEDS_DISPATCH;
- }
-
- droppedCommand = currentCommand;
- }
- else
- if (droppedCommand != currentCommand)
- droppedCommand = enet_list_previous (currentCommand);
- }
- else
- {
- enet_uint16 reliableWindow = incomingCommand -> reliableSequenceNumber / ENET_PEER_RELIABLE_WINDOW_SIZE,
- currentWindow = channel -> incomingReliableSequenceNumber / ENET_PEER_RELIABLE_WINDOW_SIZE;
- if (incomingCommand -> reliableSequenceNumber < channel -> incomingReliableSequenceNumber)
- reliableWindow += ENET_PEER_RELIABLE_WINDOWS;
- if (reliableWindow >= currentWindow && reliableWindow < currentWindow + ENET_PEER_FREE_RELIABLE_WINDOWS - 1)
- break;
-
- droppedCommand = enet_list_next (currentCommand);
-
- if (startCommand != currentCommand)
- {
- enet_list_move (enet_list_end (& peer -> dispatchedCommands), startCommand, enet_list_previous (currentCommand));
-
- if (! (peer -> flags & ENET_PEER_FLAG_NEEDS_DISPATCH))
- {
- enet_list_insert (enet_list_end (& peer -> host -> dispatchQueue), & peer -> dispatchList);
-
- peer -> flags |= ENET_PEER_FLAG_NEEDS_DISPATCH;
- }
- }
- }
-
- startCommand = enet_list_next (currentCommand);
- }
-
- if (startCommand != currentCommand)
- {
- enet_list_move (enet_list_end (& peer -> dispatchedCommands), startCommand, enet_list_previous (currentCommand));
-
- if (! (peer -> flags & ENET_PEER_FLAG_NEEDS_DISPATCH))
- {
- enet_list_insert (enet_list_end (& peer -> host -> dispatchQueue), & peer -> dispatchList);
-
- peer -> flags |= ENET_PEER_FLAG_NEEDS_DISPATCH;
- }
-
- droppedCommand = currentCommand;
- }
-
- enet_peer_remove_incoming_commands (& channel -> incomingUnreliableCommands, enet_list_begin (& channel -> incomingUnreliableCommands), droppedCommand, queuedCommand);
-}
-
-void
-enet_peer_dispatch_incoming_reliable_commands (ENetPeer * peer, ENetChannel * channel, ENetIncomingCommand * queuedCommand)
-{
- ENetListIterator currentCommand;
-
- for (currentCommand = enet_list_begin (& channel -> incomingReliableCommands);
- currentCommand != enet_list_end (& channel -> incomingReliableCommands);
- currentCommand = enet_list_next (currentCommand))
- {
- ENetIncomingCommand * incomingCommand = (ENetIncomingCommand *) currentCommand;
-
- if (incomingCommand -> fragmentsRemaining > 0 ||
- incomingCommand -> reliableSequenceNumber != (enet_uint16) (channel -> incomingReliableSequenceNumber + 1))
- break;
-
- channel -> incomingReliableSequenceNumber = incomingCommand -> reliableSequenceNumber;
-
- if (incomingCommand -> fragmentCount > 0)
- channel -> incomingReliableSequenceNumber += incomingCommand -> fragmentCount - 1;
- }
-
- if (currentCommand == enet_list_begin (& channel -> incomingReliableCommands))
- return;
-
- channel -> incomingUnreliableSequenceNumber = 0;
-
- enet_list_move (enet_list_end (& peer -> dispatchedCommands), enet_list_begin (& channel -> incomingReliableCommands), enet_list_previous (currentCommand));
-
- if (! (peer -> flags & ENET_PEER_FLAG_NEEDS_DISPATCH))
- {
- enet_list_insert (enet_list_end (& peer -> host -> dispatchQueue), & peer -> dispatchList);
-
- peer -> flags |= ENET_PEER_FLAG_NEEDS_DISPATCH;
- }
-
- if (! enet_list_empty (& channel -> incomingUnreliableCommands))
- enet_peer_dispatch_incoming_unreliable_commands (peer, channel, queuedCommand);
-}
-
-ENetIncomingCommand *
-enet_peer_queue_incoming_command (ENetPeer * peer, const ENetProtocol * command, const void * data, size_t dataLength, enet_uint32 flags, enet_uint32 fragmentCount)
-{
- static ENetIncomingCommand dummyCommand;
-
- ENetChannel * channel = & peer -> channels [command -> header.channelID];
- enet_uint32 unreliableSequenceNumber = 0, reliableSequenceNumber = 0;
- enet_uint16 reliableWindow, currentWindow;
- ENetIncomingCommand * incomingCommand;
- ENetListIterator currentCommand;
- ENetPacket * packet = NULL;
-
- if (peer -> state == ENET_PEER_STATE_DISCONNECT_LATER)
- goto discardCommand;
-
- if ((command -> header.command & ENET_PROTOCOL_COMMAND_MASK) != ENET_PROTOCOL_COMMAND_SEND_UNSEQUENCED)
- {
- reliableSequenceNumber = command -> header.reliableSequenceNumber;
- reliableWindow = reliableSequenceNumber / ENET_PEER_RELIABLE_WINDOW_SIZE;
- currentWindow = channel -> incomingReliableSequenceNumber / ENET_PEER_RELIABLE_WINDOW_SIZE;
-
- if (reliableSequenceNumber < channel -> incomingReliableSequenceNumber)
- reliableWindow += ENET_PEER_RELIABLE_WINDOWS;
-
- if (reliableWindow < currentWindow || reliableWindow >= currentWindow + ENET_PEER_FREE_RELIABLE_WINDOWS - 1)
- goto discardCommand;
- }
-
- switch (command -> header.command & ENET_PROTOCOL_COMMAND_MASK)
- {
- case ENET_PROTOCOL_COMMAND_SEND_FRAGMENT:
- case ENET_PROTOCOL_COMMAND_SEND_RELIABLE:
- if (reliableSequenceNumber == channel -> incomingReliableSequenceNumber)
- goto discardCommand;
-
- for (currentCommand = enet_list_previous (enet_list_end (& channel -> incomingReliableCommands));
- currentCommand != enet_list_end (& channel -> incomingReliableCommands);
- currentCommand = enet_list_previous (currentCommand))
- {
- incomingCommand = (ENetIncomingCommand *) currentCommand;
-
- if (reliableSequenceNumber >= channel -> incomingReliableSequenceNumber)
- {
- if (incomingCommand -> reliableSequenceNumber < channel -> incomingReliableSequenceNumber)
- continue;
- }
- else
- if (incomingCommand -> reliableSequenceNumber >= channel -> incomingReliableSequenceNumber)
- break;
-
- if (incomingCommand -> reliableSequenceNumber <= reliableSequenceNumber)
- {
- if (incomingCommand -> reliableSequenceNumber < reliableSequenceNumber)
- break;
-
- goto discardCommand;
- }
- }
- break;
-
- case ENET_PROTOCOL_COMMAND_SEND_UNRELIABLE:
- case ENET_PROTOCOL_COMMAND_SEND_UNRELIABLE_FRAGMENT:
- unreliableSequenceNumber = ENET_NET_TO_HOST_16 (command -> sendUnreliable.unreliableSequenceNumber);
-
- if (reliableSequenceNumber == channel -> incomingReliableSequenceNumber &&
- unreliableSequenceNumber <= channel -> incomingUnreliableSequenceNumber)
- goto discardCommand;
-
- for (currentCommand = enet_list_previous (enet_list_end (& channel -> incomingUnreliableCommands));
- currentCommand != enet_list_end (& channel -> incomingUnreliableCommands);
- currentCommand = enet_list_previous (currentCommand))
- {
- incomingCommand = (ENetIncomingCommand *) currentCommand;
-
- if ((command -> header.command & ENET_PROTOCOL_COMMAND_MASK) == ENET_PROTOCOL_COMMAND_SEND_UNSEQUENCED)
- continue;
-
- if (reliableSequenceNumber >= channel -> incomingReliableSequenceNumber)
- {
- if (incomingCommand -> reliableSequenceNumber < channel -> incomingReliableSequenceNumber)
- continue;
- }
- else
- if (incomingCommand -> reliableSequenceNumber >= channel -> incomingReliableSequenceNumber)
- break;
-
- if (incomingCommand -> reliableSequenceNumber < reliableSequenceNumber)
- break;
-
- if (incomingCommand -> reliableSequenceNumber > reliableSequenceNumber)
- continue;
-
- if (incomingCommand -> unreliableSequenceNumber <= unreliableSequenceNumber)
- {
- if (incomingCommand -> unreliableSequenceNumber < unreliableSequenceNumber)
- break;
-
- goto discardCommand;
- }
- }
- break;
-
- case ENET_PROTOCOL_COMMAND_SEND_UNSEQUENCED:
- currentCommand = enet_list_end (& channel -> incomingUnreliableCommands);
- break;
-
- default:
- goto discardCommand;
- }
-
- if (peer -> totalWaitingData >= peer -> host -> maximumWaitingData)
- goto notifyError;
-
- packet = enet_packet_create (data, dataLength, flags);
- if (packet == NULL)
- goto notifyError;
-
- incomingCommand = (ENetIncomingCommand *) enet_malloc (sizeof (ENetIncomingCommand));
- if (incomingCommand == NULL)
- goto notifyError;
-
- incomingCommand -> reliableSequenceNumber = command -> header.reliableSequenceNumber;
- incomingCommand -> unreliableSequenceNumber = unreliableSequenceNumber & 0xFFFF;
- incomingCommand -> command = * command;
- incomingCommand -> fragmentCount = fragmentCount;
- incomingCommand -> fragmentsRemaining = fragmentCount;
- incomingCommand -> packet = packet;
- incomingCommand -> fragments = NULL;
-
- if (fragmentCount > 0)
- {
- if (fragmentCount <= ENET_PROTOCOL_MAXIMUM_FRAGMENT_COUNT)
- incomingCommand -> fragments = (enet_uint32 *) enet_malloc ((fragmentCount + 31) / 32 * sizeof (enet_uint32));
- if (incomingCommand -> fragments == NULL)
- {
- enet_free (incomingCommand);
-
- goto notifyError;
- }
- memset (incomingCommand -> fragments, 0, (fragmentCount + 31) / 32 * sizeof (enet_uint32));
- }
-
- if (packet != NULL)
- {
- ++ packet -> referenceCount;
-
- peer -> totalWaitingData += packet -> dataLength;
- }
-
- enet_list_insert (enet_list_next (currentCommand), incomingCommand);
-
- switch (command -> header.command & ENET_PROTOCOL_COMMAND_MASK)
- {
- case ENET_PROTOCOL_COMMAND_SEND_FRAGMENT:
- case ENET_PROTOCOL_COMMAND_SEND_RELIABLE:
- enet_peer_dispatch_incoming_reliable_commands (peer, channel, incomingCommand);
- break;
-
- default:
- enet_peer_dispatch_incoming_unreliable_commands (peer, channel, incomingCommand);
- break;
- }
-
- return incomingCommand;
-
-discardCommand:
- if (fragmentCount > 0)
- goto notifyError;
-
- if (packet != NULL && packet -> referenceCount == 0)
- enet_packet_destroy (packet);
-
- return & dummyCommand;
-
-notifyError:
- if (packet != NULL && packet -> referenceCount == 0)
- enet_packet_destroy (packet);
-
- return NULL;
-}
-
-/** @} */
diff --git a/Externals/enet/premake4.lua b/Externals/enet/premake4.lua
deleted file mode 100644
index 0e6e7adf6d..0000000000
--- a/Externals/enet/premake4.lua
+++ /dev/null
@@ -1,59 +0,0 @@
-solution "enet"
- configurations { "Debug", "Release" }
- platforms { "x32", "x64" }
-
- project "enet_static"
- kind "StaticLib"
- language "C"
-
- files { "*.c" }
-
- includedirs { "include/" }
-
- configuration "Debug"
- targetsuffix "d"
-
- defines({ "DEBUG" })
-
- flags { "Symbols" }
-
- configuration "Release"
- defines({ "NDEBUG" })
-
- flags { "Optimize" }
-
- configuration { "Debug", "x64" }
- targetsuffix "64d"
-
- configuration { "Release", "x64" }
- targetsuffix "64"
-
- project "enet"
- kind "SharedLib"
- language "C"
-
- files { "*.c" }
-
- includedirs { "include/" }
-
- defines({"ENET_DLL=1" })
-
- configuration "Debug"
- targetsuffix "d"
-
- defines({ "DEBUG" })
-
- flags { "Symbols" }
-
- configuration "Release"
- defines({ "NDEBUG" })
-
- flags { "Optimize" }
-
- configuration { "Debug", "x64" }
- targetsuffix "64d"
-
- configuration { "Release", "x64" }
- targetsuffix "64"
-
-
\ No newline at end of file
diff --git a/Externals/enet/protocol.c b/Externals/enet/protocol.c
deleted file mode 100644
index b7af48df06..0000000000
--- a/Externals/enet/protocol.c
+++ /dev/null
@@ -1,1910 +0,0 @@
-/**
- @file protocol.c
- @brief ENet protocol functions
-*/
-#include
-#include
-#define ENET_BUILDING_LIB 1
-#include "enet/utility.h"
-#include "enet/time.h"
-#include "enet/enet.h"
-
-static const size_t commandSizes [ENET_PROTOCOL_COMMAND_COUNT] =
-{
- 0,
- sizeof (ENetProtocolAcknowledge),
- sizeof (ENetProtocolConnect),
- sizeof (ENetProtocolVerifyConnect),
- sizeof (ENetProtocolDisconnect),
- sizeof (ENetProtocolPing),
- sizeof (ENetProtocolSendReliable),
- sizeof (ENetProtocolSendUnreliable),
- sizeof (ENetProtocolSendFragment),
- sizeof (ENetProtocolSendUnsequenced),
- sizeof (ENetProtocolBandwidthLimit),
- sizeof (ENetProtocolThrottleConfigure),
- sizeof (ENetProtocolSendFragment)
-};
-
-size_t
-enet_protocol_command_size (enet_uint8 commandNumber)
-{
- return commandSizes [commandNumber & ENET_PROTOCOL_COMMAND_MASK];
-}
-
-static void
-enet_protocol_change_state (ENetHost * host, ENetPeer * peer, ENetPeerState state)
-{
- if (state == ENET_PEER_STATE_CONNECTED || state == ENET_PEER_STATE_DISCONNECT_LATER)
- enet_peer_on_connect (peer);
- else
- enet_peer_on_disconnect (peer);
-
- peer -> state = state;
-}
-
-static void
-enet_protocol_dispatch_state (ENetHost * host, ENetPeer * peer, ENetPeerState state)
-{
- enet_protocol_change_state (host, peer, state);
-
- if (! (peer -> flags & ENET_PEER_FLAG_NEEDS_DISPATCH))
- {
- enet_list_insert (enet_list_end (& host -> dispatchQueue), & peer -> dispatchList);
-
- peer -> flags |= ENET_PEER_FLAG_NEEDS_DISPATCH;
- }
-}
-
-static int
-enet_protocol_dispatch_incoming_commands (ENetHost * host, ENetEvent * event)
-{
- while (! enet_list_empty (& host -> dispatchQueue))
- {
- ENetPeer * peer = (ENetPeer *) enet_list_remove (enet_list_begin (& host -> dispatchQueue));
-
- peer -> flags &= ~ ENET_PEER_FLAG_NEEDS_DISPATCH;
-
- switch (peer -> state)
- {
- case ENET_PEER_STATE_CONNECTION_PENDING:
- case ENET_PEER_STATE_CONNECTION_SUCCEEDED:
- enet_protocol_change_state (host, peer, ENET_PEER_STATE_CONNECTED);
-
- event -> type = ENET_EVENT_TYPE_CONNECT;
- event -> peer = peer;
- event -> data = peer -> eventData;
-
- return 1;
-
- case ENET_PEER_STATE_ZOMBIE:
- host -> recalculateBandwidthLimits = 1;
-
- event -> type = ENET_EVENT_TYPE_DISCONNECT;
- event -> peer = peer;
- event -> data = peer -> eventData;
-
- enet_peer_reset (peer);
-
- return 1;
-
- case ENET_PEER_STATE_CONNECTED:
- if (enet_list_empty (& peer -> dispatchedCommands))
- continue;
-
- event -> packet = enet_peer_receive (peer, & event -> channelID);
- if (event -> packet == NULL)
- continue;
-
- event -> type = ENET_EVENT_TYPE_RECEIVE;
- event -> peer = peer;
-
- if (! enet_list_empty (& peer -> dispatchedCommands))
- {
- peer -> flags |= ENET_PEER_FLAG_NEEDS_DISPATCH;
-
- enet_list_insert (enet_list_end (& host -> dispatchQueue), & peer -> dispatchList);
- }
-
- return 1;
-
- default:
- break;
- }
- }
-
- return 0;
-}
-
-static void
-enet_protocol_notify_connect (ENetHost * host, ENetPeer * peer, ENetEvent * event)
-{
- host -> recalculateBandwidthLimits = 1;
-
- if (event != NULL)
- {
- enet_protocol_change_state (host, peer, ENET_PEER_STATE_CONNECTED);
-
- event -> type = ENET_EVENT_TYPE_CONNECT;
- event -> peer = peer;
- event -> data = peer -> eventData;
- }
- else
- enet_protocol_dispatch_state (host, peer, peer -> state == ENET_PEER_STATE_CONNECTING ? ENET_PEER_STATE_CONNECTION_SUCCEEDED : ENET_PEER_STATE_CONNECTION_PENDING);
-}
-
-static void
-enet_protocol_notify_disconnect (ENetHost * host, ENetPeer * peer, ENetEvent * event)
-{
- if (peer -> state >= ENET_PEER_STATE_CONNECTION_PENDING)
- host -> recalculateBandwidthLimits = 1;
-
- if (peer -> state != ENET_PEER_STATE_CONNECTING && peer -> state < ENET_PEER_STATE_CONNECTION_SUCCEEDED)
- enet_peer_reset (peer);
- else
- if (event != NULL)
- {
- event -> type = ENET_EVENT_TYPE_DISCONNECT;
- event -> peer = peer;
- event -> data = 0;
-
- enet_peer_reset (peer);
- }
- else
- {
- peer -> eventData = 0;
-
- enet_protocol_dispatch_state (host, peer, ENET_PEER_STATE_ZOMBIE);
- }
-}
-
-static void
-enet_protocol_remove_sent_unreliable_commands (ENetPeer * peer, ENetList * sentUnreliableCommands)
-{
- ENetOutgoingCommand * outgoingCommand;
-
- if (enet_list_empty (sentUnreliableCommands))
- return;
-
- do
- {
- outgoingCommand = (ENetOutgoingCommand *) enet_list_front (sentUnreliableCommands);
-
- enet_list_remove (& outgoingCommand -> outgoingCommandList);
-
- if (outgoingCommand -> packet != NULL)
- {
- -- outgoingCommand -> packet -> referenceCount;
-
- if (outgoingCommand -> packet -> referenceCount == 0)
- {
- outgoingCommand -> packet -> flags |= ENET_PACKET_FLAG_SENT;
-
- enet_packet_destroy (outgoingCommand -> packet);
- }
- }
-
- enet_free (outgoingCommand);
- } while (! enet_list_empty (sentUnreliableCommands));
-
- if (peer -> state == ENET_PEER_STATE_DISCONNECT_LATER &&
- ! enet_peer_has_outgoing_commands (peer))
- enet_peer_disconnect (peer, peer -> eventData);
-}
-
-static ENetOutgoingCommand *
-enet_protocol_find_sent_reliable_command (ENetList * list, enet_uint16 reliableSequenceNumber, enet_uint8 channelID)
-{
- ENetListIterator currentCommand;
-
- for (currentCommand = enet_list_begin (list);
- currentCommand != enet_list_end (list);
- currentCommand = enet_list_next (currentCommand))
- {
- ENetOutgoingCommand * outgoingCommand = (ENetOutgoingCommand *) currentCommand;
-
- if (! (outgoingCommand -> command.header.command & ENET_PROTOCOL_COMMAND_FLAG_ACKNOWLEDGE))
- continue;
-
- if (outgoingCommand -> sendAttempts < 1)
- break;
-
- if (outgoingCommand -> reliableSequenceNumber == reliableSequenceNumber &&
- outgoingCommand -> command.header.channelID == channelID)
- return outgoingCommand;
- }
-
- return NULL;
-}
-
-static ENetProtocolCommand
-enet_protocol_remove_sent_reliable_command (ENetPeer * peer, enet_uint16 reliableSequenceNumber, enet_uint8 channelID)
-{
- ENetOutgoingCommand * outgoingCommand = NULL;
- ENetListIterator currentCommand;
- ENetProtocolCommand commandNumber;
- int wasSent = 1;
-
- for (currentCommand = enet_list_begin (& peer -> sentReliableCommands);
- currentCommand != enet_list_end (& peer -> sentReliableCommands);
- currentCommand = enet_list_next (currentCommand))
- {
- outgoingCommand = (ENetOutgoingCommand *) currentCommand;
-
- if (outgoingCommand -> reliableSequenceNumber == reliableSequenceNumber &&
- outgoingCommand -> command.header.channelID == channelID)
- break;
- }
-
- if (currentCommand == enet_list_end (& peer -> sentReliableCommands))
- {
- outgoingCommand = enet_protocol_find_sent_reliable_command (& peer -> outgoingCommands, reliableSequenceNumber, channelID);
- if (outgoingCommand == NULL)
- outgoingCommand = enet_protocol_find_sent_reliable_command (& peer -> outgoingSendReliableCommands, reliableSequenceNumber, channelID);
-
- wasSent = 0;
- }
-
- if (outgoingCommand == NULL)
- return ENET_PROTOCOL_COMMAND_NONE;
-
- if (channelID < peer -> channelCount)
- {
- ENetChannel * channel = & peer -> channels [channelID];
- enet_uint16 reliableWindow = reliableSequenceNumber / ENET_PEER_RELIABLE_WINDOW_SIZE;
- if (channel -> reliableWindows [reliableWindow] > 0)
- {
- -- channel -> reliableWindows [reliableWindow];
- if (! channel -> reliableWindows [reliableWindow])
- channel -> usedReliableWindows &= ~ (1 << reliableWindow);
- }
- }
-
- commandNumber = (ENetProtocolCommand) (outgoingCommand -> command.header.command & ENET_PROTOCOL_COMMAND_MASK);
-
- enet_list_remove (& outgoingCommand -> outgoingCommandList);
-
- if (outgoingCommand -> packet != NULL)
- {
- if (wasSent)
- peer -> reliableDataInTransit -= outgoingCommand -> fragmentLength;
-
- -- outgoingCommand -> packet -> referenceCount;
-
- if (outgoingCommand -> packet -> referenceCount == 0)
- {
- outgoingCommand -> packet -> flags |= ENET_PACKET_FLAG_SENT;
-
- enet_packet_destroy (outgoingCommand -> packet);
- }
- }
-
- enet_free (outgoingCommand);
-
- if (enet_list_empty (& peer -> sentReliableCommands))
- return commandNumber;
-
- outgoingCommand = (ENetOutgoingCommand *) enet_list_front (& peer -> sentReliableCommands);
-
- peer -> nextTimeout = outgoingCommand -> sentTime + outgoingCommand -> roundTripTimeout;
-
- return commandNumber;
-}
-
-static ENetPeer *
-enet_protocol_handle_connect (ENetHost * host, ENetProtocolHeader * header, ENetProtocol * command)
-{
- enet_uint8 incomingSessionID, outgoingSessionID;
- enet_uint32 mtu, windowSize;
- ENetChannel * channel;
- size_t channelCount, duplicatePeers = 0;
- ENetPeer * currentPeer, * peer = NULL;
- ENetProtocol verifyCommand;
-
- channelCount = ENET_NET_TO_HOST_32 (command -> connect.channelCount);
-
- if (channelCount < ENET_PROTOCOL_MINIMUM_CHANNEL_COUNT ||
- channelCount > ENET_PROTOCOL_MAXIMUM_CHANNEL_COUNT)
- return NULL;
-
- for (currentPeer = host -> peers;
- currentPeer < & host -> peers [host -> peerCount];
- ++ currentPeer)
- {
- if (currentPeer -> state == ENET_PEER_STATE_DISCONNECTED)
- {
- if (peer == NULL)
- peer = currentPeer;
- }
- else
- if (currentPeer -> state != ENET_PEER_STATE_CONNECTING &&
- currentPeer -> address.host == host -> receivedAddress.host)
- {
- if (currentPeer -> address.port == host -> receivedAddress.port &&
- currentPeer -> connectID == command -> connect.connectID)
- return NULL;
-
- ++ duplicatePeers;
- }
- }
-
- if (peer == NULL || duplicatePeers >= host -> duplicatePeers)
- return NULL;
-
- if (channelCount > host -> channelLimit)
- channelCount = host -> channelLimit;
- peer -> channels = (ENetChannel *) enet_malloc (channelCount * sizeof (ENetChannel));
- if (peer -> channels == NULL)
- return NULL;
- peer -> channelCount = channelCount;
- peer -> state = ENET_PEER_STATE_ACKNOWLEDGING_CONNECT;
- peer -> connectID = command -> connect.connectID;
- peer -> address = host -> receivedAddress;
- peer -> mtu = host -> mtu;
- peer -> outgoingPeerID = ENET_NET_TO_HOST_16 (command -> connect.outgoingPeerID);
- peer -> incomingBandwidth = ENET_NET_TO_HOST_32 (command -> connect.incomingBandwidth);
- peer -> outgoingBandwidth = ENET_NET_TO_HOST_32 (command -> connect.outgoingBandwidth);
- peer -> packetThrottleInterval = ENET_NET_TO_HOST_32 (command -> connect.packetThrottleInterval);
- peer -> packetThrottleAcceleration = ENET_NET_TO_HOST_32 (command -> connect.packetThrottleAcceleration);
- peer -> packetThrottleDeceleration = ENET_NET_TO_HOST_32 (command -> connect.packetThrottleDeceleration);
- peer -> eventData = ENET_NET_TO_HOST_32 (command -> connect.data);
-
- incomingSessionID = command -> connect.incomingSessionID == 0xFF ? peer -> outgoingSessionID : command -> connect.incomingSessionID;
- incomingSessionID = (incomingSessionID + 1) & (ENET_PROTOCOL_HEADER_SESSION_MASK >> ENET_PROTOCOL_HEADER_SESSION_SHIFT);
- if (incomingSessionID == peer -> outgoingSessionID)
- incomingSessionID = (incomingSessionID + 1) & (ENET_PROTOCOL_HEADER_SESSION_MASK >> ENET_PROTOCOL_HEADER_SESSION_SHIFT);
- peer -> outgoingSessionID = incomingSessionID;
-
- outgoingSessionID = command -> connect.outgoingSessionID == 0xFF ? peer -> incomingSessionID : command -> connect.outgoingSessionID;
- outgoingSessionID = (outgoingSessionID + 1) & (ENET_PROTOCOL_HEADER_SESSION_MASK >> ENET_PROTOCOL_HEADER_SESSION_SHIFT);
- if (outgoingSessionID == peer -> incomingSessionID)
- outgoingSessionID = (outgoingSessionID + 1) & (ENET_PROTOCOL_HEADER_SESSION_MASK >> ENET_PROTOCOL_HEADER_SESSION_SHIFT);
- peer -> incomingSessionID = outgoingSessionID;
-
- for (channel = peer -> channels;
- channel < & peer -> channels [channelCount];
- ++ channel)
- {
- channel -> outgoingReliableSequenceNumber = 0;
- channel -> outgoingUnreliableSequenceNumber = 0;
- channel -> incomingReliableSequenceNumber = 0;
- channel -> incomingUnreliableSequenceNumber = 0;
-
- enet_list_clear (& channel -> incomingReliableCommands);
- enet_list_clear (& channel -> incomingUnreliableCommands);
-
- channel -> usedReliableWindows = 0;
- memset (channel -> reliableWindows, 0, sizeof (channel -> reliableWindows));
- }
-
- mtu = ENET_NET_TO_HOST_32 (command -> connect.mtu);
-
- if (mtu < ENET_PROTOCOL_MINIMUM_MTU)
- mtu = ENET_PROTOCOL_MINIMUM_MTU;
- else
- if (mtu > ENET_PROTOCOL_MAXIMUM_MTU)
- mtu = ENET_PROTOCOL_MAXIMUM_MTU;
-
- if (mtu < peer -> mtu)
- peer -> mtu = mtu;
-
- if (host -> outgoingBandwidth == 0 &&
- peer -> incomingBandwidth == 0)
- peer -> windowSize = ENET_PROTOCOL_MAXIMUM_WINDOW_SIZE;
- else
- if (host -> outgoingBandwidth == 0 ||
- peer -> incomingBandwidth == 0)
- peer -> windowSize = (ENET_MAX (host -> outgoingBandwidth, peer -> incomingBandwidth) /
- ENET_PEER_WINDOW_SIZE_SCALE) *
- ENET_PROTOCOL_MINIMUM_WINDOW_SIZE;
- else
- peer -> windowSize = (ENET_MIN (host -> outgoingBandwidth, peer -> incomingBandwidth) /
- ENET_PEER_WINDOW_SIZE_SCALE) *
- ENET_PROTOCOL_MINIMUM_WINDOW_SIZE;
-
- if (peer -> windowSize < ENET_PROTOCOL_MINIMUM_WINDOW_SIZE)
- peer -> windowSize = ENET_PROTOCOL_MINIMUM_WINDOW_SIZE;
- else
- if (peer -> windowSize > ENET_PROTOCOL_MAXIMUM_WINDOW_SIZE)
- peer -> windowSize = ENET_PROTOCOL_MAXIMUM_WINDOW_SIZE;
-
- if (host -> incomingBandwidth == 0)
- windowSize = ENET_PROTOCOL_MAXIMUM_WINDOW_SIZE;
- else
- windowSize = (host -> incomingBandwidth / ENET_PEER_WINDOW_SIZE_SCALE) *
- ENET_PROTOCOL_MINIMUM_WINDOW_SIZE;
-
- if (windowSize > ENET_NET_TO_HOST_32 (command -> connect.windowSize))
- windowSize = ENET_NET_TO_HOST_32 (command -> connect.windowSize);
-
- if (windowSize < ENET_PROTOCOL_MINIMUM_WINDOW_SIZE)
- windowSize = ENET_PROTOCOL_MINIMUM_WINDOW_SIZE;
- else
- if (windowSize > ENET_PROTOCOL_MAXIMUM_WINDOW_SIZE)
- windowSize = ENET_PROTOCOL_MAXIMUM_WINDOW_SIZE;
-
- verifyCommand.header.command = ENET_PROTOCOL_COMMAND_VERIFY_CONNECT | ENET_PROTOCOL_COMMAND_FLAG_ACKNOWLEDGE;
- verifyCommand.header.channelID = 0xFF;
- verifyCommand.verifyConnect.outgoingPeerID = ENET_HOST_TO_NET_16 (peer -> incomingPeerID);
- verifyCommand.verifyConnect.incomingSessionID = incomingSessionID;
- verifyCommand.verifyConnect.outgoingSessionID = outgoingSessionID;
- verifyCommand.verifyConnect.mtu = ENET_HOST_TO_NET_32 (peer -> mtu);
- verifyCommand.verifyConnect.windowSize = ENET_HOST_TO_NET_32 (windowSize);
- verifyCommand.verifyConnect.channelCount = ENET_HOST_TO_NET_32 (channelCount);
- verifyCommand.verifyConnect.incomingBandwidth = ENET_HOST_TO_NET_32 (host -> incomingBandwidth);
- verifyCommand.verifyConnect.outgoingBandwidth = ENET_HOST_TO_NET_32 (host -> outgoingBandwidth);
- verifyCommand.verifyConnect.packetThrottleInterval = ENET_HOST_TO_NET_32 (peer -> packetThrottleInterval);
- verifyCommand.verifyConnect.packetThrottleAcceleration = ENET_HOST_TO_NET_32 (peer -> packetThrottleAcceleration);
- verifyCommand.verifyConnect.packetThrottleDeceleration = ENET_HOST_TO_NET_32 (peer -> packetThrottleDeceleration);
- verifyCommand.verifyConnect.connectID = peer -> connectID;
-
- enet_peer_queue_outgoing_command (peer, & verifyCommand, NULL, 0, 0);
-
- return peer;
-}
-
-static int
-enet_protocol_handle_send_reliable (ENetHost * host, ENetPeer * peer, const ENetProtocol * command, enet_uint8 ** currentData)
-{
- size_t dataLength;
-
- if (command -> header.channelID >= peer -> channelCount ||
- (peer -> state != ENET_PEER_STATE_CONNECTED && peer -> state != ENET_PEER_STATE_DISCONNECT_LATER))
- return -1;
-
- dataLength = ENET_NET_TO_HOST_16 (command -> sendReliable.dataLength);
- * currentData += dataLength;
- if (dataLength > host -> maximumPacketSize ||
- * currentData < host -> receivedData ||
- * currentData > & host -> receivedData [host -> receivedDataLength])
- return -1;
-
- if (enet_peer_queue_incoming_command (peer, command, (const enet_uint8 *) command + sizeof (ENetProtocolSendReliable), dataLength, ENET_PACKET_FLAG_RELIABLE, 0) == NULL)
- return -1;
-
- return 0;
-}
-
-static int
-enet_protocol_handle_send_unsequenced (ENetHost * host, ENetPeer * peer, const ENetProtocol * command, enet_uint8 ** currentData)
-{
- enet_uint32 unsequencedGroup, index;
- size_t dataLength;
-
- if (command -> header.channelID >= peer -> channelCount ||
- (peer -> state != ENET_PEER_STATE_CONNECTED && peer -> state != ENET_PEER_STATE_DISCONNECT_LATER))
- return -1;
-
- dataLength = ENET_NET_TO_HOST_16 (command -> sendUnsequenced.dataLength);
- * currentData += dataLength;
- if (dataLength > host -> maximumPacketSize ||
- * currentData < host -> receivedData ||
- * currentData > & host -> receivedData [host -> receivedDataLength])
- return -1;
-
- unsequencedGroup = ENET_NET_TO_HOST_16 (command -> sendUnsequenced.unsequencedGroup);
- index = unsequencedGroup % ENET_PEER_UNSEQUENCED_WINDOW_SIZE;
-
- if (unsequencedGroup < peer -> incomingUnsequencedGroup)
- unsequencedGroup += 0x10000;
-
- if (unsequencedGroup >= (enet_uint32) peer -> incomingUnsequencedGroup + ENET_PEER_FREE_UNSEQUENCED_WINDOWS * ENET_PEER_UNSEQUENCED_WINDOW_SIZE)
- return 0;
-
- unsequencedGroup &= 0xFFFF;
-
- if (unsequencedGroup - index != peer -> incomingUnsequencedGroup)
- {
- peer -> incomingUnsequencedGroup = unsequencedGroup - index;
-
- memset (peer -> unsequencedWindow, 0, sizeof (peer -> unsequencedWindow));
- }
- else
- if (peer -> unsequencedWindow [index / 32] & (1 << (index % 32)))
- return 0;
-
- if (enet_peer_queue_incoming_command (peer, command, (const enet_uint8 *) command + sizeof (ENetProtocolSendUnsequenced), dataLength, ENET_PACKET_FLAG_UNSEQUENCED, 0) == NULL)
- return -1;
-
- peer -> unsequencedWindow [index / 32] |= 1 << (index % 32);
-
- return 0;
-}
-
-static int
-enet_protocol_handle_send_unreliable (ENetHost * host, ENetPeer * peer, const ENetProtocol * command, enet_uint8 ** currentData)
-{
- size_t dataLength;
-
- if (command -> header.channelID >= peer -> channelCount ||
- (peer -> state != ENET_PEER_STATE_CONNECTED && peer -> state != ENET_PEER_STATE_DISCONNECT_LATER))
- return -1;
-
- dataLength = ENET_NET_TO_HOST_16 (command -> sendUnreliable.dataLength);
- * currentData += dataLength;
- if (dataLength > host -> maximumPacketSize ||
- * currentData < host -> receivedData ||
- * currentData > & host -> receivedData [host -> receivedDataLength])
- return -1;
-
- if (enet_peer_queue_incoming_command (peer, command, (const enet_uint8 *) command + sizeof (ENetProtocolSendUnreliable), dataLength, 0, 0) == NULL)
- return -1;
-
- return 0;
-}
-
-static int
-enet_protocol_handle_send_fragment (ENetHost * host, ENetPeer * peer, const ENetProtocol * command, enet_uint8 ** currentData)
-{
- enet_uint32 fragmentNumber,
- fragmentCount,
- fragmentOffset,
- fragmentLength,
- startSequenceNumber,
- totalLength;
- ENetChannel * channel;
- enet_uint16 startWindow, currentWindow;
- ENetListIterator currentCommand;
- ENetIncomingCommand * startCommand = NULL;
-
- if (command -> header.channelID >= peer -> channelCount ||
- (peer -> state != ENET_PEER_STATE_CONNECTED && peer -> state != ENET_PEER_STATE_DISCONNECT_LATER))
- return -1;
-
- fragmentLength = ENET_NET_TO_HOST_16 (command -> sendFragment.dataLength);
- * currentData += fragmentLength;
- if (fragmentLength <= 0 ||
- fragmentLength > host -> maximumPacketSize ||
- * currentData < host -> receivedData ||
- * currentData > & host -> receivedData [host -> receivedDataLength])
- return -1;
-
- channel = & peer -> channels [command -> header.channelID];
- startSequenceNumber = ENET_NET_TO_HOST_16 (command -> sendFragment.startSequenceNumber);
- startWindow = startSequenceNumber / ENET_PEER_RELIABLE_WINDOW_SIZE;
- currentWindow = channel -> incomingReliableSequenceNumber / ENET_PEER_RELIABLE_WINDOW_SIZE;
-
- if (startSequenceNumber < channel -> incomingReliableSequenceNumber)
- startWindow += ENET_PEER_RELIABLE_WINDOWS;
-
- if (startWindow < currentWindow || startWindow >= currentWindow + ENET_PEER_FREE_RELIABLE_WINDOWS - 1)
- return 0;
-
- fragmentNumber = ENET_NET_TO_HOST_32 (command -> sendFragment.fragmentNumber);
- fragmentCount = ENET_NET_TO_HOST_32 (command -> sendFragment.fragmentCount);
- fragmentOffset = ENET_NET_TO_HOST_32 (command -> sendFragment.fragmentOffset);
- totalLength = ENET_NET_TO_HOST_32 (command -> sendFragment.totalLength);
-
- if (fragmentCount > ENET_PROTOCOL_MAXIMUM_FRAGMENT_COUNT ||
- fragmentNumber >= fragmentCount ||
- totalLength > host -> maximumPacketSize ||
- totalLength < fragmentCount ||
- fragmentOffset >= totalLength ||
- fragmentLength > totalLength - fragmentOffset)
- return -1;
-
- for (currentCommand = enet_list_previous (enet_list_end (& channel -> incomingReliableCommands));
- currentCommand != enet_list_end (& channel -> incomingReliableCommands);
- currentCommand = enet_list_previous (currentCommand))
- {
- ENetIncomingCommand * incomingCommand = (ENetIncomingCommand *) currentCommand;
-
- if (startSequenceNumber >= channel -> incomingReliableSequenceNumber)
- {
- if (incomingCommand -> reliableSequenceNumber < channel -> incomingReliableSequenceNumber)
- continue;
- }
- else
- if (incomingCommand -> reliableSequenceNumber >= channel -> incomingReliableSequenceNumber)
- break;
-
- if (incomingCommand -> reliableSequenceNumber <= startSequenceNumber)
- {
- if (incomingCommand -> reliableSequenceNumber < startSequenceNumber)
- break;
-
- if ((incomingCommand -> command.header.command & ENET_PROTOCOL_COMMAND_MASK) != ENET_PROTOCOL_COMMAND_SEND_FRAGMENT ||
- totalLength != incomingCommand -> packet -> dataLength ||
- fragmentCount != incomingCommand -> fragmentCount)
- return -1;
-
- startCommand = incomingCommand;
- break;
- }
- }
-
- if (startCommand == NULL)
- {
- ENetProtocol hostCommand = * command;
-
- hostCommand.header.reliableSequenceNumber = startSequenceNumber;
-
- startCommand = enet_peer_queue_incoming_command (peer, & hostCommand, NULL, totalLength, ENET_PACKET_FLAG_RELIABLE, fragmentCount);
- if (startCommand == NULL)
- return -1;
- }
-
- if ((startCommand -> fragments [fragmentNumber / 32] & (1 << (fragmentNumber % 32))) == 0)
- {
- -- startCommand -> fragmentsRemaining;
-
- startCommand -> fragments [fragmentNumber / 32] |= (1 << (fragmentNumber % 32));
-
- if (fragmentOffset + fragmentLength > startCommand -> packet -> dataLength)
- fragmentLength = startCommand -> packet -> dataLength - fragmentOffset;
-
- memcpy (startCommand -> packet -> data + fragmentOffset,
- (enet_uint8 *) command + sizeof (ENetProtocolSendFragment),
- fragmentLength);
-
- if (startCommand -> fragmentsRemaining <= 0)
- enet_peer_dispatch_incoming_reliable_commands (peer, channel, NULL);
- }
-
- return 0;
-}
-
-static int
-enet_protocol_handle_send_unreliable_fragment (ENetHost * host, ENetPeer * peer, const ENetProtocol * command, enet_uint8 ** currentData)
-{
- enet_uint32 fragmentNumber,
- fragmentCount,
- fragmentOffset,
- fragmentLength,
- reliableSequenceNumber,
- startSequenceNumber,
- totalLength;
- enet_uint16 reliableWindow, currentWindow;
- ENetChannel * channel;
- ENetListIterator currentCommand;
- ENetIncomingCommand * startCommand = NULL;
-
- if (command -> header.channelID >= peer -> channelCount ||
- (peer -> state != ENET_PEER_STATE_CONNECTED && peer -> state != ENET_PEER_STATE_DISCONNECT_LATER))
- return -1;
-
- fragmentLength = ENET_NET_TO_HOST_16 (command -> sendFragment.dataLength);
- * currentData += fragmentLength;
- if (fragmentLength > host -> maximumPacketSize ||
- * currentData < host -> receivedData ||
- * currentData > & host -> receivedData [host -> receivedDataLength])
- return -1;
-
- channel = & peer -> channels [command -> header.channelID];
- reliableSequenceNumber = command -> header.reliableSequenceNumber;
- startSequenceNumber = ENET_NET_TO_HOST_16 (command -> sendFragment.startSequenceNumber);
-
- reliableWindow = reliableSequenceNumber / ENET_PEER_RELIABLE_WINDOW_SIZE;
- currentWindow = channel -> incomingReliableSequenceNumber / ENET_PEER_RELIABLE_WINDOW_SIZE;
-
- if (reliableSequenceNumber < channel -> incomingReliableSequenceNumber)
- reliableWindow += ENET_PEER_RELIABLE_WINDOWS;
-
- if (reliableWindow < currentWindow || reliableWindow >= currentWindow + ENET_PEER_FREE_RELIABLE_WINDOWS - 1)
- return 0;
-
- if (reliableSequenceNumber == channel -> incomingReliableSequenceNumber &&
- startSequenceNumber <= channel -> incomingUnreliableSequenceNumber)
- return 0;
-
- fragmentNumber = ENET_NET_TO_HOST_32 (command -> sendFragment.fragmentNumber);
- fragmentCount = ENET_NET_TO_HOST_32 (command -> sendFragment.fragmentCount);
- fragmentOffset = ENET_NET_TO_HOST_32 (command -> sendFragment.fragmentOffset);
- totalLength = ENET_NET_TO_HOST_32 (command -> sendFragment.totalLength);
-
- if (fragmentCount > ENET_PROTOCOL_MAXIMUM_FRAGMENT_COUNT ||
- fragmentNumber >= fragmentCount ||
- totalLength > host -> maximumPacketSize ||
- fragmentOffset >= totalLength ||
- fragmentLength > totalLength - fragmentOffset)
- return -1;
-
- for (currentCommand = enet_list_previous (enet_list_end (& channel -> incomingUnreliableCommands));
- currentCommand != enet_list_end (& channel -> incomingUnreliableCommands);
- currentCommand = enet_list_previous (currentCommand))
- {
- ENetIncomingCommand * incomingCommand = (ENetIncomingCommand *) currentCommand;
-
- if (reliableSequenceNumber >= channel -> incomingReliableSequenceNumber)
- {
- if (incomingCommand -> reliableSequenceNumber < channel -> incomingReliableSequenceNumber)
- continue;
- }
- else
- if (incomingCommand -> reliableSequenceNumber >= channel -> incomingReliableSequenceNumber)
- break;
-
- if (incomingCommand -> reliableSequenceNumber < reliableSequenceNumber)
- break;
-
- if (incomingCommand -> reliableSequenceNumber > reliableSequenceNumber)
- continue;
-
- if (incomingCommand -> unreliableSequenceNumber <= startSequenceNumber)
- {
- if (incomingCommand -> unreliableSequenceNumber < startSequenceNumber)
- break;
-
- if ((incomingCommand -> command.header.command & ENET_PROTOCOL_COMMAND_MASK) != ENET_PROTOCOL_COMMAND_SEND_UNRELIABLE_FRAGMENT ||
- totalLength != incomingCommand -> packet -> dataLength ||
- fragmentCount != incomingCommand -> fragmentCount)
- return -1;
-
- startCommand = incomingCommand;
- break;
- }
- }
-
- if (startCommand == NULL)
- {
- startCommand = enet_peer_queue_incoming_command (peer, command, NULL, totalLength, ENET_PACKET_FLAG_UNRELIABLE_FRAGMENT, fragmentCount);
- if (startCommand == NULL)
- return -1;
- }
-
- if ((startCommand -> fragments [fragmentNumber / 32] & (1 << (fragmentNumber % 32))) == 0)
- {
- -- startCommand -> fragmentsRemaining;
-
- startCommand -> fragments [fragmentNumber / 32] |= (1 << (fragmentNumber % 32));
-
- if (fragmentOffset + fragmentLength > startCommand -> packet -> dataLength)
- fragmentLength = startCommand -> packet -> dataLength - fragmentOffset;
-
- memcpy (startCommand -> packet -> data + fragmentOffset,
- (enet_uint8 *) command + sizeof (ENetProtocolSendFragment),
- fragmentLength);
-
- if (startCommand -> fragmentsRemaining <= 0)
- enet_peer_dispatch_incoming_unreliable_commands (peer, channel, NULL);
- }
-
- return 0;
-}
-
-static int
-enet_protocol_handle_ping (ENetHost * host, ENetPeer * peer, const ENetProtocol * command)
-{
- if (peer -> state != ENET_PEER_STATE_CONNECTED && peer -> state != ENET_PEER_STATE_DISCONNECT_LATER)
- return -1;
-
- return 0;
-}
-
-static int
-enet_protocol_handle_bandwidth_limit (ENetHost * host, ENetPeer * peer, const ENetProtocol * command)
-{
- if (peer -> state != ENET_PEER_STATE_CONNECTED && peer -> state != ENET_PEER_STATE_DISCONNECT_LATER)
- return -1;
-
- if (peer -> incomingBandwidth != 0)
- -- host -> bandwidthLimitedPeers;
-
- peer -> incomingBandwidth = ENET_NET_TO_HOST_32 (command -> bandwidthLimit.incomingBandwidth);
- peer -> outgoingBandwidth = ENET_NET_TO_HOST_32 (command -> bandwidthLimit.outgoingBandwidth);
-
- if (peer -> incomingBandwidth != 0)
- ++ host -> bandwidthLimitedPeers;
-
- if (peer -> incomingBandwidth == 0 && host -> outgoingBandwidth == 0)
- peer -> windowSize = ENET_PROTOCOL_MAXIMUM_WINDOW_SIZE;
- else
- if (peer -> incomingBandwidth == 0 || host -> outgoingBandwidth == 0)
- peer -> windowSize = (ENET_MAX (peer -> incomingBandwidth, host -> outgoingBandwidth) /
- ENET_PEER_WINDOW_SIZE_SCALE) * ENET_PROTOCOL_MINIMUM_WINDOW_SIZE;
- else
- peer -> windowSize = (ENET_MIN (peer -> incomingBandwidth, host -> outgoingBandwidth) /
- ENET_PEER_WINDOW_SIZE_SCALE) * ENET_PROTOCOL_MINIMUM_WINDOW_SIZE;
-
- if (peer -> windowSize < ENET_PROTOCOL_MINIMUM_WINDOW_SIZE)
- peer -> windowSize = ENET_PROTOCOL_MINIMUM_WINDOW_SIZE;
- else
- if (peer -> windowSize > ENET_PROTOCOL_MAXIMUM_WINDOW_SIZE)
- peer -> windowSize = ENET_PROTOCOL_MAXIMUM_WINDOW_SIZE;
-
- return 0;
-}
-
-static int
-enet_protocol_handle_throttle_configure (ENetHost * host, ENetPeer * peer, const ENetProtocol * command)
-{
- if (peer -> state != ENET_PEER_STATE_CONNECTED && peer -> state != ENET_PEER_STATE_DISCONNECT_LATER)
- return -1;
-
- peer -> packetThrottleInterval = ENET_NET_TO_HOST_32 (command -> throttleConfigure.packetThrottleInterval);
- peer -> packetThrottleAcceleration = ENET_NET_TO_HOST_32 (command -> throttleConfigure.packetThrottleAcceleration);
- peer -> packetThrottleDeceleration = ENET_NET_TO_HOST_32 (command -> throttleConfigure.packetThrottleDeceleration);
-
- return 0;
-}
-
-static int
-enet_protocol_handle_disconnect (ENetHost * host, ENetPeer * peer, const ENetProtocol * command)
-{
- if (peer -> state == ENET_PEER_STATE_DISCONNECTED || peer -> state == ENET_PEER_STATE_ZOMBIE || peer -> state == ENET_PEER_STATE_ACKNOWLEDGING_DISCONNECT)
- return 0;
-
- enet_peer_reset_queues (peer);
-
- if (peer -> state == ENET_PEER_STATE_CONNECTION_SUCCEEDED || peer -> state == ENET_PEER_STATE_DISCONNECTING || peer -> state == ENET_PEER_STATE_CONNECTING)
- enet_protocol_dispatch_state (host, peer, ENET_PEER_STATE_ZOMBIE);
- else
- if (peer -> state != ENET_PEER_STATE_CONNECTED && peer -> state != ENET_PEER_STATE_DISCONNECT_LATER)
- {
- if (peer -> state == ENET_PEER_STATE_CONNECTION_PENDING) host -> recalculateBandwidthLimits = 1;
-
- enet_peer_reset (peer);
- }
- else
- if (command -> header.command & ENET_PROTOCOL_COMMAND_FLAG_ACKNOWLEDGE)
- enet_protocol_change_state (host, peer, ENET_PEER_STATE_ACKNOWLEDGING_DISCONNECT);
- else
- enet_protocol_dispatch_state (host, peer, ENET_PEER_STATE_ZOMBIE);
-
- if (peer -> state != ENET_PEER_STATE_DISCONNECTED)
- peer -> eventData = ENET_NET_TO_HOST_32 (command -> disconnect.data);
-
- return 0;
-}
-
-static int
-enet_protocol_handle_acknowledge (ENetHost * host, ENetEvent * event, ENetPeer * peer, const ENetProtocol * command)
-{
- enet_uint32 roundTripTime,
- receivedSentTime,
- receivedReliableSequenceNumber;
- ENetProtocolCommand commandNumber;
-
- if (peer -> state == ENET_PEER_STATE_DISCONNECTED || peer -> state == ENET_PEER_STATE_ZOMBIE)
- return 0;
-
- receivedSentTime = ENET_NET_TO_HOST_16 (command -> acknowledge.receivedSentTime);
- receivedSentTime |= host -> serviceTime & 0xFFFF0000;
- if ((receivedSentTime & 0x8000) > (host -> serviceTime & 0x8000))
- receivedSentTime -= 0x10000;
-
- if (ENET_TIME_LESS (host -> serviceTime, receivedSentTime))
- return 0;
-
- roundTripTime = ENET_TIME_DIFFERENCE (host -> serviceTime, receivedSentTime);
- roundTripTime = ENET_MAX (roundTripTime, 1);
-
- if (peer -> lastReceiveTime > 0)
- {
- enet_peer_throttle (peer, roundTripTime);
-
- peer -> roundTripTimeVariance -= peer -> roundTripTimeVariance / 4;
-
- if (roundTripTime >= peer -> roundTripTime)
- {
- enet_uint32 diff = roundTripTime - peer -> roundTripTime;
- peer -> roundTripTimeVariance += diff / 4;
- peer -> roundTripTime += diff / 8;
- }
- else
- {
- enet_uint32 diff = peer -> roundTripTime - roundTripTime;
- peer -> roundTripTimeVariance += diff / 4;
- peer -> roundTripTime -= diff / 8;
- }
- }
- else
- {
- peer -> roundTripTime = roundTripTime;
- peer -> roundTripTimeVariance = (roundTripTime + 1) / 2;
- }
-
- if (peer -> roundTripTime < peer -> lowestRoundTripTime)
- peer -> lowestRoundTripTime = peer -> roundTripTime;
-
- if (peer -> roundTripTimeVariance > peer -> highestRoundTripTimeVariance)
- peer -> highestRoundTripTimeVariance = peer -> roundTripTimeVariance;
-
- if (peer -> packetThrottleEpoch == 0 ||
- ENET_TIME_DIFFERENCE (host -> serviceTime, peer -> packetThrottleEpoch) >= peer -> packetThrottleInterval)
- {
- peer -> lastRoundTripTime = peer -> lowestRoundTripTime;
- peer -> lastRoundTripTimeVariance = ENET_MAX (peer -> highestRoundTripTimeVariance, 1);
- peer -> lowestRoundTripTime = peer -> roundTripTime;
- peer -> highestRoundTripTimeVariance = peer -> roundTripTimeVariance;
- peer -> packetThrottleEpoch = host -> serviceTime;
- }
-
- peer -> lastReceiveTime = ENET_MAX (host -> serviceTime, 1);
- peer -> earliestTimeout = 0;
-
- receivedReliableSequenceNumber = ENET_NET_TO_HOST_16 (command -> acknowledge.receivedReliableSequenceNumber);
-
- commandNumber = enet_protocol_remove_sent_reliable_command (peer, receivedReliableSequenceNumber, command -> header.channelID);
-
- switch (peer -> state)
- {
- case ENET_PEER_STATE_ACKNOWLEDGING_CONNECT:
- if (commandNumber != ENET_PROTOCOL_COMMAND_VERIFY_CONNECT)
- return -1;
-
- enet_protocol_notify_connect (host, peer, event);
- break;
-
- case ENET_PEER_STATE_DISCONNECTING:
- if (commandNumber != ENET_PROTOCOL_COMMAND_DISCONNECT)
- return -1;
-
- enet_protocol_notify_disconnect (host, peer, event);
- break;
-
- case ENET_PEER_STATE_DISCONNECT_LATER:
- if (! enet_peer_has_outgoing_commands (peer))
- enet_peer_disconnect (peer, peer -> eventData);
- break;
-
- default:
- break;
- }
-
- return 0;
-}
-
-static int
-enet_protocol_handle_verify_connect (ENetHost * host, ENetEvent * event, ENetPeer * peer, const ENetProtocol * command)
-{
- enet_uint32 mtu, windowSize;
- size_t channelCount;
-
- if (peer -> state != ENET_PEER_STATE_CONNECTING)
- return 0;
-
- channelCount = ENET_NET_TO_HOST_32 (command -> verifyConnect.channelCount);
-
- if (channelCount < ENET_PROTOCOL_MINIMUM_CHANNEL_COUNT || channelCount > ENET_PROTOCOL_MAXIMUM_CHANNEL_COUNT ||
- ENET_NET_TO_HOST_32 (command -> verifyConnect.packetThrottleInterval) != peer -> packetThrottleInterval ||
- ENET_NET_TO_HOST_32 (command -> verifyConnect.packetThrottleAcceleration) != peer -> packetThrottleAcceleration ||
- ENET_NET_TO_HOST_32 (command -> verifyConnect.packetThrottleDeceleration) != peer -> packetThrottleDeceleration ||
- command -> verifyConnect.connectID != peer -> connectID)
- {
- peer -> eventData = 0;
-
- enet_protocol_dispatch_state (host, peer, ENET_PEER_STATE_ZOMBIE);
-
- return -1;
- }
-
- enet_protocol_remove_sent_reliable_command (peer, 1, 0xFF);
-
- if (channelCount < peer -> channelCount)
- peer -> channelCount = channelCount;
-
- peer -> outgoingPeerID = ENET_NET_TO_HOST_16 (command -> verifyConnect.outgoingPeerID);
- peer -> incomingSessionID = command -> verifyConnect.incomingSessionID;
- peer -> outgoingSessionID = command -> verifyConnect.outgoingSessionID;
-
- mtu = ENET_NET_TO_HOST_32 (command -> verifyConnect.mtu);
-
- if (mtu < ENET_PROTOCOL_MINIMUM_MTU)
- mtu = ENET_PROTOCOL_MINIMUM_MTU;
- else
- if (mtu > ENET_PROTOCOL_MAXIMUM_MTU)
- mtu = ENET_PROTOCOL_MAXIMUM_MTU;
-
- if (mtu < peer -> mtu)
- peer -> mtu = mtu;
-
- windowSize = ENET_NET_TO_HOST_32 (command -> verifyConnect.windowSize);
-
- if (windowSize < ENET_PROTOCOL_MINIMUM_WINDOW_SIZE)
- windowSize = ENET_PROTOCOL_MINIMUM_WINDOW_SIZE;
-
- if (windowSize > ENET_PROTOCOL_MAXIMUM_WINDOW_SIZE)
- windowSize = ENET_PROTOCOL_MAXIMUM_WINDOW_SIZE;
-
- if (windowSize < peer -> windowSize)
- peer -> windowSize = windowSize;
-
- peer -> incomingBandwidth = ENET_NET_TO_HOST_32 (command -> verifyConnect.incomingBandwidth);
- peer -> outgoingBandwidth = ENET_NET_TO_HOST_32 (command -> verifyConnect.outgoingBandwidth);
-
- enet_protocol_notify_connect (host, peer, event);
- return 0;
-}
-
-static int
-enet_protocol_handle_incoming_commands (ENetHost * host, ENetEvent * event)
-{
- ENetProtocolHeader * header;
- ENetProtocol * command;
- ENetPeer * peer;
- enet_uint8 * currentData;
- size_t headerSize;
- enet_uint16 peerID, flags;
- enet_uint8 sessionID;
-
- if (host -> receivedDataLength < (size_t) & ((ENetProtocolHeader *) 0) -> sentTime)
- return 0;
-
- header = (ENetProtocolHeader *) host -> receivedData;
-
- peerID = ENET_NET_TO_HOST_16 (header -> peerID);
- sessionID = (peerID & ENET_PROTOCOL_HEADER_SESSION_MASK) >> ENET_PROTOCOL_HEADER_SESSION_SHIFT;
- flags = peerID & ENET_PROTOCOL_HEADER_FLAG_MASK;
- peerID &= ~ (ENET_PROTOCOL_HEADER_FLAG_MASK | ENET_PROTOCOL_HEADER_SESSION_MASK);
-
- headerSize = (flags & ENET_PROTOCOL_HEADER_FLAG_SENT_TIME ? sizeof (ENetProtocolHeader) : (size_t) & ((ENetProtocolHeader *) 0) -> sentTime);
- if (host -> checksum != NULL)
- headerSize += sizeof (enet_uint32);
-
- if (peerID == ENET_PROTOCOL_MAXIMUM_PEER_ID)
- peer = NULL;
- else
- if (peerID >= host -> peerCount)
- return 0;
- else
- {
- peer = & host -> peers [peerID];
-
- if (peer -> state == ENET_PEER_STATE_DISCONNECTED ||
- peer -> state == ENET_PEER_STATE_ZOMBIE ||
- ((host -> receivedAddress.host != peer -> address.host ||
- host -> receivedAddress.port != peer -> address.port) &&
- peer -> address.host != ENET_HOST_BROADCAST) ||
- (peer -> outgoingPeerID < ENET_PROTOCOL_MAXIMUM_PEER_ID &&
- sessionID != peer -> incomingSessionID))
- return 0;
- }
-
- if (flags & ENET_PROTOCOL_HEADER_FLAG_COMPRESSED)
- {
- size_t originalSize;
- if (host -> compressor.context == NULL || host -> compressor.decompress == NULL)
- return 0;
-
- originalSize = host -> compressor.decompress (host -> compressor.context,
- host -> receivedData + headerSize,
- host -> receivedDataLength - headerSize,
- host -> packetData [1] + headerSize,
- sizeof (host -> packetData [1]) - headerSize);
- if (originalSize <= 0 || originalSize > sizeof (host -> packetData [1]) - headerSize)
- return 0;
-
- memcpy (host -> packetData [1], header, headerSize);
- host -> receivedData = host -> packetData [1];
- host -> receivedDataLength = headerSize + originalSize;
- }
-
- if (host -> checksum != NULL)
- {
- enet_uint32 * checksum = (enet_uint32 *) & host -> receivedData [headerSize - sizeof (enet_uint32)],
- desiredChecksum = * checksum;
- ENetBuffer buffer;
-
- * checksum = peer != NULL ? peer -> connectID : 0;
-
- buffer.data = host -> receivedData;
- buffer.dataLength = host -> receivedDataLength;
-
- if (host -> checksum (& buffer, 1) != desiredChecksum)
- return 0;
- }
-
- if (peer != NULL)
- {
- peer -> address.host = host -> receivedAddress.host;
- peer -> address.port = host -> receivedAddress.port;
- peer -> incomingDataTotal += host -> receivedDataLength;
- }
-
- currentData = host -> receivedData + headerSize;
-
- while (currentData < & host -> receivedData [host -> receivedDataLength])
- {
- enet_uint8 commandNumber;
- size_t commandSize;
-
- command = (ENetProtocol *) currentData;
-
- if (currentData + sizeof (ENetProtocolCommandHeader) > & host -> receivedData [host -> receivedDataLength])
- break;
-
- commandNumber = command -> header.command & ENET_PROTOCOL_COMMAND_MASK;
- if (commandNumber >= ENET_PROTOCOL_COMMAND_COUNT)
- break;
-
- commandSize = commandSizes [commandNumber];
- if (commandSize == 0 || currentData + commandSize > & host -> receivedData [host -> receivedDataLength])
- break;
-
- currentData += commandSize;
-
- if (peer == NULL && commandNumber != ENET_PROTOCOL_COMMAND_CONNECT)
- break;
-
- command -> header.reliableSequenceNumber = ENET_NET_TO_HOST_16 (command -> header.reliableSequenceNumber);
-
- switch (commandNumber)
- {
- case ENET_PROTOCOL_COMMAND_ACKNOWLEDGE:
- if (enet_protocol_handle_acknowledge (host, event, peer, command))
- goto commandError;
- break;
-
- case ENET_PROTOCOL_COMMAND_CONNECT:
- if (peer != NULL)
- goto commandError;
- peer = enet_protocol_handle_connect (host, header, command);
- if (peer == NULL)
- goto commandError;
- break;
-
- case ENET_PROTOCOL_COMMAND_VERIFY_CONNECT:
- if (enet_protocol_handle_verify_connect (host, event, peer, command))
- goto commandError;
- break;
-
- case ENET_PROTOCOL_COMMAND_DISCONNECT:
- if (enet_protocol_handle_disconnect (host, peer, command))
- goto commandError;
- break;
-
- case ENET_PROTOCOL_COMMAND_PING:
- if (enet_protocol_handle_ping (host, peer, command))
- goto commandError;
- break;
-
- case ENET_PROTOCOL_COMMAND_SEND_RELIABLE:
- if (enet_protocol_handle_send_reliable (host, peer, command, & currentData))
- goto commandError;
- break;
-
- case ENET_PROTOCOL_COMMAND_SEND_UNRELIABLE:
- if (enet_protocol_handle_send_unreliable (host, peer, command, & currentData))
- goto commandError;
- break;
-
- case ENET_PROTOCOL_COMMAND_SEND_UNSEQUENCED:
- if (enet_protocol_handle_send_unsequenced (host, peer, command, & currentData))
- goto commandError;
- break;
-
- case ENET_PROTOCOL_COMMAND_SEND_FRAGMENT:
- if (enet_protocol_handle_send_fragment (host, peer, command, & currentData))
- goto commandError;
- break;
-
- case ENET_PROTOCOL_COMMAND_BANDWIDTH_LIMIT:
- if (enet_protocol_handle_bandwidth_limit (host, peer, command))
- goto commandError;
- break;
-
- case ENET_PROTOCOL_COMMAND_THROTTLE_CONFIGURE:
- if (enet_protocol_handle_throttle_configure (host, peer, command))
- goto commandError;
- break;
-
- case ENET_PROTOCOL_COMMAND_SEND_UNRELIABLE_FRAGMENT:
- if (enet_protocol_handle_send_unreliable_fragment (host, peer, command, & currentData))
- goto commandError;
- break;
-
- default:
- goto commandError;
- }
-
- if (peer != NULL &&
- (command -> header.command & ENET_PROTOCOL_COMMAND_FLAG_ACKNOWLEDGE) != 0)
- {
- enet_uint16 sentTime;
-
- if (! (flags & ENET_PROTOCOL_HEADER_FLAG_SENT_TIME))
- break;
-
- sentTime = ENET_NET_TO_HOST_16 (header -> sentTime);
-
- switch (peer -> state)
- {
- case ENET_PEER_STATE_DISCONNECTING:
- case ENET_PEER_STATE_ACKNOWLEDGING_CONNECT:
- case ENET_PEER_STATE_DISCONNECTED:
- case ENET_PEER_STATE_ZOMBIE:
- break;
-
- case ENET_PEER_STATE_ACKNOWLEDGING_DISCONNECT:
- if ((command -> header.command & ENET_PROTOCOL_COMMAND_MASK) == ENET_PROTOCOL_COMMAND_DISCONNECT)
- enet_peer_queue_acknowledgement (peer, command, sentTime);
- break;
-
- default:
- enet_peer_queue_acknowledgement (peer, command, sentTime);
- break;
- }
- }
- }
-
-commandError:
- if (event != NULL && event -> type != ENET_EVENT_TYPE_NONE)
- return 1;
-
- return 0;
-}
-
-static int
-enet_protocol_receive_incoming_commands (ENetHost * host, ENetEvent * event)
-{
- int packets;
-
- for (packets = 0; packets < 256; ++ packets)
- {
- int receivedLength;
- ENetBuffer buffer;
-
- buffer.data = host -> packetData [0];
- buffer.dataLength = sizeof (host -> packetData [0]);
-
- receivedLength = enet_socket_receive (host -> socket,
- & host -> receivedAddress,
- & buffer,
- 1);
-
- if (receivedLength < 0)
- return -1;
-
- if (receivedLength == 0)
- return 0;
-
- host -> receivedData = host -> packetData [0];
- host -> receivedDataLength = receivedLength;
-
- host -> totalReceivedData += receivedLength;
- host -> totalReceivedPackets ++;
-
- if (host -> intercept != NULL)
- {
- switch (host -> intercept (host, event))
- {
- case 1:
- if (event != NULL && event -> type != ENET_EVENT_TYPE_NONE)
- return 1;
-
- continue;
-
- case -1:
- return -1;
-
- default:
- break;
- }
- }
-
- switch (enet_protocol_handle_incoming_commands (host, event))
- {
- case 1:
- return 1;
-
- case -1:
- return -1;
-
- default:
- break;
- }
- }
-
- return 0;
-}
-
-static void
-enet_protocol_send_acknowledgements (ENetHost * host, ENetPeer * peer)
-{
- ENetProtocol * command = & host -> commands [host -> commandCount];
- ENetBuffer * buffer = & host -> buffers [host -> bufferCount];
- ENetAcknowledgement * acknowledgement;
- ENetListIterator currentAcknowledgement;
- enet_uint16 reliableSequenceNumber;
-
- currentAcknowledgement = enet_list_begin (& peer -> acknowledgements);
-
- while (currentAcknowledgement != enet_list_end (& peer -> acknowledgements))
- {
- if (command >= & host -> commands [sizeof (host -> commands) / sizeof (ENetProtocol)] ||
- buffer >= & host -> buffers [sizeof (host -> buffers) / sizeof (ENetBuffer)] ||
- peer -> mtu - host -> packetSize < sizeof (ENetProtocolAcknowledge))
- {
- peer -> flags |= ENET_PEER_FLAG_CONTINUE_SENDING;
-
- break;
- }
-
- acknowledgement = (ENetAcknowledgement *) currentAcknowledgement;
-
- currentAcknowledgement = enet_list_next (currentAcknowledgement);
-
- buffer -> data = command;
- buffer -> dataLength = sizeof (ENetProtocolAcknowledge);
-
- host -> packetSize += buffer -> dataLength;
-
- reliableSequenceNumber = ENET_HOST_TO_NET_16 (acknowledgement -> command.header.reliableSequenceNumber);
-
- command -> header.command = ENET_PROTOCOL_COMMAND_ACKNOWLEDGE;
- command -> header.channelID = acknowledgement -> command.header.channelID;
- command -> header.reliableSequenceNumber = reliableSequenceNumber;
- command -> acknowledge.receivedReliableSequenceNumber = reliableSequenceNumber;
- command -> acknowledge.receivedSentTime = ENET_HOST_TO_NET_16 (acknowledgement -> sentTime);
-
- if ((acknowledgement -> command.header.command & ENET_PROTOCOL_COMMAND_MASK) == ENET_PROTOCOL_COMMAND_DISCONNECT)
- enet_protocol_dispatch_state (host, peer, ENET_PEER_STATE_ZOMBIE);
-
- enet_list_remove (& acknowledgement -> acknowledgementList);
- enet_free (acknowledgement);
-
- ++ command;
- ++ buffer;
- }
-
- host -> commandCount = command - host -> commands;
- host -> bufferCount = buffer - host -> buffers;
-}
-
-static int
-enet_protocol_check_timeouts (ENetHost * host, ENetPeer * peer, ENetEvent * event)
-{
- ENetOutgoingCommand * outgoingCommand;
- ENetListIterator currentCommand, insertPosition, insertSendReliablePosition;
-
- currentCommand = enet_list_begin (& peer -> sentReliableCommands);
- insertPosition = enet_list_begin (& peer -> outgoingCommands);
- insertSendReliablePosition = enet_list_begin (& peer -> outgoingSendReliableCommands);
-
- while (currentCommand != enet_list_end (& peer -> sentReliableCommands))
- {
- outgoingCommand = (ENetOutgoingCommand *) currentCommand;
-
- currentCommand = enet_list_next (currentCommand);
-
- if (ENET_TIME_DIFFERENCE (host -> serviceTime, outgoingCommand -> sentTime) < outgoingCommand -> roundTripTimeout)
- continue;
-
- if (peer -> earliestTimeout == 0 ||
- ENET_TIME_LESS (outgoingCommand -> sentTime, peer -> earliestTimeout))
- peer -> earliestTimeout = outgoingCommand -> sentTime;
-
- if (peer -> earliestTimeout != 0 &&
- (ENET_TIME_DIFFERENCE (host -> serviceTime, peer -> earliestTimeout) >= peer -> timeoutMaximum ||
- ((1 << (outgoingCommand -> sendAttempts - 1)) >= peer -> timeoutLimit &&
- ENET_TIME_DIFFERENCE (host -> serviceTime, peer -> earliestTimeout) >= peer -> timeoutMinimum)))
- {
- enet_protocol_notify_disconnect (host, peer, event);
-
- return 1;
- }
-
- ++ peer -> packetsLost;
-
- outgoingCommand -> roundTripTimeout *= 2;
-
- if (outgoingCommand -> packet != NULL)
- {
- peer -> reliableDataInTransit -= outgoingCommand -> fragmentLength;
-
- enet_list_insert (insertSendReliablePosition, enet_list_remove (& outgoingCommand -> outgoingCommandList));
- }
- else
- enet_list_insert (insertPosition, enet_list_remove (& outgoingCommand -> outgoingCommandList));
-
- if (currentCommand == enet_list_begin (& peer -> sentReliableCommands) &&
- ! enet_list_empty (& peer -> sentReliableCommands))
- {
- outgoingCommand = (ENetOutgoingCommand *) currentCommand;
-
- peer -> nextTimeout = outgoingCommand -> sentTime + outgoingCommand -> roundTripTimeout;
- }
- }
-
- return 0;
-}
-
-static int
-enet_protocol_check_outgoing_commands (ENetHost * host, ENetPeer * peer, ENetList * sentUnreliableCommands)
-{
- ENetProtocol * command = & host -> commands [host -> commandCount];
- ENetBuffer * buffer = & host -> buffers [host -> bufferCount];
- ENetOutgoingCommand * outgoingCommand;
- ENetListIterator currentCommand, currentSendReliableCommand;
- ENetChannel *channel = NULL;
- enet_uint16 reliableWindow = 0;
- size_t commandSize;
- int windowWrap = 0, canPing = 1;
-
- currentCommand = enet_list_begin (& peer -> outgoingCommands);
- currentSendReliableCommand = enet_list_begin (& peer -> outgoingSendReliableCommands);
-
- for (;;)
- {
- if (currentCommand != enet_list_end (& peer -> outgoingCommands))
- {
- outgoingCommand = (ENetOutgoingCommand *) currentCommand;
-
- if (currentSendReliableCommand != enet_list_end (& peer -> outgoingSendReliableCommands) &&
- ENET_TIME_LESS (((ENetOutgoingCommand *) currentSendReliableCommand) -> queueTime, outgoingCommand -> queueTime))
- goto useSendReliableCommand;
-
- currentCommand = enet_list_next (currentCommand);
- }
- else
- if (currentSendReliableCommand != enet_list_end (& peer -> outgoingSendReliableCommands))
- {
- useSendReliableCommand:
- outgoingCommand = (ENetOutgoingCommand *) currentSendReliableCommand;
- currentSendReliableCommand = enet_list_next (currentSendReliableCommand);
- }
- else
- break;
-
- if (outgoingCommand -> command.header.command & ENET_PROTOCOL_COMMAND_FLAG_ACKNOWLEDGE)
- {
- channel = outgoingCommand -> command.header.channelID < peer -> channelCount ? & peer -> channels [outgoingCommand -> command.header.channelID] : NULL;
- reliableWindow = outgoingCommand -> reliableSequenceNumber / ENET_PEER_RELIABLE_WINDOW_SIZE;
- if (channel != NULL)
- {
- if (windowWrap)
- continue;
- else
- if (outgoingCommand -> sendAttempts < 1 &&
- ! (outgoingCommand -> reliableSequenceNumber % ENET_PEER_RELIABLE_WINDOW_SIZE) &&
- (channel -> reliableWindows [(reliableWindow + ENET_PEER_RELIABLE_WINDOWS - 1) % ENET_PEER_RELIABLE_WINDOWS] >= ENET_PEER_RELIABLE_WINDOW_SIZE ||
- channel -> usedReliableWindows & ((((1 << (ENET_PEER_FREE_RELIABLE_WINDOWS + 2)) - 1) << reliableWindow) |
- (((1 << (ENET_PEER_FREE_RELIABLE_WINDOWS + 2)) - 1) >> (ENET_PEER_RELIABLE_WINDOWS - reliableWindow)))))
- {
- windowWrap = 1;
- currentSendReliableCommand = enet_list_end (& peer -> outgoingSendReliableCommands);
-
- continue;
- }
- }
-
- if (outgoingCommand -> packet != NULL)
- {
- enet_uint32 windowSize = (peer -> packetThrottle * peer -> windowSize) / ENET_PEER_PACKET_THROTTLE_SCALE;
-
- if (peer -> reliableDataInTransit + outgoingCommand -> fragmentLength > ENET_MAX (windowSize, peer -> mtu))
- {
- currentSendReliableCommand = enet_list_end (& peer -> outgoingSendReliableCommands);
-
- continue;
- }
- }
-
- canPing = 0;
- }
-
- commandSize = commandSizes [outgoingCommand -> command.header.command & ENET_PROTOCOL_COMMAND_MASK];
- if (command >= & host -> commands [sizeof (host -> commands) / sizeof (ENetProtocol)] ||
- buffer + 1 >= & host -> buffers [sizeof (host -> buffers) / sizeof (ENetBuffer)] ||
- peer -> mtu - host -> packetSize < commandSize ||
- (outgoingCommand -> packet != NULL &&
- (enet_uint16) (peer -> mtu - host -> packetSize) < (enet_uint16) (commandSize + outgoingCommand -> fragmentLength)))
- {
- peer -> flags |= ENET_PEER_FLAG_CONTINUE_SENDING;
-
- break;
- }
-
- if (outgoingCommand -> command.header.command & ENET_PROTOCOL_COMMAND_FLAG_ACKNOWLEDGE)
- {
- if (channel != NULL && outgoingCommand -> sendAttempts < 1)
- {
- channel -> usedReliableWindows |= 1 << reliableWindow;
- ++ channel -> reliableWindows [reliableWindow];
- }
-
- ++ outgoingCommand -> sendAttempts;
-
- if (outgoingCommand -> roundTripTimeout == 0)
- outgoingCommand -> roundTripTimeout = peer -> roundTripTime + 4 * peer -> roundTripTimeVariance;
-
- if (enet_list_empty (& peer -> sentReliableCommands))
- peer -> nextTimeout = host -> serviceTime + outgoingCommand -> roundTripTimeout;
-
- enet_list_insert (enet_list_end (& peer -> sentReliableCommands),
- enet_list_remove (& outgoingCommand -> outgoingCommandList));
-
- outgoingCommand -> sentTime = host -> serviceTime;
-
- host -> headerFlags |= ENET_PROTOCOL_HEADER_FLAG_SENT_TIME;
-
- peer -> reliableDataInTransit += outgoingCommand -> fragmentLength;
- }
- else
- {
- if (outgoingCommand -> packet != NULL && outgoingCommand -> fragmentOffset == 0)
- {
- peer -> packetThrottleCounter += ENET_PEER_PACKET_THROTTLE_COUNTER;
- peer -> packetThrottleCounter %= ENET_PEER_PACKET_THROTTLE_SCALE;
-
- if (peer -> packetThrottleCounter > peer -> packetThrottle)
- {
- enet_uint16 reliableSequenceNumber = outgoingCommand -> reliableSequenceNumber,
- unreliableSequenceNumber = outgoingCommand -> unreliableSequenceNumber;
- for (;;)
- {
- -- outgoingCommand -> packet -> referenceCount;
-
- if (outgoingCommand -> packet -> referenceCount == 0)
- enet_packet_destroy (outgoingCommand -> packet);
-
- enet_list_remove (& outgoingCommand -> outgoingCommandList);
- enet_free (outgoingCommand);
-
- if (currentCommand == enet_list_end (& peer -> outgoingCommands))
- break;
-
- outgoingCommand = (ENetOutgoingCommand *) currentCommand;
- if (outgoingCommand -> reliableSequenceNumber != reliableSequenceNumber ||
- outgoingCommand -> unreliableSequenceNumber != unreliableSequenceNumber)
- break;
-
- currentCommand = enet_list_next (currentCommand);
- }
-
- continue;
- }
- }
-
- enet_list_remove (& outgoingCommand -> outgoingCommandList);
-
- if (outgoingCommand -> packet != NULL)
- enet_list_insert (enet_list_end (sentUnreliableCommands), outgoingCommand);
- }
-
- buffer -> data = command;
- buffer -> dataLength = commandSize;
-
- host -> packetSize += buffer -> dataLength;
-
- * command = outgoingCommand -> command;
-
- if (outgoingCommand -> packet != NULL)
- {
- ++ buffer;
-
- buffer -> data = outgoingCommand -> packet -> data + outgoingCommand -> fragmentOffset;
- buffer -> dataLength = outgoingCommand -> fragmentLength;
-
- host -> packetSize += outgoingCommand -> fragmentLength;
- }
- else
- if (! (outgoingCommand -> command.header.command & ENET_PROTOCOL_COMMAND_FLAG_ACKNOWLEDGE))
- enet_free (outgoingCommand);
-
- ++ peer -> packetsSent;
-
- ++ command;
- ++ buffer;
- }
-
- host -> commandCount = command - host -> commands;
- host -> bufferCount = buffer - host -> buffers;
-
- if (peer -> state == ENET_PEER_STATE_DISCONNECT_LATER &&
- ! enet_peer_has_outgoing_commands (peer) &&
- enet_list_empty (sentUnreliableCommands))
- enet_peer_disconnect (peer, peer -> eventData);
-
- return canPing;
-}
-
-static int
-enet_protocol_send_outgoing_commands (ENetHost * host, ENetEvent * event, int checkForTimeouts)
-{
- enet_uint8 headerData [sizeof (ENetProtocolHeader) + sizeof (enet_uint32)];
- ENetProtocolHeader * header = (ENetProtocolHeader *) headerData;
- int sentLength = 0;
- size_t shouldCompress = 0;
- ENetList sentUnreliableCommands;
-
- enet_list_clear (& sentUnreliableCommands);
-
- for (int sendPass = 0, continueSending = 0; sendPass <= continueSending; ++ sendPass)
- for (ENetPeer * currentPeer = host -> peers;
- currentPeer < & host -> peers [host -> peerCount];
- ++ currentPeer)
- {
- if (currentPeer -> state == ENET_PEER_STATE_DISCONNECTED ||
- currentPeer -> state == ENET_PEER_STATE_ZOMBIE ||
- (sendPass > 0 && ! (currentPeer -> flags & ENET_PEER_FLAG_CONTINUE_SENDING)))
- continue;
-
- currentPeer -> flags &= ~ ENET_PEER_FLAG_CONTINUE_SENDING;
-
- host -> headerFlags = 0;
- host -> commandCount = 0;
- host -> bufferCount = 1;
- host -> packetSize = sizeof (ENetProtocolHeader);
-
- if (! enet_list_empty (& currentPeer -> acknowledgements))
- enet_protocol_send_acknowledgements (host, currentPeer);
-
- if (checkForTimeouts != 0 &&
- ! enet_list_empty (& currentPeer -> sentReliableCommands) &&
- ENET_TIME_GREATER_EQUAL (host -> serviceTime, currentPeer -> nextTimeout) &&
- enet_protocol_check_timeouts (host, currentPeer, event) == 1)
- {
- if (event != NULL && event -> type != ENET_EVENT_TYPE_NONE)
- return 1;
- else
- goto nextPeer;
- }
-
- if (((enet_list_empty (& currentPeer -> outgoingCommands) &&
- enet_list_empty (& currentPeer -> outgoingSendReliableCommands)) ||
- enet_protocol_check_outgoing_commands (host, currentPeer, & sentUnreliableCommands)) &&
- enet_list_empty (& currentPeer -> sentReliableCommands) &&
- ENET_TIME_DIFFERENCE (host -> serviceTime, currentPeer -> lastReceiveTime) >= currentPeer -> pingInterval &&
- currentPeer -> mtu - host -> packetSize >= sizeof (ENetProtocolPing))
- {
- enet_peer_ping (currentPeer);
- enet_protocol_check_outgoing_commands (host, currentPeer, & sentUnreliableCommands);
- }
-
- if (host -> commandCount == 0)
- goto nextPeer;
-
- if (currentPeer -> packetLossEpoch == 0)
- currentPeer -> packetLossEpoch = host -> serviceTime;
- else
- if (ENET_TIME_DIFFERENCE (host -> serviceTime, currentPeer -> packetLossEpoch) >= ENET_PEER_PACKET_LOSS_INTERVAL &&
- currentPeer -> packetsSent > 0)
- {
- enet_uint32 packetLoss = currentPeer -> packetsLost * ENET_PEER_PACKET_LOSS_SCALE / currentPeer -> packetsSent;
-
-#ifdef ENET_DEBUG
- printf ("peer %u: %f%%+-%f%% packet loss, %u+-%u ms round trip time, %f%% throttle, %u outgoing, %u/%u incoming\n", currentPeer -> incomingPeerID, currentPeer -> packetLoss / (float) ENET_PEER_PACKET_LOSS_SCALE, currentPeer -> packetLossVariance / (float) ENET_PEER_PACKET_LOSS_SCALE, currentPeer -> roundTripTime, currentPeer -> roundTripTimeVariance, currentPeer -> packetThrottle / (float) ENET_PEER_PACKET_THROTTLE_SCALE, enet_list_size (& currentPeer -> outgoingCommands) + enet_list_size (& currentPeer -> outgoingSendReliableCommands), currentPeer -> channels != NULL ? enet_list_size (& currentPeer -> channels -> incomingReliableCommands) : 0, currentPeer -> channels != NULL ? enet_list_size (& currentPeer -> channels -> incomingUnreliableCommands) : 0);
-#endif
-
- currentPeer -> packetLossVariance = (currentPeer -> packetLossVariance * 3 + ENET_DIFFERENCE (packetLoss, currentPeer -> packetLoss)) / 4;
- currentPeer -> packetLoss = (currentPeer -> packetLoss * 7 + packetLoss) / 8;
-
- currentPeer -> packetLossEpoch = host -> serviceTime;
- currentPeer -> packetsSent = 0;
- currentPeer -> packetsLost = 0;
- }
-
- host -> buffers -> data = headerData;
- if (host -> headerFlags & ENET_PROTOCOL_HEADER_FLAG_SENT_TIME)
- {
- header -> sentTime = ENET_HOST_TO_NET_16 (host -> serviceTime & 0xFFFF);
-
- host -> buffers -> dataLength = sizeof (ENetProtocolHeader);
- }
- else
- host -> buffers -> dataLength = (size_t) & ((ENetProtocolHeader *) 0) -> sentTime;
-
- shouldCompress = 0;
- if (host -> compressor.context != NULL && host -> compressor.compress != NULL)
- {
- size_t originalSize = host -> packetSize - sizeof(ENetProtocolHeader),
- compressedSize = host -> compressor.compress (host -> compressor.context,
- & host -> buffers [1], host -> bufferCount - 1,
- originalSize,
- host -> packetData [1],
- originalSize);
- if (compressedSize > 0 && compressedSize < originalSize)
- {
- host -> headerFlags |= ENET_PROTOCOL_HEADER_FLAG_COMPRESSED;
- shouldCompress = compressedSize;
-#ifdef ENET_DEBUG_COMPRESS
- printf ("peer %u: compressed %u -> %u (%u%%)\n", currentPeer -> incomingPeerID, originalSize, compressedSize, (compressedSize * 100) / originalSize);
-#endif
- }
- }
-
- if (currentPeer -> outgoingPeerID < ENET_PROTOCOL_MAXIMUM_PEER_ID)
- host -> headerFlags |= currentPeer -> outgoingSessionID << ENET_PROTOCOL_HEADER_SESSION_SHIFT;
- header -> peerID = ENET_HOST_TO_NET_16 (currentPeer -> outgoingPeerID | host -> headerFlags);
- if (host -> checksum != NULL)
- {
- enet_uint32 * checksum = (enet_uint32 *) & headerData [host -> buffers -> dataLength];
- * checksum = currentPeer -> outgoingPeerID < ENET_PROTOCOL_MAXIMUM_PEER_ID ? currentPeer -> connectID : 0;
- host -> buffers -> dataLength += sizeof (enet_uint32);
- * checksum = host -> checksum (host -> buffers, host -> bufferCount);
- }
-
- if (shouldCompress > 0)
- {
- host -> buffers [1].data = host -> packetData [1];
- host -> buffers [1].dataLength = shouldCompress;
- host -> bufferCount = 2;
- }
-
- currentPeer -> lastSendTime = host -> serviceTime;
-
- sentLength = enet_socket_send (host -> socket, & currentPeer -> address, host -> buffers, host -> bufferCount);
-
- enet_protocol_remove_sent_unreliable_commands (currentPeer, & sentUnreliableCommands);
-
- if (sentLength < 0)
- return -1;
-
- host -> totalSentData += sentLength;
- host -> totalSentPackets ++;
-
- nextPeer:
- if (currentPeer -> flags & ENET_PEER_FLAG_CONTINUE_SENDING)
- continueSending = sendPass + 1;
- }
-
- return 0;
-}
-
-/** Sends any queued packets on the host specified to its designated peers.
-
- @param host host to flush
- @remarks this function need only be used in circumstances where one wishes to send queued packets earlier than in a call to enet_host_service().
- @ingroup host
-*/
-void
-enet_host_flush (ENetHost * host)
-{
- host -> serviceTime = enet_time_get ();
-
- enet_protocol_send_outgoing_commands (host, NULL, 0);
-}
-
-/** Checks for any queued events on the host and dispatches one if available.
-
- @param host host to check for events
- @param event an event structure where event details will be placed if available
- @retval > 0 if an event was dispatched
- @retval 0 if no events are available
- @retval < 0 on failure
- @ingroup host
-*/
-int
-enet_host_check_events (ENetHost * host, ENetEvent * event)
-{
- if (event == NULL) return -1;
-
- event -> type = ENET_EVENT_TYPE_NONE;
- event -> peer = NULL;
- event -> packet = NULL;
-
- return enet_protocol_dispatch_incoming_commands (host, event);
-}
-
-/** Waits for events on the host specified and shuttles packets between
- the host and its peers.
-
- @param host host to service
- @param event an event structure where event details will be placed if one occurs
- if event == NULL then no events will be delivered
- @param timeout number of milliseconds that ENet should wait for events
- @retval > 0 if an event occurred within the specified time limit
- @retval 0 if no event occurred
- @retval < 0 on failure
- @remarks enet_host_service should be called fairly regularly for adequate performance
- @ingroup host
-*/
-int
-enet_host_service (ENetHost * host, ENetEvent * event, enet_uint32 timeout)
-{
- enet_uint32 waitCondition;
-
- if (event != NULL)
- {
- event -> type = ENET_EVENT_TYPE_NONE;
- event -> peer = NULL;
- event -> packet = NULL;
-
- switch (enet_protocol_dispatch_incoming_commands (host, event))
- {
- case 1:
- return 1;
-
- case -1:
-#ifdef ENET_DEBUG
- perror ("Error dispatching incoming packets");
-#endif
-
- return -1;
-
- default:
- break;
- }
- }
-
- host -> serviceTime = enet_time_get ();
-
- timeout += host -> serviceTime;
-
- do
- {
- if (ENET_TIME_DIFFERENCE (host -> serviceTime, host -> bandwidthThrottleEpoch) >= ENET_HOST_BANDWIDTH_THROTTLE_INTERVAL)
- enet_host_bandwidth_throttle (host);
-
- switch (enet_protocol_send_outgoing_commands (host, event, 1))
- {
- case 1:
- return 1;
-
- case -1:
-#ifdef ENET_DEBUG
- perror ("Error sending outgoing packets");
-#endif
-
- return -1;
-
- default:
- break;
- }
-
- switch (enet_protocol_receive_incoming_commands (host, event))
- {
- case 1:
- return 1;
-
- case -1:
-#ifdef ENET_DEBUG
- perror ("Error receiving incoming packets");
-#endif
-
- return -1;
-
- default:
- break;
- }
-
- switch (enet_protocol_send_outgoing_commands (host, event, 1))
- {
- case 1:
- return 1;
-
- case -1:
-#ifdef ENET_DEBUG
- perror ("Error sending outgoing packets");
-#endif
-
- return -1;
-
- default:
- break;
- }
-
- if (event != NULL)
- {
- switch (enet_protocol_dispatch_incoming_commands (host, event))
- {
- case 1:
- return 1;
-
- case -1:
-#ifdef ENET_DEBUG
- perror ("Error dispatching incoming packets");
-#endif
-
- return -1;
-
- default:
- break;
- }
- }
-
- if (ENET_TIME_GREATER_EQUAL (host -> serviceTime, timeout))
- return 0;
-
- do
- {
- host -> serviceTime = enet_time_get ();
-
- if (ENET_TIME_GREATER_EQUAL (host -> serviceTime, timeout))
- return 0;
-
- waitCondition = ENET_SOCKET_WAIT_RECEIVE | ENET_SOCKET_WAIT_INTERRUPT;
-
- if (enet_socket_wait (host -> socket, & waitCondition, ENET_TIME_DIFFERENCE (timeout, host -> serviceTime)) != 0)
- return -1;
- }
- while (waitCondition & ENET_SOCKET_WAIT_INTERRUPT);
-
- host -> serviceTime = enet_time_get ();
- } while (waitCondition & ENET_SOCKET_WAIT_RECEIVE);
-
- return 0;
-}
-
diff --git a/Externals/enet/unix.c b/Externals/enet/unix.c
deleted file mode 100644
index 2c7d847dd9..0000000000
--- a/Externals/enet/unix.c
+++ /dev/null
@@ -1,624 +0,0 @@
-/**
- @file unix.c
- @brief ENet Unix system specific functions
-*/
-#ifndef _WIN32
-
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-
-#define ENET_BUILDING_LIB 1
-#include "enet/enet.h"
-
-#ifdef __APPLE__
-#ifdef HAS_POLL
-#undef HAS_POLL
-#endif
-#ifndef HAS_FCNTL
-#define HAS_FCNTL 1
-#endif
-#ifndef HAS_INET_PTON
-#define HAS_INET_PTON 1
-#endif
-#ifndef HAS_INET_NTOP
-#define HAS_INET_NTOP 1
-#endif
-#ifndef HAS_MSGHDR_FLAGS
-#define HAS_MSGHDR_FLAGS 1
-#endif
-#ifndef HAS_SOCKLEN_T
-#define HAS_SOCKLEN_T 1
-#endif
-#ifndef HAS_GETADDRINFO
-#define HAS_GETADDRINFO 1
-#endif
-#ifndef HAS_GETNAMEINFO
-#define HAS_GETNAMEINFO 1
-#endif
-#endif
-
-#ifdef HAS_FCNTL
-#include
-#endif
-
-#ifdef HAS_POLL
-#include
-#endif
-
-#if !defined(HAS_SOCKLEN_T) && !defined(__socklen_t_defined)
-typedef int socklen_t;
-#endif
-
-#ifndef MSG_NOSIGNAL
-#define MSG_NOSIGNAL 0
-#endif
-
-static enet_uint32 timeBase = 0;
-
-int
-enet_initialize (void)
-{
- return 0;
-}
-
-void
-enet_deinitialize (void)
-{
-}
-
-enet_uint32
-enet_host_random_seed (void)
-{
- return (enet_uint32) time (NULL);
-}
-
-enet_uint32
-enet_time_get (void)
-{
- struct timeval timeVal;
-
- gettimeofday (& timeVal, NULL);
-
- return timeVal.tv_sec * 1000 + timeVal.tv_usec / 1000 - timeBase;
-}
-
-void
-enet_time_set (enet_uint32 newTimeBase)
-{
- struct timeval timeVal;
-
- gettimeofday (& timeVal, NULL);
-
- timeBase = timeVal.tv_sec * 1000 + timeVal.tv_usec / 1000 - newTimeBase;
-}
-
-int
-enet_address_set_host_ip (ENetAddress * address, const char * name)
-{
-#ifdef HAS_INET_PTON
- if (! inet_pton (AF_INET, name, & address -> host))
-#else
- if (! inet_aton (name, (struct in_addr *) & address -> host))
-#endif
- return -1;
-
- return 0;
-}
-
-int
-enet_address_set_host (ENetAddress * address, const char * name)
-{
-#ifdef HAS_GETADDRINFO
- struct addrinfo hints, * resultList = NULL, * result = NULL;
-
- memset (& hints, 0, sizeof (hints));
- hints.ai_family = AF_INET;
-
- if (getaddrinfo (name, NULL, NULL, & resultList) != 0)
- return -1;
-
- for (result = resultList; result != NULL; result = result -> ai_next)
- {
- if (result -> ai_family == AF_INET && result -> ai_addr != NULL && result -> ai_addrlen >= sizeof (struct sockaddr_in))
- {
- struct sockaddr_in * sin = (struct sockaddr_in *) result -> ai_addr;
-
- address -> host = sin -> sin_addr.s_addr;
-
- freeaddrinfo (resultList);
-
- return 0;
- }
- }
-
- if (resultList != NULL)
- freeaddrinfo (resultList);
-#else
- struct hostent * hostEntry = NULL;
-#ifdef HAS_GETHOSTBYNAME_R
- struct hostent hostData;
- char buffer [2048];
- int errnum;
-
-#if defined(linux) || defined(__linux) || defined(__linux__) || defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__DragonFly__) || defined(__GNU__)
- gethostbyname_r (name, & hostData, buffer, sizeof (buffer), & hostEntry, & errnum);
-#else
- hostEntry = gethostbyname_r (name, & hostData, buffer, sizeof (buffer), & errnum);
-#endif
-#else
- hostEntry = gethostbyname (name);
-#endif
-
- if (hostEntry != NULL && hostEntry -> h_addrtype == AF_INET)
- {
- address -> host = * (enet_uint32 *) hostEntry -> h_addr_list [0];
-
- return 0;
- }
-#endif
-
- return enet_address_set_host_ip (address, name);
-}
-
-int
-enet_address_get_host_ip (const ENetAddress * address, char * name, size_t nameLength)
-{
-#ifdef HAS_INET_NTOP
- if (inet_ntop (AF_INET, & address -> host, name, nameLength) == NULL)
-#else
- char * addr = inet_ntoa (* (struct in_addr *) & address -> host);
- if (addr != NULL)
- {
- size_t addrLen = strlen(addr);
- if (addrLen >= nameLength)
- return -1;
- memcpy (name, addr, addrLen + 1);
- }
- else
-#endif
- return -1;
- return 0;
-}
-
-int
-enet_address_get_host (const ENetAddress * address, char * name, size_t nameLength)
-{
-#ifdef HAS_GETNAMEINFO
- struct sockaddr_in sin;
- int err;
-
- memset (& sin, 0, sizeof (struct sockaddr_in));
-
- sin.sin_family = AF_INET;
- sin.sin_port = ENET_HOST_TO_NET_16 (address -> port);
- sin.sin_addr.s_addr = address -> host;
-
- err = getnameinfo ((struct sockaddr *) & sin, sizeof (sin), name, nameLength, NULL, 0, NI_NAMEREQD);
- if (! err)
- {
- if (name != NULL && nameLength > 0 && ! memchr (name, '\0', nameLength))
- return -1;
- return 0;
- }
- if (err != EAI_NONAME)
- return -1;
-#else
- struct in_addr in;
- struct hostent * hostEntry = NULL;
-#ifdef HAS_GETHOSTBYADDR_R
- struct hostent hostData;
- char buffer [2048];
- int errnum;
-
- in.s_addr = address -> host;
-
-#if defined(linux) || defined(__linux) || defined(__linux__) || defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__DragonFly__) || defined(__GNU__)
- gethostbyaddr_r ((char *) & in, sizeof (struct in_addr), AF_INET, & hostData, buffer, sizeof (buffer), & hostEntry, & errnum);
-#else
- hostEntry = gethostbyaddr_r ((char *) & in, sizeof (struct in_addr), AF_INET, & hostData, buffer, sizeof (buffer), & errnum);
-#endif
-#else
- in.s_addr = address -> host;
-
- hostEntry = gethostbyaddr ((char *) & in, sizeof (struct in_addr), AF_INET);
-#endif
-
- if (hostEntry != NULL)
- {
- size_t hostLen = strlen (hostEntry -> h_name);
- if (hostLen >= nameLength)
- return -1;
- memcpy (name, hostEntry -> h_name, hostLen + 1);
- return 0;
- }
-#endif
-
- return enet_address_get_host_ip (address, name, nameLength);
-}
-
-int
-enet_socket_bind (ENetSocket socket, const ENetAddress * address)
-{
- struct sockaddr_in sin;
-
- memset (& sin, 0, sizeof (struct sockaddr_in));
-
- sin.sin_family = AF_INET;
-
- if (address != NULL)
- {
- sin.sin_port = ENET_HOST_TO_NET_16 (address -> port);
- sin.sin_addr.s_addr = address -> host;
- }
- else
- {
- sin.sin_port = 0;
- sin.sin_addr.s_addr = INADDR_ANY;
- }
-
- return bind (socket,
- (struct sockaddr *) & sin,
- sizeof (struct sockaddr_in));
-}
-
-int
-enet_socket_get_address (ENetSocket socket, ENetAddress * address)
-{
- struct sockaddr_in sin;
- socklen_t sinLength = sizeof (struct sockaddr_in);
-
- if (getsockname (socket, (struct sockaddr *) & sin, & sinLength) == -1)
- return -1;
-
- address -> host = (enet_uint32) sin.sin_addr.s_addr;
- address -> port = ENET_NET_TO_HOST_16 (sin.sin_port);
-
- return 0;
-}
-
-int
-enet_socket_listen (ENetSocket socket, int backlog)
-{
- return listen (socket, backlog < 0 ? SOMAXCONN : backlog);
-}
-
-ENetSocket
-enet_socket_create (ENetSocketType type)
-{
- return socket (PF_INET, type == ENET_SOCKET_TYPE_DATAGRAM ? SOCK_DGRAM : SOCK_STREAM, 0);
-}
-
-int
-enet_socket_set_option (ENetSocket socket, ENetSocketOption option, int value)
-{
- int result = -1;
- switch (option)
- {
- case ENET_SOCKOPT_NONBLOCK:
-#ifdef HAS_FCNTL
- result = fcntl (socket, F_SETFL, (value ? O_NONBLOCK : 0) | (fcntl (socket, F_GETFL) & ~O_NONBLOCK));
-#else
- result = ioctl (socket, FIONBIO, & value);
-#endif
- break;
-
- case ENET_SOCKOPT_BROADCAST:
- result = setsockopt (socket, SOL_SOCKET, SO_BROADCAST, (char *) & value, sizeof (int));
- break;
-
- case ENET_SOCKOPT_REUSEADDR:
- result = setsockopt (socket, SOL_SOCKET, SO_REUSEADDR, (char *) & value, sizeof (int));
- break;
-
- case ENET_SOCKOPT_RCVBUF:
- result = setsockopt (socket, SOL_SOCKET, SO_RCVBUF, (char *) & value, sizeof (int));
- break;
-
- case ENET_SOCKOPT_SNDBUF:
- result = setsockopt (socket, SOL_SOCKET, SO_SNDBUF, (char *) & value, sizeof (int));
- break;
-
- case ENET_SOCKOPT_RCVTIMEO:
- {
- struct timeval timeVal;
- timeVal.tv_sec = value / 1000;
- timeVal.tv_usec = (value % 1000) * 1000;
- result = setsockopt (socket, SOL_SOCKET, SO_RCVTIMEO, (char *) & timeVal, sizeof (struct timeval));
- break;
- }
-
- case ENET_SOCKOPT_SNDTIMEO:
- {
- struct timeval timeVal;
- timeVal.tv_sec = value / 1000;
- timeVal.tv_usec = (value % 1000) * 1000;
- result = setsockopt (socket, SOL_SOCKET, SO_SNDTIMEO, (char *) & timeVal, sizeof (struct timeval));
- break;
- }
-
- case ENET_SOCKOPT_NODELAY:
- result = setsockopt (socket, IPPROTO_TCP, TCP_NODELAY, (char *) & value, sizeof (int));
- break;
-
- case ENET_SOCKOPT_TTL:
- result = setsockopt (socket, IPPROTO_IP, IP_TTL, (char *) & value, sizeof (int));
- break;
-
- default:
- break;
- }
- return result == -1 ? -1 : 0;
-}
-
-int
-enet_socket_get_option (ENetSocket socket, ENetSocketOption option, int * value)
-{
- int result = -1;
- socklen_t len;
- switch (option)
- {
- case ENET_SOCKOPT_ERROR:
- len = sizeof (int);
- result = getsockopt (socket, SOL_SOCKET, SO_ERROR, value, & len);
- break;
-
- case ENET_SOCKOPT_TTL:
- len = sizeof (int);
- result = getsockopt (socket, IPPROTO_IP, IP_TTL, (char *) value, & len);
- break;
-
- default:
- break;
- }
- return result == -1 ? -1 : 0;
-}
-
-int
-enet_socket_connect (ENetSocket socket, const ENetAddress * address)
-{
- struct sockaddr_in sin;
- int result;
-
- memset (& sin, 0, sizeof (struct sockaddr_in));
-
- sin.sin_family = AF_INET;
- sin.sin_port = ENET_HOST_TO_NET_16 (address -> port);
- sin.sin_addr.s_addr = address -> host;
-
- result = connect (socket, (struct sockaddr *) & sin, sizeof (struct sockaddr_in));
- if (result == -1 && errno == EINPROGRESS)
- return 0;
-
- return result;
-}
-
-ENetSocket
-enet_socket_accept (ENetSocket socket, ENetAddress * address)
-{
- int result;
- struct sockaddr_in sin;
- socklen_t sinLength = sizeof (struct sockaddr_in);
-
- result = accept (socket,
- address != NULL ? (struct sockaddr *) & sin : NULL,
- address != NULL ? & sinLength : NULL);
-
- if (result == -1)
- return ENET_SOCKET_NULL;
-
- if (address != NULL)
- {
- address -> host = (enet_uint32) sin.sin_addr.s_addr;
- address -> port = ENET_NET_TO_HOST_16 (sin.sin_port);
- }
-
- return result;
-}
-
-int
-enet_socket_shutdown (ENetSocket socket, ENetSocketShutdown how)
-{
- return shutdown (socket, (int) how);
-}
-
-void
-enet_socket_destroy (ENetSocket socket)
-{
- if (socket != -1)
- close (socket);
-}
-
-int
-enet_socket_send (ENetSocket socket,
- const ENetAddress * address,
- const ENetBuffer * buffers,
- size_t bufferCount)
-{
- struct msghdr msgHdr;
- struct sockaddr_in sin;
- int sentLength;
-
- memset (& msgHdr, 0, sizeof (struct msghdr));
-
- if (address != NULL)
- {
- memset (& sin, 0, sizeof (struct sockaddr_in));
-
- sin.sin_family = AF_INET;
- sin.sin_port = ENET_HOST_TO_NET_16 (address -> port);
- sin.sin_addr.s_addr = address -> host;
-
- msgHdr.msg_name = & sin;
- msgHdr.msg_namelen = sizeof (struct sockaddr_in);
- }
-
- msgHdr.msg_iov = (struct iovec *) buffers;
- msgHdr.msg_iovlen = bufferCount;
-
- sentLength = sendmsg (socket, & msgHdr, MSG_NOSIGNAL);
-
- if (sentLength == -1)
- {
- if (errno == EWOULDBLOCK)
- return 0;
-
- return -1;
- }
-
- return sentLength;
-}
-
-int
-enet_socket_receive (ENetSocket socket,
- ENetAddress * address,
- ENetBuffer * buffers,
- size_t bufferCount)
-{
- struct msghdr msgHdr;
- struct sockaddr_in sin;
- int recvLength;
-
- memset (& msgHdr, 0, sizeof (struct msghdr));
-
- if (address != NULL)
- {
- msgHdr.msg_name = & sin;
- msgHdr.msg_namelen = sizeof (struct sockaddr_in);
- }
-
- msgHdr.msg_iov = (struct iovec *) buffers;
- msgHdr.msg_iovlen = bufferCount;
-
- recvLength = recvmsg (socket, & msgHdr, MSG_NOSIGNAL);
-
- if (recvLength == -1)
- {
- if (errno == EWOULDBLOCK)
- return 0;
-
- return -1;
- }
-
-#ifdef HAS_MSGHDR_FLAGS
- if (msgHdr.msg_flags & MSG_TRUNC)
- return -1;
-#endif
-
- if (address != NULL)
- {
- address -> host = (enet_uint32) sin.sin_addr.s_addr;
- address -> port = ENET_NET_TO_HOST_16 (sin.sin_port);
- }
-
- return recvLength;
-}
-
-int
-enet_socketset_select (ENetSocket maxSocket, ENetSocketSet * readSet, ENetSocketSet * writeSet, enet_uint32 timeout)
-{
- struct timeval timeVal;
-
- timeVal.tv_sec = timeout / 1000;
- timeVal.tv_usec = (timeout % 1000) * 1000;
-
- return select (maxSocket + 1, readSet, writeSet, NULL, & timeVal);
-}
-
-int
-enet_socket_wait (ENetSocket socket, enet_uint32 * condition, enet_uint32 timeout)
-{
-#ifdef HAS_POLL
- struct pollfd pollSocket;
- int pollCount;
-
- pollSocket.fd = socket;
- pollSocket.events = 0;
-
- if (* condition & ENET_SOCKET_WAIT_SEND)
- pollSocket.events |= POLLOUT;
-
- if (* condition & ENET_SOCKET_WAIT_RECEIVE)
- pollSocket.events |= POLLIN;
-
- pollCount = poll (& pollSocket, 1, timeout);
-
- if (pollCount < 0)
- {
- if (errno == EINTR && * condition & ENET_SOCKET_WAIT_INTERRUPT)
- {
- * condition = ENET_SOCKET_WAIT_INTERRUPT;
-
- return 0;
- }
-
- return -1;
- }
-
- * condition = ENET_SOCKET_WAIT_NONE;
-
- if (pollCount == 0)
- return 0;
-
- if (pollSocket.revents & POLLOUT)
- * condition |= ENET_SOCKET_WAIT_SEND;
-
- if (pollSocket.revents & POLLIN)
- * condition |= ENET_SOCKET_WAIT_RECEIVE;
-
- return 0;
-#else
- fd_set readSet, writeSet;
- struct timeval timeVal;
- int selectCount;
-
- timeVal.tv_sec = timeout / 1000;
- timeVal.tv_usec = (timeout % 1000) * 1000;
-
- FD_ZERO (& readSet);
- FD_ZERO (& writeSet);
-
- if (* condition & ENET_SOCKET_WAIT_SEND)
- FD_SET (socket, & writeSet);
-
- if (* condition & ENET_SOCKET_WAIT_RECEIVE)
- FD_SET (socket, & readSet);
-
- selectCount = select (socket + 1, & readSet, & writeSet, NULL, & timeVal);
-
- if (selectCount < 0)
- {
- if (errno == EINTR && * condition & ENET_SOCKET_WAIT_INTERRUPT)
- {
- * condition = ENET_SOCKET_WAIT_INTERRUPT;
-
- return 0;
- }
-
- return -1;
- }
-
- * condition = ENET_SOCKET_WAIT_NONE;
-
- if (selectCount == 0)
- return 0;
-
- if (FD_ISSET (socket, & writeSet))
- * condition |= ENET_SOCKET_WAIT_SEND;
-
- if (FD_ISSET (socket, & readSet))
- * condition |= ENET_SOCKET_WAIT_RECEIVE;
-
- return 0;
-#endif
-}
-
-#endif
-
diff --git a/Externals/enet/win32.c b/Externals/enet/win32.c
deleted file mode 100644
index 0953466a3d..0000000000
--- a/Externals/enet/win32.c
+++ /dev/null
@@ -1,452 +0,0 @@
-/**
- @file win32.c
- @brief ENet Win32 system specific functions
-*/
-#ifdef _WIN32
-
-#define ENET_BUILDING_LIB 1
-#include "enet/enet.h"
-#include
-#include
-#include
-
-static enet_uint32 timeBase = 0;
-
-int
-enet_initialize (void)
-{
- WORD versionRequested = MAKEWORD (1, 1);
- WSADATA wsaData;
-
- if (WSAStartup (versionRequested, & wsaData))
- return -1;
-
- if (LOBYTE (wsaData.wVersion) != 1||
- HIBYTE (wsaData.wVersion) != 1)
- {
- WSACleanup ();
-
- return -1;
- }
-
- timeBeginPeriod (1);
-
- return 0;
-}
-
-void
-enet_deinitialize (void)
-{
- timeEndPeriod (1);
-
- WSACleanup ();
-}
-
-enet_uint32
-enet_host_random_seed (void)
-{
- return (enet_uint32) timeGetTime ();
-}
-
-enet_uint32
-enet_time_get (void)
-{
- return (enet_uint32) timeGetTime () - timeBase;
-}
-
-void
-enet_time_set (enet_uint32 newTimeBase)
-{
- timeBase = (enet_uint32) timeGetTime () - newTimeBase;
-}
-
-int
-enet_address_set_host_ip (ENetAddress * address, const char * name)
-{
- enet_uint8 vals [4] = { 0, 0, 0, 0 };
- int i;
-
- for (i = 0; i < 4; ++ i)
- {
- const char * next = name + 1;
- if (* name != '0')
- {
- long val = strtol (name, (char **) & next, 10);
- if (val < 0 || val > 255 || next == name || next - name > 3)
- return -1;
- vals [i] = (enet_uint8) val;
- }
-
- if (* next != (i < 3 ? '.' : '\0'))
- return -1;
- name = next + 1;
- }
-
- memcpy (& address -> host, vals, sizeof (enet_uint32));
- return 0;
-}
-
-int
-enet_address_set_host (ENetAddress * address, const char * name)
-{
- struct hostent * hostEntry;
-
- hostEntry = gethostbyname (name);
- if (hostEntry == NULL ||
- hostEntry -> h_addrtype != AF_INET)
- return enet_address_set_host_ip (address, name);
-
- address -> host = * (enet_uint32 *) hostEntry -> h_addr_list [0];
-
- return 0;
-}
-
-int
-enet_address_get_host_ip (const ENetAddress * address, char * name, size_t nameLength)
-{
- char * addr = inet_ntoa (* (struct in_addr *) & address -> host);
- if (addr == NULL)
- return -1;
- else
- {
- size_t addrLen = strlen(addr);
- if (addrLen >= nameLength)
- return -1;
- memcpy (name, addr, addrLen + 1);
- }
- return 0;
-}
-
-int
-enet_address_get_host (const ENetAddress * address, char * name, size_t nameLength)
-{
- struct in_addr in;
- struct hostent * hostEntry;
-
- in.s_addr = address -> host;
-
- hostEntry = gethostbyaddr ((char *) & in, sizeof (struct in_addr), AF_INET);
- if (hostEntry == NULL)
- return enet_address_get_host_ip (address, name, nameLength);
- else
- {
- size_t hostLen = strlen (hostEntry -> h_name);
- if (hostLen >= nameLength)
- return -1;
- memcpy (name, hostEntry -> h_name, hostLen + 1);
- }
-
- return 0;
-}
-
-int
-enet_socket_bind (ENetSocket socket, const ENetAddress * address)
-{
- struct sockaddr_in sin;
-
- memset (& sin, 0, sizeof (struct sockaddr_in));
-
- sin.sin_family = AF_INET;
-
- if (address != NULL)
- {
- sin.sin_port = ENET_HOST_TO_NET_16 (address -> port);
- sin.sin_addr.s_addr = address -> host;
- }
- else
- {
- sin.sin_port = 0;
- sin.sin_addr.s_addr = INADDR_ANY;
- }
-
- return bind (socket,
- (struct sockaddr *) & sin,
- sizeof (struct sockaddr_in)) == SOCKET_ERROR ? -1 : 0;
-}
-
-int
-enet_socket_get_address (ENetSocket socket, ENetAddress * address)
-{
- struct sockaddr_in sin;
- int sinLength = sizeof (struct sockaddr_in);
-
- if (getsockname (socket, (struct sockaddr *) & sin, & sinLength) == -1)
- return -1;
-
- address -> host = (enet_uint32) sin.sin_addr.s_addr;
- address -> port = ENET_NET_TO_HOST_16 (sin.sin_port);
-
- return 0;
-}
-
-int
-enet_socket_listen (ENetSocket socket, int backlog)
-{
- return listen (socket, backlog < 0 ? SOMAXCONN : backlog) == SOCKET_ERROR ? -1 : 0;
-}
-
-ENetSocket
-enet_socket_create (ENetSocketType type)
-{
- return socket (PF_INET, type == ENET_SOCKET_TYPE_DATAGRAM ? SOCK_DGRAM : SOCK_STREAM, 0);
-}
-
-int
-enet_socket_set_option (ENetSocket socket, ENetSocketOption option, int value)
-{
- int result = SOCKET_ERROR;
- switch (option)
- {
- case ENET_SOCKOPT_NONBLOCK:
- {
- u_long nonBlocking = (u_long) value;
- result = ioctlsocket (socket, FIONBIO, & nonBlocking);
- break;
- }
-
- case ENET_SOCKOPT_BROADCAST:
- result = setsockopt (socket, SOL_SOCKET, SO_BROADCAST, (char *) & value, sizeof (int));
- break;
-
- case ENET_SOCKOPT_REUSEADDR:
- result = setsockopt (socket, SOL_SOCKET, SO_REUSEADDR, (char *) & value, sizeof (int));
- break;
-
- case ENET_SOCKOPT_RCVBUF:
- result = setsockopt (socket, SOL_SOCKET, SO_RCVBUF, (char *) & value, sizeof (int));
- break;
-
- case ENET_SOCKOPT_SNDBUF:
- result = setsockopt (socket, SOL_SOCKET, SO_SNDBUF, (char *) & value, sizeof (int));
- break;
-
- case ENET_SOCKOPT_RCVTIMEO:
- result = setsockopt (socket, SOL_SOCKET, SO_RCVTIMEO, (char *) & value, sizeof (int));
- break;
-
- case ENET_SOCKOPT_SNDTIMEO:
- result = setsockopt (socket, SOL_SOCKET, SO_SNDTIMEO, (char *) & value, sizeof (int));
- break;
-
- case ENET_SOCKOPT_NODELAY:
- result = setsockopt (socket, IPPROTO_TCP, TCP_NODELAY, (char *) & value, sizeof (int));
- break;
-
- case ENET_SOCKOPT_TTL:
- result = setsockopt (socket, IPPROTO_IP, IP_TTL, (char *) & value, sizeof (int));
- break;
-
- default:
- break;
- }
- return result == SOCKET_ERROR ? -1 : 0;
-}
-
-int
-enet_socket_get_option (ENetSocket socket, ENetSocketOption option, int * value)
-{
- int result = SOCKET_ERROR, len;
- switch (option)
- {
- case ENET_SOCKOPT_ERROR:
- len = sizeof(int);
- result = getsockopt (socket, SOL_SOCKET, SO_ERROR, (char *) value, & len);
- break;
-
- case ENET_SOCKOPT_TTL:
- len = sizeof(int);
- result = getsockopt (socket, IPPROTO_IP, IP_TTL, (char *) value, & len);
- break;
-
- default:
- break;
- }
- return result == SOCKET_ERROR ? -1 : 0;
-}
-
-int
-enet_socket_connect (ENetSocket socket, const ENetAddress * address)
-{
- struct sockaddr_in sin;
- int result;
-
- memset (& sin, 0, sizeof (struct sockaddr_in));
-
- sin.sin_family = AF_INET;
- sin.sin_port = ENET_HOST_TO_NET_16 (address -> port);
- sin.sin_addr.s_addr = address -> host;
-
- result = connect (socket, (struct sockaddr *) & sin, sizeof (struct sockaddr_in));
- if (result == SOCKET_ERROR && WSAGetLastError () != WSAEWOULDBLOCK)
- return -1;
-
- return 0;
-}
-
-ENetSocket
-enet_socket_accept (ENetSocket socket, ENetAddress * address)
-{
- SOCKET result;
- struct sockaddr_in sin;
- int sinLength = sizeof (struct sockaddr_in);
-
- result = accept (socket,
- address != NULL ? (struct sockaddr *) & sin : NULL,
- address != NULL ? & sinLength : NULL);
-
- if (result == INVALID_SOCKET)
- return ENET_SOCKET_NULL;
-
- if (address != NULL)
- {
- address -> host = (enet_uint32) sin.sin_addr.s_addr;
- address -> port = ENET_NET_TO_HOST_16 (sin.sin_port);
- }
-
- return result;
-}
-
-int
-enet_socket_shutdown (ENetSocket socket, ENetSocketShutdown how)
-{
- return shutdown (socket, (int) how) == SOCKET_ERROR ? -1 : 0;
-}
-
-void
-enet_socket_destroy (ENetSocket socket)
-{
- if (socket != INVALID_SOCKET)
- closesocket (socket);
-}
-
-int
-enet_socket_send (ENetSocket socket,
- const ENetAddress * address,
- const ENetBuffer * buffers,
- size_t bufferCount)
-{
- struct sockaddr_in sin;
- DWORD sentLength = 0;
-
- if (address != NULL)
- {
- memset (& sin, 0, sizeof (struct sockaddr_in));
-
- sin.sin_family = AF_INET;
- sin.sin_port = ENET_HOST_TO_NET_16 (address -> port);
- sin.sin_addr.s_addr = address -> host;
- }
-
- if (WSASendTo (socket,
- (LPWSABUF) buffers,
- (DWORD) bufferCount,
- & sentLength,
- 0,
- address != NULL ? (struct sockaddr *) & sin : NULL,
- address != NULL ? sizeof (struct sockaddr_in) : 0,
- NULL,
- NULL) == SOCKET_ERROR)
- {
- if (WSAGetLastError () == WSAEWOULDBLOCK)
- return 0;
-
- return -1;
- }
-
- return (int) sentLength;
-}
-
-int
-enet_socket_receive (ENetSocket socket,
- ENetAddress * address,
- ENetBuffer * buffers,
- size_t bufferCount)
-{
- INT sinLength = sizeof (struct sockaddr_in);
- DWORD flags = 0,
- recvLength = 0;
- struct sockaddr_in sin;
-
- if (WSARecvFrom (socket,
- (LPWSABUF) buffers,
- (DWORD) bufferCount,
- & recvLength,
- & flags,
- address != NULL ? (struct sockaddr *) & sin : NULL,
- address != NULL ? & sinLength : NULL,
- NULL,
- NULL) == SOCKET_ERROR)
- {
- switch (WSAGetLastError ())
- {
- case WSAEWOULDBLOCK:
- case WSAECONNRESET:
- return 0;
- }
-
- return -1;
- }
-
- if (flags & MSG_PARTIAL)
- return -1;
-
- if (address != NULL)
- {
- address -> host = (enet_uint32) sin.sin_addr.s_addr;
- address -> port = ENET_NET_TO_HOST_16 (sin.sin_port);
- }
-
- return (int) recvLength;
-}
-
-int
-enet_socketset_select (ENetSocket maxSocket, ENetSocketSet * readSet, ENetSocketSet * writeSet, enet_uint32 timeout)
-{
- struct timeval timeVal;
-
- timeVal.tv_sec = timeout / 1000;
- timeVal.tv_usec = (timeout % 1000) * 1000;
-
- return select (maxSocket + 1, readSet, writeSet, NULL, & timeVal);
-}
-
-int
-enet_socket_wait (ENetSocket socket, enet_uint32 * condition, enet_uint32 timeout)
-{
- fd_set readSet, writeSet;
- struct timeval timeVal;
- int selectCount;
-
- timeVal.tv_sec = timeout / 1000;
- timeVal.tv_usec = (timeout % 1000) * 1000;
-
- FD_ZERO (& readSet);
- FD_ZERO (& writeSet);
-
- if (* condition & ENET_SOCKET_WAIT_SEND)
- FD_SET (socket, & writeSet);
-
- if (* condition & ENET_SOCKET_WAIT_RECEIVE)
- FD_SET (socket, & readSet);
-
- selectCount = select (socket + 1, & readSet, & writeSet, NULL, & timeVal);
-
- if (selectCount < 0)
- return -1;
-
- * condition = ENET_SOCKET_WAIT_NONE;
-
- if (selectCount == 0)
- return 0;
-
- if (FD_ISSET (socket, & writeSet))
- * condition |= ENET_SOCKET_WAIT_SEND;
-
- if (FD_ISSET (socket, & readSet))
- * condition |= ENET_SOCKET_WAIT_RECEIVE;
-
- return 0;
-}
-
-#endif
-
diff --git a/Externals/expr/include/expr.h b/Externals/expr/include/expr.h
index 619d537642..c62f68f28d 100644
--- a/Externals/expr/include/expr.h
+++ b/Externals/expr/include/expr.h
@@ -783,7 +783,7 @@ static struct expr *expr_create(const char *s, size_t len,
struct expr *p = &root;
/* Assign macro parameters */
for (int j = 0; j < vec_len(&arg.args); j++) {
- char varname[12];
+ char varname[13];
snprintf(varname, sizeof(varname), "$%d", (j + 1));
struct expr_var *v = expr_get_var(vars, varname, strlen(varname));
struct expr ev = expr_varref(v);
@@ -826,14 +826,14 @@ static struct expr *expr_create(const char *s, size_t len,
vec_push(&es, expr_const(num));
paren_next = EXPR_PAREN_FORBIDDEN;
} else if (n > 1 && *tok == '"') {
- char *s = (char *)calloc(1, n - 1);
- if (s == NULL) {
+ char *str = (char *)calloc(1, n - 1);
+ if (str == NULL) {
goto cleanup; /* allocation failed */
}
- strncpy(s, tok + 1, n - 2);
+ strncpy(str, tok + 1, n - 2);
struct expr e = expr_init();
e.type = OP_STRING;
- e.param.str.s = s;
+ e.param.str.s = str;
vec_push(&es, e);
paren_next = EXPR_PAREN_FORBIDDEN;
} else if (expr_op(tok, n, -1) != OP_UNKNOWN) {
diff --git a/Externals/liblzma/config.h b/Externals/liblzma/config.h
index 21f551ad7e..91d441010f 100644
--- a/Externals/liblzma/config.h
+++ b/Externals/liblzma/config.h
@@ -151,7 +151,7 @@
/* Define if you have the iconv() function and it works. */
/* #undef HAVE_ICONV */
-#ifdef _M_X86
+#ifdef _M_X86_64
/* Define to 1 if you have the header file. */
#define HAVE_IMMINTRIN_H 1
#endif
@@ -367,7 +367,7 @@
sysctl(). */
/* #undef TUKLIB_CPUCORES_SYSCTL */
-#ifdef _M_X86
+#ifdef _M_X86_64
/* Define to 1 if the system supports fast unaligned access to 16-bit and
32-bit integers. */
#define TUKLIB_FAST_UNALIGNED_ACCESS 1
diff --git a/Externals/lz4/CMakeLists.txt b/Externals/lz4/CMakeLists.txt
new file mode 100644
index 0000000000..7af19ebbe2
--- /dev/null
+++ b/Externals/lz4/CMakeLists.txt
@@ -0,0 +1,13 @@
+cmake_minimum_required(VERSION 3.13)
+
+# We only want the static library, nothing else.
+set(CMAKE_POLICY_DEFAULT_CMP0077 NEW)
+set(LZ4_BUILD_CLI OFF)
+set(LZ4_BUILD_LEGACY_LZ4C OFF)
+set(LZ4_BUNDLED_MODE ON)
+
+add_subdirectory(lz4/build/cmake)
+
+dolphin_disable_warnings_msvc(lz4_static)
+add_library(LZ4::LZ4 ALIAS lz4_static)
+target_compile_definitions(lz4_static PRIVATE XXH_NAMESPACE=LZ4_)
diff --git a/Externals/lz4/LZ4.vcxproj b/Externals/lz4/LZ4.vcxproj
new file mode 100644
index 0000000000..36167718b1
--- /dev/null
+++ b/Externals/lz4/LZ4.vcxproj
@@ -0,0 +1,39 @@
+
+
+
+
+
+ {9092C5CC-3E71-41B3-BF68-4A7BDD8A5476}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ XXH_NAMESPACE=LZ4_;%(PreprocessorDefinitions)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Externals/lz4/exports.props b/Externals/lz4/exports.props
new file mode 100644
index 0000000000..58d3c4d3ec
--- /dev/null
+++ b/Externals/lz4/exports.props
@@ -0,0 +1,13 @@
+
+
+
+
+ $(ExternalsDir)lz4\lz4\lib;%(AdditionalIncludeDirectories)
+
+
+
+
+ {9092C5CC-3E71-41B3-BF68-4A7BDD8A5476}
+
+
+
diff --git a/Externals/lz4/lz4 b/Externals/lz4/lz4
new file mode 160000
index 0000000000..5fc0630a0e
--- /dev/null
+++ b/Externals/lz4/lz4
@@ -0,0 +1 @@
+Subproject commit 5fc0630a0ed55e9755b0fe3990cd021ae1c3edc1
diff --git a/Externals/mbedtls/library/CMakeLists.txt b/Externals/mbedtls/library/CMakeLists.txt
index fc2786c7f2..5aa233e080 100644
--- a/Externals/mbedtls/library/CMakeLists.txt
+++ b/Externals/mbedtls/library/CMakeLists.txt
@@ -122,7 +122,7 @@ if(CMAKE_COMPILER_IS_GNUCC)
endif(CMAKE_COMPILER_IS_GNUCC)
if(CMAKE_COMPILER_IS_CLANG)
- set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wmissing-declarations -Wmissing-prototypes -Wdocumentation -Wno-documentation-deprecated-sync -Wunreachable-code")
+ set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wmissing-declarations -Wmissing-prototypes -Wunreachable-code")
endif(CMAKE_COMPILER_IS_CLANG)
if(WIN32)
diff --git a/Externals/xxhash/CMakeLists.txt b/Externals/xxhash/CMakeLists.txt
index 1a3d637387..6d52f56478 100644
--- a/Externals/xxhash/CMakeLists.txt
+++ b/Externals/xxhash/CMakeLists.txt
@@ -1,8 +1,8 @@
project(xxhash C)
-add_library(xxhash STATIC xxhash.c)
+add_library(xxhash STATIC xxHash/xxhash.c)
dolphin_disable_warnings_msvc(xxhash)
target_include_directories(xxhash
PUBLIC
- ${CMAKE_CURRENT_SOURCE_DIR}
+ ${CMAKE_CURRENT_SOURCE_DIR}/xxHash
)
diff --git a/Externals/xxhash/LICENSE b/Externals/xxhash/LICENSE
deleted file mode 100644
index 7de801ed1b..0000000000
--- a/Externals/xxhash/LICENSE
+++ /dev/null
@@ -1,24 +0,0 @@
-xxHash Library
-Copyright (c) 2012-2014, Yann Collet
-All rights reserved.
-
-Redistribution and use in source and binary forms, with or without modification,
-are permitted provided that the following conditions are met:
-
-* Redistributions of source code must retain the above copyright notice, this
- list of conditions and the following disclaimer.
-
-* Redistributions in binary form must reproduce the above copyright notice, this
- list of conditions and the following disclaimer in the documentation and/or
- other materials provided with the distribution.
-
-THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
-ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
-DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
-ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
-(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
-LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
-ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
-SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
diff --git a/Externals/xxhash/exports.props b/Externals/xxhash/exports.props
index 3329ab6f61..6bcd16a46d 100644
--- a/Externals/xxhash/exports.props
+++ b/Externals/xxhash/exports.props
@@ -2,7 +2,7 @@
- $(ExternalsDir)xxhash;%(AdditionalIncludeDirectories)
+ $(ExternalsDir)xxhash\xxHash\;%(AdditionalIncludeDirectories)
diff --git a/Externals/xxhash/xxHash b/Externals/xxhash/xxHash
new file mode 160000
index 0000000000..bbb27a5efb
--- /dev/null
+++ b/Externals/xxhash/xxHash
@@ -0,0 +1 @@
+Subproject commit bbb27a5efb85b92a0486cf361a8635715a53f6ba
diff --git a/Externals/xxhash/xxhash.c b/Externals/xxhash/xxhash.c
deleted file mode 100644
index 4546c54dbe..0000000000
--- a/Externals/xxhash/xxhash.c
+++ /dev/null
@@ -1,890 +0,0 @@
-/*
-* xxHash - Fast Hash algorithm
-* Copyright (C) 2012-2016, Yann Collet
-*
-* BSD 2-Clause License (http://www.opensource.org/licenses/bsd-license.php)
-*
-* Redistribution and use in source and binary forms, with or without
-* modification, are permitted provided that the following conditions are
-* met:
-*
-* * Redistributions of source code must retain the above copyright
-* notice, this list of conditions and the following disclaimer.
-* * Redistributions in binary form must reproduce the above
-* copyright notice, this list of conditions and the following disclaimer
-* in the documentation and/or other materials provided with the
-* distribution.
-*
-* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-*
-* You can contact the author at :
-* - xxHash homepage: http://www.xxhash.com
-* - xxHash source repository : https://github.com/Cyan4973/xxHash
-*/
-
-
-/* *************************************
-* Tuning parameters
-***************************************/
-/*!XXH_FORCE_MEMORY_ACCESS :
- * By default, access to unaligned memory is controlled by `memcpy()`, which is safe and portable.
- * Unfortunately, on some target/compiler combinations, the generated assembly is sub-optimal.
- * The below switch allow to select different access method for improved performance.
- * Method 0 (default) : use `memcpy()`. Safe and portable.
- * Method 1 : `__packed` statement. It depends on compiler extension (ie, not portable).
- * This method is safe if your compiler supports it, and *generally* as fast or faster than `memcpy`.
- * Method 2 : direct access. This method doesn't depend on compiler but violate C standard.
- * It can generate buggy code on targets which do not support unaligned memory accesses.
- * But in some circumstances, it's the only known way to get the most performance (ie GCC + ARMv6)
- * See http://stackoverflow.com/a/32095106/646947 for details.
- * Prefer these methods in priority order (0 > 1 > 2)
- */
-#ifndef XXH_FORCE_MEMORY_ACCESS /* can be defined externally, on command line for example */
-# if defined(__GNUC__) && ( defined(__ARM_ARCH_6__) || defined(__ARM_ARCH_6J__) || defined(__ARM_ARCH_6K__) || defined(__ARM_ARCH_6Z__) || defined(__ARM_ARCH_6ZK__) || defined(__ARM_ARCH_6T2__) )
-# define XXH_FORCE_MEMORY_ACCESS 2
-# elif defined(__INTEL_COMPILER) || \
- (defined(__GNUC__) && ( defined(__ARM_ARCH_7__) || defined(__ARM_ARCH_7A__) || defined(__ARM_ARCH_7R__) || defined(__ARM_ARCH_7M__) || defined(__ARM_ARCH_7S__) ))
-# define XXH_FORCE_MEMORY_ACCESS 1
-# endif
-#endif
-
-/*!XXH_ACCEPT_NULL_INPUT_POINTER :
- * If the input pointer is a null pointer, xxHash default behavior is to trigger a memory access error, since it is a bad pointer.
- * When this option is enabled, xxHash output for null input pointers will be the same as a null-length input.
- * By default, this option is disabled. To enable it, uncomment below define :
- */
-/* #define XXH_ACCEPT_NULL_INPUT_POINTER 1 */
-
-/*!XXH_FORCE_NATIVE_FORMAT :
- * By default, xxHash library provides endian-independant Hash values, based on little-endian convention.
- * Results are therefore identical for little-endian and big-endian CPU.
- * This comes at a performance cost for big-endian CPU, since some swapping is required to emulate little-endian format.
- * Should endian-independance be of no importance for your application, you may set the #define below to 1,
- * to improve speed for Big-endian CPU.
- * This option has no impact on Little_Endian CPU.
- */
-#ifndef XXH_FORCE_NATIVE_FORMAT /* can be defined externally */
-# define XXH_FORCE_NATIVE_FORMAT 0
-#endif
-
-/*!XXH_FORCE_ALIGN_CHECK :
- * This is a minor performance trick, only useful with lots of very small keys.
- * It means : check for aligned/unaligned input.
- * The check costs one initial branch per hash; set to 0 when the input data
- * is guaranteed to be aligned.
- */
-#ifndef XXH_FORCE_ALIGN_CHECK /* can be defined externally */
-# if defined(__i386) || defined(_M_IX86) || defined(__x86_64__) || defined(_M_X64)
-# define XXH_FORCE_ALIGN_CHECK 0
-# else
-# define XXH_FORCE_ALIGN_CHECK 1
-# endif
-#endif
-
-
-/* *************************************
-* Includes & Memory related functions
-***************************************/
-/* Modify the local functions below should you wish to use some other memory routines */
-/* for malloc(), free() */
-#include
-static void* XXH_malloc(size_t s) { return malloc(s); }
-static void XXH_free (void* p) { free(p); }
-/* for memcpy() */
-#include
-static void* XXH_memcpy(void* dest, const void* src, size_t size) { return memcpy(dest,src,size); }
-
-#define XXH_STATIC_LINKING_ONLY
-#include "xxhash.h"
-
-
-/* *************************************
-* Compiler Specific Options
-***************************************/
-#ifdef _MSC_VER /* Visual Studio */
-# pragma warning(disable : 4127) /* disable: C4127: conditional expression is constant */
-# define FORCE_INLINE static __forceinline
-#else
-# if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L /* C99 */
-# ifdef __GNUC__
-# define FORCE_INLINE static inline __attribute__((always_inline))
-# else
-# define FORCE_INLINE static inline
-# endif
-# else
-# define FORCE_INLINE static
-# endif /* __STDC_VERSION__ */
-#endif
-
-
-/* *************************************
-* Basic Types
-***************************************/
-#ifndef MEM_MODULE
-# if !defined (__VMS) && (defined (__cplusplus) || (defined (__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L) /* C99 */) )
-# include
- typedef uint8_t BYTE;
- typedef uint16_t U16;
- typedef uint32_t U32;
- typedef int32_t S32;
-# else
- typedef unsigned char BYTE;
- typedef unsigned short U16;
- typedef unsigned int U32;
- typedef signed int S32;
-# endif
-#endif
-
-#if (defined(XXH_FORCE_MEMORY_ACCESS) && (XXH_FORCE_MEMORY_ACCESS==2))
-
-/* Force direct memory access. Only works on CPU which support unaligned memory access in hardware */
-static U32 XXH_read32(const void* memPtr) { return *(const U32*) memPtr; }
-
-#elif (defined(XXH_FORCE_MEMORY_ACCESS) && (XXH_FORCE_MEMORY_ACCESS==1))
-
-/* __pack instructions are safer, but compiler specific, hence potentially problematic for some compilers */
-/* currently only defined for gcc and icc */
-typedef union { U32 u32; } __attribute__((packed)) unalign;
-static U32 XXH_read32(const void* ptr) { return ((const unalign*)ptr)->u32; }
-
-#else
-
-/* portable and safe solution. Generally efficient.
- * see : http://stackoverflow.com/a/32095106/646947
- */
-static U32 XXH_read32(const void* memPtr)
-{
- U32 val;
- memcpy(&val, memPtr, sizeof(val));
- return val;
-}
-
-#endif /* XXH_FORCE_DIRECT_MEMORY_ACCESS */
-
-
-/* ****************************************
-* Compiler-specific Functions and Macros
-******************************************/
-#define GCC_VERSION (__GNUC__ * 100 + __GNUC_MINOR__)
-
-/* Note : although _rotl exists for minGW (GCC under windows), performance seems poor */
-#if defined(_MSC_VER)
-# define XXH_rotl32(x,r) _rotl(x,r)
-# define XXH_rotl64(x,r) _rotl64(x,r)
-#else
-# define XXH_rotl32(x,r) ((x << r) | (x >> (32 - r)))
-# define XXH_rotl64(x,r) ((x << r) | (x >> (64 - r)))
-#endif
-
-#if defined(_MSC_VER) /* Visual Studio */
-# define XXH_swap32 _byteswap_ulong
-#elif GCC_VERSION >= 403
-# define XXH_swap32 __builtin_bswap32
-#else
-static U32 XXH_swap32 (U32 x)
-{
- return ((x << 24) & 0xff000000 ) |
- ((x << 8) & 0x00ff0000 ) |
- ((x >> 8) & 0x0000ff00 ) |
- ((x >> 24) & 0x000000ff );
-}
-#endif
-
-
-/* *************************************
-* Architecture Macros
-***************************************/
-typedef enum { XXH_bigEndian=0, XXH_littleEndian=1 } XXH_endianess;
-
-/* XXH_CPU_LITTLE_ENDIAN can be defined externally, for example on the compiler command line */
-#ifndef XXH_CPU_LITTLE_ENDIAN
- static const int g_one = 1;
-# define XXH_CPU_LITTLE_ENDIAN (*(const char*)(&g_one))
-#endif
-
-
-/* ***************************
-* Memory reads
-*****************************/
-typedef enum { XXH_aligned, XXH_unaligned } XXH_alignment;
-
-FORCE_INLINE U32 XXH_readLE32_align(const void* ptr, XXH_endianess endian, XXH_alignment align)
-{
- if (align==XXH_unaligned)
- return endian==XXH_littleEndian ? XXH_read32(ptr) : XXH_swap32(XXH_read32(ptr));
- else
- return endian==XXH_littleEndian ? *(const U32*)ptr : XXH_swap32(*(const U32*)ptr);
-}
-
-FORCE_INLINE U32 XXH_readLE32(const void* ptr, XXH_endianess endian)
-{
- return XXH_readLE32_align(ptr, endian, XXH_unaligned);
-}
-
-static U32 XXH_readBE32(const void* ptr)
-{
- return XXH_CPU_LITTLE_ENDIAN ? XXH_swap32(XXH_read32(ptr)) : XXH_read32(ptr);
-}
-
-
-/* *************************************
-* Macros
-***************************************/
-#define XXH_STATIC_ASSERT(c) { enum { XXH_static_assert = 1/(int)(!!(c)) }; } /* use only *after* variable declarations */
-XXH_PUBLIC_API unsigned XXH_versionNumber (void) { return XXH_VERSION_NUMBER; }
-
-
-/* *******************************************************************
-* 32-bits hash functions
-*********************************************************************/
-static const U32 PRIME32_1 = 2654435761U;
-static const U32 PRIME32_2 = 2246822519U;
-static const U32 PRIME32_3 = 3266489917U;
-static const U32 PRIME32_4 = 668265263U;
-static const U32 PRIME32_5 = 374761393U;
-
-static U32 XXH32_round(U32 seed, U32 input)
-{
- seed += input * PRIME32_2;
- seed = XXH_rotl32(seed, 13);
- seed *= PRIME32_1;
- return seed;
-}
-
-FORCE_INLINE U32 XXH32_endian_align(const void* input, size_t len, U32 seed, XXH_endianess endian, XXH_alignment align)
-{
- const BYTE* p = (const BYTE*)input;
- const BYTE* bEnd = p + len;
- U32 h32;
-#define XXH_get32bits(p) XXH_readLE32_align(p, endian, align)
-
-#ifdef XXH_ACCEPT_NULL_INPUT_POINTER
- if (p==NULL) {
- len=0;
- bEnd=p=(const BYTE*)(size_t)16;
- }
-#endif
-
- if (len>=16) {
- const BYTE* const limit = bEnd - 16;
- U32 v1 = seed + PRIME32_1 + PRIME32_2;
- U32 v2 = seed + PRIME32_2;
- U32 v3 = seed + 0;
- U32 v4 = seed - PRIME32_1;
-
- do {
- v1 = XXH32_round(v1, XXH_get32bits(p)); p+=4;
- v2 = XXH32_round(v2, XXH_get32bits(p)); p+=4;
- v3 = XXH32_round(v3, XXH_get32bits(p)); p+=4;
- v4 = XXH32_round(v4, XXH_get32bits(p)); p+=4;
- } while (p<=limit);
-
- h32 = XXH_rotl32(v1, 1) + XXH_rotl32(v2, 7) + XXH_rotl32(v3, 12) + XXH_rotl32(v4, 18);
- } else {
- h32 = seed + PRIME32_5;
- }
-
- h32 += (U32) len;
-
- while (p+4<=bEnd) {
- h32 += XXH_get32bits(p) * PRIME32_3;
- h32 = XXH_rotl32(h32, 17) * PRIME32_4 ;
- p+=4;
- }
-
- while (p> 15;
- h32 *= PRIME32_2;
- h32 ^= h32 >> 13;
- h32 *= PRIME32_3;
- h32 ^= h32 >> 16;
-
- return h32;
-}
-
-
-XXH_PUBLIC_API unsigned int XXH32 (const void* input, size_t len, unsigned int seed)
-{
-#if 0
- /* Simple version, good for code maintenance, but unfortunately slow for small inputs */
- XXH32_CREATESTATE_STATIC(state);
- XXH32_reset(state, seed);
- XXH32_update(state, input, len);
- return XXH32_digest(state);
-#else
- XXH_endianess endian_detected = (XXH_endianess)XXH_CPU_LITTLE_ENDIAN;
-
- if (XXH_FORCE_ALIGN_CHECK) {
- if ((((size_t)input) & 3) == 0) { /* Input is 4-bytes aligned, leverage the speed benefit */
- if ((endian_detected==XXH_littleEndian) || XXH_FORCE_NATIVE_FORMAT)
- return XXH32_endian_align(input, len, seed, XXH_littleEndian, XXH_aligned);
- else
- return XXH32_endian_align(input, len, seed, XXH_bigEndian, XXH_aligned);
- } }
-
- if ((endian_detected==XXH_littleEndian) || XXH_FORCE_NATIVE_FORMAT)
- return XXH32_endian_align(input, len, seed, XXH_littleEndian, XXH_unaligned);
- else
- return XXH32_endian_align(input, len, seed, XXH_bigEndian, XXH_unaligned);
-#endif
-}
-
-
-
-/*====== Hash streaming ======*/
-
-XXH_PUBLIC_API XXH32_state_t* XXH32_createState(void)
-{
- return (XXH32_state_t*)XXH_malloc(sizeof(XXH32_state_t));
-}
-XXH_PUBLIC_API XXH_errorcode XXH32_freeState(XXH32_state_t* statePtr)
-{
- XXH_free(statePtr);
- return XXH_OK;
-}
-
-XXH_PUBLIC_API void XXH32_copyState(XXH32_state_t* restrict dstState, const XXH32_state_t* restrict srcState)
-{
- memcpy(dstState, srcState, sizeof(*dstState));
-}
-
-XXH_PUBLIC_API XXH_errorcode XXH32_reset(XXH32_state_t* statePtr, unsigned int seed)
-{
- XXH32_state_t state; /* using a local state to memcpy() in order to avoid strict-aliasing warnings */
- memset(&state, 0, sizeof(state)-4); /* do not write into reserved, for future removal */
- state.v1 = seed + PRIME32_1 + PRIME32_2;
- state.v2 = seed + PRIME32_2;
- state.v3 = seed + 0;
- state.v4 = seed - PRIME32_1;
- memcpy(statePtr, &state, sizeof(state));
- return XXH_OK;
-}
-
-
-FORCE_INLINE XXH_errorcode XXH32_update_endian (XXH32_state_t* state, const void* input, size_t len, XXH_endianess endian)
-{
- const BYTE* p = (const BYTE*)input;
- const BYTE* const bEnd = p + len;
-
-#ifdef XXH_ACCEPT_NULL_INPUT_POINTER
- if (input==NULL) return XXH_ERROR;
-#endif
-
- state->total_len_32 += (unsigned)len;
- state->large_len |= (len>=16) | (state->total_len_32>=16);
-
- if (state->memsize + len < 16) { /* fill in tmp buffer */
- XXH_memcpy((BYTE*)(state->mem32) + state->memsize, input, len);
- state->memsize += (unsigned)len;
- return XXH_OK;
- }
-
- if (state->memsize) { /* some data left from previous update */
- XXH_memcpy((BYTE*)(state->mem32) + state->memsize, input, 16-state->memsize);
- { const U32* p32 = state->mem32;
- state->v1 = XXH32_round(state->v1, XXH_readLE32(p32, endian)); p32++;
- state->v2 = XXH32_round(state->v2, XXH_readLE32(p32, endian)); p32++;
- state->v3 = XXH32_round(state->v3, XXH_readLE32(p32, endian)); p32++;
- state->v4 = XXH32_round(state->v4, XXH_readLE32(p32, endian)); p32++;
- }
- p += 16-state->memsize;
- state->memsize = 0;
- }
-
- if (p <= bEnd-16) {
- const BYTE* const limit = bEnd - 16;
- U32 v1 = state->v1;
- U32 v2 = state->v2;
- U32 v3 = state->v3;
- U32 v4 = state->v4;
-
- do {
- v1 = XXH32_round(v1, XXH_readLE32(p, endian)); p+=4;
- v2 = XXH32_round(v2, XXH_readLE32(p, endian)); p+=4;
- v3 = XXH32_round(v3, XXH_readLE32(p, endian)); p+=4;
- v4 = XXH32_round(v4, XXH_readLE32(p, endian)); p+=4;
- } while (p<=limit);
-
- state->v1 = v1;
- state->v2 = v2;
- state->v3 = v3;
- state->v4 = v4;
- }
-
- if (p < bEnd) {
- XXH_memcpy(state->mem32, p, (size_t)(bEnd-p));
- state->memsize = (unsigned)(bEnd-p);
- }
-
- return XXH_OK;
-}
-
-XXH_PUBLIC_API XXH_errorcode XXH32_update (XXH32_state_t* state_in, const void* input, size_t len)
-{
- XXH_endianess endian_detected = (XXH_endianess)XXH_CPU_LITTLE_ENDIAN;
-
- if ((endian_detected==XXH_littleEndian) || XXH_FORCE_NATIVE_FORMAT)
- return XXH32_update_endian(state_in, input, len, XXH_littleEndian);
- else
- return XXH32_update_endian(state_in, input, len, XXH_bigEndian);
-}
-
-
-
-FORCE_INLINE U32 XXH32_digest_endian (const XXH32_state_t* state, XXH_endianess endian)
-{
- const BYTE * p = (const BYTE*)state->mem32;
- const BYTE* const bEnd = (const BYTE*)(state->mem32) + state->memsize;
- U32 h32;
-
- if (state->large_len) {
- h32 = XXH_rotl32(state->v1, 1) + XXH_rotl32(state->v2, 7) + XXH_rotl32(state->v3, 12) + XXH_rotl32(state->v4, 18);
- } else {
- h32 = state->v3 /* == seed */ + PRIME32_5;
- }
-
- h32 += state->total_len_32;
-
- while (p+4<=bEnd) {
- h32 += XXH_readLE32(p, endian) * PRIME32_3;
- h32 = XXH_rotl32(h32, 17) * PRIME32_4;
- p+=4;
- }
-
- while (p> 15;
- h32 *= PRIME32_2;
- h32 ^= h32 >> 13;
- h32 *= PRIME32_3;
- h32 ^= h32 >> 16;
-
- return h32;
-}
-
-
-XXH_PUBLIC_API unsigned int XXH32_digest (const XXH32_state_t* state_in)
-{
- XXH_endianess endian_detected = (XXH_endianess)XXH_CPU_LITTLE_ENDIAN;
-
- if ((endian_detected==XXH_littleEndian) || XXH_FORCE_NATIVE_FORMAT)
- return XXH32_digest_endian(state_in, XXH_littleEndian);
- else
- return XXH32_digest_endian(state_in, XXH_bigEndian);
-}
-
-
-/*====== Canonical representation ======*/
-
-/*! Default XXH result types are basic unsigned 32 and 64 bits.
-* The canonical representation follows human-readable write convention, aka big-endian (large digits first).
-* These functions allow transformation of hash result into and from its canonical format.
-* This way, hash values can be written into a file or buffer, and remain comparable across different systems and programs.
-*/
-
-XXH_PUBLIC_API void XXH32_canonicalFromHash(XXH32_canonical_t* dst, XXH32_hash_t hash)
-{
- XXH_STATIC_ASSERT(sizeof(XXH32_canonical_t) == sizeof(XXH32_hash_t));
- if (XXH_CPU_LITTLE_ENDIAN) hash = XXH_swap32(hash);
- memcpy(dst, &hash, sizeof(*dst));
-}
-
-XXH_PUBLIC_API XXH32_hash_t XXH32_hashFromCanonical(const XXH32_canonical_t* src)
-{
- return XXH_readBE32(src);
-}
-
-
-#ifndef XXH_NO_LONG_LONG
-
-/* *******************************************************************
-* 64-bits hash functions
-*********************************************************************/
-
-/*====== Memory access ======*/
-
-#ifndef MEM_MODULE
-# define MEM_MODULE
-# if !defined (__VMS) && (defined (__cplusplus) || (defined (__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L) /* C99 */) )
-# include
- typedef uint64_t U64;
-# else
- typedef unsigned long long U64; /* if your compiler doesn't support unsigned long long, replace by another 64-bit type here. Note that xxhash.h will also need to be updated. */
-# endif
-#endif
-
-
-#if (defined(XXH_FORCE_MEMORY_ACCESS) && (XXH_FORCE_MEMORY_ACCESS==2))
-
-/* Force direct memory access. Only works on CPU which support unaligned memory access in hardware */
-static U64 XXH_read64(const void* memPtr) { return *(const U64*) memPtr; }
-
-#elif (defined(XXH_FORCE_MEMORY_ACCESS) && (XXH_FORCE_MEMORY_ACCESS==1))
-
-/* __pack instructions are safer, but compiler specific, hence potentially problematic for some compilers */
-/* currently only defined for gcc and icc */
-typedef union { U32 u32; U64 u64; } __attribute__((packed)) unalign64;
-
-static U64 XXH_read64(const void* ptr) { return ((const unalign64*)ptr)->u64; }
-
-#else
-
-/* portable and safe solution. Generally efficient.
- * see : http://stackoverflow.com/a/32095106/646947
- */
-
-static U64 XXH_read64(const void* memPtr)
-{
- U64 val;
- memcpy(&val, memPtr, sizeof(val));
- return val;
-}
-
-#endif /* XXH_FORCE_DIRECT_MEMORY_ACCESS */
-
-#if defined(_MSC_VER) /* Visual Studio */
-# define XXH_swap64 _byteswap_uint64
-#elif GCC_VERSION >= 403
-# define XXH_swap64 __builtin_bswap64
-#else
-static U64 XXH_swap64 (U64 x)
-{
- return ((x << 56) & 0xff00000000000000ULL) |
- ((x << 40) & 0x00ff000000000000ULL) |
- ((x << 24) & 0x0000ff0000000000ULL) |
- ((x << 8) & 0x000000ff00000000ULL) |
- ((x >> 8) & 0x00000000ff000000ULL) |
- ((x >> 24) & 0x0000000000ff0000ULL) |
- ((x >> 40) & 0x000000000000ff00ULL) |
- ((x >> 56) & 0x00000000000000ffULL);
-}
-#endif
-
-FORCE_INLINE U64 XXH_readLE64_align(const void* ptr, XXH_endianess endian, XXH_alignment align)
-{
- if (align==XXH_unaligned)
- return endian==XXH_littleEndian ? XXH_read64(ptr) : XXH_swap64(XXH_read64(ptr));
- else
- return endian==XXH_littleEndian ? *(const U64*)ptr : XXH_swap64(*(const U64*)ptr);
-}
-
-FORCE_INLINE U64 XXH_readLE64(const void* ptr, XXH_endianess endian)
-{
- return XXH_readLE64_align(ptr, endian, XXH_unaligned);
-}
-
-static U64 XXH_readBE64(const void* ptr)
-{
- return XXH_CPU_LITTLE_ENDIAN ? XXH_swap64(XXH_read64(ptr)) : XXH_read64(ptr);
-}
-
-
-/*====== xxh64 ======*/
-
-static const U64 PRIME64_1 = 11400714785074694791ULL;
-static const U64 PRIME64_2 = 14029467366897019727ULL;
-static const U64 PRIME64_3 = 1609587929392839161ULL;
-static const U64 PRIME64_4 = 9650029242287828579ULL;
-static const U64 PRIME64_5 = 2870177450012600261ULL;
-
-static U64 XXH64_round(U64 acc, U64 input)
-{
- acc += input * PRIME64_2;
- acc = XXH_rotl64(acc, 31);
- acc *= PRIME64_1;
- return acc;
-}
-
-static U64 XXH64_mergeRound(U64 acc, U64 val)
-{
- val = XXH64_round(0, val);
- acc ^= val;
- acc = acc * PRIME64_1 + PRIME64_4;
- return acc;
-}
-
-FORCE_INLINE U64 XXH64_endian_align(const void* input, size_t len, U64 seed, XXH_endianess endian, XXH_alignment align)
-{
- const BYTE* p = (const BYTE*)input;
- const BYTE* const bEnd = p + len;
- U64 h64;
-#define XXH_get64bits(p) XXH_readLE64_align(p, endian, align)
-
-#ifdef XXH_ACCEPT_NULL_INPUT_POINTER
- if (p==NULL) {
- len=0;
- bEnd=p=(const BYTE*)(size_t)32;
- }
-#endif
-
- if (len>=32) {
- const BYTE* const limit = bEnd - 32;
- U64 v1 = seed + PRIME64_1 + PRIME64_2;
- U64 v2 = seed + PRIME64_2;
- U64 v3 = seed + 0;
- U64 v4 = seed - PRIME64_1;
-
- do {
- v1 = XXH64_round(v1, XXH_get64bits(p)); p+=8;
- v2 = XXH64_round(v2, XXH_get64bits(p)); p+=8;
- v3 = XXH64_round(v3, XXH_get64bits(p)); p+=8;
- v4 = XXH64_round(v4, XXH_get64bits(p)); p+=8;
- } while (p<=limit);
-
- h64 = XXH_rotl64(v1, 1) + XXH_rotl64(v2, 7) + XXH_rotl64(v3, 12) + XXH_rotl64(v4, 18);
- h64 = XXH64_mergeRound(h64, v1);
- h64 = XXH64_mergeRound(h64, v2);
- h64 = XXH64_mergeRound(h64, v3);
- h64 = XXH64_mergeRound(h64, v4);
-
- } else {
- h64 = seed + PRIME64_5;
- }
-
- h64 += (U64) len;
-
- while (p+8<=bEnd) {
- U64 const k1 = XXH64_round(0, XXH_get64bits(p));
- h64 ^= k1;
- h64 = XXH_rotl64(h64,27) * PRIME64_1 + PRIME64_4;
- p+=8;
- }
-
- if (p+4<=bEnd) {
- h64 ^= (U64)(XXH_get32bits(p)) * PRIME64_1;
- h64 = XXH_rotl64(h64, 23) * PRIME64_2 + PRIME64_3;
- p+=4;
- }
-
- while (p> 33;
- h64 *= PRIME64_2;
- h64 ^= h64 >> 29;
- h64 *= PRIME64_3;
- h64 ^= h64 >> 32;
-
- return h64;
-}
-
-
-XXH_PUBLIC_API unsigned long long XXH64 (const void* input, size_t len, unsigned long long seed)
-{
-#if 0
- /* Simple version, good for code maintenance, but unfortunately slow for small inputs */
- XXH64_CREATESTATE_STATIC(state);
- XXH64_reset(state, seed);
- XXH64_update(state, input, len);
- return XXH64_digest(state);
-#else
- XXH_endianess endian_detected = (XXH_endianess)XXH_CPU_LITTLE_ENDIAN;
-
- if (XXH_FORCE_ALIGN_CHECK) {
- if ((((size_t)input) & 7)==0) { /* Input is aligned, let's leverage the speed advantage */
- if ((endian_detected==XXH_littleEndian) || XXH_FORCE_NATIVE_FORMAT)
- return XXH64_endian_align(input, len, seed, XXH_littleEndian, XXH_aligned);
- else
- return XXH64_endian_align(input, len, seed, XXH_bigEndian, XXH_aligned);
- } }
-
- if ((endian_detected==XXH_littleEndian) || XXH_FORCE_NATIVE_FORMAT)
- return XXH64_endian_align(input, len, seed, XXH_littleEndian, XXH_unaligned);
- else
- return XXH64_endian_align(input, len, seed, XXH_bigEndian, XXH_unaligned);
-#endif
-}
-
-/*====== Hash Streaming ======*/
-
-XXH_PUBLIC_API XXH64_state_t* XXH64_createState(void)
-{
- return (XXH64_state_t*)XXH_malloc(sizeof(XXH64_state_t));
-}
-XXH_PUBLIC_API XXH_errorcode XXH64_freeState(XXH64_state_t* statePtr)
-{
- XXH_free(statePtr);
- return XXH_OK;
-}
-
-XXH_PUBLIC_API void XXH64_copyState(XXH64_state_t* restrict dstState, const XXH64_state_t* restrict srcState)
-{
- memcpy(dstState, srcState, sizeof(*dstState));
-}
-
-XXH_PUBLIC_API XXH_errorcode XXH64_reset(XXH64_state_t* statePtr, unsigned long long seed)
-{
- XXH64_state_t state; /* using a local state to memcpy() in order to avoid strict-aliasing warnings */
- memset(&state, 0, sizeof(state)-8); /* do not write into reserved, for future removal */
- state.v1 = seed + PRIME64_1 + PRIME64_2;
- state.v2 = seed + PRIME64_2;
- state.v3 = seed + 0;
- state.v4 = seed - PRIME64_1;
- memcpy(statePtr, &state, sizeof(state));
- return XXH_OK;
-}
-
-FORCE_INLINE XXH_errorcode XXH64_update_endian (XXH64_state_t* state, const void* input, size_t len, XXH_endianess endian)
-{
- const BYTE* p = (const BYTE*)input;
- const BYTE* const bEnd = p + len;
-
-#ifdef XXH_ACCEPT_NULL_INPUT_POINTER
- if (input==NULL) return XXH_ERROR;
-#endif
-
- state->total_len += len;
-
- if (state->memsize + len < 32) { /* fill in tmp buffer */
- XXH_memcpy(((BYTE*)state->mem64) + state->memsize, input, len);
- state->memsize += (U32)len;
- return XXH_OK;
- }
-
- if (state->memsize) { /* tmp buffer is full */
- XXH_memcpy(((BYTE*)state->mem64) + state->memsize, input, 32-state->memsize);
- state->v1 = XXH64_round(state->v1, XXH_readLE64(state->mem64+0, endian));
- state->v2 = XXH64_round(state->v2, XXH_readLE64(state->mem64+1, endian));
- state->v3 = XXH64_round(state->v3, XXH_readLE64(state->mem64+2, endian));
- state->v4 = XXH64_round(state->v4, XXH_readLE64(state->mem64+3, endian));
- p += 32-state->memsize;
- state->memsize = 0;
- }
-
- if (p+32 <= bEnd) {
- const BYTE* const limit = bEnd - 32;
- U64 v1 = state->v1;
- U64 v2 = state->v2;
- U64 v3 = state->v3;
- U64 v4 = state->v4;
-
- do {
- v1 = XXH64_round(v1, XXH_readLE64(p, endian)); p+=8;
- v2 = XXH64_round(v2, XXH_readLE64(p, endian)); p+=8;
- v3 = XXH64_round(v3, XXH_readLE64(p, endian)); p+=8;
- v4 = XXH64_round(v4, XXH_readLE64(p, endian)); p+=8;
- } while (p<=limit);
-
- state->v1 = v1;
- state->v2 = v2;
- state->v3 = v3;
- state->v4 = v4;
- }
-
- if (p < bEnd) {
- XXH_memcpy(state->mem64, p, (size_t)(bEnd-p));
- state->memsize = (unsigned)(bEnd-p);
- }
-
- return XXH_OK;
-}
-
-XXH_PUBLIC_API XXH_errorcode XXH64_update (XXH64_state_t* state_in, const void* input, size_t len)
-{
- XXH_endianess endian_detected = (XXH_endianess)XXH_CPU_LITTLE_ENDIAN;
-
- if ((endian_detected==XXH_littleEndian) || XXH_FORCE_NATIVE_FORMAT)
- return XXH64_update_endian(state_in, input, len, XXH_littleEndian);
- else
- return XXH64_update_endian(state_in, input, len, XXH_bigEndian);
-}
-
-FORCE_INLINE U64 XXH64_digest_endian (const XXH64_state_t* state, XXH_endianess endian)
-{
- const BYTE * p = (const BYTE*)state->mem64;
- const BYTE* const bEnd = (const BYTE*)state->mem64 + state->memsize;
- U64 h64;
-
- if (state->total_len >= 32) {
- U64 const v1 = state->v1;
- U64 const v2 = state->v2;
- U64 const v3 = state->v3;
- U64 const v4 = state->v4;
-
- h64 = XXH_rotl64(v1, 1) + XXH_rotl64(v2, 7) + XXH_rotl64(v3, 12) + XXH_rotl64(v4, 18);
- h64 = XXH64_mergeRound(h64, v1);
- h64 = XXH64_mergeRound(h64, v2);
- h64 = XXH64_mergeRound(h64, v3);
- h64 = XXH64_mergeRound(h64, v4);
- } else {
- h64 = state->v3 + PRIME64_5;
- }
-
- h64 += (U64) state->total_len;
-
- while (p+8<=bEnd) {
- U64 const k1 = XXH64_round(0, XXH_readLE64(p, endian));
- h64 ^= k1;
- h64 = XXH_rotl64(h64,27) * PRIME64_1 + PRIME64_4;
- p+=8;
- }
-
- if (p+4<=bEnd) {
- h64 ^= (U64)(XXH_readLE32(p, endian)) * PRIME64_1;
- h64 = XXH_rotl64(h64, 23) * PRIME64_2 + PRIME64_3;
- p+=4;
- }
-
- while (p> 33;
- h64 *= PRIME64_2;
- h64 ^= h64 >> 29;
- h64 *= PRIME64_3;
- h64 ^= h64 >> 32;
-
- return h64;
-}
-
-XXH_PUBLIC_API unsigned long long XXH64_digest (const XXH64_state_t* state_in)
-{
- XXH_endianess endian_detected = (XXH_endianess)XXH_CPU_LITTLE_ENDIAN;
-
- if ((endian_detected==XXH_littleEndian) || XXH_FORCE_NATIVE_FORMAT)
- return XXH64_digest_endian(state_in, XXH_littleEndian);
- else
- return XXH64_digest_endian(state_in, XXH_bigEndian);
-}
-
-
-/*====== Canonical representation ======*/
-
-XXH_PUBLIC_API void XXH64_canonicalFromHash(XXH64_canonical_t* dst, XXH64_hash_t hash)
-{
- XXH_STATIC_ASSERT(sizeof(XXH64_canonical_t) == sizeof(XXH64_hash_t));
- if (XXH_CPU_LITTLE_ENDIAN) hash = XXH_swap64(hash);
- memcpy(dst, &hash, sizeof(*dst));
-}
-
-XXH_PUBLIC_API XXH64_hash_t XXH64_hashFromCanonical(const XXH64_canonical_t* src)
-{
- return XXH_readBE64(src);
-}
-
-#endif /* XXH_NO_LONG_LONG */
diff --git a/Externals/xxhash/xxhash.h b/Externals/xxhash/xxhash.h
deleted file mode 100644
index 947567397b..0000000000
--- a/Externals/xxhash/xxhash.h
+++ /dev/null
@@ -1,301 +0,0 @@
-/*
- xxHash - Extremely Fast Hash algorithm
- Header File
- Copyright (C) 2012-2016, Yann Collet.
-
- BSD 2-Clause License (http://www.opensource.org/licenses/bsd-license.php)
-
- Redistribution and use in source and binary forms, with or without
- modification, are permitted provided that the following conditions are
- met:
-
- * Redistributions of source code must retain the above copyright
- notice, this list of conditions and the following disclaimer.
- * Redistributions in binary form must reproduce the above
- copyright notice, this list of conditions and the following disclaimer
- in the documentation and/or other materials provided with the
- distribution.
-
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
- You can contact the author at :
- - xxHash source repository : https://github.com/Cyan4973/xxHash
-*/
-
-/* Notice extracted from xxHash homepage :
-
-xxHash is an extremely fast Hash algorithm, running at RAM speed limits.
-It also successfully passes all tests from the SMHasher suite.
-
-Comparison (single thread, Windows Seven 32 bits, using SMHasher on a Core 2 Duo @3GHz)
-
-Name Speed Q.Score Author
-xxHash 5.4 GB/s 10
-CrapWow 3.2 GB/s 2 Andrew
-MumurHash 3a 2.7 GB/s 10 Austin Appleby
-SpookyHash 2.0 GB/s 10 Bob Jenkins
-SBox 1.4 GB/s 9 Bret Mulvey
-Lookup3 1.2 GB/s 9 Bob Jenkins
-SuperFastHash 1.2 GB/s 1 Paul Hsieh
-CityHash64 1.05 GB/s 10 Pike & Alakuijala
-FNV 0.55 GB/s 5 Fowler, Noll, Vo
-CRC32 0.43 GB/s 9
-MD5-32 0.33 GB/s 10 Ronald L. Rivest
-SHA1-32 0.28 GB/s 10
-
-Q.Score is a measure of quality of the hash function.
-It depends on successfully passing SMHasher test set.
-10 is a perfect score.
-
-A 64-bits version, named XXH64, is available since r35.
-It offers much better speed, but for 64-bits applications only.
-Name Speed on 64 bits Speed on 32 bits
-XXH64 13.8 GB/s 1.9 GB/s
-XXH32 6.8 GB/s 6.0 GB/s
-*/
-
-#ifndef XXHASH_H_5627135585666179
-#define XXHASH_H_5627135585666179 1
-
-#if defined (__cplusplus)
-extern "C" {
-#endif
-
-
-/* ****************************
-* Compiler specifics
-******************************/
-#if !(defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L)) /* ! C99 */
-# define restrict /* disable restrict */
-#endif
-
-
-/* ****************************
-* Definitions
-******************************/
-#include /* size_t */
-typedef enum { XXH_OK=0, XXH_ERROR } XXH_errorcode;
-
-
-/* ****************************
-* API modifier
-******************************/
-/** XXH_PRIVATE_API
-* This is useful to include xxhash functions in `static` mode
-* in order to inline them, and remove their symbol from the public list.
-* Methodology :
-* #define XXH_PRIVATE_API
-* #include "xxhash.h"
-* `xxhash.c` is automatically included.
-* It's not useful to compile and link it as a separate module.
-*/
-#ifdef XXH_PRIVATE_API
-# ifndef XXH_STATIC_LINKING_ONLY
-# define XXH_STATIC_LINKING_ONLY
-# endif
-# if defined(__GNUC__)
-# define XXH_PUBLIC_API static __inline __attribute__((unused))
-# elif defined (__cplusplus) || (defined (__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L) /* C99 */)
-# define XXH_PUBLIC_API static inline
-# elif defined(_MSC_VER)
-# define XXH_PUBLIC_API static __inline
-# else
-# define XXH_PUBLIC_API static /* this version may generate warnings for unused static functions; disable the relevant warning */
-# endif
-#else
-# define XXH_PUBLIC_API /* do nothing */
-#endif /* XXH_PRIVATE_API */
-
-/*!XXH_NAMESPACE, aka Namespace Emulation :
-
-If you want to include _and expose_ xxHash functions from within your own library,
-but also want to avoid symbol collisions with other libraries which may also include xxHash,
-
-you can use XXH_NAMESPACE, to automatically prefix any public symbol from xxhash library
-with the value of XXH_NAMESPACE (therefore, avoid NULL and numeric values).
-
-Note that no change is required within the calling program as long as it includes `xxhash.h` :
-regular symbol name will be automatically translated by this header.
-*/
-#ifdef XXH_NAMESPACE
-# define XXH_CAT(A,B) A##B
-# define XXH_NAME2(A,B) XXH_CAT(A,B)
-# define XXH_versionNumber XXH_NAME2(XXH_NAMESPACE, XXH_versionNumber)
-# define XXH32 XXH_NAME2(XXH_NAMESPACE, XXH32)
-# define XXH32_createState XXH_NAME2(XXH_NAMESPACE, XXH32_createState)
-# define XXH32_freeState XXH_NAME2(XXH_NAMESPACE, XXH32_freeState)
-# define XXH32_reset XXH_NAME2(XXH_NAMESPACE, XXH32_reset)
-# define XXH32_update XXH_NAME2(XXH_NAMESPACE, XXH32_update)
-# define XXH32_digest XXH_NAME2(XXH_NAMESPACE, XXH32_digest)
-# define XXH32_copyState XXH_NAME2(XXH_NAMESPACE, XXH32_copyState)
-# define XXH32_canonicalFromHash XXH_NAME2(XXH_NAMESPACE, XXH32_canonicalFromHash)
-# define XXH32_hashFromCanonical XXH_NAME2(XXH_NAMESPACE, XXH32_hashFromCanonical)
-# define XXH64 XXH_NAME2(XXH_NAMESPACE, XXH64)
-# define XXH64_createState XXH_NAME2(XXH_NAMESPACE, XXH64_createState)
-# define XXH64_freeState XXH_NAME2(XXH_NAMESPACE, XXH64_freeState)
-# define XXH64_reset XXH_NAME2(XXH_NAMESPACE, XXH64_reset)
-# define XXH64_update XXH_NAME2(XXH_NAMESPACE, XXH64_update)
-# define XXH64_digest XXH_NAME2(XXH_NAMESPACE, XXH64_digest)
-# define XXH64_copyState XXH_NAME2(XXH_NAMESPACE, XXH64_copyState)
-# define XXH64_canonicalFromHash XXH_NAME2(XXH_NAMESPACE, XXH64_canonicalFromHash)
-# define XXH64_hashFromCanonical XXH_NAME2(XXH_NAMESPACE, XXH64_hashFromCanonical)
-#endif
-
-
-/* *************************************
-* Version
-***************************************/
-#define XXH_VERSION_MAJOR 0
-#define XXH_VERSION_MINOR 6
-#define XXH_VERSION_RELEASE 2
-#define XXH_VERSION_NUMBER (XXH_VERSION_MAJOR *100*100 + XXH_VERSION_MINOR *100 + XXH_VERSION_RELEASE)
-XXH_PUBLIC_API unsigned XXH_versionNumber (void);
-
-
-/*-**********************************************************************
-* 32-bits hash
-************************************************************************/
-typedef unsigned int XXH32_hash_t;
-
-/*! XXH32() :
- Calculate the 32-bits hash of sequence "length" bytes stored at memory address "input".
- The memory between input & input+length must be valid (allocated and read-accessible).
- "seed" can be used to alter the result predictably.
- Speed on Core 2 Duo @ 3 GHz (single thread, SMHasher benchmark) : 5.4 GB/s */
-XXH_PUBLIC_API XXH32_hash_t XXH32 (const void* input, size_t length, unsigned int seed);
-
-/*====== Streaming ======*/
-typedef struct XXH32_state_s XXH32_state_t; /* incomplete type */
-XXH_PUBLIC_API XXH32_state_t* XXH32_createState(void);
-XXH_PUBLIC_API XXH_errorcode XXH32_freeState(XXH32_state_t* statePtr);
-XXH_PUBLIC_API void XXH32_copyState(XXH32_state_t* restrict dst_state, const XXH32_state_t* restrict src_state);
-
-XXH_PUBLIC_API XXH_errorcode XXH32_reset (XXH32_state_t* statePtr, unsigned int seed);
-XXH_PUBLIC_API XXH_errorcode XXH32_update (XXH32_state_t* statePtr, const void* input, size_t length);
-XXH_PUBLIC_API XXH32_hash_t XXH32_digest (const XXH32_state_t* statePtr);
-
-/*
-These functions generate the xxHash of an input provided in multiple segments.
-Note that, for small input, they are slower than single-call functions, due to state management.
-For small input, prefer `XXH32()` and `XXH64()` .
-
-XXH state must first be allocated, using XXH*_createState() .
-
-Start a new hash by initializing state with a seed, using XXH*_reset().
-
-Then, feed the hash state by calling XXH*_update() as many times as necessary.
-Obviously, input must be allocated and read accessible.
-The function returns an error code, with 0 meaning OK, and any other value meaning there is an error.
-
-Finally, a hash value can be produced anytime, by using XXH*_digest().
-This function returns the nn-bits hash as an int or long long.
-
-It's still possible to continue inserting input into the hash state after a digest,
-and generate some new hashes later on, by calling again XXH*_digest().
-
-When done, free XXH state space if it was allocated dynamically.
-*/
-
-/*====== Canonical representation ======*/
-
-typedef struct { unsigned char digest[4]; } XXH32_canonical_t;
-XXH_PUBLIC_API void XXH32_canonicalFromHash(XXH32_canonical_t* dst, XXH32_hash_t hash);
-XXH_PUBLIC_API XXH32_hash_t XXH32_hashFromCanonical(const XXH32_canonical_t* src);
-
-/* Default result type for XXH functions are primitive unsigned 32 and 64 bits.
-* The canonical representation uses human-readable write convention, aka big-endian (large digits first).
-* These functions allow transformation of hash result into and from its canonical format.
-* This way, hash values can be written into a file / memory, and remain comparable on different systems and programs.
-*/
-
-
-#ifndef XXH_NO_LONG_LONG
-/*-**********************************************************************
-* 64-bits hash
-************************************************************************/
-typedef unsigned long long XXH64_hash_t;
-
-/*! XXH64() :
- Calculate the 64-bits hash of sequence of length "len" stored at memory address "input".
- "seed" can be used to alter the result predictably.
- This function runs faster on 64-bits systems, but slower on 32-bits systems (see benchmark).
-*/
-XXH_PUBLIC_API XXH64_hash_t XXH64 (const void* input, size_t length, unsigned long long seed);
-
-/*====== Streaming ======*/
-typedef struct XXH64_state_s XXH64_state_t; /* incomplete type */
-XXH_PUBLIC_API XXH64_state_t* XXH64_createState(void);
-XXH_PUBLIC_API XXH_errorcode XXH64_freeState(XXH64_state_t* statePtr);
-XXH_PUBLIC_API void XXH64_copyState(XXH64_state_t* restrict dst_state, const XXH64_state_t* restrict src_state);
-
-XXH_PUBLIC_API XXH_errorcode XXH64_reset (XXH64_state_t* statePtr, unsigned long long seed);
-XXH_PUBLIC_API XXH_errorcode XXH64_update (XXH64_state_t* statePtr, const void* input, size_t length);
-XXH_PUBLIC_API XXH64_hash_t XXH64_digest (const XXH64_state_t* statePtr);
-
-/*====== Canonical representation ======*/
-typedef struct { unsigned char digest[8]; } XXH64_canonical_t;
-XXH_PUBLIC_API void XXH64_canonicalFromHash(XXH64_canonical_t* dst, XXH64_hash_t hash);
-XXH_PUBLIC_API XXH64_hash_t XXH64_hashFromCanonical(const XXH64_canonical_t* src);
-#endif /* XXH_NO_LONG_LONG */
-
-
-#ifdef XXH_STATIC_LINKING_ONLY
-
-/* ================================================================================================
- This section contains definitions which are not guaranteed to remain stable.
- They may change in future versions, becoming incompatible with a different version of the library.
- They shall only be used with static linking.
- Never use these definitions in association with dynamic linking !
-=================================================================================================== */
-
-/* These definitions are only meant to allow allocation of XXH state
- statically, on stack, or in a struct for example.
- Do not use members directly. */
-
- struct XXH32_state_s {
- unsigned total_len_32;
- unsigned large_len;
- unsigned v1;
- unsigned v2;
- unsigned v3;
- unsigned v4;
- unsigned mem32[4]; /* buffer defined as U32 for alignment */
- unsigned memsize;
- unsigned reserved; /* never read nor write, will be removed in a future version */
- }; /* typedef'd to XXH32_state_t */
-
-#ifndef XXH_NO_LONG_LONG
- struct XXH64_state_s {
- unsigned long long total_len;
- unsigned long long v1;
- unsigned long long v2;
- unsigned long long v3;
- unsigned long long v4;
- unsigned long long mem64[4]; /* buffer defined as U64 for alignment */
- unsigned memsize;
- unsigned reserved[2]; /* never read nor write, will be removed in a future version */
- }; /* typedef'd to XXH64_state_t */
-#endif
-
-# ifdef XXH_PRIVATE_API
-# include "xxhash.c" /* include xxhash function bodies as `static`, for inlining */
-# endif
-
-#endif /* XXH_STATIC_LINKING_ONLY */
-
-
-#if defined (__cplusplus)
-}
-#endif
-
-#endif /* XXHASH_H_5627135585666179 */
diff --git a/Externals/xxhash/xxhash.vcxproj b/Externals/xxhash/xxhash.vcxproj
index 48f3cfcb08..93082ee4cc 100644
--- a/Externals/xxhash/xxhash.vcxproj
+++ b/Externals/xxhash/xxhash.vcxproj
@@ -17,14 +17,14 @@
-
+
-
-
+
+
diff --git a/Externals/xxhash/xxhsum.c b/Externals/xxhash/xxhsum.c
deleted file mode 100644
index 049bc7217b..0000000000
--- a/Externals/xxhash/xxhsum.c
+++ /dev/null
@@ -1,1238 +0,0 @@
-/*
-* xxhsum - Command line interface for xxhash algorithms
-* Copyright (C) Yann Collet 2012-2016
-*
-* GPL v2 License
-*
-* This program is free software; you can redistribute it and/or modify
-* it under the terms of the GNU General Public License as published by
-* the Free Software Foundation; either version 2 of the License, or
-* (at your option) any later version.
-*
-* This program is distributed in the hope that it will be useful,
-* but WITHOUT ANY WARRANTY; without even the implied warranty of
-* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-* GNU General Public License for more details.
-*
-* You should have received a copy of the GNU General Public License along
-* with this program; if not, write to the Free Software Foundation, Inc.,
-* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
-*
-* You can contact the author at :
-* - xxHash homepage : http://www.xxhash.com
-* - xxHash source repository : https://github.com/Cyan4973/xxHash
-*/
-
-/* xxhsum :
- * Provides hash value of a file content, or a list of files, or stdin
- * Display convention is Big Endian, for both 32 and 64 bits algorithms
- */
-
-#ifndef XXHASH_C_2097394837
-#define XXHASH_C_2097394837
-
-/* ************************************
-* Compiler Options
-**************************************/
-/* MS Visual */
-#if defined(_MSC_VER) || defined(_WIN32)
-# define _CRT_SECURE_NO_WARNINGS /* removes visual warnings */
-#endif
-
-/* Under Linux at least, pull in the *64 commands */
-#ifndef _LARGEFILE64_SOURCE
-# define _LARGEFILE64_SOURCE
-#endif
-
-
-/* ************************************
-* Includes
-**************************************/
-#include /* malloc */
-#include /* fprintf, fopen, ftello64, fread, stdin, stdout; when present : _fileno */
-#include /* strcmp */
-#include /* stat64 */
-#include /* stat64 */
-#include /* clock_t, clock, CLOCKS_PER_SEC */
-
-#define XXH_STATIC_LINKING_ONLY /* *_state_t */
-#include "xxhash.h"
-
-
-/*-************************************
-* OS-Specific Includes
-**************************************/
-#if defined(MSDOS) || defined(OS2) || defined(WIN32) || defined(_WIN32) || defined(__CYGWIN__)
-# include /* _O_BINARY */
-# include /* _setmode, _isatty */
-# ifdef __MINGW32__
- int _fileno(FILE *stream); /* MINGW somehow forgets to include this windows declaration into */
-# endif
-# define SET_BINARY_MODE(file) _setmode(_fileno(file), _O_BINARY)
-# define IS_CONSOLE(stdStream) _isatty(_fileno(stdStream))
-#else
-# include /* isatty, STDIN_FILENO */
-# define SET_BINARY_MODE(file)
-# define IS_CONSOLE(stdStream) isatty(STDIN_FILENO)
-#endif
-
-#if !defined(S_ISREG)
-# define S_ISREG(x) (((x) & S_IFMT) == S_IFREG)
-#endif
-
-
-/* ************************************
-* Basic Types
-**************************************/
-#ifndef MEM_MODULE
-# define MEM_MODULE
-# if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L /* C99 */
-# include
- typedef uint8_t BYTE;
- typedef uint16_t U16;
- typedef uint32_t U32;
- typedef int32_t S32;
- typedef uint64_t U64;
-# else
- typedef unsigned char BYTE;
- typedef unsigned short U16;
- typedef unsigned int U32;
- typedef signed int S32;
- typedef unsigned long long U64;
-# endif
-#endif
-
-static unsigned BMK_isLittleEndian(void)
-{
- const union { U32 u; BYTE c[4]; } one = { 1 }; /* don't use static : performance detrimental */
- return one.c[0];
-}
-
-
-/* *************************************
-* Constants
-***************************************/
-#define LIB_VERSION XXH_VERSION_MAJOR.XXH_VERSION_MINOR.XXH_VERSION_RELEASE
-#define QUOTE(str) #str
-#define EXPAND_AND_QUOTE(str) QUOTE(str)
-#define PROGRAM_VERSION EXPAND_AND_QUOTE(LIB_VERSION)
-static const int g_nbBits = (int)(sizeof(void*)*8);
-static const char g_lename[] = "little endian";
-static const char g_bename[] = "big endian";
-#define ENDIAN_NAME (BMK_isLittleEndian() ? g_lename : g_bename)
-static const char author[] = "Yann Collet";
-#define WELCOME_MESSAGE(exename) "%s %s (%i-bits %s), by %s \n", exename, PROGRAM_VERSION, g_nbBits, ENDIAN_NAME, author
-
-#define NBLOOPS 3 /* Default number of benchmark iterations */
-#define TIMELOOP_S 1
-#define TIMELOOP (TIMELOOP_S * CLOCKS_PER_SEC) /* Minimum timing per iteration */
-#define XXHSUM32_DEFAULT_SEED 0 /* Default seed for algo_xxh32 */
-#define XXHSUM64_DEFAULT_SEED 0 /* Default seed for algo_xxh64 */
-
-#define KB *( 1<<10)
-#define MB *( 1<<20)
-#define GB *(1U<<30)
-
-#define MAX_MEM (2 GB - 64 MB)
-
-static const char stdinName[] = "-";
-typedef enum { algo_xxh32, algo_xxh64 } algoType;
-static const algoType g_defaultAlgo = algo_xxh64; /* required within main() & usage() */
-
-/* <16 hex char> <'\0'>
- * '4096' is typical Linux PATH_MAX configuration. */
-#define DEFAULT_LINE_LENGTH (sizeof(XXH64_hash_t) * 2 + 2 + 4096 + 1)
-
-/* Maximum acceptable line length. */
-#define MAX_LINE_LENGTH (32 KB)
-
-
-/* ************************************
-* Display macros
-**************************************/
-#define DISPLAY(...) fprintf(stderr, __VA_ARGS__)
-#define DISPLAYRESULT(...) fprintf(stdout, __VA_ARGS__)
-#define DISPLAYLEVEL(l, ...) if (g_displayLevel>=l) DISPLAY(__VA_ARGS__);
-static U32 g_displayLevel = 1;
-
-
-/* ************************************
-* Local variables
-**************************************/
-static size_t g_sampleSize = 100 KB;
-static U32 g_nbIterations = NBLOOPS;
-
-
-/* ************************************
-* Benchmark Functions
-**************************************/
-static clock_t BMK_clockSpan( clock_t start )
-{
- return clock() - start; /* works even if overflow; Typical max span ~ 30 mn */
-}
-
-
-static size_t BMK_findMaxMem(U64 requiredMem)
-{
- size_t const step = 64 MB;
- void* testmem = NULL;
-
- requiredMem = (((requiredMem >> 26) + 1) << 26);
- requiredMem += 2*step;
- if (requiredMem > MAX_MEM) requiredMem = MAX_MEM;
-
- while (!testmem) {
- if (requiredMem > step) requiredMem -= step;
- else requiredMem >>= 1;
- testmem = malloc ((size_t)requiredMem);
- }
- free (testmem);
-
- /* keep some space available */
- if (requiredMem > step) requiredMem -= step;
- else requiredMem >>= 1;
-
- return (size_t)requiredMem;
-}
-
-
-static U64 BMK_GetFileSize(const char* infilename)
-{
- int r;
-#if defined(_MSC_VER)
- struct _stat64 statbuf;
- r = _stat64(infilename, &statbuf);
-#else
- struct stat statbuf;
- r = stat(infilename, &statbuf);
-#endif
- if (r || !S_ISREG(statbuf.st_mode)) return 0; /* No good... */
- return (U64)statbuf.st_size;
-}
-
-typedef U32 (*hashFunction)(const void* buffer, size_t bufferSize, U32 seed);
-
-static U32 localXXH32(const void* buffer, size_t bufferSize, U32 seed) { return XXH32(buffer, bufferSize, seed); }
-
-static U32 localXXH64(const void* buffer, size_t bufferSize, U32 seed) { return (U32)XXH64(buffer, bufferSize, seed); }
-
-static void BMK_benchHash(hashFunction h, const char* hName, const void* buffer, size_t bufferSize)
-{
- static const U32 nbh_perloop = 100;
- U32 iterationNb;
- double fastestH = 100000000.;
-
- DISPLAY("\r%79s\r", ""); /* Clean display line */
- if (g_nbIterations<1) g_nbIterations=1;
- for (iterationNb = 1; iterationNb <= g_nbIterations; iterationNb++) {
- U32 nbHashes = 0, r=0;
- clock_t cStart;
-
- DISPLAY("%1i-%-17.17s : %10u ->\r", iterationNb, hName, (U32)bufferSize);
- cStart = clock();
- while (clock() == cStart); /* starts clock() at its exact beginning */
- cStart = clock();
-
- while (BMK_clockSpan(cStart) < TIMELOOP) {
- U32 i;
- for (i=0; i %7.1f MB/s\r", iterationNb, hName, (U32)bufferSize, ((double)bufferSize / (1<<20)) / fastestH );
- }
- }
- DISPLAY("%-19.19s : %10u -> %7.1f MB/s \n", hName, (U32)bufferSize, ((double)bufferSize / (1<<20)) / fastestH);
-}
-
-
-/* Note : buffer is supposed malloc'ed, hence aligned */
-static void BMK_benchMem(const void* buffer, size_t bufferSize)
-{
- /* XXH32 bench */
- BMK_benchHash(localXXH32, "XXH32", buffer, bufferSize);
-
- /* Bench XXH32 on Unaligned input */
- if (bufferSize>1)
- BMK_benchHash(localXXH32, "XXH32 unaligned", ((const char*)buffer)+1, bufferSize-1);
-
- /* Bench XXH64 */
- BMK_benchHash(localXXH64, "XXH64", buffer, bufferSize);
-
- /* Bench XXH64 on Unaligned input */
- if (bufferSize>1)
- BMK_benchHash(localXXH64, "XXH64 unaligned", ((const char*)buffer)+1, bufferSize-1);
-}
-
-
-static size_t BMK_selectBenchedSize(const char* fileName)
-{ U64 const inFileSize = BMK_GetFileSize(fileName);
- size_t benchedSize = (size_t) BMK_findMaxMem(inFileSize);
- if ((U64)benchedSize > inFileSize) benchedSize = (size_t)inFileSize;
- if (benchedSize < inFileSize) {
- DISPLAY("Not enough memory for '%s' full size; testing %i MB only...\n", fileName, (int)(benchedSize>>20));
- }
- return benchedSize;
-}
-
-
-static int BMK_benchFiles(const char** fileNamesTable, int nbFiles)
-{
- int fileIdx;
- for (fileIdx=0; fileIdx> 10));
- BMK_benchMem(buffer, benchedSize);
-
- free(buffer);
- return 0;
-}
-
-
-static void BMK_checkResult(U32 r1, U32 r2)
-{
- static int nbTests = 1;
- if (r1==r2) DISPLAY("\rTest%3i : %08X == %08X ok ", nbTests, r1, r2);
- else {
- DISPLAY("\rERROR : Test%3i : %08X <> %08X !!!!! \n", nbTests, r1, r2);
- exit(1);
- }
- nbTests++;
-}
-
-
-static void BMK_checkResult64(U64 r1, U64 r2)
-{
- static int nbTests = 1;
- if (r1!=r2) {
- DISPLAY("\rERROR : Test%3i : 64-bits values non equals !!!!! \n", nbTests);
- DISPLAY("\r %08X%08X != %08X%08X \n", (U32)(r1>>32), (U32)r1, (U32)(r2>>32), (U32)r2);
- exit(1);
- }
- nbTests++;
-}
-
-
-static void BMK_testSequence64(void* sentence, size_t len, U64 seed, U64 Nresult)
-{
- XXH64_state_t state;
- U64 Dresult;
- size_t pos;
-
- Dresult = XXH64(sentence, len, seed);
- BMK_checkResult64(Dresult, Nresult);
-
- XXH64_reset(&state, seed);
- XXH64_update(&state, sentence, len);
- Dresult = XXH64_digest(&state);
- BMK_checkResult64(Dresult, Nresult);
-
- XXH64_reset(&state, seed);
- for (pos=0; pos>24);
- byteGen *= byteGen;
- }
-
- BMK_testSequence(NULL, 0, 0, 0x02CC5D05);
- BMK_testSequence(NULL, 0, prime, 0x36B78AE7);
- BMK_testSequence(sanityBuffer, 1, 0, 0xB85CBEE5);
- BMK_testSequence(sanityBuffer, 1, prime, 0xD5845D64);
- BMK_testSequence(sanityBuffer, 14, 0, 0xE5AA0AB4);
- BMK_testSequence(sanityBuffer, 14, prime, 0x4481951D);
- BMK_testSequence(sanityBuffer, SANITY_BUFFER_SIZE, 0, 0x1F1AA412);
- BMK_testSequence(sanityBuffer, SANITY_BUFFER_SIZE, prime, 0x498EC8E2);
-
- BMK_testSequence64(NULL , 0, 0, 0xEF46DB3751D8E999ULL);
- BMK_testSequence64(NULL , 0, prime, 0xAC75FDA2929B17EFULL);
- BMK_testSequence64(sanityBuffer, 1, 0, 0x4FCE394CC88952D8ULL);
- BMK_testSequence64(sanityBuffer, 1, prime, 0x739840CB819FA723ULL);
- BMK_testSequence64(sanityBuffer, 14, 0, 0xCFFA8DB881BC3A3DULL);
- BMK_testSequence64(sanityBuffer, 14, prime, 0x5B9611585EFCC9CBULL);
- BMK_testSequence64(sanityBuffer, SANITY_BUFFER_SIZE, 0, 0x0EAB543384F878ADULL);
- BMK_testSequence64(sanityBuffer, SANITY_BUFFER_SIZE, prime, 0xCAA65939306F1E21ULL);
-
- DISPLAY("\r%79s\r", ""); /* Clean display line */
- DISPLAYLEVEL(2, "Sanity check -- all tests ok\n");
-}
-
-
-/* ********************************************************
-* File Hashing
-**********************************************************/
-
-static void BMK_display_LittleEndian(const void* ptr, size_t length)
-{
- const BYTE* p = (const BYTE*)ptr;
- size_t idx;
- for (idx=length-1; idx 30 ? 30 : fileNameSize;
- size_t infoFilenameSize = 1;
- while ( (infoFilenameSize < maxInfoFilenameSize)
- &&(fileNameEnd[-1-infoFilenameSize] != '/')
- &&(fileNameEnd[-1-infoFilenameSize] != '\\') )
- infoFilenameSize++;
- DISPLAY("\rLoading %s... \r", fileNameEnd - infoFilenameSize);
- }
-
- /* Load file & update hash */
- switch(hashType)
- {
- case algo_xxh32:
- BMK_hashStream(&h32, algo_xxh32, inFile, buffer, blockSize);
- break;
- case algo_xxh64:
- BMK_hashStream(&h64, algo_xxh64, inFile, buffer, blockSize);
- break;
- default:
- break;
- }
-
- fclose(inFile);
- free(buffer);
-
- /* display Hash */
- switch(hashType)
- {
- case algo_xxh32:
- { XXH32_canonical_t hcbe32;
- XXH32_canonicalFromHash(&hcbe32, h32);
- displayEndianess==big_endian ?
- BMK_display_BigEndian(&hcbe32, sizeof(hcbe32)) : BMK_display_LittleEndian(&hcbe32, sizeof(hcbe32));
- DISPLAYRESULT(" %s\n", fileName);
- break;
- }
- case algo_xxh64:
- { XXH64_canonical_t hcbe64;
- XXH64_canonicalFromHash(&hcbe64, h64);
- displayEndianess==big_endian ?
- BMK_display_BigEndian(&hcbe64, sizeof(hcbe64)) : BMK_display_LittleEndian(&hcbe64, sizeof(hcbe64));
- DISPLAYRESULT(" %s\n", fileName);
- break;
- }
- default:
- break;
- }
-
- return 0;
-}
-
-
-static int BMK_hashFiles(const char** fnList, int fnTotal,
- algoType hashType, endianess displayEndianess)
-{
- int fnNb;
- int result = 0;
-
- if (fnTotal==0)
- return BMK_hash(stdinName, hashType, displayEndianess);
-
- for (fnNb=0; fnNb= *lineMax) {
- char* newLineBuf = NULL;
- int newBufSize = *lineMax;
-
- newBufSize += (newBufSize/2) + 1; /* x 1.5 */
- if (newBufSize > MAX_LINE_LENGTH) newBufSize = MAX_LINE_LENGTH;
- if (len+1 >= newBufSize) return GetLine_exceedMaxLineLength;
-
- newLineBuf = (char*) realloc(*lineBuf, newBufSize);
- if (newLineBuf == NULL) return GetLine_outOfMemory;
-
- *lineBuf = newLineBuf;
- *lineMax = newBufSize;
- }
-
- if (c == '\n') break;
- (*lineBuf)[len++] = (char) c;
- }
-
- (*lineBuf)[len] = '\0';
- return result;
-}
-
-
-/* Converts one hexadecimal character to integer.
- * Returns -1, if given character is not hexadecimal.
- */
-static int charToHex(char c)
-{
- int result = -1;
- if (c >= '0' && c <= '9') {
- result = (int) (c - '0');
- } else if (c >= 'A' && c <= 'F') {
- result = (int) (c - 'A') + 0x0a;
- } else if (c >= 'a' && c <= 'f') {
- result = (int) (c - 'a') + 0x0a;
- }
- return result;
-}
-
-
-/* Converts XXH32 canonical hexadecimal string hashStr to big endian unsigned char array dst.
- * Returns CANONICAL_FROM_STRING_INVALID_FORMAT, if hashStr is not well formatted.
- * Returns CANONICAL_FROM_STRING_OK, if hashStr is parsed successfully.
- */
-static CanonicalFromStringResult canonicalFromString(unsigned char* dst,
- size_t dstSize,
- const char* hashStr)
-{
- size_t i;
- for (i = 0; i < dstSize; ++i) {
- int h0, h1;
-
- h0 = charToHex(hashStr[i*2 + 0]);
- if (h0 < 0) return CanonicalFromString_invalidFormat;
-
- h1 = charToHex(hashStr[i*2 + 1]);
- if (h1 < 0) return CanonicalFromString_invalidFormat;
-
- dst[i] = (unsigned char) ((h0 << 4) | h1);
- }
- return CanonicalFromString_ok;
-}
-
-
-/* Parse single line of xxHash checksum file.
- * Returns PARSE_LINE_ERROR_INVALID_FORMAT, if line is not well formatted.
- * Returns PARSE_LINE_OK if line is parsed successfully.
- * And members of parseLine will be filled by parsed values.
- *
- * - line must be ended with '\0'.
- * - Since parsedLine.filename will point within given argument `line`,
- * users must keep `line`s content during they are using parsedLine.
- *
- * Given xxHash checksum line should have the following format:
- *
- * <8 or 16 hexadecimal char> <'\0'>
- */
-static ParseLineResult parseLine(ParsedLine* parsedLine, const char* line)
-{
- const char* const firstSpace = strchr(line, ' ');
- const char* const secondSpace = firstSpace + 1;
-
- parsedLine->filename = NULL;
- parsedLine->xxhBits = 0;
-
- if (firstSpace == NULL || *secondSpace != ' ') return ParseLine_invalidFormat;
-
- switch (firstSpace - line)
- {
- case 8:
- { XXH32_canonical_t* xxh32c = &parsedLine->canonical.xxh32;
- if (canonicalFromString(xxh32c->digest, sizeof(xxh32c->digest), line)
- != CanonicalFromString_ok) {
- return ParseLine_invalidFormat;
- }
- parsedLine->xxhBits = 32;
- break;
- }
-
- case 16:
- { XXH64_canonical_t* xxh64c = &parsedLine->canonical.xxh64;
- if (canonicalFromString(xxh64c->digest, sizeof(xxh64c->digest), line)
- != CanonicalFromString_ok) {
- return ParseLine_invalidFormat;
- }
- parsedLine->xxhBits = 64;
- break;
- }
-
- default:
- return ParseLine_invalidFormat;
- break;
- }
-
- parsedLine->filename = secondSpace + 1;
- return ParseLine_ok;
-}
-
-
-/*! Parse xxHash checksum file.
- */
-static void parseFile1(ParseFileArg* parseFileArg)
-{
- const char* const inFileName = parseFileArg->inFileName;
- ParseFileReport* const report = &parseFileArg->report;
-
- unsigned long lineNumber = 0;
- memset(report, 0, sizeof(*report));
-
- while (!report->quit) {
- FILE* fp = NULL;
- LineStatus lineStatus = LineStatus_hashFailed;
- GetLineResult getLineResult;
- ParsedLine parsedLine;
- memset(&parsedLine, 0, sizeof(parsedLine));
-
- lineNumber++;
- if (lineNumber == 0) {
- /* This is unlikely happen, but md5sum.c has this
- * error check. */
- DISPLAY("%s : too many checksum lines\n", inFileName);
- report->quit = 1;
- break;
- }
-
- getLineResult = getLine(&parseFileArg->lineBuf, &parseFileArg->lineMax,
- parseFileArg->inFile);
- if (getLineResult != GetLine_ok) {
- if (getLineResult == GetLine_eof) break;
-
- switch (getLineResult)
- {
- case GetLine_ok:
- case GetLine_eof:
- /* These cases never happen. See above getLineResult related "if"s.
- They exist just for make gcc's -Wswitch-enum happy. */
- break;
-
- default:
- DISPLAY("%s : %lu: unknown error\n", inFileName, lineNumber);
- break;
-
- case GetLine_exceedMaxLineLength:
- DISPLAY("%s : %lu: too long line\n", inFileName, lineNumber);
- break;
-
- case GetLine_outOfMemory:
- DISPLAY("%s : %lu: out of memory\n", inFileName, lineNumber);
- break;
- }
- report->quit = 1;
- break;
- }
-
- if (parseLine(&parsedLine, parseFileArg->lineBuf) != ParseLine_ok) {
- report->nImproperlyFormattedLines++;
- if (parseFileArg->warn) {
- DISPLAY("%s : %lu: improperly formatted XXHASH checksum line\n"
- , inFileName, lineNumber);
- }
- continue;
- }
-
- if (report->xxhBits != 0 && report->xxhBits != parsedLine.xxhBits) {
- /* Don't accept xxh32/xxh64 mixed file */
- report->nImproperlyFormattedLines++;
- report->nMixedFormatLines++;
- if (parseFileArg->warn) {
- DISPLAY("%s : %lu: improperly formatted XXHASH checksum line (XXH32/64)\n"
- , inFileName, lineNumber);
- }
- continue;
- }
-
- report->nProperlyFormattedLines++;
- if (report->xxhBits == 0) {
- report->xxhBits = parsedLine.xxhBits;
- }
-
- fp = fopen(parsedLine.filename, "rb");
- if (fp == NULL) {
- lineStatus = LineStatus_failedToOpen;
- } else {
- lineStatus = LineStatus_hashFailed;
- switch (parsedLine.xxhBits)
- {
- case 32:
- { XXH32_hash_t xxh;
- BMK_hashStream(&xxh, algo_xxh32, fp, parseFileArg->blockBuf, parseFileArg->blockSize);
- if (xxh == XXH32_hashFromCanonical(&parsedLine.canonical.xxh32)) {
- lineStatus = LineStatus_hashOk;
- } }
- break;
-
- case 64:
- { XXH64_hash_t xxh;
- BMK_hashStream(&xxh, algo_xxh64, fp, parseFileArg->blockBuf, parseFileArg->blockSize);
- if (xxh == XXH64_hashFromCanonical(&parsedLine.canonical.xxh64)) {
- lineStatus = LineStatus_hashOk;
- } }
- break;
-
- default:
- break;
- }
- fclose(fp);
- }
-
- switch (lineStatus)
- {
- default:
- DISPLAY("%s : unknown error\n", inFileName);
- report->quit = 1;
- break;
-
- case LineStatus_failedToOpen:
- report->nOpenOrReadFailures++;
- if (!parseFileArg->statusOnly) {
- DISPLAYRESULT("%s : %lu: FAILED open or read %s\n"
- , inFileName, lineNumber, parsedLine.filename);
- }
- break;
-
- case LineStatus_hashOk:
- case LineStatus_hashFailed:
- { int b = 1;
- if (lineStatus == LineStatus_hashOk) {
- /* If --quiet is specified, don't display "OK" */
- if (parseFileArg->quiet) b = 0;
- } else {
- report->nMismatchedChecksums++;
- }
-
- if (b && !parseFileArg->statusOnly) {
- DISPLAYRESULT("%s: %s\n", parsedLine.filename
- , lineStatus == LineStatus_hashOk ? "OK" : "FAILED");
- } }
- break;
- }
- } /* while (!report->quit) */
-}
-
-
-/* Parse xxHash checksum file.
- * Returns 1, if all procedures were succeeded.
- * Returns 0, if any procedures was failed.
- *
- * If strictMode != 0, return error code if any line is invalid.
- * If statusOnly != 0, don't generate any output.
- * If warn != 0, print a warning message to stderr.
- * If quiet != 0, suppress "OK" line.
- *
- * "All procedures are succeeded" means:
- * - Checksum file contains at least one line and less than SIZE_T_MAX lines.
- * - All files are properly opened and read.
- * - All hash values match with its content.
- * - (strict mode) All lines in checksum file are consistent and well formatted.
- *
- */
-static int checkFile(const char* inFileName,
- const endianess displayEndianess,
- U32 strictMode,
- U32 statusOnly,
- U32 warn,
- U32 quiet)
-{
- int result = 0;
- FILE* inFile = NULL;
- ParseFileArg parseFileArgBody;
- ParseFileArg* const parseFileArg = &parseFileArgBody;
- ParseFileReport* const report = &parseFileArg->report;
-
- if (displayEndianess != big_endian) {
- /* Don't accept little endian */
- DISPLAY( "Check file mode doesn't support little endian\n" );
- return 0;
- }
-
- /* note : stdinName is special constant pointer. It is not a string. */
- if (inFileName == stdinName) {
- /* note : Since we expect text input for xxhash -c mode,
- * Don't set binary mode for stdin */
- inFile = stdin;
- } else {
- inFile = fopen( inFileName, "rt" );
- }
-
- if (inFile == NULL) {
- DISPLAY( "Pb opening %s\n", inFileName);
- return 0;
- }
-
- parseFileArg->inFileName = inFileName;
- parseFileArg->inFile = inFile;
- parseFileArg->lineMax = DEFAULT_LINE_LENGTH;
- parseFileArg->lineBuf = (char*) malloc((size_t) parseFileArg->lineMax);
- parseFileArg->blockSize = 64 * 1024;
- parseFileArg->blockBuf = (char*) malloc(parseFileArg->blockSize);
- parseFileArg->strictMode = strictMode;
- parseFileArg->statusOnly = statusOnly;
- parseFileArg->warn = warn;
- parseFileArg->quiet = quiet;
-
- parseFile1(parseFileArg);
-
- free(parseFileArg->blockBuf);
- free(parseFileArg->lineBuf);
-
- if (inFile != stdin) fclose(inFile);
-
- /* Show error/warning messages. All messages are copied from md5sum.c
- */
- if (report->nProperlyFormattedLines == 0) {
- DISPLAY("%s: no properly formatted XXHASH checksum lines found\n", inFileName);
- } else if (!statusOnly) {
- if (report->nImproperlyFormattedLines) {
- DISPLAYRESULT("%lu lines are improperly formatted\n"
- , report->nImproperlyFormattedLines);
- }
- if (report->nOpenOrReadFailures) {
- DISPLAYRESULT("%lu listed files could not be read\n"
- , report->nOpenOrReadFailures);
- }
- if (report->nMismatchedChecksums) {
- DISPLAYRESULT("%lu computed checksums did NOT match\n"
- , report->nMismatchedChecksums);
- } }
-
- /* Result (exit) code logic is copied from
- * gnu coreutils/src/md5sum.c digest_check() */
- result = report->nProperlyFormattedLines != 0
- && report->nMismatchedChecksums == 0
- && report->nOpenOrReadFailures == 0
- && (!strictMode || report->nImproperlyFormattedLines == 0)
- && report->quit == 0;
- return result;
-}
-
-
-static int checkFiles(const char** fnList, int fnTotal,
- const endianess displayEndianess,
- U32 strictMode,
- U32 statusOnly,
- U32 warn,
- U32 quiet)
-{
- int ok = 1;
-
- /* Special case for stdinName "-",
- * note: stdinName is not a string. It's special pointer. */
- if (fnTotal==0) {
- ok &= checkFile(stdinName, displayEndianess, strictMode, statusOnly, warn, quiet);
- } else {
- int fnNb;
- for (fnNb=0; fnNb='0' && argument[0]<='9')
- g_sampleSize *= 10, g_sampleSize += argument[0]-'0', argument++;
- break;
-
- default:
- return badusage(exename);
- }
- }
- } /* for(i=1; i, 2013,2015-2023\n"
"Language-Team: Arabic (http://app.transifex.com/delroth/dolphin-emu/language/"
@@ -50,7 +50,7 @@ msgstr ""
msgid " (Disc %1)"
msgstr "(%1 القرص)"
-#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:264
+#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:283
msgid "! Not"
msgstr "! ليس"
@@ -58,9 +58,9 @@ msgstr "! ليس"
msgid "\"{0}\" is an invalid GCM/ISO file, or is not a GC/Wii ISO."
msgstr ""
-#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:276
+#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:295
msgid "$ User Variable"
-msgstr "متغير المستخدم $"
+msgstr "$ متغير المستخدم"
#. i18n: The symbol for percent.
#. i18n: The percent symbol.
@@ -71,7 +71,7 @@ msgstr "متغير المستخدم $"
#: Source/Core/Core/HW/WiimoteEmu/Extension/Drums.cpp:71
#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:292
#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:298
-#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:333
+#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:352
#: Source/Core/InputCommon/ControllerEmu/ControlGroup/AnalogStick.cpp:105
#: Source/Core/InputCommon/ControllerEmu/ControlGroup/ControlGroup.cpp:45
#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUCursor.cpp:46
@@ -79,9 +79,9 @@ msgstr "متغير المستخدم $"
msgid "%"
msgstr "%"
-#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:267
+#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:286
msgid "% Modulo"
-msgstr "% Modulo"
+msgstr "% وحدة"
#: Source/Core/DolphinQt/DiscordJoinRequestDialog.cpp:58
msgid ""
@@ -104,14 +104,14 @@ msgstr "%1 %2"
msgid "%1 %2 %3"
msgstr "%1 %2 %3"
-#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:80
+#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:81
#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:167
msgid "%1 (%2)"
msgstr "%1 (%2)"
#. i18n: If there is a pre-defined patch with the name %1 and the user wants to edit it,
#. a copy of it gets created with this name
-#: Source/Core/DolphinQt/Config/PatchesWidget.cpp:98
+#: Source/Core/DolphinQt/Config/PatchesWidget.cpp:105
msgid "%1 (Copy)"
msgstr "%1 (نسخ)"
@@ -124,7 +124,7 @@ msgid "%1 (Revision %3)"
msgstr "%1 (%3 إصدار)"
#. i18n: "Stock" refers to input profiles included with Dolphin
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:509
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:511
msgid "%1 (Stock)"
msgstr "%1 (المخزون)"
@@ -138,7 +138,7 @@ msgstr "%1 (موصى به)"
msgid "%1 (slow)"
msgstr "%1 (بطيء)"
-#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:317
+#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:313
msgid ""
"%1 FIFO bytes\n"
"%2 memory bytes\n"
@@ -150,13 +150,13 @@ msgstr ""
#: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:74
msgid "%1 Graphics Configuration"
-msgstr "%1 تكوين الرسومات"
+msgstr "%1 إعداد الرسومات"
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:308
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:298
msgid "%1 MB (MEM1)"
msgstr "%1 MB (MEM1)"
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:322
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:312
msgid "%1 MB (MEM2)"
msgstr "%1 MB (MEM2)"
@@ -164,11 +164,11 @@ msgstr "%1 MB (MEM2)"
msgid "%1 doesn't support this feature on your system."
msgstr "%1 لا يدعم هذه الميزة علي النظام الخاص بك"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:253
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:292
msgid "%1 doesn't support this feature."
msgstr "%1 لا يدعم هذه الميزة."
-#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:297
+#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:293
msgid ""
"%1 frame(s)\n"
"%2 object(s)\n"
@@ -178,45 +178,49 @@ msgstr ""
"%2 موضوع(s)\n"
"%3 الإطار الحالي"
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:910
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:912
msgid "%1 has joined"
msgstr "%1 قد انضم"
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:915
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:917
msgid "%1 has left"
msgstr "%1 لقد غادر"
-#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:120
+#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:169
msgid ""
"%1 has unlocked %2/%3 achievements (%4 hardcore) worth %5/%6 points (%7 "
"hardcore)"
msgstr ""
-#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:131
+#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:180
msgid "%1 has unlocked %2/%3 achievements worth %4/%5 points"
msgstr ""
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1108
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1110
msgid "%1 is not a valid ROM"
msgstr "%1 القرص غير صالح"
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1037
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1039
msgid "%1 is now golfing"
msgstr "%1 is now golfing"
+#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:136
+msgid "%1 is playing %2"
+msgstr ""
+
#: Source/Core/DolphinQt/CheatSearchWidget.cpp:112
msgid "%1 memory ranges"
msgstr "نطاقات الذاكرة %1"
-#: Source/Core/DolphinQt/Settings/AudioPane.cpp:254
-#: Source/Core/DolphinQt/Settings/AudioPane.cpp:323
+#: Source/Core/DolphinQt/Settings/AudioPane.cpp:251
+#: Source/Core/DolphinQt/Settings/AudioPane.cpp:320
msgid "%1 ms"
msgstr "%1 ms"
-#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:86
-#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:55
+#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:155
+#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:101
msgid "%1 points"
-msgstr ""
+msgstr "%1 نقاط"
#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:265
msgid "%1 session found"
@@ -224,32 +228,32 @@ msgstr "%1 وجدت جلسة"
#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:265
msgid "%1 sessions found"
-msgstr "%1 العثور على جلسات"
+msgstr "%1 الجلسات التي تم العثور عليها"
-#: Source/Core/DolphinQt/Settings/AudioPane.cpp:408
+#: Source/Core/DolphinQt/Settings/AudioPane.cpp:405
msgid "%1%"
msgstr "%1%"
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:292
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:281
msgid "%1% (%2 MHz)"
msgstr "%1% (%2 MHz)"
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:170
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:171
msgid "%1% (Normal Speed)"
msgstr "%1% (السرعة القياسية)"
#. i18n: One of the options shown below "Run until (ignoring breakpoints)"
-#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:633
+#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:634
msgid "%1's value is changed"
msgstr ""
#. i18n: One of the options shown below "Run until (ignoring breakpoints)"
-#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:627
+#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:628
msgid "%1's value is hit"
msgstr ""
#. i18n: One of the options shown below "Run until (ignoring breakpoints)"
-#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:630
+#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:631
msgid "%1's value is used"
msgstr ""
@@ -257,7 +261,7 @@ msgstr ""
msgid "%1, %2, %3, %4"
msgstr "%1, %2, %3, %4"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:605
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:606
msgid "%1: %2"
msgstr "%1: %2"
@@ -273,16 +277,20 @@ msgstr "%1[%2]: %3 %"
msgid "%1[%2]: %3/%4 MiB"
msgstr "%1[%2]: %3/%4 ميغابايت"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:286
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:325
#, c-format
msgid "%1x MSAA"
msgstr "%1x MSAA"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:78
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:94
msgid "%1x Native (%2x%3)"
msgstr "%1x Native (%2x%3)"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:298
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:99
+msgid "%1x Native (%2x%3) for %4"
+msgstr ""
+
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:337
#, c-format
msgid "%1x SSAA"
msgstr "%1x SSAA"
@@ -306,27 +314,27 @@ msgctxt ""
msgid "%n address(es) were removed."
msgstr ""
-#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:272
+#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:291
msgid "& And"
msgstr "& و"
-#: Source/Core/DolphinQt/GBAWidget.cpp:432
+#: Source/Core/DolphinQt/GBAWidget.cpp:433
msgid "&1x"
msgstr "&1x"
-#: Source/Core/DolphinQt/GBAWidget.cpp:434
+#: Source/Core/DolphinQt/GBAWidget.cpp:435
msgid "&2x"
msgstr "&2x"
-#: Source/Core/DolphinQt/GBAWidget.cpp:436
+#: Source/Core/DolphinQt/GBAWidget.cpp:437
msgid "&3x"
msgstr "&3x"
-#: Source/Core/DolphinQt/GBAWidget.cpp:438
+#: Source/Core/DolphinQt/GBAWidget.cpp:439
msgid "&4x"
msgstr "&4x"
-#: Source/Core/DolphinQt/MenuBar.cpp:616
+#: Source/Core/DolphinQt/MenuBar.cpp:608
msgid "&About"
msgstr "&حول"
@@ -334,85 +342,85 @@ msgstr "&حول"
msgid "&Add Memory Breakpoint"
msgstr "&إضافة نقطة توقف الذاكرة"
-#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:58
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:83
+#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:59
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:84
msgid "&Add New Code..."
msgstr "&إضافة رمز جديد"
-#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:593
+#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:594
msgid "&Add function"
msgstr "&إضافة وظيفة"
-#: Source/Core/DolphinQt/Config/PatchesWidget.cpp:43
+#: Source/Core/DolphinQt/Config/PatchesWidget.cpp:44
msgid "&Add..."
msgstr "&إضافة"
-#: Source/Core/DolphinQt/MenuBar.cpp:542
+#: Source/Core/DolphinQt/MenuBar.cpp:534
msgid "&Audio Settings"
msgstr "&إعدادات الصوت"
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:190
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:191
msgid "&Auto Update:"
msgstr "&التحديث التلقائي"
-#: Source/Core/DolphinQt/MenuBar.cpp:558
+#: Source/Core/DolphinQt/MenuBar.cpp:550
msgid "&Automatic Start"
msgstr "&بدء تلقائي"
-#: Source/Core/DolphinQt/GBAWidget.cpp:441
+#: Source/Core/DolphinQt/GBAWidget.cpp:442
msgid "&Borderless Window"
msgstr "&نافذة بلا حدود"
-#: Source/Core/DolphinQt/MenuBar.cpp:474
+#: Source/Core/DolphinQt/MenuBar.cpp:466
msgid "&Breakpoints"
msgstr "&نقاط التوقف"
-#: Source/Core/DolphinQt/MenuBar.cpp:599
+#: Source/Core/DolphinQt/MenuBar.cpp:591
msgid "&Bug Tracker"
msgstr "&تتبع اخطاء المحاكي"
-#: Source/Core/DolphinQt/WiiUpdate.cpp:104
+#: Source/Core/DolphinQt/WiiUpdate.cpp:105
msgid "&Cancel"
msgstr "&إلغاء"
-#: Source/Core/DolphinQt/MenuBar.cpp:226
+#: Source/Core/DolphinQt/MenuBar.cpp:218
msgid "&Cheats Manager"
msgstr "&مدير الأسرار"
-#: Source/Core/DolphinQt/MenuBar.cpp:609
+#: Source/Core/DolphinQt/MenuBar.cpp:601
msgid "&Check for Updates..."
-msgstr "&التحقق من التحديثات"
+msgstr "&تحقق من وجود تحديثات"
-#: Source/Core/DolphinQt/MenuBar.cpp:982
+#: Source/Core/DolphinQt/MenuBar.cpp:964
msgid "&Clear Symbols"
msgstr "&مسح الرموز"
-#: Source/Core/DolphinQt/Config/PatchesWidget.cpp:162
+#: Source/Core/DolphinQt/Config/PatchesWidget.cpp:175
msgid "&Clone..."
msgstr "&استنساخ"
-#: Source/Core/DolphinQt/MenuBar.cpp:439
+#: Source/Core/DolphinQt/MenuBar.cpp:431
msgid "&Code"
msgstr "&رمز"
-#: Source/Core/DolphinQt/GBAWidget.cpp:386
+#: Source/Core/DolphinQt/GBAWidget.cpp:387
msgid "&Connected"
msgstr "&متصل"
-#: Source/Core/DolphinQt/MenuBar.cpp:544
+#: Source/Core/DolphinQt/MenuBar.cpp:536
msgid "&Controller Settings"
-msgstr "&إعدادات وحدة التحكم"
+msgstr "&إعدادات ذراع التحكم"
-#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:569
+#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:570
msgid "&Copy address"
msgstr "&نسخ العنوان"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:136
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:137
msgid "&Create..."
msgstr "&إنشاء..."
#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:457
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:112
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:113
msgid "&Delete"
msgstr "&حذف"
@@ -428,21 +436,21 @@ msgstr "&حذف المشاهدة"
msgid "&Delete Watches"
msgstr ""
-#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:59
-#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:179
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:84
+#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:60
+#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:180
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:85
msgid "&Edit Code..."
msgstr "&تحرير الرمز"
-#: Source/Core/DolphinQt/Config/PatchesWidget.cpp:162
+#: Source/Core/DolphinQt/Config/PatchesWidget.cpp:175
msgid "&Edit..."
msgstr "&تحرير"
-#: Source/Core/DolphinQt/MenuBar.cpp:206
+#: Source/Core/DolphinQt/MenuBar.cpp:198
msgid "&Eject Disc"
msgstr "&إخراج القرص"
-#: Source/Core/DolphinQt/MenuBar.cpp:317
+#: Source/Core/DolphinQt/MenuBar.cpp:309
msgid "&Emulation"
msgstr "&محاكاة"
@@ -450,39 +458,39 @@ msgstr "&محاكاة"
msgid "&Export"
msgstr "&تصدير"
-#: Source/Core/DolphinQt/GBAWidget.cpp:413
+#: Source/Core/DolphinQt/GBAWidget.cpp:414
msgid "&Export Save Game..."
msgstr "&تصدير حفظ اللعبة"
-#: Source/Core/DolphinQt/GBAWidget.cpp:421
+#: Source/Core/DolphinQt/GBAWidget.cpp:422
msgid "&Export State..."
msgstr "&تصدير الحالة"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:116
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:117
msgid "&Export as .gci..."
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:196
+#: Source/Core/DolphinQt/MenuBar.cpp:188
msgid "&File"
msgstr "&ملف"
-#: Source/Core/DolphinQt/MenuBar.cpp:571
+#: Source/Core/DolphinQt/MenuBar.cpp:563
msgid "&Font..."
msgstr "&الخط"
-#: Source/Core/DolphinQt/MenuBar.cpp:323
+#: Source/Core/DolphinQt/MenuBar.cpp:315
msgid "&Frame Advance"
msgstr "&الإطار المسبق"
-#: Source/Core/DolphinQt/MenuBar.cpp:546
+#: Source/Core/DolphinQt/MenuBar.cpp:538
msgid "&Free Look Settings"
msgstr "&إعدادات المظهر الحر"
-#: Source/Core/DolphinQt/MenuBar.cpp:984
+#: Source/Core/DolphinQt/MenuBar.cpp:966
msgid "&Generate Symbols From"
msgstr "&إنشاء رموز من"
-#: Source/Core/DolphinQt/MenuBar.cpp:595
+#: Source/Core/DolphinQt/MenuBar.cpp:587
msgid "&GitHub Repository"
msgstr "&GitHub مستودع "
@@ -490,15 +498,15 @@ msgstr "&GitHub مستودع "
msgid "&Go to start of function"
msgstr "&انتقل إلى بدء الوظيفة"
-#: Source/Core/DolphinQt/MenuBar.cpp:541
+#: Source/Core/DolphinQt/MenuBar.cpp:533
msgid "&Graphics Settings"
msgstr "&إعدادات الرسومات"
-#: Source/Core/DolphinQt/MenuBar.cpp:586
+#: Source/Core/DolphinQt/MenuBar.cpp:578
msgid "&Help"
msgstr "&مساعدة"
-#: Source/Core/DolphinQt/MenuBar.cpp:545
+#: Source/Core/DolphinQt/MenuBar.cpp:537
msgid "&Hotkey Settings"
msgstr "&إعدادات مفاتيح الاختصار"
@@ -506,31 +514,31 @@ msgstr "&إعدادات مفاتيح الاختصار"
msgid "&Import"
msgstr "&استيراد"
-#: Source/Core/DolphinQt/GBAWidget.cpp:410
+#: Source/Core/DolphinQt/GBAWidget.cpp:411
msgid "&Import Save Game..."
msgstr "&استيراد حفظ اللعبة"
-#: Source/Core/DolphinQt/GBAWidget.cpp:418
+#: Source/Core/DolphinQt/GBAWidget.cpp:419
msgid "&Import State..."
msgstr "&استيراد الحالة"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:126
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:127
msgid "&Import..."
msgstr "&استيراد"
-#: Source/Core/DolphinQt/MenuBar.cpp:232
+#: Source/Core/DolphinQt/MenuBar.cpp:224
msgid "&Infinity Base"
-msgstr ""
+msgstr "&Infinity قاعدة"
-#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:595
+#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:596
msgid "&Insert blr"
msgstr "&blr إدراج"
-#: Source/Core/DolphinQt/GBAWidget.cpp:451
+#: Source/Core/DolphinQt/GBAWidget.cpp:452
msgid "&Interframe Blending"
msgstr "&مزج الإطارات"
-#: Source/Core/DolphinQt/MenuBar.cpp:499
+#: Source/Core/DolphinQt/MenuBar.cpp:491
msgid "&JIT"
msgstr "&JIT"
@@ -538,11 +546,11 @@ msgstr "&JIT"
msgid "&Language:"
msgstr "&اللغة"
-#: Source/Core/DolphinQt/MenuBar.cpp:340
+#: Source/Core/DolphinQt/MenuBar.cpp:332
msgid "&Load State"
msgstr "&تحميل الحالة"
-#: Source/Core/DolphinQt/MenuBar.cpp:990
+#: Source/Core/DolphinQt/MenuBar.cpp:972
msgid "&Load Symbol Map"
msgstr "&Load Symbol Map"
@@ -556,23 +564,23 @@ msgstr "&تحميل الملف إلى العنوان الحالي"
msgid "&Lock Watches"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:431
+#: Source/Core/DolphinQt/MenuBar.cpp:423
msgid "&Lock Widgets In Place"
msgstr "&تأمين المصغرات في القائمة"
-#: Source/Core/DolphinQt/MenuBar.cpp:483
+#: Source/Core/DolphinQt/MenuBar.cpp:475
msgid "&Memory"
msgstr "&الذاكرة"
-#: Source/Core/DolphinQt/MenuBar.cpp:745
+#: Source/Core/DolphinQt/MenuBar.cpp:737
msgid "&Movie"
msgstr "&فيلم"
-#: Source/Core/DolphinQt/GBAWidget.cpp:424
+#: Source/Core/DolphinQt/GBAWidget.cpp:425
msgid "&Mute"
msgstr "&صامت"
-#: Source/Core/DolphinQt/MenuBar.cpp:491
+#: Source/Core/DolphinQt/MenuBar.cpp:483
msgid "&Network"
msgstr "&شبكة الاتصال"
@@ -580,82 +588,82 @@ msgstr "&شبكة الاتصال"
msgid "&No"
msgstr "&لا"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:135
-#: Source/Core/DolphinQt/MenuBar.cpp:198 Source/Core/DolphinQt/MenuBar.cpp:200
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:136
+#: Source/Core/DolphinQt/MenuBar.cpp:190 Source/Core/DolphinQt/MenuBar.cpp:192
msgid "&Open..."
msgstr "&فتح"
-#: Source/Core/DolphinQt/MenuBar.cpp:532
+#: Source/Core/DolphinQt/MenuBar.cpp:524
msgid "&Options"
msgstr "&خيارات"
-#: Source/Core/DolphinQt/MenuBar.cpp:1010
+#: Source/Core/DolphinQt/MenuBar.cpp:992
msgid "&Patch HLE Functions"
msgstr "&HLE وظائف تصحيح"
-#: Source/Core/DolphinQt/MenuBar.cpp:319
+#: Source/Core/DolphinQt/MenuBar.cpp:311
msgid "&Pause"
msgstr "&إيقاف مؤقت"
-#: Source/Core/DolphinQt/MenuBar.cpp:318
+#: Source/Core/DolphinQt/MenuBar.cpp:310
msgid "&Play"
msgstr "&تشغيل"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:399
+#: Source/Core/DolphinQt/GameList/GameList.cpp:400
msgid "&Properties"
msgstr "&خصائص"
-#: Source/Core/DolphinQt/MenuBar.cpp:760
+#: Source/Core/DolphinQt/MenuBar.cpp:752
msgid "&Read-Only Mode"
msgstr "&وضع للقراءة فقط"
-#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:66
+#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:67
msgid "&Refresh List"
msgstr "&تحديث القائمة"
-#: Source/Core/DolphinQt/MenuBar.cpp:447
+#: Source/Core/DolphinQt/MenuBar.cpp:439
msgid "&Registers"
msgstr "&تسجل"
-#: Source/Core/DolphinQt/Config/PatchesWidget.cpp:45
+#: Source/Core/DolphinQt/Config/PatchesWidget.cpp:46
msgid "&Remove"
msgstr "&إزالة"
-#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:60
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:85
+#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:61
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:86
msgid "&Remove Code"
msgstr "&إزالة الرمز"
-#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:584
+#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:585
msgid "&Rename symbol"
msgstr "&إعادة تسمية الرمز"
-#: Source/Core/DolphinQt/GBAWidget.cpp:404
-#: Source/Core/DolphinQt/MenuBar.cpp:321
+#: Source/Core/DolphinQt/GBAWidget.cpp:405
+#: Source/Core/DolphinQt/MenuBar.cpp:313
msgid "&Reset"
msgstr "&إعادة"
-#: Source/Core/DolphinQt/MenuBar.cpp:223
+#: Source/Core/DolphinQt/MenuBar.cpp:215
msgid "&Resource Pack Manager"
msgstr "&أدارة حزمة الموارد"
-#: Source/Core/DolphinQt/MenuBar.cpp:991
+#: Source/Core/DolphinQt/MenuBar.cpp:973
msgid "&Save Symbol Map"
msgstr "&Save Symbol Map"
-#: Source/Core/DolphinQt/GBAWidget.cpp:400
+#: Source/Core/DolphinQt/GBAWidget.cpp:401
msgid "&Scan e-Reader Card(s)..."
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:231
+#: Source/Core/DolphinQt/MenuBar.cpp:223
msgid "&Skylanders Portal"
-msgstr ""
+msgstr "&Skylanders منفذ"
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:175
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:176
msgid "&Speed Limit:"
msgstr "&حد السرعة"
-#: Source/Core/DolphinQt/MenuBar.cpp:320
+#: Source/Core/DolphinQt/MenuBar.cpp:312
msgid "&Stop"
msgstr "&إيقاف "
@@ -663,15 +671,15 @@ msgstr "&إيقاف "
msgid "&Theme:"
msgstr "&المظهر"
-#: Source/Core/DolphinQt/MenuBar.cpp:456
+#: Source/Core/DolphinQt/MenuBar.cpp:448
msgid "&Threads"
msgstr "&المواضيع"
-#: Source/Core/DolphinQt/MenuBar.cpp:221
+#: Source/Core/DolphinQt/MenuBar.cpp:213
msgid "&Tools"
msgstr "&أدوات"
-#: Source/Core/DolphinQt/GBAWidget.cpp:396
+#: Source/Core/DolphinQt/GBAWidget.cpp:397
msgid "&Unload ROM"
msgstr "&إلغاء تحميل القرص"
@@ -681,21 +689,21 @@ msgstr "&إلغاء تحميل القرص"
msgid "&Unlock Watches"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:405
+#: Source/Core/DolphinQt/MenuBar.cpp:397
msgid "&View"
msgstr "&عرض"
#. i18n: This kind of "watch" is used for watching emulated memory.
#. It's not related to timekeeping devices.
-#: Source/Core/DolphinQt/MenuBar.cpp:466
+#: Source/Core/DolphinQt/MenuBar.cpp:458
msgid "&Watch"
msgstr "&مشاهدة"
-#: Source/Core/DolphinQt/MenuBar.cpp:588
+#: Source/Core/DolphinQt/MenuBar.cpp:580
msgid "&Website"
msgstr "&الموقع"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:402
+#: Source/Core/DolphinQt/GameList/GameList.cpp:403
msgid "&Wiki"
msgstr "&معلومات عن اللعبة"
@@ -703,23 +711,31 @@ msgstr "&معلومات عن اللعبة"
msgid "&Yes"
msgstr "&نعم"
-#: Source/Core/DolphinQt/MenuBar.cpp:1285
+#: Source/Core/DolphinQt/MenuBar.cpp:1271
msgid "'%1' not found, no symbol names generated"
msgstr "'%1' لم يتم العثور على أي أسماء رموز تم إنشاؤها"
-#: Source/Core/DolphinQt/MenuBar.cpp:1506
+#: Source/Core/DolphinQt/MenuBar.cpp:1493
msgid "'%1' not found, scanning for common functions instead"
msgstr "'%1' لم يتم العثور على المسح بحثًا عن الوظائف الشائعة بدلاً من ذلك"
+#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:141
+msgid "(Dark)"
+msgstr "(داكن)"
+
+#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:140
+msgid "(Light)"
+msgstr "(فاتح)"
+
#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:136
-msgid "(None)"
-msgstr "(لا شيء)"
+msgid "(System)"
+msgstr "(النظام)"
#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:142
msgid "(host)"
msgstr "(مضيف)"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:227
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:266
msgid "(off)"
msgstr "(ايقاف)"
@@ -727,63 +743,71 @@ msgstr "(ايقاف)"
msgid "(ppc)"
msgstr "(ppc)"
-#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:265
+#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:284
msgid "* Multiply"
msgstr "* ضرب"
-#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:268
+#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:287
msgid "+ Add"
msgstr "+ إضافة"
-#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:279
+#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:298
msgid ", Comma"
msgstr ", فاصلة"
-#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:269
+#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:288
msgid "- Subtract"
msgstr "- طرح"
-#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:373
+#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:374
msgid "--> %1"
msgstr "--> %1"
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:215
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:217
msgid "--Unknown--"
msgstr "--غير معروف--"
-#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:298
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:714
+#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:300
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:716
#: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:167
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:101
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:102
msgid "..."
msgstr "..."
-#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:266
+#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:285
msgid "/ Divide"
msgstr "/ تقسيم"
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:503
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:504
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:590
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:591
msgid "0"
msgstr "0"
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:79
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:80
msgid "1 GiB"
msgstr "1 GiB"
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:73
+msgid "1080p"
+msgstr "1080p"
+
#: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:31
msgid "128 Mbit (2043 blocks)"
msgstr "128 Mbit (2043 blocks)"
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:76
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:77
msgid "128 MiB"
msgstr "128 MiB"
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:73
+msgid "1440p"
+msgstr "1440p"
+
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:209
msgid "16 Bytes"
msgstr "16 Bytes"
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:83
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:84
msgid "16 GiB (SDHC)"
msgstr "16 GiB (SDHC)"
@@ -805,11 +829,11 @@ msgstr "16-bit عدد صحيح موقع"
msgid "16-bit Unsigned Integer"
msgstr "16-bit عدد صحيح غير موقع"
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:167
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:164
msgid "16:9"
msgstr "16:9"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:94
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:113
msgid "16x Anisotropic"
msgstr "16x Anisotropic"
@@ -817,11 +841,11 @@ msgstr "16x Anisotropic"
msgid "1x"
msgstr "1x"
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:80
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:81
msgid "2 GiB"
msgstr "2 GiB"
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:77
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:78
msgid "256 MiB"
msgstr "256 MiB"
@@ -829,15 +853,11 @@ msgstr "256 MiB"
msgid "2x"
msgstr "2x"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:91
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:110
msgid "2x Anisotropic"
msgstr "2x Anisotropic"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:66
-msgid "2x Native (1280x1056) for 720p"
-msgstr "2x Native (1280x1056) for 720p"
-
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:84
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:85
msgid "32 GiB (SDHC)"
msgstr "32 GiB (SDHC)"
@@ -867,7 +887,7 @@ msgstr "32-bit عدد صحيح غير موقع"
#. i18n: Stereoscopic 3D
#: Source/Core/Core/HotkeyManager.cpp:350
#: Source/Core/DolphinQt/Config/Mapping/Hotkey3D.cpp:22
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:456
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:458
msgid "3D"
msgstr "3D"
@@ -881,15 +901,11 @@ msgstr "3D عمق"
msgid "3x"
msgstr "3x"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:66
-msgid "3x Native (1920x1584) for 1080p"
-msgstr "3x Native (1920x1584) for 1080p"
-
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:207
msgid "4 Bytes"
msgstr "4 Bytes"
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:81
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:82
msgid "4 GiB (SDHC)"
msgstr "4 GiB (SDHC)"
@@ -897,35 +913,35 @@ msgstr "4 GiB (SDHC)"
msgid "4 Mbit (59 blocks)"
msgstr "4 Mbit (59 blocks)"
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:166
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:163
msgid "4:3"
msgstr "4:3"
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:74
+msgid "4K"
+msgstr "4K"
+
#: Source/Core/Core/HotkeyManager.cpp:196
msgid "4x"
msgstr "4x"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:92
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:111
msgid "4x Anisotropic"
msgstr "4x Anisotropic"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:67
-msgid "4x Native (2560x2112) for 1440p"
-msgstr "4x Native (2560x2112) for 1440p"
-
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:78
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:79
msgid "512 MiB"
msgstr "512 MiB"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:67
-msgid "5x Native (3200x2640)"
-msgstr "5x Native (3200x2640)"
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:74
+msgid "5K"
+msgstr "5K"
#: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:30
msgid "64 Mbit (1019 blocks)"
msgstr "64 Mbit (1019 blocks)"
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:75
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:76
msgid "64 MiB"
msgstr "64 MiB"
@@ -944,19 +960,15 @@ msgstr "64-bit عدد صحيح موقع"
msgid "64-bit Unsigned Integer"
msgstr "64-bit عدد صحيح غير موقع"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:68
-msgid "6x Native (3840x3168) for 4K"
-msgstr "6x Native (3840x3168) for 4K"
-
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:68
-msgid "7x Native (4480x3696)"
-msgstr "7x Native (4480x3696)"
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:73
+msgid "720p"
+msgstr "720p"
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:208
msgid "8 Bytes"
msgstr "8 Bytes"
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:82
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:83
msgid "8 GiB (SDHC)"
msgstr "8 GiB (SDHC)"
@@ -978,19 +990,19 @@ msgstr "8-bit عدد صحيح موقع"
msgid "8-bit Unsigned Integer"
msgstr "8-bit عدد صحيح غير موقع"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:93
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:75
+msgid "8K"
+msgstr "8K"
+
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:112
msgid "8x Anisotropic"
msgstr "8x Anisotropic"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:69
-msgid "8x Native (5120x4224) for 5K"
-msgstr "8x Native (5120x4224) for 5K"
-
-#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:271
+#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:290
msgid "< Less-than"
msgstr "< أقل-من"
-#: Source/Core/Core/HW/EXI/EXI_Device.h:132
+#: Source/Core/Core/HW/EXI/EXI_Device.h:131
msgid ""
msgstr "<لا شيء>"
@@ -1003,14 +1015,14 @@ msgid "If unsure, leave this unchecked."
msgstr ""
"إذا لم تكن متأكدا فاترك هذا دون تحديد"
-#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:700
-#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:293
+#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:701
+#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:294
msgid ""
"AutoStepping timed out. Current instruction is "
"irrelevant."
msgstr ""
-#: Source/Core/DolphinQt/Updater.cpp:63
+#: Source/Core/DolphinQt/Updater.cpp:64
msgid ""
"
A new version of Dolphin is available!
Dolphin %1 is available for "
"download. You are running %2. Would you like to update?
Release "
@@ -1019,12 +1031,12 @@ msgstr ""
"
يتوفر إصدار جديد من دولفين !
دولفين %1 متاح للتنزيل. تقوم بتشغيل %2."
" هل ترغب في التحديث؟
ملاحظات الإصدار:
"
-#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:270
+#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:289
msgid "> Greater-than"
msgstr "> أكثر-من"
-#: Source/Core/DolphinQt/MainWindow.cpp:1502
-#: Source/Core/DolphinQt/MainWindow.cpp:1569
+#: Source/Core/DolphinQt/MainWindow.cpp:1515
+#: Source/Core/DolphinQt/MainWindow.cpp:1582
msgid "A NetPlay Session is already in progress!"
msgstr "جلسة لعب الشبكة جارية بالفعل!"
@@ -1049,17 +1061,19 @@ msgstr ""
msgid "A disc is already about to be inserted."
msgstr "القرص بالفعل على وشك أن يتم إدراجه."
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:457
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:539
msgid ""
"A group of features to make the colors more accurate, matching the color "
"space Wii and GC games were meant for."
msgstr ""
+"مجموعة من الميزات لجعل الألوان أكثر دقة ، بما يتناسب مع مساحة الألوان "
+"المخصصة لألعاب وي و جيم كيوب."
-#: Source/Core/DolphinQt/Main.cpp:226
+#: Source/Core/DolphinQt/Main.cpp:228
msgid "A save state cannot be loaded without specifying a game to launch."
msgstr "لا يمكن تحميل حالة الحفظ دون تحديد لعبة لتشغيلها"
-#: Source/Core/DolphinQt/MainWindow.cpp:930
+#: Source/Core/DolphinQt/MainWindow.cpp:932
msgid ""
"A shutdown is already in progress. Unsaved data may be lost if you stop the "
"current emulation before it completes. Force stop?"
@@ -1067,18 +1081,20 @@ msgstr ""
"إيقاف التشغيل بالفعل قيد التقدم. قد يتم فقد البيانات غير المحفوظة في حالة "
"إيقاف المحاكاة الحالية قبل اكتمالها. توقف إجباري؟"
-#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:159
+#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:160
msgid ""
"A supported Bluetooth device could not be found.\n"
"You must manually connect your Wii Remote."
msgstr ""
+"تعذر العثور على جهاز بلوتوث مدعوم.\n"
+"يجب عليك توصيل جهاز ريموت وي يدويًا."
-#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:232
+#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:233
msgid "A sync can only be triggered when a Wii game is running."
msgstr "لا يمكن تشغيل المزامنة إلا عند تشغيل لعبة وي."
#. i18n: A mysterious debugging/diagnostics peripheral for the GameCube.
-#: Source/Core/Core/HW/EXI/EXI_Device.h:99
+#: Source/Core/Core/HW/EXI/EXI_Device.h:98
msgid "AD16"
msgstr "AD16"
@@ -1123,7 +1139,7 @@ msgstr "AR رموز"
msgid "ASCII"
msgstr "ASCII"
-#: Source/Core/DolphinQt/ConvertDialog.cpp:432
+#: Source/Core/DolphinQt/ConvertDialog.cpp:434
#: qtbase/src/gui/kernel/qplatformtheme.cpp:724
msgid "Abort"
msgstr "إلغاء"
@@ -1134,7 +1150,7 @@ msgstr "ترجمة بواسطة منصور العسيري"
#: Source/Core/Core/HW/WiimoteEmu/Extension/Nunchuk.cpp:62
#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:253
-#: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionInput.cpp:49
+#: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionInput.cpp:51
msgid "Accelerometer"
msgstr "التسارع"
@@ -1147,8 +1163,8 @@ msgstr "تأثير مقياس التسارع"
msgid "Accuracy:"
msgstr "ضبط"
-#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:21
-#: Source/Core/DolphinQt/MenuBar.cpp:245
+#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:22
+#: Source/Core/DolphinQt/MenuBar.cpp:237
msgid "Achievements"
msgstr "الإنجازات"
@@ -1224,13 +1240,13 @@ msgstr ""
msgid "Activate NetPlay Chat"
msgstr "تفعيل المحادثة في اللعب عبر الشبكة"
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:166
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167
msgid "Active"
msgstr "نشط"
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:74
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:75
msgid "Active Infinity Figures:"
-msgstr ""
+msgstr "النشطة Infinity شخصيات"
#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:161
msgid "Active thread queue"
@@ -1240,7 +1256,7 @@ msgstr "قائمة انتظار مؤشر الترابط النشط"
msgid "Active threads"
msgstr "المواضيع النشطة"
-#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:257
+#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:258
msgid "Adapter"
msgstr "محول"
@@ -1248,7 +1264,7 @@ msgstr "محول"
msgid "Adapter Detected"
msgstr "كشف عن محول"
-#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:74
+#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:75
msgid "Adapter:"
msgstr "محول"
@@ -1270,8 +1286,8 @@ msgstr "DSU إضافة خادم جديد"
msgid "Add New USB Device"
msgstr "إضافة جهاز يو إس بي جديد"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:483
-#: Source/Core/DolphinQt/GameList/GameList.cpp:486
+#: Source/Core/DolphinQt/GameList/GameList.cpp:490
+#: Source/Core/DolphinQt/GameList/GameList.cpp:493
msgid "Add Shortcut to Desktop"
msgstr "إضافة اختصار إلى سطح المكتب"
@@ -1283,7 +1299,7 @@ msgstr "إضافة نقطة توقف"
msgid "Add a Memory Breakpoint"
msgstr "أضف نقطة توقف الذاكرة"
-#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:136
+#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:137
msgid "Add memory &breakpoint"
msgstr "أضف الذاكرة ونقطة التوقف"
@@ -1293,7 +1309,7 @@ msgstr "إضافة نقطة توقف للذاكرة"
#. i18n: This kind of "watch" is used for watching emulated memory.
#. It's not related to timekeeping devices.
-#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:131
+#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:132
#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:125
msgid "Add to &watch"
msgstr "اضف إليه &تنبية"
@@ -1303,9 +1319,9 @@ msgstr "اضف إليه &تنبية"
msgid "Add to watch"
msgstr "إضافة للمشاهدة"
-#: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:36
+#: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:37
#: Source/Core/DolphinQt/Settings/PathPane.cpp:141
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:328
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:327
msgid "Add..."
msgstr "أضف"
@@ -1313,16 +1329,16 @@ msgstr "أضف"
#: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:123
#: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:288
#: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:300
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:166
-#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:82
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167
+#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:81
#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:144
#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:375
-#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:154
+#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:155
#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:82
#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:181
#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:233
#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:91
-#: Source/Core/DolphinQt/MenuBar.cpp:985
+#: Source/Core/DolphinQt/MenuBar.cpp:967
msgid "Address"
msgstr "عنوان"
@@ -1341,7 +1357,7 @@ msgstr "مساحة العنوان حسب حالة وحدة المعالجة ال
msgid "Address:"
msgstr "عنوان"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:451
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:502
msgid ""
"Adjust the texture filtering. Anisotropic filtering enhances the visual "
"quality of textures that are at oblique viewing angles. Force Nearest and "
@@ -1365,7 +1381,7 @@ msgid ""
"rightmost value."
msgstr ""
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:144
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:150
msgid ""
"Adjusts the amount of RAM in the emulated console.\n"
"\n"
@@ -1377,7 +1393,7 @@ msgstr ""
"تحذير: سيؤدي تمكين هذا إلى كسر العديد من الألعاب تمامًا. يمكن فقط لعدد قليل "
"من الألعاب الاستفادة من ذلك."
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:103
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:109
msgid ""
"Adjusts the emulated CPU's clock rate.\n"
"\n"
@@ -1399,124 +1415,148 @@ msgstr ""
"والتسبب في حدوث مشكلات. افعل ذلك على مسؤوليتك الخاصة. الرجاء عدم الإبلاغ عن "
"الأخطاء التي تحدث مع السرعة الغير الافتراضية"
-#: Source/Core/Core/HW/EXI/EXI_Device.h:105
+#: Source/Core/Core/HW/EXI/EXI_Device.h:104
msgid "Advance Game Port"
msgstr "منفذ جيم بوي ادفانس"
#: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:63
-#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:156
+#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:157
#: Source/Core/DolphinQt/Config/SettingsWindow.cpp:43
msgid "Advanced"
msgstr "خيارات متقدمة"
-#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:209
+#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:210
msgid "Advanced Settings"
msgstr "الإعدادات المتقدمة"
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:508
+msgid ""
+"Affects how the game output is scaled to the window resolution. The "
+"performance mostly depends on the number of samples each method uses."
+" Compared to SSAA, resampling is useful in case the output "
+"window resolution isn't a multiplier of the native emulation resolution."
+"
Default - [fastest] Internal GPU bilinear sampler which is "
+"not gamma corrected. This setting might be ignored if gamma correction is "
+"forced on.
Bilinear - [4 samples] Gamma corrected linear "
+"interpolation between pixels.
Bicubic - [16 samples] Gamma "
+"corrected cubic interpolation between pixels. Good when rescaling between "
+"close resolutions. i.e 1080p and 1440p. Comes in various flavors: B-"
+"Spline: Blurry, but avoids all lobing artifacts Mitchell-"
+"Netravali: Good middle ground between blurry and lobing Catmull-"
+"Rom: Sharper, but can cause lobing artifacts
Sharp Bilinear"
+"b> - [1-4 samples] Similarly to \"Nearest Neighbor\", it maintains a "
+"sharp look, but also does some blending to avoid shimmering. Works "
+"best with 2D games at low resolutions.
Area Sampling - [up to "
+"324 samples] Weights pixels by the percentage of area they occupy. Gamma "
+"corrected. Best for down scaling by more than 2x."
+"
If unsure, select 'Default'."
+msgstr ""
+
#: Source/Core/UICommon/NetPlayIndex.cpp:251
msgid "Africa"
msgstr "أفريقيا"
#. i18n: One of the elements in the Skylanders games. Japanese: 風. For official translations
#. in other languages, check the SuperChargers manual at https://support.activision.com/manuals
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:342
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:358
msgid "Air"
-msgstr ""
+msgstr "هواء"
#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:116
msgid "Aligned to data type length"
msgstr "محاذاة لطول نوع البيانات"
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:320
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:336
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:414
msgid "All"
msgstr "الكل"
#. i18n: A double precision floating point number
-#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:168
+#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:169
msgid "All Double"
msgstr "كل مزدوج"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:362
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:439
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:590
-#: Source/Core/DolphinQt/MainWindow.cpp:768
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:363
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:440
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:591
+#: Source/Core/DolphinQt/MainWindow.cpp:770
#: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:121
-#: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:328
+#: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:327
#: Source/Core/DolphinQt/Settings/PathPane.cpp:51
msgid "All Files"
msgstr "كل الملفات"
#: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:75
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:654
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:664
msgid "All Files (*)"
msgstr "(*) كل الملفات"
#. i18n: A floating point number
-#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:165
+#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:166
msgid "All Float"
msgstr "كل تعويم"
-#: Source/Core/DolphinQt/MainWindow.cpp:767
+#: Source/Core/DolphinQt/MainWindow.cpp:769
#: Source/Core/DolphinQt/Settings/PathPane.cpp:50
msgid "All GC/Wii files"
msgstr "GC/Wii جميع ملفات"
-#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:158
+#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:159
msgid "All Hexadecimal"
msgstr "كل سداسي عشري"
-#: Source/Core/DolphinQt/MainWindow.cpp:1369
-#: Source/Core/DolphinQt/MainWindow.cpp:1378
+#: Source/Core/DolphinQt/MainWindow.cpp:1382
+#: Source/Core/DolphinQt/MainWindow.cpp:1391
msgid "All Save States (*.sav *.s##);; All Files (*)"
msgstr "جميع حالات الحفظ (*.sav *.s##);; كل الملفات (*)"
-#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:160
+#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:161
msgid "All Signed Integer"
msgstr "جميع الأعداد الصحيحة الموقعة"
-#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:162
+#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:163
msgid "All Unsigned Integer"
msgstr "جميع الأعداد الصحيحة غير الموقعة"
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:695
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:694
msgid "All files (*)"
msgstr "(*) جميع الملفات"
-#: Source/Core/Core/NetPlayServer.cpp:1205
+#: Source/Core/Core/NetPlayServer.cpp:1209
msgid "All players' codes synchronized."
msgstr "جميع رموز اللاعبين متزامنة."
-#: Source/Core/Core/NetPlayServer.cpp:1147
+#: Source/Core/Core/NetPlayServer.cpp:1151
msgid "All players' saves synchronized."
msgstr "حفظ جميع اللاعبين متزامنة."
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:145
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:146
msgid "Allow Mismatched Region Settings"
msgstr "السماح بإعدادات المنطقة الغير متطابقة"
-#: Source/Core/DolphinQt/Main.cpp:257
+#: Source/Core/DolphinQt/Main.cpp:262
msgid "Allow Usage Statistics Reporting"
msgstr "السماح بالإبلاغ عن إحصائيات الاستخدام"
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:221
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218
msgid "Allow Writes to SD Card"
-msgstr "SD السماح للكتابة على بطاقة"
+msgstr "SD Card السماح للكتابة على"
-#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:36
+#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:37
msgid ""
"Allows manipulation of the in-game camera.
If "
"unsure, leave this unchecked."
msgstr ""
-#: Source/Core/DolphinQt/Config/CommonControllersWidget.cpp:36
+#: Source/Core/DolphinQt/Config/CommonControllersWidget.cpp:37
#: Source/Core/DolphinQt/Config/ControllerInterface/ControllerInterfaceWindow.cpp:19
-#: Source/Core/DolphinQt/Config/Mapping/FreeLookRotation.cpp:29
-#: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionInput.cpp:38
-#: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuMotionControlIMU.cpp:36
+#: Source/Core/DolphinQt/Config/Mapping/FreeLookRotation.cpp:30
+#: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionInput.cpp:39
+#: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuMotionControlIMU.cpp:37
msgid "Alternate Input Sources"
msgstr "مصادر الإدخال البديلة"
-#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:185
+#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:189
msgid "Always"
msgstr "دائما"
@@ -1526,7 +1566,7 @@ msgstr "دائما"
msgid "Always Connected"
msgstr "متصل دائما"
-#: Source/Core/DolphinQt/GBAWidget.cpp:446
+#: Source/Core/DolphinQt/GBAWidget.cpp:447
msgid "Always on &Top"
msgstr "دائما على الأعلى"
@@ -1534,7 +1574,7 @@ msgstr "دائما على الأعلى"
msgid "An inserted disc was expected but not found."
msgstr "كان من المتوقع وجود قرص مدرج ولكن لم يتم العثور عليه."
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:167
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:206
msgid "Anaglyph"
msgstr "Anaglyph"
@@ -1552,31 +1592,31 @@ msgstr "الزاوية"
msgid "Angular velocity to ignore and remap."
msgstr "السرعة الزاوية للتجاهل وإعادة التخطيط"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:532
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:614
msgid "Anti-Aliasing"
msgstr "التنعيم"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:129
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:164
msgid "Anti-Aliasing:"
msgstr "التنعيم"
-#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:75
+#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:76
msgid "Any Region"
msgstr "أي منطقة"
-#: Source/Core/DolphinQt/MenuBar.cpp:1655
+#: Source/Core/DolphinQt/MenuBar.cpp:1642
msgid "Append signature to"
msgstr "إلحاق التوقيع ل"
-#: Source/Core/DolphinQt/MenuBar.cpp:1003
+#: Source/Core/DolphinQt/MenuBar.cpp:985
msgid "Append to &Existing Signature File..."
msgstr "إلحاق ب & ملف التوقيع الموجود"
-#: Source/Core/DolphinQt/MenuBar.cpp:1007
+#: Source/Core/DolphinQt/MenuBar.cpp:989
msgid "Appl&y Signature File..."
msgstr "تطبيق ملف التوقيع"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:460
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:542
msgid ""
"Applies a post-processing effect after rendering a frame.
If unsure, select (off)."
@@ -1590,11 +1630,11 @@ msgstr "تاريخ الإصدار"
msgid "Apply"
msgstr "تطبيق"
-#: Source/Core/DolphinQt/MenuBar.cpp:1678
+#: Source/Core/DolphinQt/MenuBar.cpp:1665
msgid "Apply signature file"
msgstr "تطبيق ملف التوقيع"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:120
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:155
msgid "Arbitrary Mipmap Detection"
msgstr "Arbitrary Mipmap Detection"
@@ -1602,15 +1642,15 @@ msgstr "Arbitrary Mipmap Detection"
msgid "Are you sure that you want to delete '%1'?"
msgstr "هل أنت متأكد من أنك تريد حذفها '%1'?"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:817
+#: Source/Core/DolphinQt/GameList/GameList.cpp:829
msgid "Are you sure you want to delete this file?"
msgstr "هل أنت متأكد من أنك تريد حذف هذا الملف؟"
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:240
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:241
msgid "Are you sure you want to delete this pack?"
msgstr "هل أنت متأكد من أنك تريد حذف هذه الحزمة؟"
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:497
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:499
msgid "Are you sure you want to quit NetPlay?"
msgstr "هل أنت متأكد من أنك تريد إنهاء اللعب عبر الشبكة؟"
@@ -1618,24 +1658,28 @@ msgstr "هل أنت متأكد من أنك تريد إنهاء اللعب عبر
msgid "Are you sure?"
msgstr "هل أنت واثق؟"
-#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:259
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:138
+msgid "Area Sampling"
+msgstr "Area Sampling"
+
+#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:260
msgid "Aspect Ratio"
msgstr "تناسب الأبعاد"
-#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:77
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:164
+#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:78
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161
msgid "Aspect Ratio:"
msgstr "تناسب الأبعاد"
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:293
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:295
msgid "Assign Controller Ports"
-msgstr "تعيين منافذ وحدة التحكم"
+msgstr "تعيين منافذ ذراع التحكم"
#: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:21
msgid "Assign Controllers"
-msgstr "تعيين وحدات تحكم"
+msgstr "تعيين ذراع التحكم"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:535
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:536
msgid ""
"At least two of the selected save files have the same internal filename."
msgstr "اثنان على الأقل من ملفات الحفظ المحددة لهما نفس اسم الملف الداخلي"
@@ -1660,16 +1704,16 @@ msgstr "إعدادات امتداد الصوت"
msgid "Australia"
msgstr "أستراليا"
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:91
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:92
msgid "Author"
msgstr "الكاتب"
#: Source/Core/DolphinQt/AboutDialog.cpp:68
msgid "Authors"
-msgstr "الكتاب"
+msgstr "المؤلفون"
-#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:57
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:74
+#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:58
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:75
msgid "Auto"
msgstr "تلقائي"
@@ -1677,11 +1721,11 @@ msgstr "تلقائي"
msgid "Auto (Multiple of 640x528)"
msgstr "تلقائي (Multiple of 640x528)"
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:180
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:181
msgid "Auto Update Settings"
msgstr "إعدادات التحديث التلقائي"
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:478
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:480
msgid ""
"Auto internal resolution is not allowed in strict sync mode, as it depends "
"on window size.\n"
@@ -1693,23 +1737,23 @@ msgstr ""
"\n"
"يرجى تحديد دقة داخلية محددة."
-#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:89
+#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:90
msgid "Auto-Adjust Window Size"
-msgstr "ضبط حجم الإطار تلقائيا"
+msgstr "ضبط تلقائي لحجم النافذة"
#: Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.cpp:63
msgid "Auto-Hide"
msgstr "إخفاء تلقائي"
-#: Source/Core/DolphinQt/MenuBar.cpp:1295
+#: Source/Core/DolphinQt/MenuBar.cpp:1281
msgid "Auto-detect RSO modules?"
msgstr "RSO الكشف التلقائي عن وحدات"
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:241
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:238
msgid "Automatically Sync with Folder"
msgstr "تزامن تلقائيا مع المجلد"
-#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:203
+#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:204
msgid ""
"Automatically adjusts the window size to the internal resolution."
"
If unsure, leave this unchecked."
msgstr ""
-#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:107
+#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:108
msgid "Calculate"
msgstr "حساب"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:468
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:550
msgid ""
"Calculates lighting of 3D objects per-pixel rather than per-vertex, "
"smoothing out the appearance of lit polygons and making individual triangles "
@@ -2112,19 +2172,19 @@ msgstr "فترة المعايرة"
msgid "Call display list at %1 with size %2"
msgstr ""
-#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:143
+#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:144
msgid "Callers"
-msgstr ""
+msgstr "المتصلين"
-#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:139
+#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:140
msgid "Calls"
-msgstr ""
+msgstr "المكالمات"
-#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:131
+#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:132
msgid "Callstack"
msgstr "Callstack"
-#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:68
+#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:69
msgid "Camera 1"
msgstr "كاميرا 1"
@@ -2138,22 +2198,30 @@ msgstr ""
msgid "Can only generate AR code for values in virtual memory."
msgstr ""
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:99
+msgid "Can't be modified yet!"
+msgstr "لا يمكن تعديلها بعد"
+
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:291
+msgid "Can't edit villains for this trophy!"
+msgstr ""
+
#: Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp:1828
msgid "Can't find Wii Remote by connection handle {0:02x}"
msgstr "{0:02x} لا يمكن العثور على ريموت وي من خلال مقبض الاتصال"
-#: Source/Core/DolphinQt/MainWindow.cpp:1495
-#: Source/Core/DolphinQt/MainWindow.cpp:1562
+#: Source/Core/DolphinQt/MainWindow.cpp:1508
+#: Source/Core/DolphinQt/MainWindow.cpp:1575
msgid "Can't start a NetPlay Session while a game is still running!"
msgstr "لا يمكن بدء جلسة اللعب عبر الشبكة بينما لا تزال اللعبة قيد التشغيل! "
#: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:57
-#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:157
-#: Source/Core/DolphinQt/MenuBar.cpp:1327
-#: Source/Core/DolphinQt/NKitWarningDialog.cpp:59
+#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:158
+#: Source/Core/DolphinQt/MenuBar.cpp:1313
+#: Source/Core/DolphinQt/NKitWarningDialog.cpp:62
#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:50
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:282
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:279
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:304
#: qtbase/src/gui/kernel/qplatformtheme.cpp:732
msgid "Cancel"
msgstr "إلغاء"
@@ -2188,11 +2256,11 @@ msgstr ""
msgid "Cannot refresh without results."
msgstr "لا يمكن التحديث بدون نتائج"
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:525
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:535
msgid "Cannot set GCI folder to an empty path."
msgstr ""
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:423
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:433
msgid "Cannot set memory card to an empty path."
msgstr "لا يمكن ضبط بطاقة الذاكرة على مسار فارغ"
@@ -2200,6 +2268,10 @@ msgstr "لا يمكن ضبط بطاقة الذاكرة على مسار فارغ"
msgid "Cannot start the game, because the GC IPL could not be found."
msgstr "Cannot start the game, because the GC IPL could not be found."
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:312
+msgid "Captured villain %1:"
+msgstr ""
+
#: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:41
msgid "Card Size"
msgstr "حجم البطاقة"
@@ -2218,11 +2290,11 @@ msgstr "ماوس مركزي"
msgid "Center and Calibrate"
msgstr "المركز و المعايرة"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:419
+#: Source/Core/DolphinQt/GameList/GameList.cpp:420
msgid "Change &Disc"
msgstr "تغيير &القرص"
-#: Source/Core/DolphinQt/MenuBar.cpp:205
+#: Source/Core/DolphinQt/MenuBar.cpp:197
msgid "Change &Disc..."
msgstr "تغيير &القرص"
@@ -2230,7 +2302,7 @@ msgstr "تغيير &القرص"
msgid "Change Disc"
msgstr "تغيير القرص"
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:148
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:149
msgid "Change Discs Automatically"
msgstr "تغيير الأقراص تلقائيا"
@@ -2247,7 +2319,7 @@ msgstr ""
"المحاكاة
إذا لم تكن متأكدا ، فاترك هذا الاختيار"
"dolphin_emphasis>"
-#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:44
+#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:45
msgid ""
"Changes the in-game camera type during Free Look.
Six Axis: Offers "
"full camera control on all axes, akin to moving a spacecraft in zero "
@@ -2263,15 +2335,15 @@ msgstr ""
msgid "Changing cheats will only take effect when the game is restarted."
msgstr "سيحدث تغيير الاسرار فقط عند إعادة تشغيل اللعبة."
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:150
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:151
msgid "Channel Partition (%1)"
msgstr "(%1) قسم القناة"
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:260
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:262
msgid "Character entered is invalid!"
msgstr "الحرف الذي تم إدخاله غير صالح"
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:264
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:266
msgid "Chat"
msgstr "محادثه"
@@ -2287,19 +2359,19 @@ msgstr "بحث عن اسرار"
msgid "Cheats Manager"
msgstr "مدير الأسرار"
-#: Source/Core/DolphinQt/MenuBar.cpp:270
+#: Source/Core/DolphinQt/MenuBar.cpp:262
msgid "Check NAND..."
msgstr "NAND تحقق من"
#: Source/Core/DolphinQt/Settings/PathPane.cpp:149
msgid "Check for Game List Changes in the Background"
-msgstr "التحقق من وجود تغييرات قائمة الألعاب في الخلفية"
+msgstr "تحقق من تغييرات قائمة الألعاب في الخلفية"
#: Source/Core/DolphinQt/AboutDialog.cpp:58
msgid "Check for updates"
msgstr "تحقق من وجود تحديثات"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:842
+#: Source/Core/DolphinQt/GameList/GameList.cpp:855
msgid ""
"Check whether you have the permissions required to delete the file or "
"whether it's still in use."
@@ -2307,7 +2379,7 @@ msgstr ""
"تحقق مما إذا كان لديك الأذونات المطلوبة لحذف الملف أو ما إذا كان لا يزال قيد "
"الاستخدام."
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:209
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:210
msgid "Checksum"
msgstr "اختباري"
@@ -2315,31 +2387,31 @@ msgstr "اختباري"
msgid "China"
msgstr "الصين"
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:220
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:231
msgid "Choose"
msgstr "اختر"
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:620
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:630
msgid "Choose a file to open"
msgstr "اختيار ملف لفتح"
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:411
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:421
msgid "Choose a file to open or create"
msgstr "اختر ملفًا لفتحه أو إنشائه"
-#: Source/Core/DolphinQt/MenuBar.cpp:1700
+#: Source/Core/DolphinQt/MenuBar.cpp:1687
msgid "Choose priority input file"
msgstr "اختيار ملف الإدخال ذي الأولوية"
-#: Source/Core/DolphinQt/MenuBar.cpp:1705
+#: Source/Core/DolphinQt/MenuBar.cpp:1692
msgid "Choose secondary input file"
msgstr "اختر ملف الإدخال الثانوي"
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:514
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:524
msgid "Choose the GCI base folder"
msgstr "GCI اختر المجلد الأساسي"
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:216
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:217
msgid "Choose the folder to extract to"
msgstr "اختيار مجلد لاستخراج"
@@ -2348,7 +2420,7 @@ msgstr "اختيار مجلد لاستخراج"
msgid "Clamping of rotation about the yaw axis."
msgstr ""
-#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:333
+#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:334
msgid "Classic Buttons"
msgstr "أزرار كلاسيكية"
@@ -2358,27 +2430,27 @@ msgid "Classic Controller"
msgstr "Classic Controller"
#: Source/Core/DolphinQt/Config/LogWidget.cpp:136
-#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:246
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:153
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:112
+#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:265
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:154
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:113
#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:103
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:106
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:107
msgid "Clear"
msgstr "مسح"
-#: Source/Core/DolphinQt/MenuBar.cpp:861
+#: Source/Core/DolphinQt/MenuBar.cpp:857
msgid "Clear Cache"
msgstr "مسح ذاكرة التخزين المؤقت"
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:119
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:127
msgid "Clear Slot"
-msgstr ""
+msgstr "مسح الفتحه "
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:83
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:89
msgid "Clock Override"
msgstr "تجاوز السرعة"
-#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:179
+#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:180
msgid "Clone and &Edit Code..."
msgstr "استنساخ و &تحرير الرمز"
@@ -2387,11 +2459,11 @@ msgstr "استنساخ و &تحرير الرمز"
msgid "Close"
msgstr "إغلاق"
-#: Source/Core/DolphinQt/MenuBar.cpp:534 Source/Core/DolphinQt/MenuBar.cpp:537
+#: Source/Core/DolphinQt/MenuBar.cpp:526 Source/Core/DolphinQt/MenuBar.cpp:529
msgid "Co&nfiguration"
msgstr "الإعدادات العامة"
-#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:39
+#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:40
msgid "Code"
msgstr "رمز"
@@ -2418,15 +2490,19 @@ msgstr "تم تنفيذ التعليمات البرمجية"
msgid "Code:"
msgstr "رمز"
-#: Source/Core/Core/NetPlayClient.cpp:1860
+#: Source/Core/Core/NetPlayClient.cpp:1864
msgid "Codes received!"
msgstr "الرموز الواردة!"
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:623
+msgid "Color Correction"
+msgstr "تصحيح الألوان"
+
#: Source/Core/DolphinQt/Config/Graphics/ColorCorrectionConfigWindow.cpp:24
msgid "Color Correction Configuration"
msgstr "إعدادات تصحيح الألوان"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:137
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:176
msgid "Color Correction:"
msgstr "تصحيح الألوان"
@@ -2434,12 +2510,12 @@ msgstr "تصحيح الألوان"
msgid "Color Space"
msgstr "مساحة اللون"
-#: Source/Core/DolphinQt/MenuBar.cpp:1005
+#: Source/Core/DolphinQt/MenuBar.cpp:987
msgid "Combine &Two Signature Files..."
msgstr "دمج اثنين من ملفات التوقيع"
#. i18n: This is "common" as in "shared", not the opposite of "uncommon"
-#: Source/Core/DolphinQt/Config/CommonControllersWidget.cpp:32
+#: Source/Core/DolphinQt/Config/CommonControllersWidget.cpp:33
msgid "Common"
msgstr "عام"
@@ -2453,6 +2529,9 @@ msgid ""
"found. Despite this, it's possible that this is a good dump compared to the "
"Wii U eShop release of the game. Dolphin can't verify this."
msgstr ""
+"بالمقارنة مع إصدار قرص وي للعبة، تم العثور على مشاكل منخفضة الخطورة. على "
+"الرغم من ذلك، من الممكن أن يكون هذا تفريغًا جيدًا مقارنة بإصدار اللعبة من متجر "
+"وي يو. لا تستطيع دولفين التحقق من ذلك."
#: Source/Core/DiscIO/VolumeVerifier.cpp:1394
msgid ""
@@ -2464,7 +2543,7 @@ msgstr ""
"من الممكن أن يكون هذا تفريغًا جيدًا مقارنة بإصدار متجر وي يو للعبة. لا تستطيع "
"دولفين التحقق من ذلك."
-#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:118
+#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:119
msgid "Compile Shaders Before Starting"
msgstr "تجميع التظليل قبل البدء"
@@ -2472,18 +2551,18 @@ msgstr "تجميع التظليل قبل البدء"
msgid "Compiling Shaders"
msgstr "تجميع التظليل"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:993
+#: Source/Core/DolphinQt/GameList/GameList.cpp:1007
#: Source/Core/DolphinQt/GameList/GameListModel.cpp:233
-#: Source/Core/DolphinQt/MenuBar.cpp:654
+#: Source/Core/DolphinQt/MenuBar.cpp:646
msgid "Compression"
msgstr "نوع الضغط"
-#: Source/Core/DolphinQt/ConvertDialog.cpp:71
+#: Source/Core/DolphinQt/ConvertDialog.cpp:72
msgid "Compression Level:"
msgstr "مستوى الضغط"
#: Source/Core/DolphinQt/Config/InfoWidget.cpp:70
-#: Source/Core/DolphinQt/ConvertDialog.cpp:67
+#: Source/Core/DolphinQt/ConvertDialog.cpp:68
msgid "Compression:"
msgstr "نوع الضغط"
@@ -2493,7 +2572,7 @@ msgstr "نوع الضغط"
#. for triggering the breakpoint.
#: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:159
#: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:278
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:166
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167
msgid "Condition"
msgstr "شرط"
@@ -2567,38 +2646,38 @@ msgstr ""
msgid "Config"
msgstr "إعدادات"
-#: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:85
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:106
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:109
-#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:139
+#: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:86
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:141
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:144
+#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:140
msgid "Configure"
msgstr "إعدادات"
-#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:38
+#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:39
msgid "Configure Controller"
-msgstr "إعدادات وحدة تحكم"
+msgstr "إعدادات ذراع التحكم"
#: Source/Core/DolphinQt/Config/CheatWarningWidget.cpp:43
#: Source/Core/DolphinQt/Config/GraphicsModWarningWidget.cpp:35
msgid "Configure Dolphin"
msgstr "إعدادات دولفين"
-#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:223
+#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:242
msgid "Configure Input"
-msgstr "تكوين الإدخال"
+msgstr "إعداد الإدخال"
-#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:223
+#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:242
msgid "Configure Output"
-msgstr "تكوين الإخراج"
+msgstr "إعداد الإخراج"
#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:265
#: Source/Core/DolphinQt/ConvertDialog.cpp:283
-#: Source/Core/DolphinQt/ConvertDialog.cpp:406
-#: Source/Core/DolphinQt/GameList/GameList.cpp:632
-#: Source/Core/DolphinQt/GameList/GameList.cpp:816
-#: Source/Core/DolphinQt/MainWindow.cpp:929
-#: Source/Core/DolphinQt/MainWindow.cpp:1691
-#: Source/Core/DolphinQt/WiiUpdate.cpp:140
+#: Source/Core/DolphinQt/ConvertDialog.cpp:407
+#: Source/Core/DolphinQt/GameList/GameList.cpp:642
+#: Source/Core/DolphinQt/GameList/GameList.cpp:828
+#: Source/Core/DolphinQt/MainWindow.cpp:931
+#: Source/Core/DolphinQt/MainWindow.cpp:1711
+#: Source/Core/DolphinQt/WiiUpdate.cpp:142
msgid "Confirm"
msgstr "تأكيد "
@@ -2606,13 +2685,13 @@ msgstr "تأكيد "
msgid "Confirm backend change"
msgstr "تأكيد تغيير الخلفية"
-#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:169
+#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:173
msgid "Confirm on Stop"
msgstr "تأكيد على التوقف"
-#: Source/Core/DolphinQt/MenuBar.cpp:1240
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:496
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:239
+#: Source/Core/DolphinQt/MenuBar.cpp:1226
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:498
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:240
msgid "Confirmation"
msgstr "التأكيد"
@@ -2621,15 +2700,15 @@ msgstr "التأكيد"
msgid "Connect"
msgstr "اتصال"
-#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:311
+#: Source/Core/Core/HotkeyManager.cpp:85 Source/Core/DolphinQt/MenuBar.cpp:303
msgid "Connect Balance Board"
msgstr "ربط لوح الميزان"
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:162
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159
msgid "Connect USB Keyboard"
msgstr "ربط لوحة مفاتيح يو إس بي"
-#: Source/Core/DolphinQt/MenuBar.cpp:303
+#: Source/Core/DolphinQt/MenuBar.cpp:295
msgid "Connect Wii Remote %1"
msgstr "%1 ربط ريموت وي"
@@ -2649,15 +2728,15 @@ msgstr "ربط ريموت وي 3"
msgid "Connect Wii Remote 4"
msgstr "ربط ريموت وي 4"
-#: Source/Core/DolphinQt/MenuBar.cpp:296
+#: Source/Core/DolphinQt/MenuBar.cpp:288
msgid "Connect Wii Remotes"
msgstr "ربط ريموت وي "
-#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:114
+#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:115
msgid "Connect Wii Remotes for Emulated Controllers"
msgstr "ربط ريموت وي لمحاكاة التحكم"
-#: Source/Core/DolphinQt/WiiUpdate.cpp:141
+#: Source/Core/DolphinQt/WiiUpdate.cpp:143
msgid "Connect to the Internet and perform an online system update?"
msgstr "الاتصال بالإنترنت وإجراء تحديث للنظام عبر الإنترنت؟"
@@ -2665,7 +2744,7 @@ msgstr "الاتصال بالإنترنت وإجراء تحديث للنظام
msgid "Connected"
msgstr "متصل"
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:712
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:714
msgid "Connecting"
msgstr "الاتصال"
@@ -2677,7 +2756,7 @@ msgstr "نوع الاتصال"
msgid "Content {0:08x} is corrupt."
msgstr "{0:08x} المحتوى تالف"
-#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:111
+#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:112
msgid "Continuous Scanning"
msgstr "البحث المستمر"
@@ -2690,33 +2769,33 @@ msgstr "Control NetPlay Golf Mode"
msgid "Control Stick"
msgstr "عصا التحكم"
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:452
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:454
msgid "Controller Profile"
-msgstr "ملف تعريف وحدة التحكم"
+msgstr "ملف تعريف ذراع التحكم"
#: Source/Core/Core/HotkeyManager.cpp:342
msgid "Controller Profile 1"
-msgstr "ملف تعريف وحدة التحكم 1"
+msgstr "ملف تعريف ذراع التحكم 1"
#: Source/Core/Core/HotkeyManager.cpp:343
msgid "Controller Profile 2"
-msgstr "ملف تعريف وحدة التحكم 2"
+msgstr "ملف تعريف ذراع التحكم 2"
#: Source/Core/Core/HotkeyManager.cpp:344
msgid "Controller Profile 3"
-msgstr "ملف تعريف وحدة التحكم 3"
+msgstr "ملف تعريف ذراع التحكم 3"
#: Source/Core/Core/HotkeyManager.cpp:345
msgid "Controller Profile 4"
-msgstr "ملف تعريف وحدة التحكم 4"
+msgstr "ملف تعريف ذراع التحكم 4"
#: Source/Core/DolphinQt/Config/ControllersWindow.cpp:16
msgid "Controller Settings"
-msgstr "إعدادات وحدة التحكم"
+msgstr "إعدادات ذراع التحكم"
#: Source/Core/DolphinQt/ToolBar.cpp:131
msgid "Controllers"
-msgstr "وحدات التحكم"
+msgstr "ذراع التحكم"
#: Source/Core/DolphinQt/Config/Graphics/ColorCorrectionConfigWindow.cpp:51
msgid ""
@@ -2726,7 +2805,7 @@ msgid ""
"
If unsure, leave this at 200."
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:496
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:578
msgid ""
"Controls the distance of the convergence plane. This is the distance at "
"which virtual objects will appear to be in front of the screen.
A "
@@ -2737,7 +2816,7 @@ msgstr ""
"الافتراضية أمام الشاشة.
تؤدي القيمة الأعلى إلى إنشاء تأثيرات أقوى "
"خارج الشاشة بينما تكون القيمة الأقل أكثر راحة."
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:438
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:489
msgid ""
"Controls the rendering resolution.
A high resolution greatly improves "
"visual quality, but also greatly increases GPU load and can cause issues in "
@@ -2746,7 +2825,7 @@ msgid ""
"Native."
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:493
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:575
msgid ""
"Controls the separation distance between the virtual cameras.
A "
"higher value creates a stronger feeling of depth while a lower value is more "
@@ -2779,49 +2858,49 @@ msgstr ""
"Controls whether to use high or low-level DSP emulation. Defaults to "
"True"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:565
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:651
msgid "Convergence"
msgstr "التقارب"
#: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:145
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:179
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:218
msgid "Convergence:"
msgstr "التقارب"
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:317
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:291
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:316
msgid "Conversion failed."
msgstr "فشل تحويل."
-#: Source/Core/DolphinQt/ConvertDialog.cpp:43
+#: Source/Core/DolphinQt/ConvertDialog.cpp:44
msgid "Convert"
msgstr "تحويل"
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:271
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:298
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:317
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:268
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:296
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:316
msgid "Convert File to Folder Now"
msgstr "تحويل ملف إلى مجلد الآن"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:417
+#: Source/Core/DolphinQt/GameList/GameList.cpp:418
msgid "Convert File..."
msgstr "تحويل الملف"
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:270
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:274
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:293
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:267
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:271
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:291
msgid "Convert Folder to File Now"
msgstr "تحويل المجلد إلى ملف الآن"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:381
+#: Source/Core/DolphinQt/GameList/GameList.cpp:382
msgid "Convert Selected Files..."
msgstr "تحويل الملفات المحددة..."
-#: Source/Core/DolphinQt/ConvertDialog.cpp:78
+#: Source/Core/DolphinQt/ConvertDialog.cpp:79
msgid "Convert..."
msgstr "تحويل"
-#: Source/Core/DolphinQt/ConvertDialog.cpp:315
+#: Source/Core/DolphinQt/ConvertDialog.cpp:316
msgid ""
"Converting Wii disc images to GCZ without removing junk data does not save "
"any noticeable amount of space compared to converting to ISO. Do you want to "
@@ -2832,13 +2911,13 @@ msgstr ""
"بالتحويل إلى ISO\n"
"هل تريد المتابعة على أي حال؟"
-#: Source/Core/DolphinQt/ConvertDialog.cpp:432
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:282
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306
+#: Source/Core/DolphinQt/ConvertDialog.cpp:434
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:279
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:304
msgid "Converting..."
msgstr "جارٍ التحويل ..."
-#: Source/Core/DolphinQt/ConvertDialog.cpp:440
+#: Source/Core/DolphinQt/ConvertDialog.cpp:442
msgid ""
"Converting...\n"
"%1"
@@ -2865,18 +2944,18 @@ msgid ""
"
If unsure, leave this unchecked."
msgstr ""
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:290
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:704
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:733
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:761
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:292
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:706
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:735
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:763
msgid "Copy"
msgstr "نسخ"
-#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:571
+#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:572
msgid "Copy &function"
msgstr "نسخ &الوظيفة"
-#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:574
+#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:575
msgid "Copy &hex"
msgstr "Copy &hex"
@@ -2884,7 +2963,7 @@ msgstr "Copy &hex"
msgid "Copy Address"
msgstr "نسخ العنوان"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:640
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:641
msgid "Copy Failed"
msgstr "فشل النسخ"
@@ -2896,19 +2975,19 @@ msgstr "Copy Hex"
msgid "Copy Value"
msgstr "قيمة النسخ"
-#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:573
+#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:574
msgid "Copy code &line"
msgstr "Copy code &line"
-#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:580
+#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:581
msgid "Copy tar&get address"
msgstr "نسخ العنوان المستهدف"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:243
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:244
msgid "Copy to A"
msgstr "A نسخ إلى"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:243
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:244
msgid "Copy to B"
msgstr "B نسخ إلى"
@@ -2944,7 +3023,7 @@ msgstr "تعذر إنشاء عميل."
msgid "Could not create peer."
msgstr "تعذر إنشاء نظير."
-#: Source/Core/DolphinQt/WiiUpdate.cpp:48
+#: Source/Core/DolphinQt/WiiUpdate.cpp:49
msgid ""
"Could not download update files from Nintendo. Please check your Internet "
"connection and try again."
@@ -2952,7 +3031,7 @@ msgstr ""
"تعذر تنزيل ملفات التحديث من نينتندو. يرجى التحقق من اتصالك بالإنترنت "
"والمحاولة مرة أخرى."
-#: Source/Core/DolphinQt/WiiUpdate.cpp:43
+#: Source/Core/DolphinQt/WiiUpdate.cpp:44
msgid ""
"Could not download update information from Nintendo. Please check your "
"Internet connection and try again."
@@ -2984,7 +3063,7 @@ msgstr ""
"\n"
"ستتوقف وحدة التحكم التي تمت مضاهاتها الآن."
-#: Source/Core/DolphinQt/WiiUpdate.cpp:53
+#: Source/Core/DolphinQt/WiiUpdate.cpp:54
msgid ""
"Could not install an update to the Wii system memory. Please refer to logs "
"for more information."
@@ -3015,6 +3094,10 @@ msgstr ""
msgid "Could not recognize file {0}"
msgstr "{0} تعذر التعرف على الملف"
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:273
+msgid "Could not save your changes!"
+msgstr "لا يمكن حفظ التغييرات الخاصة بك"
+
#: Source/Core/UICommon/AutoUpdate.cpp:303
#: Source/Core/UICommon/AutoUpdate.cpp:309
msgid "Could not start updater process: {0}"
@@ -3032,15 +3115,15 @@ msgid ""
"options."
msgstr ""
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:991
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:993
msgid "Couldn't look up central server"
msgstr "تعذر البحث عن الخادم المركزي"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:827
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:829
msgid "Couldn't open file."
msgstr "لا يمكن فتح الملف"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:830
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:832
msgid "Couldn't read file."
msgstr "لا يمكن قراءة الملف"
@@ -3048,31 +3131,31 @@ msgstr "لا يمكن قراءة الملف"
msgid "Country:"
msgstr "الدولة"
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:107
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:242
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:516
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:108
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:244
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:603
msgid "Create"
msgstr "انشاء"
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:279
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:281
msgid "Create Infinity File"
-msgstr ""
+msgstr "Infinity قم بإنشاء ملف"
#: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:62
#: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:74
msgid "Create New Memory Card"
msgstr "إنشاء بطاقة ذاكرة جديدة"
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:447
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:551
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:534
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:638
msgid "Create Skylander File"
-msgstr ""
+msgstr "Skylander قم بإنشاء ملف"
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:80
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:83
msgid "Create Skylander Folder"
-msgstr ""
+msgstr "Skylander إنشاء مجلد"
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:109
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:110
msgid "Create mappings for other devices"
msgstr "إنشاء تعيينات للأجهزة الأخرى"
@@ -3090,9 +3173,9 @@ msgid ""
msgstr ""
#: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:82
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:109
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:110
msgid "Creator:"
-msgstr "المنتج"
+msgstr "المنشئ"
#: Source/Core/Common/MsgHandler.cpp:62
msgid "Critical"
@@ -3127,7 +3210,7 @@ msgid ""
"leave this unchecked."
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:280
+#: Source/Core/DolphinQt/MenuBar.cpp:272
msgid "Current Region"
msgstr "المنطقة الحالية"
@@ -3139,7 +3222,7 @@ msgstr "القيمة الحالية"
msgid "Current context"
msgstr "السياق الحالي"
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:210
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:211
msgid "Current game"
msgstr "لعبة الحالية"
@@ -3151,21 +3234,21 @@ msgstr "الموضوع الحالي"
msgid "Custom Address Space"
msgstr "مساحة العنوان المخصصة"
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:151
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:157
msgid "Custom RTC Options"
msgstr "خيارات تخصيص وقت النظام "
#: Source/Core/DolphinQt/Config/Graphics/ColorCorrectionConfigWindow.cpp:102
msgid "Custom:"
-msgstr ""
+msgstr "مخصص:"
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:117
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:125
msgid "Customize"
msgstr "تخصيص"
#: Source/Core/Core/HW/GBAPadEmu.h:37 Source/Core/Core/HW/GCPadEmu.h:57
#: Source/Core/Core/HW/WiimoteEmu/Extension/Classic.h:223
-#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.h:119
+#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.h:120
#: Source/Core/DolphinQt/Config/Mapping/GBAPadEmu.cpp:23
#: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:26
#: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:51
@@ -3186,7 +3269,7 @@ msgstr ""
msgid "DJ Turntable"
msgstr "DJ Turntable"
-#: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:39
+#: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:40
msgid "DK Bongos"
msgstr "الطبول"
@@ -3214,7 +3297,7 @@ msgstr "DSP LLE Recompiler (بطيء)"
msgid "DSU Client"
msgstr "DSU عميل"
-#: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:50
+#: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:51
msgid ""
"DSU protocol enables the use of input and motion data from compatible "
"sources, like PlayStation, Nintendo Switch and Steam controllers.
For "
@@ -3223,19 +3306,25 @@ msgid ""
msgstr ""
"DSU يتيح بروتوكول \n"
"استخدام بيانات الإدخال والحركة من مصادر متوافقة ، مثل بلاي ستيشن و نينتندو "
-"سويتش و وحدات تحكم ستيم.
Disabling the "
@@ -3456,7 +3543,7 @@ msgid ""
"checked."
msgstr ""
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:96
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:97
msgid "Disc"
msgstr "Disc"
@@ -3490,25 +3577,25 @@ msgstr ""
msgid "Distance of travel from neutral position."
msgstr ""
-#: Source/Core/DolphinQt/Main.cpp:259
+#: Source/Core/DolphinQt/Main.cpp:264
msgid "Do you authorize Dolphin to report information to Dolphin's developers?"
msgstr ""
-#: Source/Core/DolphinQt/MainWindow.cpp:1692
+#: Source/Core/DolphinQt/MainWindow.cpp:1712
msgid "Do you want to add \"%1\" to the list of Game Paths?"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1241
+#: Source/Core/DolphinQt/MenuBar.cpp:1227
msgid "Do you want to clear the list of symbol names?"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:658
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:659
#, c-format
msgctxt ""
msgid "Do you want to delete the %n selected save file(s)?"
msgstr ""
-#: Source/Core/DolphinQt/MainWindow.cpp:933
+#: Source/Core/DolphinQt/MainWindow.cpp:935
msgid "Do you want to stop the current emulation?"
msgstr "Voleu aturar l'emulació actual?"
@@ -3520,35 +3607,35 @@ msgstr ""
msgid "Dolby Pro Logic II Decoder"
msgstr ""
-#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:219
-#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:230
+#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:215
+#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:226
msgid "Dolphin FIFO Log (*.dff)"
msgstr ""
-#: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:327
+#: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:326
msgid "Dolphin Game Mod Preset"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1536
-#: Source/Core/DolphinQt/MenuBar.cpp:1553
-#: Source/Core/DolphinQt/MenuBar.cpp:1572
+#: Source/Core/DolphinQt/MenuBar.cpp:1523
+#: Source/Core/DolphinQt/MenuBar.cpp:1540
+#: Source/Core/DolphinQt/MenuBar.cpp:1559
msgid "Dolphin Map File (*.map)"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:73
+#: Source/Core/DolphinQt/MenuBar.cpp:74
msgid "Dolphin Signature CSV File"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:73
+#: Source/Core/DolphinQt/MenuBar.cpp:74
msgid "Dolphin Signature File"
msgstr ""
-#: Source/Core/DolphinQt/MainWindow.cpp:1772
-#: Source/Core/DolphinQt/MainWindow.cpp:1843
+#: Source/Core/DolphinQt/MainWindow.cpp:1823
+#: Source/Core/DolphinQt/MainWindow.cpp:1894
msgid "Dolphin TAS Movies (*.dtm)"
msgstr "Dolphin Pel·lícules TAS (*.dtm)"
-#: Source/Core/DolphinQt/ConvertDialog.cpp:326
+#: Source/Core/DolphinQt/ConvertDialog.cpp:327
msgid ""
"Dolphin can't convert NKit files to non-NKit files. Converting an NKit file "
"in Dolphin will result in another NKit file.\n"
@@ -3559,13 +3646,13 @@ msgid ""
"Do you want to continue anyway?"
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:279
+#: Source/Core/DolphinQt/GameList/GameList.cpp:280
msgid ""
"Dolphin could not find any GameCube/Wii ISOs or WADs.\n"
"Double-click here to set a games directory..."
msgstr ""
-#: Source/Core/DolphinQt/ConvertDialog.cpp:526
+#: Source/Core/DolphinQt/ConvertDialog.cpp:529
msgid "Dolphin failed to complete the requested action."
msgstr ""
@@ -3577,7 +3664,7 @@ msgstr ""
msgid "Dolphin is a free and open-source GameCube and Wii emulator."
msgstr ""
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:998
msgid "Dolphin is too old for traversal server"
msgstr ""
@@ -3591,7 +3678,7 @@ msgstr ""
msgid "Dolphin is unable to verify unlicensed discs."
msgstr ""
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:217
msgid ""
"Dolphin will use this for titles whose region cannot be determined "
"automatically."
@@ -3606,15 +3693,15 @@ msgstr ""
msgid "Domain"
msgstr ""
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:193
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:194
msgid "Don't Update"
msgstr ""
-#: Source/Core/DolphinQt/NKitWarningDialog.cpp:53
+#: Source/Core/DolphinQt/NKitWarningDialog.cpp:56
msgid "Don't show this again"
msgstr ""
-#: Source/Core/DiscIO/CompressedBlob.cpp:369
+#: Source/Core/DiscIO/CompressedBlob.cpp:374
msgid "Done compressing disc image."
msgstr ""
@@ -3627,37 +3714,37 @@ msgstr ""
#. i18n: A double precision floating point number
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:139
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:199
-#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:154
+#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:155
msgid "Double"
msgstr ""
#: Source/Core/Core/FreeLookManager.cpp:89
#: Source/Core/Core/HW/WiimoteEmu/Extension/Guitar.cpp:80
#: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:35
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:43
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:44
#: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:21
#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUAccelerometer.cpp:19
#: Source/Core/InputCommon/ControllerEmu/ControllerEmu.h:24
msgid "Down"
msgstr "Avall"
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:86
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:87
msgid "Download Codes"
msgstr ""
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:88
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:89
msgid "Download Codes from the WiiRD Database"
msgstr ""
-#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:148
+#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:153
msgid "Download Game Covers from GameTDB.com for Use in Grid Mode"
msgstr ""
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:370
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:373
msgid "Download complete"
msgstr ""
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:371
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:374
msgid "Downloaded %1 codes. (added %2)"
msgstr ""
@@ -3680,7 +3767,7 @@ msgstr ""
msgid "Dual View"
msgstr ""
-#: Source/Core/Core/HW/EXI/EXI_Device.h:95
+#: Source/Core/Core/HW/EXI/EXI_Device.h:94
msgid "Dummy"
msgstr "Maniquí"
@@ -3700,7 +3787,7 @@ msgstr ""
msgid "Dump &MRAM"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:814
+#: Source/Core/DolphinQt/MenuBar.cpp:806
msgid "Dump Audio"
msgstr "Desa l'àudio"
@@ -3712,7 +3799,7 @@ msgstr ""
msgid "Dump EFB Target"
msgstr "Bolcat de destinació EFB"
-#: Source/Core/DolphinQt/MenuBar.cpp:808
+#: Source/Core/DolphinQt/MenuBar.cpp:800
msgid "Dump Frames"
msgstr "Desa el vídeo"
@@ -3785,12 +3872,12 @@ msgid "Duration of Turbo Button Release (frames):"
msgstr ""
#: Source/Core/DiscIO/Enums.cpp:95
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174
msgid "Dutch"
msgstr "Holandès"
-#: Source/Core/DolphinQt/MenuBar.cpp:215
+#: Source/Core/DolphinQt/MenuBar.cpp:207
msgid "E&xit"
msgstr "&Surt"
@@ -3806,7 +3893,7 @@ msgid ""
"driver."
msgstr ""
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:185
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:186
msgid ""
"Each player sends their own inputs to the game, with equal buffer size for "
"all players, configured by the host.\n"
@@ -3820,7 +3907,7 @@ msgstr "Actualitzacions recents de memòria"
#. i18n: One of the elements in the Skylanders games. Japanese: 土. For official translations
#. in other languages, check the SuperChargers manual at https://support.activision.com/manuals
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:336
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:352
msgid "Earth"
msgstr ""
@@ -3833,7 +3920,7 @@ msgstr ""
msgid "Edit Breakpoint"
msgstr ""
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:426
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:430
msgid "Edit..."
msgstr ""
@@ -3867,7 +3954,7 @@ msgstr ""
#. i18n: Elements are a trait of Skylanders figures. For official translations of this term,
#. check the Skylanders SuperChargers manual at https://support.activision.com/manuals
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:289
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:300
msgid "Element"
msgstr ""
@@ -3875,11 +3962,11 @@ msgstr ""
msgid "Embedded Frame Buffer (EFB)"
msgstr ""
-#: Source/Core/Core/State.cpp:541
+#: Source/Core/Core/State.cpp:629
msgid "Empty"
msgstr "Buida"
-#: Source/Core/Core/Core.cpp:246
+#: Source/Core/Core/Core.cpp:247
msgid "Emu Thread already running"
msgstr "El fil de l'emulador ja s'està executant"
@@ -3887,15 +3974,15 @@ msgstr "El fil de l'emulador ja s'està executant"
msgid "Emulate Disc Speed"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:60
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:61
msgid "Emulate Infinity Base"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:146
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:157
msgid "Emulate Skylander Portal"
msgstr ""
-#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:110
+#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:111
msgid "Emulate the Wii's Bluetooth adapter"
msgstr ""
@@ -3905,11 +3992,11 @@ msgid ""
"Defaults to True"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:230
+#: Source/Core/DolphinQt/MenuBar.cpp:222
msgid "Emulated USB Devices"
msgstr ""
-#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:141
+#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:142
msgid "Emulated Wii Remote"
msgstr ""
@@ -3929,12 +4016,12 @@ msgstr ""
msgid "Emulation must be started to record."
msgstr ""
-#: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:29
-#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:33
+#: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:30
+#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:34
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:120
-#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:129
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:402
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:419
+#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:130
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:406
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:423
msgid "Enable"
msgstr ""
@@ -3942,6 +4029,10 @@ msgstr ""
msgid "Enable API Validation Layers"
msgstr ""
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:83
+msgid "Enable Achievement Badges"
+msgstr ""
+
#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:60
msgid "Enable Achievements"
msgstr ""
@@ -3950,15 +4041,19 @@ msgstr ""
msgid "Enable Audio Stretching"
msgstr ""
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:142
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:143
msgid "Enable Cheats"
msgstr "Activar Trucs"
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:155
+#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:53
+msgid "Enable Controller Inpu&t"
+msgstr ""
+
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:161
msgid "Enable Custom RTC"
msgstr ""
-#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:149
+#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:154
msgid "Enable Debugging UI"
msgstr ""
@@ -3966,19 +4061,19 @@ msgstr ""
msgid "Enable Dual Core"
msgstr "Habilitar Doble nucli"
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:139
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:140
msgid "Enable Dual Core (speedup)"
msgstr "Habilitar Doble nucli (acceleració)"
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:88
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:94
msgid "Enable Emulated CPU Clock Override"
msgstr ""
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:118
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:124
msgid "Enable Emulated Memory Size Override"
msgstr ""
-#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:78
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:88
msgid "Enable Encore Achievements"
msgstr ""
@@ -3995,10 +4090,14 @@ msgid "Enable Leaderboards"
msgstr ""
#: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:88
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:66
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:68
msgid "Enable MMU"
msgstr "Habilitar MMU"
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:78
+msgid "Enable Progress Notifications"
+msgstr ""
+
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:156
msgid "Enable Progressive Scan"
msgstr "Habilitar Exploració &Progressiva"
@@ -4012,15 +4111,15 @@ msgid "Enable Rich Presence"
msgstr ""
#: Source/Core/DolphinQt/Config/Mapping/GCPadWiiUConfigDialog.cpp:39
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:353
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:352
msgid "Enable Rumble"
msgstr ""
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:157
msgid "Enable Screen Saver"
msgstr "Habilitar l'Estalvi de Pantalla"
-#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:113
+#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:114
msgid "Enable Speaker Data"
msgstr "Activar Altaveu de Dades"
@@ -4028,11 +4127,11 @@ msgstr "Activar Altaveu de Dades"
msgid "Enable Unofficial Achievements"
msgstr ""
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:230
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:231
msgid "Enable Usage Statistics Reporting"
msgstr ""
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158
msgid "Enable WiiConnect24 via WiiLink"
msgstr ""
@@ -4040,10 +4139,17 @@ msgstr ""
msgid "Enable Wireframe"
msgstr "Habilitar Wireframe"
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:77
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:82
msgid "Enable Write-Back Cache (slow)"
msgstr ""
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:85
+msgid ""
+"Enable achievement badges.
Displays icons for the player, game, and "
+"achievements. Simple visual option, but will require a small amount of extra "
+"memory and time to download the images."
+msgstr ""
+
#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:64
msgid ""
"Enable competing in RetroAchievements leaderboards.
Displays a brief popup "
+"message whenever the player makes progress on an achievement that tracks an "
+"accumulated value, such as 60 out of 120 stars."
+msgstr ""
+
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:90
+msgid ""
"Enable unlocking achievements in Encore Mode.
Encore Mode re-enables "
"achievements the player has already unlocked on the site so that the player "
"will be notified if they meet the unlock conditions again, useful for custom "
@@ -4104,7 +4217,7 @@ msgid ""
"= Compatible, OFF = Fast)"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:514
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:596
msgid ""
"Enables detection of arbitrary mipmaps, which some games use for special "
"distance-based effects.
May have false positives that result in "
@@ -4115,11 +4228,12 @@ msgid ""
"dolphin_emphasis>"
msgstr ""
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:79
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:84
msgid ""
-"Enables emulation of the CPU write-back cache.\n"
-"Enabling will have a significant impact on performance.\n"
-"This should be left disabled unless absolutely needed."
+"Enables emulation of the CPU write-back cache. Enabling will have a "
+"significant impact on performance. This should be left disabled unless "
+"absolutely needed.
If unsure, leave this unchecked."
+""
msgstr ""
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:365
@@ -4137,7 +4251,7 @@ msgid ""
"this unchecked."
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:522
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:604
msgid ""
"Enables scRGB HDR output (if supported by your graphics backend and "
"monitor). Fullscreen might be required.
This gives post process "
@@ -4160,7 +4274,6 @@ msgid ""
msgstr ""
#: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:100
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:68
msgid ""
"Enables the Memory Management Unit, needed for some games. (ON = Compatible, "
"OFF = Fast)"
@@ -4168,7 +4281,14 @@ msgstr ""
"Activa la Unitat de Gestió de memòria, necessari per a alguns jocs. (Activat "
"= compatible, Desactivat = ràpid)"
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:193
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:70
+msgid ""
+"Enables the Memory Management Unit, needed for some games. (ON = Compatible, "
+"OFF = Fast)
If unsure, leave this unchecked."
+"dolphin_emphasis>"
+msgstr ""
+
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190
msgid ""
"Enables the WiiLink service for WiiConnect24 channels.\n"
"WiiLink is an alternate provider for the discontinued WiiConnect24 Channels "
@@ -4195,7 +4315,7 @@ msgstr ""
msgid "Encoding"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:615
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:616
msgid ""
"Encountered the following errors while opening save files:\n"
"%1\n"
@@ -4208,12 +4328,12 @@ msgid "Enet Didn't Initialize"
msgstr ""
#: Source/Core/DiscIO/Enums.cpp:80
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:85
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:169
msgid "English"
msgstr "Anglès"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:59
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:61
#: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:61
msgid "Enhancements"
msgstr "Millores"
@@ -4244,84 +4364,84 @@ msgstr ""
msgid "Enter the DNS server to use:"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1300
+#: Source/Core/DolphinQt/MenuBar.cpp:1286
msgid "Enter the RSO module address:"
msgstr ""
#: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:194
#: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:250
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:261
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:262
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386
#: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:265
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:343
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:349
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:346
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:352
#: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:46
-#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:521
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:256
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:295
-#: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:232
-#: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:259
-#: Source/Core/DolphinQt/ConvertDialog.cpp:424
-#: Source/Core/DolphinQt/ConvertDialog.cpp:471
-#: Source/Core/DolphinQt/ConvertDialog.cpp:525
+#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:539
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:255
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:296
+#: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:229
+#: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:256
+#: Source/Core/DolphinQt/ConvertDialog.cpp:426
+#: Source/Core/DolphinQt/ConvertDialog.cpp:473
+#: Source/Core/DolphinQt/ConvertDialog.cpp:528
#: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:255
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:638
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:644
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:653
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:665
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:684
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:690
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:705
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:713
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:737
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:744
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:637
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:643
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:652
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:664
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:683
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:689
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:704
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:712
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:736
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:743
#: Source/Core/DolphinQt/Debugger/RegisterColumn.cpp:86
#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:282
#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:431
-#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:241
-#: Source/Core/DolphinQt/GBAWidget.cpp:576
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:346
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:376
-#: Source/Core/DolphinQt/Main.cpp:209 Source/Core/DolphinQt/Main.cpp:225
-#: Source/Core/DolphinQt/Main.cpp:232 Source/Core/DolphinQt/MainWindow.cpp:295
-#: Source/Core/DolphinQt/MainWindow.cpp:303
-#: Source/Core/DolphinQt/MainWindow.cpp:1108
-#: Source/Core/DolphinQt/MainWindow.cpp:1494
-#: Source/Core/DolphinQt/MainWindow.cpp:1501
-#: Source/Core/DolphinQt/MainWindow.cpp:1561
-#: Source/Core/DolphinQt/MainWindow.cpp:1568
-#: Source/Core/DolphinQt/MainWindow.cpp:1670
-#: Source/Core/DolphinQt/MenuBar.cpp:1204
-#: Source/Core/DolphinQt/MenuBar.cpp:1284
+#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:237
+#: Source/Core/DolphinQt/GBAWidget.cpp:578
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:347
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:377
+#: Source/Core/DolphinQt/Main.cpp:211 Source/Core/DolphinQt/Main.cpp:227
+#: Source/Core/DolphinQt/Main.cpp:234 Source/Core/DolphinQt/MainWindow.cpp:297
+#: Source/Core/DolphinQt/MainWindow.cpp:305
+#: Source/Core/DolphinQt/MainWindow.cpp:1110
+#: Source/Core/DolphinQt/MainWindow.cpp:1507
+#: Source/Core/DolphinQt/MainWindow.cpp:1514
+#: Source/Core/DolphinQt/MainWindow.cpp:1574
+#: Source/Core/DolphinQt/MainWindow.cpp:1581
+#: Source/Core/DolphinQt/MainWindow.cpp:1690
+#: Source/Core/DolphinQt/MenuBar.cpp:1190
+#: Source/Core/DolphinQt/MenuBar.cpp:1270
+#: Source/Core/DolphinQt/MenuBar.cpp:1293
#: Source/Core/DolphinQt/MenuBar.cpp:1307
-#: Source/Core/DolphinQt/MenuBar.cpp:1321
-#: Source/Core/DolphinQt/MenuBar.cpp:1352
-#: Source/Core/DolphinQt/MenuBar.cpp:1376
-#: Source/Core/DolphinQt/MenuBar.cpp:1597
-#: Source/Core/DolphinQt/MenuBar.cpp:1608
-#: Source/Core/DolphinQt/MenuBar.cpp:1620
-#: Source/Core/DolphinQt/MenuBar.cpp:1642
-#: Source/Core/DolphinQt/MenuBar.cpp:1668
-#: Source/Core/DolphinQt/MenuBar.cpp:1722
-#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:315
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:477
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:738
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:980
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1098
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1108
-#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:334
-#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:340
-#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:347
+#: Source/Core/DolphinQt/MenuBar.cpp:1339
+#: Source/Core/DolphinQt/MenuBar.cpp:1363
+#: Source/Core/DolphinQt/MenuBar.cpp:1584
+#: Source/Core/DolphinQt/MenuBar.cpp:1595
+#: Source/Core/DolphinQt/MenuBar.cpp:1607
+#: Source/Core/DolphinQt/MenuBar.cpp:1629
+#: Source/Core/DolphinQt/MenuBar.cpp:1655
+#: Source/Core/DolphinQt/MenuBar.cpp:1709
+#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:316
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:479
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:740
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:982
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1100
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1110
+#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:332
+#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:338
+#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:345
#: Source/Core/DolphinQt/RenderWidget.cpp:123
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:203
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:224
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:423
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:439
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:460
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:481
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:525
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:562
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:585
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:204
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:225
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:433
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:449
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:470
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:491
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:535
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:572
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:595
#: Source/Core/DolphinQt/Translation.cpp:322
msgid "Error"
msgstr "Error"
@@ -4330,13 +4450,13 @@ msgstr "Error"
msgid "Error Opening Adapter: %1"
msgstr ""
-#: Source/Core/Core/NetPlayServer.cpp:1493
+#: Source/Core/Core/NetPlayServer.cpp:1497
msgid "Error collecting save data!"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:260
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:526
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:533
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:262
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:613
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:620
msgid "Error converting value"
msgstr ""
@@ -4350,15 +4470,15 @@ msgstr ""
msgid "Error obtaining session list: %1"
msgstr ""
-#: Source/Core/DolphinQt/MainWindow.cpp:296
+#: Source/Core/DolphinQt/MainWindow.cpp:298
msgid "Error occurred while loading some texture packs"
msgstr ""
-#: Source/Core/Core/NetPlayClient.cpp:1847
+#: Source/Core/Core/NetPlayClient.cpp:1851
msgid "Error processing codes."
msgstr ""
-#: Source/Core/Core/NetPlayClient.cpp:1819
+#: Source/Core/Core/NetPlayClient.cpp:1823
msgid "Error processing data."
msgstr ""
@@ -4366,11 +4486,11 @@ msgstr ""
msgid "Error reading file: {0}"
msgstr ""
-#: Source/Core/Core/NetPlayServer.cpp:1529
+#: Source/Core/Core/NetPlayServer.cpp:1533
msgid "Error synchronizing cheat codes!"
msgstr ""
-#: Source/Core/Core/NetPlayServer.cpp:1515
+#: Source/Core/Core/NetPlayServer.cpp:1519
msgid "Error synchronizing save data!"
msgstr ""
@@ -4441,7 +4561,7 @@ msgstr ""
msgid "Euphoria"
msgstr "Eufòria"
-#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:282
+#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:274
#: Source/Core/UICommon/NetPlayIndex.cpp:249
msgid "Europe"
msgstr "Europa"
@@ -4470,11 +4590,11 @@ msgstr ""
msgid "Excluded: %1"
msgstr ""
-#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:73
+#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:72
msgid "Excluded: 0"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:107
+#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108
msgid "Exclusive Ubershaders"
msgstr ""
@@ -4522,14 +4642,14 @@ msgstr ""
msgid "Experimental"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:294
+#: Source/Core/DolphinQt/MenuBar.cpp:286
msgid "Export All Wii Saves"
msgstr "Exportar totes les partides guardades de Wii"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:422
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:447
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:492
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:499
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:423
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:448
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:493
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:500
msgid "Export Failed"
msgstr ""
@@ -4537,42 +4657,42 @@ msgstr ""
msgid "Export Recording"
msgstr "Exportar gravació"
-#: Source/Core/DolphinQt/MenuBar.cpp:753
+#: Source/Core/DolphinQt/MenuBar.cpp:745
msgid "Export Recording..."
msgstr "Exporta l'enregistrament..."
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:437
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:438
msgid "Export Save File"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:454
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:455
msgid "Export Save Files"
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:470
+#: Source/Core/DolphinQt/GameList/GameList.cpp:473
msgid "Export Wii Save"
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:388
+#: Source/Core/DolphinQt/GameList/GameList.cpp:389
msgid "Export Wii Saves"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:117
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:118
msgid "Export as .&gcs..."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:118
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:119
msgid "Export as .&sav..."
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1133
+#: Source/Core/DolphinQt/MenuBar.cpp:1115
#, c-format
msgctxt ""
msgid "Exported %n save(s)"
msgstr ""
#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:268
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:432
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:434
#: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:47
msgid "Extension"
msgstr "Extensió"
@@ -4585,7 +4705,7 @@ msgstr ""
msgid "Extension Motion Simulation"
msgstr ""
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:520
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:522
msgid "External"
msgstr ""
@@ -4593,35 +4713,35 @@ msgstr ""
msgid "External Frame Buffer (XFB)"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:271
+#: Source/Core/DolphinQt/MenuBar.cpp:263
msgid "Extract Certificates from NAND"
msgstr ""
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:268
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:269
msgid "Extract Entire Disc..."
msgstr ""
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:292
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:293
msgid "Extract Entire Partition..."
msgstr ""
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:299
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:300
msgid "Extract File..."
msgstr "Extreure arxiu..."
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:241
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:242
msgid "Extract Files..."
msgstr ""
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:251
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:252
msgid "Extract System Data..."
msgstr ""
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:355
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:356
msgid "Extracting All Files..."
msgstr ""
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:356
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357
msgid "Extracting Directory..."
msgstr ""
@@ -4631,7 +4751,7 @@ msgid "FD"
msgstr ""
#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:37
-#: Source/Core/DolphinQt/MenuBar.cpp:228
+#: Source/Core/DolphinQt/MenuBar.cpp:220
msgid "FIFO Player"
msgstr "Jugador FIFO"
@@ -4639,17 +4759,17 @@ msgstr "Jugador FIFO"
msgid "Failed loading XML."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:347
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:348
msgid ""
"Failed opening memory card:\n"
"%1"
msgstr ""
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:454
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:456
msgid "Failed to add this session to the NetPlay index: %1"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1669
+#: Source/Core/DolphinQt/MenuBar.cpp:1656
msgid "Failed to append to signature file '%1'"
msgstr ""
@@ -4657,11 +4777,11 @@ msgstr ""
msgid "Failed to claim interface for BT passthrough: {0}"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:574
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:676
msgid "Failed to clear Skylander!"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:575
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:677
msgid "Failed to clear the Skylander from slot(%1)!"
msgstr ""
@@ -4669,7 +4789,7 @@ msgstr ""
msgid "Failed to connect to Redump.org"
msgstr ""
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:981
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:983
msgid "Failed to connect to server: %1"
msgstr ""
@@ -4690,15 +4810,15 @@ msgstr ""
msgid "Failed to create DXGI factory"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:289
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:291
msgid "Failed to create Infinity file"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:678
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:798
msgid "Failed to create Skylander file!"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:679
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:799
msgid ""
"Failed to create Skylander file:\n"
"%1\n"
@@ -4714,7 +4834,7 @@ msgstr ""
msgid "Failed to delete NetPlay memory card. Verify your write permissions."
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:841
+#: Source/Core/DolphinQt/GameList/GameList.cpp:854
msgid "Failed to delete the selected file."
msgstr ""
@@ -4722,36 +4842,36 @@ msgstr ""
msgid "Failed to detach kernel driver for BT passthrough: {0}"
msgstr ""
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:343
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:346
msgid "Failed to download codes."
msgstr "Error al descarregar codis."
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:738
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:737
msgid "Failed to dump %1: Can't open file"
msgstr ""
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:745
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:744
msgid "Failed to dump %1: Failed to write to file"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:488
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:489
msgctxt ""
msgid "Failed to export %n out of %1 save file(s)."
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:576
+#: Source/Core/DolphinQt/GameList/GameList.cpp:584
msgid "Failed to export the following save files:"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1204
+#: Source/Core/DolphinQt/MenuBar.cpp:1190
msgid "Failed to extract certificates from NAND"
msgstr ""
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386
msgid "Failed to extract file."
msgstr ""
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:261
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:262
msgid "Failed to extract system data."
msgstr ""
@@ -4766,29 +4886,29 @@ msgstr ""
msgid "Failed to find one or more D3D symbols"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:565
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:566
msgid "Failed to import \"%1\"."
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1109
+#: Source/Core/DolphinQt/MenuBar.cpp:1091
msgid ""
"Failed to import save file. Please launch the game once, then try again."
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1103
+#: Source/Core/DolphinQt/MenuBar.cpp:1085
msgid ""
"Failed to import save file. The given file appears to be corrupted or is not "
"a valid Wii save."
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1116
+#: Source/Core/DolphinQt/MenuBar.cpp:1098
msgid ""
"Failed to import save file. Your NAND may be corrupt, or something is "
"preventing access to files within it. Try repairing your NAND (Tools -> "
"Manage NAND -> Check NAND...), then import the save again."
msgstr ""
-#: Source/Core/DolphinQt/MainWindow.cpp:1108
+#: Source/Core/DolphinQt/MainWindow.cpp:1110
msgid "Failed to init core"
msgstr ""
@@ -4803,23 +4923,23 @@ msgstr ""
msgid "Failed to initialize renderer classes"
msgstr ""
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:204
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:205
msgid "Failed to install pack: %1"
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:619
-#: Source/Core/DolphinQt/MenuBar.cpp:1074
+#: Source/Core/DolphinQt/GameList/GameList.cpp:628
+#: Source/Core/DolphinQt/MenuBar.cpp:1056
msgid "Failed to install this title to the NAND."
msgstr ""
-#: Source/Core/DolphinQt/MainWindow.cpp:1594
+#: Source/Core/DolphinQt/MainWindow.cpp:1607
msgid ""
"Failed to listen on port %1. Is another instance of the NetPlay server "
"running?"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1321
-#: Source/Core/DolphinQt/MenuBar.cpp:1376
+#: Source/Core/DolphinQt/MenuBar.cpp:1307
+#: Source/Core/DolphinQt/MenuBar.cpp:1363
msgid "Failed to load RSO module at %1"
msgstr ""
@@ -4831,15 +4951,15 @@ msgstr ""
msgid "Failed to load dxgi.dll"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1608
+#: Source/Core/DolphinQt/MenuBar.cpp:1595
msgid "Failed to load map file '%1'"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:720
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:842
msgid "Failed to load the Skylander file!"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:721
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:843
msgid "Failed to load the Skylander file(%1)!\n"
msgstr ""
@@ -4853,8 +4973,12 @@ msgid ""
"update package."
msgstr ""
-#: Source/Core/DolphinQt/GBAWidget.cpp:576
-#: Source/Core/DolphinQt/MainWindow.cpp:1670
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:663
+msgid "Failed to modify Skylander!"
+msgstr ""
+
+#: Source/Core/DolphinQt/GBAWidget.cpp:578
+#: Source/Core/DolphinQt/MainWindow.cpp:1690
#: Source/Core/DolphinQt/RenderWidget.cpp:123
msgid "Failed to open '%1'"
msgstr ""
@@ -4881,40 +5005,40 @@ msgid ""
"Make sure there's an application assigned to open INI files."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:861
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:863
msgid "Failed to open file."
msgstr ""
-#: Source/Core/DolphinQt/MainWindow.cpp:1593
+#: Source/Core/DolphinQt/MainWindow.cpp:1606
msgid "Failed to open server"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:164
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:166
msgid "Failed to open the Infinity file!"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:165
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:167
msgid ""
"Failed to open the Infinity file(%1)!\n"
"File may already be in use on the base."
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:696
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:818
msgid "Failed to open the Skylander file!"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:697
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:819
msgid ""
"Failed to open the Skylander file(%1)!\n"
"File may already be in use on the portal."
msgstr ""
-#: Source/Core/DolphinQt/ConvertDialog.cpp:472
+#: Source/Core/DolphinQt/ConvertDialog.cpp:474
msgid "Failed to open the input file \"%1\"."
msgstr ""
-#: Source/Core/DiscIO/CompressedBlob.cpp:282 Source/Core/DiscIO/FileBlob.cpp:53
-#: Source/Core/DiscIO/WIABlob.cpp:2037
+#: Source/Core/DiscIO/CompressedBlob.cpp:287 Source/Core/DiscIO/FileBlob.cpp:58
+#: Source/Core/DiscIO/WIABlob.cpp:2043
msgid ""
"Failed to open the output file \"{0}\".\n"
"Check that you have permissions to write the target folder and that the "
@@ -4934,35 +5058,35 @@ msgstr ""
msgid "Failed to read DFF file."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:863
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:865
msgid "Failed to read from file."
msgstr ""
-#: Source/Core/DiscIO/CompressedBlob.cpp:373 Source/Core/DiscIO/FileBlob.cpp:93
-#: Source/Core/DiscIO/WIABlob.cpp:2052
+#: Source/Core/DiscIO/CompressedBlob.cpp:378 Source/Core/DiscIO/FileBlob.cpp:98
+#: Source/Core/DiscIO/WIABlob.cpp:2058
msgid "Failed to read from the input file \"{0}\"."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:423
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:641
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:424
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:642
msgid "Failed to read selected savefile(s) from memory card."
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:173
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:175
msgid "Failed to read the Infinity file!"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:174
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:176
msgid ""
"Failed to read the Infinity file(%1)!\n"
"File was too small."
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:706
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:828
msgid "Failed to read the Skylander file!"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:707
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:829
msgid ""
"Failed to read the Skylander file(%1)!\n"
"File was too small."
@@ -4972,18 +5096,18 @@ msgstr ""
msgid "Failed to read {0}"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:668
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:669
msgid "Failed to remove file."
msgstr ""
-#: Source/Core/DolphinQt/ConvertDialog.cpp:453
+#: Source/Core/DolphinQt/ConvertDialog.cpp:455
msgid ""
"Failed to remove junk data from file \"%1\".\n"
"\n"
"Would you like to convert it without removing junk data?"
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:647
+#: Source/Core/DolphinQt/GameList/GameList.cpp:658
msgid "Failed to remove this title from the NAND."
msgstr ""
@@ -4999,27 +5123,34 @@ msgstr ""
msgid "Failed to reset NetPlay redirect folder. Verify your write permissions."
msgstr ""
-#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:241
+#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:237
msgid "Failed to save FIFO log."
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1598
+#: Source/Core/DolphinQt/MenuBar.cpp:1585
msgid "Failed to save code map to path '%1'"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1642
+#: Source/Core/DolphinQt/MenuBar.cpp:1629
msgid "Failed to save signature file '%1'"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1621
+#: Source/Core/DolphinQt/MenuBar.cpp:1608
msgid "Failed to save symbol map to path '%1'"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1723
+#: Source/Core/DolphinQt/MenuBar.cpp:1710
msgid "Failed to save to signature file '%1'"
msgstr ""
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:225
+#: Source/Core/Core/Core.cpp:548
+msgid ""
+"Failed to sync SD card with folder. All changes made this session will be "
+"discarded on next boot if you do not manually re-issue a resync in Config > "
+"Wii > SD Card Settings > Convert File to Folder Now!"
+msgstr ""
+
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:226
msgid "Failed to uninstall pack: %1"
msgstr ""
@@ -5039,9 +5170,9 @@ msgstr ""
msgid "Failed to write config file!"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:573
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:676
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:691
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:574
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:677
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:692
msgid "Failed to write modified memory card to disk."
msgstr ""
@@ -5049,33 +5180,33 @@ msgstr ""
msgid "Failed to write redirected save."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:447
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:448
msgid "Failed to write savefile to disk."
msgstr ""
-#: Source/Core/DiscIO/CompressedBlob.cpp:377 Source/Core/DiscIO/FileBlob.cpp:99
-#: Source/Core/DiscIO/WIABlob.cpp:2056
+#: Source/Core/DiscIO/CompressedBlob.cpp:382
+#: Source/Core/DiscIO/FileBlob.cpp:104 Source/Core/DiscIO/WIABlob.cpp:2062
msgid ""
"Failed to write the output file \"{0}\".\n"
"Check that you have enough space available on the target drive."
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:617
-#: Source/Core/DolphinQt/GameList/GameList.cpp:645
-#: Source/Core/DolphinQt/GameList/GameList.cpp:840
-#: Source/Core/DolphinQt/MenuBar.cpp:1074
+#: Source/Core/DolphinQt/GameList/GameList.cpp:626
+#: Source/Core/DolphinQt/GameList/GameList.cpp:656
+#: Source/Core/DolphinQt/GameList/GameList.cpp:853
+#: Source/Core/DolphinQt/MenuBar.cpp:1056
msgid "Failure"
msgstr ""
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:183
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:184
msgid "Fair Input Delay"
msgstr ""
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:199
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:200
msgid "Fallback Region"
msgstr ""
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:210
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:211
msgid "Fallback Region:"
msgstr ""
@@ -5099,17 +5230,21 @@ msgstr ""
msgid "Field of View"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:233
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:235
msgid "Figure Number:"
msgstr ""
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:380
+msgid "Figure type"
+msgstr ""
+
#: Source/Core/DolphinQt/Config/InfoWidget.cpp:46
msgid "File Details"
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:991
+#: Source/Core/DolphinQt/GameList/GameList.cpp:1005
#: Source/Core/DolphinQt/GameList/GameListModel.cpp:229
-#: Source/Core/DolphinQt/MenuBar.cpp:652
+#: Source/Core/DolphinQt/MenuBar.cpp:644
msgid "File Format"
msgstr ""
@@ -5121,20 +5256,20 @@ msgstr ""
msgid "File Info"
msgstr "informació del fitxer"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:986
+#: Source/Core/DolphinQt/GameList/GameList.cpp:1000
#: Source/Core/DolphinQt/GameList/GameListModel.cpp:223
-#: Source/Core/DolphinQt/MenuBar.cpp:647
+#: Source/Core/DolphinQt/MenuBar.cpp:639
msgid "File Name"
msgstr "Nom de l'arxiu"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:987
+#: Source/Core/DolphinQt/GameList/GameList.cpp:1001
#: Source/Core/DolphinQt/GameList/GameListModel.cpp:225
-#: Source/Core/DolphinQt/MenuBar.cpp:648
+#: Source/Core/DolphinQt/MenuBar.cpp:640
msgid "File Path"
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:990
-#: Source/Core/DolphinQt/MenuBar.cpp:651
+#: Source/Core/DolphinQt/GameList/GameList.cpp:1004
+#: Source/Core/DolphinQt/MenuBar.cpp:643
msgid "File Size"
msgstr "Mida del fitxer"
@@ -5142,15 +5277,15 @@ msgstr "Mida del fitxer"
msgid "File Size:"
msgstr ""
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:349
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:352
msgid "File contained no codes."
msgstr "L'arxiu no conté codis."
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:149
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:150
msgid "Filename"
msgstr ""
-#: Source/Core/DiscIO/CompressedBlob.cpp:289
+#: Source/Core/DiscIO/CompressedBlob.cpp:294
msgid "Files opened, ready to compress."
msgstr ""
@@ -5160,11 +5295,11 @@ msgid ""
"{1}"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:833
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:835
msgid "Filesize does not match any known GameCube Memory Card size."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:836
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:838
msgid "Filesize in header mismatches actual card size."
msgstr ""
@@ -5172,7 +5307,7 @@ msgstr ""
msgid "Filesystem"
msgstr "Sistema d'arxius"
-#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:102
+#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:103
msgid "Filters"
msgstr ""
@@ -5188,7 +5323,7 @@ msgstr ""
msgid "Finish Calibration"
msgstr ""
-#: Source/Core/DolphinQt/WiiUpdate.cpp:109
+#: Source/Core/DolphinQt/WiiUpdate.cpp:110
msgid ""
"Finishing the update...\n"
"This can take a while."
@@ -5196,19 +5331,19 @@ msgstr ""
#. i18n: One of the elements in the Skylanders games. Japanese: 火. For official translations
#. in other languages, check the SuperChargers manual at https://support.activision.com/manuals
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:333
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:349
msgid "Fire"
msgstr ""
-#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:40
+#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:41
msgid "First Person"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:127
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:128
msgid "Fix Checksums"
msgstr "Arregla les sumes de comprovació"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:690
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:691
msgid "Fix Checksums Failed"
msgstr ""
@@ -5218,7 +5353,7 @@ msgstr ""
#. i18n: These are the kinds of flags that a CPU uses (e.g. carry),
#. not the kinds of flags that represent e.g. countries
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:166
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167
#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:87
msgid "Flags"
msgstr ""
@@ -5227,12 +5362,12 @@ msgstr ""
#. i18n: Floating-point (non-integer) number
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:138
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:198
-#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:152
+#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:153
#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97
msgid "Float"
msgstr ""
-#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:565
+#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:566
msgid "Follow &branch"
msgstr ""
@@ -5252,35 +5387,35 @@ msgid ""
"\">refer to this page."
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:57
+#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:58
msgid "Force 16:9"
msgstr "Forçar 16:9"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:117
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:152
msgid "Force 24-Bit Color"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:57
+#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:58
msgid "Force 4:3"
msgstr "Forçar 4:3"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:96
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:115
msgid "Force Linear"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:103
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:122
msgid "Force Linear and 16x Anisotropic"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:97
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:116
msgid "Force Linear and 2x Anisotropic"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:99
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:118
msgid "Force Linear and 4x Anisotropic"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:101
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:120
msgid "Force Linear and 8x Anisotropic"
msgstr ""
@@ -5288,7 +5423,7 @@ msgstr ""
msgid "Force Listen Port:"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:95
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:114
msgid "Force Nearest"
msgstr ""
@@ -5300,7 +5435,7 @@ msgstr ""
msgid "Forced on because %1 doesn't support geometry shaders."
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:474
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:556
msgid ""
"Forces the game to output graphics for any aspect ratio. Use with \"Aspect "
"Ratio\" set to \"Force 16:9\" to force 4:3-only games to run at 16:9."
@@ -5310,7 +5445,7 @@ msgid ""
""
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:503
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:585
msgid ""
"Forces the game to render the RGB color channels in 24-bit, thereby "
"increasing quality by reducing color banding.
Has no impact on "
@@ -5318,7 +5453,7 @@ msgid ""
"unsure, leave this checked."
msgstr ""
-#: Source/Core/DolphinQt/ConvertDialog.cpp:59
+#: Source/Core/DolphinQt/ConvertDialog.cpp:60
msgid "Format:"
msgstr ""
@@ -5384,19 +5519,19 @@ msgstr ""
msgid "France"
msgstr "França"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:311
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:312
msgid "Free Blocks: %1"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:312
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:313
msgid "Free Files: %1"
msgstr ""
-#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:42
+#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:43
msgid "Free Look Control Type"
msgstr ""
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:468
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:470
msgid "Free Look Controller %1"
msgstr ""
@@ -5404,7 +5539,7 @@ msgstr ""
msgid "Free Look Settings"
msgstr ""
-#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:54
+#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:55
msgid ""
"Free Look allows for manipulation of the in-game camera. Different camera "
"types are available from the dropdown.
Disabling the "
@@ -3430,7 +3517,7 @@ msgid ""
"checked."
msgstr ""
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:96
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:97
msgid "Disc"
msgstr "Disk"
@@ -3464,25 +3551,25 @@ msgstr ""
msgid "Distance of travel from neutral position."
msgstr ""
-#: Source/Core/DolphinQt/Main.cpp:259
+#: Source/Core/DolphinQt/Main.cpp:264
msgid "Do you authorize Dolphin to report information to Dolphin's developers?"
msgstr ""
-#: Source/Core/DolphinQt/MainWindow.cpp:1692
+#: Source/Core/DolphinQt/MainWindow.cpp:1712
msgid "Do you want to add \"%1\" to the list of Game Paths?"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1241
+#: Source/Core/DolphinQt/MenuBar.cpp:1227
msgid "Do you want to clear the list of symbol names?"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:658
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:659
#, c-format
msgctxt ""
msgid "Do you want to delete the %n selected save file(s)?"
msgstr ""
-#: Source/Core/DolphinQt/MainWindow.cpp:933
+#: Source/Core/DolphinQt/MainWindow.cpp:935
msgid "Do you want to stop the current emulation?"
msgstr "Chcete současnou emulaci zastavit?"
@@ -3494,35 +3581,35 @@ msgstr ""
msgid "Dolby Pro Logic II Decoder"
msgstr ""
-#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:219
-#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:230
+#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:215
+#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:226
msgid "Dolphin FIFO Log (*.dff)"
msgstr ""
-#: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:327
+#: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:326
msgid "Dolphin Game Mod Preset"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1536
-#: Source/Core/DolphinQt/MenuBar.cpp:1553
-#: Source/Core/DolphinQt/MenuBar.cpp:1572
+#: Source/Core/DolphinQt/MenuBar.cpp:1523
+#: Source/Core/DolphinQt/MenuBar.cpp:1540
+#: Source/Core/DolphinQt/MenuBar.cpp:1559
msgid "Dolphin Map File (*.map)"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:73
+#: Source/Core/DolphinQt/MenuBar.cpp:74
msgid "Dolphin Signature CSV File"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:73
+#: Source/Core/DolphinQt/MenuBar.cpp:74
msgid "Dolphin Signature File"
msgstr ""
-#: Source/Core/DolphinQt/MainWindow.cpp:1772
-#: Source/Core/DolphinQt/MainWindow.cpp:1843
+#: Source/Core/DolphinQt/MainWindow.cpp:1823
+#: Source/Core/DolphinQt/MainWindow.cpp:1894
msgid "Dolphin TAS Movies (*.dtm)"
msgstr "Doplhin Filmy TAS (*.dtm)"
-#: Source/Core/DolphinQt/ConvertDialog.cpp:326
+#: Source/Core/DolphinQt/ConvertDialog.cpp:327
msgid ""
"Dolphin can't convert NKit files to non-NKit files. Converting an NKit file "
"in Dolphin will result in another NKit file.\n"
@@ -3533,13 +3620,13 @@ msgid ""
"Do you want to continue anyway?"
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:279
+#: Source/Core/DolphinQt/GameList/GameList.cpp:280
msgid ""
"Dolphin could not find any GameCube/Wii ISOs or WADs.\n"
"Double-click here to set a games directory..."
msgstr ""
-#: Source/Core/DolphinQt/ConvertDialog.cpp:526
+#: Source/Core/DolphinQt/ConvertDialog.cpp:529
msgid "Dolphin failed to complete the requested action."
msgstr ""
@@ -3551,7 +3638,7 @@ msgstr ""
msgid "Dolphin is a free and open-source GameCube and Wii emulator."
msgstr ""
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:998
msgid "Dolphin is too old for traversal server"
msgstr ""
@@ -3565,7 +3652,7 @@ msgstr ""
msgid "Dolphin is unable to verify unlicensed discs."
msgstr ""
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:217
msgid ""
"Dolphin will use this for titles whose region cannot be determined "
"automatically."
@@ -3580,15 +3667,15 @@ msgstr ""
msgid "Domain"
msgstr ""
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:193
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:194
msgid "Don't Update"
msgstr ""
-#: Source/Core/DolphinQt/NKitWarningDialog.cpp:53
+#: Source/Core/DolphinQt/NKitWarningDialog.cpp:56
msgid "Don't show this again"
msgstr ""
-#: Source/Core/DiscIO/CompressedBlob.cpp:369
+#: Source/Core/DiscIO/CompressedBlob.cpp:374
msgid "Done compressing disc image."
msgstr "Komprimace obrazu disku dokončena."
@@ -3601,37 +3688,37 @@ msgstr ""
#. i18n: A double precision floating point number
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:139
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:199
-#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:154
+#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:155
msgid "Double"
msgstr ""
#: Source/Core/Core/FreeLookManager.cpp:89
#: Source/Core/Core/HW/WiimoteEmu/Extension/Guitar.cpp:80
#: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:35
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:43
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:44
#: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:21
#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUAccelerometer.cpp:19
#: Source/Core/InputCommon/ControllerEmu/ControllerEmu.h:24
msgid "Down"
msgstr "Dolů"
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:86
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:87
msgid "Download Codes"
msgstr ""
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:88
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:89
msgid "Download Codes from the WiiRD Database"
msgstr ""
-#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:148
+#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:153
msgid "Download Game Covers from GameTDB.com for Use in Grid Mode"
msgstr ""
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:370
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:373
msgid "Download complete"
msgstr ""
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:371
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:374
msgid "Downloaded %1 codes. (added %2)"
msgstr ""
@@ -3654,7 +3741,7 @@ msgstr ""
msgid "Dual View"
msgstr ""
-#: Source/Core/Core/HW/EXI/EXI_Device.h:95
+#: Source/Core/Core/HW/EXI/EXI_Device.h:94
msgid "Dummy"
msgstr "Atrapa"
@@ -3674,7 +3761,7 @@ msgstr ""
msgid "Dump &MRAM"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:814
+#: Source/Core/DolphinQt/MenuBar.cpp:806
msgid "Dump Audio"
msgstr "Vypsat Zvuk"
@@ -3686,7 +3773,7 @@ msgstr ""
msgid "Dump EFB Target"
msgstr "Vypsat Cíl EFB"
-#: Source/Core/DolphinQt/MenuBar.cpp:808
+#: Source/Core/DolphinQt/MenuBar.cpp:800
msgid "Dump Frames"
msgstr "Vypsat Snímky"
@@ -3759,12 +3846,12 @@ msgid "Duration of Turbo Button Release (frames):"
msgstr ""
#: Source/Core/DiscIO/Enums.cpp:95
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174
msgid "Dutch"
msgstr "Nizozemština"
-#: Source/Core/DolphinQt/MenuBar.cpp:215
+#: Source/Core/DolphinQt/MenuBar.cpp:207
msgid "E&xit"
msgstr "O&dejít"
@@ -3780,7 +3867,7 @@ msgid ""
"driver."
msgstr ""
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:185
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:186
msgid ""
"Each player sends their own inputs to the game, with equal buffer size for "
"all players, configured by the host.\n"
@@ -3794,7 +3881,7 @@ msgstr "Předčasné Aktualizace Paměti"
#. i18n: One of the elements in the Skylanders games. Japanese: 土. For official translations
#. in other languages, check the SuperChargers manual at https://support.activision.com/manuals
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:336
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:352
msgid "Earth"
msgstr ""
@@ -3807,7 +3894,7 @@ msgstr ""
msgid "Edit Breakpoint"
msgstr ""
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:426
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:430
msgid "Edit..."
msgstr ""
@@ -3841,7 +3928,7 @@ msgstr ""
#. i18n: Elements are a trait of Skylanders figures. For official translations of this term,
#. check the Skylanders SuperChargers manual at https://support.activision.com/manuals
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:289
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:300
msgid "Element"
msgstr ""
@@ -3849,11 +3936,11 @@ msgstr ""
msgid "Embedded Frame Buffer (EFB)"
msgstr "Vestavěná vyrovnávací paměť snímků (EFB)"
-#: Source/Core/Core/State.cpp:541
+#: Source/Core/Core/State.cpp:629
msgid "Empty"
msgstr "Prázdné"
-#: Source/Core/Core/Core.cpp:246
+#: Source/Core/Core/Core.cpp:247
msgid "Emu Thread already running"
msgstr "Vlákno Emulace již běží"
@@ -3861,15 +3948,15 @@ msgstr "Vlákno Emulace již běží"
msgid "Emulate Disc Speed"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:60
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:61
msgid "Emulate Infinity Base"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:146
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:157
msgid "Emulate Skylander Portal"
msgstr ""
-#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:110
+#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:111
msgid "Emulate the Wii's Bluetooth adapter"
msgstr ""
@@ -3879,11 +3966,11 @@ msgid ""
"Defaults to True"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:230
+#: Source/Core/DolphinQt/MenuBar.cpp:222
msgid "Emulated USB Devices"
msgstr ""
-#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:141
+#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:142
msgid "Emulated Wii Remote"
msgstr ""
@@ -3903,12 +3990,12 @@ msgstr ""
msgid "Emulation must be started to record."
msgstr ""
-#: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:29
-#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:33
+#: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:30
+#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:34
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:120
-#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:129
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:402
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:419
+#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:130
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:406
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:423
msgid "Enable"
msgstr ""
@@ -3916,6 +4003,10 @@ msgstr ""
msgid "Enable API Validation Layers"
msgstr ""
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:83
+msgid "Enable Achievement Badges"
+msgstr ""
+
#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:60
msgid "Enable Achievements"
msgstr ""
@@ -3924,15 +4015,19 @@ msgstr ""
msgid "Enable Audio Stretching"
msgstr ""
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:142
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:143
msgid "Enable Cheats"
msgstr "Povolit Cheaty"
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:155
+#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:53
+msgid "Enable Controller Inpu&t"
+msgstr ""
+
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:161
msgid "Enable Custom RTC"
msgstr ""
-#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:149
+#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:154
msgid "Enable Debugging UI"
msgstr ""
@@ -3940,19 +4035,19 @@ msgstr ""
msgid "Enable Dual Core"
msgstr "Povolit dvojité jádro"
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:139
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:140
msgid "Enable Dual Core (speedup)"
msgstr "Zapnout dvojité jádro (zrychlení)"
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:88
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:94
msgid "Enable Emulated CPU Clock Override"
msgstr ""
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:118
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:124
msgid "Enable Emulated Memory Size Override"
msgstr ""
-#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:78
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:88
msgid "Enable Encore Achievements"
msgstr ""
@@ -3969,10 +4064,14 @@ msgid "Enable Leaderboards"
msgstr ""
#: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:88
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:66
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:68
msgid "Enable MMU"
msgstr "Zapnout MMU"
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:78
+msgid "Enable Progress Notifications"
+msgstr ""
+
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:156
msgid "Enable Progressive Scan"
msgstr "Povolit Progresivní Skenování"
@@ -3986,15 +4085,15 @@ msgid "Enable Rich Presence"
msgstr ""
#: Source/Core/DolphinQt/Config/Mapping/GCPadWiiUConfigDialog.cpp:39
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:353
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:352
msgid "Enable Rumble"
msgstr ""
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:157
msgid "Enable Screen Saver"
msgstr "Povolit Spořič Obrazovky"
-#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:113
+#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:114
msgid "Enable Speaker Data"
msgstr "Povolit data reproduktorů"
@@ -4002,11 +4101,11 @@ msgstr "Povolit data reproduktorů"
msgid "Enable Unofficial Achievements"
msgstr ""
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:230
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:231
msgid "Enable Usage Statistics Reporting"
msgstr "Povolit hlášení statistik o užívání"
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158
msgid "Enable WiiConnect24 via WiiLink"
msgstr ""
@@ -4014,10 +4113,17 @@ msgstr ""
msgid "Enable Wireframe"
msgstr "Povolit Drátěný Model"
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:77
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:82
msgid "Enable Write-Back Cache (slow)"
msgstr ""
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:85
+msgid ""
+"Enable achievement badges.
Displays icons for the player, game, and "
+"achievements. Simple visual option, but will require a small amount of extra "
+"memory and time to download the images."
+msgstr ""
+
#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:64
msgid ""
"Enable competing in RetroAchievements leaderboards.
Displays a brief popup "
+"message whenever the player makes progress on an achievement that tracks an "
+"accumulated value, such as 60 out of 120 stars."
+msgstr ""
+
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:90
+msgid ""
"Enable unlocking achievements in Encore Mode.
Encore Mode re-enables "
"achievements the player has already unlocked on the site so that the player "
"will be notified if they meet the unlock conditions again, useful for custom "
@@ -4080,7 +4193,7 @@ msgstr ""
"Povolí výpočet příznaku výsledku plovoucí řadové čárky, nutné u některých "
"her (ZAPNUTO = Kompatibilní, VYPNUTO = Rychlé)"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:514
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:596
msgid ""
"Enables detection of arbitrary mipmaps, which some games use for special "
"distance-based effects.
May have false positives that result in "
@@ -4091,11 +4204,12 @@ msgid ""
"dolphin_emphasis>"
msgstr ""
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:79
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:84
msgid ""
-"Enables emulation of the CPU write-back cache.\n"
-"Enabling will have a significant impact on performance.\n"
-"This should be left disabled unless absolutely needed."
+"Enables emulation of the CPU write-back cache. Enabling will have a "
+"significant impact on performance. This should be left disabled unless "
+"absolutely needed.
If unsure, leave this unchecked."
+""
msgstr ""
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:365
@@ -4113,7 +4227,7 @@ msgid ""
"this unchecked."
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:522
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:604
msgid ""
"Enables scRGB HDR output (if supported by your graphics backend and "
"monitor). Fullscreen might be required.
This gives post process "
@@ -4136,7 +4250,6 @@ msgid ""
msgstr ""
#: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:100
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:68
msgid ""
"Enables the Memory Management Unit, needed for some games. (ON = Compatible, "
"OFF = Fast)"
@@ -4144,7 +4257,14 @@ msgstr ""
"Povolí Jednotku Správy Paměti, potřebnou v nějakých hrách. (ZAPNUTO = "
"Kompatibilní, VYPNUTO = Rychlé)"
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:193
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:70
+msgid ""
+"Enables the Memory Management Unit, needed for some games. (ON = Compatible, "
+"OFF = Fast)
If unsure, leave this unchecked."
+"dolphin_emphasis>"
+msgstr ""
+
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190
msgid ""
"Enables the WiiLink service for WiiConnect24 channels.\n"
"WiiLink is an alternate provider for the discontinued WiiConnect24 Channels "
@@ -4171,7 +4291,7 @@ msgstr ""
msgid "Encoding"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:615
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:616
msgid ""
"Encountered the following errors while opening save files:\n"
"%1\n"
@@ -4184,12 +4304,12 @@ msgid "Enet Didn't Initialize"
msgstr "Enet nebyl uaveden"
#: Source/Core/DiscIO/Enums.cpp:80
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:85
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:169
msgid "English"
msgstr "Angličtina"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:59
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:61
#: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:61
msgid "Enhancements"
msgstr "Vylepšení"
@@ -4220,84 +4340,84 @@ msgstr ""
msgid "Enter the DNS server to use:"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1300
+#: Source/Core/DolphinQt/MenuBar.cpp:1286
msgid "Enter the RSO module address:"
msgstr ""
#: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:194
#: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:250
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:261
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:262
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386
#: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:265
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:343
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:349
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:346
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:352
#: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:46
-#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:521
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:256
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:295
-#: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:232
-#: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:259
-#: Source/Core/DolphinQt/ConvertDialog.cpp:424
-#: Source/Core/DolphinQt/ConvertDialog.cpp:471
-#: Source/Core/DolphinQt/ConvertDialog.cpp:525
+#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:539
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:255
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:296
+#: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:229
+#: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:256
+#: Source/Core/DolphinQt/ConvertDialog.cpp:426
+#: Source/Core/DolphinQt/ConvertDialog.cpp:473
+#: Source/Core/DolphinQt/ConvertDialog.cpp:528
#: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:255
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:638
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:644
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:653
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:665
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:684
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:690
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:705
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:713
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:737
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:744
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:637
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:643
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:652
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:664
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:683
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:689
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:704
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:712
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:736
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:743
#: Source/Core/DolphinQt/Debugger/RegisterColumn.cpp:86
#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:282
#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:431
-#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:241
-#: Source/Core/DolphinQt/GBAWidget.cpp:576
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:346
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:376
-#: Source/Core/DolphinQt/Main.cpp:209 Source/Core/DolphinQt/Main.cpp:225
-#: Source/Core/DolphinQt/Main.cpp:232 Source/Core/DolphinQt/MainWindow.cpp:295
-#: Source/Core/DolphinQt/MainWindow.cpp:303
-#: Source/Core/DolphinQt/MainWindow.cpp:1108
-#: Source/Core/DolphinQt/MainWindow.cpp:1494
-#: Source/Core/DolphinQt/MainWindow.cpp:1501
-#: Source/Core/DolphinQt/MainWindow.cpp:1561
-#: Source/Core/DolphinQt/MainWindow.cpp:1568
-#: Source/Core/DolphinQt/MainWindow.cpp:1670
-#: Source/Core/DolphinQt/MenuBar.cpp:1204
-#: Source/Core/DolphinQt/MenuBar.cpp:1284
+#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:237
+#: Source/Core/DolphinQt/GBAWidget.cpp:578
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:347
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:377
+#: Source/Core/DolphinQt/Main.cpp:211 Source/Core/DolphinQt/Main.cpp:227
+#: Source/Core/DolphinQt/Main.cpp:234 Source/Core/DolphinQt/MainWindow.cpp:297
+#: Source/Core/DolphinQt/MainWindow.cpp:305
+#: Source/Core/DolphinQt/MainWindow.cpp:1110
+#: Source/Core/DolphinQt/MainWindow.cpp:1507
+#: Source/Core/DolphinQt/MainWindow.cpp:1514
+#: Source/Core/DolphinQt/MainWindow.cpp:1574
+#: Source/Core/DolphinQt/MainWindow.cpp:1581
+#: Source/Core/DolphinQt/MainWindow.cpp:1690
+#: Source/Core/DolphinQt/MenuBar.cpp:1190
+#: Source/Core/DolphinQt/MenuBar.cpp:1270
+#: Source/Core/DolphinQt/MenuBar.cpp:1293
#: Source/Core/DolphinQt/MenuBar.cpp:1307
-#: Source/Core/DolphinQt/MenuBar.cpp:1321
-#: Source/Core/DolphinQt/MenuBar.cpp:1352
-#: Source/Core/DolphinQt/MenuBar.cpp:1376
-#: Source/Core/DolphinQt/MenuBar.cpp:1597
-#: Source/Core/DolphinQt/MenuBar.cpp:1608
-#: Source/Core/DolphinQt/MenuBar.cpp:1620
-#: Source/Core/DolphinQt/MenuBar.cpp:1642
-#: Source/Core/DolphinQt/MenuBar.cpp:1668
-#: Source/Core/DolphinQt/MenuBar.cpp:1722
-#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:315
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:477
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:738
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:980
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1098
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1108
-#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:334
-#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:340
-#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:347
+#: Source/Core/DolphinQt/MenuBar.cpp:1339
+#: Source/Core/DolphinQt/MenuBar.cpp:1363
+#: Source/Core/DolphinQt/MenuBar.cpp:1584
+#: Source/Core/DolphinQt/MenuBar.cpp:1595
+#: Source/Core/DolphinQt/MenuBar.cpp:1607
+#: Source/Core/DolphinQt/MenuBar.cpp:1629
+#: Source/Core/DolphinQt/MenuBar.cpp:1655
+#: Source/Core/DolphinQt/MenuBar.cpp:1709
+#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:316
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:479
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:740
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:982
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1100
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1110
+#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:332
+#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:338
+#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:345
#: Source/Core/DolphinQt/RenderWidget.cpp:123
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:203
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:224
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:423
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:439
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:460
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:481
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:525
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:562
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:585
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:204
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:225
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:433
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:449
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:470
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:491
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:535
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:572
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:595
#: Source/Core/DolphinQt/Translation.cpp:322
msgid "Error"
msgstr "Chyba"
@@ -4306,13 +4426,13 @@ msgstr "Chyba"
msgid "Error Opening Adapter: %1"
msgstr ""
-#: Source/Core/Core/NetPlayServer.cpp:1493
+#: Source/Core/Core/NetPlayServer.cpp:1497
msgid "Error collecting save data!"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:260
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:526
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:533
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:262
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:613
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:620
msgid "Error converting value"
msgstr ""
@@ -4325,15 +4445,15 @@ msgstr ""
msgid "Error obtaining session list: %1"
msgstr ""
-#: Source/Core/DolphinQt/MainWindow.cpp:296
+#: Source/Core/DolphinQt/MainWindow.cpp:298
msgid "Error occurred while loading some texture packs"
msgstr ""
-#: Source/Core/Core/NetPlayClient.cpp:1847
+#: Source/Core/Core/NetPlayClient.cpp:1851
msgid "Error processing codes."
msgstr ""
-#: Source/Core/Core/NetPlayClient.cpp:1819
+#: Source/Core/Core/NetPlayClient.cpp:1823
msgid "Error processing data."
msgstr ""
@@ -4341,11 +4461,11 @@ msgstr ""
msgid "Error reading file: {0}"
msgstr ""
-#: Source/Core/Core/NetPlayServer.cpp:1529
+#: Source/Core/Core/NetPlayServer.cpp:1533
msgid "Error synchronizing cheat codes!"
msgstr ""
-#: Source/Core/Core/NetPlayServer.cpp:1515
+#: Source/Core/Core/NetPlayServer.cpp:1519
msgid "Error synchronizing save data!"
msgstr ""
@@ -4416,7 +4536,7 @@ msgstr ""
msgid "Euphoria"
msgstr "Euforie"
-#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:282
+#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:274
#: Source/Core/UICommon/NetPlayIndex.cpp:249
msgid "Europe"
msgstr "Evropa"
@@ -4445,11 +4565,11 @@ msgstr ""
msgid "Excluded: %1"
msgstr ""
-#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:73
+#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:72
msgid "Excluded: 0"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:107
+#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108
msgid "Exclusive Ubershaders"
msgstr ""
@@ -4497,14 +4617,14 @@ msgstr ""
msgid "Experimental"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:294
+#: Source/Core/DolphinQt/MenuBar.cpp:286
msgid "Export All Wii Saves"
msgstr "Exportovat všechny uložené hry Wii"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:422
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:447
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:492
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:499
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:423
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:448
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:493
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:500
msgid "Export Failed"
msgstr ""
@@ -4512,42 +4632,42 @@ msgstr ""
msgid "Export Recording"
msgstr "Exportovat Nahrávku"
-#: Source/Core/DolphinQt/MenuBar.cpp:753
+#: Source/Core/DolphinQt/MenuBar.cpp:745
msgid "Export Recording..."
msgstr "Exportovat Nahrávku..."
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:437
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:438
msgid "Export Save File"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:454
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:455
msgid "Export Save Files"
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:470
+#: Source/Core/DolphinQt/GameList/GameList.cpp:473
msgid "Export Wii Save"
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:388
+#: Source/Core/DolphinQt/GameList/GameList.cpp:389
msgid "Export Wii Saves"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:117
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:118
msgid "Export as .&gcs..."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:118
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:119
msgid "Export as .&sav..."
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1133
+#: Source/Core/DolphinQt/MenuBar.cpp:1115
#, c-format
msgctxt ""
msgid "Exported %n save(s)"
msgstr ""
#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:268
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:432
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:434
#: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:47
msgid "Extension"
msgstr "Rozšíření"
@@ -4560,7 +4680,7 @@ msgstr ""
msgid "Extension Motion Simulation"
msgstr ""
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:520
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:522
msgid "External"
msgstr ""
@@ -4568,35 +4688,35 @@ msgstr ""
msgid "External Frame Buffer (XFB)"
msgstr "Externí vyrovnávací paměť snímků (XFB)"
-#: Source/Core/DolphinQt/MenuBar.cpp:271
+#: Source/Core/DolphinQt/MenuBar.cpp:263
msgid "Extract Certificates from NAND"
msgstr ""
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:268
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:269
msgid "Extract Entire Disc..."
msgstr ""
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:292
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:293
msgid "Extract Entire Partition..."
msgstr ""
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:299
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:300
msgid "Extract File..."
msgstr "Extrahovat Soubor..."
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:241
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:242
msgid "Extract Files..."
msgstr ""
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:251
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:252
msgid "Extract System Data..."
msgstr ""
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:355
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:356
msgid "Extracting All Files..."
msgstr ""
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:356
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357
msgid "Extracting Directory..."
msgstr ""
@@ -4606,7 +4726,7 @@ msgid "FD"
msgstr ""
#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:37
-#: Source/Core/DolphinQt/MenuBar.cpp:228
+#: Source/Core/DolphinQt/MenuBar.cpp:220
msgid "FIFO Player"
msgstr "Přehrávač FIFO"
@@ -4614,17 +4734,17 @@ msgstr "Přehrávač FIFO"
msgid "Failed loading XML."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:347
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:348
msgid ""
"Failed opening memory card:\n"
"%1"
msgstr ""
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:454
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:456
msgid "Failed to add this session to the NetPlay index: %1"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1669
+#: Source/Core/DolphinQt/MenuBar.cpp:1656
msgid "Failed to append to signature file '%1'"
msgstr ""
@@ -4632,11 +4752,11 @@ msgstr ""
msgid "Failed to claim interface for BT passthrough: {0}"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:574
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:676
msgid "Failed to clear Skylander!"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:575
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:677
msgid "Failed to clear the Skylander from slot(%1)!"
msgstr ""
@@ -4644,7 +4764,7 @@ msgstr ""
msgid "Failed to connect to Redump.org"
msgstr ""
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:981
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:983
msgid "Failed to connect to server: %1"
msgstr ""
@@ -4665,15 +4785,15 @@ msgstr ""
msgid "Failed to create DXGI factory"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:289
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:291
msgid "Failed to create Infinity file"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:678
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:798
msgid "Failed to create Skylander file!"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:679
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:799
msgid ""
"Failed to create Skylander file:\n"
"%1\n"
@@ -4689,7 +4809,7 @@ msgstr ""
msgid "Failed to delete NetPlay memory card. Verify your write permissions."
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:841
+#: Source/Core/DolphinQt/GameList/GameList.cpp:854
msgid "Failed to delete the selected file."
msgstr ""
@@ -4697,36 +4817,36 @@ msgstr ""
msgid "Failed to detach kernel driver for BT passthrough: {0}"
msgstr ""
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:343
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:346
msgid "Failed to download codes."
msgstr "Stahování kódů selhalo."
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:738
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:737
msgid "Failed to dump %1: Can't open file"
msgstr ""
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:745
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:744
msgid "Failed to dump %1: Failed to write to file"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:488
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:489
msgctxt ""
msgid "Failed to export %n out of %1 save file(s)."
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:576
+#: Source/Core/DolphinQt/GameList/GameList.cpp:584
msgid "Failed to export the following save files:"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1204
+#: Source/Core/DolphinQt/MenuBar.cpp:1190
msgid "Failed to extract certificates from NAND"
msgstr ""
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386
msgid "Failed to extract file."
msgstr ""
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:261
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:262
msgid "Failed to extract system data."
msgstr ""
@@ -4741,29 +4861,29 @@ msgstr ""
msgid "Failed to find one or more D3D symbols"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:565
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:566
msgid "Failed to import \"%1\"."
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1109
+#: Source/Core/DolphinQt/MenuBar.cpp:1091
msgid ""
"Failed to import save file. Please launch the game once, then try again."
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1103
+#: Source/Core/DolphinQt/MenuBar.cpp:1085
msgid ""
"Failed to import save file. The given file appears to be corrupted or is not "
"a valid Wii save."
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1116
+#: Source/Core/DolphinQt/MenuBar.cpp:1098
msgid ""
"Failed to import save file. Your NAND may be corrupt, or something is "
"preventing access to files within it. Try repairing your NAND (Tools -> "
"Manage NAND -> Check NAND...), then import the save again."
msgstr ""
-#: Source/Core/DolphinQt/MainWindow.cpp:1108
+#: Source/Core/DolphinQt/MainWindow.cpp:1110
msgid "Failed to init core"
msgstr ""
@@ -4778,23 +4898,23 @@ msgstr ""
msgid "Failed to initialize renderer classes"
msgstr ""
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:204
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:205
msgid "Failed to install pack: %1"
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:619
-#: Source/Core/DolphinQt/MenuBar.cpp:1074
+#: Source/Core/DolphinQt/GameList/GameList.cpp:628
+#: Source/Core/DolphinQt/MenuBar.cpp:1056
msgid "Failed to install this title to the NAND."
msgstr ""
-#: Source/Core/DolphinQt/MainWindow.cpp:1594
+#: Source/Core/DolphinQt/MainWindow.cpp:1607
msgid ""
"Failed to listen on port %1. Is another instance of the NetPlay server "
"running?"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1321
-#: Source/Core/DolphinQt/MenuBar.cpp:1376
+#: Source/Core/DolphinQt/MenuBar.cpp:1307
+#: Source/Core/DolphinQt/MenuBar.cpp:1363
msgid "Failed to load RSO module at %1"
msgstr ""
@@ -4806,15 +4926,15 @@ msgstr ""
msgid "Failed to load dxgi.dll"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1608
+#: Source/Core/DolphinQt/MenuBar.cpp:1595
msgid "Failed to load map file '%1'"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:720
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:842
msgid "Failed to load the Skylander file!"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:721
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:843
msgid "Failed to load the Skylander file(%1)!\n"
msgstr ""
@@ -4828,8 +4948,12 @@ msgid ""
"update package."
msgstr ""
-#: Source/Core/DolphinQt/GBAWidget.cpp:576
-#: Source/Core/DolphinQt/MainWindow.cpp:1670
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:663
+msgid "Failed to modify Skylander!"
+msgstr ""
+
+#: Source/Core/DolphinQt/GBAWidget.cpp:578
+#: Source/Core/DolphinQt/MainWindow.cpp:1690
#: Source/Core/DolphinQt/RenderWidget.cpp:123
msgid "Failed to open '%1'"
msgstr ""
@@ -4856,40 +4980,40 @@ msgid ""
"Make sure there's an application assigned to open INI files."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:861
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:863
msgid "Failed to open file."
msgstr ""
-#: Source/Core/DolphinQt/MainWindow.cpp:1593
+#: Source/Core/DolphinQt/MainWindow.cpp:1606
msgid "Failed to open server"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:164
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:166
msgid "Failed to open the Infinity file!"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:165
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:167
msgid ""
"Failed to open the Infinity file(%1)!\n"
"File may already be in use on the base."
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:696
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:818
msgid "Failed to open the Skylander file!"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:697
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:819
msgid ""
"Failed to open the Skylander file(%1)!\n"
"File may already be in use on the portal."
msgstr ""
-#: Source/Core/DolphinQt/ConvertDialog.cpp:472
+#: Source/Core/DolphinQt/ConvertDialog.cpp:474
msgid "Failed to open the input file \"%1\"."
msgstr ""
-#: Source/Core/DiscIO/CompressedBlob.cpp:282 Source/Core/DiscIO/FileBlob.cpp:53
-#: Source/Core/DiscIO/WIABlob.cpp:2037
+#: Source/Core/DiscIO/CompressedBlob.cpp:287 Source/Core/DiscIO/FileBlob.cpp:58
+#: Source/Core/DiscIO/WIABlob.cpp:2043
msgid ""
"Failed to open the output file \"{0}\".\n"
"Check that you have permissions to write the target folder and that the "
@@ -4909,35 +5033,35 @@ msgstr ""
msgid "Failed to read DFF file."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:863
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:865
msgid "Failed to read from file."
msgstr ""
-#: Source/Core/DiscIO/CompressedBlob.cpp:373 Source/Core/DiscIO/FileBlob.cpp:93
-#: Source/Core/DiscIO/WIABlob.cpp:2052
+#: Source/Core/DiscIO/CompressedBlob.cpp:378 Source/Core/DiscIO/FileBlob.cpp:98
+#: Source/Core/DiscIO/WIABlob.cpp:2058
msgid "Failed to read from the input file \"{0}\"."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:423
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:641
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:424
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:642
msgid "Failed to read selected savefile(s) from memory card."
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:173
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:175
msgid "Failed to read the Infinity file!"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:174
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:176
msgid ""
"Failed to read the Infinity file(%1)!\n"
"File was too small."
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:706
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:828
msgid "Failed to read the Skylander file!"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:707
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:829
msgid ""
"Failed to read the Skylander file(%1)!\n"
"File was too small."
@@ -4947,18 +5071,18 @@ msgstr ""
msgid "Failed to read {0}"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:668
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:669
msgid "Failed to remove file."
msgstr ""
-#: Source/Core/DolphinQt/ConvertDialog.cpp:453
+#: Source/Core/DolphinQt/ConvertDialog.cpp:455
msgid ""
"Failed to remove junk data from file \"%1\".\n"
"\n"
"Would you like to convert it without removing junk data?"
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:647
+#: Source/Core/DolphinQt/GameList/GameList.cpp:658
msgid "Failed to remove this title from the NAND."
msgstr ""
@@ -4974,27 +5098,34 @@ msgstr ""
msgid "Failed to reset NetPlay redirect folder. Verify your write permissions."
msgstr ""
-#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:241
+#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:237
msgid "Failed to save FIFO log."
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1598
+#: Source/Core/DolphinQt/MenuBar.cpp:1585
msgid "Failed to save code map to path '%1'"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1642
+#: Source/Core/DolphinQt/MenuBar.cpp:1629
msgid "Failed to save signature file '%1'"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1621
+#: Source/Core/DolphinQt/MenuBar.cpp:1608
msgid "Failed to save symbol map to path '%1'"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1723
+#: Source/Core/DolphinQt/MenuBar.cpp:1710
msgid "Failed to save to signature file '%1'"
msgstr ""
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:225
+#: Source/Core/Core/Core.cpp:548
+msgid ""
+"Failed to sync SD card with folder. All changes made this session will be "
+"discarded on next boot if you do not manually re-issue a resync in Config > "
+"Wii > SD Card Settings > Convert File to Folder Now!"
+msgstr ""
+
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:226
msgid "Failed to uninstall pack: %1"
msgstr ""
@@ -5014,9 +5145,9 @@ msgstr ""
msgid "Failed to write config file!"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:573
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:676
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:691
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:574
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:677
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:692
msgid "Failed to write modified memory card to disk."
msgstr ""
@@ -5024,33 +5155,33 @@ msgstr ""
msgid "Failed to write redirected save."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:447
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:448
msgid "Failed to write savefile to disk."
msgstr ""
-#: Source/Core/DiscIO/CompressedBlob.cpp:377 Source/Core/DiscIO/FileBlob.cpp:99
-#: Source/Core/DiscIO/WIABlob.cpp:2056
+#: Source/Core/DiscIO/CompressedBlob.cpp:382
+#: Source/Core/DiscIO/FileBlob.cpp:104 Source/Core/DiscIO/WIABlob.cpp:2062
msgid ""
"Failed to write the output file \"{0}\".\n"
"Check that you have enough space available on the target drive."
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:617
-#: Source/Core/DolphinQt/GameList/GameList.cpp:645
-#: Source/Core/DolphinQt/GameList/GameList.cpp:840
-#: Source/Core/DolphinQt/MenuBar.cpp:1074
+#: Source/Core/DolphinQt/GameList/GameList.cpp:626
+#: Source/Core/DolphinQt/GameList/GameList.cpp:656
+#: Source/Core/DolphinQt/GameList/GameList.cpp:853
+#: Source/Core/DolphinQt/MenuBar.cpp:1056
msgid "Failure"
msgstr ""
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:183
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:184
msgid "Fair Input Delay"
msgstr ""
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:199
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:200
msgid "Fallback Region"
msgstr ""
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:210
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:211
msgid "Fallback Region:"
msgstr ""
@@ -5074,17 +5205,21 @@ msgstr ""
msgid "Field of View"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:233
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:235
msgid "Figure Number:"
msgstr ""
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:380
+msgid "Figure type"
+msgstr ""
+
#: Source/Core/DolphinQt/Config/InfoWidget.cpp:46
msgid "File Details"
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:991
+#: Source/Core/DolphinQt/GameList/GameList.cpp:1005
#: Source/Core/DolphinQt/GameList/GameListModel.cpp:229
-#: Source/Core/DolphinQt/MenuBar.cpp:652
+#: Source/Core/DolphinQt/MenuBar.cpp:644
msgid "File Format"
msgstr ""
@@ -5096,20 +5231,20 @@ msgstr ""
msgid "File Info"
msgstr "Informace o souboru"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:986
+#: Source/Core/DolphinQt/GameList/GameList.cpp:1000
#: Source/Core/DolphinQt/GameList/GameListModel.cpp:223
-#: Source/Core/DolphinQt/MenuBar.cpp:647
+#: Source/Core/DolphinQt/MenuBar.cpp:639
msgid "File Name"
msgstr "Název souboru"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:987
+#: Source/Core/DolphinQt/GameList/GameList.cpp:1001
#: Source/Core/DolphinQt/GameList/GameListModel.cpp:225
-#: Source/Core/DolphinQt/MenuBar.cpp:648
+#: Source/Core/DolphinQt/MenuBar.cpp:640
msgid "File Path"
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:990
-#: Source/Core/DolphinQt/MenuBar.cpp:651
+#: Source/Core/DolphinQt/GameList/GameList.cpp:1004
+#: Source/Core/DolphinQt/MenuBar.cpp:643
msgid "File Size"
msgstr "Velikost souboru"
@@ -5117,15 +5252,15 @@ msgstr "Velikost souboru"
msgid "File Size:"
msgstr ""
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:349
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:352
msgid "File contained no codes."
msgstr "Soubor neobsahoval žádné kódy"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:149
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:150
msgid "Filename"
msgstr ""
-#: Source/Core/DiscIO/CompressedBlob.cpp:289
+#: Source/Core/DiscIO/CompressedBlob.cpp:294
msgid "Files opened, ready to compress."
msgstr "Soubory otevřeny, připraveno ke komprimaci."
@@ -5135,11 +5270,11 @@ msgid ""
"{1}"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:833
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:835
msgid "Filesize does not match any known GameCube Memory Card size."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:836
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:838
msgid "Filesize in header mismatches actual card size."
msgstr ""
@@ -5147,7 +5282,7 @@ msgstr ""
msgid "Filesystem"
msgstr "Souborový systém"
-#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:102
+#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:103
msgid "Filters"
msgstr ""
@@ -5163,7 +5298,7 @@ msgstr ""
msgid "Finish Calibration"
msgstr ""
-#: Source/Core/DolphinQt/WiiUpdate.cpp:109
+#: Source/Core/DolphinQt/WiiUpdate.cpp:110
msgid ""
"Finishing the update...\n"
"This can take a while."
@@ -5171,19 +5306,19 @@ msgstr ""
#. i18n: One of the elements in the Skylanders games. Japanese: 火. For official translations
#. in other languages, check the SuperChargers manual at https://support.activision.com/manuals
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:333
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:349
msgid "Fire"
msgstr ""
-#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:40
+#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:41
msgid "First Person"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:127
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:128
msgid "Fix Checksums"
msgstr "Spravit Kontrolní Součty"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:690
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:691
msgid "Fix Checksums Failed"
msgstr ""
@@ -5193,7 +5328,7 @@ msgstr ""
#. i18n: These are the kinds of flags that a CPU uses (e.g. carry),
#. not the kinds of flags that represent e.g. countries
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:166
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167
#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:87
msgid "Flags"
msgstr ""
@@ -5202,12 +5337,12 @@ msgstr ""
#. i18n: Floating-point (non-integer) number
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:138
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:198
-#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:152
+#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:153
#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97
msgid "Float"
msgstr ""
-#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:565
+#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:566
msgid "Follow &branch"
msgstr ""
@@ -5227,35 +5362,35 @@ msgid ""
"\">refer to this page."
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:57
+#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:58
msgid "Force 16:9"
msgstr "Vynutit 16:9"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:117
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:152
msgid "Force 24-Bit Color"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:57
+#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:58
msgid "Force 4:3"
msgstr "Vynutit 4:3"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:96
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:115
msgid "Force Linear"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:103
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:122
msgid "Force Linear and 16x Anisotropic"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:97
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:116
msgid "Force Linear and 2x Anisotropic"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:99
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:118
msgid "Force Linear and 4x Anisotropic"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:101
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:120
msgid "Force Linear and 8x Anisotropic"
msgstr ""
@@ -5263,7 +5398,7 @@ msgstr ""
msgid "Force Listen Port:"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:95
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:114
msgid "Force Nearest"
msgstr ""
@@ -5275,7 +5410,7 @@ msgstr ""
msgid "Forced on because %1 doesn't support geometry shaders."
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:474
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:556
msgid ""
"Forces the game to output graphics for any aspect ratio. Use with \"Aspect "
"Ratio\" set to \"Force 16:9\" to force 4:3-only games to run at 16:9."
@@ -5285,7 +5420,7 @@ msgid ""
""
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:503
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:585
msgid ""
"Forces the game to render the RGB color channels in 24-bit, thereby "
"increasing quality by reducing color banding.
Has no impact on "
@@ -5293,7 +5428,7 @@ msgid ""
"unsure, leave this checked."
msgstr ""
-#: Source/Core/DolphinQt/ConvertDialog.cpp:59
+#: Source/Core/DolphinQt/ConvertDialog.cpp:60
msgid "Format:"
msgstr ""
@@ -5359,19 +5494,19 @@ msgstr ""
msgid "France"
msgstr "Francie"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:311
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:312
msgid "Free Blocks: %1"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:312
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:313
msgid "Free Files: %1"
msgstr ""
-#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:42
+#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:43
msgid "Free Look Control Type"
msgstr ""
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:468
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:470
msgid "Free Look Controller %1"
msgstr ""
@@ -5379,7 +5514,7 @@ msgstr ""
msgid "Free Look Settings"
msgstr ""
-#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:54
+#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:55
msgid ""
"Free Look allows for manipulation of the in-game camera. Different camera "
"types are available from the dropdown.
Disabling the "
@@ -3472,7 +3559,7 @@ msgid ""
"checked."
msgstr ""
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:96
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:97
msgid "Disc"
msgstr "Disk"
@@ -3506,25 +3593,25 @@ msgstr "Afstand"
msgid "Distance of travel from neutral position."
msgstr ""
-#: Source/Core/DolphinQt/Main.cpp:259
+#: Source/Core/DolphinQt/Main.cpp:264
msgid "Do you authorize Dolphin to report information to Dolphin's developers?"
msgstr ""
-#: Source/Core/DolphinQt/MainWindow.cpp:1692
+#: Source/Core/DolphinQt/MainWindow.cpp:1712
msgid "Do you want to add \"%1\" to the list of Game Paths?"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1241
+#: Source/Core/DolphinQt/MenuBar.cpp:1227
msgid "Do you want to clear the list of symbol names?"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:658
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:659
#, c-format
msgctxt ""
msgid "Do you want to delete the %n selected save file(s)?"
msgstr ""
-#: Source/Core/DolphinQt/MainWindow.cpp:933
+#: Source/Core/DolphinQt/MainWindow.cpp:935
msgid "Do you want to stop the current emulation?"
msgstr "Ønsker du at stoppe den igangværende emulation?"
@@ -3536,35 +3623,35 @@ msgstr ""
msgid "Dolby Pro Logic II Decoder"
msgstr "Dolby Pro Logic II dekoder"
-#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:219
-#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:230
+#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:215
+#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:226
msgid "Dolphin FIFO Log (*.dff)"
msgstr ""
-#: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:327
+#: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:326
msgid "Dolphin Game Mod Preset"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1536
-#: Source/Core/DolphinQt/MenuBar.cpp:1553
-#: Source/Core/DolphinQt/MenuBar.cpp:1572
+#: Source/Core/DolphinQt/MenuBar.cpp:1523
+#: Source/Core/DolphinQt/MenuBar.cpp:1540
+#: Source/Core/DolphinQt/MenuBar.cpp:1559
msgid "Dolphin Map File (*.map)"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:73
+#: Source/Core/DolphinQt/MenuBar.cpp:74
msgid "Dolphin Signature CSV File"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:73
+#: Source/Core/DolphinQt/MenuBar.cpp:74
msgid "Dolphin Signature File"
msgstr ""
-#: Source/Core/DolphinQt/MainWindow.cpp:1772
-#: Source/Core/DolphinQt/MainWindow.cpp:1843
+#: Source/Core/DolphinQt/MainWindow.cpp:1823
+#: Source/Core/DolphinQt/MainWindow.cpp:1894
msgid "Dolphin TAS Movies (*.dtm)"
msgstr "Dolphin TAS-film (*.dtm)"
-#: Source/Core/DolphinQt/ConvertDialog.cpp:326
+#: Source/Core/DolphinQt/ConvertDialog.cpp:327
msgid ""
"Dolphin can't convert NKit files to non-NKit files. Converting an NKit file "
"in Dolphin will result in another NKit file.\n"
@@ -3575,13 +3662,13 @@ msgid ""
"Do you want to continue anyway?"
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:279
+#: Source/Core/DolphinQt/GameList/GameList.cpp:280
msgid ""
"Dolphin could not find any GameCube/Wii ISOs or WADs.\n"
"Double-click here to set a games directory..."
msgstr ""
-#: Source/Core/DolphinQt/ConvertDialog.cpp:526
+#: Source/Core/DolphinQt/ConvertDialog.cpp:529
msgid "Dolphin failed to complete the requested action."
msgstr ""
@@ -3593,7 +3680,7 @@ msgstr ""
msgid "Dolphin is a free and open-source GameCube and Wii emulator."
msgstr "Dolphin er en gratis og åben source GameCube- og Wii-emulator."
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:998
msgid "Dolphin is too old for traversal server"
msgstr "Dolphin er for gammel til en gennemløbsserver"
@@ -3607,7 +3694,7 @@ msgstr ""
msgid "Dolphin is unable to verify unlicensed discs."
msgstr ""
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:217
msgid ""
"Dolphin will use this for titles whose region cannot be determined "
"automatically."
@@ -3622,15 +3709,15 @@ msgstr "Dolphins snydesystem er slået fra."
msgid "Domain"
msgstr ""
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:193
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:194
msgid "Don't Update"
msgstr "Opdater ikke"
-#: Source/Core/DolphinQt/NKitWarningDialog.cpp:53
+#: Source/Core/DolphinQt/NKitWarningDialog.cpp:56
msgid "Don't show this again"
msgstr ""
-#: Source/Core/DiscIO/CompressedBlob.cpp:369
+#: Source/Core/DiscIO/CompressedBlob.cpp:374
msgid "Done compressing disc image."
msgstr "Komprimering af diskaftryk fuldført."
@@ -3643,37 +3730,37 @@ msgstr ""
#. i18n: A double precision floating point number
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:139
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:199
-#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:154
+#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:155
msgid "Double"
msgstr ""
#: Source/Core/Core/FreeLookManager.cpp:89
#: Source/Core/Core/HW/WiimoteEmu/Extension/Guitar.cpp:80
#: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:35
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:43
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:44
#: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:21
#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUAccelerometer.cpp:19
#: Source/Core/InputCommon/ControllerEmu/ControllerEmu.h:24
msgid "Down"
msgstr "Ned"
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:86
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:87
msgid "Download Codes"
msgstr "Download koder"
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:88
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:89
msgid "Download Codes from the WiiRD Database"
msgstr ""
-#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:148
+#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:153
msgid "Download Game Covers from GameTDB.com for Use in Grid Mode"
msgstr ""
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:370
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:373
msgid "Download complete"
msgstr ""
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:371
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:374
msgid "Downloaded %1 codes. (added %2)"
msgstr ""
@@ -3696,7 +3783,7 @@ msgstr ""
msgid "Dual View"
msgstr ""
-#: Source/Core/Core/HW/EXI/EXI_Device.h:95
+#: Source/Core/Core/HW/EXI/EXI_Device.h:94
msgid "Dummy"
msgstr "Dukke"
@@ -3716,7 +3803,7 @@ msgstr ""
msgid "Dump &MRAM"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:814
+#: Source/Core/DolphinQt/MenuBar.cpp:806
msgid "Dump Audio"
msgstr "Dump Lyd"
@@ -3728,7 +3815,7 @@ msgstr ""
msgid "Dump EFB Target"
msgstr "Drop EFB Mål"
-#: Source/Core/DolphinQt/MenuBar.cpp:808
+#: Source/Core/DolphinQt/MenuBar.cpp:800
msgid "Dump Frames"
msgstr "Dump Billeder"
@@ -3801,12 +3888,12 @@ msgid "Duration of Turbo Button Release (frames):"
msgstr ""
#: Source/Core/DiscIO/Enums.cpp:95
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174
msgid "Dutch"
msgstr "Hollandsk"
-#: Source/Core/DolphinQt/MenuBar.cpp:215
+#: Source/Core/DolphinQt/MenuBar.cpp:207
msgid "E&xit"
msgstr "F&orlad"
@@ -3822,7 +3909,7 @@ msgid ""
"driver."
msgstr ""
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:185
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:186
msgid ""
"Each player sends their own inputs to the game, with equal buffer size for "
"all players, configured by the host.\n"
@@ -3836,7 +3923,7 @@ msgstr "Tidlige hukommelsesopdateringer"
#. i18n: One of the elements in the Skylanders games. Japanese: 土. For official translations
#. in other languages, check the SuperChargers manual at https://support.activision.com/manuals
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:336
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:352
msgid "Earth"
msgstr ""
@@ -3849,7 +3936,7 @@ msgstr ""
msgid "Edit Breakpoint"
msgstr ""
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:426
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:430
msgid "Edit..."
msgstr ""
@@ -3883,7 +3970,7 @@ msgstr "Skub ud disken"
#. i18n: Elements are a trait of Skylanders figures. For official translations of this term,
#. check the Skylanders SuperChargers manual at https://support.activision.com/manuals
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:289
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:300
msgid "Element"
msgstr ""
@@ -3891,11 +3978,11 @@ msgstr ""
msgid "Embedded Frame Buffer (EFB)"
msgstr "Indlejret framebuffer (EFB)"
-#: Source/Core/Core/State.cpp:541
+#: Source/Core/Core/State.cpp:629
msgid "Empty"
msgstr "Tom"
-#: Source/Core/Core/Core.cpp:246
+#: Source/Core/Core/Core.cpp:247
msgid "Emu Thread already running"
msgstr "Emulatortråd kører i forvejen"
@@ -3903,15 +3990,15 @@ msgstr "Emulatortråd kører i forvejen"
msgid "Emulate Disc Speed"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:60
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:61
msgid "Emulate Infinity Base"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:146
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:157
msgid "Emulate Skylander Portal"
msgstr ""
-#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:110
+#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:111
msgid "Emulate the Wii's Bluetooth adapter"
msgstr "Emulér Wii's adapter til bluetooth"
@@ -3921,11 +4008,11 @@ msgid ""
"Defaults to True"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:230
+#: Source/Core/DolphinQt/MenuBar.cpp:222
msgid "Emulated USB Devices"
msgstr ""
-#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:141
+#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:142
msgid "Emulated Wii Remote"
msgstr "Emuleret Wii Remote"
@@ -3945,12 +4032,12 @@ msgstr "Emulationshastighed"
msgid "Emulation must be started to record."
msgstr ""
-#: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:29
-#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:33
+#: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:30
+#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:34
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:120
-#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:129
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:402
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:419
+#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:130
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:406
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:423
msgid "Enable"
msgstr ""
@@ -3958,6 +4045,10 @@ msgstr ""
msgid "Enable API Validation Layers"
msgstr "Aktivér API Valideringslag"
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:83
+msgid "Enable Achievement Badges"
+msgstr ""
+
#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:60
msgid "Enable Achievements"
msgstr ""
@@ -3966,15 +4057,19 @@ msgstr ""
msgid "Enable Audio Stretching"
msgstr "Aktivér lydtrækning"
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:142
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:143
msgid "Enable Cheats"
msgstr "Aktivér snydekoder"
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:155
+#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:53
+msgid "Enable Controller Inpu&t"
+msgstr ""
+
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:161
msgid "Enable Custom RTC"
msgstr "Aktivér tilpasset RTC"
-#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:149
+#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:154
msgid "Enable Debugging UI"
msgstr ""
@@ -3982,19 +4077,19 @@ msgstr ""
msgid "Enable Dual Core"
msgstr "Aktivér dualcore"
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:139
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:140
msgid "Enable Dual Core (speedup)"
msgstr "Aktivér dualcore (højere hastighed)"
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:88
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:94
msgid "Enable Emulated CPU Clock Override"
msgstr "Aktivér Emuleret CPU Clock Tilsidesætning "
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:118
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:124
msgid "Enable Emulated Memory Size Override"
msgstr ""
-#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:78
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:88
msgid "Enable Encore Achievements"
msgstr ""
@@ -4011,10 +4106,14 @@ msgid "Enable Leaderboards"
msgstr ""
#: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:88
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:66
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:68
msgid "Enable MMU"
msgstr "Aktivér MMU"
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:78
+msgid "Enable Progress Notifications"
+msgstr ""
+
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:156
msgid "Enable Progressive Scan"
msgstr "Aktivér Progressiv Skanning"
@@ -4028,15 +4127,15 @@ msgid "Enable Rich Presence"
msgstr ""
#: Source/Core/DolphinQt/Config/Mapping/GCPadWiiUConfigDialog.cpp:39
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:353
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:352
msgid "Enable Rumble"
msgstr "Aktivér vibration"
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:157
msgid "Enable Screen Saver"
msgstr "Aktivér Pauseskærm"
-#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:113
+#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:114
msgid "Enable Speaker Data"
msgstr "Aktivér højttalerdata"
@@ -4044,11 +4143,11 @@ msgstr "Aktivér højttalerdata"
msgid "Enable Unofficial Achievements"
msgstr ""
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:230
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:231
msgid "Enable Usage Statistics Reporting"
msgstr "Aktivér rapportering af brugsstatistik"
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158
msgid "Enable WiiConnect24 via WiiLink"
msgstr ""
@@ -4056,10 +4155,17 @@ msgstr ""
msgid "Enable Wireframe"
msgstr "Aktivér Wireframe"
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:77
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:82
msgid "Enable Write-Back Cache (slow)"
msgstr ""
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:85
+msgid ""
+"Enable achievement badges.
Displays icons for the player, game, and "
+"achievements. Simple visual option, but will require a small amount of extra "
+"memory and time to download the images."
+msgstr ""
+
#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:64
msgid ""
"Enable competing in RetroAchievements leaderboards.
Displays a brief popup "
+"message whenever the player makes progress on an achievement that tracks an "
+"accumulated value, such as 60 out of 120 stars."
+msgstr ""
+
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:90
+msgid ""
"Enable unlocking achievements in Encore Mode.
Encore Mode re-enables "
"achievements the player has already unlocked on the site so that the player "
"will be notified if they meet the unlock conditions again, useful for custom "
@@ -4124,7 +4237,7 @@ msgstr ""
"Aktivér beregning af Floating Point resultatflag anvendt i enkelte spil. "
"(TIL = Kompatibel, FRA = Hurtig)"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:514
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:596
msgid ""
"Enables detection of arbitrary mipmaps, which some games use for special "
"distance-based effects.
May have false positives that result in "
@@ -4135,11 +4248,12 @@ msgid ""
"dolphin_emphasis>"
msgstr ""
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:79
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:84
msgid ""
-"Enables emulation of the CPU write-back cache.\n"
-"Enabling will have a significant impact on performance.\n"
-"This should be left disabled unless absolutely needed."
+"Enables emulation of the CPU write-back cache. Enabling will have a "
+"significant impact on performance. This should be left disabled unless "
+"absolutely needed.
If unsure, leave this unchecked."
+""
msgstr ""
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:365
@@ -4157,7 +4271,7 @@ msgid ""
"this unchecked."
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:522
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:604
msgid ""
"Enables scRGB HDR output (if supported by your graphics backend and "
"monitor). Fullscreen might be required.
This gives post process "
@@ -4181,7 +4295,6 @@ msgid ""
msgstr ""
#: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:100
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:68
msgid ""
"Enables the Memory Management Unit, needed for some games. (ON = Compatible, "
"OFF = Fast)"
@@ -4189,7 +4302,14 @@ msgstr ""
"Aktiverer Memory Management Unit nødvendigt i nogle spil. (TIL = Kompatibel, "
"FRA = Hurtig)"
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:193
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:70
+msgid ""
+"Enables the Memory Management Unit, needed for some games. (ON = Compatible, "
+"OFF = Fast)
If unsure, leave this unchecked."
+"dolphin_emphasis>"
+msgstr ""
+
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190
msgid ""
"Enables the WiiLink service for WiiConnect24 channels.\n"
"WiiLink is an alternate provider for the discontinued WiiConnect24 Channels "
@@ -4216,7 +4336,7 @@ msgstr ""
msgid "Encoding"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:615
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:616
msgid ""
"Encountered the following errors while opening save files:\n"
"%1\n"
@@ -4229,12 +4349,12 @@ msgid "Enet Didn't Initialize"
msgstr "Enet blev ikke initialiseret"
#: Source/Core/DiscIO/Enums.cpp:80
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:85
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:169
msgid "English"
msgstr "Engelsk"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:59
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:61
#: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:61
msgid "Enhancements"
msgstr "Forbedringer"
@@ -4265,84 +4385,84 @@ msgstr "Indtast kodeord"
msgid "Enter the DNS server to use:"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1300
+#: Source/Core/DolphinQt/MenuBar.cpp:1286
msgid "Enter the RSO module address:"
msgstr ""
#: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:194
#: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:250
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:261
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:262
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386
#: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:265
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:343
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:349
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:346
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:352
#: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:46
-#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:521
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:256
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:295
-#: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:232
-#: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:259
-#: Source/Core/DolphinQt/ConvertDialog.cpp:424
-#: Source/Core/DolphinQt/ConvertDialog.cpp:471
-#: Source/Core/DolphinQt/ConvertDialog.cpp:525
+#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:539
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:255
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:296
+#: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:229
+#: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:256
+#: Source/Core/DolphinQt/ConvertDialog.cpp:426
+#: Source/Core/DolphinQt/ConvertDialog.cpp:473
+#: Source/Core/DolphinQt/ConvertDialog.cpp:528
#: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:255
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:638
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:644
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:653
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:665
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:684
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:690
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:705
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:713
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:737
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:744
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:637
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:643
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:652
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:664
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:683
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:689
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:704
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:712
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:736
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:743
#: Source/Core/DolphinQt/Debugger/RegisterColumn.cpp:86
#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:282
#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:431
-#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:241
-#: Source/Core/DolphinQt/GBAWidget.cpp:576
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:346
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:376
-#: Source/Core/DolphinQt/Main.cpp:209 Source/Core/DolphinQt/Main.cpp:225
-#: Source/Core/DolphinQt/Main.cpp:232 Source/Core/DolphinQt/MainWindow.cpp:295
-#: Source/Core/DolphinQt/MainWindow.cpp:303
-#: Source/Core/DolphinQt/MainWindow.cpp:1108
-#: Source/Core/DolphinQt/MainWindow.cpp:1494
-#: Source/Core/DolphinQt/MainWindow.cpp:1501
-#: Source/Core/DolphinQt/MainWindow.cpp:1561
-#: Source/Core/DolphinQt/MainWindow.cpp:1568
-#: Source/Core/DolphinQt/MainWindow.cpp:1670
-#: Source/Core/DolphinQt/MenuBar.cpp:1204
-#: Source/Core/DolphinQt/MenuBar.cpp:1284
+#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:237
+#: Source/Core/DolphinQt/GBAWidget.cpp:578
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:347
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:377
+#: Source/Core/DolphinQt/Main.cpp:211 Source/Core/DolphinQt/Main.cpp:227
+#: Source/Core/DolphinQt/Main.cpp:234 Source/Core/DolphinQt/MainWindow.cpp:297
+#: Source/Core/DolphinQt/MainWindow.cpp:305
+#: Source/Core/DolphinQt/MainWindow.cpp:1110
+#: Source/Core/DolphinQt/MainWindow.cpp:1507
+#: Source/Core/DolphinQt/MainWindow.cpp:1514
+#: Source/Core/DolphinQt/MainWindow.cpp:1574
+#: Source/Core/DolphinQt/MainWindow.cpp:1581
+#: Source/Core/DolphinQt/MainWindow.cpp:1690
+#: Source/Core/DolphinQt/MenuBar.cpp:1190
+#: Source/Core/DolphinQt/MenuBar.cpp:1270
+#: Source/Core/DolphinQt/MenuBar.cpp:1293
#: Source/Core/DolphinQt/MenuBar.cpp:1307
-#: Source/Core/DolphinQt/MenuBar.cpp:1321
-#: Source/Core/DolphinQt/MenuBar.cpp:1352
-#: Source/Core/DolphinQt/MenuBar.cpp:1376
-#: Source/Core/DolphinQt/MenuBar.cpp:1597
-#: Source/Core/DolphinQt/MenuBar.cpp:1608
-#: Source/Core/DolphinQt/MenuBar.cpp:1620
-#: Source/Core/DolphinQt/MenuBar.cpp:1642
-#: Source/Core/DolphinQt/MenuBar.cpp:1668
-#: Source/Core/DolphinQt/MenuBar.cpp:1722
-#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:315
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:477
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:738
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:980
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1098
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1108
-#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:334
-#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:340
-#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:347
+#: Source/Core/DolphinQt/MenuBar.cpp:1339
+#: Source/Core/DolphinQt/MenuBar.cpp:1363
+#: Source/Core/DolphinQt/MenuBar.cpp:1584
+#: Source/Core/DolphinQt/MenuBar.cpp:1595
+#: Source/Core/DolphinQt/MenuBar.cpp:1607
+#: Source/Core/DolphinQt/MenuBar.cpp:1629
+#: Source/Core/DolphinQt/MenuBar.cpp:1655
+#: Source/Core/DolphinQt/MenuBar.cpp:1709
+#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:316
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:479
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:740
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:982
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1100
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1110
+#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:332
+#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:338
+#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:345
#: Source/Core/DolphinQt/RenderWidget.cpp:123
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:203
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:224
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:423
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:439
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:460
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:481
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:525
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:562
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:585
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:204
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:225
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:433
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:449
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:470
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:491
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:535
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:572
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:595
#: Source/Core/DolphinQt/Translation.cpp:322
msgid "Error"
msgstr "Fejl"
@@ -4351,13 +4471,13 @@ msgstr "Fejl"
msgid "Error Opening Adapter: %1"
msgstr ""
-#: Source/Core/Core/NetPlayServer.cpp:1493
+#: Source/Core/Core/NetPlayServer.cpp:1497
msgid "Error collecting save data!"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:260
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:526
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:533
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:262
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:613
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:620
msgid "Error converting value"
msgstr ""
@@ -4371,15 +4491,15 @@ msgstr ""
msgid "Error obtaining session list: %1"
msgstr ""
-#: Source/Core/DolphinQt/MainWindow.cpp:296
+#: Source/Core/DolphinQt/MainWindow.cpp:298
msgid "Error occurred while loading some texture packs"
msgstr ""
-#: Source/Core/Core/NetPlayClient.cpp:1847
+#: Source/Core/Core/NetPlayClient.cpp:1851
msgid "Error processing codes."
msgstr ""
-#: Source/Core/Core/NetPlayClient.cpp:1819
+#: Source/Core/Core/NetPlayClient.cpp:1823
msgid "Error processing data."
msgstr ""
@@ -4387,11 +4507,11 @@ msgstr ""
msgid "Error reading file: {0}"
msgstr ""
-#: Source/Core/Core/NetPlayServer.cpp:1529
+#: Source/Core/Core/NetPlayServer.cpp:1533
msgid "Error synchronizing cheat codes!"
msgstr ""
-#: Source/Core/Core/NetPlayServer.cpp:1515
+#: Source/Core/Core/NetPlayServer.cpp:1519
msgid "Error synchronizing save data!"
msgstr ""
@@ -4462,7 +4582,7 @@ msgstr "Fejl fundet i {0} ubrugte blokke i {1} partitionen."
msgid "Euphoria"
msgstr "Eufori"
-#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:282
+#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:274
#: Source/Core/UICommon/NetPlayIndex.cpp:249
msgid "Europe"
msgstr "Europa"
@@ -4491,11 +4611,11 @@ msgstr ""
msgid "Excluded: %1"
msgstr ""
-#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:73
+#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:72
msgid "Excluded: 0"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:107
+#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108
msgid "Exclusive Ubershaders"
msgstr ""
@@ -4543,14 +4663,14 @@ msgstr ""
msgid "Experimental"
msgstr "Eksperimentel"
-#: Source/Core/DolphinQt/MenuBar.cpp:294
+#: Source/Core/DolphinQt/MenuBar.cpp:286
msgid "Export All Wii Saves"
msgstr "Eksporter alle Wii-saves"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:422
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:447
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:492
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:499
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:423
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:448
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:493
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:500
msgid "Export Failed"
msgstr ""
@@ -4558,42 +4678,42 @@ msgstr ""
msgid "Export Recording"
msgstr "Eksporter optagelse"
-#: Source/Core/DolphinQt/MenuBar.cpp:753
+#: Source/Core/DolphinQt/MenuBar.cpp:745
msgid "Export Recording..."
msgstr "Eksporter optagelse..."
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:437
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:438
msgid "Export Save File"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:454
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:455
msgid "Export Save Files"
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:470
+#: Source/Core/DolphinQt/GameList/GameList.cpp:473
msgid "Export Wii Save"
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:388
+#: Source/Core/DolphinQt/GameList/GameList.cpp:389
msgid "Export Wii Saves"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:117
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:118
msgid "Export as .&gcs..."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:118
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:119
msgid "Export as .&sav..."
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1133
+#: Source/Core/DolphinQt/MenuBar.cpp:1115
#, c-format
msgctxt ""
msgid "Exported %n save(s)"
msgstr ""
#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:268
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:432
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:434
#: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:47
msgid "Extension"
msgstr "Udvidelse"
@@ -4606,7 +4726,7 @@ msgstr ""
msgid "Extension Motion Simulation"
msgstr ""
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:520
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:522
msgid "External"
msgstr ""
@@ -4614,35 +4734,35 @@ msgstr ""
msgid "External Frame Buffer (XFB)"
msgstr "Ekstern framebuffer (XFB)"
-#: Source/Core/DolphinQt/MenuBar.cpp:271
+#: Source/Core/DolphinQt/MenuBar.cpp:263
msgid "Extract Certificates from NAND"
msgstr ""
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:268
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:269
msgid "Extract Entire Disc..."
msgstr ""
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:292
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:293
msgid "Extract Entire Partition..."
msgstr ""
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:299
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:300
msgid "Extract File..."
msgstr "Udpak fil..."
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:241
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:242
msgid "Extract Files..."
msgstr ""
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:251
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:252
msgid "Extract System Data..."
msgstr ""
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:355
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:356
msgid "Extracting All Files..."
msgstr ""
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:356
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357
msgid "Extracting Directory..."
msgstr ""
@@ -4652,7 +4772,7 @@ msgid "FD"
msgstr ""
#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:37
-#: Source/Core/DolphinQt/MenuBar.cpp:228
+#: Source/Core/DolphinQt/MenuBar.cpp:220
msgid "FIFO Player"
msgstr "FIFO-afspiller"
@@ -4660,17 +4780,17 @@ msgstr "FIFO-afspiller"
msgid "Failed loading XML."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:347
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:348
msgid ""
"Failed opening memory card:\n"
"%1"
msgstr ""
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:454
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:456
msgid "Failed to add this session to the NetPlay index: %1"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1669
+#: Source/Core/DolphinQt/MenuBar.cpp:1656
msgid "Failed to append to signature file '%1'"
msgstr ""
@@ -4678,11 +4798,11 @@ msgstr ""
msgid "Failed to claim interface for BT passthrough: {0}"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:574
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:676
msgid "Failed to clear Skylander!"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:575
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:677
msgid "Failed to clear the Skylander from slot(%1)!"
msgstr ""
@@ -4690,7 +4810,7 @@ msgstr ""
msgid "Failed to connect to Redump.org"
msgstr ""
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:981
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:983
msgid "Failed to connect to server: %1"
msgstr ""
@@ -4711,15 +4831,15 @@ msgstr ""
msgid "Failed to create DXGI factory"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:289
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:291
msgid "Failed to create Infinity file"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:678
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:798
msgid "Failed to create Skylander file!"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:679
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:799
msgid ""
"Failed to create Skylander file:\n"
"%1\n"
@@ -4735,7 +4855,7 @@ msgstr ""
msgid "Failed to delete NetPlay memory card. Verify your write permissions."
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:841
+#: Source/Core/DolphinQt/GameList/GameList.cpp:854
msgid "Failed to delete the selected file."
msgstr ""
@@ -4743,36 +4863,36 @@ msgstr ""
msgid "Failed to detach kernel driver for BT passthrough: {0}"
msgstr ""
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:343
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:346
msgid "Failed to download codes."
msgstr "Kunne ikke downloade koder."
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:738
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:737
msgid "Failed to dump %1: Can't open file"
msgstr ""
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:745
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:744
msgid "Failed to dump %1: Failed to write to file"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:488
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:489
msgctxt ""
msgid "Failed to export %n out of %1 save file(s)."
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:576
+#: Source/Core/DolphinQt/GameList/GameList.cpp:584
msgid "Failed to export the following save files:"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1204
+#: Source/Core/DolphinQt/MenuBar.cpp:1190
msgid "Failed to extract certificates from NAND"
msgstr ""
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386
msgid "Failed to extract file."
msgstr ""
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:261
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:262
msgid "Failed to extract system data."
msgstr ""
@@ -4787,29 +4907,29 @@ msgstr ""
msgid "Failed to find one or more D3D symbols"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:565
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:566
msgid "Failed to import \"%1\"."
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1109
+#: Source/Core/DolphinQt/MenuBar.cpp:1091
msgid ""
"Failed to import save file. Please launch the game once, then try again."
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1103
+#: Source/Core/DolphinQt/MenuBar.cpp:1085
msgid ""
"Failed to import save file. The given file appears to be corrupted or is not "
"a valid Wii save."
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1116
+#: Source/Core/DolphinQt/MenuBar.cpp:1098
msgid ""
"Failed to import save file. Your NAND may be corrupt, or something is "
"preventing access to files within it. Try repairing your NAND (Tools -> "
"Manage NAND -> Check NAND...), then import the save again."
msgstr ""
-#: Source/Core/DolphinQt/MainWindow.cpp:1108
+#: Source/Core/DolphinQt/MainWindow.cpp:1110
msgid "Failed to init core"
msgstr ""
@@ -4824,23 +4944,23 @@ msgstr ""
msgid "Failed to initialize renderer classes"
msgstr ""
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:204
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:205
msgid "Failed to install pack: %1"
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:619
-#: Source/Core/DolphinQt/MenuBar.cpp:1074
+#: Source/Core/DolphinQt/GameList/GameList.cpp:628
+#: Source/Core/DolphinQt/MenuBar.cpp:1056
msgid "Failed to install this title to the NAND."
msgstr ""
-#: Source/Core/DolphinQt/MainWindow.cpp:1594
+#: Source/Core/DolphinQt/MainWindow.cpp:1607
msgid ""
"Failed to listen on port %1. Is another instance of the NetPlay server "
"running?"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1321
-#: Source/Core/DolphinQt/MenuBar.cpp:1376
+#: Source/Core/DolphinQt/MenuBar.cpp:1307
+#: Source/Core/DolphinQt/MenuBar.cpp:1363
msgid "Failed to load RSO module at %1"
msgstr ""
@@ -4852,15 +4972,15 @@ msgstr ""
msgid "Failed to load dxgi.dll"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1608
+#: Source/Core/DolphinQt/MenuBar.cpp:1595
msgid "Failed to load map file '%1'"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:720
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:842
msgid "Failed to load the Skylander file!"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:721
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:843
msgid "Failed to load the Skylander file(%1)!\n"
msgstr ""
@@ -4874,8 +4994,12 @@ msgid ""
"update package."
msgstr ""
-#: Source/Core/DolphinQt/GBAWidget.cpp:576
-#: Source/Core/DolphinQt/MainWindow.cpp:1670
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:663
+msgid "Failed to modify Skylander!"
+msgstr ""
+
+#: Source/Core/DolphinQt/GBAWidget.cpp:578
+#: Source/Core/DolphinQt/MainWindow.cpp:1690
#: Source/Core/DolphinQt/RenderWidget.cpp:123
msgid "Failed to open '%1'"
msgstr ""
@@ -4902,40 +5026,40 @@ msgid ""
"Make sure there's an application assigned to open INI files."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:861
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:863
msgid "Failed to open file."
msgstr ""
-#: Source/Core/DolphinQt/MainWindow.cpp:1593
+#: Source/Core/DolphinQt/MainWindow.cpp:1606
msgid "Failed to open server"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:164
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:166
msgid "Failed to open the Infinity file!"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:165
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:167
msgid ""
"Failed to open the Infinity file(%1)!\n"
"File may already be in use on the base."
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:696
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:818
msgid "Failed to open the Skylander file!"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:697
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:819
msgid ""
"Failed to open the Skylander file(%1)!\n"
"File may already be in use on the portal."
msgstr ""
-#: Source/Core/DolphinQt/ConvertDialog.cpp:472
+#: Source/Core/DolphinQt/ConvertDialog.cpp:474
msgid "Failed to open the input file \"%1\"."
msgstr ""
-#: Source/Core/DiscIO/CompressedBlob.cpp:282 Source/Core/DiscIO/FileBlob.cpp:53
-#: Source/Core/DiscIO/WIABlob.cpp:2037
+#: Source/Core/DiscIO/CompressedBlob.cpp:287 Source/Core/DiscIO/FileBlob.cpp:58
+#: Source/Core/DiscIO/WIABlob.cpp:2043
msgid ""
"Failed to open the output file \"{0}\".\n"
"Check that you have permissions to write the target folder and that the "
@@ -4955,35 +5079,35 @@ msgstr ""
msgid "Failed to read DFF file."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:863
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:865
msgid "Failed to read from file."
msgstr ""
-#: Source/Core/DiscIO/CompressedBlob.cpp:373 Source/Core/DiscIO/FileBlob.cpp:93
-#: Source/Core/DiscIO/WIABlob.cpp:2052
+#: Source/Core/DiscIO/CompressedBlob.cpp:378 Source/Core/DiscIO/FileBlob.cpp:98
+#: Source/Core/DiscIO/WIABlob.cpp:2058
msgid "Failed to read from the input file \"{0}\"."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:423
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:641
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:424
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:642
msgid "Failed to read selected savefile(s) from memory card."
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:173
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:175
msgid "Failed to read the Infinity file!"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:174
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:176
msgid ""
"Failed to read the Infinity file(%1)!\n"
"File was too small."
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:706
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:828
msgid "Failed to read the Skylander file!"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:707
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:829
msgid ""
"Failed to read the Skylander file(%1)!\n"
"File was too small."
@@ -4993,18 +5117,18 @@ msgstr ""
msgid "Failed to read {0}"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:668
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:669
msgid "Failed to remove file."
msgstr ""
-#: Source/Core/DolphinQt/ConvertDialog.cpp:453
+#: Source/Core/DolphinQt/ConvertDialog.cpp:455
msgid ""
"Failed to remove junk data from file \"%1\".\n"
"\n"
"Would you like to convert it without removing junk data?"
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:647
+#: Source/Core/DolphinQt/GameList/GameList.cpp:658
msgid "Failed to remove this title from the NAND."
msgstr ""
@@ -5020,27 +5144,34 @@ msgstr ""
msgid "Failed to reset NetPlay redirect folder. Verify your write permissions."
msgstr ""
-#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:241
+#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:237
msgid "Failed to save FIFO log."
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1598
+#: Source/Core/DolphinQt/MenuBar.cpp:1585
msgid "Failed to save code map to path '%1'"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1642
+#: Source/Core/DolphinQt/MenuBar.cpp:1629
msgid "Failed to save signature file '%1'"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1621
+#: Source/Core/DolphinQt/MenuBar.cpp:1608
msgid "Failed to save symbol map to path '%1'"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1723
+#: Source/Core/DolphinQt/MenuBar.cpp:1710
msgid "Failed to save to signature file '%1'"
msgstr ""
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:225
+#: Source/Core/Core/Core.cpp:548
+msgid ""
+"Failed to sync SD card with folder. All changes made this session will be "
+"discarded on next boot if you do not manually re-issue a resync in Config > "
+"Wii > SD Card Settings > Convert File to Folder Now!"
+msgstr ""
+
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:226
msgid "Failed to uninstall pack: %1"
msgstr ""
@@ -5060,9 +5191,9 @@ msgstr ""
msgid "Failed to write config file!"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:573
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:676
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:691
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:574
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:677
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:692
msgid "Failed to write modified memory card to disk."
msgstr ""
@@ -5070,33 +5201,33 @@ msgstr ""
msgid "Failed to write redirected save."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:447
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:448
msgid "Failed to write savefile to disk."
msgstr ""
-#: Source/Core/DiscIO/CompressedBlob.cpp:377 Source/Core/DiscIO/FileBlob.cpp:99
-#: Source/Core/DiscIO/WIABlob.cpp:2056
+#: Source/Core/DiscIO/CompressedBlob.cpp:382
+#: Source/Core/DiscIO/FileBlob.cpp:104 Source/Core/DiscIO/WIABlob.cpp:2062
msgid ""
"Failed to write the output file \"{0}\".\n"
"Check that you have enough space available on the target drive."
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:617
-#: Source/Core/DolphinQt/GameList/GameList.cpp:645
-#: Source/Core/DolphinQt/GameList/GameList.cpp:840
-#: Source/Core/DolphinQt/MenuBar.cpp:1074
+#: Source/Core/DolphinQt/GameList/GameList.cpp:626
+#: Source/Core/DolphinQt/GameList/GameList.cpp:656
+#: Source/Core/DolphinQt/GameList/GameList.cpp:853
+#: Source/Core/DolphinQt/MenuBar.cpp:1056
msgid "Failure"
msgstr ""
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:183
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:184
msgid "Fair Input Delay"
msgstr ""
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:199
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:200
msgid "Fallback Region"
msgstr ""
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:210
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:211
msgid "Fallback Region:"
msgstr ""
@@ -5120,17 +5251,21 @@ msgstr ""
msgid "Field of View"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:233
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:235
msgid "Figure Number:"
msgstr ""
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:380
+msgid "Figure type"
+msgstr ""
+
#: Source/Core/DolphinQt/Config/InfoWidget.cpp:46
msgid "File Details"
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:991
+#: Source/Core/DolphinQt/GameList/GameList.cpp:1005
#: Source/Core/DolphinQt/GameList/GameListModel.cpp:229
-#: Source/Core/DolphinQt/MenuBar.cpp:652
+#: Source/Core/DolphinQt/MenuBar.cpp:644
msgid "File Format"
msgstr ""
@@ -5142,20 +5277,20 @@ msgstr ""
msgid "File Info"
msgstr "Filinfo"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:986
+#: Source/Core/DolphinQt/GameList/GameList.cpp:1000
#: Source/Core/DolphinQt/GameList/GameListModel.cpp:223
-#: Source/Core/DolphinQt/MenuBar.cpp:647
+#: Source/Core/DolphinQt/MenuBar.cpp:639
msgid "File Name"
msgstr "Filnavn"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:987
+#: Source/Core/DolphinQt/GameList/GameList.cpp:1001
#: Source/Core/DolphinQt/GameList/GameListModel.cpp:225
-#: Source/Core/DolphinQt/MenuBar.cpp:648
+#: Source/Core/DolphinQt/MenuBar.cpp:640
msgid "File Path"
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:990
-#: Source/Core/DolphinQt/MenuBar.cpp:651
+#: Source/Core/DolphinQt/GameList/GameList.cpp:1004
+#: Source/Core/DolphinQt/MenuBar.cpp:643
msgid "File Size"
msgstr "Filstørrelse"
@@ -5163,15 +5298,15 @@ msgstr "Filstørrelse"
msgid "File Size:"
msgstr ""
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:349
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:352
msgid "File contained no codes."
msgstr "Filen indholdte ingen koder."
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:149
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:150
msgid "Filename"
msgstr ""
-#: Source/Core/DiscIO/CompressedBlob.cpp:289
+#: Source/Core/DiscIO/CompressedBlob.cpp:294
msgid "Files opened, ready to compress."
msgstr "Filen er åbnet, klar til komprimering."
@@ -5181,11 +5316,11 @@ msgid ""
"{1}"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:833
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:835
msgid "Filesize does not match any known GameCube Memory Card size."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:836
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:838
msgid "Filesize in header mismatches actual card size."
msgstr ""
@@ -5193,7 +5328,7 @@ msgstr ""
msgid "Filesystem"
msgstr "Filsystem"
-#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:102
+#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:103
msgid "Filters"
msgstr "Filtre"
@@ -5209,7 +5344,7 @@ msgstr "Find &forrige"
msgid "Finish Calibration"
msgstr ""
-#: Source/Core/DolphinQt/WiiUpdate.cpp:109
+#: Source/Core/DolphinQt/WiiUpdate.cpp:110
msgid ""
"Finishing the update...\n"
"This can take a while."
@@ -5217,19 +5352,19 @@ msgstr ""
#. i18n: One of the elements in the Skylanders games. Japanese: 火. For official translations
#. in other languages, check the SuperChargers manual at https://support.activision.com/manuals
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:333
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:349
msgid "Fire"
msgstr ""
-#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:40
+#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:41
msgid "First Person"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:127
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:128
msgid "Fix Checksums"
msgstr "Ret tjeksumme"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:690
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:691
msgid "Fix Checksums Failed"
msgstr ""
@@ -5239,7 +5374,7 @@ msgstr ""
#. i18n: These are the kinds of flags that a CPU uses (e.g. carry),
#. not the kinds of flags that represent e.g. countries
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:166
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167
#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:87
msgid "Flags"
msgstr "Flag"
@@ -5248,12 +5383,12 @@ msgstr "Flag"
#. i18n: Floating-point (non-integer) number
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:138
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:198
-#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:152
+#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:153
#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97
msgid "Float"
msgstr ""
-#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:565
+#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:566
msgid "Follow &branch"
msgstr ""
@@ -5273,35 +5408,35 @@ msgid ""
"\">refer to this page."
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:57
+#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:58
msgid "Force 16:9"
msgstr "Tving 16:9"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:117
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:152
msgid "Force 24-Bit Color"
msgstr "Tvunget 24-bit farve "
-#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:57
+#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:58
msgid "Force 4:3"
msgstr "Tving 4:3"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:96
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:115
msgid "Force Linear"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:103
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:122
msgid "Force Linear and 16x Anisotropic"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:97
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:116
msgid "Force Linear and 2x Anisotropic"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:99
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:118
msgid "Force Linear and 4x Anisotropic"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:101
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:120
msgid "Force Linear and 8x Anisotropic"
msgstr ""
@@ -5309,7 +5444,7 @@ msgstr ""
msgid "Force Listen Port:"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:95
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:114
msgid "Force Nearest"
msgstr ""
@@ -5321,7 +5456,7 @@ msgstr ""
msgid "Forced on because %1 doesn't support geometry shaders."
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:474
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:556
msgid ""
"Forces the game to output graphics for any aspect ratio. Use with \"Aspect "
"Ratio\" set to \"Force 16:9\" to force 4:3-only games to run at 16:9."
@@ -5331,7 +5466,7 @@ msgid ""
""
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:503
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:585
msgid ""
"Forces the game to render the RGB color channels in 24-bit, thereby "
"increasing quality by reducing color banding.
Has no impact on "
@@ -5339,7 +5474,7 @@ msgid ""
"unsure, leave this checked."
msgstr ""
-#: Source/Core/DolphinQt/ConvertDialog.cpp:59
+#: Source/Core/DolphinQt/ConvertDialog.cpp:60
msgid "Format:"
msgstr ""
@@ -5405,19 +5540,19 @@ msgstr ""
msgid "France"
msgstr "Frankrig"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:311
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:312
msgid "Free Blocks: %1"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:312
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:313
msgid "Free Files: %1"
msgstr ""
-#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:42
+#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:43
msgid "Free Look Control Type"
msgstr ""
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:468
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:470
msgid "Free Look Controller %1"
msgstr ""
@@ -5425,7 +5560,7 @@ msgstr ""
msgid "Free Look Settings"
msgstr ""
-#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:54
+#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:55
msgid ""
"Free Look allows for manipulation of the in-game camera. Different camera "
"types are available from the dropdown.
Im "
"Zweifel deaktiviert lassen."
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:508
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:590
msgid ""
"Disables the blending of adjacent rows when copying the EFB. This is known "
"in some games as \"deflickering\" or \"smoothing\".
Disabling the "
@@ -3664,7 +3751,7 @@ msgstr ""
"Grafikfehler.
Im Zweifel aktiviert lassen."
"dolphin_emphasis>"
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:96
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:97
msgid "Disc"
msgstr "Disc"
@@ -3703,25 +3790,25 @@ msgstr "Distanz"
msgid "Distance of travel from neutral position."
msgstr "Weite der Bewegung von der neutralen Position."
-#: Source/Core/DolphinQt/Main.cpp:259
+#: Source/Core/DolphinQt/Main.cpp:264
msgid "Do you authorize Dolphin to report information to Dolphin's developers?"
msgstr "Dolphin autorisieren, Informationen an das Entwicklerteam zu senden?"
-#: Source/Core/DolphinQt/MainWindow.cpp:1692
+#: Source/Core/DolphinQt/MainWindow.cpp:1712
msgid "Do you want to add \"%1\" to the list of Game Paths?"
msgstr "Möchtest du \"%1\" zur Liste der Spielverzeichnisse hinzufügen?"
-#: Source/Core/DolphinQt/MenuBar.cpp:1241
+#: Source/Core/DolphinQt/MenuBar.cpp:1227
msgid "Do you want to clear the list of symbol names?"
msgstr "Möchtest du die Liste der Symbolnamen löschen?"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:658
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:659
#, c-format
msgctxt ""
msgid "Do you want to delete the %n selected save file(s)?"
msgstr ""
-#: Source/Core/DolphinQt/MainWindow.cpp:933
+#: Source/Core/DolphinQt/MainWindow.cpp:935
msgid "Do you want to stop the current emulation?"
msgstr "Laufende Emulation stoppen?"
@@ -3733,35 +3820,35 @@ msgstr ""
msgid "Dolby Pro Logic II Decoder"
msgstr "Dolby Pro Logic II Dekoder"
-#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:219
-#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:230
+#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:215
+#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:226
msgid "Dolphin FIFO Log (*.dff)"
msgstr "Dolphin FIFO-Log (*.dff)"
-#: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:327
+#: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:326
msgid "Dolphin Game Mod Preset"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1536
-#: Source/Core/DolphinQt/MenuBar.cpp:1553
-#: Source/Core/DolphinQt/MenuBar.cpp:1572
+#: Source/Core/DolphinQt/MenuBar.cpp:1523
+#: Source/Core/DolphinQt/MenuBar.cpp:1540
+#: Source/Core/DolphinQt/MenuBar.cpp:1559
msgid "Dolphin Map File (*.map)"
msgstr "Dolphin-Kartendatei (*.map)"
-#: Source/Core/DolphinQt/MenuBar.cpp:73
+#: Source/Core/DolphinQt/MenuBar.cpp:74
msgid "Dolphin Signature CSV File"
msgstr "Dolphin-Signatur-CSV-Datei"
-#: Source/Core/DolphinQt/MenuBar.cpp:73
+#: Source/Core/DolphinQt/MenuBar.cpp:74
msgid "Dolphin Signature File"
msgstr "Dolphin-Signaturdatei"
-#: Source/Core/DolphinQt/MainWindow.cpp:1772
-#: Source/Core/DolphinQt/MainWindow.cpp:1843
+#: Source/Core/DolphinQt/MainWindow.cpp:1823
+#: Source/Core/DolphinQt/MainWindow.cpp:1894
msgid "Dolphin TAS Movies (*.dtm)"
msgstr "Dolphin TAS-Filme (*.dtm)"
-#: Source/Core/DolphinQt/ConvertDialog.cpp:326
+#: Source/Core/DolphinQt/ConvertDialog.cpp:327
msgid ""
"Dolphin can't convert NKit files to non-NKit files. Converting an NKit file "
"in Dolphin will result in another NKit file.\n"
@@ -3772,7 +3859,7 @@ msgid ""
"Do you want to continue anyway?"
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:279
+#: Source/Core/DolphinQt/GameList/GameList.cpp:280
msgid ""
"Dolphin could not find any GameCube/Wii ISOs or WADs.\n"
"Double-click here to set a games directory..."
@@ -3780,7 +3867,7 @@ msgstr ""
"Dolphin konnte weder GameCube/Wii-ISOs noch WADs finden. Hier doppelklicken, "
"um ein Spielverzeichnis anzulegen..."
-#: Source/Core/DolphinQt/ConvertDialog.cpp:526
+#: Source/Core/DolphinQt/ConvertDialog.cpp:529
msgid "Dolphin failed to complete the requested action."
msgstr "Dolphin konnte die gewünschte Aktion nicht ausführen."
@@ -3792,7 +3879,7 @@ msgstr "Dolphin konnte die gewünschte Aktion nicht ausführen."
msgid "Dolphin is a free and open-source GameCube and Wii emulator."
msgstr "Dolphin ist ein freier und quelloffener Gamecube- und Wii-Emulator."
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:998
msgid "Dolphin is too old for traversal server"
msgstr "Dolphin ist zu alt für den Übergangsserver"
@@ -3808,7 +3895,7 @@ msgstr ""
msgid "Dolphin is unable to verify unlicensed discs."
msgstr "Dolphin kann nicht lizenzierte Discs nicht überprüfen."
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:217
msgid ""
"Dolphin will use this for titles whose region cannot be determined "
"automatically."
@@ -3825,15 +3912,15 @@ msgstr "Dolphins Cheatsystem ist momentan deaktiviert."
msgid "Domain"
msgstr "Domain"
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:193
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:194
msgid "Don't Update"
msgstr "Nicht updaten"
-#: Source/Core/DolphinQt/NKitWarningDialog.cpp:53
+#: Source/Core/DolphinQt/NKitWarningDialog.cpp:56
msgid "Don't show this again"
msgstr "Diese Mitteilung nicht mehr anzeigen"
-#: Source/Core/DiscIO/CompressedBlob.cpp:369
+#: Source/Core/DiscIO/CompressedBlob.cpp:374
msgid "Done compressing disc image."
msgstr "Disc-Abbild wurde erfolgreich komprimiert."
@@ -3846,37 +3933,37 @@ msgstr ""
#. i18n: A double precision floating point number
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:139
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:199
-#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:154
+#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:155
msgid "Double"
msgstr "Double"
#: Source/Core/Core/FreeLookManager.cpp:89
#: Source/Core/Core/HW/WiimoteEmu/Extension/Guitar.cpp:80
#: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:35
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:43
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:44
#: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:21
#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUAccelerometer.cpp:19
#: Source/Core/InputCommon/ControllerEmu/ControllerEmu.h:24
msgid "Down"
msgstr "Unten"
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:86
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:87
msgid "Download Codes"
msgstr "Codes herunterladen"
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:88
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:89
msgid "Download Codes from the WiiRD Database"
msgstr "Codes von der WiiRD-Datenbank herunterladen"
-#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:148
+#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:153
msgid "Download Game Covers from GameTDB.com for Use in Grid Mode"
msgstr "Spiele-Covers von GameTDB.com für die Tabellenansicht herunterladen"
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:370
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:373
msgid "Download complete"
msgstr "Herunterladen abgeschlossen"
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:371
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:374
msgid "Downloaded %1 codes. (added %2)"
msgstr "%1 Codes heruntergeladen. (%2 hinzugefügt)"
@@ -3899,7 +3986,7 @@ msgstr "Doppelkern"
msgid "Dual View"
msgstr ""
-#: Source/Core/Core/HW/EXI/EXI_Device.h:95
+#: Source/Core/Core/HW/EXI/EXI_Device.h:94
msgid "Dummy"
msgstr "Dummy"
@@ -3919,7 +4006,7 @@ msgstr "&FakeVMEM dumpen"
msgid "Dump &MRAM"
msgstr "&MRAM dumpen"
-#: Source/Core/DolphinQt/MenuBar.cpp:814
+#: Source/Core/DolphinQt/MenuBar.cpp:806
msgid "Dump Audio"
msgstr "Audio dumpen"
@@ -3931,7 +4018,7 @@ msgstr "Basistexturen dumpen"
msgid "Dump EFB Target"
msgstr "EFB-Target dumpen"
-#: Source/Core/DolphinQt/MenuBar.cpp:808
+#: Source/Core/DolphinQt/MenuBar.cpp:800
msgid "Dump Frames"
msgstr "Frames dumpen"
@@ -4007,12 +4094,12 @@ msgid "Duration of Turbo Button Release (frames):"
msgstr "Freigabedauer der Turbo-Taste (Frames):"
#: Source/Core/DiscIO/Enums.cpp:95
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174
msgid "Dutch"
msgstr "Holländisch"
-#: Source/Core/DolphinQt/MenuBar.cpp:215
+#: Source/Core/DolphinQt/MenuBar.cpp:207
msgid "E&xit"
msgstr "&Beenden"
@@ -4031,7 +4118,7 @@ msgstr ""
"mindestens Version {0}.{1} -- Wenn du Dolphin kürzlich aktualisiert hast, "
"ist eventuell ein Neustart nötig, damit Windows den neuen Treiber erkennt."
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:185
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:186
msgid ""
"Each player sends their own inputs to the game, with equal buffer size for "
"all players, configured by the host.\n"
@@ -4049,7 +4136,7 @@ msgstr "Frühe Speicher-Updates"
#. i18n: One of the elements in the Skylanders games. Japanese: 土. For official translations
#. in other languages, check the SuperChargers manual at https://support.activision.com/manuals
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:336
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:352
msgid "Earth"
msgstr ""
@@ -4062,7 +4149,7 @@ msgstr "Ostasien"
msgid "Edit Breakpoint"
msgstr ""
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:426
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:430
msgid "Edit..."
msgstr ""
@@ -4096,7 +4183,7 @@ msgstr "Disc auswerfen"
#. i18n: Elements are a trait of Skylanders figures. For official translations of this term,
#. check the Skylanders SuperChargers manual at https://support.activision.com/manuals
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:289
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:300
msgid "Element"
msgstr ""
@@ -4104,11 +4191,11 @@ msgstr ""
msgid "Embedded Frame Buffer (EFB)"
msgstr "Eingebetteter Bildspeicher (EFB)"
-#: Source/Core/Core/State.cpp:541
+#: Source/Core/Core/State.cpp:629
msgid "Empty"
msgstr "Leer"
-#: Source/Core/Core/Core.cpp:246
+#: Source/Core/Core/Core.cpp:247
msgid "Emu Thread already running"
msgstr "Emu-Thread läuft bereits."
@@ -4116,15 +4203,15 @@ msgstr "Emu-Thread läuft bereits."
msgid "Emulate Disc Speed"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:60
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:61
msgid "Emulate Infinity Base"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:146
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:157
msgid "Emulate Skylander Portal"
msgstr ""
-#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:110
+#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:111
msgid "Emulate the Wii's Bluetooth adapter"
msgstr "Wiis Bluetooth-Adapter emulieren"
@@ -4134,11 +4221,11 @@ msgid ""
"Defaults to True"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:230
+#: Source/Core/DolphinQt/MenuBar.cpp:222
msgid "Emulated USB Devices"
msgstr ""
-#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:141
+#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:142
msgid "Emulated Wii Remote"
msgstr "Emulierte Wiimote"
@@ -4161,12 +4248,12 @@ msgstr "Emulationsgeschwindigkeit"
msgid "Emulation must be started to record."
msgstr ""
-#: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:29
-#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:33
+#: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:30
+#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:34
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:120
-#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:129
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:402
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:419
+#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:130
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:406
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:423
msgid "Enable"
msgstr "Aktivieren"
@@ -4174,6 +4261,10 @@ msgstr "Aktivieren"
msgid "Enable API Validation Layers"
msgstr "API-Validierungsschichten aktivieren"
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:83
+msgid "Enable Achievement Badges"
+msgstr ""
+
#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:60
msgid "Enable Achievements"
msgstr ""
@@ -4182,15 +4273,19 @@ msgstr ""
msgid "Enable Audio Stretching"
msgstr "Audiodehnung aktivieren"
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:142
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:143
msgid "Enable Cheats"
msgstr "Cheats aktivieren"
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:155
+#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:53
+msgid "Enable Controller Inpu&t"
+msgstr ""
+
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:161
msgid "Enable Custom RTC"
msgstr "Benutzerdefinierte Echtzeituhr aktivieren"
-#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:149
+#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:154
msgid "Enable Debugging UI"
msgstr ""
@@ -4198,19 +4293,19 @@ msgstr ""
msgid "Enable Dual Core"
msgstr "Dual Core aktivieren"
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:139
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:140
msgid "Enable Dual Core (speedup)"
msgstr "Dual Core aktivieren (Beschleunigung)"
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:88
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:94
msgid "Enable Emulated CPU Clock Override"
msgstr "Emulierte CPU-Taktüberschreibung aktivieren"
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:118
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:124
msgid "Enable Emulated Memory Size Override"
msgstr "Überschreiben der emulierten Speichergröße aktivieren"
-#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:78
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:88
msgid "Enable Encore Achievements"
msgstr ""
@@ -4227,10 +4322,14 @@ msgid "Enable Leaderboards"
msgstr ""
#: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:88
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:66
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:68
msgid "Enable MMU"
msgstr "MMU aktivieren"
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:78
+msgid "Enable Progress Notifications"
+msgstr ""
+
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:156
msgid "Enable Progressive Scan"
msgstr "Progressiven Scan aktivieren"
@@ -4244,15 +4343,15 @@ msgid "Enable Rich Presence"
msgstr ""
#: Source/Core/DolphinQt/Config/Mapping/GCPadWiiUConfigDialog.cpp:39
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:353
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:352
msgid "Enable Rumble"
msgstr "Rumble aktivieren"
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:157
msgid "Enable Screen Saver"
msgstr "Bildschirmschoner aktivieren"
-#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:113
+#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:114
msgid "Enable Speaker Data"
msgstr "Lautsprecherdaten aktivieren"
@@ -4260,11 +4359,11 @@ msgstr "Lautsprecherdaten aktivieren"
msgid "Enable Unofficial Achievements"
msgstr ""
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:230
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:231
msgid "Enable Usage Statistics Reporting"
msgstr "Berichterstattung für Nutzungsdaten aktivieren"
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158
msgid "Enable WiiConnect24 via WiiLink"
msgstr ""
@@ -4272,10 +4371,17 @@ msgstr ""
msgid "Enable Wireframe"
msgstr "Drahtgittermodell aktivieren"
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:77
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:82
msgid "Enable Write-Back Cache (slow)"
msgstr ""
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:85
+msgid ""
+"Enable achievement badges.
Displays icons for the player, game, and "
+"achievements. Simple visual option, but will require a small amount of extra "
+"memory and time to download the images."
+msgstr ""
+
#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:64
msgid ""
"Enable competing in RetroAchievements leaderboards.
Displays a brief popup "
+"message whenever the player makes progress on an achievement that tracks an "
+"accumulated value, such as 60 out of 120 stars."
+msgstr ""
+
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:90
+msgid ""
"Enable unlocking achievements in Encore Mode.
Encore Mode re-enables "
"achievements the player has already unlocked on the site so that the player "
"will be notified if they meet the unlock conditions again, useful for custom "
@@ -4340,7 +4453,7 @@ msgstr ""
"Aktiviert die Fließkomma-Ergebnis-Bitschalter-Berechnung, wird von einigen "
"Spielen benötigt. (EIN = Kompatibilität, AUS = Geschwindigkeit)"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:514
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:596
msgid ""
"Enables detection of arbitrary mipmaps, which some games use for special "
"distance-based effects.
May have false positives that result in "
@@ -4359,11 +4472,12 @@ msgstr ""
"der GPU-Texturdecodierung kompatibel.
Im Zweifel "
"aktiviert lassen."
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:79
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:84
msgid ""
-"Enables emulation of the CPU write-back cache.\n"
-"Enabling will have a significant impact on performance.\n"
-"This should be left disabled unless absolutely needed."
+"Enables emulation of the CPU write-back cache. Enabling will have a "
+"significant impact on performance. This should be left disabled unless "
+"absolutely needed.
If unsure, leave this unchecked."
+""
msgstr ""
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:365
@@ -4384,7 +4498,7 @@ msgstr ""
"unterstützt wird. Die meisten Spiele haben damit kein Problem."
"
Im Zweifel deaktiviert lassen."
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:522
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:604
msgid ""
"Enables scRGB HDR output (if supported by your graphics backend and "
"monitor). Fullscreen might be required.
This gives post process "
@@ -4413,7 +4527,6 @@ msgstr ""
"deaktiviert lassen."
#: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:100
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:68
msgid ""
"Enables the Memory Management Unit, needed for some games. (ON = Compatible, "
"OFF = Fast)"
@@ -4421,7 +4534,14 @@ msgstr ""
"Aktiviert die Speicher-Verwaltungseinheit, die für einige Spiele gebraucht "
"wird. (EIN = Kompatibel, AUS = Schnell)"
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:193
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:70
+msgid ""
+"Enables the Memory Management Unit, needed for some games. (ON = Compatible, "
+"OFF = Fast)
If unsure, leave this unchecked."
+"dolphin_emphasis>"
+msgstr ""
+
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190
msgid ""
"Enables the WiiLink service for WiiConnect24 channels.\n"
"WiiLink is an alternate provider for the discontinued WiiConnect24 Channels "
@@ -4450,7 +4570,7 @@ msgstr ""
msgid "Encoding"
msgstr "Kodierung"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:615
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:616
msgid ""
"Encountered the following errors while opening save files:\n"
"%1\n"
@@ -4463,12 +4583,12 @@ msgid "Enet Didn't Initialize"
msgstr "Enet konnte nicht initialisiert werden"
#: Source/Core/DiscIO/Enums.cpp:80
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:85
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:169
msgid "English"
msgstr "Englisch"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:59
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:61
#: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:61
msgid "Enhancements"
msgstr "Verbesserungen"
@@ -4499,84 +4619,84 @@ msgstr "Passwort eingeben"
msgid "Enter the DNS server to use:"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1300
+#: Source/Core/DolphinQt/MenuBar.cpp:1286
msgid "Enter the RSO module address:"
msgstr "Geben Sie die RSO-Moduladresse ein:"
#: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:194
#: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:250
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:261
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:262
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386
#: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:265
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:343
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:349
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:346
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:352
#: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:46
-#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:521
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:256
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:295
-#: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:232
-#: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:259
-#: Source/Core/DolphinQt/ConvertDialog.cpp:424
-#: Source/Core/DolphinQt/ConvertDialog.cpp:471
-#: Source/Core/DolphinQt/ConvertDialog.cpp:525
+#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:539
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:255
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:296
+#: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:229
+#: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:256
+#: Source/Core/DolphinQt/ConvertDialog.cpp:426
+#: Source/Core/DolphinQt/ConvertDialog.cpp:473
+#: Source/Core/DolphinQt/ConvertDialog.cpp:528
#: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:255
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:638
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:644
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:653
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:665
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:684
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:690
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:705
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:713
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:737
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:744
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:637
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:643
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:652
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:664
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:683
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:689
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:704
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:712
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:736
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:743
#: Source/Core/DolphinQt/Debugger/RegisterColumn.cpp:86
#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:282
#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:431
-#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:241
-#: Source/Core/DolphinQt/GBAWidget.cpp:576
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:346
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:376
-#: Source/Core/DolphinQt/Main.cpp:209 Source/Core/DolphinQt/Main.cpp:225
-#: Source/Core/DolphinQt/Main.cpp:232 Source/Core/DolphinQt/MainWindow.cpp:295
-#: Source/Core/DolphinQt/MainWindow.cpp:303
-#: Source/Core/DolphinQt/MainWindow.cpp:1108
-#: Source/Core/DolphinQt/MainWindow.cpp:1494
-#: Source/Core/DolphinQt/MainWindow.cpp:1501
-#: Source/Core/DolphinQt/MainWindow.cpp:1561
-#: Source/Core/DolphinQt/MainWindow.cpp:1568
-#: Source/Core/DolphinQt/MainWindow.cpp:1670
-#: Source/Core/DolphinQt/MenuBar.cpp:1204
-#: Source/Core/DolphinQt/MenuBar.cpp:1284
+#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:237
+#: Source/Core/DolphinQt/GBAWidget.cpp:578
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:347
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:377
+#: Source/Core/DolphinQt/Main.cpp:211 Source/Core/DolphinQt/Main.cpp:227
+#: Source/Core/DolphinQt/Main.cpp:234 Source/Core/DolphinQt/MainWindow.cpp:297
+#: Source/Core/DolphinQt/MainWindow.cpp:305
+#: Source/Core/DolphinQt/MainWindow.cpp:1110
+#: Source/Core/DolphinQt/MainWindow.cpp:1507
+#: Source/Core/DolphinQt/MainWindow.cpp:1514
+#: Source/Core/DolphinQt/MainWindow.cpp:1574
+#: Source/Core/DolphinQt/MainWindow.cpp:1581
+#: Source/Core/DolphinQt/MainWindow.cpp:1690
+#: Source/Core/DolphinQt/MenuBar.cpp:1190
+#: Source/Core/DolphinQt/MenuBar.cpp:1270
+#: Source/Core/DolphinQt/MenuBar.cpp:1293
#: Source/Core/DolphinQt/MenuBar.cpp:1307
-#: Source/Core/DolphinQt/MenuBar.cpp:1321
-#: Source/Core/DolphinQt/MenuBar.cpp:1352
-#: Source/Core/DolphinQt/MenuBar.cpp:1376
-#: Source/Core/DolphinQt/MenuBar.cpp:1597
-#: Source/Core/DolphinQt/MenuBar.cpp:1608
-#: Source/Core/DolphinQt/MenuBar.cpp:1620
-#: Source/Core/DolphinQt/MenuBar.cpp:1642
-#: Source/Core/DolphinQt/MenuBar.cpp:1668
-#: Source/Core/DolphinQt/MenuBar.cpp:1722
-#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:315
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:477
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:738
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:980
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1098
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1108
-#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:334
-#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:340
-#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:347
+#: Source/Core/DolphinQt/MenuBar.cpp:1339
+#: Source/Core/DolphinQt/MenuBar.cpp:1363
+#: Source/Core/DolphinQt/MenuBar.cpp:1584
+#: Source/Core/DolphinQt/MenuBar.cpp:1595
+#: Source/Core/DolphinQt/MenuBar.cpp:1607
+#: Source/Core/DolphinQt/MenuBar.cpp:1629
+#: Source/Core/DolphinQt/MenuBar.cpp:1655
+#: Source/Core/DolphinQt/MenuBar.cpp:1709
+#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:316
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:479
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:740
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:982
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1100
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1110
+#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:332
+#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:338
+#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:345
#: Source/Core/DolphinQt/RenderWidget.cpp:123
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:203
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:224
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:423
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:439
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:460
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:481
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:525
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:562
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:585
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:204
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:225
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:433
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:449
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:470
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:491
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:535
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:572
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:595
#: Source/Core/DolphinQt/Translation.cpp:322
msgid "Error"
msgstr "Fehler"
@@ -4585,13 +4705,13 @@ msgstr "Fehler"
msgid "Error Opening Adapter: %1"
msgstr "Fehler beim Öffnen des Adapters: %1"
-#: Source/Core/Core/NetPlayServer.cpp:1493
+#: Source/Core/Core/NetPlayServer.cpp:1497
msgid "Error collecting save data!"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:260
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:526
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:533
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:262
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:613
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:620
msgid "Error converting value"
msgstr ""
@@ -4605,15 +4725,15 @@ msgstr ""
msgid "Error obtaining session list: %1"
msgstr "Fehler beim Abrufen der Sitzungsliste: %1"
-#: Source/Core/DolphinQt/MainWindow.cpp:296
+#: Source/Core/DolphinQt/MainWindow.cpp:298
msgid "Error occurred while loading some texture packs"
msgstr ""
-#: Source/Core/Core/NetPlayClient.cpp:1847
+#: Source/Core/Core/NetPlayClient.cpp:1851
msgid "Error processing codes."
msgstr "Fehler beim Verarbeiten der Codes."
-#: Source/Core/Core/NetPlayClient.cpp:1819
+#: Source/Core/Core/NetPlayClient.cpp:1823
msgid "Error processing data."
msgstr "Fehler beim Verarbeiten der Daten."
@@ -4621,11 +4741,11 @@ msgstr "Fehler beim Verarbeiten der Daten."
msgid "Error reading file: {0}"
msgstr "Fehler beim Lesen der Datei: {0}"
-#: Source/Core/Core/NetPlayServer.cpp:1529
+#: Source/Core/Core/NetPlayServer.cpp:1533
msgid "Error synchronizing cheat codes!"
msgstr "Fehler beim Synchronisieren der Cheat Codes!"
-#: Source/Core/Core/NetPlayServer.cpp:1515
+#: Source/Core/Core/NetPlayServer.cpp:1519
msgid "Error synchronizing save data!"
msgstr "Fehler beim Synchronisieren der Spielstände!"
@@ -4705,7 +4825,7 @@ msgstr ""
msgid "Euphoria"
msgstr "Euphoria"
-#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:282
+#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:274
#: Source/Core/UICommon/NetPlayIndex.cpp:249
msgid "Europe"
msgstr "Europa"
@@ -4734,11 +4854,11 @@ msgstr ""
msgid "Excluded: %1"
msgstr ""
-#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:73
+#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:72
msgid "Excluded: 0"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:107
+#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108
msgid "Exclusive Ubershaders"
msgstr ""
@@ -4786,14 +4906,14 @@ msgstr ""
msgid "Experimental"
msgstr "Experimentell"
-#: Source/Core/DolphinQt/MenuBar.cpp:294
+#: Source/Core/DolphinQt/MenuBar.cpp:286
msgid "Export All Wii Saves"
msgstr "Alle Wii-Spielstände exportieren"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:422
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:447
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:492
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:499
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:423
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:448
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:493
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:500
msgid "Export Failed"
msgstr ""
@@ -4801,42 +4921,42 @@ msgstr ""
msgid "Export Recording"
msgstr "Aufnahme exportieren"
-#: Source/Core/DolphinQt/MenuBar.cpp:753
+#: Source/Core/DolphinQt/MenuBar.cpp:745
msgid "Export Recording..."
msgstr "Aufnahme exportieren..."
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:437
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:438
msgid "Export Save File"
msgstr "Spielstanddatei exportieren"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:454
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:455
msgid "Export Save Files"
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:470
+#: Source/Core/DolphinQt/GameList/GameList.cpp:473
msgid "Export Wii Save"
msgstr "Wii-Spielstand exportieren"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:388
+#: Source/Core/DolphinQt/GameList/GameList.cpp:389
msgid "Export Wii Saves"
msgstr "Wii-Spielstände exportieren"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:117
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:118
msgid "Export as .&gcs..."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:118
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:119
msgid "Export as .&sav..."
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1133
+#: Source/Core/DolphinQt/MenuBar.cpp:1115
#, c-format
msgctxt ""
msgid "Exported %n save(s)"
msgstr "%n Spielstand/stände exportiert"
#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:268
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:432
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:434
#: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:47
msgid "Extension"
msgstr "Erweiterung"
@@ -4849,7 +4969,7 @@ msgstr "Erweiterung - Bewegungseingabe"
msgid "Extension Motion Simulation"
msgstr "Erweiterung - Bewegungssimulation"
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:520
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:522
msgid "External"
msgstr "Extern"
@@ -4857,35 +4977,35 @@ msgstr "Extern"
msgid "External Frame Buffer (XFB)"
msgstr "Externer Bildspeicher (XFB)"
-#: Source/Core/DolphinQt/MenuBar.cpp:271
+#: Source/Core/DolphinQt/MenuBar.cpp:263
msgid "Extract Certificates from NAND"
msgstr "Zertifikate aus NAND extrahieren"
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:268
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:269
msgid "Extract Entire Disc..."
msgstr "Gesamte Disc extrahieren..."
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:292
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:293
msgid "Extract Entire Partition..."
msgstr "Gesamte Partition extrahieren..."
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:299
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:300
msgid "Extract File..."
msgstr "Datei extrahieren..."
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:241
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:242
msgid "Extract Files..."
msgstr "Dateien extrahieren..."
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:251
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:252
msgid "Extract System Data..."
msgstr "Systemdaten extrahieren..."
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:355
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:356
msgid "Extracting All Files..."
msgstr "Alle Dateien werden extrahiert..."
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:356
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357
msgid "Extracting Directory..."
msgstr "Verzeichnis wird extrahiert..."
@@ -4895,7 +5015,7 @@ msgid "FD"
msgstr "FD"
#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:37
-#: Source/Core/DolphinQt/MenuBar.cpp:228
+#: Source/Core/DolphinQt/MenuBar.cpp:220
msgid "FIFO Player"
msgstr "FIFO-Player"
@@ -4903,7 +5023,7 @@ msgstr "FIFO-Player"
msgid "Failed loading XML."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:347
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:348
msgid ""
"Failed opening memory card:\n"
"%1"
@@ -4911,11 +5031,11 @@ msgstr ""
"Konnte Speicherkarte nicht öffnen:\n"
"%1"
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:454
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:456
msgid "Failed to add this session to the NetPlay index: %1"
msgstr "Konnte diese Sitzung nicht zum NetPlay Index hinzufügen: %1"
-#: Source/Core/DolphinQt/MenuBar.cpp:1669
+#: Source/Core/DolphinQt/MenuBar.cpp:1656
msgid "Failed to append to signature file '%1'"
msgstr "Konnte nicht an Signaturdatei '%1' anfügen."
@@ -4923,11 +5043,11 @@ msgstr "Konnte nicht an Signaturdatei '%1' anfügen."
msgid "Failed to claim interface for BT passthrough: {0}"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:574
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:676
msgid "Failed to clear Skylander!"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:575
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:677
msgid "Failed to clear the Skylander from slot(%1)!"
msgstr ""
@@ -4935,7 +5055,7 @@ msgstr ""
msgid "Failed to connect to Redump.org"
msgstr "Konnte nicht mit Redump.org verbinden"
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:981
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:983
msgid "Failed to connect to server: %1"
msgstr "Konnte nicht mit Server %1 verbinden"
@@ -4956,15 +5076,15 @@ msgstr "Fehler beim Erstellen der globalen D3D12-Ressourcen"
msgid "Failed to create DXGI factory"
msgstr "Fehler beim Erstellen der DXGI-Factory"
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:289
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:291
msgid "Failed to create Infinity file"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:678
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:798
msgid "Failed to create Skylander file!"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:679
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:799
msgid ""
"Failed to create Skylander file:\n"
"%1\n"
@@ -4982,7 +5102,7 @@ msgstr ""
"Konnte NetPlay-Speicherkarte nicht löschen. Überprüfe deine "
"Schreibberechtigungen."
-#: Source/Core/DolphinQt/GameList/GameList.cpp:841
+#: Source/Core/DolphinQt/GameList/GameList.cpp:854
msgid "Failed to delete the selected file."
msgstr "Konnte die ausgewählte Datei nicht löschen."
@@ -4990,36 +5110,36 @@ msgstr "Konnte die ausgewählte Datei nicht löschen."
msgid "Failed to detach kernel driver for BT passthrough: {0}"
msgstr "Fehler beim Lösen des Kernel-Treibers für BT-Durchleitung: {0}"
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:343
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:346
msgid "Failed to download codes."
msgstr "Download der Codes fehlgeschlagen."
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:738
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:737
msgid "Failed to dump %1: Can't open file"
msgstr "Konnte %1 nicht dumpen: Fehler beim Öffnen der Datei"
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:745
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:744
msgid "Failed to dump %1: Failed to write to file"
msgstr "Konnte %1 nicht dumpen: Fehler beim Schreiben in Datei"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:488
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:489
msgctxt ""
msgid "Failed to export %n out of %1 save file(s)."
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:576
+#: Source/Core/DolphinQt/GameList/GameList.cpp:584
msgid "Failed to export the following save files:"
msgstr "Konnte folgende Spielstände nicht exportieren:"
-#: Source/Core/DolphinQt/MenuBar.cpp:1204
+#: Source/Core/DolphinQt/MenuBar.cpp:1190
msgid "Failed to extract certificates from NAND"
msgstr "Konnte Zertifikate aus NAND nicht extrahieren"
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386
msgid "Failed to extract file."
msgstr "Datei konnte nicht extrahiert werden."
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:261
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:262
msgid "Failed to extract system data."
msgstr "Systemdaten konnten nicht extrahiert werden."
@@ -5037,18 +5157,18 @@ msgstr ""
msgid "Failed to find one or more D3D symbols"
msgstr "Ein oder mehrere D3D-Symbole konnten nicht gefunden werden"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:565
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:566
msgid "Failed to import \"%1\"."
msgstr "Konnte \"%1\" nicht importieren."
-#: Source/Core/DolphinQt/MenuBar.cpp:1109
+#: Source/Core/DolphinQt/MenuBar.cpp:1091
msgid ""
"Failed to import save file. Please launch the game once, then try again."
msgstr ""
"Konnte Spielstand nicht importieren. Bitte starte das Spiel einmal und "
"versuche es danach erneut."
-#: Source/Core/DolphinQt/MenuBar.cpp:1103
+#: Source/Core/DolphinQt/MenuBar.cpp:1085
msgid ""
"Failed to import save file. The given file appears to be corrupted or is not "
"a valid Wii save."
@@ -5056,7 +5176,7 @@ msgstr ""
"Konnte Spielstand nicht importieren. Die gegebene Datei scheint beschädigt "
"zu sein oder ist kein gültiger Wii-Spielstand."
-#: Source/Core/DolphinQt/MenuBar.cpp:1116
+#: Source/Core/DolphinQt/MenuBar.cpp:1098
msgid ""
"Failed to import save file. Your NAND may be corrupt, or something is "
"preventing access to files within it. Try repairing your NAND (Tools -> "
@@ -5067,7 +5187,7 @@ msgstr ""
"dein NAND zu reparieren (Extras -> NAND verwalten -> NAND prüfen...) und "
"versuche anschließend, den Spielstand erneut zu importieren."
-#: Source/Core/DolphinQt/MainWindow.cpp:1108
+#: Source/Core/DolphinQt/MainWindow.cpp:1110
msgid "Failed to init core"
msgstr "Konnte Kern nicht initiieren"
@@ -5082,16 +5202,16 @@ msgstr ""
msgid "Failed to initialize renderer classes"
msgstr "Renderer-Klassen konnten nicht initialisiert werden"
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:204
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:205
msgid "Failed to install pack: %1"
msgstr "Konnte Paket: %1 nicht installieren"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:619
-#: Source/Core/DolphinQt/MenuBar.cpp:1074
+#: Source/Core/DolphinQt/GameList/GameList.cpp:628
+#: Source/Core/DolphinQt/MenuBar.cpp:1056
msgid "Failed to install this title to the NAND."
msgstr "Konnte diesen Titel nicht in den NAND installieren."
-#: Source/Core/DolphinQt/MainWindow.cpp:1594
+#: Source/Core/DolphinQt/MainWindow.cpp:1607
msgid ""
"Failed to listen on port %1. Is another instance of the NetPlay server "
"running?"
@@ -5099,8 +5219,8 @@ msgstr ""
"Fehler beim Lauschen auf Port %1. Wird eine andere Instanz des NetPlay-"
"Servers ausgeführt?"
-#: Source/Core/DolphinQt/MenuBar.cpp:1321
-#: Source/Core/DolphinQt/MenuBar.cpp:1376
+#: Source/Core/DolphinQt/MenuBar.cpp:1307
+#: Source/Core/DolphinQt/MenuBar.cpp:1363
msgid "Failed to load RSO module at %1"
msgstr "Konnte RSO-Modul an %1 nicht laden"
@@ -5112,15 +5232,15 @@ msgstr "Fehler beim Laden der Datei d3d11.dll"
msgid "Failed to load dxgi.dll"
msgstr "Fehler beim Laden der Datei dxgi.dll"
-#: Source/Core/DolphinQt/MenuBar.cpp:1608
+#: Source/Core/DolphinQt/MenuBar.cpp:1595
msgid "Failed to load map file '%1'"
msgstr "Konnte Kartendatei '%1' nicht laden"
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:720
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:842
msgid "Failed to load the Skylander file!"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:721
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:843
msgid "Failed to load the Skylander file(%1)!\n"
msgstr ""
@@ -5136,8 +5256,12 @@ msgstr ""
"Konnte {0} nicht laden. Wenn du Windows 7 verwendest, versuche das "
"Updatepaket KB4019990 zu installieren."
-#: Source/Core/DolphinQt/GBAWidget.cpp:576
-#: Source/Core/DolphinQt/MainWindow.cpp:1670
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:663
+msgid "Failed to modify Skylander!"
+msgstr ""
+
+#: Source/Core/DolphinQt/GBAWidget.cpp:578
+#: Source/Core/DolphinQt/MainWindow.cpp:1690
#: Source/Core/DolphinQt/RenderWidget.cpp:123
msgid "Failed to open '%1'"
msgstr "Konnte '&1' nicht öffnen"
@@ -5168,40 +5292,40 @@ msgstr ""
"Stellen Sie sicher, dass eine Anwendung zum Öffnen von INI-Dateien "
"zugewiesen ist."
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:861
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:863
msgid "Failed to open file."
msgstr ""
-#: Source/Core/DolphinQt/MainWindow.cpp:1593
+#: Source/Core/DolphinQt/MainWindow.cpp:1606
msgid "Failed to open server"
msgstr "Konnte Server nicht öffnen"
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:164
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:166
msgid "Failed to open the Infinity file!"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:165
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:167
msgid ""
"Failed to open the Infinity file(%1)!\n"
"File may already be in use on the base."
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:696
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:818
msgid "Failed to open the Skylander file!"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:697
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:819
msgid ""
"Failed to open the Skylander file(%1)!\n"
"File may already be in use on the portal."
msgstr ""
-#: Source/Core/DolphinQt/ConvertDialog.cpp:472
+#: Source/Core/DolphinQt/ConvertDialog.cpp:474
msgid "Failed to open the input file \"%1\"."
msgstr "Konnte Eingabedatei \"%1\" nicht öffnen."
-#: Source/Core/DiscIO/CompressedBlob.cpp:282 Source/Core/DiscIO/FileBlob.cpp:53
-#: Source/Core/DiscIO/WIABlob.cpp:2037
+#: Source/Core/DiscIO/CompressedBlob.cpp:287 Source/Core/DiscIO/FileBlob.cpp:58
+#: Source/Core/DiscIO/WIABlob.cpp:2043
msgid ""
"Failed to open the output file \"{0}\".\n"
"Check that you have permissions to write the target folder and that the "
@@ -5224,35 +5348,35 @@ msgstr ""
msgid "Failed to read DFF file."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:863
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:865
msgid "Failed to read from file."
msgstr ""
-#: Source/Core/DiscIO/CompressedBlob.cpp:373 Source/Core/DiscIO/FileBlob.cpp:93
-#: Source/Core/DiscIO/WIABlob.cpp:2052
+#: Source/Core/DiscIO/CompressedBlob.cpp:378 Source/Core/DiscIO/FileBlob.cpp:98
+#: Source/Core/DiscIO/WIABlob.cpp:2058
msgid "Failed to read from the input file \"{0}\"."
msgstr "Konnte nicht aus der Eingabedatei \"{0}\" lesen."
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:423
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:641
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:424
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:642
msgid "Failed to read selected savefile(s) from memory card."
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:173
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:175
msgid "Failed to read the Infinity file!"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:174
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:176
msgid ""
"Failed to read the Infinity file(%1)!\n"
"File was too small."
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:706
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:828
msgid "Failed to read the Skylander file!"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:707
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:829
msgid ""
"Failed to read the Skylander file(%1)!\n"
"File was too small."
@@ -5262,11 +5386,11 @@ msgstr ""
msgid "Failed to read {0}"
msgstr "Konnte {0} nicht lesen"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:668
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:669
msgid "Failed to remove file."
msgstr ""
-#: Source/Core/DolphinQt/ConvertDialog.cpp:453
+#: Source/Core/DolphinQt/ConvertDialog.cpp:455
msgid ""
"Failed to remove junk data from file \"%1\".\n"
"\n"
@@ -5276,7 +5400,7 @@ msgstr ""
"\n"
"Möchtest du sie konvertieren, ohne Junk-Daten zu entfernen?"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:647
+#: Source/Core/DolphinQt/GameList/GameList.cpp:658
msgid "Failed to remove this title from the NAND."
msgstr "Dieser Titel konnte nicht aus dem NAND entfernt werden."
@@ -5296,27 +5420,34 @@ msgstr ""
msgid "Failed to reset NetPlay redirect folder. Verify your write permissions."
msgstr ""
-#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:241
+#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:237
msgid "Failed to save FIFO log."
msgstr "Konnte FIFO-Log nicht speichern."
-#: Source/Core/DolphinQt/MenuBar.cpp:1598
+#: Source/Core/DolphinQt/MenuBar.cpp:1585
msgid "Failed to save code map to path '%1'"
msgstr "Konnte Codekarte nicht in Pfad '%1' speichern"
-#: Source/Core/DolphinQt/MenuBar.cpp:1642
+#: Source/Core/DolphinQt/MenuBar.cpp:1629
msgid "Failed to save signature file '%1'"
msgstr "Konnte Signaturdatei '%1' nicht speichern"
-#: Source/Core/DolphinQt/MenuBar.cpp:1621
+#: Source/Core/DolphinQt/MenuBar.cpp:1608
msgid "Failed to save symbol map to path '%1'"
msgstr "Konnte Symbolkarte nicht in Pfad '%1' speichern"
-#: Source/Core/DolphinQt/MenuBar.cpp:1723
+#: Source/Core/DolphinQt/MenuBar.cpp:1710
msgid "Failed to save to signature file '%1'"
msgstr "Konnte nicht an Signaturdatei '%1' speichern."
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:225
+#: Source/Core/Core/Core.cpp:548
+msgid ""
+"Failed to sync SD card with folder. All changes made this session will be "
+"discarded on next boot if you do not manually re-issue a resync in Config > "
+"Wii > SD Card Settings > Convert File to Folder Now!"
+msgstr ""
+
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:226
msgid "Failed to uninstall pack: %1"
msgstr "Konnte Paket: %1 nicht deinstallieren"
@@ -5336,9 +5467,9 @@ msgstr "Konnte Wii-Spielstand nicht schreiben."
msgid "Failed to write config file!"
msgstr "Konnte Einstellungsdatei nicht schreiben!"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:573
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:676
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:691
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:574
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:677
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:692
msgid "Failed to write modified memory card to disk."
msgstr ""
@@ -5346,12 +5477,12 @@ msgstr ""
msgid "Failed to write redirected save."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:447
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:448
msgid "Failed to write savefile to disk."
msgstr ""
-#: Source/Core/DiscIO/CompressedBlob.cpp:377 Source/Core/DiscIO/FileBlob.cpp:99
-#: Source/Core/DiscIO/WIABlob.cpp:2056
+#: Source/Core/DiscIO/CompressedBlob.cpp:382
+#: Source/Core/DiscIO/FileBlob.cpp:104 Source/Core/DiscIO/WIABlob.cpp:2062
msgid ""
"Failed to write the output file \"{0}\".\n"
"Check that you have enough space available on the target drive."
@@ -5359,22 +5490,22 @@ msgstr ""
"Schreiben in Ausgabedatei \"{0}\" fehlgeschlagen.\n"
"Überprüfe ob ausreichend Speicherplatz auf dem Ziellaufwerk vorhanden ist."
-#: Source/Core/DolphinQt/GameList/GameList.cpp:617
-#: Source/Core/DolphinQt/GameList/GameList.cpp:645
-#: Source/Core/DolphinQt/GameList/GameList.cpp:840
-#: Source/Core/DolphinQt/MenuBar.cpp:1074
+#: Source/Core/DolphinQt/GameList/GameList.cpp:626
+#: Source/Core/DolphinQt/GameList/GameList.cpp:656
+#: Source/Core/DolphinQt/GameList/GameList.cpp:853
+#: Source/Core/DolphinQt/MenuBar.cpp:1056
msgid "Failure"
msgstr "Fehler"
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:183
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:184
msgid "Fair Input Delay"
msgstr "Faire Eingangsverzögerung"
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:199
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:200
msgid "Fallback Region"
msgstr "Zurückgreifende Region"
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:210
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:211
msgid "Fallback Region:"
msgstr "Zurückgreifende Region:"
@@ -5400,17 +5531,21 @@ msgstr ""
msgid "Field of View"
msgstr "Sichtfeld"
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:233
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:235
msgid "Figure Number:"
msgstr ""
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:380
+msgid "Figure type"
+msgstr ""
+
#: Source/Core/DolphinQt/Config/InfoWidget.cpp:46
msgid "File Details"
msgstr "Dateidetails"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:991
+#: Source/Core/DolphinQt/GameList/GameList.cpp:1005
#: Source/Core/DolphinQt/GameList/GameListModel.cpp:229
-#: Source/Core/DolphinQt/MenuBar.cpp:652
+#: Source/Core/DolphinQt/MenuBar.cpp:644
msgid "File Format"
msgstr "Dateiformat"
@@ -5422,20 +5557,20 @@ msgstr "Dateiformat:"
msgid "File Info"
msgstr "Datei-Informationen"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:986
+#: Source/Core/DolphinQt/GameList/GameList.cpp:1000
#: Source/Core/DolphinQt/GameList/GameListModel.cpp:223
-#: Source/Core/DolphinQt/MenuBar.cpp:647
+#: Source/Core/DolphinQt/MenuBar.cpp:639
msgid "File Name"
msgstr "Dateiname"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:987
+#: Source/Core/DolphinQt/GameList/GameList.cpp:1001
#: Source/Core/DolphinQt/GameList/GameListModel.cpp:225
-#: Source/Core/DolphinQt/MenuBar.cpp:648
+#: Source/Core/DolphinQt/MenuBar.cpp:640
msgid "File Path"
msgstr "Dateipfad"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:990
-#: Source/Core/DolphinQt/MenuBar.cpp:651
+#: Source/Core/DolphinQt/GameList/GameList.cpp:1004
+#: Source/Core/DolphinQt/MenuBar.cpp:643
msgid "File Size"
msgstr "Dateigröße"
@@ -5443,15 +5578,15 @@ msgstr "Dateigröße"
msgid "File Size:"
msgstr "Dateigröße:"
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:349
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:352
msgid "File contained no codes."
msgstr "Datei enthielt keine Codes."
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:149
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:150
msgid "Filename"
msgstr ""
-#: Source/Core/DiscIO/CompressedBlob.cpp:289
+#: Source/Core/DiscIO/CompressedBlob.cpp:294
msgid "Files opened, ready to compress."
msgstr "Dateien geöffnet, bereit zum Komprimieren."
@@ -5463,12 +5598,12 @@ msgstr ""
"Vorgegebene Dateien in der M3U-Datei \"{0}\" wurden nicht gefunden:\n"
"{1}"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:833
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:835
msgid "Filesize does not match any known GameCube Memory Card size."
msgstr ""
"Die Dateigröße entspricht keiner bekannten GameCube-Speicherkartengröße."
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:836
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:838
msgid "Filesize in header mismatches actual card size."
msgstr ""
"Dateigröße im Header stimmt nicht mit der tatsächlichen Kartengröße überein."
@@ -5477,7 +5612,7 @@ msgstr ""
msgid "Filesystem"
msgstr "Dateisystem"
-#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:102
+#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:103
msgid "Filters"
msgstr "Filter"
@@ -5493,7 +5628,7 @@ msgstr "&Vorherige finden"
msgid "Finish Calibration"
msgstr "Kalibrierung abschließen"
-#: Source/Core/DolphinQt/WiiUpdate.cpp:109
+#: Source/Core/DolphinQt/WiiUpdate.cpp:110
msgid ""
"Finishing the update...\n"
"This can take a while."
@@ -5503,19 +5638,19 @@ msgstr ""
#. i18n: One of the elements in the Skylanders games. Japanese: 火. For official translations
#. in other languages, check the SuperChargers manual at https://support.activision.com/manuals
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:333
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:349
msgid "Fire"
msgstr ""
-#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:40
+#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:41
msgid "First Person"
msgstr "First-Person"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:127
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:128
msgid "Fix Checksums"
msgstr "Prüfsummen korrigieren"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:690
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:691
msgid "Fix Checksums Failed"
msgstr ""
@@ -5525,7 +5660,7 @@ msgstr ""
#. i18n: These are the kinds of flags that a CPU uses (e.g. carry),
#. not the kinds of flags that represent e.g. countries
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:166
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167
#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:87
msgid "Flags"
msgstr "Bitschalter"
@@ -5534,12 +5669,12 @@ msgstr "Bitschalter"
#. i18n: Floating-point (non-integer) number
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:138
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:198
-#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:152
+#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:153
#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97
msgid "Float"
msgstr "Float"
-#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:565
+#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:566
msgid "Follow &branch"
msgstr "&Zweig folgen"
@@ -5561,35 +5696,35 @@ msgid ""
"\">refer to this page
."
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:57
+#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:58
msgid "Force 16:9"
msgstr "16:9 erzwingen"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:117
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:152
msgid "Force 24-Bit Color"
msgstr "24-Bit Farbtiefe erzwingen"
-#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:57
+#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:58
msgid "Force 4:3"
msgstr "4:3 erzwingen"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:96
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:115
msgid "Force Linear"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:103
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:122
msgid "Force Linear and 16x Anisotropic"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:97
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:116
msgid "Force Linear and 2x Anisotropic"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:99
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:118
msgid "Force Linear and 4x Anisotropic"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:101
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:120
msgid "Force Linear and 8x Anisotropic"
msgstr ""
@@ -5597,7 +5732,7 @@ msgstr ""
msgid "Force Listen Port:"
msgstr "Lauschport erzwingen:"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:95
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:114
msgid "Force Nearest"
msgstr ""
@@ -5609,7 +5744,7 @@ msgstr ""
msgid "Forced on because %1 doesn't support geometry shaders."
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:474
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:556
msgid ""
"Forces the game to output graphics for any aspect ratio. Use with \"Aspect "
"Ratio\" set to \"Force 16:9\" to force 4:3-only games to run at 16:9."
@@ -5626,7 +5761,7 @@ msgstr ""
"Fehler verursachen).
Im Zweifel deaktiviert lassen."
""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:503
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:585
msgid ""
"Forces the game to render the RGB color channels in 24-bit, thereby "
"increasing quality by reducing color banding.
Has no impact on "
@@ -5638,7 +5773,7 @@ msgstr ""
"die Performance und verursacht nur wenige Grafikfehler."
"
Im Zweifel aktiviert lassen."
-#: Source/Core/DolphinQt/ConvertDialog.cpp:59
+#: Source/Core/DolphinQt/ConvertDialog.cpp:60
msgid "Format:"
msgstr "Format:"
@@ -5704,19 +5839,19 @@ msgstr "Bilder zum Aufzeichnen:"
msgid "France"
msgstr "Frankreich"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:311
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:312
msgid "Free Blocks: %1"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:312
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:313
msgid "Free Files: %1"
msgstr ""
-#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:42
+#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:43
msgid "Free Look Control Type"
msgstr "Freies Umsehen-Steuerungstyp"
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:468
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:470
msgid "Free Look Controller %1"
msgstr "Freies Umsehen-Controller %1"
@@ -5724,7 +5859,7 @@ msgstr "Freies Umsehen-Controller %1"
msgid "Free Look Settings"
msgstr "Freies Umsehen-Einstellungen"
-#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:54
+#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:55
msgid ""
"Free Look allows for manipulation of the in-game camera. Different camera "
"types are available from the dropdown.
Disabling the "
@@ -3427,7 +3514,7 @@ msgid ""
"checked."
msgstr ""
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:96
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:97
msgid "Disc"
msgstr ""
@@ -3461,25 +3548,25 @@ msgstr ""
msgid "Distance of travel from neutral position."
msgstr ""
-#: Source/Core/DolphinQt/Main.cpp:259
+#: Source/Core/DolphinQt/Main.cpp:264
msgid "Do you authorize Dolphin to report information to Dolphin's developers?"
msgstr ""
-#: Source/Core/DolphinQt/MainWindow.cpp:1692
+#: Source/Core/DolphinQt/MainWindow.cpp:1712
msgid "Do you want to add \"%1\" to the list of Game Paths?"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1241
+#: Source/Core/DolphinQt/MenuBar.cpp:1227
msgid "Do you want to clear the list of symbol names?"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:658
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:659
#, c-format
msgctxt ""
msgid "Do you want to delete the %n selected save file(s)?"
msgstr ""
-#: Source/Core/DolphinQt/MainWindow.cpp:933
+#: Source/Core/DolphinQt/MainWindow.cpp:935
msgid "Do you want to stop the current emulation?"
msgstr ""
@@ -3491,35 +3578,35 @@ msgstr ""
msgid "Dolby Pro Logic II Decoder"
msgstr ""
-#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:219
-#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:230
+#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:215
+#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:226
msgid "Dolphin FIFO Log (*.dff)"
msgstr ""
-#: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:327
+#: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:326
msgid "Dolphin Game Mod Preset"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1536
-#: Source/Core/DolphinQt/MenuBar.cpp:1553
-#: Source/Core/DolphinQt/MenuBar.cpp:1572
+#: Source/Core/DolphinQt/MenuBar.cpp:1523
+#: Source/Core/DolphinQt/MenuBar.cpp:1540
+#: Source/Core/DolphinQt/MenuBar.cpp:1559
msgid "Dolphin Map File (*.map)"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:73
+#: Source/Core/DolphinQt/MenuBar.cpp:74
msgid "Dolphin Signature CSV File"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:73
+#: Source/Core/DolphinQt/MenuBar.cpp:74
msgid "Dolphin Signature File"
msgstr ""
-#: Source/Core/DolphinQt/MainWindow.cpp:1772
-#: Source/Core/DolphinQt/MainWindow.cpp:1843
+#: Source/Core/DolphinQt/MainWindow.cpp:1823
+#: Source/Core/DolphinQt/MainWindow.cpp:1894
msgid "Dolphin TAS Movies (*.dtm)"
msgstr ""
-#: Source/Core/DolphinQt/ConvertDialog.cpp:326
+#: Source/Core/DolphinQt/ConvertDialog.cpp:327
msgid ""
"Dolphin can't convert NKit files to non-NKit files. Converting an NKit file "
"in Dolphin will result in another NKit file.\n"
@@ -3530,13 +3617,13 @@ msgid ""
"Do you want to continue anyway?"
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:279
+#: Source/Core/DolphinQt/GameList/GameList.cpp:280
msgid ""
"Dolphin could not find any GameCube/Wii ISOs or WADs.\n"
"Double-click here to set a games directory..."
msgstr ""
-#: Source/Core/DolphinQt/ConvertDialog.cpp:526
+#: Source/Core/DolphinQt/ConvertDialog.cpp:529
msgid "Dolphin failed to complete the requested action."
msgstr ""
@@ -3548,7 +3635,7 @@ msgstr ""
msgid "Dolphin is a free and open-source GameCube and Wii emulator."
msgstr ""
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:998
msgid "Dolphin is too old for traversal server"
msgstr ""
@@ -3562,7 +3649,7 @@ msgstr ""
msgid "Dolphin is unable to verify unlicensed discs."
msgstr ""
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:217
msgid ""
"Dolphin will use this for titles whose region cannot be determined "
"automatically."
@@ -3577,15 +3664,15 @@ msgstr ""
msgid "Domain"
msgstr ""
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:193
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:194
msgid "Don't Update"
msgstr ""
-#: Source/Core/DolphinQt/NKitWarningDialog.cpp:53
+#: Source/Core/DolphinQt/NKitWarningDialog.cpp:56
msgid "Don't show this again"
msgstr ""
-#: Source/Core/DiscIO/CompressedBlob.cpp:369
+#: Source/Core/DiscIO/CompressedBlob.cpp:374
msgid "Done compressing disc image."
msgstr ""
@@ -3598,37 +3685,37 @@ msgstr ""
#. i18n: A double precision floating point number
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:139
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:199
-#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:154
+#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:155
msgid "Double"
msgstr ""
#: Source/Core/Core/FreeLookManager.cpp:89
#: Source/Core/Core/HW/WiimoteEmu/Extension/Guitar.cpp:80
#: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:35
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:43
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:44
#: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:21
#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUAccelerometer.cpp:19
#: Source/Core/InputCommon/ControllerEmu/ControllerEmu.h:24
msgid "Down"
msgstr ""
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:86
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:87
msgid "Download Codes"
msgstr ""
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:88
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:89
msgid "Download Codes from the WiiRD Database"
msgstr ""
-#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:148
+#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:153
msgid "Download Game Covers from GameTDB.com for Use in Grid Mode"
msgstr ""
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:370
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:373
msgid "Download complete"
msgstr ""
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:371
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:374
msgid "Downloaded %1 codes. (added %2)"
msgstr ""
@@ -3651,7 +3738,7 @@ msgstr ""
msgid "Dual View"
msgstr ""
-#: Source/Core/Core/HW/EXI/EXI_Device.h:95
+#: Source/Core/Core/HW/EXI/EXI_Device.h:94
msgid "Dummy"
msgstr ""
@@ -3671,7 +3758,7 @@ msgstr ""
msgid "Dump &MRAM"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:814
+#: Source/Core/DolphinQt/MenuBar.cpp:806
msgid "Dump Audio"
msgstr ""
@@ -3683,7 +3770,7 @@ msgstr ""
msgid "Dump EFB Target"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:808
+#: Source/Core/DolphinQt/MenuBar.cpp:800
msgid "Dump Frames"
msgstr ""
@@ -3756,12 +3843,12 @@ msgid "Duration of Turbo Button Release (frames):"
msgstr ""
#: Source/Core/DiscIO/Enums.cpp:95
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174
msgid "Dutch"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:215
+#: Source/Core/DolphinQt/MenuBar.cpp:207
msgid "E&xit"
msgstr ""
@@ -3777,7 +3864,7 @@ msgid ""
"driver."
msgstr ""
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:185
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:186
msgid ""
"Each player sends their own inputs to the game, with equal buffer size for "
"all players, configured by the host.\n"
@@ -3791,7 +3878,7 @@ msgstr ""
#. i18n: One of the elements in the Skylanders games. Japanese: 土. For official translations
#. in other languages, check the SuperChargers manual at https://support.activision.com/manuals
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:336
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:352
msgid "Earth"
msgstr ""
@@ -3804,7 +3891,7 @@ msgstr ""
msgid "Edit Breakpoint"
msgstr ""
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:426
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:430
msgid "Edit..."
msgstr ""
@@ -3838,7 +3925,7 @@ msgstr ""
#. i18n: Elements are a trait of Skylanders figures. For official translations of this term,
#. check the Skylanders SuperChargers manual at https://support.activision.com/manuals
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:289
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:300
msgid "Element"
msgstr ""
@@ -3846,11 +3933,11 @@ msgstr ""
msgid "Embedded Frame Buffer (EFB)"
msgstr ""
-#: Source/Core/Core/State.cpp:541
+#: Source/Core/Core/State.cpp:629
msgid "Empty"
msgstr ""
-#: Source/Core/Core/Core.cpp:246
+#: Source/Core/Core/Core.cpp:247
msgid "Emu Thread already running"
msgstr ""
@@ -3858,15 +3945,15 @@ msgstr ""
msgid "Emulate Disc Speed"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:60
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:61
msgid "Emulate Infinity Base"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:146
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:157
msgid "Emulate Skylander Portal"
msgstr ""
-#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:110
+#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:111
msgid "Emulate the Wii's Bluetooth adapter"
msgstr ""
@@ -3876,11 +3963,11 @@ msgid ""
"Defaults to True"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:230
+#: Source/Core/DolphinQt/MenuBar.cpp:222
msgid "Emulated USB Devices"
msgstr ""
-#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:141
+#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:142
msgid "Emulated Wii Remote"
msgstr ""
@@ -3900,12 +3987,12 @@ msgstr ""
msgid "Emulation must be started to record."
msgstr ""
-#: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:29
-#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:33
+#: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:30
+#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:34
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:120
-#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:129
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:402
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:419
+#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:130
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:406
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:423
msgid "Enable"
msgstr ""
@@ -3913,6 +4000,10 @@ msgstr ""
msgid "Enable API Validation Layers"
msgstr ""
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:83
+msgid "Enable Achievement Badges"
+msgstr ""
+
#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:60
msgid "Enable Achievements"
msgstr ""
@@ -3921,15 +4012,19 @@ msgstr ""
msgid "Enable Audio Stretching"
msgstr ""
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:142
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:143
msgid "Enable Cheats"
msgstr ""
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:155
+#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:53
+msgid "Enable Controller Inpu&t"
+msgstr ""
+
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:161
msgid "Enable Custom RTC"
msgstr ""
-#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:149
+#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:154
msgid "Enable Debugging UI"
msgstr ""
@@ -3937,19 +4032,19 @@ msgstr ""
msgid "Enable Dual Core"
msgstr ""
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:139
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:140
msgid "Enable Dual Core (speedup)"
msgstr ""
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:88
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:94
msgid "Enable Emulated CPU Clock Override"
msgstr ""
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:118
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:124
msgid "Enable Emulated Memory Size Override"
msgstr ""
-#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:78
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:88
msgid "Enable Encore Achievements"
msgstr ""
@@ -3966,10 +4061,14 @@ msgid "Enable Leaderboards"
msgstr ""
#: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:88
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:66
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:68
msgid "Enable MMU"
msgstr ""
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:78
+msgid "Enable Progress Notifications"
+msgstr ""
+
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:156
msgid "Enable Progressive Scan"
msgstr ""
@@ -3983,15 +4082,15 @@ msgid "Enable Rich Presence"
msgstr ""
#: Source/Core/DolphinQt/Config/Mapping/GCPadWiiUConfigDialog.cpp:39
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:353
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:352
msgid "Enable Rumble"
msgstr ""
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:157
msgid "Enable Screen Saver"
msgstr ""
-#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:113
+#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:114
msgid "Enable Speaker Data"
msgstr ""
@@ -3999,11 +4098,11 @@ msgstr ""
msgid "Enable Unofficial Achievements"
msgstr ""
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:230
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:231
msgid "Enable Usage Statistics Reporting"
msgstr ""
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158
msgid "Enable WiiConnect24 via WiiLink"
msgstr ""
@@ -4011,10 +4110,17 @@ msgstr ""
msgid "Enable Wireframe"
msgstr ""
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:77
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:82
msgid "Enable Write-Back Cache (slow)"
msgstr ""
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:85
+msgid ""
+"Enable achievement badges.
Displays icons for the player, game, and "
+"achievements. Simple visual option, but will require a small amount of extra "
+"memory and time to download the images."
+msgstr ""
+
#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:64
msgid ""
"Enable competing in RetroAchievements leaderboards.
Displays a brief popup "
+"message whenever the player makes progress on an achievement that tracks an "
+"accumulated value, such as 60 out of 120 stars."
+msgstr ""
+
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:90
+msgid ""
"Enable unlocking achievements in Encore Mode.
Encore Mode re-enables "
"achievements the player has already unlocked on the site so that the player "
"will be notified if they meet the unlock conditions again, useful for custom "
@@ -4075,7 +4188,7 @@ msgid ""
"= Compatible, OFF = Fast)"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:514
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:596
msgid ""
"Enables detection of arbitrary mipmaps, which some games use for special "
"distance-based effects.
May have false positives that result in "
@@ -4086,11 +4199,12 @@ msgid ""
"dolphin_emphasis>"
msgstr ""
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:79
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:84
msgid ""
-"Enables emulation of the CPU write-back cache.\n"
-"Enabling will have a significant impact on performance.\n"
-"This should be left disabled unless absolutely needed."
+"Enables emulation of the CPU write-back cache. Enabling will have a "
+"significant impact on performance. This should be left disabled unless "
+"absolutely needed.
If unsure, leave this unchecked."
+""
msgstr ""
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:365
@@ -4108,7 +4222,7 @@ msgid ""
"this unchecked."
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:522
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:604
msgid ""
"Enables scRGB HDR output (if supported by your graphics backend and "
"monitor). Fullscreen might be required.
This gives post process "
@@ -4131,13 +4245,19 @@ msgid ""
msgstr ""
#: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:100
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:68
msgid ""
"Enables the Memory Management Unit, needed for some games. (ON = Compatible, "
"OFF = Fast)"
msgstr ""
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:193
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:70
+msgid ""
+"Enables the Memory Management Unit, needed for some games. (ON = Compatible, "
+"OFF = Fast)
If unsure, leave this unchecked."
+"dolphin_emphasis>"
+msgstr ""
+
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190
msgid ""
"Enables the WiiLink service for WiiConnect24 channels.\n"
"WiiLink is an alternate provider for the discontinued WiiConnect24 Channels "
@@ -4164,7 +4284,7 @@ msgstr ""
msgid "Encoding"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:615
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:616
msgid ""
"Encountered the following errors while opening save files:\n"
"%1\n"
@@ -4177,12 +4297,12 @@ msgid "Enet Didn't Initialize"
msgstr ""
#: Source/Core/DiscIO/Enums.cpp:80
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:85
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:169
msgid "English"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:59
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:61
#: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:61
msgid "Enhancements"
msgstr ""
@@ -4213,84 +4333,84 @@ msgstr ""
msgid "Enter the DNS server to use:"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1300
+#: Source/Core/DolphinQt/MenuBar.cpp:1286
msgid "Enter the RSO module address:"
msgstr ""
#: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:194
#: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:250
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:261
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:262
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386
#: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:265
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:343
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:349
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:346
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:352
#: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:46
-#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:521
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:256
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:295
-#: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:232
-#: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:259
-#: Source/Core/DolphinQt/ConvertDialog.cpp:424
-#: Source/Core/DolphinQt/ConvertDialog.cpp:471
-#: Source/Core/DolphinQt/ConvertDialog.cpp:525
+#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:539
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:255
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:296
+#: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:229
+#: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:256
+#: Source/Core/DolphinQt/ConvertDialog.cpp:426
+#: Source/Core/DolphinQt/ConvertDialog.cpp:473
+#: Source/Core/DolphinQt/ConvertDialog.cpp:528
#: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:255
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:638
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:644
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:653
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:665
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:684
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:690
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:705
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:713
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:737
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:744
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:637
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:643
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:652
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:664
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:683
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:689
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:704
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:712
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:736
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:743
#: Source/Core/DolphinQt/Debugger/RegisterColumn.cpp:86
#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:282
#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:431
-#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:241
-#: Source/Core/DolphinQt/GBAWidget.cpp:576
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:346
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:376
-#: Source/Core/DolphinQt/Main.cpp:209 Source/Core/DolphinQt/Main.cpp:225
-#: Source/Core/DolphinQt/Main.cpp:232 Source/Core/DolphinQt/MainWindow.cpp:295
-#: Source/Core/DolphinQt/MainWindow.cpp:303
-#: Source/Core/DolphinQt/MainWindow.cpp:1108
-#: Source/Core/DolphinQt/MainWindow.cpp:1494
-#: Source/Core/DolphinQt/MainWindow.cpp:1501
-#: Source/Core/DolphinQt/MainWindow.cpp:1561
-#: Source/Core/DolphinQt/MainWindow.cpp:1568
-#: Source/Core/DolphinQt/MainWindow.cpp:1670
-#: Source/Core/DolphinQt/MenuBar.cpp:1204
-#: Source/Core/DolphinQt/MenuBar.cpp:1284
+#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:237
+#: Source/Core/DolphinQt/GBAWidget.cpp:578
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:347
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:377
+#: Source/Core/DolphinQt/Main.cpp:211 Source/Core/DolphinQt/Main.cpp:227
+#: Source/Core/DolphinQt/Main.cpp:234 Source/Core/DolphinQt/MainWindow.cpp:297
+#: Source/Core/DolphinQt/MainWindow.cpp:305
+#: Source/Core/DolphinQt/MainWindow.cpp:1110
+#: Source/Core/DolphinQt/MainWindow.cpp:1507
+#: Source/Core/DolphinQt/MainWindow.cpp:1514
+#: Source/Core/DolphinQt/MainWindow.cpp:1574
+#: Source/Core/DolphinQt/MainWindow.cpp:1581
+#: Source/Core/DolphinQt/MainWindow.cpp:1690
+#: Source/Core/DolphinQt/MenuBar.cpp:1190
+#: Source/Core/DolphinQt/MenuBar.cpp:1270
+#: Source/Core/DolphinQt/MenuBar.cpp:1293
#: Source/Core/DolphinQt/MenuBar.cpp:1307
-#: Source/Core/DolphinQt/MenuBar.cpp:1321
-#: Source/Core/DolphinQt/MenuBar.cpp:1352
-#: Source/Core/DolphinQt/MenuBar.cpp:1376
-#: Source/Core/DolphinQt/MenuBar.cpp:1597
-#: Source/Core/DolphinQt/MenuBar.cpp:1608
-#: Source/Core/DolphinQt/MenuBar.cpp:1620
-#: Source/Core/DolphinQt/MenuBar.cpp:1642
-#: Source/Core/DolphinQt/MenuBar.cpp:1668
-#: Source/Core/DolphinQt/MenuBar.cpp:1722
-#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:315
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:477
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:738
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:980
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1098
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1108
-#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:334
-#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:340
-#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:347
+#: Source/Core/DolphinQt/MenuBar.cpp:1339
+#: Source/Core/DolphinQt/MenuBar.cpp:1363
+#: Source/Core/DolphinQt/MenuBar.cpp:1584
+#: Source/Core/DolphinQt/MenuBar.cpp:1595
+#: Source/Core/DolphinQt/MenuBar.cpp:1607
+#: Source/Core/DolphinQt/MenuBar.cpp:1629
+#: Source/Core/DolphinQt/MenuBar.cpp:1655
+#: Source/Core/DolphinQt/MenuBar.cpp:1709
+#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:316
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:479
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:740
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:982
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1100
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1110
+#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:332
+#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:338
+#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:345
#: Source/Core/DolphinQt/RenderWidget.cpp:123
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:203
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:224
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:423
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:439
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:460
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:481
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:525
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:562
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:585
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:204
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:225
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:433
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:449
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:470
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:491
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:535
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:572
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:595
#: Source/Core/DolphinQt/Translation.cpp:322
msgid "Error"
msgstr ""
@@ -4299,13 +4419,13 @@ msgstr ""
msgid "Error Opening Adapter: %1"
msgstr ""
-#: Source/Core/Core/NetPlayServer.cpp:1493
+#: Source/Core/Core/NetPlayServer.cpp:1497
msgid "Error collecting save data!"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:260
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:526
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:533
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:262
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:613
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:620
msgid "Error converting value"
msgstr ""
@@ -4317,15 +4437,15 @@ msgstr ""
msgid "Error obtaining session list: %1"
msgstr ""
-#: Source/Core/DolphinQt/MainWindow.cpp:296
+#: Source/Core/DolphinQt/MainWindow.cpp:298
msgid "Error occurred while loading some texture packs"
msgstr ""
-#: Source/Core/Core/NetPlayClient.cpp:1847
+#: Source/Core/Core/NetPlayClient.cpp:1851
msgid "Error processing codes."
msgstr ""
-#: Source/Core/Core/NetPlayClient.cpp:1819
+#: Source/Core/Core/NetPlayClient.cpp:1823
msgid "Error processing data."
msgstr ""
@@ -4333,11 +4453,11 @@ msgstr ""
msgid "Error reading file: {0}"
msgstr ""
-#: Source/Core/Core/NetPlayServer.cpp:1529
+#: Source/Core/Core/NetPlayServer.cpp:1533
msgid "Error synchronizing cheat codes!"
msgstr ""
-#: Source/Core/Core/NetPlayServer.cpp:1515
+#: Source/Core/Core/NetPlayServer.cpp:1519
msgid "Error synchronizing save data!"
msgstr ""
@@ -4408,7 +4528,7 @@ msgstr ""
msgid "Euphoria"
msgstr ""
-#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:282
+#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:274
#: Source/Core/UICommon/NetPlayIndex.cpp:249
msgid "Europe"
msgstr ""
@@ -4437,11 +4557,11 @@ msgstr ""
msgid "Excluded: %1"
msgstr ""
-#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:73
+#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:72
msgid "Excluded: 0"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:107
+#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108
msgid "Exclusive Ubershaders"
msgstr ""
@@ -4489,14 +4609,14 @@ msgstr ""
msgid "Experimental"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:294
+#: Source/Core/DolphinQt/MenuBar.cpp:286
msgid "Export All Wii Saves"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:422
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:447
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:492
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:499
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:423
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:448
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:493
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:500
msgid "Export Failed"
msgstr ""
@@ -4504,42 +4624,42 @@ msgstr ""
msgid "Export Recording"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:753
+#: Source/Core/DolphinQt/MenuBar.cpp:745
msgid "Export Recording..."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:437
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:438
msgid "Export Save File"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:454
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:455
msgid "Export Save Files"
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:470
+#: Source/Core/DolphinQt/GameList/GameList.cpp:473
msgid "Export Wii Save"
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:388
+#: Source/Core/DolphinQt/GameList/GameList.cpp:389
msgid "Export Wii Saves"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:117
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:118
msgid "Export as .&gcs..."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:118
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:119
msgid "Export as .&sav..."
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1133
+#: Source/Core/DolphinQt/MenuBar.cpp:1115
#, c-format
msgctxt ""
msgid "Exported %n save(s)"
msgstr ""
#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:268
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:432
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:434
#: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:47
msgid "Extension"
msgstr ""
@@ -4552,7 +4672,7 @@ msgstr ""
msgid "Extension Motion Simulation"
msgstr ""
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:520
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:522
msgid "External"
msgstr ""
@@ -4560,35 +4680,35 @@ msgstr ""
msgid "External Frame Buffer (XFB)"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:271
+#: Source/Core/DolphinQt/MenuBar.cpp:263
msgid "Extract Certificates from NAND"
msgstr ""
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:268
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:269
msgid "Extract Entire Disc..."
msgstr ""
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:292
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:293
msgid "Extract Entire Partition..."
msgstr ""
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:299
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:300
msgid "Extract File..."
msgstr ""
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:241
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:242
msgid "Extract Files..."
msgstr ""
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:251
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:252
msgid "Extract System Data..."
msgstr ""
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:355
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:356
msgid "Extracting All Files..."
msgstr ""
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:356
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357
msgid "Extracting Directory..."
msgstr ""
@@ -4598,7 +4718,7 @@ msgid "FD"
msgstr ""
#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:37
-#: Source/Core/DolphinQt/MenuBar.cpp:228
+#: Source/Core/DolphinQt/MenuBar.cpp:220
msgid "FIFO Player"
msgstr ""
@@ -4606,17 +4726,17 @@ msgstr ""
msgid "Failed loading XML."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:347
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:348
msgid ""
"Failed opening memory card:\n"
"%1"
msgstr ""
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:454
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:456
msgid "Failed to add this session to the NetPlay index: %1"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1669
+#: Source/Core/DolphinQt/MenuBar.cpp:1656
msgid "Failed to append to signature file '%1'"
msgstr ""
@@ -4624,11 +4744,11 @@ msgstr ""
msgid "Failed to claim interface for BT passthrough: {0}"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:574
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:676
msgid "Failed to clear Skylander!"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:575
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:677
msgid "Failed to clear the Skylander from slot(%1)!"
msgstr ""
@@ -4636,7 +4756,7 @@ msgstr ""
msgid "Failed to connect to Redump.org"
msgstr ""
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:981
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:983
msgid "Failed to connect to server: %1"
msgstr ""
@@ -4657,15 +4777,15 @@ msgstr ""
msgid "Failed to create DXGI factory"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:289
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:291
msgid "Failed to create Infinity file"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:678
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:798
msgid "Failed to create Skylander file!"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:679
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:799
msgid ""
"Failed to create Skylander file:\n"
"%1\n"
@@ -4681,7 +4801,7 @@ msgstr ""
msgid "Failed to delete NetPlay memory card. Verify your write permissions."
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:841
+#: Source/Core/DolphinQt/GameList/GameList.cpp:854
msgid "Failed to delete the selected file."
msgstr ""
@@ -4689,36 +4809,36 @@ msgstr ""
msgid "Failed to detach kernel driver for BT passthrough: {0}"
msgstr ""
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:343
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:346
msgid "Failed to download codes."
msgstr ""
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:738
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:737
msgid "Failed to dump %1: Can't open file"
msgstr ""
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:745
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:744
msgid "Failed to dump %1: Failed to write to file"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:488
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:489
msgctxt ""
msgid "Failed to export %n out of %1 save file(s)."
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:576
+#: Source/Core/DolphinQt/GameList/GameList.cpp:584
msgid "Failed to export the following save files:"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1204
+#: Source/Core/DolphinQt/MenuBar.cpp:1190
msgid "Failed to extract certificates from NAND"
msgstr ""
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386
msgid "Failed to extract file."
msgstr ""
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:261
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:262
msgid "Failed to extract system data."
msgstr ""
@@ -4733,29 +4853,29 @@ msgstr ""
msgid "Failed to find one or more D3D symbols"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:565
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:566
msgid "Failed to import \"%1\"."
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1109
+#: Source/Core/DolphinQt/MenuBar.cpp:1091
msgid ""
"Failed to import save file. Please launch the game once, then try again."
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1103
+#: Source/Core/DolphinQt/MenuBar.cpp:1085
msgid ""
"Failed to import save file. The given file appears to be corrupted or is not "
"a valid Wii save."
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1116
+#: Source/Core/DolphinQt/MenuBar.cpp:1098
msgid ""
"Failed to import save file. Your NAND may be corrupt, or something is "
"preventing access to files within it. Try repairing your NAND (Tools -> "
"Manage NAND -> Check NAND...), then import the save again."
msgstr ""
-#: Source/Core/DolphinQt/MainWindow.cpp:1108
+#: Source/Core/DolphinQt/MainWindow.cpp:1110
msgid "Failed to init core"
msgstr ""
@@ -4770,23 +4890,23 @@ msgstr ""
msgid "Failed to initialize renderer classes"
msgstr ""
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:204
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:205
msgid "Failed to install pack: %1"
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:619
-#: Source/Core/DolphinQt/MenuBar.cpp:1074
+#: Source/Core/DolphinQt/GameList/GameList.cpp:628
+#: Source/Core/DolphinQt/MenuBar.cpp:1056
msgid "Failed to install this title to the NAND."
msgstr ""
-#: Source/Core/DolphinQt/MainWindow.cpp:1594
+#: Source/Core/DolphinQt/MainWindow.cpp:1607
msgid ""
"Failed to listen on port %1. Is another instance of the NetPlay server "
"running?"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1321
-#: Source/Core/DolphinQt/MenuBar.cpp:1376
+#: Source/Core/DolphinQt/MenuBar.cpp:1307
+#: Source/Core/DolphinQt/MenuBar.cpp:1363
msgid "Failed to load RSO module at %1"
msgstr ""
@@ -4798,15 +4918,15 @@ msgstr ""
msgid "Failed to load dxgi.dll"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1608
+#: Source/Core/DolphinQt/MenuBar.cpp:1595
msgid "Failed to load map file '%1'"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:720
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:842
msgid "Failed to load the Skylander file!"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:721
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:843
msgid "Failed to load the Skylander file(%1)!\n"
msgstr ""
@@ -4820,8 +4940,12 @@ msgid ""
"update package."
msgstr ""
-#: Source/Core/DolphinQt/GBAWidget.cpp:576
-#: Source/Core/DolphinQt/MainWindow.cpp:1670
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:663
+msgid "Failed to modify Skylander!"
+msgstr ""
+
+#: Source/Core/DolphinQt/GBAWidget.cpp:578
+#: Source/Core/DolphinQt/MainWindow.cpp:1690
#: Source/Core/DolphinQt/RenderWidget.cpp:123
msgid "Failed to open '%1'"
msgstr ""
@@ -4848,40 +4972,40 @@ msgid ""
"Make sure there's an application assigned to open INI files."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:861
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:863
msgid "Failed to open file."
msgstr ""
-#: Source/Core/DolphinQt/MainWindow.cpp:1593
+#: Source/Core/DolphinQt/MainWindow.cpp:1606
msgid "Failed to open server"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:164
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:166
msgid "Failed to open the Infinity file!"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:165
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:167
msgid ""
"Failed to open the Infinity file(%1)!\n"
"File may already be in use on the base."
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:696
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:818
msgid "Failed to open the Skylander file!"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:697
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:819
msgid ""
"Failed to open the Skylander file(%1)!\n"
"File may already be in use on the portal."
msgstr ""
-#: Source/Core/DolphinQt/ConvertDialog.cpp:472
+#: Source/Core/DolphinQt/ConvertDialog.cpp:474
msgid "Failed to open the input file \"%1\"."
msgstr ""
-#: Source/Core/DiscIO/CompressedBlob.cpp:282 Source/Core/DiscIO/FileBlob.cpp:53
-#: Source/Core/DiscIO/WIABlob.cpp:2037
+#: Source/Core/DiscIO/CompressedBlob.cpp:287 Source/Core/DiscIO/FileBlob.cpp:58
+#: Source/Core/DiscIO/WIABlob.cpp:2043
msgid ""
"Failed to open the output file \"{0}\".\n"
"Check that you have permissions to write the target folder and that the "
@@ -4901,35 +5025,35 @@ msgstr ""
msgid "Failed to read DFF file."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:863
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:865
msgid "Failed to read from file."
msgstr ""
-#: Source/Core/DiscIO/CompressedBlob.cpp:373 Source/Core/DiscIO/FileBlob.cpp:93
-#: Source/Core/DiscIO/WIABlob.cpp:2052
+#: Source/Core/DiscIO/CompressedBlob.cpp:378 Source/Core/DiscIO/FileBlob.cpp:98
+#: Source/Core/DiscIO/WIABlob.cpp:2058
msgid "Failed to read from the input file \"{0}\"."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:423
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:641
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:424
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:642
msgid "Failed to read selected savefile(s) from memory card."
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:173
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:175
msgid "Failed to read the Infinity file!"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:174
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:176
msgid ""
"Failed to read the Infinity file(%1)!\n"
"File was too small."
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:706
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:828
msgid "Failed to read the Skylander file!"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:707
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:829
msgid ""
"Failed to read the Skylander file(%1)!\n"
"File was too small."
@@ -4939,18 +5063,18 @@ msgstr ""
msgid "Failed to read {0}"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:668
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:669
msgid "Failed to remove file."
msgstr ""
-#: Source/Core/DolphinQt/ConvertDialog.cpp:453
+#: Source/Core/DolphinQt/ConvertDialog.cpp:455
msgid ""
"Failed to remove junk data from file \"%1\".\n"
"\n"
"Would you like to convert it without removing junk data?"
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:647
+#: Source/Core/DolphinQt/GameList/GameList.cpp:658
msgid "Failed to remove this title from the NAND."
msgstr ""
@@ -4966,27 +5090,34 @@ msgstr ""
msgid "Failed to reset NetPlay redirect folder. Verify your write permissions."
msgstr ""
-#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:241
+#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:237
msgid "Failed to save FIFO log."
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1598
+#: Source/Core/DolphinQt/MenuBar.cpp:1585
msgid "Failed to save code map to path '%1'"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1642
+#: Source/Core/DolphinQt/MenuBar.cpp:1629
msgid "Failed to save signature file '%1'"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1621
+#: Source/Core/DolphinQt/MenuBar.cpp:1608
msgid "Failed to save symbol map to path '%1'"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1723
+#: Source/Core/DolphinQt/MenuBar.cpp:1710
msgid "Failed to save to signature file '%1'"
msgstr ""
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:225
+#: Source/Core/Core/Core.cpp:548
+msgid ""
+"Failed to sync SD card with folder. All changes made this session will be "
+"discarded on next boot if you do not manually re-issue a resync in Config > "
+"Wii > SD Card Settings > Convert File to Folder Now!"
+msgstr ""
+
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:226
msgid "Failed to uninstall pack: %1"
msgstr ""
@@ -5006,9 +5137,9 @@ msgstr ""
msgid "Failed to write config file!"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:573
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:676
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:691
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:574
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:677
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:692
msgid "Failed to write modified memory card to disk."
msgstr ""
@@ -5016,33 +5147,33 @@ msgstr ""
msgid "Failed to write redirected save."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:447
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:448
msgid "Failed to write savefile to disk."
msgstr ""
-#: Source/Core/DiscIO/CompressedBlob.cpp:377 Source/Core/DiscIO/FileBlob.cpp:99
-#: Source/Core/DiscIO/WIABlob.cpp:2056
+#: Source/Core/DiscIO/CompressedBlob.cpp:382
+#: Source/Core/DiscIO/FileBlob.cpp:104 Source/Core/DiscIO/WIABlob.cpp:2062
msgid ""
"Failed to write the output file \"{0}\".\n"
"Check that you have enough space available on the target drive."
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:617
-#: Source/Core/DolphinQt/GameList/GameList.cpp:645
-#: Source/Core/DolphinQt/GameList/GameList.cpp:840
-#: Source/Core/DolphinQt/MenuBar.cpp:1074
+#: Source/Core/DolphinQt/GameList/GameList.cpp:626
+#: Source/Core/DolphinQt/GameList/GameList.cpp:656
+#: Source/Core/DolphinQt/GameList/GameList.cpp:853
+#: Source/Core/DolphinQt/MenuBar.cpp:1056
msgid "Failure"
msgstr ""
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:183
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:184
msgid "Fair Input Delay"
msgstr ""
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:199
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:200
msgid "Fallback Region"
msgstr ""
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:210
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:211
msgid "Fallback Region:"
msgstr ""
@@ -5066,17 +5197,21 @@ msgstr ""
msgid "Field of View"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:233
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:235
msgid "Figure Number:"
msgstr ""
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:380
+msgid "Figure type"
+msgstr ""
+
#: Source/Core/DolphinQt/Config/InfoWidget.cpp:46
msgid "File Details"
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:991
+#: Source/Core/DolphinQt/GameList/GameList.cpp:1005
#: Source/Core/DolphinQt/GameList/GameListModel.cpp:229
-#: Source/Core/DolphinQt/MenuBar.cpp:652
+#: Source/Core/DolphinQt/MenuBar.cpp:644
msgid "File Format"
msgstr ""
@@ -5088,20 +5223,20 @@ msgstr ""
msgid "File Info"
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:986
+#: Source/Core/DolphinQt/GameList/GameList.cpp:1000
#: Source/Core/DolphinQt/GameList/GameListModel.cpp:223
-#: Source/Core/DolphinQt/MenuBar.cpp:647
+#: Source/Core/DolphinQt/MenuBar.cpp:639
msgid "File Name"
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:987
+#: Source/Core/DolphinQt/GameList/GameList.cpp:1001
#: Source/Core/DolphinQt/GameList/GameListModel.cpp:225
-#: Source/Core/DolphinQt/MenuBar.cpp:648
+#: Source/Core/DolphinQt/MenuBar.cpp:640
msgid "File Path"
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:990
-#: Source/Core/DolphinQt/MenuBar.cpp:651
+#: Source/Core/DolphinQt/GameList/GameList.cpp:1004
+#: Source/Core/DolphinQt/MenuBar.cpp:643
msgid "File Size"
msgstr ""
@@ -5109,15 +5244,15 @@ msgstr ""
msgid "File Size:"
msgstr ""
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:349
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:352
msgid "File contained no codes."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:149
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:150
msgid "Filename"
msgstr ""
-#: Source/Core/DiscIO/CompressedBlob.cpp:289
+#: Source/Core/DiscIO/CompressedBlob.cpp:294
msgid "Files opened, ready to compress."
msgstr ""
@@ -5127,11 +5262,11 @@ msgid ""
"{1}"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:833
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:835
msgid "Filesize does not match any known GameCube Memory Card size."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:836
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:838
msgid "Filesize in header mismatches actual card size."
msgstr ""
@@ -5139,7 +5274,7 @@ msgstr ""
msgid "Filesystem"
msgstr ""
-#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:102
+#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:103
msgid "Filters"
msgstr ""
@@ -5155,7 +5290,7 @@ msgstr ""
msgid "Finish Calibration"
msgstr ""
-#: Source/Core/DolphinQt/WiiUpdate.cpp:109
+#: Source/Core/DolphinQt/WiiUpdate.cpp:110
msgid ""
"Finishing the update...\n"
"This can take a while."
@@ -5163,19 +5298,19 @@ msgstr ""
#. i18n: One of the elements in the Skylanders games. Japanese: 火. For official translations
#. in other languages, check the SuperChargers manual at https://support.activision.com/manuals
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:333
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:349
msgid "Fire"
msgstr ""
-#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:40
+#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:41
msgid "First Person"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:127
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:128
msgid "Fix Checksums"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:690
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:691
msgid "Fix Checksums Failed"
msgstr ""
@@ -5185,7 +5320,7 @@ msgstr ""
#. i18n: These are the kinds of flags that a CPU uses (e.g. carry),
#. not the kinds of flags that represent e.g. countries
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:166
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167
#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:87
msgid "Flags"
msgstr ""
@@ -5194,12 +5329,12 @@ msgstr ""
#. i18n: Floating-point (non-integer) number
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:138
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:198
-#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:152
+#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:153
#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97
msgid "Float"
msgstr ""
-#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:565
+#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:566
msgid "Follow &branch"
msgstr ""
@@ -5219,35 +5354,35 @@ msgid ""
"\">refer to this page."
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:57
+#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:58
msgid "Force 16:9"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:117
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:152
msgid "Force 24-Bit Color"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:57
+#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:58
msgid "Force 4:3"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:96
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:115
msgid "Force Linear"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:103
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:122
msgid "Force Linear and 16x Anisotropic"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:97
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:116
msgid "Force Linear and 2x Anisotropic"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:99
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:118
msgid "Force Linear and 4x Anisotropic"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:101
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:120
msgid "Force Linear and 8x Anisotropic"
msgstr ""
@@ -5255,7 +5390,7 @@ msgstr ""
msgid "Force Listen Port:"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:95
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:114
msgid "Force Nearest"
msgstr ""
@@ -5267,7 +5402,7 @@ msgstr ""
msgid "Forced on because %1 doesn't support geometry shaders."
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:474
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:556
msgid ""
"Forces the game to output graphics for any aspect ratio. Use with \"Aspect "
"Ratio\" set to \"Force 16:9\" to force 4:3-only games to run at 16:9."
@@ -5277,7 +5412,7 @@ msgid ""
""
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:503
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:585
msgid ""
"Forces the game to render the RGB color channels in 24-bit, thereby "
"increasing quality by reducing color banding.
Has no impact on "
@@ -5285,7 +5420,7 @@ msgid ""
"unsure, leave this checked."
msgstr ""
-#: Source/Core/DolphinQt/ConvertDialog.cpp:59
+#: Source/Core/DolphinQt/ConvertDialog.cpp:60
msgid "Format:"
msgstr ""
@@ -5351,19 +5486,19 @@ msgstr ""
msgid "France"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:311
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:312
msgid "Free Blocks: %1"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:312
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:313
msgid "Free Files: %1"
msgstr ""
-#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:42
+#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:43
msgid "Free Look Control Type"
msgstr ""
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:468
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:470
msgid "Free Look Controller %1"
msgstr ""
@@ -5371,7 +5506,7 @@ msgstr ""
msgid "Free Look Settings"
msgstr ""
-#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:54
+#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:55
msgid ""
"Free Look allows for manipulation of the in-game camera. Different camera "
"types are available from the dropdown.
Disabling the "
@@ -3444,7 +3531,7 @@ msgid ""
"checked."
msgstr ""
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:96
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:97
msgid "Disc"
msgstr "Δίσκος"
@@ -3478,27 +3565,27 @@ msgstr "Απόσταση"
msgid "Distance of travel from neutral position."
msgstr "Απόσταση μετακίνησης από ουδέτερη θέση."
-#: Source/Core/DolphinQt/Main.cpp:259
+#: Source/Core/DolphinQt/Main.cpp:264
msgid "Do you authorize Dolphin to report information to Dolphin's developers?"
msgstr ""
"Εξουσιοδοτείτε το Dolphin να αναφέρει πληροφορίες στους προγραμματιστές του "
"Dolphin;"
-#: Source/Core/DolphinQt/MainWindow.cpp:1692
+#: Source/Core/DolphinQt/MainWindow.cpp:1712
msgid "Do you want to add \"%1\" to the list of Game Paths?"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1241
+#: Source/Core/DolphinQt/MenuBar.cpp:1227
msgid "Do you want to clear the list of symbol names?"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:658
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:659
#, c-format
msgctxt ""
msgid "Do you want to delete the %n selected save file(s)?"
msgstr ""
-#: Source/Core/DolphinQt/MainWindow.cpp:933
+#: Source/Core/DolphinQt/MainWindow.cpp:935
msgid "Do you want to stop the current emulation?"
msgstr "Θέλετε να σταματήσετε την τρέχουσα εξομοίωση;"
@@ -3510,35 +3597,35 @@ msgstr ""
msgid "Dolby Pro Logic II Decoder"
msgstr "Dolby Pro Logic II Αποκωδικοποιητής"
-#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:219
-#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:230
+#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:215
+#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:226
msgid "Dolphin FIFO Log (*.dff)"
msgstr ""
-#: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:327
+#: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:326
msgid "Dolphin Game Mod Preset"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1536
-#: Source/Core/DolphinQt/MenuBar.cpp:1553
-#: Source/Core/DolphinQt/MenuBar.cpp:1572
+#: Source/Core/DolphinQt/MenuBar.cpp:1523
+#: Source/Core/DolphinQt/MenuBar.cpp:1540
+#: Source/Core/DolphinQt/MenuBar.cpp:1559
msgid "Dolphin Map File (*.map)"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:73
+#: Source/Core/DolphinQt/MenuBar.cpp:74
msgid "Dolphin Signature CSV File"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:73
+#: Source/Core/DolphinQt/MenuBar.cpp:74
msgid "Dolphin Signature File"
msgstr ""
-#: Source/Core/DolphinQt/MainWindow.cpp:1772
-#: Source/Core/DolphinQt/MainWindow.cpp:1843
+#: Source/Core/DolphinQt/MainWindow.cpp:1823
+#: Source/Core/DolphinQt/MainWindow.cpp:1894
msgid "Dolphin TAS Movies (*.dtm)"
msgstr "Dolphin TAS Ταινίες (*.dtm)"
-#: Source/Core/DolphinQt/ConvertDialog.cpp:326
+#: Source/Core/DolphinQt/ConvertDialog.cpp:327
msgid ""
"Dolphin can't convert NKit files to non-NKit files. Converting an NKit file "
"in Dolphin will result in another NKit file.\n"
@@ -3549,13 +3636,13 @@ msgid ""
"Do you want to continue anyway?"
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:279
+#: Source/Core/DolphinQt/GameList/GameList.cpp:280
msgid ""
"Dolphin could not find any GameCube/Wii ISOs or WADs.\n"
"Double-click here to set a games directory..."
msgstr ""
-#: Source/Core/DolphinQt/ConvertDialog.cpp:526
+#: Source/Core/DolphinQt/ConvertDialog.cpp:529
msgid "Dolphin failed to complete the requested action."
msgstr "Το Dolphin απέτυχε να ολοκληρώσει την απαιτούμενη ενέργεια."
@@ -3569,7 +3656,7 @@ msgstr ""
"Το Dolphin είναι ένας ελεύθερος και ανοικτού κώδικα εξομοιωτής για GameCube "
"και Wii."
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:998
msgid "Dolphin is too old for traversal server"
msgstr ""
@@ -3583,7 +3670,7 @@ msgstr ""
msgid "Dolphin is unable to verify unlicensed discs."
msgstr ""
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:217
msgid ""
"Dolphin will use this for titles whose region cannot be determined "
"automatically."
@@ -3598,15 +3685,15 @@ msgstr "Το σύστημα cheat του Dolphin είναι επί του παρ
msgid "Domain"
msgstr ""
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:193
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:194
msgid "Don't Update"
msgstr "Να Μην Γίνει Ενημέρωση"
-#: Source/Core/DolphinQt/NKitWarningDialog.cpp:53
+#: Source/Core/DolphinQt/NKitWarningDialog.cpp:56
msgid "Don't show this again"
msgstr "Να μην εμφανιστεί ξανά"
-#: Source/Core/DiscIO/CompressedBlob.cpp:369
+#: Source/Core/DiscIO/CompressedBlob.cpp:374
msgid "Done compressing disc image."
msgstr "Συμπιέστηκε η εικόνα του δίσκου."
@@ -3619,38 +3706,38 @@ msgstr ""
#. i18n: A double precision floating point number
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:139
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:199
-#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:154
+#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:155
msgid "Double"
msgstr ""
#: Source/Core/Core/FreeLookManager.cpp:89
#: Source/Core/Core/HW/WiimoteEmu/Extension/Guitar.cpp:80
#: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:35
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:43
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:44
#: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:21
#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUAccelerometer.cpp:19
#: Source/Core/InputCommon/ControllerEmu/ControllerEmu.h:24
msgid "Down"
msgstr "Κάτω"
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:86
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:87
msgid "Download Codes"
msgstr "Λήψη Κωδικών"
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:88
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:89
msgid "Download Codes from the WiiRD Database"
msgstr "Λήψη Κωδικών από την WiiRD Database"
-#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:148
+#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:153
msgid "Download Game Covers from GameTDB.com for Use in Grid Mode"
msgstr ""
"Λήψη Εξώφυλλων Παιχνιδιών από GameTDB.com για Χρήση σε Προβολή Πλέγματος"
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:370
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:373
msgid "Download complete"
msgstr "Η λήψη ολοκληρώθηκε"
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:371
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:374
msgid "Downloaded %1 codes. (added %2)"
msgstr "Ελήφθησαν %1 κωδικοί. (προστέθηκαν %2)"
@@ -3673,7 +3760,7 @@ msgstr "Διπλός Πυρήνας"
msgid "Dual View"
msgstr ""
-#: Source/Core/Core/HW/EXI/EXI_Device.h:95
+#: Source/Core/Core/HW/EXI/EXI_Device.h:94
msgid "Dummy"
msgstr "Dummy"
@@ -3693,7 +3780,7 @@ msgstr ""
msgid "Dump &MRAM"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:814
+#: Source/Core/DolphinQt/MenuBar.cpp:806
msgid "Dump Audio"
msgstr "Εξαγωγή Ήχου"
@@ -3705,7 +3792,7 @@ msgstr ""
msgid "Dump EFB Target"
msgstr "Εξαγωγή EFB Target"
-#: Source/Core/DolphinQt/MenuBar.cpp:808
+#: Source/Core/DolphinQt/MenuBar.cpp:800
msgid "Dump Frames"
msgstr "Εξαγωγή Καρέ"
@@ -3778,12 +3865,12 @@ msgid "Duration of Turbo Button Release (frames):"
msgstr ""
#: Source/Core/DiscIO/Enums.cpp:95
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174
msgid "Dutch"
msgstr "Ολλανδικά"
-#: Source/Core/DolphinQt/MenuBar.cpp:215
+#: Source/Core/DolphinQt/MenuBar.cpp:207
msgid "E&xit"
msgstr "Έ&ξοδος"
@@ -3799,7 +3886,7 @@ msgid ""
"driver."
msgstr ""
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:185
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:186
msgid ""
"Each player sends their own inputs to the game, with equal buffer size for "
"all players, configured by the host.\n"
@@ -3813,7 +3900,7 @@ msgstr "Ενημερώσεις Μνήμης Νωρίς"
#. i18n: One of the elements in the Skylanders games. Japanese: 土. For official translations
#. in other languages, check the SuperChargers manual at https://support.activision.com/manuals
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:336
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:352
msgid "Earth"
msgstr ""
@@ -3826,7 +3913,7 @@ msgstr "Ανατολική Ασία"
msgid "Edit Breakpoint"
msgstr ""
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:426
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:430
msgid "Edit..."
msgstr ""
@@ -3860,7 +3947,7 @@ msgstr "Εξαγωγή Δίσκου"
#. i18n: Elements are a trait of Skylanders figures. For official translations of this term,
#. check the Skylanders SuperChargers manual at https://support.activision.com/manuals
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:289
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:300
msgid "Element"
msgstr ""
@@ -3868,11 +3955,11 @@ msgstr ""
msgid "Embedded Frame Buffer (EFB)"
msgstr ""
-#: Source/Core/Core/State.cpp:541
+#: Source/Core/Core/State.cpp:629
msgid "Empty"
msgstr "Κενή"
-#: Source/Core/Core/Core.cpp:246
+#: Source/Core/Core/Core.cpp:247
msgid "Emu Thread already running"
msgstr "Το νήμα εξομοίωσης εκτελείται ήδη"
@@ -3880,15 +3967,15 @@ msgstr "Το νήμα εξομοίωσης εκτελείται ήδη"
msgid "Emulate Disc Speed"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:60
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:61
msgid "Emulate Infinity Base"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:146
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:157
msgid "Emulate Skylander Portal"
msgstr ""
-#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:110
+#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:111
msgid "Emulate the Wii's Bluetooth adapter"
msgstr ""
@@ -3898,11 +3985,11 @@ msgid ""
"Defaults to True"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:230
+#: Source/Core/DolphinQt/MenuBar.cpp:222
msgid "Emulated USB Devices"
msgstr ""
-#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:141
+#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:142
msgid "Emulated Wii Remote"
msgstr "Εξομοίωση Wii Remote"
@@ -3922,12 +4009,12 @@ msgstr "Ταχύτητα Εξομοίωσης"
msgid "Emulation must be started to record."
msgstr ""
-#: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:29
-#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:33
+#: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:30
+#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:34
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:120
-#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:129
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:402
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:419
+#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:130
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:406
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:423
msgid "Enable"
msgstr "Ενεργοποίηση"
@@ -3935,6 +4022,10 @@ msgstr "Ενεργοποίηση"
msgid "Enable API Validation Layers"
msgstr ""
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:83
+msgid "Enable Achievement Badges"
+msgstr ""
+
#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:60
msgid "Enable Achievements"
msgstr ""
@@ -3943,15 +4034,19 @@ msgstr ""
msgid "Enable Audio Stretching"
msgstr "Ενεργοποίηση Ελαστικότητας Ήχου"
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:142
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:143
msgid "Enable Cheats"
msgstr "Ενεργοποίηση Cheat"
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:155
+#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:53
+msgid "Enable Controller Inpu&t"
+msgstr ""
+
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:161
msgid "Enable Custom RTC"
msgstr ""
-#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:149
+#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:154
msgid "Enable Debugging UI"
msgstr ""
@@ -3959,19 +4054,19 @@ msgstr ""
msgid "Enable Dual Core"
msgstr "Ενεργοποίηση Διπλού Πυρήνα"
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:139
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:140
msgid "Enable Dual Core (speedup)"
msgstr "Ενεργοποίηση Διπλού Πυρήνα (επιτάχυνση)"
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:88
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:94
msgid "Enable Emulated CPU Clock Override"
msgstr "Ενεργοποίηση Παράκαμψης Εξομοιωμένου CPU Ρολογιού"
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:118
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:124
msgid "Enable Emulated Memory Size Override"
msgstr "Ενεργοποίηση Παράκαμψης Εξομοιωμένου Μεγέθους Μνήμης"
-#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:78
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:88
msgid "Enable Encore Achievements"
msgstr ""
@@ -3988,10 +4083,14 @@ msgid "Enable Leaderboards"
msgstr ""
#: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:88
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:66
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:68
msgid "Enable MMU"
msgstr "Ενεργοποίηση MMU"
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:78
+msgid "Enable Progress Notifications"
+msgstr ""
+
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:156
msgid "Enable Progressive Scan"
msgstr "Ενεργοποίηση Προοδευτικής Σάρωσης"
@@ -4005,15 +4104,15 @@ msgid "Enable Rich Presence"
msgstr ""
#: Source/Core/DolphinQt/Config/Mapping/GCPadWiiUConfigDialog.cpp:39
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:353
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:352
msgid "Enable Rumble"
msgstr "Ενεργοποίηση Δόνησης"
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:157
msgid "Enable Screen Saver"
msgstr "Ενεργοποίηση Προφύλαξης Οθόνης"
-#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:113
+#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:114
msgid "Enable Speaker Data"
msgstr "Ενεργοποίηση Δεδομένων Ηχείου"
@@ -4021,11 +4120,11 @@ msgstr "Ενεργοποίηση Δεδομένων Ηχείου"
msgid "Enable Unofficial Achievements"
msgstr ""
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:230
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:231
msgid "Enable Usage Statistics Reporting"
msgstr ""
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158
msgid "Enable WiiConnect24 via WiiLink"
msgstr ""
@@ -4033,10 +4132,17 @@ msgstr ""
msgid "Enable Wireframe"
msgstr "Ενεργοποίηση Wireframe"
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:77
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:82
msgid "Enable Write-Back Cache (slow)"
msgstr ""
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:85
+msgid ""
+"Enable achievement badges.
Displays icons for the player, game, and "
+"achievements. Simple visual option, but will require a small amount of extra "
+"memory and time to download the images."
+msgstr ""
+
#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:64
msgid ""
"Enable competing in RetroAchievements leaderboards.
Displays a brief popup "
+"message whenever the player makes progress on an achievement that tracks an "
+"accumulated value, such as 60 out of 120 stars."
+msgstr ""
+
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:90
+msgid ""
"Enable unlocking achievements in Encore Mode.
Encore Mode re-enables "
"achievements the player has already unlocked on the site so that the player "
"will be notified if they meet the unlock conditions again, useful for custom "
@@ -4099,7 +4212,7 @@ msgstr ""
"Ενεργοποιεί το Floating Point Result Flag υπολογισμό, απαραίτητο για μερικά "
"παιχνίδια. (Ενεργό = Συμβατότητα, Ανενεργό = Ταχύτητα)"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:514
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:596
msgid ""
"Enables detection of arbitrary mipmaps, which some games use for special "
"distance-based effects.
May have false positives that result in "
@@ -4110,11 +4223,12 @@ msgid ""
"dolphin_emphasis>"
msgstr ""
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:79
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:84
msgid ""
-"Enables emulation of the CPU write-back cache.\n"
-"Enabling will have a significant impact on performance.\n"
-"This should be left disabled unless absolutely needed."
+"Enables emulation of the CPU write-back cache. Enabling will have a "
+"significant impact on performance. This should be left disabled unless "
+"absolutely needed.
If unsure, leave this unchecked."
+""
msgstr ""
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:365
@@ -4132,7 +4246,7 @@ msgid ""
"this unchecked."
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:522
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:604
msgid ""
"Enables scRGB HDR output (if supported by your graphics backend and "
"monitor). Fullscreen might be required.
This gives post process "
@@ -4155,7 +4269,6 @@ msgid ""
msgstr ""
#: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:100
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:68
msgid ""
"Enables the Memory Management Unit, needed for some games. (ON = Compatible, "
"OFF = Fast)"
@@ -4163,7 +4276,14 @@ msgstr ""
"Ενεργοποιεί τη Μονάδα Διαχείρισης Μνήμης, απαραίτητο για μερικά παιχνίδια. "
"(Ενεργό = Συμβατό, Ανενεργό = Γρήγορο)"
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:193
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:70
+msgid ""
+"Enables the Memory Management Unit, needed for some games. (ON = Compatible, "
+"OFF = Fast)
If unsure, leave this unchecked."
+"dolphin_emphasis>"
+msgstr ""
+
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190
msgid ""
"Enables the WiiLink service for WiiConnect24 channels.\n"
"WiiLink is an alternate provider for the discontinued WiiConnect24 Channels "
@@ -4190,7 +4310,7 @@ msgstr ""
msgid "Encoding"
msgstr "Κωδικοποίηση"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:615
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:616
msgid ""
"Encountered the following errors while opening save files:\n"
"%1\n"
@@ -4203,12 +4323,12 @@ msgid "Enet Didn't Initialize"
msgstr ""
#: Source/Core/DiscIO/Enums.cpp:80
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:85
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:169
msgid "English"
msgstr "Αγγλικά"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:59
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:61
#: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:61
msgid "Enhancements"
msgstr "Βελτιώσεις"
@@ -4239,84 +4359,84 @@ msgstr "Εισαγωγή κωδικού"
msgid "Enter the DNS server to use:"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1300
+#: Source/Core/DolphinQt/MenuBar.cpp:1286
msgid "Enter the RSO module address:"
msgstr ""
#: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:194
#: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:250
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:261
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:262
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386
#: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:265
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:343
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:349
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:346
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:352
#: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:46
-#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:521
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:256
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:295
-#: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:232
-#: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:259
-#: Source/Core/DolphinQt/ConvertDialog.cpp:424
-#: Source/Core/DolphinQt/ConvertDialog.cpp:471
-#: Source/Core/DolphinQt/ConvertDialog.cpp:525
+#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:539
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:255
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:296
+#: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:229
+#: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:256
+#: Source/Core/DolphinQt/ConvertDialog.cpp:426
+#: Source/Core/DolphinQt/ConvertDialog.cpp:473
+#: Source/Core/DolphinQt/ConvertDialog.cpp:528
#: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:255
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:638
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:644
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:653
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:665
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:684
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:690
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:705
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:713
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:737
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:744
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:637
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:643
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:652
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:664
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:683
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:689
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:704
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:712
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:736
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:743
#: Source/Core/DolphinQt/Debugger/RegisterColumn.cpp:86
#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:282
#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:431
-#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:241
-#: Source/Core/DolphinQt/GBAWidget.cpp:576
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:346
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:376
-#: Source/Core/DolphinQt/Main.cpp:209 Source/Core/DolphinQt/Main.cpp:225
-#: Source/Core/DolphinQt/Main.cpp:232 Source/Core/DolphinQt/MainWindow.cpp:295
-#: Source/Core/DolphinQt/MainWindow.cpp:303
-#: Source/Core/DolphinQt/MainWindow.cpp:1108
-#: Source/Core/DolphinQt/MainWindow.cpp:1494
-#: Source/Core/DolphinQt/MainWindow.cpp:1501
-#: Source/Core/DolphinQt/MainWindow.cpp:1561
-#: Source/Core/DolphinQt/MainWindow.cpp:1568
-#: Source/Core/DolphinQt/MainWindow.cpp:1670
-#: Source/Core/DolphinQt/MenuBar.cpp:1204
-#: Source/Core/DolphinQt/MenuBar.cpp:1284
+#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:237
+#: Source/Core/DolphinQt/GBAWidget.cpp:578
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:347
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:377
+#: Source/Core/DolphinQt/Main.cpp:211 Source/Core/DolphinQt/Main.cpp:227
+#: Source/Core/DolphinQt/Main.cpp:234 Source/Core/DolphinQt/MainWindow.cpp:297
+#: Source/Core/DolphinQt/MainWindow.cpp:305
+#: Source/Core/DolphinQt/MainWindow.cpp:1110
+#: Source/Core/DolphinQt/MainWindow.cpp:1507
+#: Source/Core/DolphinQt/MainWindow.cpp:1514
+#: Source/Core/DolphinQt/MainWindow.cpp:1574
+#: Source/Core/DolphinQt/MainWindow.cpp:1581
+#: Source/Core/DolphinQt/MainWindow.cpp:1690
+#: Source/Core/DolphinQt/MenuBar.cpp:1190
+#: Source/Core/DolphinQt/MenuBar.cpp:1270
+#: Source/Core/DolphinQt/MenuBar.cpp:1293
#: Source/Core/DolphinQt/MenuBar.cpp:1307
-#: Source/Core/DolphinQt/MenuBar.cpp:1321
-#: Source/Core/DolphinQt/MenuBar.cpp:1352
-#: Source/Core/DolphinQt/MenuBar.cpp:1376
-#: Source/Core/DolphinQt/MenuBar.cpp:1597
-#: Source/Core/DolphinQt/MenuBar.cpp:1608
-#: Source/Core/DolphinQt/MenuBar.cpp:1620
-#: Source/Core/DolphinQt/MenuBar.cpp:1642
-#: Source/Core/DolphinQt/MenuBar.cpp:1668
-#: Source/Core/DolphinQt/MenuBar.cpp:1722
-#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:315
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:477
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:738
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:980
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1098
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1108
-#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:334
-#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:340
-#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:347
+#: Source/Core/DolphinQt/MenuBar.cpp:1339
+#: Source/Core/DolphinQt/MenuBar.cpp:1363
+#: Source/Core/DolphinQt/MenuBar.cpp:1584
+#: Source/Core/DolphinQt/MenuBar.cpp:1595
+#: Source/Core/DolphinQt/MenuBar.cpp:1607
+#: Source/Core/DolphinQt/MenuBar.cpp:1629
+#: Source/Core/DolphinQt/MenuBar.cpp:1655
+#: Source/Core/DolphinQt/MenuBar.cpp:1709
+#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:316
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:479
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:740
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:982
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1100
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1110
+#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:332
+#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:338
+#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:345
#: Source/Core/DolphinQt/RenderWidget.cpp:123
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:203
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:224
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:423
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:439
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:460
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:481
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:525
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:562
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:585
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:204
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:225
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:433
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:449
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:470
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:491
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:535
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:572
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:595
#: Source/Core/DolphinQt/Translation.cpp:322
msgid "Error"
msgstr "Σφάλμα"
@@ -4325,13 +4445,13 @@ msgstr "Σφάλμα"
msgid "Error Opening Adapter: %1"
msgstr ""
-#: Source/Core/Core/NetPlayServer.cpp:1493
+#: Source/Core/Core/NetPlayServer.cpp:1497
msgid "Error collecting save data!"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:260
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:526
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:533
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:262
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:613
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:620
msgid "Error converting value"
msgstr ""
@@ -4345,15 +4465,15 @@ msgstr ""
msgid "Error obtaining session list: %1"
msgstr ""
-#: Source/Core/DolphinQt/MainWindow.cpp:296
+#: Source/Core/DolphinQt/MainWindow.cpp:298
msgid "Error occurred while loading some texture packs"
msgstr ""
-#: Source/Core/Core/NetPlayClient.cpp:1847
+#: Source/Core/Core/NetPlayClient.cpp:1851
msgid "Error processing codes."
msgstr ""
-#: Source/Core/Core/NetPlayClient.cpp:1819
+#: Source/Core/Core/NetPlayClient.cpp:1823
msgid "Error processing data."
msgstr ""
@@ -4361,11 +4481,11 @@ msgstr ""
msgid "Error reading file: {0}"
msgstr ""
-#: Source/Core/Core/NetPlayServer.cpp:1529
+#: Source/Core/Core/NetPlayServer.cpp:1533
msgid "Error synchronizing cheat codes!"
msgstr ""
-#: Source/Core/Core/NetPlayServer.cpp:1515
+#: Source/Core/Core/NetPlayServer.cpp:1519
msgid "Error synchronizing save data!"
msgstr ""
@@ -4436,7 +4556,7 @@ msgstr ""
msgid "Euphoria"
msgstr "Euphoria"
-#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:282
+#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:274
#: Source/Core/UICommon/NetPlayIndex.cpp:249
msgid "Europe"
msgstr "Ευρώπη"
@@ -4465,11 +4585,11 @@ msgstr ""
msgid "Excluded: %1"
msgstr ""
-#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:73
+#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:72
msgid "Excluded: 0"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:107
+#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108
msgid "Exclusive Ubershaders"
msgstr ""
@@ -4517,14 +4637,14 @@ msgstr ""
msgid "Experimental"
msgstr "Πειραματικός"
-#: Source/Core/DolphinQt/MenuBar.cpp:294
+#: Source/Core/DolphinQt/MenuBar.cpp:286
msgid "Export All Wii Saves"
msgstr "Εξαγωγή Όλων Των Αποθηκεύσεων Wii"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:422
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:447
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:492
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:499
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:423
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:448
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:493
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:500
msgid "Export Failed"
msgstr "Η Εξαγωγή Απέτυχε"
@@ -4532,42 +4652,42 @@ msgstr "Η Εξαγωγή Απέτυχε"
msgid "Export Recording"
msgstr "Εξαγωγή Εγγραφής"
-#: Source/Core/DolphinQt/MenuBar.cpp:753
+#: Source/Core/DolphinQt/MenuBar.cpp:745
msgid "Export Recording..."
msgstr "Εξαγωγή Εγγραφής..."
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:437
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:438
msgid "Export Save File"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:454
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:455
msgid "Export Save Files"
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:470
+#: Source/Core/DolphinQt/GameList/GameList.cpp:473
msgid "Export Wii Save"
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:388
+#: Source/Core/DolphinQt/GameList/GameList.cpp:389
msgid "Export Wii Saves"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:117
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:118
msgid "Export as .&gcs..."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:118
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:119
msgid "Export as .&sav..."
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1133
+#: Source/Core/DolphinQt/MenuBar.cpp:1115
#, c-format
msgctxt ""
msgid "Exported %n save(s)"
msgstr ""
#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:268
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:432
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:434
#: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:47
msgid "Extension"
msgstr "Επέκταση"
@@ -4580,7 +4700,7 @@ msgstr ""
msgid "Extension Motion Simulation"
msgstr ""
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:520
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:522
msgid "External"
msgstr ""
@@ -4588,35 +4708,35 @@ msgstr ""
msgid "External Frame Buffer (XFB)"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:271
+#: Source/Core/DolphinQt/MenuBar.cpp:263
msgid "Extract Certificates from NAND"
msgstr ""
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:268
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:269
msgid "Extract Entire Disc..."
msgstr "Εξαγωγή Ολόκληρου Δίσκου..."
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:292
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:293
msgid "Extract Entire Partition..."
msgstr ""
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:299
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:300
msgid "Extract File..."
msgstr "Εξαγωγή Αρχείου..."
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:241
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:242
msgid "Extract Files..."
msgstr "Εξαγωγή Αρχείων..."
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:251
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:252
msgid "Extract System Data..."
msgstr "Εξαγωγή Αρχείων Συστήματος..."
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:355
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:356
msgid "Extracting All Files..."
msgstr "Εξαγωγή Όλων Των Αρχείων..."
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:356
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357
msgid "Extracting Directory..."
msgstr ""
@@ -4626,7 +4746,7 @@ msgid "FD"
msgstr ""
#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:37
-#: Source/Core/DolphinQt/MenuBar.cpp:228
+#: Source/Core/DolphinQt/MenuBar.cpp:220
msgid "FIFO Player"
msgstr "Αναπαραγωγή FIFO"
@@ -4634,17 +4754,17 @@ msgstr "Αναπαραγωγή FIFO"
msgid "Failed loading XML."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:347
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:348
msgid ""
"Failed opening memory card:\n"
"%1"
msgstr ""
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:454
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:456
msgid "Failed to add this session to the NetPlay index: %1"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1669
+#: Source/Core/DolphinQt/MenuBar.cpp:1656
msgid "Failed to append to signature file '%1'"
msgstr ""
@@ -4652,11 +4772,11 @@ msgstr ""
msgid "Failed to claim interface for BT passthrough: {0}"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:574
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:676
msgid "Failed to clear Skylander!"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:575
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:677
msgid "Failed to clear the Skylander from slot(%1)!"
msgstr ""
@@ -4664,7 +4784,7 @@ msgstr ""
msgid "Failed to connect to Redump.org"
msgstr ""
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:981
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:983
msgid "Failed to connect to server: %1"
msgstr ""
@@ -4685,15 +4805,15 @@ msgstr ""
msgid "Failed to create DXGI factory"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:289
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:291
msgid "Failed to create Infinity file"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:678
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:798
msgid "Failed to create Skylander file!"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:679
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:799
msgid ""
"Failed to create Skylander file:\n"
"%1\n"
@@ -4709,7 +4829,7 @@ msgstr ""
msgid "Failed to delete NetPlay memory card. Verify your write permissions."
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:841
+#: Source/Core/DolphinQt/GameList/GameList.cpp:854
msgid "Failed to delete the selected file."
msgstr ""
@@ -4717,36 +4837,36 @@ msgstr ""
msgid "Failed to detach kernel driver for BT passthrough: {0}"
msgstr ""
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:343
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:346
msgid "Failed to download codes."
msgstr "Αποτυχία μεταφόρτωσης κωδικών."
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:738
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:737
msgid "Failed to dump %1: Can't open file"
msgstr ""
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:745
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:744
msgid "Failed to dump %1: Failed to write to file"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:488
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:489
msgctxt ""
msgid "Failed to export %n out of %1 save file(s)."
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:576
+#: Source/Core/DolphinQt/GameList/GameList.cpp:584
msgid "Failed to export the following save files:"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1204
+#: Source/Core/DolphinQt/MenuBar.cpp:1190
msgid "Failed to extract certificates from NAND"
msgstr ""
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386
msgid "Failed to extract file."
msgstr ""
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:261
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:262
msgid "Failed to extract system data."
msgstr ""
@@ -4761,29 +4881,29 @@ msgstr ""
msgid "Failed to find one or more D3D symbols"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:565
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:566
msgid "Failed to import \"%1\"."
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1109
+#: Source/Core/DolphinQt/MenuBar.cpp:1091
msgid ""
"Failed to import save file. Please launch the game once, then try again."
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1103
+#: Source/Core/DolphinQt/MenuBar.cpp:1085
msgid ""
"Failed to import save file. The given file appears to be corrupted or is not "
"a valid Wii save."
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1116
+#: Source/Core/DolphinQt/MenuBar.cpp:1098
msgid ""
"Failed to import save file. Your NAND may be corrupt, or something is "
"preventing access to files within it. Try repairing your NAND (Tools -> "
"Manage NAND -> Check NAND...), then import the save again."
msgstr ""
-#: Source/Core/DolphinQt/MainWindow.cpp:1108
+#: Source/Core/DolphinQt/MainWindow.cpp:1110
msgid "Failed to init core"
msgstr ""
@@ -4798,23 +4918,23 @@ msgstr ""
msgid "Failed to initialize renderer classes"
msgstr ""
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:204
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:205
msgid "Failed to install pack: %1"
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:619
-#: Source/Core/DolphinQt/MenuBar.cpp:1074
+#: Source/Core/DolphinQt/GameList/GameList.cpp:628
+#: Source/Core/DolphinQt/MenuBar.cpp:1056
msgid "Failed to install this title to the NAND."
msgstr ""
-#: Source/Core/DolphinQt/MainWindow.cpp:1594
+#: Source/Core/DolphinQt/MainWindow.cpp:1607
msgid ""
"Failed to listen on port %1. Is another instance of the NetPlay server "
"running?"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1321
-#: Source/Core/DolphinQt/MenuBar.cpp:1376
+#: Source/Core/DolphinQt/MenuBar.cpp:1307
+#: Source/Core/DolphinQt/MenuBar.cpp:1363
msgid "Failed to load RSO module at %1"
msgstr ""
@@ -4826,15 +4946,15 @@ msgstr ""
msgid "Failed to load dxgi.dll"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1608
+#: Source/Core/DolphinQt/MenuBar.cpp:1595
msgid "Failed to load map file '%1'"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:720
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:842
msgid "Failed to load the Skylander file!"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:721
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:843
msgid "Failed to load the Skylander file(%1)!\n"
msgstr ""
@@ -4848,8 +4968,12 @@ msgid ""
"update package."
msgstr ""
-#: Source/Core/DolphinQt/GBAWidget.cpp:576
-#: Source/Core/DolphinQt/MainWindow.cpp:1670
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:663
+msgid "Failed to modify Skylander!"
+msgstr ""
+
+#: Source/Core/DolphinQt/GBAWidget.cpp:578
+#: Source/Core/DolphinQt/MainWindow.cpp:1690
#: Source/Core/DolphinQt/RenderWidget.cpp:123
msgid "Failed to open '%1'"
msgstr ""
@@ -4876,40 +5000,40 @@ msgid ""
"Make sure there's an application assigned to open INI files."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:861
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:863
msgid "Failed to open file."
msgstr ""
-#: Source/Core/DolphinQt/MainWindow.cpp:1593
+#: Source/Core/DolphinQt/MainWindow.cpp:1606
msgid "Failed to open server"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:164
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:166
msgid "Failed to open the Infinity file!"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:165
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:167
msgid ""
"Failed to open the Infinity file(%1)!\n"
"File may already be in use on the base."
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:696
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:818
msgid "Failed to open the Skylander file!"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:697
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:819
msgid ""
"Failed to open the Skylander file(%1)!\n"
"File may already be in use on the portal."
msgstr ""
-#: Source/Core/DolphinQt/ConvertDialog.cpp:472
+#: Source/Core/DolphinQt/ConvertDialog.cpp:474
msgid "Failed to open the input file \"%1\"."
msgstr ""
-#: Source/Core/DiscIO/CompressedBlob.cpp:282 Source/Core/DiscIO/FileBlob.cpp:53
-#: Source/Core/DiscIO/WIABlob.cpp:2037
+#: Source/Core/DiscIO/CompressedBlob.cpp:287 Source/Core/DiscIO/FileBlob.cpp:58
+#: Source/Core/DiscIO/WIABlob.cpp:2043
msgid ""
"Failed to open the output file \"{0}\".\n"
"Check that you have permissions to write the target folder and that the "
@@ -4929,35 +5053,35 @@ msgstr ""
msgid "Failed to read DFF file."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:863
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:865
msgid "Failed to read from file."
msgstr ""
-#: Source/Core/DiscIO/CompressedBlob.cpp:373 Source/Core/DiscIO/FileBlob.cpp:93
-#: Source/Core/DiscIO/WIABlob.cpp:2052
+#: Source/Core/DiscIO/CompressedBlob.cpp:378 Source/Core/DiscIO/FileBlob.cpp:98
+#: Source/Core/DiscIO/WIABlob.cpp:2058
msgid "Failed to read from the input file \"{0}\"."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:423
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:641
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:424
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:642
msgid "Failed to read selected savefile(s) from memory card."
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:173
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:175
msgid "Failed to read the Infinity file!"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:174
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:176
msgid ""
"Failed to read the Infinity file(%1)!\n"
"File was too small."
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:706
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:828
msgid "Failed to read the Skylander file!"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:707
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:829
msgid ""
"Failed to read the Skylander file(%1)!\n"
"File was too small."
@@ -4967,18 +5091,18 @@ msgstr ""
msgid "Failed to read {0}"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:668
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:669
msgid "Failed to remove file."
msgstr ""
-#: Source/Core/DolphinQt/ConvertDialog.cpp:453
+#: Source/Core/DolphinQt/ConvertDialog.cpp:455
msgid ""
"Failed to remove junk data from file \"%1\".\n"
"\n"
"Would you like to convert it without removing junk data?"
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:647
+#: Source/Core/DolphinQt/GameList/GameList.cpp:658
msgid "Failed to remove this title from the NAND."
msgstr ""
@@ -4994,27 +5118,34 @@ msgstr ""
msgid "Failed to reset NetPlay redirect folder. Verify your write permissions."
msgstr ""
-#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:241
+#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:237
msgid "Failed to save FIFO log."
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1598
+#: Source/Core/DolphinQt/MenuBar.cpp:1585
msgid "Failed to save code map to path '%1'"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1642
+#: Source/Core/DolphinQt/MenuBar.cpp:1629
msgid "Failed to save signature file '%1'"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1621
+#: Source/Core/DolphinQt/MenuBar.cpp:1608
msgid "Failed to save symbol map to path '%1'"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1723
+#: Source/Core/DolphinQt/MenuBar.cpp:1710
msgid "Failed to save to signature file '%1'"
msgstr ""
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:225
+#: Source/Core/Core/Core.cpp:548
+msgid ""
+"Failed to sync SD card with folder. All changes made this session will be "
+"discarded on next boot if you do not manually re-issue a resync in Config > "
+"Wii > SD Card Settings > Convert File to Folder Now!"
+msgstr ""
+
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:226
msgid "Failed to uninstall pack: %1"
msgstr ""
@@ -5034,9 +5165,9 @@ msgstr ""
msgid "Failed to write config file!"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:573
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:676
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:691
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:574
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:677
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:692
msgid "Failed to write modified memory card to disk."
msgstr ""
@@ -5044,33 +5175,33 @@ msgstr ""
msgid "Failed to write redirected save."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:447
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:448
msgid "Failed to write savefile to disk."
msgstr ""
-#: Source/Core/DiscIO/CompressedBlob.cpp:377 Source/Core/DiscIO/FileBlob.cpp:99
-#: Source/Core/DiscIO/WIABlob.cpp:2056
+#: Source/Core/DiscIO/CompressedBlob.cpp:382
+#: Source/Core/DiscIO/FileBlob.cpp:104 Source/Core/DiscIO/WIABlob.cpp:2062
msgid ""
"Failed to write the output file \"{0}\".\n"
"Check that you have enough space available on the target drive."
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:617
-#: Source/Core/DolphinQt/GameList/GameList.cpp:645
-#: Source/Core/DolphinQt/GameList/GameList.cpp:840
-#: Source/Core/DolphinQt/MenuBar.cpp:1074
+#: Source/Core/DolphinQt/GameList/GameList.cpp:626
+#: Source/Core/DolphinQt/GameList/GameList.cpp:656
+#: Source/Core/DolphinQt/GameList/GameList.cpp:853
+#: Source/Core/DolphinQt/MenuBar.cpp:1056
msgid "Failure"
msgstr "Αποτυχία"
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:183
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:184
msgid "Fair Input Delay"
msgstr ""
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:199
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:200
msgid "Fallback Region"
msgstr ""
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:210
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:211
msgid "Fallback Region:"
msgstr ""
@@ -5094,17 +5225,21 @@ msgstr ""
msgid "Field of View"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:233
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:235
msgid "Figure Number:"
msgstr ""
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:380
+msgid "Figure type"
+msgstr ""
+
#: Source/Core/DolphinQt/Config/InfoWidget.cpp:46
msgid "File Details"
msgstr "Πληροφορίες Αρχείου"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:991
+#: Source/Core/DolphinQt/GameList/GameList.cpp:1005
#: Source/Core/DolphinQt/GameList/GameListModel.cpp:229
-#: Source/Core/DolphinQt/MenuBar.cpp:652
+#: Source/Core/DolphinQt/MenuBar.cpp:644
msgid "File Format"
msgstr ""
@@ -5116,20 +5251,20 @@ msgstr ""
msgid "File Info"
msgstr "Πληροφορίες Αρχείου"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:986
+#: Source/Core/DolphinQt/GameList/GameList.cpp:1000
#: Source/Core/DolphinQt/GameList/GameListModel.cpp:223
-#: Source/Core/DolphinQt/MenuBar.cpp:647
+#: Source/Core/DolphinQt/MenuBar.cpp:639
msgid "File Name"
msgstr "Όνομα Αρχείου"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:987
+#: Source/Core/DolphinQt/GameList/GameList.cpp:1001
#: Source/Core/DolphinQt/GameList/GameListModel.cpp:225
-#: Source/Core/DolphinQt/MenuBar.cpp:648
+#: Source/Core/DolphinQt/MenuBar.cpp:640
msgid "File Path"
msgstr "Διαδρομή Αρχείου"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:990
-#: Source/Core/DolphinQt/MenuBar.cpp:651
+#: Source/Core/DolphinQt/GameList/GameList.cpp:1004
+#: Source/Core/DolphinQt/MenuBar.cpp:643
msgid "File Size"
msgstr "Μέγεθος Αρχείου"
@@ -5137,15 +5272,15 @@ msgstr "Μέγεθος Αρχείου"
msgid "File Size:"
msgstr "Μέγεθος Αρχείου:"
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:349
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:352
msgid "File contained no codes."
msgstr "Το αρχείο δεν περιείχε κωδικούς."
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:149
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:150
msgid "Filename"
msgstr ""
-#: Source/Core/DiscIO/CompressedBlob.cpp:289
+#: Source/Core/DiscIO/CompressedBlob.cpp:294
msgid "Files opened, ready to compress."
msgstr ""
@@ -5155,11 +5290,11 @@ msgid ""
"{1}"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:833
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:835
msgid "Filesize does not match any known GameCube Memory Card size."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:836
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:838
msgid "Filesize in header mismatches actual card size."
msgstr ""
@@ -5167,7 +5302,7 @@ msgstr ""
msgid "Filesystem"
msgstr "Αρχεία δίσκου"
-#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:102
+#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:103
msgid "Filters"
msgstr "Φίλτρα"
@@ -5183,7 +5318,7 @@ msgstr ""
msgid "Finish Calibration"
msgstr ""
-#: Source/Core/DolphinQt/WiiUpdate.cpp:109
+#: Source/Core/DolphinQt/WiiUpdate.cpp:110
msgid ""
"Finishing the update...\n"
"This can take a while."
@@ -5191,19 +5326,19 @@ msgstr ""
#. i18n: One of the elements in the Skylanders games. Japanese: 火. For official translations
#. in other languages, check the SuperChargers manual at https://support.activision.com/manuals
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:333
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:349
msgid "Fire"
msgstr ""
-#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:40
+#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:41
msgid "First Person"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:127
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:128
msgid "Fix Checksums"
msgstr "Επιδιόρθωση Checksum"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:690
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:691
msgid "Fix Checksums Failed"
msgstr ""
@@ -5213,7 +5348,7 @@ msgstr ""
#. i18n: These are the kinds of flags that a CPU uses (e.g. carry),
#. not the kinds of flags that represent e.g. countries
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:166
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167
#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:87
msgid "Flags"
msgstr ""
@@ -5222,12 +5357,12 @@ msgstr ""
#. i18n: Floating-point (non-integer) number
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:138
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:198
-#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:152
+#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:153
#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97
msgid "Float"
msgstr ""
-#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:565
+#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:566
msgid "Follow &branch"
msgstr ""
@@ -5247,35 +5382,35 @@ msgid ""
"\">refer to this page."
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:57
+#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:58
msgid "Force 16:9"
msgstr "Επιβολή 16:9"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:117
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:152
msgid "Force 24-Bit Color"
msgstr "Επιβολή Χρώματος 24-Bit"
-#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:57
+#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:58
msgid "Force 4:3"
msgstr "Επιβολή 4:3"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:96
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:115
msgid "Force Linear"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:103
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:122
msgid "Force Linear and 16x Anisotropic"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:97
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:116
msgid "Force Linear and 2x Anisotropic"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:99
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:118
msgid "Force Linear and 4x Anisotropic"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:101
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:120
msgid "Force Linear and 8x Anisotropic"
msgstr ""
@@ -5283,7 +5418,7 @@ msgstr ""
msgid "Force Listen Port:"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:95
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:114
msgid "Force Nearest"
msgstr ""
@@ -5295,7 +5430,7 @@ msgstr ""
msgid "Forced on because %1 doesn't support geometry shaders."
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:474
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:556
msgid ""
"Forces the game to output graphics for any aspect ratio. Use with \"Aspect "
"Ratio\" set to \"Force 16:9\" to force 4:3-only games to run at 16:9."
@@ -5305,7 +5440,7 @@ msgid ""
""
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:503
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:585
msgid ""
"Forces the game to render the RGB color channels in 24-bit, thereby "
"increasing quality by reducing color banding.
Has no impact on "
@@ -5313,7 +5448,7 @@ msgid ""
"unsure, leave this checked."
msgstr ""
-#: Source/Core/DolphinQt/ConvertDialog.cpp:59
+#: Source/Core/DolphinQt/ConvertDialog.cpp:60
msgid "Format:"
msgstr ""
@@ -5379,19 +5514,19 @@ msgstr "Καρέ για Εγγραφή:"
msgid "France"
msgstr "Γαλλία"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:311
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:312
msgid "Free Blocks: %1"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:312
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:313
msgid "Free Files: %1"
msgstr ""
-#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:42
+#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:43
msgid "Free Look Control Type"
msgstr ""
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:468
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:470
msgid "Free Look Controller %1"
msgstr ""
@@ -5399,7 +5534,7 @@ msgstr ""
msgid "Free Look Settings"
msgstr ""
-#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:54
+#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:55
msgid ""
"Free Look allows for manipulation of the in-game camera. Different camera "
"types are available from the dropdown.
Disabling the "
@@ -3426,7 +3513,7 @@ msgid ""
"checked."
msgstr ""
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:96
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:97
msgid "Disc"
msgstr ""
@@ -3460,25 +3547,25 @@ msgstr ""
msgid "Distance of travel from neutral position."
msgstr ""
-#: Source/Core/DolphinQt/Main.cpp:259
+#: Source/Core/DolphinQt/Main.cpp:264
msgid "Do you authorize Dolphin to report information to Dolphin's developers?"
msgstr ""
-#: Source/Core/DolphinQt/MainWindow.cpp:1692
+#: Source/Core/DolphinQt/MainWindow.cpp:1712
msgid "Do you want to add \"%1\" to the list of Game Paths?"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1241
+#: Source/Core/DolphinQt/MenuBar.cpp:1227
msgid "Do you want to clear the list of symbol names?"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:658
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:659
#, c-format
msgctxt ""
msgid "Do you want to delete the %n selected save file(s)?"
msgstr ""
-#: Source/Core/DolphinQt/MainWindow.cpp:933
+#: Source/Core/DolphinQt/MainWindow.cpp:935
msgid "Do you want to stop the current emulation?"
msgstr ""
@@ -3490,35 +3577,35 @@ msgstr ""
msgid "Dolby Pro Logic II Decoder"
msgstr ""
-#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:219
-#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:230
+#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:215
+#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:226
msgid "Dolphin FIFO Log (*.dff)"
msgstr ""
-#: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:327
+#: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:326
msgid "Dolphin Game Mod Preset"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1536
-#: Source/Core/DolphinQt/MenuBar.cpp:1553
-#: Source/Core/DolphinQt/MenuBar.cpp:1572
+#: Source/Core/DolphinQt/MenuBar.cpp:1523
+#: Source/Core/DolphinQt/MenuBar.cpp:1540
+#: Source/Core/DolphinQt/MenuBar.cpp:1559
msgid "Dolphin Map File (*.map)"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:73
+#: Source/Core/DolphinQt/MenuBar.cpp:74
msgid "Dolphin Signature CSV File"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:73
+#: Source/Core/DolphinQt/MenuBar.cpp:74
msgid "Dolphin Signature File"
msgstr ""
-#: Source/Core/DolphinQt/MainWindow.cpp:1772
-#: Source/Core/DolphinQt/MainWindow.cpp:1843
+#: Source/Core/DolphinQt/MainWindow.cpp:1823
+#: Source/Core/DolphinQt/MainWindow.cpp:1894
msgid "Dolphin TAS Movies (*.dtm)"
msgstr ""
-#: Source/Core/DolphinQt/ConvertDialog.cpp:326
+#: Source/Core/DolphinQt/ConvertDialog.cpp:327
msgid ""
"Dolphin can't convert NKit files to non-NKit files. Converting an NKit file "
"in Dolphin will result in another NKit file.\n"
@@ -3529,13 +3616,13 @@ msgid ""
"Do you want to continue anyway?"
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:279
+#: Source/Core/DolphinQt/GameList/GameList.cpp:280
msgid ""
"Dolphin could not find any GameCube/Wii ISOs or WADs.\n"
"Double-click here to set a games directory..."
msgstr ""
-#: Source/Core/DolphinQt/ConvertDialog.cpp:526
+#: Source/Core/DolphinQt/ConvertDialog.cpp:529
msgid "Dolphin failed to complete the requested action."
msgstr ""
@@ -3547,7 +3634,7 @@ msgstr ""
msgid "Dolphin is a free and open-source GameCube and Wii emulator."
msgstr ""
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:998
msgid "Dolphin is too old for traversal server"
msgstr ""
@@ -3561,7 +3648,7 @@ msgstr ""
msgid "Dolphin is unable to verify unlicensed discs."
msgstr ""
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:217
msgid ""
"Dolphin will use this for titles whose region cannot be determined "
"automatically."
@@ -3576,15 +3663,15 @@ msgstr ""
msgid "Domain"
msgstr ""
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:193
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:194
msgid "Don't Update"
msgstr ""
-#: Source/Core/DolphinQt/NKitWarningDialog.cpp:53
+#: Source/Core/DolphinQt/NKitWarningDialog.cpp:56
msgid "Don't show this again"
msgstr ""
-#: Source/Core/DiscIO/CompressedBlob.cpp:369
+#: Source/Core/DiscIO/CompressedBlob.cpp:374
msgid "Done compressing disc image."
msgstr ""
@@ -3597,37 +3684,37 @@ msgstr ""
#. i18n: A double precision floating point number
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:139
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:199
-#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:154
+#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:155
msgid "Double"
msgstr ""
#: Source/Core/Core/FreeLookManager.cpp:89
#: Source/Core/Core/HW/WiimoteEmu/Extension/Guitar.cpp:80
#: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:35
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:43
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:44
#: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:21
#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUAccelerometer.cpp:19
#: Source/Core/InputCommon/ControllerEmu/ControllerEmu.h:24
msgid "Down"
msgstr ""
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:86
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:87
msgid "Download Codes"
msgstr ""
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:88
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:89
msgid "Download Codes from the WiiRD Database"
msgstr ""
-#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:148
+#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:153
msgid "Download Game Covers from GameTDB.com for Use in Grid Mode"
msgstr ""
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:370
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:373
msgid "Download complete"
msgstr ""
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:371
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:374
msgid "Downloaded %1 codes. (added %2)"
msgstr ""
@@ -3650,7 +3737,7 @@ msgstr ""
msgid "Dual View"
msgstr ""
-#: Source/Core/Core/HW/EXI/EXI_Device.h:95
+#: Source/Core/Core/HW/EXI/EXI_Device.h:94
msgid "Dummy"
msgstr ""
@@ -3670,7 +3757,7 @@ msgstr ""
msgid "Dump &MRAM"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:814
+#: Source/Core/DolphinQt/MenuBar.cpp:806
msgid "Dump Audio"
msgstr ""
@@ -3682,7 +3769,7 @@ msgstr ""
msgid "Dump EFB Target"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:808
+#: Source/Core/DolphinQt/MenuBar.cpp:800
msgid "Dump Frames"
msgstr ""
@@ -3755,12 +3842,12 @@ msgid "Duration of Turbo Button Release (frames):"
msgstr ""
#: Source/Core/DiscIO/Enums.cpp:95
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174
msgid "Dutch"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:215
+#: Source/Core/DolphinQt/MenuBar.cpp:207
msgid "E&xit"
msgstr ""
@@ -3776,7 +3863,7 @@ msgid ""
"driver."
msgstr ""
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:185
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:186
msgid ""
"Each player sends their own inputs to the game, with equal buffer size for "
"all players, configured by the host.\n"
@@ -3790,7 +3877,7 @@ msgstr ""
#. i18n: One of the elements in the Skylanders games. Japanese: 土. For official translations
#. in other languages, check the SuperChargers manual at https://support.activision.com/manuals
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:336
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:352
msgid "Earth"
msgstr ""
@@ -3803,7 +3890,7 @@ msgstr ""
msgid "Edit Breakpoint"
msgstr ""
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:426
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:430
msgid "Edit..."
msgstr ""
@@ -3837,7 +3924,7 @@ msgstr ""
#. i18n: Elements are a trait of Skylanders figures. For official translations of this term,
#. check the Skylanders SuperChargers manual at https://support.activision.com/manuals
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:289
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:300
msgid "Element"
msgstr ""
@@ -3845,11 +3932,11 @@ msgstr ""
msgid "Embedded Frame Buffer (EFB)"
msgstr ""
-#: Source/Core/Core/State.cpp:541
+#: Source/Core/Core/State.cpp:629
msgid "Empty"
msgstr ""
-#: Source/Core/Core/Core.cpp:246
+#: Source/Core/Core/Core.cpp:247
msgid "Emu Thread already running"
msgstr ""
@@ -3857,15 +3944,15 @@ msgstr ""
msgid "Emulate Disc Speed"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:60
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:61
msgid "Emulate Infinity Base"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:146
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:157
msgid "Emulate Skylander Portal"
msgstr ""
-#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:110
+#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:111
msgid "Emulate the Wii's Bluetooth adapter"
msgstr ""
@@ -3875,11 +3962,11 @@ msgid ""
"Defaults to True"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:230
+#: Source/Core/DolphinQt/MenuBar.cpp:222
msgid "Emulated USB Devices"
msgstr ""
-#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:141
+#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:142
msgid "Emulated Wii Remote"
msgstr ""
@@ -3899,12 +3986,12 @@ msgstr ""
msgid "Emulation must be started to record."
msgstr ""
-#: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:29
-#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:33
+#: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:30
+#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:34
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:120
-#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:129
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:402
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:419
+#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:130
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:406
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:423
msgid "Enable"
msgstr ""
@@ -3912,6 +3999,10 @@ msgstr ""
msgid "Enable API Validation Layers"
msgstr ""
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:83
+msgid "Enable Achievement Badges"
+msgstr ""
+
#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:60
msgid "Enable Achievements"
msgstr ""
@@ -3920,15 +4011,19 @@ msgstr ""
msgid "Enable Audio Stretching"
msgstr ""
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:142
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:143
msgid "Enable Cheats"
msgstr ""
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:155
+#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:53
+msgid "Enable Controller Inpu&t"
+msgstr ""
+
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:161
msgid "Enable Custom RTC"
msgstr ""
-#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:149
+#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:154
msgid "Enable Debugging UI"
msgstr ""
@@ -3936,19 +4031,19 @@ msgstr ""
msgid "Enable Dual Core"
msgstr ""
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:139
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:140
msgid "Enable Dual Core (speedup)"
msgstr ""
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:88
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:94
msgid "Enable Emulated CPU Clock Override"
msgstr ""
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:118
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:124
msgid "Enable Emulated Memory Size Override"
msgstr ""
-#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:78
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:88
msgid "Enable Encore Achievements"
msgstr ""
@@ -3965,10 +4060,14 @@ msgid "Enable Leaderboards"
msgstr ""
#: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:88
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:66
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:68
msgid "Enable MMU"
msgstr ""
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:78
+msgid "Enable Progress Notifications"
+msgstr ""
+
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:156
msgid "Enable Progressive Scan"
msgstr ""
@@ -3982,15 +4081,15 @@ msgid "Enable Rich Presence"
msgstr ""
#: Source/Core/DolphinQt/Config/Mapping/GCPadWiiUConfigDialog.cpp:39
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:353
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:352
msgid "Enable Rumble"
msgstr ""
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:157
msgid "Enable Screen Saver"
msgstr ""
-#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:113
+#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:114
msgid "Enable Speaker Data"
msgstr ""
@@ -3998,11 +4097,11 @@ msgstr ""
msgid "Enable Unofficial Achievements"
msgstr ""
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:230
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:231
msgid "Enable Usage Statistics Reporting"
msgstr ""
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158
msgid "Enable WiiConnect24 via WiiLink"
msgstr ""
@@ -4010,10 +4109,17 @@ msgstr ""
msgid "Enable Wireframe"
msgstr ""
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:77
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:82
msgid "Enable Write-Back Cache (slow)"
msgstr ""
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:85
+msgid ""
+"Enable achievement badges.
Displays icons for the player, game, and "
+"achievements. Simple visual option, but will require a small amount of extra "
+"memory and time to download the images."
+msgstr ""
+
#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:64
msgid ""
"Enable competing in RetroAchievements leaderboards.
Displays a brief popup "
+"message whenever the player makes progress on an achievement that tracks an "
+"accumulated value, such as 60 out of 120 stars."
+msgstr ""
+
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:90
+msgid ""
"Enable unlocking achievements in Encore Mode.
Encore Mode re-enables "
"achievements the player has already unlocked on the site so that the player "
"will be notified if they meet the unlock conditions again, useful for custom "
@@ -4074,7 +4187,7 @@ msgid ""
"= Compatible, OFF = Fast)"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:514
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:596
msgid ""
"Enables detection of arbitrary mipmaps, which some games use for special "
"distance-based effects.
May have false positives that result in "
@@ -4085,11 +4198,12 @@ msgid ""
"dolphin_emphasis>"
msgstr ""
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:79
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:84
msgid ""
-"Enables emulation of the CPU write-back cache.\n"
-"Enabling will have a significant impact on performance.\n"
-"This should be left disabled unless absolutely needed."
+"Enables emulation of the CPU write-back cache. Enabling will have a "
+"significant impact on performance. This should be left disabled unless "
+"absolutely needed.
If unsure, leave this unchecked."
+""
msgstr ""
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:365
@@ -4107,7 +4221,7 @@ msgid ""
"this unchecked."
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:522
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:604
msgid ""
"Enables scRGB HDR output (if supported by your graphics backend and "
"monitor). Fullscreen might be required.
This gives post process "
@@ -4130,13 +4244,19 @@ msgid ""
msgstr ""
#: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:100
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:68
msgid ""
"Enables the Memory Management Unit, needed for some games. (ON = Compatible, "
"OFF = Fast)"
msgstr ""
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:193
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:70
+msgid ""
+"Enables the Memory Management Unit, needed for some games. (ON = Compatible, "
+"OFF = Fast)
If unsure, leave this unchecked."
+"dolphin_emphasis>"
+msgstr ""
+
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190
msgid ""
"Enables the WiiLink service for WiiConnect24 channels.\n"
"WiiLink is an alternate provider for the discontinued WiiConnect24 Channels "
@@ -4163,7 +4283,7 @@ msgstr ""
msgid "Encoding"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:615
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:616
msgid ""
"Encountered the following errors while opening save files:\n"
"%1\n"
@@ -4176,12 +4296,12 @@ msgid "Enet Didn't Initialize"
msgstr ""
#: Source/Core/DiscIO/Enums.cpp:80
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:85
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:169
msgid "English"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:59
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:61
#: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:61
msgid "Enhancements"
msgstr ""
@@ -4212,84 +4332,84 @@ msgstr ""
msgid "Enter the DNS server to use:"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1300
+#: Source/Core/DolphinQt/MenuBar.cpp:1286
msgid "Enter the RSO module address:"
msgstr ""
#: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:194
#: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:250
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:261
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:262
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386
#: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:265
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:343
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:349
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:346
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:352
#: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:46
-#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:521
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:256
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:295
-#: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:232
-#: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:259
-#: Source/Core/DolphinQt/ConvertDialog.cpp:424
-#: Source/Core/DolphinQt/ConvertDialog.cpp:471
-#: Source/Core/DolphinQt/ConvertDialog.cpp:525
+#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:539
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:255
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:296
+#: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:229
+#: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:256
+#: Source/Core/DolphinQt/ConvertDialog.cpp:426
+#: Source/Core/DolphinQt/ConvertDialog.cpp:473
+#: Source/Core/DolphinQt/ConvertDialog.cpp:528
#: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:255
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:638
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:644
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:653
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:665
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:684
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:690
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:705
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:713
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:737
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:744
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:637
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:643
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:652
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:664
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:683
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:689
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:704
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:712
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:736
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:743
#: Source/Core/DolphinQt/Debugger/RegisterColumn.cpp:86
#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:282
#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:431
-#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:241
-#: Source/Core/DolphinQt/GBAWidget.cpp:576
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:346
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:376
-#: Source/Core/DolphinQt/Main.cpp:209 Source/Core/DolphinQt/Main.cpp:225
-#: Source/Core/DolphinQt/Main.cpp:232 Source/Core/DolphinQt/MainWindow.cpp:295
-#: Source/Core/DolphinQt/MainWindow.cpp:303
-#: Source/Core/DolphinQt/MainWindow.cpp:1108
-#: Source/Core/DolphinQt/MainWindow.cpp:1494
-#: Source/Core/DolphinQt/MainWindow.cpp:1501
-#: Source/Core/DolphinQt/MainWindow.cpp:1561
-#: Source/Core/DolphinQt/MainWindow.cpp:1568
-#: Source/Core/DolphinQt/MainWindow.cpp:1670
-#: Source/Core/DolphinQt/MenuBar.cpp:1204
-#: Source/Core/DolphinQt/MenuBar.cpp:1284
+#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:237
+#: Source/Core/DolphinQt/GBAWidget.cpp:578
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:347
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:377
+#: Source/Core/DolphinQt/Main.cpp:211 Source/Core/DolphinQt/Main.cpp:227
+#: Source/Core/DolphinQt/Main.cpp:234 Source/Core/DolphinQt/MainWindow.cpp:297
+#: Source/Core/DolphinQt/MainWindow.cpp:305
+#: Source/Core/DolphinQt/MainWindow.cpp:1110
+#: Source/Core/DolphinQt/MainWindow.cpp:1507
+#: Source/Core/DolphinQt/MainWindow.cpp:1514
+#: Source/Core/DolphinQt/MainWindow.cpp:1574
+#: Source/Core/DolphinQt/MainWindow.cpp:1581
+#: Source/Core/DolphinQt/MainWindow.cpp:1690
+#: Source/Core/DolphinQt/MenuBar.cpp:1190
+#: Source/Core/DolphinQt/MenuBar.cpp:1270
+#: Source/Core/DolphinQt/MenuBar.cpp:1293
#: Source/Core/DolphinQt/MenuBar.cpp:1307
-#: Source/Core/DolphinQt/MenuBar.cpp:1321
-#: Source/Core/DolphinQt/MenuBar.cpp:1352
-#: Source/Core/DolphinQt/MenuBar.cpp:1376
-#: Source/Core/DolphinQt/MenuBar.cpp:1597
-#: Source/Core/DolphinQt/MenuBar.cpp:1608
-#: Source/Core/DolphinQt/MenuBar.cpp:1620
-#: Source/Core/DolphinQt/MenuBar.cpp:1642
-#: Source/Core/DolphinQt/MenuBar.cpp:1668
-#: Source/Core/DolphinQt/MenuBar.cpp:1722
-#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:315
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:477
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:738
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:980
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1098
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1108
-#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:334
-#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:340
-#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:347
+#: Source/Core/DolphinQt/MenuBar.cpp:1339
+#: Source/Core/DolphinQt/MenuBar.cpp:1363
+#: Source/Core/DolphinQt/MenuBar.cpp:1584
+#: Source/Core/DolphinQt/MenuBar.cpp:1595
+#: Source/Core/DolphinQt/MenuBar.cpp:1607
+#: Source/Core/DolphinQt/MenuBar.cpp:1629
+#: Source/Core/DolphinQt/MenuBar.cpp:1655
+#: Source/Core/DolphinQt/MenuBar.cpp:1709
+#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:316
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:479
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:740
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:982
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1100
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1110
+#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:332
+#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:338
+#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:345
#: Source/Core/DolphinQt/RenderWidget.cpp:123
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:203
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:224
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:423
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:439
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:460
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:481
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:525
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:562
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:585
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:204
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:225
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:433
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:449
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:470
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:491
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:535
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:572
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:595
#: Source/Core/DolphinQt/Translation.cpp:322
msgid "Error"
msgstr ""
@@ -4298,13 +4418,13 @@ msgstr ""
msgid "Error Opening Adapter: %1"
msgstr ""
-#: Source/Core/Core/NetPlayServer.cpp:1493
+#: Source/Core/Core/NetPlayServer.cpp:1497
msgid "Error collecting save data!"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:260
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:526
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:533
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:262
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:613
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:620
msgid "Error converting value"
msgstr ""
@@ -4316,15 +4436,15 @@ msgstr ""
msgid "Error obtaining session list: %1"
msgstr ""
-#: Source/Core/DolphinQt/MainWindow.cpp:296
+#: Source/Core/DolphinQt/MainWindow.cpp:298
msgid "Error occurred while loading some texture packs"
msgstr ""
-#: Source/Core/Core/NetPlayClient.cpp:1847
+#: Source/Core/Core/NetPlayClient.cpp:1851
msgid "Error processing codes."
msgstr ""
-#: Source/Core/Core/NetPlayClient.cpp:1819
+#: Source/Core/Core/NetPlayClient.cpp:1823
msgid "Error processing data."
msgstr ""
@@ -4332,11 +4452,11 @@ msgstr ""
msgid "Error reading file: {0}"
msgstr ""
-#: Source/Core/Core/NetPlayServer.cpp:1529
+#: Source/Core/Core/NetPlayServer.cpp:1533
msgid "Error synchronizing cheat codes!"
msgstr ""
-#: Source/Core/Core/NetPlayServer.cpp:1515
+#: Source/Core/Core/NetPlayServer.cpp:1519
msgid "Error synchronizing save data!"
msgstr ""
@@ -4407,7 +4527,7 @@ msgstr ""
msgid "Euphoria"
msgstr ""
-#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:282
+#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:274
#: Source/Core/UICommon/NetPlayIndex.cpp:249
msgid "Europe"
msgstr ""
@@ -4436,11 +4556,11 @@ msgstr ""
msgid "Excluded: %1"
msgstr ""
-#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:73
+#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:72
msgid "Excluded: 0"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:107
+#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108
msgid "Exclusive Ubershaders"
msgstr ""
@@ -4488,14 +4608,14 @@ msgstr ""
msgid "Experimental"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:294
+#: Source/Core/DolphinQt/MenuBar.cpp:286
msgid "Export All Wii Saves"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:422
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:447
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:492
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:499
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:423
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:448
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:493
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:500
msgid "Export Failed"
msgstr ""
@@ -4503,42 +4623,42 @@ msgstr ""
msgid "Export Recording"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:753
+#: Source/Core/DolphinQt/MenuBar.cpp:745
msgid "Export Recording..."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:437
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:438
msgid "Export Save File"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:454
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:455
msgid "Export Save Files"
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:470
+#: Source/Core/DolphinQt/GameList/GameList.cpp:473
msgid "Export Wii Save"
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:388
+#: Source/Core/DolphinQt/GameList/GameList.cpp:389
msgid "Export Wii Saves"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:117
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:118
msgid "Export as .&gcs..."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:118
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:119
msgid "Export as .&sav..."
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1133
+#: Source/Core/DolphinQt/MenuBar.cpp:1115
#, c-format
msgctxt ""
msgid "Exported %n save(s)"
msgstr ""
#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:268
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:432
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:434
#: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:47
msgid "Extension"
msgstr ""
@@ -4551,7 +4671,7 @@ msgstr ""
msgid "Extension Motion Simulation"
msgstr ""
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:520
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:522
msgid "External"
msgstr ""
@@ -4559,35 +4679,35 @@ msgstr ""
msgid "External Frame Buffer (XFB)"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:271
+#: Source/Core/DolphinQt/MenuBar.cpp:263
msgid "Extract Certificates from NAND"
msgstr ""
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:268
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:269
msgid "Extract Entire Disc..."
msgstr ""
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:292
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:293
msgid "Extract Entire Partition..."
msgstr ""
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:299
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:300
msgid "Extract File..."
msgstr ""
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:241
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:242
msgid "Extract Files..."
msgstr ""
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:251
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:252
msgid "Extract System Data..."
msgstr ""
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:355
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:356
msgid "Extracting All Files..."
msgstr ""
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:356
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357
msgid "Extracting Directory..."
msgstr ""
@@ -4597,7 +4717,7 @@ msgid "FD"
msgstr ""
#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:37
-#: Source/Core/DolphinQt/MenuBar.cpp:228
+#: Source/Core/DolphinQt/MenuBar.cpp:220
msgid "FIFO Player"
msgstr ""
@@ -4605,17 +4725,17 @@ msgstr ""
msgid "Failed loading XML."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:347
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:348
msgid ""
"Failed opening memory card:\n"
"%1"
msgstr ""
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:454
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:456
msgid "Failed to add this session to the NetPlay index: %1"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1669
+#: Source/Core/DolphinQt/MenuBar.cpp:1656
msgid "Failed to append to signature file '%1'"
msgstr ""
@@ -4623,11 +4743,11 @@ msgstr ""
msgid "Failed to claim interface for BT passthrough: {0}"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:574
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:676
msgid "Failed to clear Skylander!"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:575
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:677
msgid "Failed to clear the Skylander from slot(%1)!"
msgstr ""
@@ -4635,7 +4755,7 @@ msgstr ""
msgid "Failed to connect to Redump.org"
msgstr ""
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:981
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:983
msgid "Failed to connect to server: %1"
msgstr ""
@@ -4656,15 +4776,15 @@ msgstr ""
msgid "Failed to create DXGI factory"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:289
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:291
msgid "Failed to create Infinity file"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:678
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:798
msgid "Failed to create Skylander file!"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:679
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:799
msgid ""
"Failed to create Skylander file:\n"
"%1\n"
@@ -4680,7 +4800,7 @@ msgstr ""
msgid "Failed to delete NetPlay memory card. Verify your write permissions."
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:841
+#: Source/Core/DolphinQt/GameList/GameList.cpp:854
msgid "Failed to delete the selected file."
msgstr ""
@@ -4688,36 +4808,36 @@ msgstr ""
msgid "Failed to detach kernel driver for BT passthrough: {0}"
msgstr ""
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:343
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:346
msgid "Failed to download codes."
msgstr ""
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:738
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:737
msgid "Failed to dump %1: Can't open file"
msgstr ""
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:745
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:744
msgid "Failed to dump %1: Failed to write to file"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:488
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:489
msgctxt ""
msgid "Failed to export %n out of %1 save file(s)."
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:576
+#: Source/Core/DolphinQt/GameList/GameList.cpp:584
msgid "Failed to export the following save files:"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1204
+#: Source/Core/DolphinQt/MenuBar.cpp:1190
msgid "Failed to extract certificates from NAND"
msgstr ""
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386
msgid "Failed to extract file."
msgstr ""
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:261
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:262
msgid "Failed to extract system data."
msgstr ""
@@ -4732,29 +4852,29 @@ msgstr ""
msgid "Failed to find one or more D3D symbols"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:565
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:566
msgid "Failed to import \"%1\"."
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1109
+#: Source/Core/DolphinQt/MenuBar.cpp:1091
msgid ""
"Failed to import save file. Please launch the game once, then try again."
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1103
+#: Source/Core/DolphinQt/MenuBar.cpp:1085
msgid ""
"Failed to import save file. The given file appears to be corrupted or is not "
"a valid Wii save."
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1116
+#: Source/Core/DolphinQt/MenuBar.cpp:1098
msgid ""
"Failed to import save file. Your NAND may be corrupt, or something is "
"preventing access to files within it. Try repairing your NAND (Tools -> "
"Manage NAND -> Check NAND...), then import the save again."
msgstr ""
-#: Source/Core/DolphinQt/MainWindow.cpp:1108
+#: Source/Core/DolphinQt/MainWindow.cpp:1110
msgid "Failed to init core"
msgstr ""
@@ -4769,23 +4889,23 @@ msgstr ""
msgid "Failed to initialize renderer classes"
msgstr ""
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:204
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:205
msgid "Failed to install pack: %1"
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:619
-#: Source/Core/DolphinQt/MenuBar.cpp:1074
+#: Source/Core/DolphinQt/GameList/GameList.cpp:628
+#: Source/Core/DolphinQt/MenuBar.cpp:1056
msgid "Failed to install this title to the NAND."
msgstr ""
-#: Source/Core/DolphinQt/MainWindow.cpp:1594
+#: Source/Core/DolphinQt/MainWindow.cpp:1607
msgid ""
"Failed to listen on port %1. Is another instance of the NetPlay server "
"running?"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1321
-#: Source/Core/DolphinQt/MenuBar.cpp:1376
+#: Source/Core/DolphinQt/MenuBar.cpp:1307
+#: Source/Core/DolphinQt/MenuBar.cpp:1363
msgid "Failed to load RSO module at %1"
msgstr ""
@@ -4797,15 +4917,15 @@ msgstr ""
msgid "Failed to load dxgi.dll"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1608
+#: Source/Core/DolphinQt/MenuBar.cpp:1595
msgid "Failed to load map file '%1'"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:720
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:842
msgid "Failed to load the Skylander file!"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:721
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:843
msgid "Failed to load the Skylander file(%1)!\n"
msgstr ""
@@ -4819,8 +4939,12 @@ msgid ""
"update package."
msgstr ""
-#: Source/Core/DolphinQt/GBAWidget.cpp:576
-#: Source/Core/DolphinQt/MainWindow.cpp:1670
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:663
+msgid "Failed to modify Skylander!"
+msgstr ""
+
+#: Source/Core/DolphinQt/GBAWidget.cpp:578
+#: Source/Core/DolphinQt/MainWindow.cpp:1690
#: Source/Core/DolphinQt/RenderWidget.cpp:123
msgid "Failed to open '%1'"
msgstr ""
@@ -4847,40 +4971,40 @@ msgid ""
"Make sure there's an application assigned to open INI files."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:861
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:863
msgid "Failed to open file."
msgstr ""
-#: Source/Core/DolphinQt/MainWindow.cpp:1593
+#: Source/Core/DolphinQt/MainWindow.cpp:1606
msgid "Failed to open server"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:164
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:166
msgid "Failed to open the Infinity file!"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:165
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:167
msgid ""
"Failed to open the Infinity file(%1)!\n"
"File may already be in use on the base."
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:696
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:818
msgid "Failed to open the Skylander file!"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:697
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:819
msgid ""
"Failed to open the Skylander file(%1)!\n"
"File may already be in use on the portal."
msgstr ""
-#: Source/Core/DolphinQt/ConvertDialog.cpp:472
+#: Source/Core/DolphinQt/ConvertDialog.cpp:474
msgid "Failed to open the input file \"%1\"."
msgstr ""
-#: Source/Core/DiscIO/CompressedBlob.cpp:282 Source/Core/DiscIO/FileBlob.cpp:53
-#: Source/Core/DiscIO/WIABlob.cpp:2037
+#: Source/Core/DiscIO/CompressedBlob.cpp:287 Source/Core/DiscIO/FileBlob.cpp:58
+#: Source/Core/DiscIO/WIABlob.cpp:2043
msgid ""
"Failed to open the output file \"{0}\".\n"
"Check that you have permissions to write the target folder and that the "
@@ -4900,35 +5024,35 @@ msgstr ""
msgid "Failed to read DFF file."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:863
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:865
msgid "Failed to read from file."
msgstr ""
-#: Source/Core/DiscIO/CompressedBlob.cpp:373 Source/Core/DiscIO/FileBlob.cpp:93
-#: Source/Core/DiscIO/WIABlob.cpp:2052
+#: Source/Core/DiscIO/CompressedBlob.cpp:378 Source/Core/DiscIO/FileBlob.cpp:98
+#: Source/Core/DiscIO/WIABlob.cpp:2058
msgid "Failed to read from the input file \"{0}\"."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:423
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:641
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:424
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:642
msgid "Failed to read selected savefile(s) from memory card."
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:173
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:175
msgid "Failed to read the Infinity file!"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:174
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:176
msgid ""
"Failed to read the Infinity file(%1)!\n"
"File was too small."
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:706
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:828
msgid "Failed to read the Skylander file!"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:707
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:829
msgid ""
"Failed to read the Skylander file(%1)!\n"
"File was too small."
@@ -4938,18 +5062,18 @@ msgstr ""
msgid "Failed to read {0}"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:668
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:669
msgid "Failed to remove file."
msgstr ""
-#: Source/Core/DolphinQt/ConvertDialog.cpp:453
+#: Source/Core/DolphinQt/ConvertDialog.cpp:455
msgid ""
"Failed to remove junk data from file \"%1\".\n"
"\n"
"Would you like to convert it without removing junk data?"
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:647
+#: Source/Core/DolphinQt/GameList/GameList.cpp:658
msgid "Failed to remove this title from the NAND."
msgstr ""
@@ -4965,27 +5089,34 @@ msgstr ""
msgid "Failed to reset NetPlay redirect folder. Verify your write permissions."
msgstr ""
-#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:241
+#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:237
msgid "Failed to save FIFO log."
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1598
+#: Source/Core/DolphinQt/MenuBar.cpp:1585
msgid "Failed to save code map to path '%1'"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1642
+#: Source/Core/DolphinQt/MenuBar.cpp:1629
msgid "Failed to save signature file '%1'"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1621
+#: Source/Core/DolphinQt/MenuBar.cpp:1608
msgid "Failed to save symbol map to path '%1'"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1723
+#: Source/Core/DolphinQt/MenuBar.cpp:1710
msgid "Failed to save to signature file '%1'"
msgstr ""
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:225
+#: Source/Core/Core/Core.cpp:548
+msgid ""
+"Failed to sync SD card with folder. All changes made this session will be "
+"discarded on next boot if you do not manually re-issue a resync in Config > "
+"Wii > SD Card Settings > Convert File to Folder Now!"
+msgstr ""
+
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:226
msgid "Failed to uninstall pack: %1"
msgstr ""
@@ -5005,9 +5136,9 @@ msgstr ""
msgid "Failed to write config file!"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:573
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:676
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:691
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:574
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:677
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:692
msgid "Failed to write modified memory card to disk."
msgstr ""
@@ -5015,33 +5146,33 @@ msgstr ""
msgid "Failed to write redirected save."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:447
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:448
msgid "Failed to write savefile to disk."
msgstr ""
-#: Source/Core/DiscIO/CompressedBlob.cpp:377 Source/Core/DiscIO/FileBlob.cpp:99
-#: Source/Core/DiscIO/WIABlob.cpp:2056
+#: Source/Core/DiscIO/CompressedBlob.cpp:382
+#: Source/Core/DiscIO/FileBlob.cpp:104 Source/Core/DiscIO/WIABlob.cpp:2062
msgid ""
"Failed to write the output file \"{0}\".\n"
"Check that you have enough space available on the target drive."
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:617
-#: Source/Core/DolphinQt/GameList/GameList.cpp:645
-#: Source/Core/DolphinQt/GameList/GameList.cpp:840
-#: Source/Core/DolphinQt/MenuBar.cpp:1074
+#: Source/Core/DolphinQt/GameList/GameList.cpp:626
+#: Source/Core/DolphinQt/GameList/GameList.cpp:656
+#: Source/Core/DolphinQt/GameList/GameList.cpp:853
+#: Source/Core/DolphinQt/MenuBar.cpp:1056
msgid "Failure"
msgstr ""
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:183
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:184
msgid "Fair Input Delay"
msgstr ""
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:199
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:200
msgid "Fallback Region"
msgstr ""
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:210
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:211
msgid "Fallback Region:"
msgstr ""
@@ -5065,17 +5196,21 @@ msgstr ""
msgid "Field of View"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:233
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:235
msgid "Figure Number:"
msgstr ""
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:380
+msgid "Figure type"
+msgstr ""
+
#: Source/Core/DolphinQt/Config/InfoWidget.cpp:46
msgid "File Details"
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:991
+#: Source/Core/DolphinQt/GameList/GameList.cpp:1005
#: Source/Core/DolphinQt/GameList/GameListModel.cpp:229
-#: Source/Core/DolphinQt/MenuBar.cpp:652
+#: Source/Core/DolphinQt/MenuBar.cpp:644
msgid "File Format"
msgstr ""
@@ -5087,20 +5222,20 @@ msgstr ""
msgid "File Info"
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:986
+#: Source/Core/DolphinQt/GameList/GameList.cpp:1000
#: Source/Core/DolphinQt/GameList/GameListModel.cpp:223
-#: Source/Core/DolphinQt/MenuBar.cpp:647
+#: Source/Core/DolphinQt/MenuBar.cpp:639
msgid "File Name"
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:987
+#: Source/Core/DolphinQt/GameList/GameList.cpp:1001
#: Source/Core/DolphinQt/GameList/GameListModel.cpp:225
-#: Source/Core/DolphinQt/MenuBar.cpp:648
+#: Source/Core/DolphinQt/MenuBar.cpp:640
msgid "File Path"
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:990
-#: Source/Core/DolphinQt/MenuBar.cpp:651
+#: Source/Core/DolphinQt/GameList/GameList.cpp:1004
+#: Source/Core/DolphinQt/MenuBar.cpp:643
msgid "File Size"
msgstr ""
@@ -5108,15 +5243,15 @@ msgstr ""
msgid "File Size:"
msgstr ""
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:349
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:352
msgid "File contained no codes."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:149
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:150
msgid "Filename"
msgstr ""
-#: Source/Core/DiscIO/CompressedBlob.cpp:289
+#: Source/Core/DiscIO/CompressedBlob.cpp:294
msgid "Files opened, ready to compress."
msgstr ""
@@ -5126,11 +5261,11 @@ msgid ""
"{1}"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:833
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:835
msgid "Filesize does not match any known GameCube Memory Card size."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:836
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:838
msgid "Filesize in header mismatches actual card size."
msgstr ""
@@ -5138,7 +5273,7 @@ msgstr ""
msgid "Filesystem"
msgstr ""
-#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:102
+#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:103
msgid "Filters"
msgstr ""
@@ -5154,7 +5289,7 @@ msgstr ""
msgid "Finish Calibration"
msgstr ""
-#: Source/Core/DolphinQt/WiiUpdate.cpp:109
+#: Source/Core/DolphinQt/WiiUpdate.cpp:110
msgid ""
"Finishing the update...\n"
"This can take a while."
@@ -5162,19 +5297,19 @@ msgstr ""
#. i18n: One of the elements in the Skylanders games. Japanese: 火. For official translations
#. in other languages, check the SuperChargers manual at https://support.activision.com/manuals
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:333
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:349
msgid "Fire"
msgstr ""
-#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:40
+#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:41
msgid "First Person"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:127
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:128
msgid "Fix Checksums"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:690
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:691
msgid "Fix Checksums Failed"
msgstr ""
@@ -5184,7 +5319,7 @@ msgstr ""
#. i18n: These are the kinds of flags that a CPU uses (e.g. carry),
#. not the kinds of flags that represent e.g. countries
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:166
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167
#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:87
msgid "Flags"
msgstr ""
@@ -5193,12 +5328,12 @@ msgstr ""
#. i18n: Floating-point (non-integer) number
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:138
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:198
-#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:152
+#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:153
#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97
msgid "Float"
msgstr ""
-#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:565
+#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:566
msgid "Follow &branch"
msgstr ""
@@ -5218,35 +5353,35 @@ msgid ""
"Dolphin\">refer to this page."
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:57
+#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:58
msgid "Force 16:9"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:117
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:152
msgid "Force 24-Bit Color"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:57
+#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:58
msgid "Force 4:3"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:96
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:115
msgid "Force Linear"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:103
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:122
msgid "Force Linear and 16x Anisotropic"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:97
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:116
msgid "Force Linear and 2x Anisotropic"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:99
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:118
msgid "Force Linear and 4x Anisotropic"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:101
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:120
msgid "Force Linear and 8x Anisotropic"
msgstr ""
@@ -5254,7 +5389,7 @@ msgstr ""
msgid "Force Listen Port:"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:95
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:114
msgid "Force Nearest"
msgstr ""
@@ -5266,7 +5401,7 @@ msgstr ""
msgid "Forced on because %1 doesn't support geometry shaders."
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:474
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:556
msgid ""
"Forces the game to output graphics for any aspect ratio. Use with \"Aspect "
"Ratio\" set to \"Force 16:9\" to force 4:3-only games to run at 16:9."
@@ -5276,7 +5411,7 @@ msgid ""
""
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:503
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:585
msgid ""
"Forces the game to render the RGB color channels in 24-bit, thereby "
"increasing quality by reducing color banding.
Has no impact on "
@@ -5284,7 +5419,7 @@ msgid ""
"unsure, leave this checked."
msgstr ""
-#: Source/Core/DolphinQt/ConvertDialog.cpp:59
+#: Source/Core/DolphinQt/ConvertDialog.cpp:60
msgid "Format:"
msgstr ""
@@ -5350,19 +5485,19 @@ msgstr ""
msgid "France"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:311
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:312
msgid "Free Blocks: %1"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:312
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:313
msgid "Free Files: %1"
msgstr ""
-#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:42
+#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:43
msgid "Free Look Control Type"
msgstr ""
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:468
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:470
msgid "Free Look Controller %1"
msgstr ""
@@ -5370,7 +5505,7 @@ msgstr ""
msgid "Free Look Settings"
msgstr ""
-#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:54
+#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:55
msgid ""
"Free Look allows for manipulation of the in-game camera. Different camera "
"types are available from the dropdown.
Si necesitas ayuda, consulta esta página."
-#: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:38
+#: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:39
msgid "Dance Mat"
msgstr "Alfombra de baile"
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:137
+#. i18n: One of the elements in the Skylanders games. For official translations
+#. in other languages, check the SuperChargers manual at https://support.activision.com/manuals
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:365
+msgid "Dark"
+msgstr "Oscuridad"
+
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:138
msgid "Data"
msgstr "Datos"
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:144
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:145
msgid "Data Partition (%1)"
msgstr "Partición de datos (%1)"
@@ -3470,23 +3576,23 @@ msgstr "Transferencia de datos"
msgid "Data Type"
msgstr "Tipo de datos"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:848
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:850
msgid "Data in area of file that should be unused."
msgstr "Datos en área de archivo que deberian ser sin uso"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:865
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:867
msgid "Data in unrecognized format or corrupted."
msgstr "Los datos están en un formato no reconocido o está corruptos"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:377
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:378
msgid "Data inconsistency in GCMemcardManager, aborting action."
msgstr "Inconsistencia de datos en GCMemcardManager, cancelando acción."
-#: Source/Core/Core/NetPlayClient.cpp:1818
+#: Source/Core/Core/NetPlayClient.cpp:1822
msgid "Data received!"
msgstr "¡Datos recibidos!"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:402
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:403
msgid "Datel MaxDrive/Pro files"
msgstr "Archivos de Datel MaxDrive/Pro"
@@ -3500,7 +3606,7 @@ msgid "Debug"
msgstr "Depurar"
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:77
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:449
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:451
msgid "Debugging"
msgstr "Depuración"
@@ -3546,8 +3652,9 @@ msgstr "Disminuir X"
msgid "Decrease Y"
msgstr "Disminuir Y"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:90
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:154
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:109
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:126
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:155
msgid "Default"
msgstr "Valor predeterminado"
@@ -3555,7 +3662,7 @@ msgstr "Valor predeterminado"
msgid "Default Config (Read Only)"
msgstr "Configuración predeterminada (solo lectura)"
-#: Source/Core/DolphinQt/Settings/AudioPane.cpp:369
+#: Source/Core/DolphinQt/Settings/AudioPane.cpp:366
msgid "Default Device"
msgstr "Dispositivo predeterminado"
@@ -3594,17 +3701,17 @@ msgstr ""
"estabilidad.
Si tienes dudas, deja esta opción "
"desactivada."
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:132
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:111
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:133
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:112
#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:102
msgid "Delete"
msgstr "Borrar"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:481
+#: Source/Core/DolphinQt/GameList/GameList.cpp:488
msgid "Delete File..."
msgstr "Borrar archivo..."
-#: Source/Core/DolphinQt/GameList/GameList.cpp:392
+#: Source/Core/DolphinQt/GameList/GameList.cpp:393
msgid "Delete Selected Files..."
msgstr "Borrar archivos seleccionados..."
@@ -3613,7 +3720,7 @@ msgstr "Borrar archivos seleccionados..."
msgid "Delete the existing file '{0}'?"
msgstr "¿Borrar el archivo «{0}»?"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:562
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:648
msgid "Depth"
msgstr "Profundidad"
@@ -3621,26 +3728,26 @@ msgstr "Profundidad"
msgid "Depth Percentage:"
msgstr "Porcentaje de profundidad:"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:177
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:216
msgid "Depth:"
msgstr "Profundidad:"
#: Source/Core/DolphinQt/CheatSearchWidget.cpp:534
#: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:48
#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:233
-#: Source/Core/DolphinQt/GameList/GameList.cpp:984
+#: Source/Core/DolphinQt/GameList/GameList.cpp:998
#: Source/Core/DolphinQt/GameList/GameListModel.cpp:219
-#: Source/Core/DolphinQt/MenuBar.cpp:645
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:91
+#: Source/Core/DolphinQt/MenuBar.cpp:637
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:92
msgid "Description"
msgstr "Descripción"
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:110
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:111
#: Source/Core/DolphinQt/Config/InfoWidget.cpp:158
msgid "Description:"
msgstr "Descripción:"
-#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:219
+#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:220
msgid "Description: "
msgstr "Descripción:"
@@ -3648,11 +3755,11 @@ msgstr "Descripción:"
msgid "Detached"
msgstr "Separado"
-#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:243
+#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:262
msgid "Detect"
msgstr "Detectar"
-#: Source/Core/DolphinQt/MenuBar.cpp:1328
+#: Source/Core/DolphinQt/MenuBar.cpp:1314
msgid "Detecting RSO Modules"
msgstr "Detección de módulos RSO"
@@ -3660,11 +3767,11 @@ msgstr "Detección de módulos RSO"
msgid "Deterministic dual core:"
msgstr "Doble núcleo determinista:"
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:193
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:194
msgid "Dev (multiple times a day)"
msgstr "Dev (varias veces al día)"
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:99
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:100
msgid "Device"
msgstr "Dispositivo"
@@ -3673,7 +3780,7 @@ msgstr "Dispositivo"
msgid "Device PID (e.g., 0305)"
msgstr "PID del dispositivo (por ejemplo: 0305)"
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:93
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:94
msgid "Device Settings"
msgstr "Ajustes de dispositivos"
@@ -3690,11 +3797,11 @@ msgstr "Dispositivo:"
msgid "Did not recognize %1 as a valid Riivolution XML file."
msgstr "El archivo %1 no ha sido reconocido como un XML de Riivolution válido."
-#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:107
+#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:108
msgid "Diff"
msgstr "Comparación"
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:191
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:188
msgid "Dims the screen after five minutes of inactivity."
msgstr "Oscurece la pantalla después de cinco minutos de inactividad."
@@ -3706,12 +3813,12 @@ msgstr "Conexión directa"
msgid "Direct3D 11"
msgstr "Direct3D 11"
-#: Source/Core/DolphinQt/GBAWidget.cpp:386
+#: Source/Core/DolphinQt/GBAWidget.cpp:387
msgid "Dis&connected"
msgstr "Des&conectado"
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:402
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:419
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:406
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:423
msgid "Disable"
msgstr "Desactivar"
@@ -3719,7 +3826,7 @@ msgstr "Desactivar"
msgid "Disable Bounding Box"
msgstr "Desactivar delimitado rectangular"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:119
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:154
msgid "Disable Copy Filter"
msgstr "Desactivar filtrado de copia"
@@ -3731,15 +3838,19 @@ msgstr "Desactivar copias del EFB a la VRAM"
msgid "Disable Emulation Speed Limit"
msgstr "Desactivar límite de velocidad de emulación"
-#: Source/Core/DolphinQt/MenuBar.cpp:853
+#: Source/Core/DolphinQt/MenuBar.cpp:845
msgid "Disable Fastmem"
msgstr "Desactivar FastMem"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:115
+#: Source/Core/DolphinQt/MenuBar.cpp:851
+msgid "Disable Fastmem Arena"
+msgstr "Desactivar Fastmem Arena"
+
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:150
msgid "Disable Fog"
msgstr "Desactivar niebla"
-#: Source/Core/DolphinQt/MenuBar.cpp:845
+#: Source/Core/DolphinQt/MenuBar.cpp:837
msgid "Disable JIT Cache"
msgstr "Desactivar caché JIT"
@@ -3768,7 +3879,7 @@ msgstr ""
"vuelta a la RAM. Inhibe todo aumento de escala.
Si "
"tienes dudas, deja esta opción desactivada."
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:508
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:590
msgid ""
"Disables the blending of adjacent rows when copying the EFB. This is known "
"in some games as \"deflickering\" or \"smoothing\".
Disabling the "
@@ -3783,7 +3894,7 @@ msgstr ""
"
Si tienes dudas, deja esta opción activada."
"dolphin_emphasis>"
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:96
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:97
msgid "Disc"
msgstr "Disco"
@@ -3822,26 +3933,26 @@ msgstr "Distancia"
msgid "Distance of travel from neutral position."
msgstr "Distancia de desplazamiento desde la posición neutral."
-#: Source/Core/DolphinQt/Main.cpp:259
+#: Source/Core/DolphinQt/Main.cpp:264
msgid "Do you authorize Dolphin to report information to Dolphin's developers?"
msgstr ""
"¿Nos permites compartir estadísticas con los desarrolladores de Dolphin?"
-#: Source/Core/DolphinQt/MainWindow.cpp:1692
+#: Source/Core/DolphinQt/MainWindow.cpp:1712
msgid "Do you want to add \"%1\" to the list of Game Paths?"
msgstr "¿Quieres añadir «%1» a la lista de carpetas de juegos?"
-#: Source/Core/DolphinQt/MenuBar.cpp:1241
+#: Source/Core/DolphinQt/MenuBar.cpp:1227
msgid "Do you want to clear the list of symbol names?"
msgstr "¿Seguro que quieres borrar la lista de nombres simbólicos?"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:658
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:659
#, c-format
msgctxt ""
msgid "Do you want to delete the %n selected save file(s)?"
msgstr "¿Quieres borrar el(los) %n archivo(s) de guardado elegido(s)?"
-#: Source/Core/DolphinQt/MainWindow.cpp:933
+#: Source/Core/DolphinQt/MainWindow.cpp:935
msgid "Do you want to stop the current emulation?"
msgstr "¿Quieres detener la emulación?"
@@ -3853,35 +3964,35 @@ msgstr "¿Quieres intentar reparar la NAND?"
msgid "Dolby Pro Logic II Decoder"
msgstr "Decodificador Dolby Pro Logic II"
-#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:219
-#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:230
+#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:215
+#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:226
msgid "Dolphin FIFO Log (*.dff)"
msgstr "Registro FIFO de Dolphin (*.dff)"
-#: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:327
+#: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:326
msgid "Dolphin Game Mod Preset"
msgstr "Preajuste de modificación de juego para Dolphin"
-#: Source/Core/DolphinQt/MenuBar.cpp:1536
-#: Source/Core/DolphinQt/MenuBar.cpp:1553
-#: Source/Core/DolphinQt/MenuBar.cpp:1572
+#: Source/Core/DolphinQt/MenuBar.cpp:1523
+#: Source/Core/DolphinQt/MenuBar.cpp:1540
+#: Source/Core/DolphinQt/MenuBar.cpp:1559
msgid "Dolphin Map File (*.map)"
msgstr "Archivo de mapa de Dolphin (*.map)"
-#: Source/Core/DolphinQt/MenuBar.cpp:73
+#: Source/Core/DolphinQt/MenuBar.cpp:74
msgid "Dolphin Signature CSV File"
msgstr "Archivo de firma CSV de Dolphin"
-#: Source/Core/DolphinQt/MenuBar.cpp:73
+#: Source/Core/DolphinQt/MenuBar.cpp:74
msgid "Dolphin Signature File"
msgstr "Archivo de firma de Dolphin"
-#: Source/Core/DolphinQt/MainWindow.cpp:1772
-#: Source/Core/DolphinQt/MainWindow.cpp:1843
+#: Source/Core/DolphinQt/MainWindow.cpp:1823
+#: Source/Core/DolphinQt/MainWindow.cpp:1894
msgid "Dolphin TAS Movies (*.dtm)"
msgstr "Grabación TAS de Dolphin (*.dtm)"
-#: Source/Core/DolphinQt/ConvertDialog.cpp:326
+#: Source/Core/DolphinQt/ConvertDialog.cpp:327
msgid ""
"Dolphin can't convert NKit files to non-NKit files. Converting an NKit file "
"in Dolphin will result in another NKit file.\n"
@@ -3901,7 +4012,7 @@ msgstr ""
"\n"
"¿Quieres continuar de todos modos?"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:279
+#: Source/Core/DolphinQt/GameList/GameList.cpp:280
msgid ""
"Dolphin could not find any GameCube/Wii ISOs or WADs.\n"
"Double-click here to set a games directory..."
@@ -3909,7 +4020,7 @@ msgstr ""
"Dolphin no pudo encontrar ninguna ISO o WAD de GameCube/Wii. Haz doble clic "
"aquí para seleccionar un directorio con juegos…"
-#: Source/Core/DolphinQt/ConvertDialog.cpp:526
+#: Source/Core/DolphinQt/ConvertDialog.cpp:529
msgid "Dolphin failed to complete the requested action."
msgstr "Dolphin no ha podido completar la acción solicitada."
@@ -3921,7 +4032,7 @@ msgstr "Dolphin no ha podido completar la acción solicitada."
msgid "Dolphin is a free and open-source GameCube and Wii emulator."
msgstr "Dolphin es un emulador de GameCube y Wii de código abierto."
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:998
msgid "Dolphin is too old for traversal server"
msgstr ""
"La versión de Dolphin es demasiado antigua para utilizar el servidor de paso"
@@ -3938,7 +4049,7 @@ msgstr ""
msgid "Dolphin is unable to verify unlicensed discs."
msgstr "Dolphin no puede verificar los discos sin licencia."
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:217
msgid ""
"Dolphin will use this for titles whose region cannot be determined "
"automatically."
@@ -3955,15 +4066,15 @@ msgstr "El sistema de trucos de Dolphin está desactivado."
msgid "Domain"
msgstr "Dominio"
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:193
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:194
msgid "Don't Update"
msgstr "No quiero actualizar"
-#: Source/Core/DolphinQt/NKitWarningDialog.cpp:53
+#: Source/Core/DolphinQt/NKitWarningDialog.cpp:56
msgid "Don't show this again"
msgstr "No volver a mostrar esto"
-#: Source/Core/DiscIO/CompressedBlob.cpp:369
+#: Source/Core/DiscIO/CompressedBlob.cpp:374
msgid "Done compressing disc image."
msgstr "Imagen de disco comprimida correctamente."
@@ -3976,37 +4087,37 @@ msgstr "Cierre de puertas"
#. i18n: A double precision floating point number
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:139
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:199
-#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:154
+#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:155
msgid "Double"
msgstr "Coma flotante doble"
#: Source/Core/Core/FreeLookManager.cpp:89
#: Source/Core/Core/HW/WiimoteEmu/Extension/Guitar.cpp:80
#: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:35
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:43
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:44
#: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:21
#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUAccelerometer.cpp:19
#: Source/Core/InputCommon/ControllerEmu/ControllerEmu.h:24
msgid "Down"
msgstr "Abajo"
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:86
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:87
msgid "Download Codes"
msgstr "Descargar códigos"
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:88
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:89
msgid "Download Codes from the WiiRD Database"
msgstr "Descargar códigos desde la base de datos de WiiRD"
-#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:148
+#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:153
msgid "Download Game Covers from GameTDB.com for Use in Grid Mode"
msgstr "Descargar las carátulas de GameTDB.com para el modo cuadrícula"
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:370
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:373
msgid "Download complete"
msgstr "Descarga completada"
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:371
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:374
msgid "Downloaded %1 codes. (added %2)"
msgstr "Se han descargado %1 códigos (%2 de ellos nuevos)."
@@ -4029,7 +4140,7 @@ msgstr "Doble núcleo"
msgid "Dual View"
msgstr "Vista doble"
-#: Source/Core/Core/HW/EXI/EXI_Device.h:95
+#: Source/Core/Core/HW/EXI/EXI_Device.h:94
msgid "Dummy"
msgstr "Dispositivo falso"
@@ -4049,7 +4160,7 @@ msgstr "Volcar &FakeVMEM"
msgid "Dump &MRAM"
msgstr "Volcar &MRAM"
-#: Source/Core/DolphinQt/MenuBar.cpp:814
+#: Source/Core/DolphinQt/MenuBar.cpp:806
msgid "Dump Audio"
msgstr "Volcar audio"
@@ -4061,7 +4172,7 @@ msgstr "Volcar texturas base"
msgid "Dump EFB Target"
msgstr "Volcar superficie del EFB"
-#: Source/Core/DolphinQt/MenuBar.cpp:808
+#: Source/Core/DolphinQt/MenuBar.cpp:800
msgid "Dump Frames"
msgstr "Volcar fotogramas"
@@ -4144,12 +4255,12 @@ msgid "Duration of Turbo Button Release (frames):"
msgstr "Duración de liberación del botón turbo (fotogramas)"
#: Source/Core/DiscIO/Enums.cpp:95
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174
msgid "Dutch"
msgstr "Holandés"
-#: Source/Core/DolphinQt/MenuBar.cpp:215
+#: Source/Core/DolphinQt/MenuBar.cpp:207
msgid "E&xit"
msgstr "&Salir"
@@ -4169,7 +4280,7 @@ msgstr ""
"Dolphin, un reinicio vendrá bien en este momento para que Windows vea el "
"nuevo driver"
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:185
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:186
msgid ""
"Each player sends their own inputs to the game, with equal buffer size for "
"all players, configured by the host.\n"
@@ -4187,7 +4298,7 @@ msgstr "Refresco temprano de memoria"
#. i18n: One of the elements in the Skylanders games. Japanese: 土. For official translations
#. in other languages, check the SuperChargers manual at https://support.activision.com/manuals
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:336
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:352
msgid "Earth"
msgstr "Tierra"
@@ -4200,7 +4311,7 @@ msgstr "Asia Oriental"
msgid "Edit Breakpoint"
msgstr "Editar punto de interrupción"
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:426
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:430
msgid "Edit..."
msgstr "Editar..."
@@ -4234,7 +4345,7 @@ msgstr "Expulsar disco"
#. i18n: Elements are a trait of Skylanders figures. For official translations of this term,
#. check the Skylanders SuperChargers manual at https://support.activision.com/manuals
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:289
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:300
msgid "Element"
msgstr "Clase elemental"
@@ -4242,11 +4353,11 @@ msgstr "Clase elemental"
msgid "Embedded Frame Buffer (EFB)"
msgstr "Búfer de imagen integrado (EFB)"
-#: Source/Core/Core/State.cpp:541
+#: Source/Core/Core/State.cpp:629
msgid "Empty"
msgstr "Vacía"
-#: Source/Core/Core/Core.cpp:246
+#: Source/Core/Core/Core.cpp:247
msgid "Emu Thread already running"
msgstr "El hilo de emulación ya está ejecutándose"
@@ -4254,15 +4365,15 @@ msgstr "El hilo de emulación ya está ejecutándose"
msgid "Emulate Disc Speed"
msgstr "Emular velocidad del disco"
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:60
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:61
msgid "Emulate Infinity Base"
msgstr "Emular base de Infinity"
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:146
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:157
msgid "Emulate Skylander Portal"
msgstr "Emular portal de Skylanders"
-#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:110
+#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:111
msgid "Emulate the Wii's Bluetooth adapter"
msgstr "Emular el adaptador Bluetooth de la Wii"
@@ -4275,11 +4386,11 @@ msgstr ""
"esta opción puede provocar problemas de estabilidad. Valor predeterminado: "
"activado."
-#: Source/Core/DolphinQt/MenuBar.cpp:230
+#: Source/Core/DolphinQt/MenuBar.cpp:222
msgid "Emulated USB Devices"
msgstr "Dispositivos USB emulados"
-#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:141
+#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:142
msgid "Emulated Wii Remote"
msgstr "Mando Wii emulado"
@@ -4302,12 +4413,12 @@ msgstr "Velocidad de emulación"
msgid "Emulation must be started to record."
msgstr "Es necesario empezar la emulación para poder grabar."
-#: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:29
-#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:33
+#: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:30
+#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:34
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:120
-#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:129
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:402
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:419
+#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:130
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:406
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:423
msgid "Enable"
msgstr "Habilitar"
@@ -4315,6 +4426,10 @@ msgstr "Habilitar"
msgid "Enable API Validation Layers"
msgstr "Activar capas de validación de la API"
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:83
+msgid "Enable Achievement Badges"
+msgstr "Activar emblemas de logros"
+
#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:60
msgid "Enable Achievements"
msgstr "Activar logros"
@@ -4323,15 +4438,19 @@ msgstr "Activar logros"
msgid "Enable Audio Stretching"
msgstr "Activar expansión de audio"
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:142
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:143
msgid "Enable Cheats"
msgstr "Activar trucos"
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:155
+#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:53
+msgid "Enable Controller Inpu&t"
+msgstr "Activar en&trada de mando"
+
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:161
msgid "Enable Custom RTC"
msgstr "RTC personalizado"
-#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:149
+#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:154
msgid "Enable Debugging UI"
msgstr "Activar opciones de depuración"
@@ -4339,19 +4458,19 @@ msgstr "Activar opciones de depuración"
msgid "Enable Dual Core"
msgstr "Activar doble núcleo"
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:139
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:140
msgid "Enable Dual Core (speedup)"
msgstr "Activar doble núcleo (más rápido)"
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:88
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:94
msgid "Enable Emulated CPU Clock Override"
msgstr "Forzar ciclos de reloj de CPU"
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:118
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:124
msgid "Enable Emulated Memory Size Override"
msgstr "Forzar tamaño de la memoria emulada"
-#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:78
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:88
msgid "Enable Encore Achievements"
msgstr "Activar repetición de logros («Encore»)"
@@ -4368,10 +4487,14 @@ msgid "Enable Leaderboards"
msgstr "Activar tablas de clasificación"
#: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:88
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:66
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:68
msgid "Enable MMU"
msgstr "Activar MMU"
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:78
+msgid "Enable Progress Notifications"
+msgstr "Activar notificaciones de progresos"
+
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:156
msgid "Enable Progressive Scan"
msgstr "Activar escaneo progresivo"
@@ -4385,15 +4508,15 @@ msgid "Enable Rich Presence"
msgstr "Activar presencia en aplicación"
#: Source/Core/DolphinQt/Config/Mapping/GCPadWiiUConfigDialog.cpp:39
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:353
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:352
msgid "Enable Rumble"
msgstr "Activar vibración"
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:157
msgid "Enable Screen Saver"
msgstr "Activar salvapantallas"
-#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:113
+#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:114
msgid "Enable Speaker Data"
msgstr "Activar envío de datos al altavoz"
@@ -4401,11 +4524,11 @@ msgstr "Activar envío de datos al altavoz"
msgid "Enable Unofficial Achievements"
msgstr "Activar logros no oficiales"
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:230
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:231
msgid "Enable Usage Statistics Reporting"
msgstr "Informar de estadísticas de uso"
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158
msgid "Enable WiiConnect24 via WiiLink"
msgstr "Activar WiiConnect24 a través de WiiLink"
@@ -4413,10 +4536,20 @@ msgstr "Activar WiiConnect24 a través de WiiLink"
msgid "Enable Wireframe"
msgstr "Ver mallas de polígonos"
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:77
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:82
msgid "Enable Write-Back Cache (slow)"
msgstr "Emular caché de escritura diferida (lento)"
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:85
+msgid ""
+"Enable achievement badges.
Displays icons for the player, game, and "
+"achievements. Simple visual option, but will require a small amount of extra "
+"memory and time to download the images."
+msgstr ""
+"Activa los emblemas de los logros.
Muestra iconos de jugadores, "
+"juegos y logros. Una opción visual sencilla, pero que necesita algo de "
+"memoria y tiempo adicionales para descargar las imágenes."
+
#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:64
msgid ""
"Enable competing in RetroAchievements leaderboards.
Displays a brief popup "
+"message whenever the player makes progress on an achievement that tracks an "
+"accumulated value, such as 60 out of 120 stars."
+msgstr ""
+"Activa las notificaciones de los progresos de los logros.
Muestra un "
+"breve mensaje emergente cuando el jugador haga progresos para un logro que "
+"haga un seguimiento de un valor acumulado, por ejemplo, tener 60 de 120 "
+"estrellas."
+
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:90
+msgid ""
"Enable unlocking achievements in Encore Mode.
Encore Mode re-enables "
"achievements the player has already unlocked on the site so that the player "
"will be notified if they meet the unlock conditions again, useful for custom "
"speedrun criteria or simply for fun."
msgstr ""
-"Permite desbloquear logros en el modo de repetición («Encore»).
El "
-"modo de repetición vuelve a activar los logros si el jugador ya los ha "
+"Permite desbloquear logros en el modo de repetición Encore.
El modo "
+"de repetición vuelve a activar los logros si el jugador ya los ha "
"desbloqueado en la página web, así aparecerán notificaciones si se vuelven a "
-"cumplir las condiciones para el desbloqueo. Ideal para hacer «speedruns» "
-"personalizadas o por puro placer."
+"cumplir las condiciones para el desbloqueo. Ideal para hacer carreras de "
+"tiempo personalizadas o por puro placer."
#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:61
msgid "Enable unlocking achievements. "
@@ -4506,7 +4650,7 @@ msgstr ""
"necesaria para algunos juegos (Activado: el ajuste más compatible; "
"Desactivado: el ajuste más rápido)."
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:514
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:596
msgid ""
"Enables detection of arbitrary mipmaps, which some games use for special "
"distance-based effects.
May have false positives that result in "
@@ -4526,16 +4670,18 @@ msgstr ""
"
Si tienes dudas, deja esta opción activada."
"dolphin_emphasis>"
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:79
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:84
msgid ""
-"Enables emulation of the CPU write-back cache.\n"
-"Enabling will have a significant impact on performance.\n"
-"This should be left disabled unless absolutely needed."
+"Enables emulation of the CPU write-back cache. Enabling will have a "
+"significant impact on performance. This should be left disabled unless "
+"absolutely needed.
If unsure, leave this unchecked."
+""
msgstr ""
"Activa la emulación de la caché de escritura diferida («write-back») de la "
-"CPU.\n"
-"Esta opción afectará significativamente al rendimiento.\n"
-"Debería mantenerse desactivada salvo que sea absolutamente necesaria."
+"CPU. Esta opción afectará significativamente al rendimiento. Debería "
+"mantenerse desactivada salvo que sea absolutamente necesaria."
+"
Si tienes dudas, deja esta opción desactivada."
+"dolphin_emphasis>"
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:365
msgid ""
@@ -4560,7 +4706,7 @@ msgstr ""
"de juegos esto no le supone ningún problema.
Si "
"tienes dudas, deja esta opción desactivada."
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:522
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:604
msgid ""
"Enables scRGB HDR output (if supported by your graphics backend and "
"monitor). Fullscreen might be required.
This gives post process "
@@ -4597,7 +4743,6 @@ msgstr ""
"dolphin_emphasis>"
#: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:100
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:68
msgid ""
"Enables the Memory Management Unit, needed for some games. (ON = Compatible, "
"OFF = Fast)"
@@ -4606,7 +4751,18 @@ msgstr ""
"necesaria para algunos juegos. (Activado: el ajuste más compatible; "
"Desactivado: el ajuste más rápido)."
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:193
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:70
+msgid ""
+"Enables the Memory Management Unit, needed for some games. (ON = Compatible, "
+"OFF = Fast)
If unsure, leave this unchecked."
+"dolphin_emphasis>"
+msgstr ""
+"Activa la Memory Management Unit (unidad de gestión de memoria), que es "
+"necesaria para algunos juegos. (Activado: el ajuste más compatible; "
+"Desactivado: el ajuste más rápido).
Si tienes "
+"dudas, deja esta opción desactivada."
+
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190
msgid ""
"Enables the WiiLink service for WiiConnect24 channels.\n"
"WiiLink is an alternate provider for the discontinued WiiConnect24 Channels "
@@ -4645,7 +4801,7 @@ msgstr ""
msgid "Encoding"
msgstr "Codificando..."
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:615
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:616
msgid ""
"Encountered the following errors while opening save files:\n"
"%1\n"
@@ -4663,12 +4819,12 @@ msgid "Enet Didn't Initialize"
msgstr "Enet no se inició"
#: Source/Core/DiscIO/Enums.cpp:80
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:85
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:169
msgid "English"
msgstr "Inglés"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:59
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:61
#: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:61
msgid "Enhancements"
msgstr "Mejoras"
@@ -4701,84 +4857,84 @@ msgstr "Introduce la contraseña"
msgid "Enter the DNS server to use:"
msgstr "Introduce el servidor de DNS que quieres utilizar:"
-#: Source/Core/DolphinQt/MenuBar.cpp:1300
+#: Source/Core/DolphinQt/MenuBar.cpp:1286
msgid "Enter the RSO module address:"
msgstr "Introduce la dirección del módulo RSO:"
#: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:194
#: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:250
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:261
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:262
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386
#: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:265
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:343
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:349
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:346
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:352
#: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:46
-#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:521
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:256
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:295
-#: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:232
-#: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:259
-#: Source/Core/DolphinQt/ConvertDialog.cpp:424
-#: Source/Core/DolphinQt/ConvertDialog.cpp:471
-#: Source/Core/DolphinQt/ConvertDialog.cpp:525
+#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:539
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:255
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:296
+#: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:229
+#: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:256
+#: Source/Core/DolphinQt/ConvertDialog.cpp:426
+#: Source/Core/DolphinQt/ConvertDialog.cpp:473
+#: Source/Core/DolphinQt/ConvertDialog.cpp:528
#: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:255
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:638
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:644
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:653
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:665
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:684
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:690
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:705
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:713
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:737
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:744
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:637
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:643
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:652
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:664
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:683
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:689
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:704
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:712
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:736
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:743
#: Source/Core/DolphinQt/Debugger/RegisterColumn.cpp:86
#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:282
#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:431
-#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:241
-#: Source/Core/DolphinQt/GBAWidget.cpp:576
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:346
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:376
-#: Source/Core/DolphinQt/Main.cpp:209 Source/Core/DolphinQt/Main.cpp:225
-#: Source/Core/DolphinQt/Main.cpp:232 Source/Core/DolphinQt/MainWindow.cpp:295
-#: Source/Core/DolphinQt/MainWindow.cpp:303
-#: Source/Core/DolphinQt/MainWindow.cpp:1108
-#: Source/Core/DolphinQt/MainWindow.cpp:1494
-#: Source/Core/DolphinQt/MainWindow.cpp:1501
-#: Source/Core/DolphinQt/MainWindow.cpp:1561
-#: Source/Core/DolphinQt/MainWindow.cpp:1568
-#: Source/Core/DolphinQt/MainWindow.cpp:1670
-#: Source/Core/DolphinQt/MenuBar.cpp:1204
-#: Source/Core/DolphinQt/MenuBar.cpp:1284
+#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:237
+#: Source/Core/DolphinQt/GBAWidget.cpp:578
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:347
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:377
+#: Source/Core/DolphinQt/Main.cpp:211 Source/Core/DolphinQt/Main.cpp:227
+#: Source/Core/DolphinQt/Main.cpp:234 Source/Core/DolphinQt/MainWindow.cpp:297
+#: Source/Core/DolphinQt/MainWindow.cpp:305
+#: Source/Core/DolphinQt/MainWindow.cpp:1110
+#: Source/Core/DolphinQt/MainWindow.cpp:1507
+#: Source/Core/DolphinQt/MainWindow.cpp:1514
+#: Source/Core/DolphinQt/MainWindow.cpp:1574
+#: Source/Core/DolphinQt/MainWindow.cpp:1581
+#: Source/Core/DolphinQt/MainWindow.cpp:1690
+#: Source/Core/DolphinQt/MenuBar.cpp:1190
+#: Source/Core/DolphinQt/MenuBar.cpp:1270
+#: Source/Core/DolphinQt/MenuBar.cpp:1293
#: Source/Core/DolphinQt/MenuBar.cpp:1307
-#: Source/Core/DolphinQt/MenuBar.cpp:1321
-#: Source/Core/DolphinQt/MenuBar.cpp:1352
-#: Source/Core/DolphinQt/MenuBar.cpp:1376
-#: Source/Core/DolphinQt/MenuBar.cpp:1597
-#: Source/Core/DolphinQt/MenuBar.cpp:1608
-#: Source/Core/DolphinQt/MenuBar.cpp:1620
-#: Source/Core/DolphinQt/MenuBar.cpp:1642
-#: Source/Core/DolphinQt/MenuBar.cpp:1668
-#: Source/Core/DolphinQt/MenuBar.cpp:1722
-#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:315
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:477
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:738
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:980
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1098
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1108
-#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:334
-#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:340
-#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:347
+#: Source/Core/DolphinQt/MenuBar.cpp:1339
+#: Source/Core/DolphinQt/MenuBar.cpp:1363
+#: Source/Core/DolphinQt/MenuBar.cpp:1584
+#: Source/Core/DolphinQt/MenuBar.cpp:1595
+#: Source/Core/DolphinQt/MenuBar.cpp:1607
+#: Source/Core/DolphinQt/MenuBar.cpp:1629
+#: Source/Core/DolphinQt/MenuBar.cpp:1655
+#: Source/Core/DolphinQt/MenuBar.cpp:1709
+#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:316
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:479
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:740
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:982
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1100
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1110
+#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:332
+#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:338
+#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:345
#: Source/Core/DolphinQt/RenderWidget.cpp:123
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:203
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:224
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:423
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:439
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:460
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:481
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:525
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:562
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:585
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:204
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:225
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:433
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:449
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:470
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:491
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:535
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:572
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:595
#: Source/Core/DolphinQt/Translation.cpp:322
msgid "Error"
msgstr "Error"
@@ -4787,13 +4943,13 @@ msgstr "Error"
msgid "Error Opening Adapter: %1"
msgstr "Error al abrir el adaptador: %1"
-#: Source/Core/Core/NetPlayServer.cpp:1493
+#: Source/Core/Core/NetPlayServer.cpp:1497
msgid "Error collecting save data!"
msgstr "¡Error al recopilar los datos guardados!"
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:260
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:526
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:533
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:262
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:613
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:620
msgid "Error converting value"
msgstr "Error al convertir el valor"
@@ -4807,15 +4963,15 @@ msgstr ""
msgid "Error obtaining session list: %1"
msgstr "Error al obtener la lista de sesiones: %1"
-#: Source/Core/DolphinQt/MainWindow.cpp:296
+#: Source/Core/DolphinQt/MainWindow.cpp:298
msgid "Error occurred while loading some texture packs"
msgstr "Error al cargar algunos packs de texturas"
-#: Source/Core/Core/NetPlayClient.cpp:1847
+#: Source/Core/Core/NetPlayClient.cpp:1851
msgid "Error processing codes."
msgstr "Error al procesar los códigos."
-#: Source/Core/Core/NetPlayClient.cpp:1819
+#: Source/Core/Core/NetPlayClient.cpp:1823
msgid "Error processing data."
msgstr "Error en el procesamiento de datos."
@@ -4823,11 +4979,11 @@ msgstr "Error en el procesamiento de datos."
msgid "Error reading file: {0}"
msgstr "Error leyendo el archivo: {0}"
-#: Source/Core/Core/NetPlayServer.cpp:1529
+#: Source/Core/Core/NetPlayServer.cpp:1533
msgid "Error synchronizing cheat codes!"
msgstr "¡Error al sincronizar códigos de trucos!"
-#: Source/Core/Core/NetPlayServer.cpp:1515
+#: Source/Core/Core/NetPlayServer.cpp:1519
msgid "Error synchronizing save data!"
msgstr "¡Error al sincronizar los datos guardados!"
@@ -4904,7 +5060,7 @@ msgstr "Se encontraron errores en {0} bloques sin uso de la partición {1}."
msgid "Euphoria"
msgstr "Euforia"
-#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:282
+#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:274
#: Source/Core/UICommon/NetPlayIndex.cpp:249
msgid "Europe"
msgstr "Europa"
@@ -4952,11 +5108,11 @@ msgstr ""
msgid "Excluded: %1"
msgstr "Excluido: %1"
-#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:73
+#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:72
msgid "Excluded: 0"
msgstr "Excluido: 0"
-#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:107
+#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108
msgid "Exclusive Ubershaders"
msgstr "Ubershaders exclusivos"
@@ -5004,14 +5160,14 @@ msgstr "Nombre de variable previsto."
msgid "Experimental"
msgstr "Experimental"
-#: Source/Core/DolphinQt/MenuBar.cpp:294
+#: Source/Core/DolphinQt/MenuBar.cpp:286
msgid "Export All Wii Saves"
msgstr "Exportar todas las partidas guardadas de Wii"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:422
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:447
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:492
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:499
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:423
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:448
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:493
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:500
msgid "Export Failed"
msgstr "Fallo al exportar"
@@ -5019,42 +5175,42 @@ msgstr "Fallo al exportar"
msgid "Export Recording"
msgstr "Exportar grabación"
-#: Source/Core/DolphinQt/MenuBar.cpp:753
+#: Source/Core/DolphinQt/MenuBar.cpp:745
msgid "Export Recording..."
msgstr "Exportar grabación..."
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:437
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:438
msgid "Export Save File"
msgstr "Exportar partida guardada"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:454
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:455
msgid "Export Save Files"
msgstr "Exportar archivos de guardado"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:470
+#: Source/Core/DolphinQt/GameList/GameList.cpp:473
msgid "Export Wii Save"
msgstr "Exportar guardado de Wii"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:388
+#: Source/Core/DolphinQt/GameList/GameList.cpp:389
msgid "Export Wii Saves"
msgstr "Exportar guardados de Wii"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:117
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:118
msgid "Export as .&gcs..."
msgstr "Exportar como .&gcs..."
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:118
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:119
msgid "Export as .&sav..."
msgstr "Exportar como .&sav..."
-#: Source/Core/DolphinQt/MenuBar.cpp:1133
+#: Source/Core/DolphinQt/MenuBar.cpp:1115
#, c-format
msgctxt ""
msgid "Exported %n save(s)"
msgstr "Se ha(n) exportado %n archivo(s) guardado(s)"
#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:268
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:432
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:434
#: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:47
msgid "Extension"
msgstr "Extensión"
@@ -5067,7 +5223,7 @@ msgstr "Entrada de movimientos de extensión"
msgid "Extension Motion Simulation"
msgstr "Simulación de movimientos de extensión"
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:520
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:522
msgid "External"
msgstr "Externo"
@@ -5075,35 +5231,35 @@ msgstr "Externo"
msgid "External Frame Buffer (XFB)"
msgstr "Búfer de imagen externo (XFB)"
-#: Source/Core/DolphinQt/MenuBar.cpp:271
+#: Source/Core/DolphinQt/MenuBar.cpp:263
msgid "Extract Certificates from NAND"
msgstr "Extraer certificados de la NAND"
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:268
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:269
msgid "Extract Entire Disc..."
msgstr "Extraer el disco entero..."
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:292
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:293
msgid "Extract Entire Partition..."
msgstr "Extraer la partición entera..."
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:299
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:300
msgid "Extract File..."
msgstr "Extraer archivo..."
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:241
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:242
msgid "Extract Files..."
msgstr "Extraer archivos..."
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:251
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:252
msgid "Extract System Data..."
msgstr "Extraer datos del sistema..."
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:355
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:356
msgid "Extracting All Files..."
msgstr "Extrayendo todos los archivos..."
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:356
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357
msgid "Extracting Directory..."
msgstr "Extrayendo directorio..."
@@ -5113,7 +5269,7 @@ msgid "FD"
msgstr "FD"
#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:37
-#: Source/Core/DolphinQt/MenuBar.cpp:228
+#: Source/Core/DolphinQt/MenuBar.cpp:220
msgid "FIFO Player"
msgstr "Reproductor FIFO"
@@ -5121,7 +5277,7 @@ msgstr "Reproductor FIFO"
msgid "Failed loading XML."
msgstr "No se ha podido cargar el archivo XML."
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:347
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:348
msgid ""
"Failed opening memory card:\n"
"%1"
@@ -5129,11 +5285,11 @@ msgstr ""
"Fallo al abrir la tarjeta de memoria:\n"
"%1"
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:454
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:456
msgid "Failed to add this session to the NetPlay index: %1"
msgstr "No se ha podido añadir esta sesión al índice de juego en red: %1"
-#: Source/Core/DolphinQt/MenuBar.cpp:1669
+#: Source/Core/DolphinQt/MenuBar.cpp:1656
msgid "Failed to append to signature file '%1'"
msgstr "No se ha podido añadir al archivo de firma «%1»"
@@ -5141,11 +5297,11 @@ msgstr "No se ha podido añadir al archivo de firma «%1»"
msgid "Failed to claim interface for BT passthrough: {0}"
msgstr "No se ha podido controlar la interfaz para el acceso directo a BT: {0}"
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:574
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:676
msgid "Failed to clear Skylander!"
msgstr "¡No se ha podido borrar el Skylander!"
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:575
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:677
msgid "Failed to clear the Skylander from slot(%1)!"
msgstr "¡No se ha podido quitar al Skylander del espacio (%1)!"
@@ -5153,7 +5309,7 @@ msgstr "¡No se ha podido quitar al Skylander del espacio (%1)!"
msgid "Failed to connect to Redump.org"
msgstr "No se ha podido conectar con redump.org"
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:981
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:983
msgid "Failed to connect to server: %1"
msgstr "No se ha podido conectar al servidor: %1"
@@ -5174,15 +5330,15 @@ msgstr "No se ha podido crear los recursos globales de D3D12"
msgid "Failed to create DXGI factory"
msgstr "No se ha podido crear el almacén de DXGI"
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:289
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:291
msgid "Failed to create Infinity file"
msgstr "No se ha podido crear el archivo de Infinity"
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:678
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:798
msgid "Failed to create Skylander file!"
msgstr "¡No se ha podido crear el archivo de Skylander!"
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:679
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:799
msgid ""
"Failed to create Skylander file:\n"
"%1\n"
@@ -5205,7 +5361,7 @@ msgstr ""
"No se ha podido borrar la tarjeta de memoria del juego en red. Comprueba tus "
"permisos de escritura."
-#: Source/Core/DolphinQt/GameList/GameList.cpp:841
+#: Source/Core/DolphinQt/GameList/GameList.cpp:854
msgid "Failed to delete the selected file."
msgstr "No se ha podido borrar el archivo seleccionado."
@@ -5215,37 +5371,37 @@ msgstr ""
"No se ha podido desvincular el controlador del kernel para ejecutar el "
"acceso directo a BT: {0}"
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:343
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:346
msgid "Failed to download codes."
msgstr "No se ha podido descargar los códigos."
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:738
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:737
msgid "Failed to dump %1: Can't open file"
msgstr "No se ha podido volcar %1: Hubo un fallo al abrir el archivo"
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:745
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:744
msgid "Failed to dump %1: Failed to write to file"
msgstr ""
"No se ha podido volcar %1: no se han podido escribir los datos en el archivo"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:488
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:489
msgctxt ""
msgid "Failed to export %n out of %1 save file(s)."
msgstr "No se ha(n) podido exportar %n de %1 archivo(s) de guardado."
-#: Source/Core/DolphinQt/GameList/GameList.cpp:576
+#: Source/Core/DolphinQt/GameList/GameList.cpp:584
msgid "Failed to export the following save files:"
msgstr "No se ha podido exportar los siguientes archivos de guardado:"
-#: Source/Core/DolphinQt/MenuBar.cpp:1204
+#: Source/Core/DolphinQt/MenuBar.cpp:1190
msgid "Failed to extract certificates from NAND"
msgstr "No se han podido extraer los certificados de la NAND."
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386
msgid "Failed to extract file."
msgstr "No se ha podido extraer el archivo."
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:261
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:262
msgid "Failed to extract system data."
msgstr "No se han podido extraer los datos del sistema."
@@ -5263,18 +5419,18 @@ msgstr ""
msgid "Failed to find one or more D3D symbols"
msgstr "No se ha podido encontrar uno o más símbolos D3D"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:565
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:566
msgid "Failed to import \"%1\"."
msgstr "No se ha podido importar «%1»."
-#: Source/Core/DolphinQt/MenuBar.cpp:1109
+#: Source/Core/DolphinQt/MenuBar.cpp:1091
msgid ""
"Failed to import save file. Please launch the game once, then try again."
msgstr ""
"No se ha podido importar el archivo de guardado. Por favor, lanza el juego "
"otra vez, e inténtalo de nuevo."
-#: Source/Core/DolphinQt/MenuBar.cpp:1103
+#: Source/Core/DolphinQt/MenuBar.cpp:1085
msgid ""
"Failed to import save file. The given file appears to be corrupted or is not "
"a valid Wii save."
@@ -5282,7 +5438,7 @@ msgstr ""
"No se ha podido importar el archivo de guardado. El archivo parece estar "
"corrupto o no es un archivo válido de Wii."
-#: Source/Core/DolphinQt/MenuBar.cpp:1116
+#: Source/Core/DolphinQt/MenuBar.cpp:1098
msgid ""
"Failed to import save file. Your NAND may be corrupt, or something is "
"preventing access to files within it. Try repairing your NAND (Tools -> "
@@ -5293,7 +5449,7 @@ msgstr ""
"contiene. Prueba a reparar tu NAND (Herramientas -> Administrar NAND -> "
"Comprobar NAND...) y a importar los datos de guardado otra vez."
-#: Source/Core/DolphinQt/MainWindow.cpp:1108
+#: Source/Core/DolphinQt/MainWindow.cpp:1110
msgid "Failed to init core"
msgstr "No se ha podido iniciar el núcleo"
@@ -5311,16 +5467,16 @@ msgstr ""
msgid "Failed to initialize renderer classes"
msgstr "No se han podido iniciar las clases de renderizado"
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:204
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:205
msgid "Failed to install pack: %1"
msgstr "No se ha podido instalar el paquete: %1"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:619
-#: Source/Core/DolphinQt/MenuBar.cpp:1074
+#: Source/Core/DolphinQt/GameList/GameList.cpp:628
+#: Source/Core/DolphinQt/MenuBar.cpp:1056
msgid "Failed to install this title to the NAND."
msgstr "No se ha podido instalar el título en la NAND."
-#: Source/Core/DolphinQt/MainWindow.cpp:1594
+#: Source/Core/DolphinQt/MainWindow.cpp:1607
msgid ""
"Failed to listen on port %1. Is another instance of the NetPlay server "
"running?"
@@ -5328,8 +5484,8 @@ msgstr ""
"No se han podido recibir conexiones en el puerto %1. ¿Hay otra instancia del "
"servidor de juego en red funcionando?"
-#: Source/Core/DolphinQt/MenuBar.cpp:1321
-#: Source/Core/DolphinQt/MenuBar.cpp:1376
+#: Source/Core/DolphinQt/MenuBar.cpp:1307
+#: Source/Core/DolphinQt/MenuBar.cpp:1363
msgid "Failed to load RSO module at %1"
msgstr "No se ha podido cargar el módulo RSO en %1"
@@ -5341,15 +5497,15 @@ msgstr "No se ha podido cargar d3d11.dll"
msgid "Failed to load dxgi.dll"
msgstr "No se ha podido cargar dxgi.dll"
-#: Source/Core/DolphinQt/MenuBar.cpp:1608
+#: Source/Core/DolphinQt/MenuBar.cpp:1595
msgid "Failed to load map file '%1'"
msgstr "No se ha podido cargar el archivo de mapa «%1»"
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:720
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:842
msgid "Failed to load the Skylander file!"
msgstr "¡No se ha podido cargar el archivo de Skylander!"
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:721
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:843
msgid "Failed to load the Skylander file(%1)!\n"
msgstr "¡No se ha podido cargar el archivo de Skylander (%1)!\n"
@@ -5365,8 +5521,12 @@ msgstr ""
"No se ha podido cargar {0}. Si utilizas Windows 7, prueba a instalar el "
"paquete de actualización KB4019990."
-#: Source/Core/DolphinQt/GBAWidget.cpp:576
-#: Source/Core/DolphinQt/MainWindow.cpp:1670
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:663
+msgid "Failed to modify Skylander!"
+msgstr "¡No se ha podido modificar el Skylander!"
+
+#: Source/Core/DolphinQt/GBAWidget.cpp:578
+#: Source/Core/DolphinQt/MainWindow.cpp:1690
#: Source/Core/DolphinQt/RenderWidget.cpp:123
msgid "Failed to open '%1'"
msgstr "No se ha podido abrir «%1»"
@@ -5396,19 +5556,19 @@ msgstr ""
"No se ha podido abrir el archivo en el editor externo.\n"
"Asegúrate de que haya una aplicación asignada para abrir archivos INI."
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:861
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:863
msgid "Failed to open file."
msgstr "No se ha podido abrir el archivo."
-#: Source/Core/DolphinQt/MainWindow.cpp:1593
+#: Source/Core/DolphinQt/MainWindow.cpp:1606
msgid "Failed to open server"
msgstr "No se ha podido contactar con el servidor"
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:164
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:166
msgid "Failed to open the Infinity file!"
msgstr "¡No se ha podido abrir el archivo de Infinity!"
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:165
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:167
msgid ""
"Failed to open the Infinity file(%1)!\n"
"File may already be in use on the base."
@@ -5416,11 +5576,11 @@ msgstr ""
"¡No se ha podido abrir el archivo de Infinity (%1)!\n"
"El archivo podría estar siendo ya usado por la base."
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:696
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:818
msgid "Failed to open the Skylander file!"
msgstr "¡No se ha podido abrir el archivo de Skylander!"
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:697
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:819
msgid ""
"Failed to open the Skylander file(%1)!\n"
"File may already be in use on the portal."
@@ -5428,12 +5588,12 @@ msgstr ""
"¡No se ha podido abrir el archivo de Skylander (%1)!\n"
"Es posible que el archivo ya esté siendo utilizado en el portal."
-#: Source/Core/DolphinQt/ConvertDialog.cpp:472
+#: Source/Core/DolphinQt/ConvertDialog.cpp:474
msgid "Failed to open the input file \"%1\"."
msgstr "No se ha podido abrir el archivo de entrada «%1»."
-#: Source/Core/DiscIO/CompressedBlob.cpp:282 Source/Core/DiscIO/FileBlob.cpp:53
-#: Source/Core/DiscIO/WIABlob.cpp:2037
+#: Source/Core/DiscIO/CompressedBlob.cpp:287 Source/Core/DiscIO/FileBlob.cpp:58
+#: Source/Core/DiscIO/WIABlob.cpp:2043
msgid ""
"Failed to open the output file \"{0}\".\n"
"Check that you have permissions to write the target folder and that the "
@@ -5457,26 +5617,26 @@ msgstr ""
msgid "Failed to read DFF file."
msgstr "No se ha podido leer el archivo DFF."
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:863
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:865
msgid "Failed to read from file."
msgstr "No se ha podido leer desde el archivo."
-#: Source/Core/DiscIO/CompressedBlob.cpp:373 Source/Core/DiscIO/FileBlob.cpp:93
-#: Source/Core/DiscIO/WIABlob.cpp:2052
+#: Source/Core/DiscIO/CompressedBlob.cpp:378 Source/Core/DiscIO/FileBlob.cpp:98
+#: Source/Core/DiscIO/WIABlob.cpp:2058
msgid "Failed to read from the input file \"{0}\"."
msgstr "No se ha podido leer el archivo de entrada «{0}»."
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:423
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:641
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:424
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:642
msgid "Failed to read selected savefile(s) from memory card."
msgstr ""
"No se han podido leer los archivos seleccionados de la tarjeta de memoria."
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:173
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:175
msgid "Failed to read the Infinity file!"
msgstr "¡No se ha podido leer el archivo de Infinity!"
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:174
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:176
msgid ""
"Failed to read the Infinity file(%1)!\n"
"File was too small."
@@ -5484,11 +5644,11 @@ msgstr ""
"¡No se ha podido leer el archivo de Infinity (%1)!\n"
"El archivo era demasiado pequeño."
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:706
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:828
msgid "Failed to read the Skylander file!"
msgstr "¡No se ha podido leer el archivo de Skylander!"
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:707
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:829
msgid ""
"Failed to read the Skylander file(%1)!\n"
"File was too small."
@@ -5500,11 +5660,11 @@ msgstr ""
msgid "Failed to read {0}"
msgstr "No se ha podido leer {0}."
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:668
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:669
msgid "Failed to remove file."
msgstr "No se ha podido eliminar el archivo"
-#: Source/Core/DolphinQt/ConvertDialog.cpp:453
+#: Source/Core/DolphinQt/ConvertDialog.cpp:455
msgid ""
"Failed to remove junk data from file \"%1\".\n"
"\n"
@@ -5514,7 +5674,7 @@ msgstr ""
"\n"
"¿Quieres convertirlo sin eliminarlos?"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:647
+#: Source/Core/DolphinQt/GameList/GameList.cpp:658
msgid "Failed to remove this title from the NAND."
msgstr "No se ha podido desinstalar el título de la NAND."
@@ -5536,27 +5696,38 @@ msgstr ""
"No se ha podido reiniciar la carpeta de redireccionamiento del juego en red. "
"Comprueba tus permisos de escritura."
-#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:241
+#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:237
msgid "Failed to save FIFO log."
msgstr "No se ha podido guardar el registro FIFO."
-#: Source/Core/DolphinQt/MenuBar.cpp:1598
+#: Source/Core/DolphinQt/MenuBar.cpp:1585
msgid "Failed to save code map to path '%1'"
msgstr "No se ha podido guardar el mapa de código en la ruta «%1»"
-#: Source/Core/DolphinQt/MenuBar.cpp:1642
+#: Source/Core/DolphinQt/MenuBar.cpp:1629
msgid "Failed to save signature file '%1'"
msgstr "No se ha podido guardar el archivo de firma «%1»"
-#: Source/Core/DolphinQt/MenuBar.cpp:1621
+#: Source/Core/DolphinQt/MenuBar.cpp:1608
msgid "Failed to save symbol map to path '%1'"
msgstr "No se ha podido guardar el mapa de símbolos en la ruta «%1»"
-#: Source/Core/DolphinQt/MenuBar.cpp:1723
+#: Source/Core/DolphinQt/MenuBar.cpp:1710
msgid "Failed to save to signature file '%1'"
msgstr "No se ha podido guardar en el archivo de firma «%1»"
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:225
+#: Source/Core/Core/Core.cpp:548
+msgid ""
+"Failed to sync SD card with folder. All changes made this session will be "
+"discarded on next boot if you do not manually re-issue a resync in Config > "
+"Wii > SD Card Settings > Convert File to Folder Now!"
+msgstr ""
+"No se ha podido sincronizar la tarjeta SD con la carpeta. ¡Todos los cambios "
+"que hagas en esta sesión se perderán en el próximo arranque a menos que "
+"vuelvas a sincronizarlas manualmente a través de Configuración > Wii > "
+"Ajustes de la tarjeta SD > Convertir archivo a carpeta!"
+
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:226
msgid "Failed to uninstall pack: %1"
msgstr "No se ha podido desinstalar el paquete: %1"
@@ -5576,9 +5747,9 @@ msgstr "No se ha podido escribir el guardado de Wii."
msgid "Failed to write config file!"
msgstr "¡No se ha podido escribir el archivo de configuración!"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:573
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:676
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:691
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:574
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:677
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:692
msgid "Failed to write modified memory card to disk."
msgstr "No se ha podido escribir la tarjeta de memoria modificada en el disco."
@@ -5586,12 +5757,12 @@ msgstr "No se ha podido escribir la tarjeta de memoria modificada en el disco."
msgid "Failed to write redirected save."
msgstr "No se ha podido escribir la partida guardada redirigida."
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:447
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:448
msgid "Failed to write savefile to disk."
msgstr "No se ha podido escribir el guardado en el disco"
-#: Source/Core/DiscIO/CompressedBlob.cpp:377 Source/Core/DiscIO/FileBlob.cpp:99
-#: Source/Core/DiscIO/WIABlob.cpp:2056
+#: Source/Core/DiscIO/CompressedBlob.cpp:382
+#: Source/Core/DiscIO/FileBlob.cpp:104 Source/Core/DiscIO/WIABlob.cpp:2062
msgid ""
"Failed to write the output file \"{0}\".\n"
"Check that you have enough space available on the target drive."
@@ -5599,22 +5770,22 @@ msgstr ""
"No se ha podido escribir el archivo de salida «{0}».\n"
"Comprueba que tienes espacio disponible en la unidad de destino."
-#: Source/Core/DolphinQt/GameList/GameList.cpp:617
-#: Source/Core/DolphinQt/GameList/GameList.cpp:645
-#: Source/Core/DolphinQt/GameList/GameList.cpp:840
-#: Source/Core/DolphinQt/MenuBar.cpp:1074
+#: Source/Core/DolphinQt/GameList/GameList.cpp:626
+#: Source/Core/DolphinQt/GameList/GameList.cpp:656
+#: Source/Core/DolphinQt/GameList/GameList.cpp:853
+#: Source/Core/DolphinQt/MenuBar.cpp:1056
msgid "Failure"
msgstr "Fallido"
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:183
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:184
msgid "Fair Input Delay"
msgstr "Retraso de entrada justo"
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:199
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:200
msgid "Fallback Region"
msgstr "Región de respaldo"
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:210
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:211
msgid "Fallback Region:"
msgstr "Región de respaldo:"
@@ -5640,17 +5811,21 @@ msgstr ""
msgid "Field of View"
msgstr "Campo visual"
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:233
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:235
msgid "Figure Number:"
msgstr "N.º de figura:"
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:380
+msgid "Figure type"
+msgstr "Tipo de figura"
+
#: Source/Core/DolphinQt/Config/InfoWidget.cpp:46
msgid "File Details"
msgstr "Detalles del archivo"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:991
+#: Source/Core/DolphinQt/GameList/GameList.cpp:1005
#: Source/Core/DolphinQt/GameList/GameListModel.cpp:229
-#: Source/Core/DolphinQt/MenuBar.cpp:652
+#: Source/Core/DolphinQt/MenuBar.cpp:644
msgid "File Format"
msgstr "Formato del archivo"
@@ -5662,20 +5837,20 @@ msgstr "Formato del archivo:"
msgid "File Info"
msgstr "Información del archivo"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:986
+#: Source/Core/DolphinQt/GameList/GameList.cpp:1000
#: Source/Core/DolphinQt/GameList/GameListModel.cpp:223
-#: Source/Core/DolphinQt/MenuBar.cpp:647
+#: Source/Core/DolphinQt/MenuBar.cpp:639
msgid "File Name"
msgstr "Nombre del archivo"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:987
+#: Source/Core/DolphinQt/GameList/GameList.cpp:1001
#: Source/Core/DolphinQt/GameList/GameListModel.cpp:225
-#: Source/Core/DolphinQt/MenuBar.cpp:648
+#: Source/Core/DolphinQt/MenuBar.cpp:640
msgid "File Path"
msgstr "Ruta del archivo"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:990
-#: Source/Core/DolphinQt/MenuBar.cpp:651
+#: Source/Core/DolphinQt/GameList/GameList.cpp:1004
+#: Source/Core/DolphinQt/MenuBar.cpp:643
msgid "File Size"
msgstr "Tamaño del archivo"
@@ -5683,15 +5858,15 @@ msgstr "Tamaño del archivo"
msgid "File Size:"
msgstr "Tamaño del archivo:"
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:349
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:352
msgid "File contained no codes."
msgstr "El archivo no contenía códigos."
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:149
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:150
msgid "Filename"
msgstr "Nombre del archivo"
-#: Source/Core/DiscIO/CompressedBlob.cpp:289
+#: Source/Core/DiscIO/CompressedBlob.cpp:294
msgid "Files opened, ready to compress."
msgstr "Archivos abiertos y listos para comprimir."
@@ -5703,13 +5878,13 @@ msgstr ""
"Archivos especificados en el archivo M3U «{0}» no fueron encontrados:\n"
"{1}"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:833
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:835
msgid "Filesize does not match any known GameCube Memory Card size."
msgstr ""
"El tamaño del archivo no coincide con ningún tamaño conocido de tarjetas de "
"memoria de GameCube."
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:836
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:838
msgid "Filesize in header mismatches actual card size."
msgstr ""
"El tamaño del archivo en el encabezado no coincide con el tamaño de la "
@@ -5719,7 +5894,7 @@ msgstr ""
msgid "Filesystem"
msgstr "Sistema de archivos"
-#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:102
+#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:103
msgid "Filters"
msgstr "Filtros"
@@ -5735,7 +5910,7 @@ msgstr "Buscar &anterior"
msgid "Finish Calibration"
msgstr "Finalizar calibración"
-#: Source/Core/DolphinQt/WiiUpdate.cpp:109
+#: Source/Core/DolphinQt/WiiUpdate.cpp:110
msgid ""
"Finishing the update...\n"
"This can take a while."
@@ -5745,19 +5920,19 @@ msgstr ""
#. i18n: One of the elements in the Skylanders games. Japanese: 火. For official translations
#. in other languages, check the SuperChargers manual at https://support.activision.com/manuals
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:333
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:349
msgid "Fire"
msgstr "Fuego"
-#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:40
+#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:41
msgid "First Person"
msgstr "Primera persona"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:127
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:128
msgid "Fix Checksums"
msgstr "Reparar sumas de verificación"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:690
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:691
msgid "Fix Checksums Failed"
msgstr "Fallo al reparar las sumas de verificación"
@@ -5767,7 +5942,7 @@ msgstr "Alineación fija"
#. i18n: These are the kinds of flags that a CPU uses (e.g. carry),
#. not the kinds of flags that represent e.g. countries
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:166
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167
#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:87
msgid "Flags"
msgstr "Indicadores"
@@ -5776,12 +5951,12 @@ msgstr "Indicadores"
#. i18n: Floating-point (non-integer) number
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:138
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:198
-#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:152
+#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:153
#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97
msgid "Float"
msgstr "Coma flotante"
-#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:565
+#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:566
msgid "Follow &branch"
msgstr "Seguir &rama"
@@ -5807,35 +5982,35 @@ msgstr ""
"Si necesitas ayuda, consulta esta página."
-#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:57
+#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:58
msgid "Force 16:9"
msgstr "Forzar 16:9"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:117
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:152
msgid "Force 24-Bit Color"
msgstr "Forzar color de 24 bits"
-#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:57
+#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:58
msgid "Force 4:3"
msgstr "Forzar 4:3"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:96
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:115
msgid "Force Linear"
msgstr "Forzar lineal"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:103
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:122
msgid "Force Linear and 16x Anisotropic"
msgstr "Forzar lineal con anisotrópico x16"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:97
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:116
msgid "Force Linear and 2x Anisotropic"
msgstr "Forzar lineal con anisotrópico x2"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:99
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:118
msgid "Force Linear and 4x Anisotropic"
msgstr "Forzar lineal con anisotrópico x4"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:101
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:120
msgid "Force Linear and 8x Anisotropic"
msgstr "Forzar lineal con anisotrópico x8"
@@ -5843,7 +6018,7 @@ msgstr "Forzar lineal con anisotrópico x8"
msgid "Force Listen Port:"
msgstr "Forzar escucha en puerto:"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:95
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:114
msgid "Force Nearest"
msgstr "Forzar vecino más cercano"
@@ -5857,7 +6032,7 @@ msgstr ""
msgid "Forced on because %1 doesn't support geometry shaders."
msgstr "Conexión forzada porque %1 no es compatible con shaders de geometría."
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:474
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:556
msgid ""
"Forces the game to output graphics for any aspect ratio. Use with \"Aspect "
"Ratio\" set to \"Force 16:9\" to force 4:3-only games to run at 16:9."
@@ -5875,7 +6050,7 @@ msgstr ""
"forzar una imagen panorámica.
Si tienes dudas, deja "
"esta opción desactivada."
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:503
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:585
msgid ""
"Forces the game to render the RGB color channels in 24-bit, thereby "
"increasing quality by reducing color banding.
Has no impact on "
@@ -5888,7 +6063,7 @@ msgstr ""
"
Si tienes dudas, deja esta opción activada."
"dolphin_emphasis>"
-#: Source/Core/DolphinQt/ConvertDialog.cpp:59
+#: Source/Core/DolphinQt/ConvertDialog.cpp:60
msgid "Format:"
msgstr "Formato:"
@@ -5955,19 +6130,19 @@ msgstr "Fotogramas a grabar:"
msgid "France"
msgstr "Francia"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:311
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:312
msgid "Free Blocks: %1"
msgstr "Bloques libres: %1"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:312
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:313
msgid "Free Files: %1"
msgstr "Archivos libres: %1"
-#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:42
+#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:43
msgid "Free Look Control Type"
msgstr "Tipo de control de la cámara libre"
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:468
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:470
msgid "Free Look Controller %1"
msgstr "Mando %1 de la cámara libre"
@@ -5975,7 +6150,7 @@ msgstr "Mando %1 de la cámara libre"
msgid "Free Look Settings"
msgstr "Ajustes de cámara libre"
-#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:54
+#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:55
msgid ""
"Free Look allows for manipulation of the in-game camera. Different camera "
"types are available from the dropdown.
Disabling the "
@@ -3430,7 +3517,7 @@ msgid ""
"checked."
msgstr ""
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:96
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:97
msgid "Disc"
msgstr "دیسک"
@@ -3464,25 +3551,25 @@ msgstr ""
msgid "Distance of travel from neutral position."
msgstr ""
-#: Source/Core/DolphinQt/Main.cpp:259
+#: Source/Core/DolphinQt/Main.cpp:264
msgid "Do you authorize Dolphin to report information to Dolphin's developers?"
msgstr ""
-#: Source/Core/DolphinQt/MainWindow.cpp:1692
+#: Source/Core/DolphinQt/MainWindow.cpp:1712
msgid "Do you want to add \"%1\" to the list of Game Paths?"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1241
+#: Source/Core/DolphinQt/MenuBar.cpp:1227
msgid "Do you want to clear the list of symbol names?"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:658
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:659
#, c-format
msgctxt ""
msgid "Do you want to delete the %n selected save file(s)?"
msgstr ""
-#: Source/Core/DolphinQt/MainWindow.cpp:933
+#: Source/Core/DolphinQt/MainWindow.cpp:935
msgid "Do you want to stop the current emulation?"
msgstr "آیا می خواهید برابرسازی فعلی را متوقف کنید؟"
@@ -3494,35 +3581,35 @@ msgstr ""
msgid "Dolby Pro Logic II Decoder"
msgstr ""
-#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:219
-#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:230
+#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:215
+#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:226
msgid "Dolphin FIFO Log (*.dff)"
msgstr ""
-#: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:327
+#: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:326
msgid "Dolphin Game Mod Preset"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1536
-#: Source/Core/DolphinQt/MenuBar.cpp:1553
-#: Source/Core/DolphinQt/MenuBar.cpp:1572
+#: Source/Core/DolphinQt/MenuBar.cpp:1523
+#: Source/Core/DolphinQt/MenuBar.cpp:1540
+#: Source/Core/DolphinQt/MenuBar.cpp:1559
msgid "Dolphin Map File (*.map)"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:73
+#: Source/Core/DolphinQt/MenuBar.cpp:74
msgid "Dolphin Signature CSV File"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:73
+#: Source/Core/DolphinQt/MenuBar.cpp:74
msgid "Dolphin Signature File"
msgstr ""
-#: Source/Core/DolphinQt/MainWindow.cpp:1772
-#: Source/Core/DolphinQt/MainWindow.cpp:1843
+#: Source/Core/DolphinQt/MainWindow.cpp:1823
+#: Source/Core/DolphinQt/MainWindow.cpp:1894
msgid "Dolphin TAS Movies (*.dtm)"
msgstr "فیلم های تاس دلفین (*.dtm)"
-#: Source/Core/DolphinQt/ConvertDialog.cpp:326
+#: Source/Core/DolphinQt/ConvertDialog.cpp:327
msgid ""
"Dolphin can't convert NKit files to non-NKit files. Converting an NKit file "
"in Dolphin will result in another NKit file.\n"
@@ -3533,13 +3620,13 @@ msgid ""
"Do you want to continue anyway?"
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:279
+#: Source/Core/DolphinQt/GameList/GameList.cpp:280
msgid ""
"Dolphin could not find any GameCube/Wii ISOs or WADs.\n"
"Double-click here to set a games directory..."
msgstr ""
-#: Source/Core/DolphinQt/ConvertDialog.cpp:526
+#: Source/Core/DolphinQt/ConvertDialog.cpp:529
msgid "Dolphin failed to complete the requested action."
msgstr ""
@@ -3551,7 +3638,7 @@ msgstr ""
msgid "Dolphin is a free and open-source GameCube and Wii emulator."
msgstr ""
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:998
msgid "Dolphin is too old for traversal server"
msgstr ""
@@ -3565,7 +3652,7 @@ msgstr ""
msgid "Dolphin is unable to verify unlicensed discs."
msgstr ""
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:217
msgid ""
"Dolphin will use this for titles whose region cannot be determined "
"automatically."
@@ -3580,15 +3667,15 @@ msgstr ""
msgid "Domain"
msgstr ""
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:193
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:194
msgid "Don't Update"
msgstr ""
-#: Source/Core/DolphinQt/NKitWarningDialog.cpp:53
+#: Source/Core/DolphinQt/NKitWarningDialog.cpp:56
msgid "Don't show this again"
msgstr ""
-#: Source/Core/DiscIO/CompressedBlob.cpp:369
+#: Source/Core/DiscIO/CompressedBlob.cpp:374
msgid "Done compressing disc image."
msgstr ""
@@ -3601,37 +3688,37 @@ msgstr ""
#. i18n: A double precision floating point number
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:139
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:199
-#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:154
+#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:155
msgid "Double"
msgstr ""
#: Source/Core/Core/FreeLookManager.cpp:89
#: Source/Core/Core/HW/WiimoteEmu/Extension/Guitar.cpp:80
#: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:35
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:43
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:44
#: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:21
#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUAccelerometer.cpp:19
#: Source/Core/InputCommon/ControllerEmu/ControllerEmu.h:24
msgid "Down"
msgstr "پائین"
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:86
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:87
msgid "Download Codes"
msgstr ""
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:88
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:89
msgid "Download Codes from the WiiRD Database"
msgstr ""
-#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:148
+#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:153
msgid "Download Game Covers from GameTDB.com for Use in Grid Mode"
msgstr ""
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:370
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:373
msgid "Download complete"
msgstr ""
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:371
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:374
msgid "Downloaded %1 codes. (added %2)"
msgstr ""
@@ -3654,7 +3741,7 @@ msgstr ""
msgid "Dual View"
msgstr ""
-#: Source/Core/Core/HW/EXI/EXI_Device.h:95
+#: Source/Core/Core/HW/EXI/EXI_Device.h:94
msgid "Dummy"
msgstr "مصنوعی"
@@ -3674,7 +3761,7 @@ msgstr ""
msgid "Dump &MRAM"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:814
+#: Source/Core/DolphinQt/MenuBar.cpp:806
msgid "Dump Audio"
msgstr "نسخه برداری صدا"
@@ -3686,7 +3773,7 @@ msgstr ""
msgid "Dump EFB Target"
msgstr "نسخه برداری مقصد ای اف بی"
-#: Source/Core/DolphinQt/MenuBar.cpp:808
+#: Source/Core/DolphinQt/MenuBar.cpp:800
msgid "Dump Frames"
msgstr "نسخه برداری فریم ها"
@@ -3759,12 +3846,12 @@ msgid "Duration of Turbo Button Release (frames):"
msgstr ""
#: Source/Core/DiscIO/Enums.cpp:95
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174
msgid "Dutch"
msgstr "هلندی"
-#: Source/Core/DolphinQt/MenuBar.cpp:215
+#: Source/Core/DolphinQt/MenuBar.cpp:207
msgid "E&xit"
msgstr "خ&روج"
@@ -3780,7 +3867,7 @@ msgid ""
"driver."
msgstr ""
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:185
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:186
msgid ""
"Each player sends their own inputs to the game, with equal buffer size for "
"all players, configured by the host.\n"
@@ -3794,7 +3881,7 @@ msgstr "به روز شدن های اولیه حافظه"
#. i18n: One of the elements in the Skylanders games. Japanese: 土. For official translations
#. in other languages, check the SuperChargers manual at https://support.activision.com/manuals
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:336
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:352
msgid "Earth"
msgstr ""
@@ -3807,7 +3894,7 @@ msgstr ""
msgid "Edit Breakpoint"
msgstr ""
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:426
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:430
msgid "Edit..."
msgstr ""
@@ -3841,7 +3928,7 @@ msgstr ""
#. i18n: Elements are a trait of Skylanders figures. For official translations of this term,
#. check the Skylanders SuperChargers manual at https://support.activision.com/manuals
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:289
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:300
msgid "Element"
msgstr ""
@@ -3849,11 +3936,11 @@ msgstr ""
msgid "Embedded Frame Buffer (EFB)"
msgstr ""
-#: Source/Core/Core/State.cpp:541
+#: Source/Core/Core/State.cpp:629
msgid "Empty"
msgstr ""
-#: Source/Core/Core/Core.cpp:246
+#: Source/Core/Core/Core.cpp:247
msgid "Emu Thread already running"
msgstr "ریسمان شبیه ساز قبلا اجرا شده است"
@@ -3861,15 +3948,15 @@ msgstr "ریسمان شبیه ساز قبلا اجرا شده است"
msgid "Emulate Disc Speed"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:60
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:61
msgid "Emulate Infinity Base"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:146
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:157
msgid "Emulate Skylander Portal"
msgstr ""
-#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:110
+#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:111
msgid "Emulate the Wii's Bluetooth adapter"
msgstr ""
@@ -3879,11 +3966,11 @@ msgid ""
"Defaults to True"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:230
+#: Source/Core/DolphinQt/MenuBar.cpp:222
msgid "Emulated USB Devices"
msgstr ""
-#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:141
+#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:142
msgid "Emulated Wii Remote"
msgstr ""
@@ -3903,12 +3990,12 @@ msgstr ""
msgid "Emulation must be started to record."
msgstr ""
-#: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:29
-#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:33
+#: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:30
+#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:34
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:120
-#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:129
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:402
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:419
+#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:130
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:406
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:423
msgid "Enable"
msgstr ""
@@ -3916,6 +4003,10 @@ msgstr ""
msgid "Enable API Validation Layers"
msgstr ""
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:83
+msgid "Enable Achievement Badges"
+msgstr ""
+
#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:60
msgid "Enable Achievements"
msgstr ""
@@ -3924,15 +4015,19 @@ msgstr ""
msgid "Enable Audio Stretching"
msgstr ""
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:142
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:143
msgid "Enable Cheats"
msgstr "فعال کردن کدهای تقلب"
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:155
+#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:53
+msgid "Enable Controller Inpu&t"
+msgstr ""
+
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:161
msgid "Enable Custom RTC"
msgstr ""
-#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:149
+#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:154
msgid "Enable Debugging UI"
msgstr ""
@@ -3940,19 +4035,19 @@ msgstr ""
msgid "Enable Dual Core"
msgstr "فعال کردن پردازنده با دو هسته یا بیشتر"
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:139
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:140
msgid "Enable Dual Core (speedup)"
msgstr "فعال کردن پردازنده با دو هسته یا بیشتر (بالا بردن سرعت)"
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:88
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:94
msgid "Enable Emulated CPU Clock Override"
msgstr ""
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:118
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:124
msgid "Enable Emulated Memory Size Override"
msgstr ""
-#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:78
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:88
msgid "Enable Encore Achievements"
msgstr ""
@@ -3969,10 +4064,14 @@ msgid "Enable Leaderboards"
msgstr ""
#: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:88
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:66
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:68
msgid "Enable MMU"
msgstr "فعال کردن واحد مدیریت حافظه"
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:78
+msgid "Enable Progress Notifications"
+msgstr ""
+
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:156
msgid "Enable Progressive Scan"
msgstr "فعال کردن پويش تصاعدی (Progressive Scan)"
@@ -3986,15 +4085,15 @@ msgid "Enable Rich Presence"
msgstr ""
#: Source/Core/DolphinQt/Config/Mapping/GCPadWiiUConfigDialog.cpp:39
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:353
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:352
msgid "Enable Rumble"
msgstr ""
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:157
msgid "Enable Screen Saver"
msgstr "فعال کردن اسکیرین سیور"
-#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:113
+#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:114
msgid "Enable Speaker Data"
msgstr ""
@@ -4002,11 +4101,11 @@ msgstr ""
msgid "Enable Unofficial Achievements"
msgstr ""
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:230
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:231
msgid "Enable Usage Statistics Reporting"
msgstr ""
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158
msgid "Enable WiiConnect24 via WiiLink"
msgstr ""
@@ -4014,10 +4113,17 @@ msgstr ""
msgid "Enable Wireframe"
msgstr "فعال کردن خطوط فریم"
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:77
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:82
msgid "Enable Write-Back Cache (slow)"
msgstr ""
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:85
+msgid ""
+"Enable achievement badges.
Displays icons for the player, game, and "
+"achievements. Simple visual option, but will require a small amount of extra "
+"memory and time to download the images."
+msgstr ""
+
#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:64
msgid ""
"Enable competing in RetroAchievements leaderboards.
Displays a brief popup "
+"message whenever the player makes progress on an achievement that tracks an "
+"accumulated value, such as 60 out of 120 stars."
+msgstr ""
+
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:90
+msgid ""
"Enable unlocking achievements in Encore Mode.
Encore Mode re-enables "
"achievements the player has already unlocked on the site so that the player "
"will be notified if they meet the unlock conditions again, useful for custom "
@@ -4078,7 +4191,7 @@ msgid ""
"= Compatible, OFF = Fast)"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:514
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:596
msgid ""
"Enables detection of arbitrary mipmaps, which some games use for special "
"distance-based effects.
May have false positives that result in "
@@ -4089,11 +4202,12 @@ msgid ""
"dolphin_emphasis>"
msgstr ""
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:79
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:84
msgid ""
-"Enables emulation of the CPU write-back cache.\n"
-"Enabling will have a significant impact on performance.\n"
-"This should be left disabled unless absolutely needed."
+"Enables emulation of the CPU write-back cache. Enabling will have a "
+"significant impact on performance. This should be left disabled unless "
+"absolutely needed.
If unsure, leave this unchecked."
+""
msgstr ""
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:365
@@ -4111,7 +4225,7 @@ msgid ""
"this unchecked."
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:522
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:604
msgid ""
"Enables scRGB HDR output (if supported by your graphics backend and "
"monitor). Fullscreen might be required.
This gives post process "
@@ -4134,7 +4248,6 @@ msgid ""
msgstr ""
#: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:100
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:68
msgid ""
"Enables the Memory Management Unit, needed for some games. (ON = Compatible, "
"OFF = Fast)"
@@ -4142,7 +4255,14 @@ msgstr ""
"فعال کردن واحد مدیریت حافظه، برای بعضی از بازی ها لازم است. (روشن = سازگار، "
"خاموش = سریع)"
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:193
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:70
+msgid ""
+"Enables the Memory Management Unit, needed for some games. (ON = Compatible, "
+"OFF = Fast)
If unsure, leave this unchecked."
+"dolphin_emphasis>"
+msgstr ""
+
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190
msgid ""
"Enables the WiiLink service for WiiConnect24 channels.\n"
"WiiLink is an alternate provider for the discontinued WiiConnect24 Channels "
@@ -4169,7 +4289,7 @@ msgstr ""
msgid "Encoding"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:615
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:616
msgid ""
"Encountered the following errors while opening save files:\n"
"%1\n"
@@ -4182,12 +4302,12 @@ msgid "Enet Didn't Initialize"
msgstr ""
#: Source/Core/DiscIO/Enums.cpp:80
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:85
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:169
msgid "English"
msgstr "انگلیسی"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:59
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:61
#: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:61
msgid "Enhancements"
msgstr "بهسازی"
@@ -4218,84 +4338,84 @@ msgstr ""
msgid "Enter the DNS server to use:"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1300
+#: Source/Core/DolphinQt/MenuBar.cpp:1286
msgid "Enter the RSO module address:"
msgstr ""
#: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:194
#: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:250
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:261
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:262
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386
#: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:265
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:343
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:349
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:346
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:352
#: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:46
-#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:521
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:256
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:295
-#: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:232
-#: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:259
-#: Source/Core/DolphinQt/ConvertDialog.cpp:424
-#: Source/Core/DolphinQt/ConvertDialog.cpp:471
-#: Source/Core/DolphinQt/ConvertDialog.cpp:525
+#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:539
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:255
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:296
+#: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:229
+#: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:256
+#: Source/Core/DolphinQt/ConvertDialog.cpp:426
+#: Source/Core/DolphinQt/ConvertDialog.cpp:473
+#: Source/Core/DolphinQt/ConvertDialog.cpp:528
#: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:255
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:638
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:644
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:653
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:665
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:684
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:690
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:705
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:713
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:737
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:744
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:637
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:643
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:652
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:664
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:683
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:689
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:704
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:712
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:736
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:743
#: Source/Core/DolphinQt/Debugger/RegisterColumn.cpp:86
#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:282
#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:431
-#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:241
-#: Source/Core/DolphinQt/GBAWidget.cpp:576
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:346
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:376
-#: Source/Core/DolphinQt/Main.cpp:209 Source/Core/DolphinQt/Main.cpp:225
-#: Source/Core/DolphinQt/Main.cpp:232 Source/Core/DolphinQt/MainWindow.cpp:295
-#: Source/Core/DolphinQt/MainWindow.cpp:303
-#: Source/Core/DolphinQt/MainWindow.cpp:1108
-#: Source/Core/DolphinQt/MainWindow.cpp:1494
-#: Source/Core/DolphinQt/MainWindow.cpp:1501
-#: Source/Core/DolphinQt/MainWindow.cpp:1561
-#: Source/Core/DolphinQt/MainWindow.cpp:1568
-#: Source/Core/DolphinQt/MainWindow.cpp:1670
-#: Source/Core/DolphinQt/MenuBar.cpp:1204
-#: Source/Core/DolphinQt/MenuBar.cpp:1284
+#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:237
+#: Source/Core/DolphinQt/GBAWidget.cpp:578
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:347
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:377
+#: Source/Core/DolphinQt/Main.cpp:211 Source/Core/DolphinQt/Main.cpp:227
+#: Source/Core/DolphinQt/Main.cpp:234 Source/Core/DolphinQt/MainWindow.cpp:297
+#: Source/Core/DolphinQt/MainWindow.cpp:305
+#: Source/Core/DolphinQt/MainWindow.cpp:1110
+#: Source/Core/DolphinQt/MainWindow.cpp:1507
+#: Source/Core/DolphinQt/MainWindow.cpp:1514
+#: Source/Core/DolphinQt/MainWindow.cpp:1574
+#: Source/Core/DolphinQt/MainWindow.cpp:1581
+#: Source/Core/DolphinQt/MainWindow.cpp:1690
+#: Source/Core/DolphinQt/MenuBar.cpp:1190
+#: Source/Core/DolphinQt/MenuBar.cpp:1270
+#: Source/Core/DolphinQt/MenuBar.cpp:1293
#: Source/Core/DolphinQt/MenuBar.cpp:1307
-#: Source/Core/DolphinQt/MenuBar.cpp:1321
-#: Source/Core/DolphinQt/MenuBar.cpp:1352
-#: Source/Core/DolphinQt/MenuBar.cpp:1376
-#: Source/Core/DolphinQt/MenuBar.cpp:1597
-#: Source/Core/DolphinQt/MenuBar.cpp:1608
-#: Source/Core/DolphinQt/MenuBar.cpp:1620
-#: Source/Core/DolphinQt/MenuBar.cpp:1642
-#: Source/Core/DolphinQt/MenuBar.cpp:1668
-#: Source/Core/DolphinQt/MenuBar.cpp:1722
-#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:315
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:477
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:738
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:980
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1098
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1108
-#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:334
-#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:340
-#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:347
+#: Source/Core/DolphinQt/MenuBar.cpp:1339
+#: Source/Core/DolphinQt/MenuBar.cpp:1363
+#: Source/Core/DolphinQt/MenuBar.cpp:1584
+#: Source/Core/DolphinQt/MenuBar.cpp:1595
+#: Source/Core/DolphinQt/MenuBar.cpp:1607
+#: Source/Core/DolphinQt/MenuBar.cpp:1629
+#: Source/Core/DolphinQt/MenuBar.cpp:1655
+#: Source/Core/DolphinQt/MenuBar.cpp:1709
+#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:316
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:479
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:740
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:982
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1100
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1110
+#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:332
+#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:338
+#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:345
#: Source/Core/DolphinQt/RenderWidget.cpp:123
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:203
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:224
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:423
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:439
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:460
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:481
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:525
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:562
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:585
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:204
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:225
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:433
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:449
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:470
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:491
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:535
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:572
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:595
#: Source/Core/DolphinQt/Translation.cpp:322
msgid "Error"
msgstr "خطا"
@@ -4304,13 +4424,13 @@ msgstr "خطا"
msgid "Error Opening Adapter: %1"
msgstr ""
-#: Source/Core/Core/NetPlayServer.cpp:1493
+#: Source/Core/Core/NetPlayServer.cpp:1497
msgid "Error collecting save data!"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:260
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:526
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:533
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:262
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:613
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:620
msgid "Error converting value"
msgstr ""
@@ -4323,15 +4443,15 @@ msgstr ""
msgid "Error obtaining session list: %1"
msgstr ""
-#: Source/Core/DolphinQt/MainWindow.cpp:296
+#: Source/Core/DolphinQt/MainWindow.cpp:298
msgid "Error occurred while loading some texture packs"
msgstr ""
-#: Source/Core/Core/NetPlayClient.cpp:1847
+#: Source/Core/Core/NetPlayClient.cpp:1851
msgid "Error processing codes."
msgstr ""
-#: Source/Core/Core/NetPlayClient.cpp:1819
+#: Source/Core/Core/NetPlayClient.cpp:1823
msgid "Error processing data."
msgstr ""
@@ -4339,11 +4459,11 @@ msgstr ""
msgid "Error reading file: {0}"
msgstr ""
-#: Source/Core/Core/NetPlayServer.cpp:1529
+#: Source/Core/Core/NetPlayServer.cpp:1533
msgid "Error synchronizing cheat codes!"
msgstr ""
-#: Source/Core/Core/NetPlayServer.cpp:1515
+#: Source/Core/Core/NetPlayServer.cpp:1519
msgid "Error synchronizing save data!"
msgstr ""
@@ -4414,7 +4534,7 @@ msgstr ""
msgid "Euphoria"
msgstr "خوشی"
-#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:282
+#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:274
#: Source/Core/UICommon/NetPlayIndex.cpp:249
msgid "Europe"
msgstr ""
@@ -4443,11 +4563,11 @@ msgstr ""
msgid "Excluded: %1"
msgstr ""
-#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:73
+#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:72
msgid "Excluded: 0"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:107
+#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108
msgid "Exclusive Ubershaders"
msgstr ""
@@ -4495,14 +4615,14 @@ msgstr ""
msgid "Experimental"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:294
+#: Source/Core/DolphinQt/MenuBar.cpp:286
msgid "Export All Wii Saves"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:422
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:447
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:492
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:499
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:423
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:448
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:493
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:500
msgid "Export Failed"
msgstr ""
@@ -4510,42 +4630,42 @@ msgstr ""
msgid "Export Recording"
msgstr "صادر کردن ضبط"
-#: Source/Core/DolphinQt/MenuBar.cpp:753
+#: Source/Core/DolphinQt/MenuBar.cpp:745
msgid "Export Recording..."
msgstr "صادر کردن ضبط..."
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:437
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:438
msgid "Export Save File"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:454
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:455
msgid "Export Save Files"
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:470
+#: Source/Core/DolphinQt/GameList/GameList.cpp:473
msgid "Export Wii Save"
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:388
+#: Source/Core/DolphinQt/GameList/GameList.cpp:389
msgid "Export Wii Saves"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:117
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:118
msgid "Export as .&gcs..."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:118
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:119
msgid "Export as .&sav..."
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1133
+#: Source/Core/DolphinQt/MenuBar.cpp:1115
#, c-format
msgctxt ""
msgid "Exported %n save(s)"
msgstr ""
#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:268
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:432
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:434
#: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:47
msgid "Extension"
msgstr "پسوند"
@@ -4558,7 +4678,7 @@ msgstr ""
msgid "Extension Motion Simulation"
msgstr ""
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:520
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:522
msgid "External"
msgstr ""
@@ -4566,35 +4686,35 @@ msgstr ""
msgid "External Frame Buffer (XFB)"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:271
+#: Source/Core/DolphinQt/MenuBar.cpp:263
msgid "Extract Certificates from NAND"
msgstr ""
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:268
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:269
msgid "Extract Entire Disc..."
msgstr ""
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:292
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:293
msgid "Extract Entire Partition..."
msgstr ""
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:299
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:300
msgid "Extract File..."
msgstr "استخراج فایل..."
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:241
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:242
msgid "Extract Files..."
msgstr ""
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:251
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:252
msgid "Extract System Data..."
msgstr ""
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:355
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:356
msgid "Extracting All Files..."
msgstr ""
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:356
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357
msgid "Extracting Directory..."
msgstr ""
@@ -4604,7 +4724,7 @@ msgid "FD"
msgstr ""
#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:37
-#: Source/Core/DolphinQt/MenuBar.cpp:228
+#: Source/Core/DolphinQt/MenuBar.cpp:220
msgid "FIFO Player"
msgstr "پخش کننده فیفو"
@@ -4612,17 +4732,17 @@ msgstr "پخش کننده فیفو"
msgid "Failed loading XML."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:347
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:348
msgid ""
"Failed opening memory card:\n"
"%1"
msgstr ""
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:454
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:456
msgid "Failed to add this session to the NetPlay index: %1"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1669
+#: Source/Core/DolphinQt/MenuBar.cpp:1656
msgid "Failed to append to signature file '%1'"
msgstr ""
@@ -4630,11 +4750,11 @@ msgstr ""
msgid "Failed to claim interface for BT passthrough: {0}"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:574
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:676
msgid "Failed to clear Skylander!"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:575
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:677
msgid "Failed to clear the Skylander from slot(%1)!"
msgstr ""
@@ -4642,7 +4762,7 @@ msgstr ""
msgid "Failed to connect to Redump.org"
msgstr ""
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:981
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:983
msgid "Failed to connect to server: %1"
msgstr ""
@@ -4663,15 +4783,15 @@ msgstr ""
msgid "Failed to create DXGI factory"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:289
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:291
msgid "Failed to create Infinity file"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:678
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:798
msgid "Failed to create Skylander file!"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:679
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:799
msgid ""
"Failed to create Skylander file:\n"
"%1\n"
@@ -4687,7 +4807,7 @@ msgstr ""
msgid "Failed to delete NetPlay memory card. Verify your write permissions."
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:841
+#: Source/Core/DolphinQt/GameList/GameList.cpp:854
msgid "Failed to delete the selected file."
msgstr ""
@@ -4695,36 +4815,36 @@ msgstr ""
msgid "Failed to detach kernel driver for BT passthrough: {0}"
msgstr ""
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:343
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:346
msgid "Failed to download codes."
msgstr "دانلود کدها با شکست مواجه شد."
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:738
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:737
msgid "Failed to dump %1: Can't open file"
msgstr ""
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:745
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:744
msgid "Failed to dump %1: Failed to write to file"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:488
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:489
msgctxt ""
msgid "Failed to export %n out of %1 save file(s)."
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:576
+#: Source/Core/DolphinQt/GameList/GameList.cpp:584
msgid "Failed to export the following save files:"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1204
+#: Source/Core/DolphinQt/MenuBar.cpp:1190
msgid "Failed to extract certificates from NAND"
msgstr ""
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386
msgid "Failed to extract file."
msgstr ""
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:261
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:262
msgid "Failed to extract system data."
msgstr ""
@@ -4739,29 +4859,29 @@ msgstr ""
msgid "Failed to find one or more D3D symbols"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:565
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:566
msgid "Failed to import \"%1\"."
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1109
+#: Source/Core/DolphinQt/MenuBar.cpp:1091
msgid ""
"Failed to import save file. Please launch the game once, then try again."
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1103
+#: Source/Core/DolphinQt/MenuBar.cpp:1085
msgid ""
"Failed to import save file. The given file appears to be corrupted or is not "
"a valid Wii save."
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1116
+#: Source/Core/DolphinQt/MenuBar.cpp:1098
msgid ""
"Failed to import save file. Your NAND may be corrupt, or something is "
"preventing access to files within it. Try repairing your NAND (Tools -> "
"Manage NAND -> Check NAND...), then import the save again."
msgstr ""
-#: Source/Core/DolphinQt/MainWindow.cpp:1108
+#: Source/Core/DolphinQt/MainWindow.cpp:1110
msgid "Failed to init core"
msgstr ""
@@ -4776,23 +4896,23 @@ msgstr ""
msgid "Failed to initialize renderer classes"
msgstr ""
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:204
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:205
msgid "Failed to install pack: %1"
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:619
-#: Source/Core/DolphinQt/MenuBar.cpp:1074
+#: Source/Core/DolphinQt/GameList/GameList.cpp:628
+#: Source/Core/DolphinQt/MenuBar.cpp:1056
msgid "Failed to install this title to the NAND."
msgstr ""
-#: Source/Core/DolphinQt/MainWindow.cpp:1594
+#: Source/Core/DolphinQt/MainWindow.cpp:1607
msgid ""
"Failed to listen on port %1. Is another instance of the NetPlay server "
"running?"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1321
-#: Source/Core/DolphinQt/MenuBar.cpp:1376
+#: Source/Core/DolphinQt/MenuBar.cpp:1307
+#: Source/Core/DolphinQt/MenuBar.cpp:1363
msgid "Failed to load RSO module at %1"
msgstr ""
@@ -4804,15 +4924,15 @@ msgstr ""
msgid "Failed to load dxgi.dll"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1608
+#: Source/Core/DolphinQt/MenuBar.cpp:1595
msgid "Failed to load map file '%1'"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:720
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:842
msgid "Failed to load the Skylander file!"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:721
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:843
msgid "Failed to load the Skylander file(%1)!\n"
msgstr ""
@@ -4826,8 +4946,12 @@ msgid ""
"update package."
msgstr ""
-#: Source/Core/DolphinQt/GBAWidget.cpp:576
-#: Source/Core/DolphinQt/MainWindow.cpp:1670
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:663
+msgid "Failed to modify Skylander!"
+msgstr ""
+
+#: Source/Core/DolphinQt/GBAWidget.cpp:578
+#: Source/Core/DolphinQt/MainWindow.cpp:1690
#: Source/Core/DolphinQt/RenderWidget.cpp:123
msgid "Failed to open '%1'"
msgstr ""
@@ -4854,40 +4978,40 @@ msgid ""
"Make sure there's an application assigned to open INI files."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:861
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:863
msgid "Failed to open file."
msgstr ""
-#: Source/Core/DolphinQt/MainWindow.cpp:1593
+#: Source/Core/DolphinQt/MainWindow.cpp:1606
msgid "Failed to open server"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:164
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:166
msgid "Failed to open the Infinity file!"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:165
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:167
msgid ""
"Failed to open the Infinity file(%1)!\n"
"File may already be in use on the base."
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:696
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:818
msgid "Failed to open the Skylander file!"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:697
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:819
msgid ""
"Failed to open the Skylander file(%1)!\n"
"File may already be in use on the portal."
msgstr ""
-#: Source/Core/DolphinQt/ConvertDialog.cpp:472
+#: Source/Core/DolphinQt/ConvertDialog.cpp:474
msgid "Failed to open the input file \"%1\"."
msgstr ""
-#: Source/Core/DiscIO/CompressedBlob.cpp:282 Source/Core/DiscIO/FileBlob.cpp:53
-#: Source/Core/DiscIO/WIABlob.cpp:2037
+#: Source/Core/DiscIO/CompressedBlob.cpp:287 Source/Core/DiscIO/FileBlob.cpp:58
+#: Source/Core/DiscIO/WIABlob.cpp:2043
msgid ""
"Failed to open the output file \"{0}\".\n"
"Check that you have permissions to write the target folder and that the "
@@ -4907,35 +5031,35 @@ msgstr ""
msgid "Failed to read DFF file."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:863
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:865
msgid "Failed to read from file."
msgstr ""
-#: Source/Core/DiscIO/CompressedBlob.cpp:373 Source/Core/DiscIO/FileBlob.cpp:93
-#: Source/Core/DiscIO/WIABlob.cpp:2052
+#: Source/Core/DiscIO/CompressedBlob.cpp:378 Source/Core/DiscIO/FileBlob.cpp:98
+#: Source/Core/DiscIO/WIABlob.cpp:2058
msgid "Failed to read from the input file \"{0}\"."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:423
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:641
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:424
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:642
msgid "Failed to read selected savefile(s) from memory card."
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:173
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:175
msgid "Failed to read the Infinity file!"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:174
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:176
msgid ""
"Failed to read the Infinity file(%1)!\n"
"File was too small."
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:706
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:828
msgid "Failed to read the Skylander file!"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:707
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:829
msgid ""
"Failed to read the Skylander file(%1)!\n"
"File was too small."
@@ -4945,18 +5069,18 @@ msgstr ""
msgid "Failed to read {0}"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:668
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:669
msgid "Failed to remove file."
msgstr ""
-#: Source/Core/DolphinQt/ConvertDialog.cpp:453
+#: Source/Core/DolphinQt/ConvertDialog.cpp:455
msgid ""
"Failed to remove junk data from file \"%1\".\n"
"\n"
"Would you like to convert it without removing junk data?"
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:647
+#: Source/Core/DolphinQt/GameList/GameList.cpp:658
msgid "Failed to remove this title from the NAND."
msgstr ""
@@ -4972,27 +5096,34 @@ msgstr ""
msgid "Failed to reset NetPlay redirect folder. Verify your write permissions."
msgstr ""
-#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:241
+#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:237
msgid "Failed to save FIFO log."
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1598
+#: Source/Core/DolphinQt/MenuBar.cpp:1585
msgid "Failed to save code map to path '%1'"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1642
+#: Source/Core/DolphinQt/MenuBar.cpp:1629
msgid "Failed to save signature file '%1'"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1621
+#: Source/Core/DolphinQt/MenuBar.cpp:1608
msgid "Failed to save symbol map to path '%1'"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1723
+#: Source/Core/DolphinQt/MenuBar.cpp:1710
msgid "Failed to save to signature file '%1'"
msgstr ""
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:225
+#: Source/Core/Core/Core.cpp:548
+msgid ""
+"Failed to sync SD card with folder. All changes made this session will be "
+"discarded on next boot if you do not manually re-issue a resync in Config > "
+"Wii > SD Card Settings > Convert File to Folder Now!"
+msgstr ""
+
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:226
msgid "Failed to uninstall pack: %1"
msgstr ""
@@ -5012,9 +5143,9 @@ msgstr ""
msgid "Failed to write config file!"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:573
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:676
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:691
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:574
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:677
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:692
msgid "Failed to write modified memory card to disk."
msgstr ""
@@ -5022,33 +5153,33 @@ msgstr ""
msgid "Failed to write redirected save."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:447
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:448
msgid "Failed to write savefile to disk."
msgstr ""
-#: Source/Core/DiscIO/CompressedBlob.cpp:377 Source/Core/DiscIO/FileBlob.cpp:99
-#: Source/Core/DiscIO/WIABlob.cpp:2056
+#: Source/Core/DiscIO/CompressedBlob.cpp:382
+#: Source/Core/DiscIO/FileBlob.cpp:104 Source/Core/DiscIO/WIABlob.cpp:2062
msgid ""
"Failed to write the output file \"{0}\".\n"
"Check that you have enough space available on the target drive."
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:617
-#: Source/Core/DolphinQt/GameList/GameList.cpp:645
-#: Source/Core/DolphinQt/GameList/GameList.cpp:840
-#: Source/Core/DolphinQt/MenuBar.cpp:1074
+#: Source/Core/DolphinQt/GameList/GameList.cpp:626
+#: Source/Core/DolphinQt/GameList/GameList.cpp:656
+#: Source/Core/DolphinQt/GameList/GameList.cpp:853
+#: Source/Core/DolphinQt/MenuBar.cpp:1056
msgid "Failure"
msgstr ""
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:183
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:184
msgid "Fair Input Delay"
msgstr ""
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:199
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:200
msgid "Fallback Region"
msgstr ""
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:210
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:211
msgid "Fallback Region:"
msgstr ""
@@ -5072,17 +5203,21 @@ msgstr ""
msgid "Field of View"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:233
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:235
msgid "Figure Number:"
msgstr ""
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:380
+msgid "Figure type"
+msgstr ""
+
#: Source/Core/DolphinQt/Config/InfoWidget.cpp:46
msgid "File Details"
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:991
+#: Source/Core/DolphinQt/GameList/GameList.cpp:1005
#: Source/Core/DolphinQt/GameList/GameListModel.cpp:229
-#: Source/Core/DolphinQt/MenuBar.cpp:652
+#: Source/Core/DolphinQt/MenuBar.cpp:644
msgid "File Format"
msgstr ""
@@ -5094,20 +5229,20 @@ msgstr ""
msgid "File Info"
msgstr "مشخصات فایل"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:986
+#: Source/Core/DolphinQt/GameList/GameList.cpp:1000
#: Source/Core/DolphinQt/GameList/GameListModel.cpp:223
-#: Source/Core/DolphinQt/MenuBar.cpp:647
+#: Source/Core/DolphinQt/MenuBar.cpp:639
msgid "File Name"
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:987
+#: Source/Core/DolphinQt/GameList/GameList.cpp:1001
#: Source/Core/DolphinQt/GameList/GameListModel.cpp:225
-#: Source/Core/DolphinQt/MenuBar.cpp:648
+#: Source/Core/DolphinQt/MenuBar.cpp:640
msgid "File Path"
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:990
-#: Source/Core/DolphinQt/MenuBar.cpp:651
+#: Source/Core/DolphinQt/GameList/GameList.cpp:1004
+#: Source/Core/DolphinQt/MenuBar.cpp:643
msgid "File Size"
msgstr ""
@@ -5115,15 +5250,15 @@ msgstr ""
msgid "File Size:"
msgstr ""
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:349
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:352
msgid "File contained no codes."
msgstr "فایل شامل کدی نیست."
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:149
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:150
msgid "Filename"
msgstr ""
-#: Source/Core/DiscIO/CompressedBlob.cpp:289
+#: Source/Core/DiscIO/CompressedBlob.cpp:294
msgid "Files opened, ready to compress."
msgstr ""
@@ -5133,11 +5268,11 @@ msgid ""
"{1}"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:833
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:835
msgid "Filesize does not match any known GameCube Memory Card size."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:836
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:838
msgid "Filesize in header mismatches actual card size."
msgstr ""
@@ -5145,7 +5280,7 @@ msgstr ""
msgid "Filesystem"
msgstr "فایل سیستم"
-#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:102
+#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:103
msgid "Filters"
msgstr ""
@@ -5161,7 +5296,7 @@ msgstr ""
msgid "Finish Calibration"
msgstr ""
-#: Source/Core/DolphinQt/WiiUpdate.cpp:109
+#: Source/Core/DolphinQt/WiiUpdate.cpp:110
msgid ""
"Finishing the update...\n"
"This can take a while."
@@ -5169,19 +5304,19 @@ msgstr ""
#. i18n: One of the elements in the Skylanders games. Japanese: 火. For official translations
#. in other languages, check the SuperChargers manual at https://support.activision.com/manuals
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:333
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:349
msgid "Fire"
msgstr ""
-#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:40
+#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:41
msgid "First Person"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:127
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:128
msgid "Fix Checksums"
msgstr "درست کردن چک سام ها"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:690
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:691
msgid "Fix Checksums Failed"
msgstr ""
@@ -5191,7 +5326,7 @@ msgstr ""
#. i18n: These are the kinds of flags that a CPU uses (e.g. carry),
#. not the kinds of flags that represent e.g. countries
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:166
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167
#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:87
msgid "Flags"
msgstr ""
@@ -5200,12 +5335,12 @@ msgstr ""
#. i18n: Floating-point (non-integer) number
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:138
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:198
-#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:152
+#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:153
#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97
msgid "Float"
msgstr ""
-#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:565
+#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:566
msgid "Follow &branch"
msgstr ""
@@ -5225,35 +5360,35 @@ msgid ""
"\">refer to this page
."
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:57
+#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:58
msgid "Force 16:9"
msgstr "۱۶:۹ اجباری"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:117
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:152
msgid "Force 24-Bit Color"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:57
+#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:58
msgid "Force 4:3"
msgstr "۴:۳ اجباری"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:96
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:115
msgid "Force Linear"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:103
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:122
msgid "Force Linear and 16x Anisotropic"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:97
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:116
msgid "Force Linear and 2x Anisotropic"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:99
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:118
msgid "Force Linear and 4x Anisotropic"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:101
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:120
msgid "Force Linear and 8x Anisotropic"
msgstr ""
@@ -5261,7 +5396,7 @@ msgstr ""
msgid "Force Listen Port:"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:95
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:114
msgid "Force Nearest"
msgstr ""
@@ -5273,7 +5408,7 @@ msgstr ""
msgid "Forced on because %1 doesn't support geometry shaders."
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:474
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:556
msgid ""
"Forces the game to output graphics for any aspect ratio. Use with \"Aspect "
"Ratio\" set to \"Force 16:9\" to force 4:3-only games to run at 16:9."
@@ -5283,7 +5418,7 @@ msgid ""
""
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:503
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:585
msgid ""
"Forces the game to render the RGB color channels in 24-bit, thereby "
"increasing quality by reducing color banding.
Has no impact on "
@@ -5291,7 +5426,7 @@ msgid ""
"unsure, leave this checked."
msgstr ""
-#: Source/Core/DolphinQt/ConvertDialog.cpp:59
+#: Source/Core/DolphinQt/ConvertDialog.cpp:60
msgid "Format:"
msgstr ""
@@ -5357,19 +5492,19 @@ msgstr ""
msgid "France"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:311
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:312
msgid "Free Blocks: %1"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:312
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:313
msgid "Free Files: %1"
msgstr ""
-#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:42
+#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:43
msgid "Free Look Control Type"
msgstr ""
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:468
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:470
msgid "Free Look Controller %1"
msgstr ""
@@ -5377,7 +5512,7 @@ msgstr ""
msgid "Free Look Settings"
msgstr ""
-#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:54
+#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:55
msgid ""
"Free Look allows for manipulation of the in-game camera. Different camera "
"types are available from the dropdown.
Ellet ole varma, jätä tämä valitsematta."
"dolphin_emphasis>"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:508
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:590
msgid ""
"Disables the blending of adjacent rows when copying the EFB. This is known "
"in some games as \"deflickering\" or \"smoothing\".
Disabling the "
@@ -3677,7 +3833,7 @@ msgstr ""
"harvoin graafisia ongelmia.
Ellet ole varma, jätä "
"tämä valituksi."
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:96
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:97
msgid "Disc"
msgstr "Levy"
@@ -3716,26 +3872,26 @@ msgstr "Etäisyys"
msgid "Distance of travel from neutral position."
msgstr "Matkaetäisyys neutraalipaikasta."
-#: Source/Core/DolphinQt/Main.cpp:259
+#: Source/Core/DolphinQt/Main.cpp:264
msgid "Do you authorize Dolphin to report information to Dolphin's developers?"
msgstr "Sallitko Dolphinin lähettävän tietoja Dolphinin kehittäjille?"
-#: Source/Core/DolphinQt/MainWindow.cpp:1692
+#: Source/Core/DolphinQt/MainWindow.cpp:1712
msgid "Do you want to add \"%1\" to the list of Game Paths?"
msgstr "Haluatko lisätä polun \"%1\" pelipolkujen listaan?"
-#: Source/Core/DolphinQt/MenuBar.cpp:1241
+#: Source/Core/DolphinQt/MenuBar.cpp:1227
msgid "Do you want to clear the list of symbol names?"
msgstr "Haluatko tyhjentää symbolinimien listan?"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:658
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:659
#, c-format
msgctxt ""
msgid "Do you want to delete the %n selected save file(s)?"
msgstr ""
"Haluatko poistaa %n valitun tallennustiedoston/valittua tallennustiedostoa?"
-#: Source/Core/DolphinQt/MainWindow.cpp:933
+#: Source/Core/DolphinQt/MainWindow.cpp:935
msgid "Do you want to stop the current emulation?"
msgstr "Haluatko lopettaa nykyisen emulaation?"
@@ -3747,35 +3903,35 @@ msgstr "Haluatko yrittää NAND-muistin korjaamista?"
msgid "Dolby Pro Logic II Decoder"
msgstr "Dolby Pro Logic II -dekooderi"
-#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:219
-#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:230
+#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:215
+#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:226
msgid "Dolphin FIFO Log (*.dff)"
msgstr "Dolphin FIFO -loki (*.dff)"
-#: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:327
+#: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:326
msgid "Dolphin Game Mod Preset"
msgstr "Dolphinin pelimodien esiasestukset"
-#: Source/Core/DolphinQt/MenuBar.cpp:1536
-#: Source/Core/DolphinQt/MenuBar.cpp:1553
-#: Source/Core/DolphinQt/MenuBar.cpp:1572
+#: Source/Core/DolphinQt/MenuBar.cpp:1523
+#: Source/Core/DolphinQt/MenuBar.cpp:1540
+#: Source/Core/DolphinQt/MenuBar.cpp:1559
msgid "Dolphin Map File (*.map)"
msgstr "Dolphinin karttatiedosto (*.map)"
-#: Source/Core/DolphinQt/MenuBar.cpp:73
+#: Source/Core/DolphinQt/MenuBar.cpp:74
msgid "Dolphin Signature CSV File"
msgstr "Dolphinin allekirjoitusten CSV-tiedosto"
-#: Source/Core/DolphinQt/MenuBar.cpp:73
+#: Source/Core/DolphinQt/MenuBar.cpp:74
msgid "Dolphin Signature File"
msgstr "Dolphinin allekirjoitustiedosto"
-#: Source/Core/DolphinQt/MainWindow.cpp:1772
-#: Source/Core/DolphinQt/MainWindow.cpp:1843
+#: Source/Core/DolphinQt/MainWindow.cpp:1823
+#: Source/Core/DolphinQt/MainWindow.cpp:1894
msgid "Dolphin TAS Movies (*.dtm)"
msgstr "Dolphin TAS-nauhoitus (*.dtm)"
-#: Source/Core/DolphinQt/ConvertDialog.cpp:326
+#: Source/Core/DolphinQt/ConvertDialog.cpp:327
msgid ""
"Dolphin can't convert NKit files to non-NKit files. Converting an NKit file "
"in Dolphin will result in another NKit file.\n"
@@ -3793,7 +3949,7 @@ msgstr ""
"\n"
"Haluat kuitenkin jatkaa?"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:279
+#: Source/Core/DolphinQt/GameList/GameList.cpp:280
msgid ""
"Dolphin could not find any GameCube/Wii ISOs or WADs.\n"
"Double-click here to set a games directory..."
@@ -3801,7 +3957,7 @@ msgstr ""
"Dolphin ei löytänyt GameCube-/Wii-ISO-tiedostoja tai WADeja.\n"
"Tuplaklikkaa tätä osaa asettaaksesi pelihakemiston..."
-#: Source/Core/DolphinQt/ConvertDialog.cpp:526
+#: Source/Core/DolphinQt/ConvertDialog.cpp:529
msgid "Dolphin failed to complete the requested action."
msgstr "Dolphin ei onnistunut toteuttamaan pyydettyä toimintoa."
@@ -3813,7 +3969,7 @@ msgstr "Dolphin ei onnistunut toteuttamaan pyydettyä toimintoa."
msgid "Dolphin is a free and open-source GameCube and Wii emulator."
msgstr "Dolphin on vapaan ja avoimen lähdekoodin GameCube- ja Wii-emulaattori."
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:998
msgid "Dolphin is too old for traversal server"
msgstr "Dolphin on liian vanha käyttämään läpikulkupalvelinta"
@@ -3829,7 +3985,7 @@ msgstr ""
msgid "Dolphin is unable to verify unlicensed discs."
msgstr "Dolphin ei pysty todentamaan ei-lisensoituja levyjä."
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:217
msgid ""
"Dolphin will use this for titles whose region cannot be determined "
"automatically."
@@ -3846,15 +4002,15 @@ msgstr "Dolphinin huijausjärjestelmä on tällä hetkellä pois käytöstä."
msgid "Domain"
msgstr "Verkkotunnus"
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:193
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:194
msgid "Don't Update"
msgstr "Älä päivitä"
-#: Source/Core/DolphinQt/NKitWarningDialog.cpp:53
+#: Source/Core/DolphinQt/NKitWarningDialog.cpp:56
msgid "Don't show this again"
msgstr "Älä näytä uudestaan"
-#: Source/Core/DiscIO/CompressedBlob.cpp:369
+#: Source/Core/DiscIO/CompressedBlob.cpp:374
msgid "Done compressing disc image."
msgstr "Levyn pakkaus valmis."
@@ -3867,37 +4023,37 @@ msgstr "Ovet lukossa"
#. i18n: A double precision floating point number
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:139
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:199
-#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:154
+#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:155
msgid "Double"
msgstr "64-bittinen liukuluku"
#: Source/Core/Core/FreeLookManager.cpp:89
#: Source/Core/Core/HW/WiimoteEmu/Extension/Guitar.cpp:80
#: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:35
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:43
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:44
#: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:21
#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUAccelerometer.cpp:19
#: Source/Core/InputCommon/ControllerEmu/ControllerEmu.h:24
msgid "Down"
msgstr "Alas"
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:86
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:87
msgid "Download Codes"
msgstr "Lataa koodeja"
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:88
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:89
msgid "Download Codes from the WiiRD Database"
msgstr "Lataa koodeja WiiRD -tietokannasta"
-#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:148
+#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:153
msgid "Download Game Covers from GameTDB.com for Use in Grid Mode"
msgstr "Lataa kansikuvia GameTDB.comista ruudukkonäkymään"
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:370
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:373
msgid "Download complete"
msgstr "Lataus valmis"
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:371
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:374
msgid "Downloaded %1 codes. (added %2)"
msgstr "Ladattu %1 koodia. (lisätty %2)"
@@ -3920,7 +4076,7 @@ msgstr "Kaksiydintila"
msgid "Dual View"
msgstr "Kaksoisnäkymä"
-#: Source/Core/Core/HW/EXI/EXI_Device.h:95
+#: Source/Core/Core/HW/EXI/EXI_Device.h:94
msgid "Dummy"
msgstr "Valelaite"
@@ -3940,7 +4096,7 @@ msgstr "Tee &FakeVMEM-vedos"
msgid "Dump &MRAM"
msgstr "Tee &MRAM-vedos"
-#: Source/Core/DolphinQt/MenuBar.cpp:814
+#: Source/Core/DolphinQt/MenuBar.cpp:806
msgid "Dump Audio"
msgstr "Tee äänivedos"
@@ -3952,7 +4108,7 @@ msgstr "Tee perustekstuurivedos"
msgid "Dump EFB Target"
msgstr "Tee EFB-kohteen vedos"
-#: Source/Core/DolphinQt/MenuBar.cpp:808
+#: Source/Core/DolphinQt/MenuBar.cpp:800
msgid "Dump Frames"
msgstr "Tee kehysvedos"
@@ -4034,12 +4190,12 @@ msgid "Duration of Turbo Button Release (frames):"
msgstr "Turbo-painikkeen irrottamisen pituus (kehyksiä):"
#: Source/Core/DiscIO/Enums.cpp:95
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174
msgid "Dutch"
msgstr "Hollanti"
-#: Source/Core/DolphinQt/MenuBar.cpp:215
+#: Source/Core/DolphinQt/MenuBar.cpp:207
msgid "E&xit"
msgstr "P&oistu"
@@ -4059,7 +4215,7 @@ msgstr ""
"luultavasti tarvitaan uudelleenkäynnistys, jotta Windows havaitsisi uuden "
"ajurin."
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:185
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:186
msgid ""
"Each player sends their own inputs to the game, with equal buffer size for "
"all players, configured by the host.\n"
@@ -4077,9 +4233,9 @@ msgstr "Aikaiset muistipäivitykset"
#. i18n: One of the elements in the Skylanders games. Japanese: 土. For official translations
#. in other languages, check the SuperChargers manual at https://support.activision.com/manuals
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:336
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:352
msgid "Earth"
-msgstr ""
+msgstr "Maa"
#: Source/Core/UICommon/NetPlayIndex.cpp:249
msgid "East Asia"
@@ -4090,7 +4246,7 @@ msgstr "Itä-Aasia"
msgid "Edit Breakpoint"
msgstr "Muokkaa keskeytyskohtaa"
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:426
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:430
msgid "Edit..."
msgstr "Muokkaa..."
@@ -4124,19 +4280,19 @@ msgstr "Poista levy"
#. i18n: Elements are a trait of Skylanders figures. For official translations of this term,
#. check the Skylanders SuperChargers manual at https://support.activision.com/manuals
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:289
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:300
msgid "Element"
-msgstr ""
+msgstr "Elementti"
#: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:41
msgid "Embedded Frame Buffer (EFB)"
msgstr "Sulautettu kehyspuskuri (EFB)"
-#: Source/Core/Core/State.cpp:541
+#: Source/Core/Core/State.cpp:629
msgid "Empty"
msgstr "Tyhjä"
-#: Source/Core/Core/Core.cpp:246
+#: Source/Core/Core/Core.cpp:247
msgid "Emu Thread already running"
msgstr "Emulaattorisäie on jo käynnissä"
@@ -4144,15 +4300,15 @@ msgstr "Emulaattorisäie on jo käynnissä"
msgid "Emulate Disc Speed"
msgstr "Emuloi levyn nopeutta"
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:60
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:61
msgid "Emulate Infinity Base"
msgstr "Emuloi Infinity-alustaa"
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:146
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:157
msgid "Emulate Skylander Portal"
msgstr "Emuloi Skylander-portaalia"
-#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:110
+#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:111
msgid "Emulate the Wii's Bluetooth adapter"
msgstr "Emuloi Wiin Bluetooth-sovitinta"
@@ -4164,11 +4320,11 @@ msgstr ""
"Emuloi oikean laitteiston optisen levyn nopeutta. Käytöstä poistaminen "
"saattaa aiheutaa epävakautta. Oletuksena True"
-#: Source/Core/DolphinQt/MenuBar.cpp:230
+#: Source/Core/DolphinQt/MenuBar.cpp:222
msgid "Emulated USB Devices"
msgstr "Emuloidut USB-laitteet"
-#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:141
+#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:142
msgid "Emulated Wii Remote"
msgstr "Emuloitu Wii Remote"
@@ -4191,12 +4347,12 @@ msgstr "Emulaation nopeus"
msgid "Emulation must be started to record."
msgstr "Emulointi pitää käynnistää, jotta nauhoitus olisi mahdollista."
-#: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:29
-#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:33
+#: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:30
+#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:34
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:120
-#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:129
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:402
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:419
+#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:130
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:406
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:423
msgid "Enable"
msgstr "Ota käyttöön"
@@ -4204,45 +4360,53 @@ msgstr "Ota käyttöön"
msgid "Enable API Validation Layers"
msgstr "Käytä ohjelmointirajapinnan tarkistuskerroksia"
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:83
+msgid "Enable Achievement Badges"
+msgstr ""
+
#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:60
msgid "Enable Achievements"
-msgstr ""
+msgstr "Ota saavutukset käyttöö"
#: Source/Core/DolphinQt/Settings/AudioPane.cpp:142
msgid "Enable Audio Stretching"
msgstr "Käytä äänen venytystä"
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:142
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:143
msgid "Enable Cheats"
msgstr "Ota huijauskoodit käyttöön"
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:155
+#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:53
+msgid "Enable Controller Inpu&t"
+msgstr ""
+
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:161
msgid "Enable Custom RTC"
msgstr "Ota mukautettu reaaliaikainen kello käyttöön"
-#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:149
+#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:154
msgid "Enable Debugging UI"
-msgstr ""
+msgstr "Ota virheenkorjauskäyttöliittymä käyttöön"
#: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:87
msgid "Enable Dual Core"
msgstr "Ota kaksiydinsuoritin käyttöön"
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:139
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:140
msgid "Enable Dual Core (speedup)"
msgstr "Ota kaksiydinsuoritin käyttöön (nopeuttaa)"
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:88
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:94
msgid "Enable Emulated CPU Clock Override"
msgstr "Ota kellotaajuuden säätö käyttöön"
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:118
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:124
msgid "Enable Emulated Memory Size Override"
msgstr "Ota emuloidun muistin määrän säätö käyttöön"
-#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:78
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:88
msgid "Enable Encore Achievements"
-msgstr ""
+msgstr "Ota Encore-saavutukset käyttöön"
#: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:89
msgid "Enable FPRF"
@@ -4254,63 +4418,76 @@ msgstr "Käytä grafiikkamodeja"
#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:62
msgid "Enable Leaderboards"
-msgstr ""
+msgstr "Ota tulostaulukot käyttö"
#: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:88
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:66
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:68
msgid "Enable MMU"
msgstr "Ota MMU käyttöön"
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:78
+msgid "Enable Progress Notifications"
+msgstr ""
+
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:156
msgid "Enable Progressive Scan"
msgstr "Ota progressiivinen kuva käyttöön"
#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:45
msgid "Enable RetroAchievements.org Integration"
-msgstr ""
+msgstr "Ota RetroAchievements.org-yhteys käyttöön"
#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:66
msgid "Enable Rich Presence"
-msgstr ""
+msgstr "Ilmoita Rich Presence"
#: Source/Core/DolphinQt/Config/Mapping/GCPadWiiUConfigDialog.cpp:39
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:353
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:352
msgid "Enable Rumble"
msgstr "Ota tärinä käyttöön"
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:157
msgid "Enable Screen Saver"
msgstr "Ota näytönsäästäjä käyttöön"
-#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:113
+#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:114
msgid "Enable Speaker Data"
msgstr "Käytä kaiutindataa"
#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:72
msgid "Enable Unofficial Achievements"
-msgstr ""
+msgstr "Ota epäviralliset saavutukset käyttöön"
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:230
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:231
msgid "Enable Usage Statistics Reporting"
msgstr "Ota käyttötilastojen raportointi käyttöön"
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158
msgid "Enable WiiConnect24 via WiiLink"
-msgstr ""
+msgstr "Käytä WiiLink-palvelua WiiConnect24:n apuna"
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:81
msgid "Enable Wireframe"
msgstr "Ota rautalankatila käyttöön"
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:77
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:82
msgid "Enable Write-Back Cache (slow)"
msgstr "Käytä takaisinkirjoitusvälimuistia (hidas)"
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:85
+msgid ""
+"Enable achievement badges.
Displays icons for the player, game, and "
+"achievements. Simple visual option, but will require a small amount of extra "
+"memory and time to download the images."
+msgstr ""
+
#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:64
msgid ""
"Enable competing in RetroAchievements leaderboards.
Hardcore Mode "
"must be enabled to use."
msgstr ""
+"Osallistu RetroAchievements-tulostaulukoiden kilpailuun.
Hardcore-"
+"tilan on oltava käytössä."
#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:68
msgid ""
@@ -4319,6 +4496,11 @@ msgid ""
"website. If this is disabled, the website will only report what game is "
"being played.
This has no bearing on Discord rich presence."
msgstr ""
+"Ilmoittaa tarkat Rich Presence -tiedot RetroAchievements-verkkosivuille."
+"
Ominaisuus näyttää verkkosivulla tarkan tiedon siitä, mitä pelaaja "
+"tekee peleissä. Jos asetus on poissa käytöstä, verkkosivu näyttää vain "
+"pelaajan pelaaman pelin.
Asetus ei liity Discordin Rich Presence -"
+"toimintoon."
#: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:107
msgid ""
@@ -4336,18 +4518,34 @@ msgid ""
"account to use. Dolphin does not save your password locally and uses an API "
"token to maintain login."
msgstr ""
+"Yhdistää emulaattorin RetroAchievements-verkkosivustoon, jolloin voit avata "
+"saavutuksia ja kilpailla tulostaulukon sijoista.
Ominaisuuden käyttö "
+"vaatii sisäänkirjautumisen RetroAchievements-käyttäjätunnuksilla. Dolphin ei "
+"tallenna salasanaasi ja käyttää sen sijaan API-avainta käyttäjän "
+"muistamiseen."
#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:80
msgid ""
+"Enable progress notifications on achievements.
Displays a brief popup "
+"message whenever the player makes progress on an achievement that tracks an "
+"accumulated value, such as 60 out of 120 stars."
+msgstr ""
+
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:90
+msgid ""
"Enable unlocking achievements in Encore Mode.
Encore Mode re-enables "
"achievements the player has already unlocked on the site so that the player "
"will be notified if they meet the unlock conditions again, useful for custom "
"speedrun criteria or simply for fun."
msgstr ""
+"Mahdollistaa saavutusten avaamisen Encore-tilassa.
Encore-tila "
+"mahdollistaa aiemmin avattujen saavutusten avaamisen uudelleen, jolloin "
+"pelaaja saa tiedon, kun avaamiskriteerit on tavoitettu. Ominaisuus on "
+"hyödyllinen esimerkiksi speedrun-kriteerien seurantaan."
#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:61
msgid "Enable unlocking achievements. "
-msgstr ""
+msgstr "Ota saavutusten avaaminen käyttöön. "
#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:74
msgid ""
@@ -4356,6 +4554,10 @@ msgid ""
"that have not been deemed official by RetroAchievements and may be useful "
"for testing or simply for fun."
msgstr ""
+"Mahdollistaa sekä epävirallisten että virallisten saavutusten avaamisen."
+"
Epäviralliset saavutukset voivat olla valinnaisia tai "
+"viimeistelemättömiä saavutuksia, joita RetroAchievements ei pidä "
+"virallisina. Ne voivat olla hyödyllisiä testaamisessa tai hauskanpidossa."
#: Source/Core/DolphinQt/Settings/AudioPane.cpp:97
msgid ""
@@ -4373,7 +4575,7 @@ msgstr ""
"Ottaa liukulukutulosten lippurekisterin laskennan käyttöön, mitä tarvitaan "
"muutamiin peleihin. (PÄÄLLÄ = Yhteensopiva, POIS = Nopea)"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:514
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:596
msgid ""
"Enables detection of arbitrary mipmaps, which some games use for special "
"distance-based effects.
May have false positives that result in "
@@ -4393,15 +4595,13 @@ msgstr ""
"
Ellet ole varma, jätä tämä valitsematta."
"dolphin_emphasis>"
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:79
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:84
msgid ""
-"Enables emulation of the CPU write-back cache.\n"
-"Enabling will have a significant impact on performance.\n"
-"This should be left disabled unless absolutely needed."
+"Enables emulation of the CPU write-back cache. Enabling will have a "
+"significant impact on performance. This should be left disabled unless "
+"absolutely needed.
If unsure, leave this unchecked."
+""
msgstr ""
-"Ottaa käyttöön suorittimen takaisinkirjoitusten välimuistin.\n"
-"Tämän valitsemisella on merkittäviä vaikutuksia suorituskykyyn.\n"
-"Asetus tulisi jättää valitsematta, ellei sitä ehdottomasti tarvita."
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:365
msgid ""
@@ -4427,7 +4627,7 @@ msgstr ""
"Useimmissa peleissä tämä ei aiheuta ongelmia.
Ellet "
"ole varma, jätä tämä valitsematta."
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:522
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:604
msgid ""
"Enables scRGB HDR output (if supported by your graphics backend and "
"monitor). Fullscreen might be required.
This gives post process "
@@ -4436,6 +4636,14 @@ msgid ""
"
Note that games still render in SDR internally."
"
If unsure, leave this unchecked."
msgstr ""
+"Ottaa scRGB HDR -ulostulomuodon käyttöön (jos grafiikkajärjestelmäsi ja "
+"näyttösi tukevat sitä). Asetus voi vaatia koko näytön tilaa.
Asetus "
+"tarjoaa jälkikäsittelyvarjostimille lisää tarkkuutta, mahdollistaa AutoHDR-"
+"varjostinten käytön ja mahdollistaa myös PAL- ja NTSC-J-väriavaruuksia "
+"täydellisen näyttämisen.
Huomaathan, että tästä huolimatta pelit "
+"käyttävät sisäisesti hahmonnukseen SDR-väriavaruutta."
+"
Ellet ole varma, jätä tämä valitsematta."
+"dolphin_emphasis>"
#: Source/Core/DolphinQt/Settings/AudioPane.cpp:151
msgid "Enables stretching of the audio to match emulation speed."
@@ -4455,7 +4663,6 @@ msgstr ""
"dolphin_emphasis>"
#: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:100
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:68
msgid ""
"Enables the Memory Management Unit, needed for some games. (ON = Compatible, "
"OFF = Fast)"
@@ -4463,13 +4670,24 @@ msgstr ""
"Ottaa MMU:n käyttöön. Jotkin pelit vaativat sitä. (PÄÄLLÄ = Yhteensopiva, "
"POIS = Nopea)"
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:193
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:70
+msgid ""
+"Enables the Memory Management Unit, needed for some games. (ON = Compatible, "
+"OFF = Fast)
If unsure, leave this unchecked."
+"dolphin_emphasis>"
+msgstr ""
+
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190
msgid ""
"Enables the WiiLink service for WiiConnect24 channels.\n"
"WiiLink is an alternate provider for the discontinued WiiConnect24 Channels "
"such as the Forecast and Nintendo Channels\n"
"Read the Terms of Service at: https://www.wiilink24.com/tos"
msgstr ""
+"Asetus ottaa WiiLink-palvelun WiiConnect24-kanavien käyttöön.\n"
+"WiiLink on suljettujen WiiConnect24-palveluiden korvaaja, jota voi käyttää "
+"esimerkiksi Forecast- ja Nintendo-kanavien yhteydessä\n"
+"Voit lukea palveluehdot osoitteesta https://www.wiilink24.com/tos"
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:298
msgid ""
@@ -4497,7 +4715,7 @@ msgstr ""
msgid "Encoding"
msgstr "Merkistö"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:615
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:616
msgid ""
"Encountered the following errors while opening save files:\n"
"%1\n"
@@ -4514,12 +4732,12 @@ msgid "Enet Didn't Initialize"
msgstr "Enetin alustus epäonnistui"
#: Source/Core/DiscIO/Enums.cpp:80
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:85
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:169
msgid "English"
msgstr "Englanti"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:59
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:61
#: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:61
msgid "Enhancements"
msgstr "Parannukset"
@@ -4550,84 +4768,84 @@ msgstr "Anna salasana"
msgid "Enter the DNS server to use:"
msgstr "Syötä käytettävä DNS-palvelin:"
-#: Source/Core/DolphinQt/MenuBar.cpp:1300
+#: Source/Core/DolphinQt/MenuBar.cpp:1286
msgid "Enter the RSO module address:"
msgstr "Syötä RSO-moduulin osoite:"
#: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:194
#: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:250
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:261
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:262
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386
#: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:265
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:343
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:349
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:346
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:352
#: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:46
-#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:521
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:256
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:295
-#: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:232
-#: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:259
-#: Source/Core/DolphinQt/ConvertDialog.cpp:424
-#: Source/Core/DolphinQt/ConvertDialog.cpp:471
-#: Source/Core/DolphinQt/ConvertDialog.cpp:525
+#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:539
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:255
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:296
+#: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:229
+#: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:256
+#: Source/Core/DolphinQt/ConvertDialog.cpp:426
+#: Source/Core/DolphinQt/ConvertDialog.cpp:473
+#: Source/Core/DolphinQt/ConvertDialog.cpp:528
#: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:255
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:638
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:644
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:653
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:665
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:684
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:690
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:705
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:713
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:737
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:744
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:637
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:643
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:652
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:664
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:683
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:689
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:704
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:712
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:736
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:743
#: Source/Core/DolphinQt/Debugger/RegisterColumn.cpp:86
#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:282
#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:431
-#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:241
-#: Source/Core/DolphinQt/GBAWidget.cpp:576
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:346
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:376
-#: Source/Core/DolphinQt/Main.cpp:209 Source/Core/DolphinQt/Main.cpp:225
-#: Source/Core/DolphinQt/Main.cpp:232 Source/Core/DolphinQt/MainWindow.cpp:295
-#: Source/Core/DolphinQt/MainWindow.cpp:303
-#: Source/Core/DolphinQt/MainWindow.cpp:1108
-#: Source/Core/DolphinQt/MainWindow.cpp:1494
-#: Source/Core/DolphinQt/MainWindow.cpp:1501
-#: Source/Core/DolphinQt/MainWindow.cpp:1561
-#: Source/Core/DolphinQt/MainWindow.cpp:1568
-#: Source/Core/DolphinQt/MainWindow.cpp:1670
-#: Source/Core/DolphinQt/MenuBar.cpp:1204
-#: Source/Core/DolphinQt/MenuBar.cpp:1284
+#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:237
+#: Source/Core/DolphinQt/GBAWidget.cpp:578
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:347
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:377
+#: Source/Core/DolphinQt/Main.cpp:211 Source/Core/DolphinQt/Main.cpp:227
+#: Source/Core/DolphinQt/Main.cpp:234 Source/Core/DolphinQt/MainWindow.cpp:297
+#: Source/Core/DolphinQt/MainWindow.cpp:305
+#: Source/Core/DolphinQt/MainWindow.cpp:1110
+#: Source/Core/DolphinQt/MainWindow.cpp:1507
+#: Source/Core/DolphinQt/MainWindow.cpp:1514
+#: Source/Core/DolphinQt/MainWindow.cpp:1574
+#: Source/Core/DolphinQt/MainWindow.cpp:1581
+#: Source/Core/DolphinQt/MainWindow.cpp:1690
+#: Source/Core/DolphinQt/MenuBar.cpp:1190
+#: Source/Core/DolphinQt/MenuBar.cpp:1270
+#: Source/Core/DolphinQt/MenuBar.cpp:1293
#: Source/Core/DolphinQt/MenuBar.cpp:1307
-#: Source/Core/DolphinQt/MenuBar.cpp:1321
-#: Source/Core/DolphinQt/MenuBar.cpp:1352
-#: Source/Core/DolphinQt/MenuBar.cpp:1376
-#: Source/Core/DolphinQt/MenuBar.cpp:1597
-#: Source/Core/DolphinQt/MenuBar.cpp:1608
-#: Source/Core/DolphinQt/MenuBar.cpp:1620
-#: Source/Core/DolphinQt/MenuBar.cpp:1642
-#: Source/Core/DolphinQt/MenuBar.cpp:1668
-#: Source/Core/DolphinQt/MenuBar.cpp:1722
-#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:315
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:477
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:738
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:980
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1098
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1108
-#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:334
-#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:340
-#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:347
+#: Source/Core/DolphinQt/MenuBar.cpp:1339
+#: Source/Core/DolphinQt/MenuBar.cpp:1363
+#: Source/Core/DolphinQt/MenuBar.cpp:1584
+#: Source/Core/DolphinQt/MenuBar.cpp:1595
+#: Source/Core/DolphinQt/MenuBar.cpp:1607
+#: Source/Core/DolphinQt/MenuBar.cpp:1629
+#: Source/Core/DolphinQt/MenuBar.cpp:1655
+#: Source/Core/DolphinQt/MenuBar.cpp:1709
+#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:316
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:479
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:740
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:982
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1100
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1110
+#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:332
+#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:338
+#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:345
#: Source/Core/DolphinQt/RenderWidget.cpp:123
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:203
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:224
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:423
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:439
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:460
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:481
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:525
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:562
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:585
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:204
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:225
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:433
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:449
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:470
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:491
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:535
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:572
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:595
#: Source/Core/DolphinQt/Translation.cpp:322
msgid "Error"
msgstr "Virhe"
@@ -4636,13 +4854,13 @@ msgstr "Virhe"
msgid "Error Opening Adapter: %1"
msgstr "Virhe sovittimen avauksessa: %1"
-#: Source/Core/Core/NetPlayServer.cpp:1493
+#: Source/Core/Core/NetPlayServer.cpp:1497
msgid "Error collecting save data!"
msgstr "Virhe tallennustiedoston keräämisessä!"
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:260
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:526
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:533
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:262
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:613
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:620
msgid "Error converting value"
msgstr "Virhe arvon muuntamisessa"
@@ -4655,15 +4873,15 @@ msgstr ""
msgid "Error obtaining session list: %1"
msgstr "Virhe istuntolistan hakemisessa: %1"
-#: Source/Core/DolphinQt/MainWindow.cpp:296
+#: Source/Core/DolphinQt/MainWindow.cpp:298
msgid "Error occurred while loading some texture packs"
msgstr "Virheitä tapahtui joidenkin tekstuuripakettien latauksessa"
-#: Source/Core/Core/NetPlayClient.cpp:1847
+#: Source/Core/Core/NetPlayClient.cpp:1851
msgid "Error processing codes."
msgstr "Virhe koodien käsittelyssä."
-#: Source/Core/Core/NetPlayClient.cpp:1819
+#: Source/Core/Core/NetPlayClient.cpp:1823
msgid "Error processing data."
msgstr "Virhe datan käsittelyssä."
@@ -4671,11 +4889,11 @@ msgstr "Virhe datan käsittelyssä."
msgid "Error reading file: {0}"
msgstr "Virhe tiedoston lukemisessa: {0}"
-#: Source/Core/Core/NetPlayServer.cpp:1529
+#: Source/Core/Core/NetPlayServer.cpp:1533
msgid "Error synchronizing cheat codes!"
msgstr "Virhe huijauskoodien synkronoinnissa!"
-#: Source/Core/Core/NetPlayServer.cpp:1515
+#: Source/Core/Core/NetPlayServer.cpp:1519
msgid "Error synchronizing save data!"
msgstr "Virhe tallennustiedoston synkronoinnissa!"
@@ -4752,7 +4970,7 @@ msgstr "Virheitä löytyi {0} käyttämättömästä lohkosta osiossa {1}."
msgid "Euphoria"
msgstr "Euforia"
-#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:282
+#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:274
#: Source/Core/UICommon/NetPlayIndex.cpp:249
msgid "Europe"
msgstr "Eurooppa"
@@ -4798,11 +5016,11 @@ msgstr ""
msgid "Excluded: %1"
msgstr "Poissuljettu: %1"
-#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:73
+#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:72
msgid "Excluded: 0"
msgstr "Poissuljettu: 0"
-#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:107
+#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108
msgid "Exclusive Ubershaders"
msgstr "Poissulkevat Uber-varjostimet"
@@ -4850,14 +5068,14 @@ msgstr "Odotettiin muuttujanimeä"
msgid "Experimental"
msgstr "Kokeellinen"
-#: Source/Core/DolphinQt/MenuBar.cpp:294
+#: Source/Core/DolphinQt/MenuBar.cpp:286
msgid "Export All Wii Saves"
msgstr "Vie kaikki Wii-tallennustiedostot"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:422
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:447
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:492
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:499
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:423
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:448
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:493
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:500
msgid "Export Failed"
msgstr "Vieminen epäonnistui"
@@ -4865,42 +5083,42 @@ msgstr "Vieminen epäonnistui"
msgid "Export Recording"
msgstr "Vie nauhoitus"
-#: Source/Core/DolphinQt/MenuBar.cpp:753
+#: Source/Core/DolphinQt/MenuBar.cpp:745
msgid "Export Recording..."
msgstr "Vie nauhoitus..."
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:437
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:438
msgid "Export Save File"
msgstr "Vie tallennustiedosto"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:454
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:455
msgid "Export Save Files"
msgstr "Vie tallennustiedostot"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:470
+#: Source/Core/DolphinQt/GameList/GameList.cpp:473
msgid "Export Wii Save"
msgstr "Vie Wii-tallennustiedosto"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:388
+#: Source/Core/DolphinQt/GameList/GameList.cpp:389
msgid "Export Wii Saves"
msgstr "Vie Wii-tallennustiedostot"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:117
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:118
msgid "Export as .&gcs..."
msgstr "Vie .&gcs-muodossa..."
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:118
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:119
msgid "Export as .&sav..."
msgstr "Vie .&sav-muodossa..."
-#: Source/Core/DolphinQt/MenuBar.cpp:1133
+#: Source/Core/DolphinQt/MenuBar.cpp:1115
#, c-format
msgctxt ""
msgid "Exported %n save(s)"
msgstr "Viety %n tallennustiedosto(a)"
#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:268
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:432
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:434
#: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:47
msgid "Extension"
msgstr "Lisälaite"
@@ -4913,7 +5131,7 @@ msgstr "Lisälaitteen liikesyöte"
msgid "Extension Motion Simulation"
msgstr "Lisälaitteen liikesimulaatio"
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:520
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:522
msgid "External"
msgstr "Ulkoinen"
@@ -4921,35 +5139,35 @@ msgstr "Ulkoinen"
msgid "External Frame Buffer (XFB)"
msgstr "Ulkoinen kehyspuskuri (XFB)"
-#: Source/Core/DolphinQt/MenuBar.cpp:271
+#: Source/Core/DolphinQt/MenuBar.cpp:263
msgid "Extract Certificates from NAND"
msgstr "Vie varmenteet NAND-muistista"
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:268
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:269
msgid "Extract Entire Disc..."
msgstr "Vie koko levyn sisältö..."
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:292
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:293
msgid "Extract Entire Partition..."
msgstr "Vie kokonainen osio..."
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:299
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:300
msgid "Extract File..."
msgstr "Vie tiedosto..."
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:241
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:242
msgid "Extract Files..."
msgstr "Vie tiedostot..."
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:251
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:252
msgid "Extract System Data..."
msgstr "Vie järjestelmätiedot..."
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:355
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:356
msgid "Extracting All Files..."
msgstr "Viedään kaikkia tiedostoja..."
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:356
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357
msgid "Extracting Directory..."
msgstr "Puretaan hakemistoa..."
@@ -4959,7 +5177,7 @@ msgid "FD"
msgstr "FD"
#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:37
-#: Source/Core/DolphinQt/MenuBar.cpp:228
+#: Source/Core/DolphinQt/MenuBar.cpp:220
msgid "FIFO Player"
msgstr "FIFO-toistaja"
@@ -4967,7 +5185,7 @@ msgstr "FIFO-toistaja"
msgid "Failed loading XML."
msgstr "XML:n lataus epäonnistui."
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:347
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:348
msgid ""
"Failed opening memory card:\n"
"%1"
@@ -4975,11 +5193,11 @@ msgstr ""
"Muistikortin avaus epäonnistui:\n"
"%1"
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:454
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:456
msgid "Failed to add this session to the NetPlay index: %1"
msgstr "Tämän istunnon lisääminen nettipeli-indeksiin epäonnistui: %1"
-#: Source/Core/DolphinQt/MenuBar.cpp:1669
+#: Source/Core/DolphinQt/MenuBar.cpp:1656
msgid "Failed to append to signature file '%1'"
msgstr "Allekirjoitustiedoston '%1' lisääminen epäonnistui"
@@ -4987,19 +5205,19 @@ msgstr "Allekirjoitustiedoston '%1' lisääminen epäonnistui"
msgid "Failed to claim interface for BT passthrough: {0}"
msgstr "Rajapinnan valtaaminen BT-läpipäästöön epäonnistui: {0}"
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:574
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:676
msgid "Failed to clear Skylander!"
msgstr "Skylanderin nollaaminen epäonnistui!"
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:575
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:677
msgid "Failed to clear the Skylander from slot(%1)!"
-msgstr ""
+msgstr "Skylanderin poisto paikasta(%1) epäonnistui!"
#: Source/Core/DiscIO/VolumeVerifier.cpp:108
msgid "Failed to connect to Redump.org"
msgstr "Redump.orgiin yhdistäminen epäonnistui"
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:981
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:983
msgid "Failed to connect to server: %1"
msgstr "Palvelinyhteys epäonnistui: %1"
@@ -5020,20 +5238,23 @@ msgstr "D3D12:n globaalien resurssien luonti epäonnistui"
msgid "Failed to create DXGI factory"
msgstr "DXGI-tehtaan luonti epäonnistui"
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:289
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:291
msgid "Failed to create Infinity file"
msgstr "Infinity-tiedoston luonti epäonnistui"
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:678
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:798
msgid "Failed to create Skylander file!"
msgstr "Skylander-tiedoston luonti epäonnistui!"
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:679
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:799
msgid ""
"Failed to create Skylander file:\n"
"%1\n"
"(Skylander may already be on the portal)"
msgstr ""
+"Skylander-tiedoston luominen epäonnistui:\n"
+"%1\n"
+"(Skylander voi olla jo portaalissa)"
#: Source/Core/Core/NetPlayClient.cpp:1292
msgid ""
@@ -5047,7 +5268,7 @@ msgid "Failed to delete NetPlay memory card. Verify your write permissions."
msgstr ""
"Nettipelin muistikortin poisto epäonnistui. Tarkista kirjoitusoikeudet."
-#: Source/Core/DolphinQt/GameList/GameList.cpp:841
+#: Source/Core/DolphinQt/GameList/GameList.cpp:854
msgid "Failed to delete the selected file."
msgstr "Valitun tiedoston poisto epäonnistui."
@@ -5055,37 +5276,37 @@ msgstr "Valitun tiedoston poisto epäonnistui."
msgid "Failed to detach kernel driver for BT passthrough: {0}"
msgstr "Bluetooth-läpipääsyn ydinohjaimen irrottaminen epäonnistui: {0}"
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:343
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:346
msgid "Failed to download codes."
msgstr "Koodien lataaminen epäonnistui."
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:738
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:737
msgid "Failed to dump %1: Can't open file"
msgstr "Kohteen %1 vedostaminen epäonnistui: Tiedoston avaaminen epäonnistui"
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:745
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:744
msgid "Failed to dump %1: Failed to write to file"
msgstr ""
"Kohteen %1 vedostaminen epäonnistui: Tiedoston kirjoittaminen epäonnistui"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:488
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:489
msgctxt ""
msgid "Failed to export %n out of %1 save file(s)."
msgstr "Tallennustiedostoista %n:n %1:sta vienti epäonnistui."
-#: Source/Core/DolphinQt/GameList/GameList.cpp:576
+#: Source/Core/DolphinQt/GameList/GameList.cpp:584
msgid "Failed to export the following save files:"
msgstr "Seuraavien tallennustiedostojen vienti epäonnistui:"
-#: Source/Core/DolphinQt/MenuBar.cpp:1204
+#: Source/Core/DolphinQt/MenuBar.cpp:1190
msgid "Failed to extract certificates from NAND"
msgstr "Varmenteiden vienti NAND-muistista epäonnistui"
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386
msgid "Failed to extract file."
msgstr "Tiedoston vieminen epäonnistui."
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:261
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:262
msgid "Failed to extract system data."
msgstr "Järjestelmädatan vienti epäonnistui."
@@ -5103,18 +5324,18 @@ msgstr ""
msgid "Failed to find one or more D3D symbols"
msgstr "Yhden tai useamman D3D-symbolin haku epäonnistui"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:565
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:566
msgid "Failed to import \"%1\"."
msgstr "Kohteen \"%1\" tuonti epäonnistui."
-#: Source/Core/DolphinQt/MenuBar.cpp:1109
+#: Source/Core/DolphinQt/MenuBar.cpp:1091
msgid ""
"Failed to import save file. Please launch the game once, then try again."
msgstr ""
"Tallennustiedoston tuonti epäonnistui. Käynnistä peli kerran ja yritä sitten "
"uudelleen."
-#: Source/Core/DolphinQt/MenuBar.cpp:1103
+#: Source/Core/DolphinQt/MenuBar.cpp:1085
msgid ""
"Failed to import save file. The given file appears to be corrupted or is not "
"a valid Wii save."
@@ -5122,7 +5343,7 @@ msgstr ""
"Tallennustiedoston tuonti epäonnistui. Annettu tiedosto on vioittunut tai ei "
"ole kelvollinen Wii-tallennustiedosto."
-#: Source/Core/DolphinQt/MenuBar.cpp:1116
+#: Source/Core/DolphinQt/MenuBar.cpp:1098
msgid ""
"Failed to import save file. Your NAND may be corrupt, or something is "
"preventing access to files within it. Try repairing your NAND (Tools -> "
@@ -5133,7 +5354,7 @@ msgstr ""
"(Työkalut -> Hallitse NAND-muistia -> Tarkista NAND...), ja yritä "
"tallennustiedoston tuontia sitten uudelleen."
-#: Source/Core/DolphinQt/MainWindow.cpp:1108
+#: Source/Core/DolphinQt/MainWindow.cpp:1110
msgid "Failed to init core"
msgstr "Ytimen alustus epäonnistui"
@@ -5151,24 +5372,24 @@ msgstr ""
msgid "Failed to initialize renderer classes"
msgstr "Hahmonninluokkien alustus epäonnistui"
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:204
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:205
msgid "Failed to install pack: %1"
msgstr "Paketin asennus epäonnistui: %1"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:619
-#: Source/Core/DolphinQt/MenuBar.cpp:1074
+#: Source/Core/DolphinQt/GameList/GameList.cpp:628
+#: Source/Core/DolphinQt/MenuBar.cpp:1056
msgid "Failed to install this title to the NAND."
msgstr "Tämän julkaisun asennus NAND-muistiin epäonnistui."
-#: Source/Core/DolphinQt/MainWindow.cpp:1594
+#: Source/Core/DolphinQt/MainWindow.cpp:1607
msgid ""
"Failed to listen on port %1. Is another instance of the NetPlay server "
"running?"
msgstr ""
"Portissa %1 kuuntelu epäonnistui. Onko toinen nettipeli-istunto käynnissä?"
-#: Source/Core/DolphinQt/MenuBar.cpp:1321
-#: Source/Core/DolphinQt/MenuBar.cpp:1376
+#: Source/Core/DolphinQt/MenuBar.cpp:1307
+#: Source/Core/DolphinQt/MenuBar.cpp:1363
msgid "Failed to load RSO module at %1"
msgstr "RSO-moduulin lataaminen epäonnistui kohdassa %1"
@@ -5180,15 +5401,15 @@ msgstr "d3d11.dll:n lataus epäonnistui"
msgid "Failed to load dxgi.dll"
msgstr "dxgi.dll:n lataus epäonnistui"
-#: Source/Core/DolphinQt/MenuBar.cpp:1608
+#: Source/Core/DolphinQt/MenuBar.cpp:1595
msgid "Failed to load map file '%1'"
msgstr "Karttatiedoston '%1' lataus epäonnistui"
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:720
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:842
msgid "Failed to load the Skylander file!"
msgstr "Skylander-tiedoston lataus epäonnistui!"
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:721
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:843
msgid "Failed to load the Skylander file(%1)!\n"
msgstr "Skylander-tiedoston(%1) lataus epäonnistui!\n"
@@ -5204,8 +5425,12 @@ msgstr ""
"Kohteen {0} lataus epäonnistui. Jos käytät Windows 7:ää, yritä asentaa "
"KB4019990-päivityspaketti."
-#: Source/Core/DolphinQt/GBAWidget.cpp:576
-#: Source/Core/DolphinQt/MainWindow.cpp:1670
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:663
+msgid "Failed to modify Skylander!"
+msgstr ""
+
+#: Source/Core/DolphinQt/GBAWidget.cpp:578
+#: Source/Core/DolphinQt/MainWindow.cpp:1690
#: Source/Core/DolphinQt/RenderWidget.cpp:123
msgid "Failed to open '%1'"
msgstr "Kohteen '%1' avaus epäonnistui"
@@ -5234,19 +5459,19 @@ msgstr ""
"Tiedoston avaus ulkoisessa muokkaimessa epäonnistui.\n"
"Varmista, että INI-tiedostojen avaamiseen on valittu sovellus."
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:861
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:863
msgid "Failed to open file."
msgstr "Tiedoston avaaminen epäonnistui."
-#: Source/Core/DolphinQt/MainWindow.cpp:1593
+#: Source/Core/DolphinQt/MainWindow.cpp:1606
msgid "Failed to open server"
msgstr "Palvelimen avaaminen epäonnistui"
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:164
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:166
msgid "Failed to open the Infinity file!"
msgstr "Infinity-tiedoston avaaminen epäonnistui!"
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:165
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:167
msgid ""
"Failed to open the Infinity file(%1)!\n"
"File may already be in use on the base."
@@ -5254,11 +5479,11 @@ msgstr ""
"Infinity-tiedoston (%1) avaaminen epäonnistui!\n"
"Tiedosto saattaa olla jo käytössä alustalla."
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:696
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:818
msgid "Failed to open the Skylander file!"
msgstr "Skylander-tiedoston avaaminen epäonnistui!"
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:697
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:819
msgid ""
"Failed to open the Skylander file(%1)!\n"
"File may already be in use on the portal."
@@ -5266,12 +5491,12 @@ msgstr ""
"Skylander-tiedoston(%1) avaaminen epäonnistui!\n"
"Tiedosto voi olla jo käytössä portaalissa."
-#: Source/Core/DolphinQt/ConvertDialog.cpp:472
+#: Source/Core/DolphinQt/ConvertDialog.cpp:474
msgid "Failed to open the input file \"%1\"."
msgstr "Syötetiedoston \"%1\" avaaminen epäonnistui."
-#: Source/Core/DiscIO/CompressedBlob.cpp:282 Source/Core/DiscIO/FileBlob.cpp:53
-#: Source/Core/DiscIO/WIABlob.cpp:2037
+#: Source/Core/DiscIO/CompressedBlob.cpp:287 Source/Core/DiscIO/FileBlob.cpp:58
+#: Source/Core/DiscIO/WIABlob.cpp:2043
msgid ""
"Failed to open the output file \"{0}\".\n"
"Check that you have permissions to write the target folder and that the "
@@ -5294,25 +5519,25 @@ msgstr "Annetun arvon jäsentäminen annettuun kohdetietotyyppiin epäonnistui."
msgid "Failed to read DFF file."
msgstr "DFF-tiedoston luku epäonnistui."
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:863
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:865
msgid "Failed to read from file."
msgstr "Tiedostosta lukeminen epäonnistui."
-#: Source/Core/DiscIO/CompressedBlob.cpp:373 Source/Core/DiscIO/FileBlob.cpp:93
-#: Source/Core/DiscIO/WIABlob.cpp:2052
+#: Source/Core/DiscIO/CompressedBlob.cpp:378 Source/Core/DiscIO/FileBlob.cpp:98
+#: Source/Core/DiscIO/WIABlob.cpp:2058
msgid "Failed to read from the input file \"{0}\"."
msgstr "Syötetiedostosta \"{0}\" lukeminen epäonnistui."
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:423
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:641
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:424
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:642
msgid "Failed to read selected savefile(s) from memory card."
msgstr "Tallennustiedosto(je)n lukeminen muistikortilta epäonnistui."
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:173
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:175
msgid "Failed to read the Infinity file!"
msgstr "Infinity-tiedoston lukeminen epäonnistui!"
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:174
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:176
msgid ""
"Failed to read the Infinity file(%1)!\n"
"File was too small."
@@ -5320,11 +5545,11 @@ msgstr ""
"Infinity-tiedoston (%1) lukeminen epäonnistui!\n"
"Tiedosto on liian pieni."
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:706
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:828
msgid "Failed to read the Skylander file!"
msgstr "Skylander-tiedoston lukeminen epäonnistui!"
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:707
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:829
msgid ""
"Failed to read the Skylander file(%1)!\n"
"File was too small."
@@ -5336,11 +5561,11 @@ msgstr ""
msgid "Failed to read {0}"
msgstr "Kohteen {0} lukeminen epäonnistui"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:668
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:669
msgid "Failed to remove file."
msgstr "Tiedoston poistaminen epäonnistui."
-#: Source/Core/DolphinQt/ConvertDialog.cpp:453
+#: Source/Core/DolphinQt/ConvertDialog.cpp:455
msgid ""
"Failed to remove junk data from file \"%1\".\n"
"\n"
@@ -5350,7 +5575,7 @@ msgstr ""
"\n"
"Haluatko muuntaa sen poistamatta roskadataa?"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:647
+#: Source/Core/DolphinQt/GameList/GameList.cpp:658
msgid "Failed to remove this title from the NAND."
msgstr "Tämän julkaisun poistaminen NAND-muistista epäonnistui."
@@ -5370,27 +5595,34 @@ msgstr ""
"Nettipelin uudelleenohjauskansion nollaaminen epäonnistui. Tarkista "
"kirjoitusoikeudet."
-#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:241
+#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:237
msgid "Failed to save FIFO log."
msgstr "FIFO-lokin tallennus epäonnistui."
-#: Source/Core/DolphinQt/MenuBar.cpp:1598
+#: Source/Core/DolphinQt/MenuBar.cpp:1585
msgid "Failed to save code map to path '%1'"
msgstr "Koodikartan tallentaminen polkuun '%1' epäonnistui"
-#: Source/Core/DolphinQt/MenuBar.cpp:1642
+#: Source/Core/DolphinQt/MenuBar.cpp:1629
msgid "Failed to save signature file '%1'"
msgstr "Allekirjoitustiedoston tallentaminen tiedostoon '%1' epäonnistui"
-#: Source/Core/DolphinQt/MenuBar.cpp:1621
+#: Source/Core/DolphinQt/MenuBar.cpp:1608
msgid "Failed to save symbol map to path '%1'"
msgstr "Symbolikartan tallentaminen polkuun '%1' epäonnistui"
-#: Source/Core/DolphinQt/MenuBar.cpp:1723
+#: Source/Core/DolphinQt/MenuBar.cpp:1710
msgid "Failed to save to signature file '%1'"
msgstr "Allekirjoitustiedoston '%1' tallentaminen epäonnistui"
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:225
+#: Source/Core/Core/Core.cpp:548
+msgid ""
+"Failed to sync SD card with folder. All changes made this session will be "
+"discarded on next boot if you do not manually re-issue a resync in Config > "
+"Wii > SD Card Settings > Convert File to Folder Now!"
+msgstr ""
+
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:226
msgid "Failed to uninstall pack: %1"
msgstr "Paketin asentaminen epäonnistui: %1"
@@ -5410,9 +5642,9 @@ msgstr "Wiin tallennustiedoston kirjoittaminen epäonnistui."
msgid "Failed to write config file!"
msgstr "Asetustiedoston kirjoittaminen epäonnistui!"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:573
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:676
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:691
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:574
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:677
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:692
msgid "Failed to write modified memory card to disk."
msgstr "Muutetun muistikortin kirjoittaminen levylle epäonnistui."
@@ -5420,12 +5652,12 @@ msgstr "Muutetun muistikortin kirjoittaminen levylle epäonnistui."
msgid "Failed to write redirected save."
msgstr "Uudelleenohjatun tallennustiedoston kirjoittaminen epäonnistui."
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:447
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:448
msgid "Failed to write savefile to disk."
msgstr "Tallennustiedoston kirjoittaminen levylle epäonnistui."
-#: Source/Core/DiscIO/CompressedBlob.cpp:377 Source/Core/DiscIO/FileBlob.cpp:99
-#: Source/Core/DiscIO/WIABlob.cpp:2056
+#: Source/Core/DiscIO/CompressedBlob.cpp:382
+#: Source/Core/DiscIO/FileBlob.cpp:104 Source/Core/DiscIO/WIABlob.cpp:2062
msgid ""
"Failed to write the output file \"{0}\".\n"
"Check that you have enough space available on the target drive."
@@ -5433,22 +5665,22 @@ msgstr ""
"Ulostulotiedoston \"{0}\" kirjoitus epäonnistui.\n"
"Varmista, että kohdelevyllä on tarpeeksi vapaata tilaa."
-#: Source/Core/DolphinQt/GameList/GameList.cpp:617
-#: Source/Core/DolphinQt/GameList/GameList.cpp:645
-#: Source/Core/DolphinQt/GameList/GameList.cpp:840
-#: Source/Core/DolphinQt/MenuBar.cpp:1074
+#: Source/Core/DolphinQt/GameList/GameList.cpp:626
+#: Source/Core/DolphinQt/GameList/GameList.cpp:656
+#: Source/Core/DolphinQt/GameList/GameList.cpp:853
+#: Source/Core/DolphinQt/MenuBar.cpp:1056
msgid "Failure"
msgstr "Virhe"
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:183
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:184
msgid "Fair Input Delay"
msgstr "Reilu syöteviive"
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:199
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:200
msgid "Fallback Region"
msgstr "Oletusalue"
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:210
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:211
msgid "Fallback Region:"
msgstr "Oletusalue:"
@@ -5474,17 +5706,21 @@ msgstr ""
msgid "Field of View"
msgstr "Näkökenttä"
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:233
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:235
msgid "Figure Number:"
msgstr "Hahmon numero:"
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:380
+msgid "Figure type"
+msgstr ""
+
#: Source/Core/DolphinQt/Config/InfoWidget.cpp:46
msgid "File Details"
msgstr "Tiedoston tiedot"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:991
+#: Source/Core/DolphinQt/GameList/GameList.cpp:1005
#: Source/Core/DolphinQt/GameList/GameListModel.cpp:229
-#: Source/Core/DolphinQt/MenuBar.cpp:652
+#: Source/Core/DolphinQt/MenuBar.cpp:644
msgid "File Format"
msgstr "Tiedostomuoto"
@@ -5496,20 +5732,20 @@ msgstr "Tiedostomuoto:"
msgid "File Info"
msgstr "Tiedoston tiedot"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:986
+#: Source/Core/DolphinQt/GameList/GameList.cpp:1000
#: Source/Core/DolphinQt/GameList/GameListModel.cpp:223
-#: Source/Core/DolphinQt/MenuBar.cpp:647
+#: Source/Core/DolphinQt/MenuBar.cpp:639
msgid "File Name"
msgstr "Tiedostonimi"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:987
+#: Source/Core/DolphinQt/GameList/GameList.cpp:1001
#: Source/Core/DolphinQt/GameList/GameListModel.cpp:225
-#: Source/Core/DolphinQt/MenuBar.cpp:648
+#: Source/Core/DolphinQt/MenuBar.cpp:640
msgid "File Path"
msgstr "Tiedostopolku"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:990
-#: Source/Core/DolphinQt/MenuBar.cpp:651
+#: Source/Core/DolphinQt/GameList/GameList.cpp:1004
+#: Source/Core/DolphinQt/MenuBar.cpp:643
msgid "File Size"
msgstr "Tiedostokoko"
@@ -5517,15 +5753,15 @@ msgstr "Tiedostokoko"
msgid "File Size:"
msgstr "Tiedostokoko:"
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:349
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:352
msgid "File contained no codes."
msgstr "Tiedostossa ei ollut koodeja."
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:149
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:150
msgid "Filename"
msgstr "Tiedostonimi"
-#: Source/Core/DiscIO/CompressedBlob.cpp:289
+#: Source/Core/DiscIO/CompressedBlob.cpp:294
msgid "Files opened, ready to compress."
msgstr "Tiedostot avattu, valmiina pakkaamaan."
@@ -5537,11 +5773,11 @@ msgstr ""
"M3U-tiedoston ”{0}\" määräämiä tiedostoja ei löytynyt:\n"
"{1}"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:833
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:835
msgid "Filesize does not match any known GameCube Memory Card size."
msgstr "Tiedostokoko ei vastaa mitään tunnettua GameCube-muistikortin kokoa."
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:836
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:838
msgid "Filesize in header mismatches actual card size."
msgstr "Otsakkeen tiedostokoko ei vastaa kortin varsinaista kokoa."
@@ -5549,7 +5785,7 @@ msgstr "Otsakkeen tiedostokoko ei vastaa kortin varsinaista kokoa."
msgid "Filesystem"
msgstr "Tiedostojärjestelmä"
-#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:102
+#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:103
msgid "Filters"
msgstr "Suodattimet"
@@ -5565,7 +5801,7 @@ msgstr "Etsi &edellinen"
msgid "Finish Calibration"
msgstr "Lopeta kalibrointi"
-#: Source/Core/DolphinQt/WiiUpdate.cpp:109
+#: Source/Core/DolphinQt/WiiUpdate.cpp:110
msgid ""
"Finishing the update...\n"
"This can take a while."
@@ -5575,19 +5811,19 @@ msgstr ""
#. i18n: One of the elements in the Skylanders games. Japanese: 火. For official translations
#. in other languages, check the SuperChargers manual at https://support.activision.com/manuals
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:333
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:349
msgid "Fire"
-msgstr ""
+msgstr "Tuli"
-#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:40
+#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:41
msgid "First Person"
msgstr "Ensimmäinen persoona"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:127
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:128
msgid "Fix Checksums"
msgstr "Korjaa tarkistussummat"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:690
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:691
msgid "Fix Checksums Failed"
msgstr "Tarkistussummien korjaus epäonnistui"
@@ -5597,7 +5833,7 @@ msgstr "Määrätty kohdistus"
#. i18n: These are the kinds of flags that a CPU uses (e.g. carry),
#. not the kinds of flags that represent e.g. countries
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:166
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167
#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:87
msgid "Flags"
msgstr "Liput"
@@ -5606,12 +5842,12 @@ msgstr "Liput"
#. i18n: Floating-point (non-integer) number
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:138
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:198
-#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:152
+#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:153
#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97
msgid "Float"
msgstr "32-bittinen liukuluku"
-#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:565
+#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:566
msgid "Follow &branch"
msgstr "Seuraa &haaraa"
@@ -5637,35 +5873,35 @@ msgstr ""
"Asennusohjeita löytyy tältä sivulta."
-#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:57
+#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:58
msgid "Force 16:9"
msgstr "Pakota 16:9-kuvasuhde"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:117
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:152
msgid "Force 24-Bit Color"
msgstr "Pakote 24-bittinen värisyvyys"
-#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:57
+#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:58
msgid "Force 4:3"
msgstr "Pakota 4:3-kuvasuhde"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:96
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:115
msgid "Force Linear"
msgstr "Pakota lineaarinen"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:103
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:122
msgid "Force Linear and 16x Anisotropic"
msgstr "Pakota lineaarinen ja 16-kertainen anisotrooppinen"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:97
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:116
msgid "Force Linear and 2x Anisotropic"
msgstr "Pakota lineaarinen ja 2-kertainen anisotrooppinen"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:99
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:118
msgid "Force Linear and 4x Anisotropic"
msgstr "Pakota lineaarinen ja 4-kertainen anisotrooppinen"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:101
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:120
msgid "Force Linear and 8x Anisotropic"
msgstr "Pakota lineaarinen ja 8-kertainen anisotrooppinen"
@@ -5673,7 +5909,7 @@ msgstr "Pakota lineaarinen ja 8-kertainen anisotrooppinen"
msgid "Force Listen Port:"
msgstr "Pakota kuunteluportti:"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:95
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:114
msgid "Force Nearest"
msgstr "Pakota lähin"
@@ -5685,7 +5921,7 @@ msgstr "Pakollisesti pois päältä, koska %1 ei tue VS-laajentamista."
msgid "Forced on because %1 doesn't support geometry shaders."
msgstr "Pakollisesti päällä, koska %1 ei tue geometriavarjostimia."
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:474
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:556
msgid ""
"Forces the game to output graphics for any aspect ratio. Use with \"Aspect "
"Ratio\" set to \"Force 16:9\" to force 4:3-only games to run at 16:9."
@@ -5703,7 +5939,7 @@ msgstr ""
"
Ellet ole varma, jätä tämä valitsematta."
"dolphin_emphasis>"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:503
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:585
msgid ""
"Forces the game to render the RGB color channels in 24-bit, thereby "
"increasing quality by reducing color banding.
Has no impact on "
@@ -5716,7 +5952,7 @@ msgstr ""
"
Ellet ole varma, jätä tämä valitsematta."
"dolphin_emphasis>"
-#: Source/Core/DolphinQt/ConvertDialog.cpp:59
+#: Source/Core/DolphinQt/ConvertDialog.cpp:60
msgid "Format:"
msgstr "Muoto:"
@@ -5782,19 +6018,19 @@ msgstr "Nauhoitettavien kehysten määrä:"
msgid "France"
msgstr "Ranska"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:311
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:312
msgid "Free Blocks: %1"
msgstr "Vapaita lohkoja: %1"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:312
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:313
msgid "Free Files: %1"
msgstr "Vapaita tiedostoja: %1"
-#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:42
+#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:43
msgid "Free Look Control Type"
msgstr "Vapaan katselun hallinnan tyyppi"
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:468
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:470
msgid "Free Look Controller %1"
msgstr "Vapaan katselun ohjain %1"
@@ -5802,7 +6038,7 @@ msgstr "Vapaan katselun ohjain %1"
msgid "Free Look Settings"
msgstr "Vapaan katselun asetukset"
-#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:54
+#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:55
msgid ""
"Free Look allows for manipulation of the in-game camera. Different camera "
"types are available from the dropdown.
."
-#: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:38
+#: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:39
msgid "Dance Mat"
msgstr "Tapis de danse"
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:137
+#. i18n: One of the elements in the Skylanders games. For official translations
+#. in other languages, check the SuperChargers manual at https://support.activision.com/manuals
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:365
+msgid "Dark"
+msgstr "Ténèbres"
+
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:138
msgid "Data"
msgstr "Données"
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:144
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:145
msgid "Data Partition (%1)"
msgstr "Partition de données (%1)"
@@ -3456,23 +3562,23 @@ msgstr "Transfert de données"
msgid "Data Type"
msgstr "Type de données"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:848
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:850
msgid "Data in area of file that should be unused."
msgstr "Il y a des données dans une zone du fichier qui devrait être vierge."
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:865
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:867
msgid "Data in unrecognized format or corrupted."
msgstr "Données dans un format non reconnu ou corrompues."
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:377
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:378
msgid "Data inconsistency in GCMemcardManager, aborting action."
msgstr "Incohérence de données dans GCMemcardManager, abandon de l'action."
-#: Source/Core/Core/NetPlayClient.cpp:1818
+#: Source/Core/Core/NetPlayClient.cpp:1822
msgid "Data received!"
msgstr "Données reçues !"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:402
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:403
msgid "Datel MaxDrive/Pro files"
msgstr "Fichiers Datel MaxDrive/Pro"
@@ -3486,7 +3592,7 @@ msgid "Debug"
msgstr "Débug"
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:77
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:449
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:451
msgid "Debugging"
msgstr "Débogage"
@@ -3532,8 +3638,9 @@ msgstr "Réduire X"
msgid "Decrease Y"
msgstr "Réduire Y"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:90
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:154
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:109
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:126
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:155
msgid "Default"
msgstr "Par défaut"
@@ -3541,7 +3648,7 @@ msgstr "Par défaut"
msgid "Default Config (Read Only)"
msgstr "Configuration par défaut (lecture seule)"
-#: Source/Core/DolphinQt/Settings/AudioPane.cpp:369
+#: Source/Core/DolphinQt/Settings/AudioPane.cpp:366
msgid "Default Device"
msgstr "Appareil par défaut"
@@ -3580,17 +3687,17 @@ msgstr ""
"
Dans le doute, décochez cette case."
"dolphin_emphasis>"
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:132
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:111
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:133
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:112
#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:102
msgid "Delete"
msgstr "Supprimer"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:481
+#: Source/Core/DolphinQt/GameList/GameList.cpp:488
msgid "Delete File..."
msgstr "Supprimer le fichier..."
-#: Source/Core/DolphinQt/GameList/GameList.cpp:392
+#: Source/Core/DolphinQt/GameList/GameList.cpp:393
msgid "Delete Selected Files..."
msgstr "Supprimer les fichiers sélectionnées..."
@@ -3599,7 +3706,7 @@ msgstr "Supprimer les fichiers sélectionnées..."
msgid "Delete the existing file '{0}'?"
msgstr "Supprimer le fichier '{0}' ?"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:562
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:648
msgid "Depth"
msgstr "Profondeur"
@@ -3607,26 +3714,26 @@ msgstr "Profondeur"
msgid "Depth Percentage:"
msgstr "Pourcentage de la profondeur :"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:177
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:216
msgid "Depth:"
msgstr "Profondeur :"
#: Source/Core/DolphinQt/CheatSearchWidget.cpp:534
#: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:48
#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:233
-#: Source/Core/DolphinQt/GameList/GameList.cpp:984
+#: Source/Core/DolphinQt/GameList/GameList.cpp:998
#: Source/Core/DolphinQt/GameList/GameListModel.cpp:219
-#: Source/Core/DolphinQt/MenuBar.cpp:645
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:91
+#: Source/Core/DolphinQt/MenuBar.cpp:637
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:92
msgid "Description"
msgstr "Description"
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:110
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:111
#: Source/Core/DolphinQt/Config/InfoWidget.cpp:158
msgid "Description:"
msgstr "Description :"
-#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:219
+#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:220
msgid "Description: "
msgstr "Description : "
@@ -3634,11 +3741,11 @@ msgstr "Description : "
msgid "Detached"
msgstr "Détaché"
-#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:243
+#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:262
msgid "Detect"
msgstr "Détecter"
-#: Source/Core/DolphinQt/MenuBar.cpp:1328
+#: Source/Core/DolphinQt/MenuBar.cpp:1314
msgid "Detecting RSO Modules"
msgstr "Détection des modules RSO"
@@ -3646,11 +3753,11 @@ msgstr "Détection des modules RSO"
msgid "Deterministic dual core:"
msgstr "Double cœur déterministe :"
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:193
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:194
msgid "Dev (multiple times a day)"
msgstr "Dev (plusieurs fois par jour)"
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:99
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:100
msgid "Device"
msgstr "Appareil"
@@ -3659,7 +3766,7 @@ msgstr "Appareil"
msgid "Device PID (e.g., 0305)"
msgstr "PID de l'appareil (ex : 0305)"
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:93
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:94
msgid "Device Settings"
msgstr "Paramètres de la console émulée"
@@ -3676,11 +3783,11 @@ msgstr "Appareil"
msgid "Did not recognize %1 as a valid Riivolution XML file."
msgstr "%1 non reconnu comme un fichier XML valide de Riivolution."
-#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:107
+#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:108
msgid "Diff"
msgstr "Diff"
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:191
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:188
msgid "Dims the screen after five minutes of inactivity."
msgstr "Assombrit l'écran après 5 minutes d'inactivité."
@@ -3692,12 +3799,12 @@ msgstr "Connexion directe"
msgid "Direct3D 11"
msgstr "Direct3D 11"
-#: Source/Core/DolphinQt/GBAWidget.cpp:386
+#: Source/Core/DolphinQt/GBAWidget.cpp:387
msgid "Dis&connected"
msgstr "Dé&connecté"
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:402
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:419
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:406
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:423
msgid "Disable"
msgstr "Désactiver"
@@ -3705,7 +3812,7 @@ msgstr "Désactiver"
msgid "Disable Bounding Box"
msgstr "Désactiver Bounding Box"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:119
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:154
msgid "Disable Copy Filter"
msgstr "Désactiver le filtre de copie"
@@ -3717,15 +3824,19 @@ msgstr "Désactiver les copies EFB dans la VRAM"
msgid "Disable Emulation Speed Limit"
msgstr "Désactiver la limite de vitesse"
-#: Source/Core/DolphinQt/MenuBar.cpp:853
+#: Source/Core/DolphinQt/MenuBar.cpp:845
msgid "Disable Fastmem"
msgstr "Désactiver Fastmem"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:115
+#: Source/Core/DolphinQt/MenuBar.cpp:851
+msgid "Disable Fastmem Arena"
+msgstr "Désactiver Fastmem Arena"
+
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:150
msgid "Disable Fog"
msgstr "Désactiver le brouillard"
-#: Source/Core/DolphinQt/MenuBar.cpp:845
+#: Source/Core/DolphinQt/MenuBar.cpp:837
msgid "Disable JIT Cache"
msgstr "Désactiver le cache JIT"
@@ -3754,7 +3865,7 @@ msgstr ""
"la RAM. Empêche tout upscaling.
Dans le doute, "
"décochez cette case."
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:508
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:590
msgid ""
"Disables the blending of adjacent rows when copying the EFB. This is known "
"in some games as \"deflickering\" or \"smoothing\".
Disabling the "
@@ -3769,7 +3880,7 @@ msgstr ""
"
Dans le doute, cochez cette case."
"dolphin_emphasis>"
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:96
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:97
msgid "Disc"
msgstr "Disque"
@@ -3809,25 +3920,25 @@ msgstr "Distance"
msgid "Distance of travel from neutral position."
msgstr "Distance parcourue depuis la position neutre."
-#: Source/Core/DolphinQt/Main.cpp:259
+#: Source/Core/DolphinQt/Main.cpp:264
msgid "Do you authorize Dolphin to report information to Dolphin's developers?"
msgstr "Autorisez-vous Dolphin à envoyer des informations à ses développeurs ?"
-#: Source/Core/DolphinQt/MainWindow.cpp:1692
+#: Source/Core/DolphinQt/MainWindow.cpp:1712
msgid "Do you want to add \"%1\" to the list of Game Paths?"
msgstr "Voulez-vous ajouter \"%1\" à la liste des dossiers de jeux ?"
-#: Source/Core/DolphinQt/MenuBar.cpp:1241
+#: Source/Core/DolphinQt/MenuBar.cpp:1227
msgid "Do you want to clear the list of symbol names?"
msgstr "Voulez-vous effacer la liste des noms de symboles ?"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:658
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:659
#, c-format
msgctxt ""
msgid "Do you want to delete the %n selected save file(s)?"
msgstr "Voulez-vous supprimer %n fichier(s) de sauvegarde sélectionné(s) ?"
-#: Source/Core/DolphinQt/MainWindow.cpp:933
+#: Source/Core/DolphinQt/MainWindow.cpp:935
msgid "Do you want to stop the current emulation?"
msgstr "Voulez-vous arrêter l'émulation en cours ?"
@@ -3839,35 +3950,35 @@ msgstr "Souhaitez-vous essayer de réparer la NAND ?"
msgid "Dolby Pro Logic II Decoder"
msgstr "Décodeur Dolby Pro Logic II"
-#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:219
-#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:230
+#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:215
+#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:226
msgid "Dolphin FIFO Log (*.dff)"
msgstr "Journal FIFO de Dolphin (*.dff)"
-#: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:327
+#: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:326
msgid "Dolphin Game Mod Preset"
msgstr "Préréglage de mod de jeu pour Dolphin"
-#: Source/Core/DolphinQt/MenuBar.cpp:1536
-#: Source/Core/DolphinQt/MenuBar.cpp:1553
-#: Source/Core/DolphinQt/MenuBar.cpp:1572
+#: Source/Core/DolphinQt/MenuBar.cpp:1523
+#: Source/Core/DolphinQt/MenuBar.cpp:1540
+#: Source/Core/DolphinQt/MenuBar.cpp:1559
msgid "Dolphin Map File (*.map)"
msgstr "Fichier de carte pour Dolphin (*.map)"
-#: Source/Core/DolphinQt/MenuBar.cpp:73
+#: Source/Core/DolphinQt/MenuBar.cpp:74
msgid "Dolphin Signature CSV File"
msgstr "Fichier CSV de signature de Dolphin"
-#: Source/Core/DolphinQt/MenuBar.cpp:73
+#: Source/Core/DolphinQt/MenuBar.cpp:74
msgid "Dolphin Signature File"
msgstr "Fichier de signature de Dolphin"
-#: Source/Core/DolphinQt/MainWindow.cpp:1772
-#: Source/Core/DolphinQt/MainWindow.cpp:1843
+#: Source/Core/DolphinQt/MainWindow.cpp:1823
+#: Source/Core/DolphinQt/MainWindow.cpp:1894
msgid "Dolphin TAS Movies (*.dtm)"
msgstr "Films TAS Dolphin (*.dtm)"
-#: Source/Core/DolphinQt/ConvertDialog.cpp:326
+#: Source/Core/DolphinQt/ConvertDialog.cpp:327
msgid ""
"Dolphin can't convert NKit files to non-NKit files. Converting an NKit file "
"in Dolphin will result in another NKit file.\n"
@@ -3886,7 +3997,7 @@ msgstr ""
"\n"
"Souhaitez-vous tout de même continuer ?"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:279
+#: Source/Core/DolphinQt/GameList/GameList.cpp:280
msgid ""
"Dolphin could not find any GameCube/Wii ISOs or WADs.\n"
"Double-click here to set a games directory..."
@@ -3894,7 +4005,7 @@ msgstr ""
"Dolphin n'a trouvé aucun ISO de GameCube / Wii, ni de WADs.\n"
"Double-cliquez ici pour définir un répertoire contenant les jeux..."
-#: Source/Core/DolphinQt/ConvertDialog.cpp:526
+#: Source/Core/DolphinQt/ConvertDialog.cpp:529
msgid "Dolphin failed to complete the requested action."
msgstr "Dolphin n'a pas pu exécuter l'action demandée."
@@ -3906,7 +4017,7 @@ msgstr "Dolphin n'a pas pu exécuter l'action demandée."
msgid "Dolphin is a free and open-source GameCube and Wii emulator."
msgstr "Dolphin est un émulateur de GameCube et Wii, libre et open-source."
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:998
msgid "Dolphin is too old for traversal server"
msgstr "Dolphin est trop ancien pour le serveur traversal"
@@ -3922,7 +4033,7 @@ msgstr ""
msgid "Dolphin is unable to verify unlicensed discs."
msgstr "Dolphin ne peut vérifier les disques non licenciés."
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:217
msgid ""
"Dolphin will use this for titles whose region cannot be determined "
"automatically."
@@ -3939,15 +4050,15 @@ msgstr "Le système de Dolphin pour les cheats est actuellement désactivé."
msgid "Domain"
msgstr "Domaine"
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:193
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:194
msgid "Don't Update"
msgstr "Ne pas mettre à jour"
-#: Source/Core/DolphinQt/NKitWarningDialog.cpp:53
+#: Source/Core/DolphinQt/NKitWarningDialog.cpp:56
msgid "Don't show this again"
msgstr "Ne plus afficher"
-#: Source/Core/DiscIO/CompressedBlob.cpp:369
+#: Source/Core/DiscIO/CompressedBlob.cpp:374
msgid "Done compressing disc image."
msgstr "Compression de l'image disque terminée."
@@ -3960,39 +4071,39 @@ msgstr "Portes bloquées."
#. i18n: A double precision floating point number
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:139
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:199
-#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:154
+#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:155
msgid "Double"
msgstr "Double"
#: Source/Core/Core/FreeLookManager.cpp:89
#: Source/Core/Core/HW/WiimoteEmu/Extension/Guitar.cpp:80
#: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:35
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:43
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:44
#: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:21
#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUAccelerometer.cpp:19
#: Source/Core/InputCommon/ControllerEmu/ControllerEmu.h:24
msgid "Down"
msgstr "Bas"
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:86
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:87
msgid "Download Codes"
msgstr "Télécharger des codes"
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:88
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:89
msgid "Download Codes from the WiiRD Database"
msgstr "Télécharger des codes de WiiRD"
-#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:148
+#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:153
msgid "Download Game Covers from GameTDB.com for Use in Grid Mode"
msgstr ""
"Télécharger les jaquettes des jeux depuis GameTDB.com pour l'affichage en "
"mode Grille"
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:370
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:373
msgid "Download complete"
msgstr "Téléchargement terminé"
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:371
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:374
msgid "Downloaded %1 codes. (added %2)"
msgstr "%1 codes ont été téléchargés. (%2 ajoutés)"
@@ -4015,7 +4126,7 @@ msgstr "Double cœur (Dual Core)"
msgid "Dual View"
msgstr "Affichage double"
-#: Source/Core/Core/HW/EXI/EXI_Device.h:95
+#: Source/Core/Core/HW/EXI/EXI_Device.h:94
msgid "Dummy"
msgstr "Factice"
@@ -4035,7 +4146,7 @@ msgstr "Dumper &FakeVMEM"
msgid "Dump &MRAM"
msgstr "Dumper la &MRAM"
-#: Source/Core/DolphinQt/MenuBar.cpp:814
+#: Source/Core/DolphinQt/MenuBar.cpp:806
msgid "Dump Audio"
msgstr "Enregistrer le son"
@@ -4047,7 +4158,7 @@ msgstr "Copier les textures de base"
msgid "Dump EFB Target"
msgstr "Copier l'EFB cible"
-#: Source/Core/DolphinQt/MenuBar.cpp:808
+#: Source/Core/DolphinQt/MenuBar.cpp:800
msgid "Dump Frames"
msgstr "Enregistrer les images"
@@ -4129,12 +4240,12 @@ msgid "Duration of Turbo Button Release (frames):"
msgstr "Durée de relâchement du bouton Turbo (en images) :"
#: Source/Core/DiscIO/Enums.cpp:95
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174
msgid "Dutch"
msgstr "Néerlandais"
-#: Source/Core/DolphinQt/MenuBar.cpp:215
+#: Source/Core/DolphinQt/MenuBar.cpp:207
msgid "E&xit"
msgstr "&Quitter"
@@ -4154,7 +4265,7 @@ msgstr ""
"distribution de Dolphin, un redémarrage est probablement nécessaire pour que "
"Windows charge le nouveau pilote."
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:185
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:186
msgid ""
"Each player sends their own inputs to the game, with equal buffer size for "
"all players, configured by the host.\n"
@@ -4172,7 +4283,7 @@ msgstr "Premières mises à jour de mémoire"
#. i18n: One of the elements in the Skylanders games. Japanese: 土. For official translations
#. in other languages, check the SuperChargers manual at https://support.activision.com/manuals
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:336
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:352
msgid "Earth"
msgstr "Terre"
@@ -4185,7 +4296,7 @@ msgstr "Asie de l'Est"
msgid "Edit Breakpoint"
msgstr "Modifier le point d'arrêt"
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:426
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:430
msgid "Edit..."
msgstr "Modifier..."
@@ -4219,7 +4330,7 @@ msgstr "Éjecter le disque"
#. i18n: Elements are a trait of Skylanders figures. For official translations of this term,
#. check the Skylanders SuperChargers manual at https://support.activision.com/manuals
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:289
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:300
msgid "Element"
msgstr "Élément"
@@ -4227,11 +4338,11 @@ msgstr "Élément"
msgid "Embedded Frame Buffer (EFB)"
msgstr "Buffer d'image embarqué (Embedded Frame Buffer - EFB)"
-#: Source/Core/Core/State.cpp:541
+#: Source/Core/Core/State.cpp:629
msgid "Empty"
msgstr "Vide"
-#: Source/Core/Core/Core.cpp:246
+#: Source/Core/Core/Core.cpp:247
msgid "Emu Thread already running"
msgstr "Thread d'émulation déjà en cours d'exécution"
@@ -4239,15 +4350,15 @@ msgstr "Thread d'émulation déjà en cours d'exécution"
msgid "Emulate Disc Speed"
msgstr "Émuler la vitesse du disque"
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:60
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:61
msgid "Emulate Infinity Base"
msgstr "Émuler la Infinity Base"
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:146
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:157
msgid "Emulate Skylander Portal"
msgstr "Émuler un portail Skylander"
-#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:110
+#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:111
msgid "Emulate the Wii's Bluetooth adapter"
msgstr "Émuler l'adaptateur Bluetooth de la Wii"
@@ -4259,11 +4370,11 @@ msgstr ""
"Émule la vitesse de lecture du lecteur de disques de la console. Désactiver "
"ceci peut provoquer des instabilités. Activé par défaut."
-#: Source/Core/DolphinQt/MenuBar.cpp:230
+#: Source/Core/DolphinQt/MenuBar.cpp:222
msgid "Emulated USB Devices"
msgstr "Appareils USB émulés"
-#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:141
+#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:142
msgid "Emulated Wii Remote"
msgstr "Wiimote émulée"
@@ -4286,12 +4397,12 @@ msgstr "Vitesse de l'émulation"
msgid "Emulation must be started to record."
msgstr "L'émulation doit être démarrée pour pouvoir enregistrer."
-#: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:29
-#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:33
+#: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:30
+#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:34
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:120
-#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:129
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:402
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:419
+#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:130
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:406
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:423
msgid "Enable"
msgstr "Activer"
@@ -4299,6 +4410,10 @@ msgstr "Activer"
msgid "Enable API Validation Layers"
msgstr "Activer les couches de validation d'API"
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:83
+msgid "Enable Achievement Badges"
+msgstr "Activer les badges de succès"
+
#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:60
msgid "Enable Achievements"
msgstr "Activer les succès"
@@ -4307,15 +4422,19 @@ msgstr "Activer les succès"
msgid "Enable Audio Stretching"
msgstr "Activer l'étirement du son"
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:142
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:143
msgid "Enable Cheats"
msgstr "Activer les Cheats"
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:155
+#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:53
+msgid "Enable Controller Inpu&t"
+msgstr "Activer l'entrée de la manette"
+
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:161
msgid "Enable Custom RTC"
msgstr "Activer l'horloge personnalisée"
-#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:149
+#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:154
msgid "Enable Debugging UI"
msgstr "Activer l'interface de débogage"
@@ -4323,19 +4442,19 @@ msgstr "Activer l'interface de débogage"
msgid "Enable Dual Core"
msgstr "Activer le double cœur"
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:139
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:140
msgid "Enable Dual Core (speedup)"
msgstr "Activer le double cœur (plus rapide)"
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:88
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:94
msgid "Enable Emulated CPU Clock Override"
msgstr "Activer le changement de vitesse du CPU"
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:118
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:124
msgid "Enable Emulated Memory Size Override"
msgstr "Modifier la taille de la mémoire émulée"
-#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:78
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:88
msgid "Enable Encore Achievements"
msgstr "Activer les succès Encore"
@@ -4352,10 +4471,14 @@ msgid "Enable Leaderboards"
msgstr "Activer les tableaux de classements"
#: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:88
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:66
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:68
msgid "Enable MMU"
msgstr "Activer le MMU"
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:78
+msgid "Enable Progress Notifications"
+msgstr "Activer les notifications de progression"
+
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:156
msgid "Enable Progressive Scan"
msgstr "Activer le balayage progressif"
@@ -4369,15 +4492,15 @@ msgid "Enable Rich Presence"
msgstr "Activer la Rich Presence"
#: Source/Core/DolphinQt/Config/Mapping/GCPadWiiUConfigDialog.cpp:39
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:353
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:352
msgid "Enable Rumble"
msgstr "Activer le vibreur"
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:157
msgid "Enable Screen Saver"
msgstr "Activer l'économiseur d'écran"
-#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:113
+#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:114
msgid "Enable Speaker Data"
msgstr "Activer les données du haut-parleur"
@@ -4385,11 +4508,11 @@ msgstr "Activer les données du haut-parleur"
msgid "Enable Unofficial Achievements"
msgstr "Activer les succès non officiels"
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:230
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:231
msgid "Enable Usage Statistics Reporting"
msgstr "Activer l'envoi des statistiques d'utilisation"
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158
msgid "Enable WiiConnect24 via WiiLink"
msgstr "Activer WiiConnect24 via WiiLink"
@@ -4397,10 +4520,20 @@ msgstr "Activer WiiConnect24 via WiiLink"
msgid "Enable Wireframe"
msgstr "Activer le rendu en fil de fer"
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:77
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:82
msgid "Enable Write-Back Cache (slow)"
msgstr "Activer le cache en écriture différée (lent)"
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:85
+msgid ""
+"Enable achievement badges.
Displays icons for the player, game, and "
+"achievements. Simple visual option, but will require a small amount of extra "
+"memory and time to download the images."
+msgstr ""
+"Active les badges de succès.
Affiche des icônes pour le joueur, le "
+"jeu, et les succès. C'est simplement une option visuelle, mais elle "
+"demandera un peu plus de mémoire et de temps pour télécharger les images."
+
#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:64
msgid ""
"Enable competing in RetroAchievements leaderboards.
Displays a brief popup "
+"message whenever the player makes progress on an achievement that tracks an "
+"accumulated value, such as 60 out of 120 stars."
+msgstr ""
+"Active les notifications de progression des succès.
Affiche un rapide "
+"message en popup lorsque le joueur progresse sur un succès qui suit une "
+"valeur qui augmente, telle que 60 étoiles sur 120."
+
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:90
+msgid ""
"Enable unlocking achievements in Encore Mode.
Encore Mode re-enables "
"achievements the player has already unlocked on the site so that the player "
"will be notified if they meet the unlock conditions again, useful for custom "
@@ -4488,7 +4631,7 @@ msgstr ""
"Active le calcul du résultat du drapeau de la virgule flottante, requis pour "
"quelques jeux. (Activé = compatible, Désactivé = rapide)"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:514
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:596
msgid ""
"Enables detection of arbitrary mipmaps, which some games use for special "
"distance-based effects.
May have false positives that result in "
@@ -4508,16 +4651,18 @@ msgstr ""
"avec le décodage des textures par le GPU.
Dans le "
"doute, cochez cette case."
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:79
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:84
msgid ""
-"Enables emulation of the CPU write-back cache.\n"
-"Enabling will have a significant impact on performance.\n"
-"This should be left disabled unless absolutely needed."
+"Enables emulation of the CPU write-back cache. Enabling will have a "
+"significant impact on performance. This should be left disabled unless "
+"absolutely needed.
If unsure, leave this unchecked."
+""
msgstr ""
-"Active l'émulation du cache en écriture différée pour le CPU.\n"
-"Activer ceci va avoir un impact important sur les performances.\n"
-"Vous devriez laisser cette option désactivée sauf si vous en avez absolument "
-"besoin."
+"Active l'émulation du cache en écriture différée pour le CPU. Activer "
+"ceci va avoir un impact important sur les performances. Vous devriez "
+"laisser cette option désactivée sauf si vous en avez absolument besoin."
+"
Dans le doute, décochez cette case."
+"dolphin_emphasis>"
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:365
msgid ""
@@ -4544,7 +4689,7 @@ msgstr ""
"
Dans le doute, décochez cette case."
"dolphin_emphasis>"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:522
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:604
msgid ""
"Enables scRGB HDR output (if supported by your graphics backend and "
"monitor). Fullscreen might be required.
This gives post process "
@@ -4580,7 +4725,6 @@ msgstr ""
"le doute, décochez cette case."
#: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:100
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:68
msgid ""
"Enables the Memory Management Unit, needed for some games. (ON = Compatible, "
"OFF = Fast)"
@@ -4588,7 +4732,18 @@ msgstr ""
"Activer le Memory Management Unit (unité de gestion de la mémoire), requis "
"pour certains jeux. (ON = Compatible, OFF = Vitesse)"
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:193
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:70
+msgid ""
+"Enables the Memory Management Unit, needed for some games. (ON = Compatible, "
+"OFF = Fast)
If unsure, leave this unchecked."
+"dolphin_emphasis>"
+msgstr ""
+"Active l'Unité de Gestion de la Mémoire (MMU, Memory Management Unit), "
+"nécessaire pour quelques jeux. (Activé = Compatible, Désactivé = "
+"Rapide)
Dans le doute, décochez cette case."
+"dolphin_emphasis>"
+
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190
msgid ""
"Enables the WiiLink service for WiiConnect24 channels.\n"
"WiiLink is an alternate provider for the discontinued WiiConnect24 Channels "
@@ -4627,7 +4782,7 @@ msgstr ""
msgid "Encoding"
msgstr "Encodage"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:615
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:616
msgid ""
"Encountered the following errors while opening save files:\n"
"%1\n"
@@ -4645,12 +4800,12 @@ msgid "Enet Didn't Initialize"
msgstr "Enet ne s'est pas initialisé"
#: Source/Core/DiscIO/Enums.cpp:80
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:85
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:169
msgid "English"
msgstr "Anglais"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:59
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:61
#: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:61
msgid "Enhancements"
msgstr "Améliorations"
@@ -4681,84 +4836,84 @@ msgstr "Entrez le mot de passe"
msgid "Enter the DNS server to use:"
msgstr "Entrez le serveur DNS à utiliser :"
-#: Source/Core/DolphinQt/MenuBar.cpp:1300
+#: Source/Core/DolphinQt/MenuBar.cpp:1286
msgid "Enter the RSO module address:"
msgstr "Entrer l'adresse du module RSO :"
#: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:194
#: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:250
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:261
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:262
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386
#: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:265
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:343
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:349
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:346
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:352
#: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:46
-#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:521
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:256
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:295
-#: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:232
-#: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:259
-#: Source/Core/DolphinQt/ConvertDialog.cpp:424
-#: Source/Core/DolphinQt/ConvertDialog.cpp:471
-#: Source/Core/DolphinQt/ConvertDialog.cpp:525
+#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:539
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:255
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:296
+#: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:229
+#: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:256
+#: Source/Core/DolphinQt/ConvertDialog.cpp:426
+#: Source/Core/DolphinQt/ConvertDialog.cpp:473
+#: Source/Core/DolphinQt/ConvertDialog.cpp:528
#: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:255
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:638
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:644
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:653
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:665
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:684
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:690
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:705
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:713
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:737
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:744
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:637
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:643
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:652
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:664
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:683
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:689
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:704
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:712
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:736
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:743
#: Source/Core/DolphinQt/Debugger/RegisterColumn.cpp:86
#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:282
#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:431
-#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:241
-#: Source/Core/DolphinQt/GBAWidget.cpp:576
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:346
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:376
-#: Source/Core/DolphinQt/Main.cpp:209 Source/Core/DolphinQt/Main.cpp:225
-#: Source/Core/DolphinQt/Main.cpp:232 Source/Core/DolphinQt/MainWindow.cpp:295
-#: Source/Core/DolphinQt/MainWindow.cpp:303
-#: Source/Core/DolphinQt/MainWindow.cpp:1108
-#: Source/Core/DolphinQt/MainWindow.cpp:1494
-#: Source/Core/DolphinQt/MainWindow.cpp:1501
-#: Source/Core/DolphinQt/MainWindow.cpp:1561
-#: Source/Core/DolphinQt/MainWindow.cpp:1568
-#: Source/Core/DolphinQt/MainWindow.cpp:1670
-#: Source/Core/DolphinQt/MenuBar.cpp:1204
-#: Source/Core/DolphinQt/MenuBar.cpp:1284
+#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:237
+#: Source/Core/DolphinQt/GBAWidget.cpp:578
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:347
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:377
+#: Source/Core/DolphinQt/Main.cpp:211 Source/Core/DolphinQt/Main.cpp:227
+#: Source/Core/DolphinQt/Main.cpp:234 Source/Core/DolphinQt/MainWindow.cpp:297
+#: Source/Core/DolphinQt/MainWindow.cpp:305
+#: Source/Core/DolphinQt/MainWindow.cpp:1110
+#: Source/Core/DolphinQt/MainWindow.cpp:1507
+#: Source/Core/DolphinQt/MainWindow.cpp:1514
+#: Source/Core/DolphinQt/MainWindow.cpp:1574
+#: Source/Core/DolphinQt/MainWindow.cpp:1581
+#: Source/Core/DolphinQt/MainWindow.cpp:1690
+#: Source/Core/DolphinQt/MenuBar.cpp:1190
+#: Source/Core/DolphinQt/MenuBar.cpp:1270
+#: Source/Core/DolphinQt/MenuBar.cpp:1293
#: Source/Core/DolphinQt/MenuBar.cpp:1307
-#: Source/Core/DolphinQt/MenuBar.cpp:1321
-#: Source/Core/DolphinQt/MenuBar.cpp:1352
-#: Source/Core/DolphinQt/MenuBar.cpp:1376
-#: Source/Core/DolphinQt/MenuBar.cpp:1597
-#: Source/Core/DolphinQt/MenuBar.cpp:1608
-#: Source/Core/DolphinQt/MenuBar.cpp:1620
-#: Source/Core/DolphinQt/MenuBar.cpp:1642
-#: Source/Core/DolphinQt/MenuBar.cpp:1668
-#: Source/Core/DolphinQt/MenuBar.cpp:1722
-#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:315
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:477
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:738
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:980
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1098
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1108
-#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:334
-#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:340
-#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:347
+#: Source/Core/DolphinQt/MenuBar.cpp:1339
+#: Source/Core/DolphinQt/MenuBar.cpp:1363
+#: Source/Core/DolphinQt/MenuBar.cpp:1584
+#: Source/Core/DolphinQt/MenuBar.cpp:1595
+#: Source/Core/DolphinQt/MenuBar.cpp:1607
+#: Source/Core/DolphinQt/MenuBar.cpp:1629
+#: Source/Core/DolphinQt/MenuBar.cpp:1655
+#: Source/Core/DolphinQt/MenuBar.cpp:1709
+#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:316
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:479
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:740
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:982
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1100
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1110
+#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:332
+#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:338
+#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:345
#: Source/Core/DolphinQt/RenderWidget.cpp:123
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:203
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:224
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:423
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:439
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:460
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:481
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:525
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:562
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:585
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:204
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:225
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:433
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:449
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:470
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:491
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:535
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:572
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:595
#: Source/Core/DolphinQt/Translation.cpp:322
msgid "Error"
msgstr "Erreur"
@@ -4767,13 +4922,13 @@ msgstr "Erreur"
msgid "Error Opening Adapter: %1"
msgstr "Erreur lors de l'ouverture de l'adaptateur : %1"
-#: Source/Core/Core/NetPlayServer.cpp:1493
+#: Source/Core/Core/NetPlayServer.cpp:1497
msgid "Error collecting save data!"
msgstr "Erreur lors de la récupération des données de sauvegarde !"
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:260
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:526
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:533
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:262
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:613
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:620
msgid "Error converting value"
msgstr "Erreur lors de la conversion de la valeur"
@@ -4787,16 +4942,16 @@ msgstr ""
msgid "Error obtaining session list: %1"
msgstr "Erreur lors de l'obtention de la liste des sessions : %1"
-#: Source/Core/DolphinQt/MainWindow.cpp:296
+#: Source/Core/DolphinQt/MainWindow.cpp:298
msgid "Error occurred while loading some texture packs"
msgstr ""
"Une erreur est survenue lors de l'ouverture de certains packs de texture"
-#: Source/Core/Core/NetPlayClient.cpp:1847
+#: Source/Core/Core/NetPlayClient.cpp:1851
msgid "Error processing codes."
msgstr "Erreur lors du traitement des codes."
-#: Source/Core/Core/NetPlayClient.cpp:1819
+#: Source/Core/Core/NetPlayClient.cpp:1823
msgid "Error processing data."
msgstr "Erreur lors du traitement des données."
@@ -4804,11 +4959,11 @@ msgstr "Erreur lors du traitement des données."
msgid "Error reading file: {0}"
msgstr "Erreur de lecture du fichier : {0}"
-#: Source/Core/Core/NetPlayServer.cpp:1529
+#: Source/Core/Core/NetPlayServer.cpp:1533
msgid "Error synchronizing cheat codes!"
msgstr "Erreur lors de la synchronisation des cheat codes !"
-#: Source/Core/Core/NetPlayServer.cpp:1515
+#: Source/Core/Core/NetPlayServer.cpp:1519
msgid "Error synchronizing save data!"
msgstr "Erreur lors de la synchronisation des données !"
@@ -4888,7 +5043,7 @@ msgstr ""
msgid "Euphoria"
msgstr "Euphorie"
-#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:282
+#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:274
#: Source/Core/UICommon/NetPlayIndex.cpp:249
msgid "Europe"
msgstr "Europe"
@@ -4935,11 +5090,11 @@ msgstr ""
msgid "Excluded: %1"
msgstr "Exclu : %1"
-#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:73
+#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:72
msgid "Excluded: 0"
msgstr "Exclu : 0"
-#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:107
+#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108
msgid "Exclusive Ubershaders"
msgstr "Ubershaders exclusifs"
@@ -4987,14 +5142,14 @@ msgstr "Nom de variable attendu."
msgid "Experimental"
msgstr "Expérimental"
-#: Source/Core/DolphinQt/MenuBar.cpp:294
+#: Source/Core/DolphinQt/MenuBar.cpp:286
msgid "Export All Wii Saves"
msgstr "Exporter toutes les sauvegardes Wii"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:422
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:447
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:492
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:499
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:423
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:448
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:493
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:500
msgid "Export Failed"
msgstr "L'exportation a échoué"
@@ -5002,42 +5157,42 @@ msgstr "L'exportation a échoué"
msgid "Export Recording"
msgstr "Exporter l'enregistrement..."
-#: Source/Core/DolphinQt/MenuBar.cpp:753
+#: Source/Core/DolphinQt/MenuBar.cpp:745
msgid "Export Recording..."
msgstr "Exporter l'enregistrement..."
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:437
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:438
msgid "Export Save File"
msgstr "Exporter le fichier de sauvegarde"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:454
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:455
msgid "Export Save Files"
msgstr "Exporter les fichiers de sauvegarde"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:470
+#: Source/Core/DolphinQt/GameList/GameList.cpp:473
msgid "Export Wii Save"
msgstr "Exporter la sauvegarde Wii"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:388
+#: Source/Core/DolphinQt/GameList/GameList.cpp:389
msgid "Export Wii Saves"
msgstr "Exporter les sauvegardes Wii"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:117
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:118
msgid "Export as .&gcs..."
msgstr "Exporter comme .&gcs..."
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:118
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:119
msgid "Export as .&sav..."
msgstr "Exporter comme .&sav..."
-#: Source/Core/DolphinQt/MenuBar.cpp:1133
+#: Source/Core/DolphinQt/MenuBar.cpp:1115
#, c-format
msgctxt ""
msgid "Exported %n save(s)"
msgstr "%n sauvegarde(s) exportée(s)"
#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:268
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:432
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:434
#: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:47
msgid "Extension"
msgstr "Extension"
@@ -5050,7 +5205,7 @@ msgstr "Entrée d'extension de mouvement"
msgid "Extension Motion Simulation"
msgstr "Simulation d'extension de mouvement"
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:520
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:522
msgid "External"
msgstr "Externe"
@@ -5058,35 +5213,35 @@ msgstr "Externe"
msgid "External Frame Buffer (XFB)"
msgstr "Buffer externe d'image (External Frame Buffer - XFB)"
-#: Source/Core/DolphinQt/MenuBar.cpp:271
+#: Source/Core/DolphinQt/MenuBar.cpp:263
msgid "Extract Certificates from NAND"
msgstr "Extraire les certificats de la NAND"
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:268
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:269
msgid "Extract Entire Disc..."
msgstr "Extraire l'intégralité du disque..."
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:292
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:293
msgid "Extract Entire Partition..."
msgstr "Extraire l'intégralité de la partition..."
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:299
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:300
msgid "Extract File..."
msgstr "Extraire le fichier..."
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:241
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:242
msgid "Extract Files..."
msgstr "Extraire les fichiers..."
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:251
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:252
msgid "Extract System Data..."
msgstr "Extraire les données du Système..."
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:355
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:356
msgid "Extracting All Files..."
msgstr "Extraction de tous les fichiers..."
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:356
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357
msgid "Extracting Directory..."
msgstr "Extraction du dossier..."
@@ -5096,7 +5251,7 @@ msgid "FD"
msgstr "FD"
#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:37
-#: Source/Core/DolphinQt/MenuBar.cpp:228
+#: Source/Core/DolphinQt/MenuBar.cpp:220
msgid "FIFO Player"
msgstr "Lecteur FIFO"
@@ -5104,7 +5259,7 @@ msgstr "Lecteur FIFO"
msgid "Failed loading XML."
msgstr "Impossible de lire le XML."
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:347
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:348
msgid ""
"Failed opening memory card:\n"
"%1"
@@ -5112,11 +5267,11 @@ msgstr ""
"Impossible d'ouvrir la carte mémoire :\n"
"%1"
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:454
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:456
msgid "Failed to add this session to the NetPlay index: %1"
msgstr "Impossible d'ajouter cette session à l'index NetPlay : %1"
-#: Source/Core/DolphinQt/MenuBar.cpp:1669
+#: Source/Core/DolphinQt/MenuBar.cpp:1656
msgid "Failed to append to signature file '%1'"
msgstr "Impossible d'ajouter cela au fichier de signature '%1'"
@@ -5124,11 +5279,11 @@ msgstr "Impossible d'ajouter cela au fichier de signature '%1'"
msgid "Failed to claim interface for BT passthrough: {0}"
msgstr "Impossible d'obtenir une interface pour l'accès direct Bluetooth : {0}"
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:574
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:676
msgid "Failed to clear Skylander!"
msgstr "Impossible d'effacer Skylander !"
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:575
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:677
msgid "Failed to clear the Skylander from slot(%1)!"
msgstr "Impossible d'effacer Skylander depuis le slot(%1) !"
@@ -5136,7 +5291,7 @@ msgstr "Impossible d'effacer Skylander depuis le slot(%1) !"
msgid "Failed to connect to Redump.org"
msgstr "Impossible de se connecter à Redump.org"
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:981
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:983
msgid "Failed to connect to server: %1"
msgstr "Impossible de se connecter au serveur : %1"
@@ -5157,15 +5312,15 @@ msgstr "Impossible de créer les ressources globales pour D3D12"
msgid "Failed to create DXGI factory"
msgstr "Impossible de créer DXGI factory"
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:289
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:291
msgid "Failed to create Infinity file"
msgstr "Impossible de créer le fichier Infinity"
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:678
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:798
msgid "Failed to create Skylander file!"
msgstr "Impossible de créer le fichier Skylander !"
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:679
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:799
msgid ""
"Failed to create Skylander file:\n"
"%1\n"
@@ -5188,7 +5343,7 @@ msgstr ""
"Impossible de créer la carte mémoire pour NetPlay. Vérifier vos permissions "
"en écriture."
-#: Source/Core/DolphinQt/GameList/GameList.cpp:841
+#: Source/Core/DolphinQt/GameList/GameList.cpp:854
msgid "Failed to delete the selected file."
msgstr "Impossible de supprimer le fichier sélectionné."
@@ -5196,36 +5351,36 @@ msgstr "Impossible de supprimer le fichier sélectionné."
msgid "Failed to detach kernel driver for BT passthrough: {0}"
msgstr "Impossible de détacher le driver du Kernel pour l'adaptateur BT : {0}"
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:343
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:346
msgid "Failed to download codes."
msgstr "Impossible de télécharger les codes."
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:738
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:737
msgid "Failed to dump %1: Can't open file"
msgstr "Impossible de dumper %1 : impossible d'ouvrir le fichier"
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:745
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:744
msgid "Failed to dump %1: Failed to write to file"
msgstr "Impossible de dumper %1 : impossible d'écrire vers le fichier"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:488
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:489
msgctxt ""
msgid "Failed to export %n out of %1 save file(s)."
msgstr "Échec de l'exportation de %n sur %1 fichier(s) de sauvegarde."
-#: Source/Core/DolphinQt/GameList/GameList.cpp:576
+#: Source/Core/DolphinQt/GameList/GameList.cpp:584
msgid "Failed to export the following save files:"
msgstr "Échec de l'exportation des fichiers de sauvegarde suivants :"
-#: Source/Core/DolphinQt/MenuBar.cpp:1204
+#: Source/Core/DolphinQt/MenuBar.cpp:1190
msgid "Failed to extract certificates from NAND"
msgstr "Impossible d'extraire les certificats depuis la NAND"
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386
msgid "Failed to extract file."
msgstr "Impossible d'extraire le fichier."
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:261
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:262
msgid "Failed to extract system data."
msgstr "Impossible d'extraire les données du système."
@@ -5243,18 +5398,18 @@ msgstr ""
msgid "Failed to find one or more D3D symbols"
msgstr "Impossible de trouver un ou plusieurs symboles D3D"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:565
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:566
msgid "Failed to import \"%1\"."
msgstr "Impossible d'importer \"%1\"."
-#: Source/Core/DolphinQt/MenuBar.cpp:1109
+#: Source/Core/DolphinQt/MenuBar.cpp:1091
msgid ""
"Failed to import save file. Please launch the game once, then try again."
msgstr ""
"Impossible d'importer le fichier de sauvegarde. Veuillez démarrer le jeu une "
"fois, puis réessayez."
-#: Source/Core/DolphinQt/MenuBar.cpp:1103
+#: Source/Core/DolphinQt/MenuBar.cpp:1085
msgid ""
"Failed to import save file. The given file appears to be corrupted or is not "
"a valid Wii save."
@@ -5262,7 +5417,7 @@ msgstr ""
"Impossible d'importer le fichier de sauvegarde. Le fichier indiqué semble "
"corrompu ou n'est pas une sauvegarde valide de Wii."
-#: Source/Core/DolphinQt/MenuBar.cpp:1116
+#: Source/Core/DolphinQt/MenuBar.cpp:1098
msgid ""
"Failed to import save file. Your NAND may be corrupt, or something is "
"preventing access to files within it. Try repairing your NAND (Tools -> "
@@ -5273,7 +5428,7 @@ msgstr ""
"Essayez de réparer votre NAND (Outils -> Gestion de NAND -> Vérifier la "
"NAND...), et importez à nouveau la sauvegarde."
-#: Source/Core/DolphinQt/MainWindow.cpp:1108
+#: Source/Core/DolphinQt/MainWindow.cpp:1110
msgid "Failed to init core"
msgstr "Impossible d'initialiser la base"
@@ -5291,16 +5446,16 @@ msgstr ""
msgid "Failed to initialize renderer classes"
msgstr "Impossible d'initialiser les classes du moteur de rendu"
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:204
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:205
msgid "Failed to install pack: %1"
msgstr "Impossible d'installer le pack %1"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:619
-#: Source/Core/DolphinQt/MenuBar.cpp:1074
+#: Source/Core/DolphinQt/GameList/GameList.cpp:628
+#: Source/Core/DolphinQt/MenuBar.cpp:1056
msgid "Failed to install this title to the NAND."
msgstr "Impossible d'installer ce titre dans la NAND."
-#: Source/Core/DolphinQt/MainWindow.cpp:1594
+#: Source/Core/DolphinQt/MainWindow.cpp:1607
msgid ""
"Failed to listen on port %1. Is another instance of the NetPlay server "
"running?"
@@ -5308,8 +5463,8 @@ msgstr ""
"Impossible d'écouter le port %1. Est-ce qu'une autre instance de serveur "
"Netplay est en exécution ?"
-#: Source/Core/DolphinQt/MenuBar.cpp:1321
-#: Source/Core/DolphinQt/MenuBar.cpp:1376
+#: Source/Core/DolphinQt/MenuBar.cpp:1307
+#: Source/Core/DolphinQt/MenuBar.cpp:1363
msgid "Failed to load RSO module at %1"
msgstr "Impossible de charger le module RSO à %1"
@@ -5321,15 +5476,15 @@ msgstr "Impossible de charger d3d11.dll"
msgid "Failed to load dxgi.dll"
msgstr "Impossible de charger dxgi.dll"
-#: Source/Core/DolphinQt/MenuBar.cpp:1608
+#: Source/Core/DolphinQt/MenuBar.cpp:1595
msgid "Failed to load map file '%1'"
msgstr "Impossible d'ouvrir le fichier de carte '%1'"
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:720
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:842
msgid "Failed to load the Skylander file!"
msgstr "Impossible de charger le fichier Skylander !"
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:721
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:843
msgid "Failed to load the Skylander file(%1)!\n"
msgstr "Impossible de charger le fichier Skylander (%1) !\n"
@@ -5345,8 +5500,12 @@ msgstr ""
"Impossible de charger {0}. Si vous utilisez Windows 7, essayez d'installer "
"la mise à jour KB4019990."
-#: Source/Core/DolphinQt/GBAWidget.cpp:576
-#: Source/Core/DolphinQt/MainWindow.cpp:1670
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:663
+msgid "Failed to modify Skylander!"
+msgstr "Impossible de modifier Skylander !"
+
+#: Source/Core/DolphinQt/GBAWidget.cpp:578
+#: Source/Core/DolphinQt/MainWindow.cpp:1690
#: Source/Core/DolphinQt/RenderWidget.cpp:123
msgid "Failed to open '%1'"
msgstr "Impossible d'ouvrir \"%1\""
@@ -5376,19 +5535,19 @@ msgstr ""
"Impossible d'ouvrir le fichier dans un éditeur externe.\n"
"Vérifiez qu'une application est définie pour ouvrir les fichiers INI."
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:861
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:863
msgid "Failed to open file."
msgstr "Impossible d'ouvrir le fichier."
-#: Source/Core/DolphinQt/MainWindow.cpp:1593
+#: Source/Core/DolphinQt/MainWindow.cpp:1606
msgid "Failed to open server"
msgstr "Impossible d'accéder au serveur"
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:164
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:166
msgid "Failed to open the Infinity file!"
msgstr "Impossible d'ouvrir le fichier Infinity !"
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:165
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:167
msgid ""
"Failed to open the Infinity file(%1)!\n"
"File may already be in use on the base."
@@ -5396,11 +5555,11 @@ msgstr ""
"Impossible d'ouvrir le fichier Infinity (%1) !\n"
"Le fichier est peut-être déjà utilisé sur la base."
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:696
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:818
msgid "Failed to open the Skylander file!"
msgstr "Impossible d'ouvrir le fichier Skylander !"
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:697
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:819
msgid ""
"Failed to open the Skylander file(%1)!\n"
"File may already be in use on the portal."
@@ -5408,12 +5567,12 @@ msgstr ""
"Impossible d'ouvrir le fichier Skylander (%1) !\n"
"Le fichier est peut être déjà utilisé sur le portail."
-#: Source/Core/DolphinQt/ConvertDialog.cpp:472
+#: Source/Core/DolphinQt/ConvertDialog.cpp:474
msgid "Failed to open the input file \"%1\"."
msgstr "Impossible d'ouvrir le fichier source \"%1\"."
-#: Source/Core/DiscIO/CompressedBlob.cpp:282 Source/Core/DiscIO/FileBlob.cpp:53
-#: Source/Core/DiscIO/WIABlob.cpp:2037
+#: Source/Core/DiscIO/CompressedBlob.cpp:287 Source/Core/DiscIO/FileBlob.cpp:58
+#: Source/Core/DiscIO/WIABlob.cpp:2043
msgid ""
"Failed to open the output file \"{0}\".\n"
"Check that you have permissions to write the target folder and that the "
@@ -5436,27 +5595,27 @@ msgstr "Impossible d'analyser la valeur donnée dans le type de données cible."
msgid "Failed to read DFF file."
msgstr "Impossible de lire le fichier DFF."
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:863
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:865
msgid "Failed to read from file."
msgstr "Impossible de lire le fichier."
-#: Source/Core/DiscIO/CompressedBlob.cpp:373 Source/Core/DiscIO/FileBlob.cpp:93
-#: Source/Core/DiscIO/WIABlob.cpp:2052
+#: Source/Core/DiscIO/CompressedBlob.cpp:378 Source/Core/DiscIO/FileBlob.cpp:98
+#: Source/Core/DiscIO/WIABlob.cpp:2058
msgid "Failed to read from the input file \"{0}\"."
msgstr "Impossible de lire depuis le fichier source \"{0}\"."
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:423
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:641
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:424
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:642
msgid "Failed to read selected savefile(s) from memory card."
msgstr ""
"Impossible de lire le(s) fichier(s) de sauvegarde sélectionné(s) depuis la "
"carte mémoire."
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:173
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:175
msgid "Failed to read the Infinity file!"
msgstr "Impossible de lire le fichier Infinity !"
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:174
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:176
msgid ""
"Failed to read the Infinity file(%1)!\n"
"File was too small."
@@ -5464,11 +5623,11 @@ msgstr ""
"Impossible de lire le fichier Infinity (%1) !\n"
"Le fichier était trop petit."
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:706
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:828
msgid "Failed to read the Skylander file!"
msgstr "Impossible de lire le fichier Skylander !"
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:707
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:829
msgid ""
"Failed to read the Skylander file(%1)!\n"
"File was too small."
@@ -5480,11 +5639,11 @@ msgstr ""
msgid "Failed to read {0}"
msgstr "Impossible de lire {0}"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:668
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:669
msgid "Failed to remove file."
msgstr "Impossible de supprimer le fichier"
-#: Source/Core/DolphinQt/ConvertDialog.cpp:453
+#: Source/Core/DolphinQt/ConvertDialog.cpp:455
msgid ""
"Failed to remove junk data from file \"%1\".\n"
"\n"
@@ -5494,7 +5653,7 @@ msgstr ""
"\n"
"Voulez-vous le convertir sans supprimer les données inutiles ?"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:647
+#: Source/Core/DolphinQt/GameList/GameList.cpp:658
msgid "Failed to remove this title from the NAND."
msgstr "Impossible de supprimer ce titre de la NAND."
@@ -5516,27 +5675,38 @@ msgstr ""
"Impossible de réinitialiser le dossier de redirection de NetPlay. Vérifiez "
"vos droits d'écriture."
-#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:241
+#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:237
msgid "Failed to save FIFO log."
msgstr "Echec de l'enregistrement du journal FIFO."
-#: Source/Core/DolphinQt/MenuBar.cpp:1598
+#: Source/Core/DolphinQt/MenuBar.cpp:1585
msgid "Failed to save code map to path '%1'"
msgstr "Impossible de sauvegarder la carte du code vers le dossier '%1'"
-#: Source/Core/DolphinQt/MenuBar.cpp:1642
+#: Source/Core/DolphinQt/MenuBar.cpp:1629
msgid "Failed to save signature file '%1'"
msgstr "Impossible de sauvegarder le fichier de signature '%1'"
-#: Source/Core/DolphinQt/MenuBar.cpp:1621
+#: Source/Core/DolphinQt/MenuBar.cpp:1608
msgid "Failed to save symbol map to path '%1'"
msgstr "Impossible de sauvegarder la carte des symboles vers le dossier '%1'"
-#: Source/Core/DolphinQt/MenuBar.cpp:1723
+#: Source/Core/DolphinQt/MenuBar.cpp:1710
msgid "Failed to save to signature file '%1'"
msgstr "Impossible de sauvegarder vers le fichier de signature '%1'"
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:225
+#: Source/Core/Core/Core.cpp:548
+msgid ""
+"Failed to sync SD card with folder. All changes made this session will be "
+"discarded on next boot if you do not manually re-issue a resync in Config > "
+"Wii > SD Card Settings > Convert File to Folder Now!"
+msgstr ""
+"Impossible de synchroniser la carte SD avec le dossier. Tous les changements "
+"opérés pendant cette session seront perdus au prochain démarrage si vous ne "
+"faites pas manuellement une synchronisation via Config > Wii > Réglages de "
+"la carte SD > Convertir le fichier en dossier maintenant !"
+
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:226
msgid "Failed to uninstall pack: %1"
msgstr "Impossible de désinstaller le pack %1"
@@ -5556,9 +5726,9 @@ msgstr "Impossible d'écrire la sauvegarde Wii."
msgid "Failed to write config file!"
msgstr "Impossible d'écrire le fichier de configuration !"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:573
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:676
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:691
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:574
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:677
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:692
msgid "Failed to write modified memory card to disk."
msgstr "Impossible d'écrire la carte mémoire modifiée sur le disque."
@@ -5566,12 +5736,12 @@ msgstr "Impossible d'écrire la carte mémoire modifiée sur le disque."
msgid "Failed to write redirected save."
msgstr "Impossible d'écrire la sauvegarde redirigée."
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:447
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:448
msgid "Failed to write savefile to disk."
msgstr "Impossible d'écrire le fichier de sauvegarde sur le disque."
-#: Source/Core/DiscIO/CompressedBlob.cpp:377 Source/Core/DiscIO/FileBlob.cpp:99
-#: Source/Core/DiscIO/WIABlob.cpp:2056
+#: Source/Core/DiscIO/CompressedBlob.cpp:382
+#: Source/Core/DiscIO/FileBlob.cpp:104 Source/Core/DiscIO/WIABlob.cpp:2062
msgid ""
"Failed to write the output file \"{0}\".\n"
"Check that you have enough space available on the target drive."
@@ -5579,22 +5749,22 @@ msgstr ""
"Impossible d'écrire le fichier de sortie \"{0}\".\n"
"Vérifiez que vous avez d'espace libre sur le lecteur de destination."
-#: Source/Core/DolphinQt/GameList/GameList.cpp:617
-#: Source/Core/DolphinQt/GameList/GameList.cpp:645
-#: Source/Core/DolphinQt/GameList/GameList.cpp:840
-#: Source/Core/DolphinQt/MenuBar.cpp:1074
+#: Source/Core/DolphinQt/GameList/GameList.cpp:626
+#: Source/Core/DolphinQt/GameList/GameList.cpp:656
+#: Source/Core/DolphinQt/GameList/GameList.cpp:853
+#: Source/Core/DolphinQt/MenuBar.cpp:1056
msgid "Failure"
msgstr "Échec"
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:183
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:184
msgid "Fair Input Delay"
msgstr "Délai d'entrée des commandes égalisé"
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:199
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:200
msgid "Fallback Region"
msgstr "Région de remplacement"
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:210
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:211
msgid "Fallback Region:"
msgstr "Région de remplacement :"
@@ -5620,17 +5790,21 @@ msgstr ""
msgid "Field of View"
msgstr "Champ de vision"
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:233
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:235
msgid "Figure Number:"
msgstr "Numéro de figurine :"
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:380
+msgid "Figure type"
+msgstr "Type de jouet"
+
#: Source/Core/DolphinQt/Config/InfoWidget.cpp:46
msgid "File Details"
msgstr "Détails du fichier"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:991
+#: Source/Core/DolphinQt/GameList/GameList.cpp:1005
#: Source/Core/DolphinQt/GameList/GameListModel.cpp:229
-#: Source/Core/DolphinQt/MenuBar.cpp:652
+#: Source/Core/DolphinQt/MenuBar.cpp:644
msgid "File Format"
msgstr "Format du fichier"
@@ -5642,20 +5816,20 @@ msgstr "Format du fichier :"
msgid "File Info"
msgstr "Infos du fichier"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:986
+#: Source/Core/DolphinQt/GameList/GameList.cpp:1000
#: Source/Core/DolphinQt/GameList/GameListModel.cpp:223
-#: Source/Core/DolphinQt/MenuBar.cpp:647
+#: Source/Core/DolphinQt/MenuBar.cpp:639
msgid "File Name"
msgstr "Nom du fichier"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:987
+#: Source/Core/DolphinQt/GameList/GameList.cpp:1001
#: Source/Core/DolphinQt/GameList/GameListModel.cpp:225
-#: Source/Core/DolphinQt/MenuBar.cpp:648
+#: Source/Core/DolphinQt/MenuBar.cpp:640
msgid "File Path"
msgstr "Chemin du fichier"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:990
-#: Source/Core/DolphinQt/MenuBar.cpp:651
+#: Source/Core/DolphinQt/GameList/GameList.cpp:1004
+#: Source/Core/DolphinQt/MenuBar.cpp:643
msgid "File Size"
msgstr "Taille du fichier"
@@ -5663,15 +5837,15 @@ msgstr "Taille du fichier"
msgid "File Size:"
msgstr "Taille du fichier :"
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:349
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:352
msgid "File contained no codes."
msgstr "Le fichier ne contient pas de code."
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:149
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:150
msgid "Filename"
msgstr "Nom de fichier"
-#: Source/Core/DiscIO/CompressedBlob.cpp:289
+#: Source/Core/DiscIO/CompressedBlob.cpp:294
msgid "Files opened, ready to compress."
msgstr "Fichiers ouverts, prêt à compresser."
@@ -5683,13 +5857,13 @@ msgstr ""
"Les fichiers spécifiés dans le fichier M3U \"{0}\" n'ont pas été trouvés :\n"
"{1}"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:833
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:835
msgid "Filesize does not match any known GameCube Memory Card size."
msgstr ""
"La taille du fichier ne correspond à aucune taille connue de carte mémoire "
"de GameCube."
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:836
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:838
msgid "Filesize in header mismatches actual card size."
msgstr ""
"La taille indiquée dans l'entête ne correspond pas à celle de la carte."
@@ -5698,7 +5872,7 @@ msgstr ""
msgid "Filesystem"
msgstr "Système de fichiers"
-#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:102
+#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:103
msgid "Filters"
msgstr "Filtres"
@@ -5714,7 +5888,7 @@ msgstr "Chercher le &précédent"
msgid "Finish Calibration"
msgstr "Terminer l'étalonnage"
-#: Source/Core/DolphinQt/WiiUpdate.cpp:109
+#: Source/Core/DolphinQt/WiiUpdate.cpp:110
msgid ""
"Finishing the update...\n"
"This can take a while."
@@ -5724,19 +5898,19 @@ msgstr ""
#. i18n: One of the elements in the Skylanders games. Japanese: 火. For official translations
#. in other languages, check the SuperChargers manual at https://support.activision.com/manuals
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:333
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:349
msgid "Fire"
msgstr "Feu"
-#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:40
+#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:41
msgid "First Person"
msgstr "Vue à la première personne"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:127
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:128
msgid "Fix Checksums"
msgstr "Corriger les sommes de contrôle"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:690
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:691
msgid "Fix Checksums Failed"
msgstr "Échec de la correction des sommes de contrôle"
@@ -5746,7 +5920,7 @@ msgstr "Alignement fixé"
#. i18n: These are the kinds of flags that a CPU uses (e.g. carry),
#. not the kinds of flags that represent e.g. countries
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:166
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167
#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:87
msgid "Flags"
msgstr "Drapeaux"
@@ -5755,12 +5929,12 @@ msgstr "Drapeaux"
#. i18n: Floating-point (non-integer) number
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:138
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:198
-#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:152
+#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:153
#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97
msgid "Float"
msgstr "Flottant"
-#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:565
+#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:566
msgid "Follow &branch"
msgstr "Suivre la &branche"
@@ -5786,35 +5960,35 @@ msgstr ""
"Pour des instructions d'installation, consultez cette page."
-#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:57
+#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:58
msgid "Force 16:9"
msgstr "Forcer 16/9è"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:117
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:152
msgid "Force 24-Bit Color"
msgstr "Forcer les couleurs en 24 bit"
-#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:57
+#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:58
msgid "Force 4:3"
msgstr "Forcer 4/3"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:96
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:115
msgid "Force Linear"
msgstr "Forcer Linéaire"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:103
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:122
msgid "Force Linear and 16x Anisotropic"
msgstr "Forcer linéaire et Anisotropique 16x"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:97
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:116
msgid "Force Linear and 2x Anisotropic"
msgstr "Forcer linéaire et Anisotropique 2x"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:99
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:118
msgid "Force Linear and 4x Anisotropic"
msgstr "Forcer linéaire et Anisotropique 4x"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:101
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:120
msgid "Force Linear and 8x Anisotropic"
msgstr "Forcer linéaire et Anisotropique 8x"
@@ -5822,7 +5996,7 @@ msgstr "Forcer linéaire et Anisotropique 8x"
msgid "Force Listen Port:"
msgstr "Forcer l'écoute du port :"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:95
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:114
msgid "Force Nearest"
msgstr "Forcer au plus proche"
@@ -5834,7 +6008,7 @@ msgstr "Désactivé car %1 ne prend pas en charge les extensions VS."
msgid "Forced on because %1 doesn't support geometry shaders."
msgstr "Activé car %1 ne prend pas en charge les shaders géométriques."
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:474
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:556
msgid ""
"Forces the game to output graphics for any aspect ratio. Use with \"Aspect "
"Ratio\" set to \"Force 16:9\" to force 4:3-only games to run at 16:9."
@@ -5851,7 +6025,7 @@ msgstr ""
"
Dans le doute, décochez cette case."
"dolphin_emphasis>"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:503
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:585
msgid ""
"Forces the game to render the RGB color channels in 24-bit, thereby "
"increasing quality by reducing color banding.
Has no impact on "
@@ -5864,7 +6038,7 @@ msgstr ""
"graphiques.
Dans le doute, cochez cette case."
"dolphin_emphasis>"
-#: Source/Core/DolphinQt/ConvertDialog.cpp:59
+#: Source/Core/DolphinQt/ConvertDialog.cpp:60
msgid "Format:"
msgstr "Format :"
@@ -5930,19 +6104,19 @@ msgstr "Images à enregistrer :"
msgid "France"
msgstr "France"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:311
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:312
msgid "Free Blocks: %1"
msgstr "%1 blocs libres"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:312
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:313
msgid "Free Files: %1"
msgstr "%1 fichiers libres"
-#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:42
+#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:43
msgid "Free Look Control Type"
msgstr "Type de contrôle de la vue libre"
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:468
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:470
msgid "Free Look Controller %1"
msgstr "Manette %1 pour la Vue libre"
@@ -5950,7 +6124,7 @@ msgstr "Manette %1 pour la Vue libre"
msgid "Free Look Settings"
msgstr "Réglages de la Vue libre"
-#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:54
+#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:55
msgid ""
"Free Look allows for manipulation of the in-game camera. Different camera "
"types are available from the dropdown.
Disabling the "
@@ -3430,7 +3517,7 @@ msgid ""
"checked."
msgstr ""
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:96
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:97
msgid "Disc"
msgstr "Disk"
@@ -3464,25 +3551,25 @@ msgstr ""
msgid "Distance of travel from neutral position."
msgstr ""
-#: Source/Core/DolphinQt/Main.cpp:259
+#: Source/Core/DolphinQt/Main.cpp:264
msgid "Do you authorize Dolphin to report information to Dolphin's developers?"
msgstr ""
-#: Source/Core/DolphinQt/MainWindow.cpp:1692
+#: Source/Core/DolphinQt/MainWindow.cpp:1712
msgid "Do you want to add \"%1\" to the list of Game Paths?"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1241
+#: Source/Core/DolphinQt/MenuBar.cpp:1227
msgid "Do you want to clear the list of symbol names?"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:658
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:659
#, c-format
msgctxt ""
msgid "Do you want to delete the %n selected save file(s)?"
msgstr ""
-#: Source/Core/DolphinQt/MainWindow.cpp:933
+#: Source/Core/DolphinQt/MainWindow.cpp:935
msgid "Do you want to stop the current emulation?"
msgstr "Želite li zaustaviti emulaciju?"
@@ -3494,35 +3581,35 @@ msgstr ""
msgid "Dolby Pro Logic II Decoder"
msgstr ""
-#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:219
-#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:230
+#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:215
+#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:226
msgid "Dolphin FIFO Log (*.dff)"
msgstr ""
-#: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:327
+#: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:326
msgid "Dolphin Game Mod Preset"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1536
-#: Source/Core/DolphinQt/MenuBar.cpp:1553
-#: Source/Core/DolphinQt/MenuBar.cpp:1572
+#: Source/Core/DolphinQt/MenuBar.cpp:1523
+#: Source/Core/DolphinQt/MenuBar.cpp:1540
+#: Source/Core/DolphinQt/MenuBar.cpp:1559
msgid "Dolphin Map File (*.map)"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:73
+#: Source/Core/DolphinQt/MenuBar.cpp:74
msgid "Dolphin Signature CSV File"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:73
+#: Source/Core/DolphinQt/MenuBar.cpp:74
msgid "Dolphin Signature File"
msgstr ""
-#: Source/Core/DolphinQt/MainWindow.cpp:1772
-#: Source/Core/DolphinQt/MainWindow.cpp:1843
+#: Source/Core/DolphinQt/MainWindow.cpp:1823
+#: Source/Core/DolphinQt/MainWindow.cpp:1894
msgid "Dolphin TAS Movies (*.dtm)"
msgstr "Dolphin TAS Filmovi (*.dtm)"
-#: Source/Core/DolphinQt/ConvertDialog.cpp:326
+#: Source/Core/DolphinQt/ConvertDialog.cpp:327
msgid ""
"Dolphin can't convert NKit files to non-NKit files. Converting an NKit file "
"in Dolphin will result in another NKit file.\n"
@@ -3533,13 +3620,13 @@ msgid ""
"Do you want to continue anyway?"
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:279
+#: Source/Core/DolphinQt/GameList/GameList.cpp:280
msgid ""
"Dolphin could not find any GameCube/Wii ISOs or WADs.\n"
"Double-click here to set a games directory..."
msgstr ""
-#: Source/Core/DolphinQt/ConvertDialog.cpp:526
+#: Source/Core/DolphinQt/ConvertDialog.cpp:529
msgid "Dolphin failed to complete the requested action."
msgstr ""
@@ -3551,7 +3638,7 @@ msgstr ""
msgid "Dolphin is a free and open-source GameCube and Wii emulator."
msgstr ""
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:998
msgid "Dolphin is too old for traversal server"
msgstr ""
@@ -3565,7 +3652,7 @@ msgstr ""
msgid "Dolphin is unable to verify unlicensed discs."
msgstr ""
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:217
msgid ""
"Dolphin will use this for titles whose region cannot be determined "
"automatically."
@@ -3580,15 +3667,15 @@ msgstr ""
msgid "Domain"
msgstr ""
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:193
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:194
msgid "Don't Update"
msgstr ""
-#: Source/Core/DolphinQt/NKitWarningDialog.cpp:53
+#: Source/Core/DolphinQt/NKitWarningDialog.cpp:56
msgid "Don't show this again"
msgstr ""
-#: Source/Core/DiscIO/CompressedBlob.cpp:369
+#: Source/Core/DiscIO/CompressedBlob.cpp:374
msgid "Done compressing disc image."
msgstr ""
@@ -3601,37 +3688,37 @@ msgstr ""
#. i18n: A double precision floating point number
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:139
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:199
-#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:154
+#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:155
msgid "Double"
msgstr ""
#: Source/Core/Core/FreeLookManager.cpp:89
#: Source/Core/Core/HW/WiimoteEmu/Extension/Guitar.cpp:80
#: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:35
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:43
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:44
#: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:21
#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUAccelerometer.cpp:19
#: Source/Core/InputCommon/ControllerEmu/ControllerEmu.h:24
msgid "Down"
msgstr "Dolje"
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:86
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:87
msgid "Download Codes"
msgstr ""
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:88
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:89
msgid "Download Codes from the WiiRD Database"
msgstr ""
-#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:148
+#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:153
msgid "Download Game Covers from GameTDB.com for Use in Grid Mode"
msgstr ""
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:370
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:373
msgid "Download complete"
msgstr ""
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:371
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:374
msgid "Downloaded %1 codes. (added %2)"
msgstr ""
@@ -3654,7 +3741,7 @@ msgstr ""
msgid "Dual View"
msgstr ""
-#: Source/Core/Core/HW/EXI/EXI_Device.h:95
+#: Source/Core/Core/HW/EXI/EXI_Device.h:94
msgid "Dummy"
msgstr "Imitacija"
@@ -3674,7 +3761,7 @@ msgstr ""
msgid "Dump &MRAM"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:814
+#: Source/Core/DolphinQt/MenuBar.cpp:806
msgid "Dump Audio"
msgstr "Dumpiraj Zvuk"
@@ -3686,7 +3773,7 @@ msgstr ""
msgid "Dump EFB Target"
msgstr "Dumpiraj odabranu EFB metu"
-#: Source/Core/DolphinQt/MenuBar.cpp:808
+#: Source/Core/DolphinQt/MenuBar.cpp:800
msgid "Dump Frames"
msgstr "Dumpiraj Slike"
@@ -3759,12 +3846,12 @@ msgid "Duration of Turbo Button Release (frames):"
msgstr ""
#: Source/Core/DiscIO/Enums.cpp:95
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174
msgid "Dutch"
msgstr "Nizozemski"
-#: Source/Core/DolphinQt/MenuBar.cpp:215
+#: Source/Core/DolphinQt/MenuBar.cpp:207
msgid "E&xit"
msgstr "I&zlaz"
@@ -3780,7 +3867,7 @@ msgid ""
"driver."
msgstr ""
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:185
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:186
msgid ""
"Each player sends their own inputs to the game, with equal buffer size for "
"all players, configured by the host.\n"
@@ -3794,7 +3881,7 @@ msgstr "Rana Ažuriranja Memorije"
#. i18n: One of the elements in the Skylanders games. Japanese: 土. For official translations
#. in other languages, check the SuperChargers manual at https://support.activision.com/manuals
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:336
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:352
msgid "Earth"
msgstr ""
@@ -3807,7 +3894,7 @@ msgstr ""
msgid "Edit Breakpoint"
msgstr ""
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:426
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:430
msgid "Edit..."
msgstr ""
@@ -3841,7 +3928,7 @@ msgstr ""
#. i18n: Elements are a trait of Skylanders figures. For official translations of this term,
#. check the Skylanders SuperChargers manual at https://support.activision.com/manuals
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:289
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:300
msgid "Element"
msgstr ""
@@ -3849,11 +3936,11 @@ msgstr ""
msgid "Embedded Frame Buffer (EFB)"
msgstr ""
-#: Source/Core/Core/State.cpp:541
+#: Source/Core/Core/State.cpp:629
msgid "Empty"
msgstr ""
-#: Source/Core/Core/Core.cpp:246
+#: Source/Core/Core/Core.cpp:247
msgid "Emu Thread already running"
msgstr "Emu Thread je već pokrenut"
@@ -3861,15 +3948,15 @@ msgstr "Emu Thread je već pokrenut"
msgid "Emulate Disc Speed"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:60
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:61
msgid "Emulate Infinity Base"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:146
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:157
msgid "Emulate Skylander Portal"
msgstr ""
-#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:110
+#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:111
msgid "Emulate the Wii's Bluetooth adapter"
msgstr ""
@@ -3879,11 +3966,11 @@ msgid ""
"Defaults to True"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:230
+#: Source/Core/DolphinQt/MenuBar.cpp:222
msgid "Emulated USB Devices"
msgstr ""
-#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:141
+#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:142
msgid "Emulated Wii Remote"
msgstr ""
@@ -3903,12 +3990,12 @@ msgstr ""
msgid "Emulation must be started to record."
msgstr ""
-#: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:29
-#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:33
+#: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:30
+#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:34
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:120
-#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:129
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:402
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:419
+#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:130
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:406
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:423
msgid "Enable"
msgstr ""
@@ -3916,6 +4003,10 @@ msgstr ""
msgid "Enable API Validation Layers"
msgstr ""
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:83
+msgid "Enable Achievement Badges"
+msgstr ""
+
#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:60
msgid "Enable Achievements"
msgstr ""
@@ -3924,15 +4015,19 @@ msgstr ""
msgid "Enable Audio Stretching"
msgstr ""
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:142
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:143
msgid "Enable Cheats"
msgstr "Omogućite kodove za varanje"
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:155
+#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:53
+msgid "Enable Controller Inpu&t"
+msgstr ""
+
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:161
msgid "Enable Custom RTC"
msgstr ""
-#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:149
+#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:154
msgid "Enable Debugging UI"
msgstr ""
@@ -3940,19 +4035,19 @@ msgstr ""
msgid "Enable Dual Core"
msgstr "Omogućite korištenje dvije jezgre"
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:139
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:140
msgid "Enable Dual Core (speedup)"
msgstr "Omogućite korištenje dvije jezgre (ubrzanje)"
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:88
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:94
msgid "Enable Emulated CPU Clock Override"
msgstr ""
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:118
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:124
msgid "Enable Emulated Memory Size Override"
msgstr ""
-#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:78
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:88
msgid "Enable Encore Achievements"
msgstr ""
@@ -3969,10 +4064,14 @@ msgid "Enable Leaderboards"
msgstr ""
#: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:88
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:66
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:68
msgid "Enable MMU"
msgstr "Omogući MMU"
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:78
+msgid "Enable Progress Notifications"
+msgstr ""
+
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:156
msgid "Enable Progressive Scan"
msgstr "Omogućite Progresivno Skeniranje"
@@ -3986,15 +4085,15 @@ msgid "Enable Rich Presence"
msgstr ""
#: Source/Core/DolphinQt/Config/Mapping/GCPadWiiUConfigDialog.cpp:39
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:353
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:352
msgid "Enable Rumble"
msgstr ""
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:157
msgid "Enable Screen Saver"
msgstr "Omogućite Čuvar Zaslona"
-#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:113
+#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:114
msgid "Enable Speaker Data"
msgstr "Omogući Zvučne Podatke"
@@ -4002,11 +4101,11 @@ msgstr "Omogući Zvučne Podatke"
msgid "Enable Unofficial Achievements"
msgstr ""
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:230
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:231
msgid "Enable Usage Statistics Reporting"
msgstr ""
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158
msgid "Enable WiiConnect24 via WiiLink"
msgstr ""
@@ -4014,10 +4113,17 @@ msgstr ""
msgid "Enable Wireframe"
msgstr "Omogući Žičani Okvir"
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:77
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:82
msgid "Enable Write-Back Cache (slow)"
msgstr ""
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:85
+msgid ""
+"Enable achievement badges.
Displays icons for the player, game, and "
+"achievements. Simple visual option, but will require a small amount of extra "
+"memory and time to download the images."
+msgstr ""
+
#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:64
msgid ""
"Enable competing in RetroAchievements leaderboards.
Displays a brief popup "
+"message whenever the player makes progress on an achievement that tracks an "
+"accumulated value, such as 60 out of 120 stars."
+msgstr ""
+
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:90
+msgid ""
"Enable unlocking achievements in Encore Mode.
Encore Mode re-enables "
"achievements the player has already unlocked on the site so that the player "
"will be notified if they meet the unlock conditions again, useful for custom "
@@ -4078,7 +4191,7 @@ msgid ""
"= Compatible, OFF = Fast)"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:514
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:596
msgid ""
"Enables detection of arbitrary mipmaps, which some games use for special "
"distance-based effects.
May have false positives that result in "
@@ -4089,11 +4202,12 @@ msgid ""
"dolphin_emphasis>"
msgstr ""
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:79
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:84
msgid ""
-"Enables emulation of the CPU write-back cache.\n"
-"Enabling will have a significant impact on performance.\n"
-"This should be left disabled unless absolutely needed."
+"Enables emulation of the CPU write-back cache. Enabling will have a "
+"significant impact on performance. This should be left disabled unless "
+"absolutely needed.
If unsure, leave this unchecked."
+""
msgstr ""
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:365
@@ -4111,7 +4225,7 @@ msgid ""
"this unchecked."
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:522
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:604
msgid ""
"Enables scRGB HDR output (if supported by your graphics backend and "
"monitor). Fullscreen might be required.
This gives post process "
@@ -4134,7 +4248,6 @@ msgid ""
msgstr ""
#: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:100
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:68
msgid ""
"Enables the Memory Management Unit, needed for some games. (ON = Compatible, "
"OFF = Fast)"
@@ -4142,7 +4255,14 @@ msgstr ""
"Omogućuje Jedinicu za Upravljanje Memorijom, koja je potrebna za nekoliko "
"igrica. (UKLJUČENO= Kompatibilnost, ISKLJUČENO= Ubrzanje)"
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:193
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:70
+msgid ""
+"Enables the Memory Management Unit, needed for some games. (ON = Compatible, "
+"OFF = Fast)
If unsure, leave this unchecked."
+"dolphin_emphasis>"
+msgstr ""
+
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190
msgid ""
"Enables the WiiLink service for WiiConnect24 channels.\n"
"WiiLink is an alternate provider for the discontinued WiiConnect24 Channels "
@@ -4169,7 +4289,7 @@ msgstr ""
msgid "Encoding"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:615
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:616
msgid ""
"Encountered the following errors while opening save files:\n"
"%1\n"
@@ -4182,12 +4302,12 @@ msgid "Enet Didn't Initialize"
msgstr ""
#: Source/Core/DiscIO/Enums.cpp:80
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:85
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:169
msgid "English"
msgstr "Engleski"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:59
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:61
#: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:61
msgid "Enhancements"
msgstr "Poboljšanja"
@@ -4218,84 +4338,84 @@ msgstr ""
msgid "Enter the DNS server to use:"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1300
+#: Source/Core/DolphinQt/MenuBar.cpp:1286
msgid "Enter the RSO module address:"
msgstr ""
#: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:194
#: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:250
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:261
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:262
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386
#: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:265
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:343
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:349
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:346
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:352
#: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:46
-#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:521
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:256
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:295
-#: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:232
-#: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:259
-#: Source/Core/DolphinQt/ConvertDialog.cpp:424
-#: Source/Core/DolphinQt/ConvertDialog.cpp:471
-#: Source/Core/DolphinQt/ConvertDialog.cpp:525
+#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:539
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:255
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:296
+#: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:229
+#: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:256
+#: Source/Core/DolphinQt/ConvertDialog.cpp:426
+#: Source/Core/DolphinQt/ConvertDialog.cpp:473
+#: Source/Core/DolphinQt/ConvertDialog.cpp:528
#: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:255
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:638
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:644
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:653
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:665
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:684
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:690
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:705
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:713
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:737
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:744
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:637
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:643
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:652
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:664
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:683
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:689
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:704
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:712
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:736
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:743
#: Source/Core/DolphinQt/Debugger/RegisterColumn.cpp:86
#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:282
#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:431
-#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:241
-#: Source/Core/DolphinQt/GBAWidget.cpp:576
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:346
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:376
-#: Source/Core/DolphinQt/Main.cpp:209 Source/Core/DolphinQt/Main.cpp:225
-#: Source/Core/DolphinQt/Main.cpp:232 Source/Core/DolphinQt/MainWindow.cpp:295
-#: Source/Core/DolphinQt/MainWindow.cpp:303
-#: Source/Core/DolphinQt/MainWindow.cpp:1108
-#: Source/Core/DolphinQt/MainWindow.cpp:1494
-#: Source/Core/DolphinQt/MainWindow.cpp:1501
-#: Source/Core/DolphinQt/MainWindow.cpp:1561
-#: Source/Core/DolphinQt/MainWindow.cpp:1568
-#: Source/Core/DolphinQt/MainWindow.cpp:1670
-#: Source/Core/DolphinQt/MenuBar.cpp:1204
-#: Source/Core/DolphinQt/MenuBar.cpp:1284
+#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:237
+#: Source/Core/DolphinQt/GBAWidget.cpp:578
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:347
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:377
+#: Source/Core/DolphinQt/Main.cpp:211 Source/Core/DolphinQt/Main.cpp:227
+#: Source/Core/DolphinQt/Main.cpp:234 Source/Core/DolphinQt/MainWindow.cpp:297
+#: Source/Core/DolphinQt/MainWindow.cpp:305
+#: Source/Core/DolphinQt/MainWindow.cpp:1110
+#: Source/Core/DolphinQt/MainWindow.cpp:1507
+#: Source/Core/DolphinQt/MainWindow.cpp:1514
+#: Source/Core/DolphinQt/MainWindow.cpp:1574
+#: Source/Core/DolphinQt/MainWindow.cpp:1581
+#: Source/Core/DolphinQt/MainWindow.cpp:1690
+#: Source/Core/DolphinQt/MenuBar.cpp:1190
+#: Source/Core/DolphinQt/MenuBar.cpp:1270
+#: Source/Core/DolphinQt/MenuBar.cpp:1293
#: Source/Core/DolphinQt/MenuBar.cpp:1307
-#: Source/Core/DolphinQt/MenuBar.cpp:1321
-#: Source/Core/DolphinQt/MenuBar.cpp:1352
-#: Source/Core/DolphinQt/MenuBar.cpp:1376
-#: Source/Core/DolphinQt/MenuBar.cpp:1597
-#: Source/Core/DolphinQt/MenuBar.cpp:1608
-#: Source/Core/DolphinQt/MenuBar.cpp:1620
-#: Source/Core/DolphinQt/MenuBar.cpp:1642
-#: Source/Core/DolphinQt/MenuBar.cpp:1668
-#: Source/Core/DolphinQt/MenuBar.cpp:1722
-#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:315
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:477
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:738
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:980
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1098
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1108
-#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:334
-#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:340
-#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:347
+#: Source/Core/DolphinQt/MenuBar.cpp:1339
+#: Source/Core/DolphinQt/MenuBar.cpp:1363
+#: Source/Core/DolphinQt/MenuBar.cpp:1584
+#: Source/Core/DolphinQt/MenuBar.cpp:1595
+#: Source/Core/DolphinQt/MenuBar.cpp:1607
+#: Source/Core/DolphinQt/MenuBar.cpp:1629
+#: Source/Core/DolphinQt/MenuBar.cpp:1655
+#: Source/Core/DolphinQt/MenuBar.cpp:1709
+#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:316
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:479
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:740
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:982
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1100
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1110
+#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:332
+#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:338
+#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:345
#: Source/Core/DolphinQt/RenderWidget.cpp:123
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:203
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:224
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:423
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:439
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:460
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:481
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:525
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:562
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:585
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:204
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:225
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:433
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:449
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:470
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:491
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:535
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:572
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:595
#: Source/Core/DolphinQt/Translation.cpp:322
msgid "Error"
msgstr "Pogreška"
@@ -4304,13 +4424,13 @@ msgstr "Pogreška"
msgid "Error Opening Adapter: %1"
msgstr ""
-#: Source/Core/Core/NetPlayServer.cpp:1493
+#: Source/Core/Core/NetPlayServer.cpp:1497
msgid "Error collecting save data!"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:260
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:526
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:533
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:262
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:613
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:620
msgid "Error converting value"
msgstr ""
@@ -4323,15 +4443,15 @@ msgstr ""
msgid "Error obtaining session list: %1"
msgstr ""
-#: Source/Core/DolphinQt/MainWindow.cpp:296
+#: Source/Core/DolphinQt/MainWindow.cpp:298
msgid "Error occurred while loading some texture packs"
msgstr ""
-#: Source/Core/Core/NetPlayClient.cpp:1847
+#: Source/Core/Core/NetPlayClient.cpp:1851
msgid "Error processing codes."
msgstr ""
-#: Source/Core/Core/NetPlayClient.cpp:1819
+#: Source/Core/Core/NetPlayClient.cpp:1823
msgid "Error processing data."
msgstr ""
@@ -4339,11 +4459,11 @@ msgstr ""
msgid "Error reading file: {0}"
msgstr ""
-#: Source/Core/Core/NetPlayServer.cpp:1529
+#: Source/Core/Core/NetPlayServer.cpp:1533
msgid "Error synchronizing cheat codes!"
msgstr ""
-#: Source/Core/Core/NetPlayServer.cpp:1515
+#: Source/Core/Core/NetPlayServer.cpp:1519
msgid "Error synchronizing save data!"
msgstr ""
@@ -4414,7 +4534,7 @@ msgstr ""
msgid "Euphoria"
msgstr "Euforija"
-#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:282
+#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:274
#: Source/Core/UICommon/NetPlayIndex.cpp:249
msgid "Europe"
msgstr ""
@@ -4443,11 +4563,11 @@ msgstr ""
msgid "Excluded: %1"
msgstr ""
-#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:73
+#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:72
msgid "Excluded: 0"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:107
+#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108
msgid "Exclusive Ubershaders"
msgstr ""
@@ -4495,14 +4615,14 @@ msgstr ""
msgid "Experimental"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:294
+#: Source/Core/DolphinQt/MenuBar.cpp:286
msgid "Export All Wii Saves"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:422
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:447
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:492
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:499
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:423
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:448
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:493
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:500
msgid "Export Failed"
msgstr ""
@@ -4510,42 +4630,42 @@ msgstr ""
msgid "Export Recording"
msgstr "Izvedi Snimku Videa"
-#: Source/Core/DolphinQt/MenuBar.cpp:753
+#: Source/Core/DolphinQt/MenuBar.cpp:745
msgid "Export Recording..."
msgstr "Izvedi Snimku Videa..."
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:437
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:438
msgid "Export Save File"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:454
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:455
msgid "Export Save Files"
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:470
+#: Source/Core/DolphinQt/GameList/GameList.cpp:473
msgid "Export Wii Save"
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:388
+#: Source/Core/DolphinQt/GameList/GameList.cpp:389
msgid "Export Wii Saves"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:117
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:118
msgid "Export as .&gcs..."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:118
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:119
msgid "Export as .&sav..."
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1133
+#: Source/Core/DolphinQt/MenuBar.cpp:1115
#, c-format
msgctxt ""
msgid "Exported %n save(s)"
msgstr ""
#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:268
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:432
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:434
#: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:47
msgid "Extension"
msgstr "Produžetak"
@@ -4558,7 +4678,7 @@ msgstr ""
msgid "Extension Motion Simulation"
msgstr ""
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:520
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:522
msgid "External"
msgstr ""
@@ -4566,35 +4686,35 @@ msgstr ""
msgid "External Frame Buffer (XFB)"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:271
+#: Source/Core/DolphinQt/MenuBar.cpp:263
msgid "Extract Certificates from NAND"
msgstr ""
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:268
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:269
msgid "Extract Entire Disc..."
msgstr ""
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:292
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:293
msgid "Extract Entire Partition..."
msgstr ""
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:299
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:300
msgid "Extract File..."
msgstr "Raspakirati Datoteku..."
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:241
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:242
msgid "Extract Files..."
msgstr ""
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:251
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:252
msgid "Extract System Data..."
msgstr ""
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:355
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:356
msgid "Extracting All Files..."
msgstr ""
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:356
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357
msgid "Extracting Directory..."
msgstr ""
@@ -4604,7 +4724,7 @@ msgid "FD"
msgstr ""
#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:37
-#: Source/Core/DolphinQt/MenuBar.cpp:228
+#: Source/Core/DolphinQt/MenuBar.cpp:220
msgid "FIFO Player"
msgstr "FIFO Pokretač Datoteka"
@@ -4612,17 +4732,17 @@ msgstr "FIFO Pokretač Datoteka"
msgid "Failed loading XML."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:347
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:348
msgid ""
"Failed opening memory card:\n"
"%1"
msgstr ""
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:454
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:456
msgid "Failed to add this session to the NetPlay index: %1"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1669
+#: Source/Core/DolphinQt/MenuBar.cpp:1656
msgid "Failed to append to signature file '%1'"
msgstr ""
@@ -4630,11 +4750,11 @@ msgstr ""
msgid "Failed to claim interface for BT passthrough: {0}"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:574
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:676
msgid "Failed to clear Skylander!"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:575
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:677
msgid "Failed to clear the Skylander from slot(%1)!"
msgstr ""
@@ -4642,7 +4762,7 @@ msgstr ""
msgid "Failed to connect to Redump.org"
msgstr ""
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:981
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:983
msgid "Failed to connect to server: %1"
msgstr ""
@@ -4663,15 +4783,15 @@ msgstr ""
msgid "Failed to create DXGI factory"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:289
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:291
msgid "Failed to create Infinity file"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:678
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:798
msgid "Failed to create Skylander file!"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:679
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:799
msgid ""
"Failed to create Skylander file:\n"
"%1\n"
@@ -4687,7 +4807,7 @@ msgstr ""
msgid "Failed to delete NetPlay memory card. Verify your write permissions."
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:841
+#: Source/Core/DolphinQt/GameList/GameList.cpp:854
msgid "Failed to delete the selected file."
msgstr ""
@@ -4695,36 +4815,36 @@ msgstr ""
msgid "Failed to detach kernel driver for BT passthrough: {0}"
msgstr ""
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:343
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:346
msgid "Failed to download codes."
msgstr "Neuspjeh u preuzimanju kodova."
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:738
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:737
msgid "Failed to dump %1: Can't open file"
msgstr ""
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:745
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:744
msgid "Failed to dump %1: Failed to write to file"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:488
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:489
msgctxt ""
msgid "Failed to export %n out of %1 save file(s)."
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:576
+#: Source/Core/DolphinQt/GameList/GameList.cpp:584
msgid "Failed to export the following save files:"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1204
+#: Source/Core/DolphinQt/MenuBar.cpp:1190
msgid "Failed to extract certificates from NAND"
msgstr ""
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386
msgid "Failed to extract file."
msgstr ""
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:261
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:262
msgid "Failed to extract system data."
msgstr ""
@@ -4739,29 +4859,29 @@ msgstr ""
msgid "Failed to find one or more D3D symbols"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:565
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:566
msgid "Failed to import \"%1\"."
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1109
+#: Source/Core/DolphinQt/MenuBar.cpp:1091
msgid ""
"Failed to import save file. Please launch the game once, then try again."
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1103
+#: Source/Core/DolphinQt/MenuBar.cpp:1085
msgid ""
"Failed to import save file. The given file appears to be corrupted or is not "
"a valid Wii save."
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1116
+#: Source/Core/DolphinQt/MenuBar.cpp:1098
msgid ""
"Failed to import save file. Your NAND may be corrupt, or something is "
"preventing access to files within it. Try repairing your NAND (Tools -> "
"Manage NAND -> Check NAND...), then import the save again."
msgstr ""
-#: Source/Core/DolphinQt/MainWindow.cpp:1108
+#: Source/Core/DolphinQt/MainWindow.cpp:1110
msgid "Failed to init core"
msgstr ""
@@ -4776,23 +4896,23 @@ msgstr ""
msgid "Failed to initialize renderer classes"
msgstr ""
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:204
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:205
msgid "Failed to install pack: %1"
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:619
-#: Source/Core/DolphinQt/MenuBar.cpp:1074
+#: Source/Core/DolphinQt/GameList/GameList.cpp:628
+#: Source/Core/DolphinQt/MenuBar.cpp:1056
msgid "Failed to install this title to the NAND."
msgstr ""
-#: Source/Core/DolphinQt/MainWindow.cpp:1594
+#: Source/Core/DolphinQt/MainWindow.cpp:1607
msgid ""
"Failed to listen on port %1. Is another instance of the NetPlay server "
"running?"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1321
-#: Source/Core/DolphinQt/MenuBar.cpp:1376
+#: Source/Core/DolphinQt/MenuBar.cpp:1307
+#: Source/Core/DolphinQt/MenuBar.cpp:1363
msgid "Failed to load RSO module at %1"
msgstr ""
@@ -4804,15 +4924,15 @@ msgstr ""
msgid "Failed to load dxgi.dll"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1608
+#: Source/Core/DolphinQt/MenuBar.cpp:1595
msgid "Failed to load map file '%1'"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:720
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:842
msgid "Failed to load the Skylander file!"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:721
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:843
msgid "Failed to load the Skylander file(%1)!\n"
msgstr ""
@@ -4826,8 +4946,12 @@ msgid ""
"update package."
msgstr ""
-#: Source/Core/DolphinQt/GBAWidget.cpp:576
-#: Source/Core/DolphinQt/MainWindow.cpp:1670
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:663
+msgid "Failed to modify Skylander!"
+msgstr ""
+
+#: Source/Core/DolphinQt/GBAWidget.cpp:578
+#: Source/Core/DolphinQt/MainWindow.cpp:1690
#: Source/Core/DolphinQt/RenderWidget.cpp:123
msgid "Failed to open '%1'"
msgstr ""
@@ -4854,40 +4978,40 @@ msgid ""
"Make sure there's an application assigned to open INI files."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:861
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:863
msgid "Failed to open file."
msgstr ""
-#: Source/Core/DolphinQt/MainWindow.cpp:1593
+#: Source/Core/DolphinQt/MainWindow.cpp:1606
msgid "Failed to open server"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:164
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:166
msgid "Failed to open the Infinity file!"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:165
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:167
msgid ""
"Failed to open the Infinity file(%1)!\n"
"File may already be in use on the base."
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:696
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:818
msgid "Failed to open the Skylander file!"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:697
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:819
msgid ""
"Failed to open the Skylander file(%1)!\n"
"File may already be in use on the portal."
msgstr ""
-#: Source/Core/DolphinQt/ConvertDialog.cpp:472
+#: Source/Core/DolphinQt/ConvertDialog.cpp:474
msgid "Failed to open the input file \"%1\"."
msgstr ""
-#: Source/Core/DiscIO/CompressedBlob.cpp:282 Source/Core/DiscIO/FileBlob.cpp:53
-#: Source/Core/DiscIO/WIABlob.cpp:2037
+#: Source/Core/DiscIO/CompressedBlob.cpp:287 Source/Core/DiscIO/FileBlob.cpp:58
+#: Source/Core/DiscIO/WIABlob.cpp:2043
msgid ""
"Failed to open the output file \"{0}\".\n"
"Check that you have permissions to write the target folder and that the "
@@ -4907,35 +5031,35 @@ msgstr ""
msgid "Failed to read DFF file."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:863
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:865
msgid "Failed to read from file."
msgstr ""
-#: Source/Core/DiscIO/CompressedBlob.cpp:373 Source/Core/DiscIO/FileBlob.cpp:93
-#: Source/Core/DiscIO/WIABlob.cpp:2052
+#: Source/Core/DiscIO/CompressedBlob.cpp:378 Source/Core/DiscIO/FileBlob.cpp:98
+#: Source/Core/DiscIO/WIABlob.cpp:2058
msgid "Failed to read from the input file \"{0}\"."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:423
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:641
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:424
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:642
msgid "Failed to read selected savefile(s) from memory card."
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:173
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:175
msgid "Failed to read the Infinity file!"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:174
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:176
msgid ""
"Failed to read the Infinity file(%1)!\n"
"File was too small."
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:706
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:828
msgid "Failed to read the Skylander file!"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:707
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:829
msgid ""
"Failed to read the Skylander file(%1)!\n"
"File was too small."
@@ -4945,18 +5069,18 @@ msgstr ""
msgid "Failed to read {0}"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:668
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:669
msgid "Failed to remove file."
msgstr ""
-#: Source/Core/DolphinQt/ConvertDialog.cpp:453
+#: Source/Core/DolphinQt/ConvertDialog.cpp:455
msgid ""
"Failed to remove junk data from file \"%1\".\n"
"\n"
"Would you like to convert it without removing junk data?"
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:647
+#: Source/Core/DolphinQt/GameList/GameList.cpp:658
msgid "Failed to remove this title from the NAND."
msgstr ""
@@ -4972,27 +5096,34 @@ msgstr ""
msgid "Failed to reset NetPlay redirect folder. Verify your write permissions."
msgstr ""
-#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:241
+#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:237
msgid "Failed to save FIFO log."
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1598
+#: Source/Core/DolphinQt/MenuBar.cpp:1585
msgid "Failed to save code map to path '%1'"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1642
+#: Source/Core/DolphinQt/MenuBar.cpp:1629
msgid "Failed to save signature file '%1'"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1621
+#: Source/Core/DolphinQt/MenuBar.cpp:1608
msgid "Failed to save symbol map to path '%1'"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1723
+#: Source/Core/DolphinQt/MenuBar.cpp:1710
msgid "Failed to save to signature file '%1'"
msgstr ""
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:225
+#: Source/Core/Core/Core.cpp:548
+msgid ""
+"Failed to sync SD card with folder. All changes made this session will be "
+"discarded on next boot if you do not manually re-issue a resync in Config > "
+"Wii > SD Card Settings > Convert File to Folder Now!"
+msgstr ""
+
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:226
msgid "Failed to uninstall pack: %1"
msgstr ""
@@ -5012,9 +5143,9 @@ msgstr ""
msgid "Failed to write config file!"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:573
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:676
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:691
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:574
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:677
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:692
msgid "Failed to write modified memory card to disk."
msgstr ""
@@ -5022,33 +5153,33 @@ msgstr ""
msgid "Failed to write redirected save."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:447
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:448
msgid "Failed to write savefile to disk."
msgstr ""
-#: Source/Core/DiscIO/CompressedBlob.cpp:377 Source/Core/DiscIO/FileBlob.cpp:99
-#: Source/Core/DiscIO/WIABlob.cpp:2056
+#: Source/Core/DiscIO/CompressedBlob.cpp:382
+#: Source/Core/DiscIO/FileBlob.cpp:104 Source/Core/DiscIO/WIABlob.cpp:2062
msgid ""
"Failed to write the output file \"{0}\".\n"
"Check that you have enough space available on the target drive."
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:617
-#: Source/Core/DolphinQt/GameList/GameList.cpp:645
-#: Source/Core/DolphinQt/GameList/GameList.cpp:840
-#: Source/Core/DolphinQt/MenuBar.cpp:1074
+#: Source/Core/DolphinQt/GameList/GameList.cpp:626
+#: Source/Core/DolphinQt/GameList/GameList.cpp:656
+#: Source/Core/DolphinQt/GameList/GameList.cpp:853
+#: Source/Core/DolphinQt/MenuBar.cpp:1056
msgid "Failure"
msgstr ""
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:183
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:184
msgid "Fair Input Delay"
msgstr ""
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:199
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:200
msgid "Fallback Region"
msgstr ""
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:210
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:211
msgid "Fallback Region:"
msgstr ""
@@ -5072,17 +5203,21 @@ msgstr ""
msgid "Field of View"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:233
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:235
msgid "Figure Number:"
msgstr ""
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:380
+msgid "Figure type"
+msgstr ""
+
#: Source/Core/DolphinQt/Config/InfoWidget.cpp:46
msgid "File Details"
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:991
+#: Source/Core/DolphinQt/GameList/GameList.cpp:1005
#: Source/Core/DolphinQt/GameList/GameListModel.cpp:229
-#: Source/Core/DolphinQt/MenuBar.cpp:652
+#: Source/Core/DolphinQt/MenuBar.cpp:644
msgid "File Format"
msgstr ""
@@ -5094,20 +5229,20 @@ msgstr ""
msgid "File Info"
msgstr "Informacije o Datoteci"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:986
+#: Source/Core/DolphinQt/GameList/GameList.cpp:1000
#: Source/Core/DolphinQt/GameList/GameListModel.cpp:223
-#: Source/Core/DolphinQt/MenuBar.cpp:647
+#: Source/Core/DolphinQt/MenuBar.cpp:639
msgid "File Name"
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:987
+#: Source/Core/DolphinQt/GameList/GameList.cpp:1001
#: Source/Core/DolphinQt/GameList/GameListModel.cpp:225
-#: Source/Core/DolphinQt/MenuBar.cpp:648
+#: Source/Core/DolphinQt/MenuBar.cpp:640
msgid "File Path"
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:990
-#: Source/Core/DolphinQt/MenuBar.cpp:651
+#: Source/Core/DolphinQt/GameList/GameList.cpp:1004
+#: Source/Core/DolphinQt/MenuBar.cpp:643
msgid "File Size"
msgstr ""
@@ -5115,15 +5250,15 @@ msgstr ""
msgid "File Size:"
msgstr ""
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:349
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:352
msgid "File contained no codes."
msgstr "Datoteka ne sadržava ni jedan kod."
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:149
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:150
msgid "Filename"
msgstr ""
-#: Source/Core/DiscIO/CompressedBlob.cpp:289
+#: Source/Core/DiscIO/CompressedBlob.cpp:294
msgid "Files opened, ready to compress."
msgstr ""
@@ -5133,11 +5268,11 @@ msgid ""
"{1}"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:833
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:835
msgid "Filesize does not match any known GameCube Memory Card size."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:836
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:838
msgid "Filesize in header mismatches actual card size."
msgstr ""
@@ -5145,7 +5280,7 @@ msgstr ""
msgid "Filesystem"
msgstr "Datotečni sustav"
-#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:102
+#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:103
msgid "Filters"
msgstr ""
@@ -5161,7 +5296,7 @@ msgstr ""
msgid "Finish Calibration"
msgstr ""
-#: Source/Core/DolphinQt/WiiUpdate.cpp:109
+#: Source/Core/DolphinQt/WiiUpdate.cpp:110
msgid ""
"Finishing the update...\n"
"This can take a while."
@@ -5169,19 +5304,19 @@ msgstr ""
#. i18n: One of the elements in the Skylanders games. Japanese: 火. For official translations
#. in other languages, check the SuperChargers manual at https://support.activision.com/manuals
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:333
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:349
msgid "Fire"
msgstr ""
-#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:40
+#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:41
msgid "First Person"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:127
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:128
msgid "Fix Checksums"
msgstr "Popravi Checksum"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:690
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:691
msgid "Fix Checksums Failed"
msgstr ""
@@ -5191,7 +5326,7 @@ msgstr ""
#. i18n: These are the kinds of flags that a CPU uses (e.g. carry),
#. not the kinds of flags that represent e.g. countries
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:166
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167
#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:87
msgid "Flags"
msgstr ""
@@ -5200,12 +5335,12 @@ msgstr ""
#. i18n: Floating-point (non-integer) number
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:138
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:198
-#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:152
+#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:153
#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97
msgid "Float"
msgstr ""
-#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:565
+#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:566
msgid "Follow &branch"
msgstr ""
@@ -5225,35 +5360,35 @@ msgid ""
"\">refer to this page
."
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:57
+#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:58
msgid "Force 16:9"
msgstr "Prisili 16:9"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:117
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:152
msgid "Force 24-Bit Color"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:57
+#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:58
msgid "Force 4:3"
msgstr "Prisili 4:3"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:96
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:115
msgid "Force Linear"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:103
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:122
msgid "Force Linear and 16x Anisotropic"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:97
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:116
msgid "Force Linear and 2x Anisotropic"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:99
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:118
msgid "Force Linear and 4x Anisotropic"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:101
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:120
msgid "Force Linear and 8x Anisotropic"
msgstr ""
@@ -5261,7 +5396,7 @@ msgstr ""
msgid "Force Listen Port:"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:95
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:114
msgid "Force Nearest"
msgstr ""
@@ -5273,7 +5408,7 @@ msgstr ""
msgid "Forced on because %1 doesn't support geometry shaders."
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:474
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:556
msgid ""
"Forces the game to output graphics for any aspect ratio. Use with \"Aspect "
"Ratio\" set to \"Force 16:9\" to force 4:3-only games to run at 16:9."
@@ -5283,7 +5418,7 @@ msgid ""
""
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:503
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:585
msgid ""
"Forces the game to render the RGB color channels in 24-bit, thereby "
"increasing quality by reducing color banding.
Has no impact on "
@@ -5291,7 +5426,7 @@ msgid ""
"unsure, leave this checked."
msgstr ""
-#: Source/Core/DolphinQt/ConvertDialog.cpp:59
+#: Source/Core/DolphinQt/ConvertDialog.cpp:60
msgid "Format:"
msgstr ""
@@ -5357,19 +5492,19 @@ msgstr ""
msgid "France"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:311
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:312
msgid "Free Blocks: %1"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:312
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:313
msgid "Free Files: %1"
msgstr ""
-#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:42
+#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:43
msgid "Free Look Control Type"
msgstr ""
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:468
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:470
msgid "Free Look Controller %1"
msgstr ""
@@ -5377,7 +5512,7 @@ msgstr ""
msgid "Free Look Settings"
msgstr ""
-#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:54
+#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:55
msgid ""
"Free Look allows for manipulation of the in-game camera. Different camera "
"types are available from the dropdown.
Disabling the "
@@ -3436,7 +3528,7 @@ msgid ""
"checked."
msgstr ""
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:96
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:97
msgid "Disc"
msgstr "Lemez"
@@ -3463,32 +3555,32 @@ msgstr ""
#: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:28
msgid "Distance"
-msgstr ""
+msgstr "Távolság"
#. i18n: Refering to emulated wii remote swing movement.
#: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:32
msgid "Distance of travel from neutral position."
msgstr ""
-#: Source/Core/DolphinQt/Main.cpp:259
+#: Source/Core/DolphinQt/Main.cpp:264
msgid "Do you authorize Dolphin to report information to Dolphin's developers?"
msgstr ""
-#: Source/Core/DolphinQt/MainWindow.cpp:1692
+#: Source/Core/DolphinQt/MainWindow.cpp:1712
msgid "Do you want to add \"%1\" to the list of Game Paths?"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1241
+#: Source/Core/DolphinQt/MenuBar.cpp:1227
msgid "Do you want to clear the list of symbol names?"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:658
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:659
#, c-format
msgctxt ""
msgid "Do you want to delete the %n selected save file(s)?"
msgstr ""
-#: Source/Core/DolphinQt/MainWindow.cpp:933
+#: Source/Core/DolphinQt/MainWindow.cpp:935
msgid "Do you want to stop the current emulation?"
msgstr "Biztos leállítod az aktuális emulációt?"
@@ -3500,35 +3592,35 @@ msgstr ""
msgid "Dolby Pro Logic II Decoder"
msgstr ""
-#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:219
-#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:230
+#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:215
+#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:226
msgid "Dolphin FIFO Log (*.dff)"
msgstr ""
-#: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:327
+#: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:326
msgid "Dolphin Game Mod Preset"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1536
-#: Source/Core/DolphinQt/MenuBar.cpp:1553
-#: Source/Core/DolphinQt/MenuBar.cpp:1572
+#: Source/Core/DolphinQt/MenuBar.cpp:1523
+#: Source/Core/DolphinQt/MenuBar.cpp:1540
+#: Source/Core/DolphinQt/MenuBar.cpp:1559
msgid "Dolphin Map File (*.map)"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:73
+#: Source/Core/DolphinQt/MenuBar.cpp:74
msgid "Dolphin Signature CSV File"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:73
+#: Source/Core/DolphinQt/MenuBar.cpp:74
msgid "Dolphin Signature File"
msgstr ""
-#: Source/Core/DolphinQt/MainWindow.cpp:1772
-#: Source/Core/DolphinQt/MainWindow.cpp:1843
+#: Source/Core/DolphinQt/MainWindow.cpp:1823
+#: Source/Core/DolphinQt/MainWindow.cpp:1894
msgid "Dolphin TAS Movies (*.dtm)"
msgstr "Dolphin TAS videók (*.dtm)"
-#: Source/Core/DolphinQt/ConvertDialog.cpp:326
+#: Source/Core/DolphinQt/ConvertDialog.cpp:327
msgid ""
"Dolphin can't convert NKit files to non-NKit files. Converting an NKit file "
"in Dolphin will result in another NKit file.\n"
@@ -3539,13 +3631,13 @@ msgid ""
"Do you want to continue anyway?"
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:279
+#: Source/Core/DolphinQt/GameList/GameList.cpp:280
msgid ""
"Dolphin could not find any GameCube/Wii ISOs or WADs.\n"
"Double-click here to set a games directory..."
msgstr ""
-#: Source/Core/DolphinQt/ConvertDialog.cpp:526
+#: Source/Core/DolphinQt/ConvertDialog.cpp:529
msgid "Dolphin failed to complete the requested action."
msgstr ""
@@ -3557,7 +3649,7 @@ msgstr ""
msgid "Dolphin is a free and open-source GameCube and Wii emulator."
msgstr ""
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:998
msgid "Dolphin is too old for traversal server"
msgstr "A Dolphin túl régi az átjárási szerverhez"
@@ -3571,7 +3663,7 @@ msgstr ""
msgid "Dolphin is unable to verify unlicensed discs."
msgstr ""
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:217
msgid ""
"Dolphin will use this for titles whose region cannot be determined "
"automatically."
@@ -3586,15 +3678,15 @@ msgstr ""
msgid "Domain"
msgstr ""
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:193
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:194
msgid "Don't Update"
-msgstr ""
+msgstr "Ne frissítsen"
-#: Source/Core/DolphinQt/NKitWarningDialog.cpp:53
+#: Source/Core/DolphinQt/NKitWarningDialog.cpp:56
msgid "Don't show this again"
-msgstr ""
+msgstr "Ne mutasd újra"
-#: Source/Core/DiscIO/CompressedBlob.cpp:369
+#: Source/Core/DiscIO/CompressedBlob.cpp:374
msgid "Done compressing disc image."
msgstr "Lemezkép tömörítése kész."
@@ -3607,37 +3699,37 @@ msgstr ""
#. i18n: A double precision floating point number
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:139
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:199
-#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:154
+#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:155
msgid "Double"
msgstr ""
#: Source/Core/Core/FreeLookManager.cpp:89
#: Source/Core/Core/HW/WiimoteEmu/Extension/Guitar.cpp:80
#: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:35
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:43
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:44
#: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:21
#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUAccelerometer.cpp:19
#: Source/Core/InputCommon/ControllerEmu/ControllerEmu.h:24
msgid "Down"
msgstr "Le"
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:86
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:87
msgid "Download Codes"
-msgstr ""
+msgstr "Kódok letöltése"
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:88
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:89
msgid "Download Codes from the WiiRD Database"
-msgstr ""
+msgstr "Kódok letöltése a WiiRD adatbázisból"
-#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:148
+#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:153
msgid "Download Game Covers from GameTDB.com for Use in Grid Mode"
-msgstr ""
+msgstr "Játékborítók letöltése a GameTDB.com-ról Rács módban való használatra"
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:370
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:373
msgid "Download complete"
-msgstr ""
+msgstr "Letöltés sikeres"
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:371
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:374
msgid "Downloaded %1 codes. (added %2)"
msgstr ""
@@ -3650,37 +3742,37 @@ msgstr ""
#: Source/Core/Core/HW/WiimoteEmu/Extension/Drums.cpp:56
#: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:73
msgid "Drum Kit"
-msgstr ""
+msgstr "Dobkészlet"
#: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:210
msgid "Dual Core"
-msgstr ""
+msgstr "Kétmagos"
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:212
msgid "Dual View"
-msgstr ""
+msgstr "Dupla nézet"
-#: Source/Core/Core/HW/EXI/EXI_Device.h:95
+#: Source/Core/Core/HW/EXI/EXI_Device.h:94
msgid "Dummy"
msgstr "Dummy"
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:260
msgid "Dump &ARAM"
-msgstr ""
+msgstr "&ARAM kimentése"
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:259
msgid "Dump &ExRAM"
-msgstr ""
+msgstr "&ExRAM kimentése"
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:261
msgid "Dump &FakeVMEM"
-msgstr ""
+msgstr "&FakeVMEM kimentése"
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:258
msgid "Dump &MRAM"
-msgstr ""
+msgstr "&MRAM kimentése"
-#: Source/Core/DolphinQt/MenuBar.cpp:814
+#: Source/Core/DolphinQt/MenuBar.cpp:806
msgid "Dump Audio"
msgstr "Hang kimentése"
@@ -3692,7 +3784,7 @@ msgstr ""
msgid "Dump EFB Target"
msgstr "EFB cél kimentése"
-#: Source/Core/DolphinQt/MenuBar.cpp:808
+#: Source/Core/DolphinQt/MenuBar.cpp:800
msgid "Dump Frames"
msgstr "Képkockák kimentése"
@@ -3710,11 +3802,11 @@ msgstr "Kimentési út:"
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:102
msgid "Dump XFB Target"
-msgstr ""
+msgstr "XFB cél kimentése"
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:134
msgid "Dump at Internal Resolution"
-msgstr ""
+msgstr "Kimentés belső felbontáson"
#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:375
msgid "Dump decrypted SSL reads"
@@ -3726,7 +3818,7 @@ msgstr ""
#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:369
msgid "Dump options"
-msgstr ""
+msgstr "Beállítások kimentése"
#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:379
msgid "Dump peer certificates"
@@ -3765,12 +3857,12 @@ msgid "Duration of Turbo Button Release (frames):"
msgstr ""
#: Source/Core/DiscIO/Enums.cpp:95
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174
msgid "Dutch"
msgstr "Holland"
-#: Source/Core/DolphinQt/MenuBar.cpp:215
+#: Source/Core/DolphinQt/MenuBar.cpp:207
msgid "E&xit"
msgstr "K&ilépés"
@@ -3786,7 +3878,7 @@ msgid ""
"driver."
msgstr ""
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:185
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:186
msgid ""
"Each player sends their own inputs to the game, with equal buffer size for "
"all players, configured by the host.\n"
@@ -3800,7 +3892,7 @@ msgstr "Korai memória frissítés"
#. i18n: One of the elements in the Skylanders games. Japanese: 土. For official translations
#. in other languages, check the SuperChargers manual at https://support.activision.com/manuals
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:336
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:352
msgid "Earth"
msgstr ""
@@ -3813,14 +3905,14 @@ msgstr ""
msgid "Edit Breakpoint"
msgstr ""
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:426
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:430
msgid "Edit..."
-msgstr ""
+msgstr "Szerkesztés..."
#: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:200
#: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:201
msgid "Editor"
-msgstr ""
+msgstr "Szerkesztő"
#: Source/Core/Core/HW/WiimoteEmu/Extension/Turntable.cpp:79
#: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:160
@@ -3831,7 +3923,7 @@ msgstr "Effekt"
#. used directly by the CPU and may be subject to translation via the MMU to physical addresses.
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:168
msgid "Effective"
-msgstr ""
+msgstr "Effektív"
#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:185
msgid "Effective priority"
@@ -3843,11 +3935,11 @@ msgstr ""
#: Source/Core/Core/HotkeyManager.cpp:29
msgid "Eject Disc"
-msgstr ""
+msgstr "Lemez kiadása"
#. i18n: Elements are a trait of Skylanders figures. For official translations of this term,
#. check the Skylanders SuperChargers manual at https://support.activision.com/manuals
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:289
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:300
msgid "Element"
msgstr ""
@@ -3855,11 +3947,11 @@ msgstr ""
msgid "Embedded Frame Buffer (EFB)"
msgstr "Beágyazott képkocka puffer (EFB)"
-#: Source/Core/Core/State.cpp:541
+#: Source/Core/Core/State.cpp:629
msgid "Empty"
msgstr "Üres"
-#: Source/Core/Core/Core.cpp:246
+#: Source/Core/Core/Core.cpp:247
msgid "Emu Thread already running"
msgstr "Az emulációs szál már fut"
@@ -3867,15 +3959,15 @@ msgstr "Az emulációs szál már fut"
msgid "Emulate Disc Speed"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:60
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:61
msgid "Emulate Infinity Base"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:146
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:157
msgid "Emulate Skylander Portal"
msgstr ""
-#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:110
+#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:111
msgid "Emulate the Wii's Bluetooth adapter"
msgstr ""
@@ -3885,13 +3977,13 @@ msgid ""
"Defaults to True"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:230
+#: Source/Core/DolphinQt/MenuBar.cpp:222
msgid "Emulated USB Devices"
-msgstr ""
+msgstr "Emulált USB esközök"
-#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:141
+#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:142
msgid "Emulated Wii Remote"
-msgstr ""
+msgstr "Emulált Wii Remote"
#: Source/Core/Core/FifoPlayer/FifoDataFile.cpp:277
msgid ""
@@ -3909,36 +4001,44 @@ msgstr ""
msgid "Emulation must be started to record."
msgstr ""
-#: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:29
-#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:33
+#: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:30
+#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:34
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:120
-#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:129
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:402
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:419
+#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:130
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:406
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:423
msgid "Enable"
-msgstr ""
+msgstr "Engedélyezés"
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:86
msgid "Enable API Validation Layers"
msgstr "API-érvényesítési rétegek használata"
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:83
+msgid "Enable Achievement Badges"
+msgstr ""
+
#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:60
msgid "Enable Achievements"
-msgstr ""
+msgstr "Teljesítmények engedélyezése"
#: Source/Core/DolphinQt/Settings/AudioPane.cpp:142
msgid "Enable Audio Stretching"
-msgstr ""
+msgstr "Hangnyújtás engedélyezése"
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:142
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:143
msgid "Enable Cheats"
msgstr "Csalások használata"
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:155
+#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:53
+msgid "Enable Controller Inpu&t"
+msgstr ""
+
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:161
msgid "Enable Custom RTC"
msgstr "Egyéni RTC használata"
-#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:149
+#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:154
msgid "Enable Debugging UI"
msgstr ""
@@ -3946,19 +4046,19 @@ msgstr ""
msgid "Enable Dual Core"
msgstr "Kétmagos mód használata"
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:139
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:140
msgid "Enable Dual Core (speedup)"
msgstr "Kétmagos mód használata (gyorsítás)"
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:88
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:94
msgid "Enable Emulated CPU Clock Override"
msgstr ""
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:118
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:124
msgid "Enable Emulated Memory Size Override"
msgstr ""
-#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:78
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:88
msgid "Enable Encore Achievements"
msgstr ""
@@ -3972,13 +4072,17 @@ msgstr ""
#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:62
msgid "Enable Leaderboards"
-msgstr ""
+msgstr "Ranglisták engedélyezése"
#: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:88
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:66
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:68
msgid "Enable MMU"
msgstr "MMU használata"
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:78
+msgid "Enable Progress Notifications"
+msgstr ""
+
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:156
msgid "Enable Progressive Scan"
msgstr "Progresszív pásztázás használata"
@@ -3992,27 +4096,27 @@ msgid "Enable Rich Presence"
msgstr ""
#: Source/Core/DolphinQt/Config/Mapping/GCPadWiiUConfigDialog.cpp:39
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:353
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:352
msgid "Enable Rumble"
msgstr ""
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:157
msgid "Enable Screen Saver"
msgstr "Képernyővédő használata"
-#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:113
+#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:114
msgid "Enable Speaker Data"
msgstr "Hangszóró adatok bekapcsolása"
#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:72
msgid "Enable Unofficial Achievements"
-msgstr ""
+msgstr "Nem hivatalos teljesítmények engedélyezése"
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:230
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:231
msgid "Enable Usage Statistics Reporting"
msgstr "Használati statisztika jelentése"
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158
msgid "Enable WiiConnect24 via WiiLink"
msgstr ""
@@ -4020,10 +4124,17 @@ msgstr ""
msgid "Enable Wireframe"
msgstr "Vonalháló használata"
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:77
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:82
msgid "Enable Write-Back Cache (slow)"
msgstr ""
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:85
+msgid ""
+"Enable achievement badges.
Displays icons for the player, game, and "
+"achievements. Simple visual option, but will require a small amount of extra "
+"memory and time to download the images."
+msgstr ""
+
#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:64
msgid ""
"Enable competing in RetroAchievements leaderboards.
Displays a brief popup "
+"message whenever the player makes progress on an achievement that tracks an "
+"accumulated value, such as 60 out of 120 stars."
+msgstr ""
+
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:90
+msgid ""
"Enable unlocking achievements in Encore Mode.
Encore Mode re-enables "
"achievements the player has already unlocked on the site so that the player "
"will be notified if they meet the unlock conditions again, useful for custom "
@@ -4062,7 +4180,7 @@ msgstr ""
#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:61
msgid "Enable unlocking achievements. "
-msgstr ""
+msgstr "Teljesítmények feloldásának engedélyezése. "
#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:74
msgid ""
@@ -4086,7 +4204,7 @@ msgstr ""
"Bekapcsolja a lebegőpontos eredményjelzős számolást (Floating Point Result "
"Flag), mely kevés játékhoz szükséges. (BE = Kompatibilis, KI = Gyors)"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:514
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:596
msgid ""
"Enables detection of arbitrary mipmaps, which some games use for special "
"distance-based effects.
May have false positives that result in "
@@ -4097,11 +4215,12 @@ msgid ""
"dolphin_emphasis>"
msgstr ""
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:79
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:84
msgid ""
-"Enables emulation of the CPU write-back cache.\n"
-"Enabling will have a significant impact on performance.\n"
-"This should be left disabled unless absolutely needed."
+"Enables emulation of the CPU write-back cache. Enabling will have a "
+"significant impact on performance. This should be left disabled unless "
+"absolutely needed.
If unsure, leave this unchecked."
+""
msgstr ""
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:365
@@ -4119,7 +4238,7 @@ msgid ""
"this unchecked."
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:522
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:604
msgid ""
"Enables scRGB HDR output (if supported by your graphics backend and "
"monitor). Fullscreen might be required.
This gives post process "
@@ -4142,7 +4261,6 @@ msgid ""
msgstr ""
#: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:100
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:68
msgid ""
"Enables the Memory Management Unit, needed for some games. (ON = Compatible, "
"OFF = Fast)"
@@ -4150,7 +4268,14 @@ msgstr ""
"Bekapcsolja a memória kezelő egységet (Memory Management Unit), mely néhány "
"játékhoz szükséges. (BE = Kompatibilis, KI = Gyors)"
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:193
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:70
+msgid ""
+"Enables the Memory Management Unit, needed for some games. (ON = Compatible, "
+"OFF = Fast)
If unsure, leave this unchecked."
+"dolphin_emphasis>"
+msgstr ""
+
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190
msgid ""
"Enables the WiiLink service for WiiConnect24 channels.\n"
"WiiLink is an alternate provider for the discontinued WiiConnect24 Channels "
@@ -4177,7 +4302,7 @@ msgstr ""
msgid "Encoding"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:615
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:616
msgid ""
"Encountered the following errors while opening save files:\n"
"%1\n"
@@ -4190,12 +4315,12 @@ msgid "Enet Didn't Initialize"
msgstr "Enet nincs inicializálva"
#: Source/Core/DiscIO/Enums.cpp:80
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:85
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:169
msgid "English"
msgstr "Angol"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:59
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:61
#: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:61
msgid "Enhancements"
msgstr "Képjavítások"
@@ -4226,84 +4351,84 @@ msgstr ""
msgid "Enter the DNS server to use:"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1300
+#: Source/Core/DolphinQt/MenuBar.cpp:1286
msgid "Enter the RSO module address:"
msgstr ""
#: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:194
#: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:250
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:261
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:262
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386
#: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:265
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:343
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:349
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:346
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:352
#: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:46
-#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:521
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:256
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:295
-#: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:232
-#: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:259
-#: Source/Core/DolphinQt/ConvertDialog.cpp:424
-#: Source/Core/DolphinQt/ConvertDialog.cpp:471
-#: Source/Core/DolphinQt/ConvertDialog.cpp:525
+#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:539
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:255
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:296
+#: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:229
+#: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:256
+#: Source/Core/DolphinQt/ConvertDialog.cpp:426
+#: Source/Core/DolphinQt/ConvertDialog.cpp:473
+#: Source/Core/DolphinQt/ConvertDialog.cpp:528
#: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:255
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:638
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:644
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:653
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:665
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:684
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:690
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:705
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:713
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:737
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:744
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:637
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:643
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:652
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:664
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:683
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:689
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:704
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:712
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:736
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:743
#: Source/Core/DolphinQt/Debugger/RegisterColumn.cpp:86
#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:282
#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:431
-#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:241
-#: Source/Core/DolphinQt/GBAWidget.cpp:576
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:346
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:376
-#: Source/Core/DolphinQt/Main.cpp:209 Source/Core/DolphinQt/Main.cpp:225
-#: Source/Core/DolphinQt/Main.cpp:232 Source/Core/DolphinQt/MainWindow.cpp:295
-#: Source/Core/DolphinQt/MainWindow.cpp:303
-#: Source/Core/DolphinQt/MainWindow.cpp:1108
-#: Source/Core/DolphinQt/MainWindow.cpp:1494
-#: Source/Core/DolphinQt/MainWindow.cpp:1501
-#: Source/Core/DolphinQt/MainWindow.cpp:1561
-#: Source/Core/DolphinQt/MainWindow.cpp:1568
-#: Source/Core/DolphinQt/MainWindow.cpp:1670
-#: Source/Core/DolphinQt/MenuBar.cpp:1204
-#: Source/Core/DolphinQt/MenuBar.cpp:1284
+#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:237
+#: Source/Core/DolphinQt/GBAWidget.cpp:578
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:347
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:377
+#: Source/Core/DolphinQt/Main.cpp:211 Source/Core/DolphinQt/Main.cpp:227
+#: Source/Core/DolphinQt/Main.cpp:234 Source/Core/DolphinQt/MainWindow.cpp:297
+#: Source/Core/DolphinQt/MainWindow.cpp:305
+#: Source/Core/DolphinQt/MainWindow.cpp:1110
+#: Source/Core/DolphinQt/MainWindow.cpp:1507
+#: Source/Core/DolphinQt/MainWindow.cpp:1514
+#: Source/Core/DolphinQt/MainWindow.cpp:1574
+#: Source/Core/DolphinQt/MainWindow.cpp:1581
+#: Source/Core/DolphinQt/MainWindow.cpp:1690
+#: Source/Core/DolphinQt/MenuBar.cpp:1190
+#: Source/Core/DolphinQt/MenuBar.cpp:1270
+#: Source/Core/DolphinQt/MenuBar.cpp:1293
#: Source/Core/DolphinQt/MenuBar.cpp:1307
-#: Source/Core/DolphinQt/MenuBar.cpp:1321
-#: Source/Core/DolphinQt/MenuBar.cpp:1352
-#: Source/Core/DolphinQt/MenuBar.cpp:1376
-#: Source/Core/DolphinQt/MenuBar.cpp:1597
-#: Source/Core/DolphinQt/MenuBar.cpp:1608
-#: Source/Core/DolphinQt/MenuBar.cpp:1620
-#: Source/Core/DolphinQt/MenuBar.cpp:1642
-#: Source/Core/DolphinQt/MenuBar.cpp:1668
-#: Source/Core/DolphinQt/MenuBar.cpp:1722
-#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:315
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:477
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:738
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:980
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1098
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1108
-#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:334
-#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:340
-#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:347
+#: Source/Core/DolphinQt/MenuBar.cpp:1339
+#: Source/Core/DolphinQt/MenuBar.cpp:1363
+#: Source/Core/DolphinQt/MenuBar.cpp:1584
+#: Source/Core/DolphinQt/MenuBar.cpp:1595
+#: Source/Core/DolphinQt/MenuBar.cpp:1607
+#: Source/Core/DolphinQt/MenuBar.cpp:1629
+#: Source/Core/DolphinQt/MenuBar.cpp:1655
+#: Source/Core/DolphinQt/MenuBar.cpp:1709
+#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:316
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:479
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:740
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:982
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1100
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1110
+#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:332
+#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:338
+#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:345
#: Source/Core/DolphinQt/RenderWidget.cpp:123
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:203
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:224
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:423
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:439
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:460
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:481
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:525
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:562
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:585
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:204
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:225
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:433
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:449
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:470
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:491
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:535
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:572
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:595
#: Source/Core/DolphinQt/Translation.cpp:322
msgid "Error"
msgstr "Hiba"
@@ -4312,13 +4437,13 @@ msgstr "Hiba"
msgid "Error Opening Adapter: %1"
msgstr ""
-#: Source/Core/Core/NetPlayServer.cpp:1493
+#: Source/Core/Core/NetPlayServer.cpp:1497
msgid "Error collecting save data!"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:260
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:526
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:533
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:262
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:613
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:620
msgid "Error converting value"
msgstr ""
@@ -4332,15 +4457,15 @@ msgstr ""
msgid "Error obtaining session list: %1"
msgstr ""
-#: Source/Core/DolphinQt/MainWindow.cpp:296
+#: Source/Core/DolphinQt/MainWindow.cpp:298
msgid "Error occurred while loading some texture packs"
msgstr ""
-#: Source/Core/Core/NetPlayClient.cpp:1847
+#: Source/Core/Core/NetPlayClient.cpp:1851
msgid "Error processing codes."
msgstr ""
-#: Source/Core/Core/NetPlayClient.cpp:1819
+#: Source/Core/Core/NetPlayClient.cpp:1823
msgid "Error processing data."
msgstr ""
@@ -4348,11 +4473,11 @@ msgstr ""
msgid "Error reading file: {0}"
msgstr ""
-#: Source/Core/Core/NetPlayServer.cpp:1529
+#: Source/Core/Core/NetPlayServer.cpp:1533
msgid "Error synchronizing cheat codes!"
msgstr ""
-#: Source/Core/Core/NetPlayServer.cpp:1515
+#: Source/Core/Core/NetPlayServer.cpp:1519
msgid "Error synchronizing save data!"
msgstr ""
@@ -4423,7 +4548,7 @@ msgstr ""
msgid "Euphoria"
msgstr "Eufória"
-#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:282
+#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:274
#: Source/Core/UICommon/NetPlayIndex.cpp:249
msgid "Europe"
msgstr "Európa"
@@ -4452,11 +4577,11 @@ msgstr ""
msgid "Excluded: %1"
msgstr ""
-#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:73
+#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:72
msgid "Excluded: 0"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:107
+#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108
msgid "Exclusive Ubershaders"
msgstr ""
@@ -4502,59 +4627,59 @@ msgstr ""
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:177
msgid "Experimental"
-msgstr ""
+msgstr "Kísérleti"
-#: Source/Core/DolphinQt/MenuBar.cpp:294
+#: Source/Core/DolphinQt/MenuBar.cpp:286
msgid "Export All Wii Saves"
msgstr "Minden Wii mentés exportálása"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:422
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:447
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:492
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:499
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:423
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:448
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:493
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:500
msgid "Export Failed"
-msgstr ""
+msgstr "Sikertelen exportálás"
#: Source/Core/Core/HotkeyManager.cpp:57
msgid "Export Recording"
msgstr "Felvétel exportálása"
-#: Source/Core/DolphinQt/MenuBar.cpp:753
+#: Source/Core/DolphinQt/MenuBar.cpp:745
msgid "Export Recording..."
msgstr "Felvétel exportálása..."
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:437
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:438
msgid "Export Save File"
-msgstr ""
+msgstr "Mentési fájl exportálása"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:454
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:455
msgid "Export Save Files"
-msgstr ""
+msgstr "Mentési fájlok exportálása"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:470
+#: Source/Core/DolphinQt/GameList/GameList.cpp:473
msgid "Export Wii Save"
-msgstr ""
+msgstr "Wii mentés exportálása"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:388
+#: Source/Core/DolphinQt/GameList/GameList.cpp:389
msgid "Export Wii Saves"
-msgstr ""
-
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:117
-msgid "Export as .&gcs..."
-msgstr ""
+msgstr "Wii mentések exportálása"
#: Source/Core/DolphinQt/GCMemcardManager.cpp:118
-msgid "Export as .&sav..."
-msgstr ""
+msgid "Export as .&gcs..."
+msgstr "Exportálás, mint .&gcs..."
-#: Source/Core/DolphinQt/MenuBar.cpp:1133
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:119
+msgid "Export as .&sav..."
+msgstr "Exportálás, mint .&sav..."
+
+#: Source/Core/DolphinQt/MenuBar.cpp:1115
#, c-format
msgctxt ""
msgid "Exported %n save(s)"
-msgstr ""
+msgstr "%n mentés exportálva"
#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:268
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:432
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:434
#: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:47
msgid "Extension"
msgstr "Kiegészítő"
@@ -4567,7 +4692,7 @@ msgstr ""
msgid "Extension Motion Simulation"
msgstr ""
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:520
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:522
msgid "External"
msgstr ""
@@ -4575,37 +4700,37 @@ msgstr ""
msgid "External Frame Buffer (XFB)"
msgstr "Küldő képkockapuffer (XFB)"
-#: Source/Core/DolphinQt/MenuBar.cpp:271
+#: Source/Core/DolphinQt/MenuBar.cpp:263
msgid "Extract Certificates from NAND"
msgstr ""
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:268
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:269
msgid "Extract Entire Disc..."
-msgstr ""
+msgstr "Teljes lemez kibontása..."
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:292
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:293
msgid "Extract Entire Partition..."
-msgstr ""
+msgstr "Teljes partíció kibontása..."
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:299
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:300
msgid "Extract File..."
msgstr "Fájl kibontása..."
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:241
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:242
msgid "Extract Files..."
-msgstr ""
+msgstr "Fájlok kibontása..."
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:251
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:252
msgid "Extract System Data..."
-msgstr ""
-
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:355
-msgid "Extracting All Files..."
-msgstr ""
+msgstr "Rendszeradatok kibontása..."
#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:356
+msgid "Extracting All Files..."
+msgstr "Összes fájl kibontása..."
+
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357
msgid "Extracting Directory..."
-msgstr ""
+msgstr "Könyvtár kibontása..."
#. i18n: FD stands for file descriptor (and in this case refers to sockets, not regular files)
#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330
@@ -4613,25 +4738,27 @@ msgid "FD"
msgstr ""
#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:37
-#: Source/Core/DolphinQt/MenuBar.cpp:228
+#: Source/Core/DolphinQt/MenuBar.cpp:220
msgid "FIFO Player"
msgstr "FIFO lejátszó"
#: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:132
msgid "Failed loading XML."
-msgstr ""
+msgstr "XML betöltése sikertelen."
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:347
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:348
msgid ""
"Failed opening memory card:\n"
"%1"
msgstr ""
+"Memóriakártya megnyitása sikertelen:\n"
+"%1"
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:454
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:456
msgid "Failed to add this session to the NetPlay index: %1"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1669
+#: Source/Core/DolphinQt/MenuBar.cpp:1656
msgid "Failed to append to signature file '%1'"
msgstr ""
@@ -4639,11 +4766,11 @@ msgstr ""
msgid "Failed to claim interface for BT passthrough: {0}"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:574
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:676
msgid "Failed to clear Skylander!"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:575
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:677
msgid "Failed to clear the Skylander from slot(%1)!"
msgstr ""
@@ -4651,7 +4778,7 @@ msgstr ""
msgid "Failed to connect to Redump.org"
msgstr ""
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:981
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:983
msgid "Failed to connect to server: %1"
msgstr ""
@@ -4672,15 +4799,15 @@ msgstr ""
msgid "Failed to create DXGI factory"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:289
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:291
msgid "Failed to create Infinity file"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:678
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:798
msgid "Failed to create Skylander file!"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:679
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:799
msgid ""
"Failed to create Skylander file:\n"
"%1\n"
@@ -4696,7 +4823,7 @@ msgstr ""
msgid "Failed to delete NetPlay memory card. Verify your write permissions."
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:841
+#: Source/Core/DolphinQt/GameList/GameList.cpp:854
msgid "Failed to delete the selected file."
msgstr ""
@@ -4704,38 +4831,38 @@ msgstr ""
msgid "Failed to detach kernel driver for BT passthrough: {0}"
msgstr ""
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:343
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:346
msgid "Failed to download codes."
msgstr "Kódok letöltése sikertelen."
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:738
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:737
msgid "Failed to dump %1: Can't open file"
msgstr ""
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:745
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:744
msgid "Failed to dump %1: Failed to write to file"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:488
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:489
msgctxt ""
msgid "Failed to export %n out of %1 save file(s)."
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:576
+#: Source/Core/DolphinQt/GameList/GameList.cpp:584
msgid "Failed to export the following save files:"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1204
+#: Source/Core/DolphinQt/MenuBar.cpp:1190
msgid "Failed to extract certificates from NAND"
msgstr ""
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386
msgid "Failed to extract file."
-msgstr ""
+msgstr "Fájl kibontása sikertelen."
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:261
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:262
msgid "Failed to extract system data."
-msgstr ""
+msgstr "Rendszeradatok kibontása sikertelen."
#: Source/Core/Core/HW/GCMemcard/GCMemcardDirectory.cpp:655
msgid ""
@@ -4748,29 +4875,29 @@ msgstr ""
msgid "Failed to find one or more D3D symbols"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:565
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:566
msgid "Failed to import \"%1\"."
-msgstr ""
+msgstr "\"%1\" importálása sikertelen."
-#: Source/Core/DolphinQt/MenuBar.cpp:1109
+#: Source/Core/DolphinQt/MenuBar.cpp:1091
msgid ""
"Failed to import save file. Please launch the game once, then try again."
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1103
+#: Source/Core/DolphinQt/MenuBar.cpp:1085
msgid ""
"Failed to import save file. The given file appears to be corrupted or is not "
"a valid Wii save."
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1116
+#: Source/Core/DolphinQt/MenuBar.cpp:1098
msgid ""
"Failed to import save file. Your NAND may be corrupt, or something is "
"preventing access to files within it. Try repairing your NAND (Tools -> "
"Manage NAND -> Check NAND...), then import the save again."
msgstr ""
-#: Source/Core/DolphinQt/MainWindow.cpp:1108
+#: Source/Core/DolphinQt/MainWindow.cpp:1110
msgid "Failed to init core"
msgstr ""
@@ -4785,43 +4912,43 @@ msgstr ""
msgid "Failed to initialize renderer classes"
msgstr ""
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:204
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:205
msgid "Failed to install pack: %1"
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:619
-#: Source/Core/DolphinQt/MenuBar.cpp:1074
+#: Source/Core/DolphinQt/GameList/GameList.cpp:628
+#: Source/Core/DolphinQt/MenuBar.cpp:1056
msgid "Failed to install this title to the NAND."
msgstr ""
-#: Source/Core/DolphinQt/MainWindow.cpp:1594
+#: Source/Core/DolphinQt/MainWindow.cpp:1607
msgid ""
"Failed to listen on port %1. Is another instance of the NetPlay server "
"running?"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1321
-#: Source/Core/DolphinQt/MenuBar.cpp:1376
+#: Source/Core/DolphinQt/MenuBar.cpp:1307
+#: Source/Core/DolphinQt/MenuBar.cpp:1363
msgid "Failed to load RSO module at %1"
msgstr ""
#: Source/Core/VideoBackends/D3D/D3DBase.cpp:46
msgid "Failed to load d3d11.dll"
-msgstr ""
+msgstr "d3d11.dll betöltése sikertelen"
#: Source/Core/VideoBackends/D3DCommon/D3DCommon.cpp:38
msgid "Failed to load dxgi.dll"
-msgstr ""
+msgstr "dxgi.dll betöltése sikertelen"
-#: Source/Core/DolphinQt/MenuBar.cpp:1608
+#: Source/Core/DolphinQt/MenuBar.cpp:1595
msgid "Failed to load map file '%1'"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:720
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:842
msgid "Failed to load the Skylander file!"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:721
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:843
msgid "Failed to load the Skylander file(%1)!\n"
msgstr ""
@@ -4835,11 +4962,15 @@ msgid ""
"update package."
msgstr ""
-#: Source/Core/DolphinQt/GBAWidget.cpp:576
-#: Source/Core/DolphinQt/MainWindow.cpp:1670
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:663
+msgid "Failed to modify Skylander!"
+msgstr ""
+
+#: Source/Core/DolphinQt/GBAWidget.cpp:578
+#: Source/Core/DolphinQt/MainWindow.cpp:1690
#: Source/Core/DolphinQt/RenderWidget.cpp:123
msgid "Failed to open '%1'"
-msgstr ""
+msgstr "'%1' megnyitása sikertelen"
#: Source/Core/Core/IOS/USB/Bluetooth/BTReal.cpp:647
msgid "Failed to open Bluetooth device: {0}"
@@ -4847,11 +4978,11 @@ msgstr ""
#: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:124
msgid "Failed to open config file!"
-msgstr ""
+msgstr "Konfig fájl megnyitása sikertelen!"
#: Source/Core/Core/NetPlayCommon.cpp:26
msgid "Failed to open file \"{0}\"."
-msgstr ""
+msgstr "\"{0}\" fájl megnyitása sikertelen."
#: Source/Core/Core/NetPlayCommon.cpp:184
msgid "Failed to open file \"{0}\". Verify your write permissions."
@@ -4863,40 +4994,40 @@ msgid ""
"Make sure there's an application assigned to open INI files."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:861
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:863
msgid "Failed to open file."
-msgstr ""
+msgstr "A fájl megnyitása sikertelen."
-#: Source/Core/DolphinQt/MainWindow.cpp:1593
+#: Source/Core/DolphinQt/MainWindow.cpp:1606
msgid "Failed to open server"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:164
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:166
msgid "Failed to open the Infinity file!"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:165
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:167
msgid ""
"Failed to open the Infinity file(%1)!\n"
"File may already be in use on the base."
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:696
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:818
msgid "Failed to open the Skylander file!"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:697
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:819
msgid ""
"Failed to open the Skylander file(%1)!\n"
"File may already be in use on the portal."
msgstr ""
-#: Source/Core/DolphinQt/ConvertDialog.cpp:472
+#: Source/Core/DolphinQt/ConvertDialog.cpp:474
msgid "Failed to open the input file \"%1\"."
msgstr ""
-#: Source/Core/DiscIO/CompressedBlob.cpp:282 Source/Core/DiscIO/FileBlob.cpp:53
-#: Source/Core/DiscIO/WIABlob.cpp:2037
+#: Source/Core/DiscIO/CompressedBlob.cpp:287 Source/Core/DiscIO/FileBlob.cpp:58
+#: Source/Core/DiscIO/WIABlob.cpp:2043
msgid ""
"Failed to open the output file \"{0}\".\n"
"Check that you have permissions to write the target folder and that the "
@@ -4916,35 +5047,35 @@ msgstr ""
msgid "Failed to read DFF file."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:863
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:865
msgid "Failed to read from file."
msgstr ""
-#: Source/Core/DiscIO/CompressedBlob.cpp:373 Source/Core/DiscIO/FileBlob.cpp:93
-#: Source/Core/DiscIO/WIABlob.cpp:2052
+#: Source/Core/DiscIO/CompressedBlob.cpp:378 Source/Core/DiscIO/FileBlob.cpp:98
+#: Source/Core/DiscIO/WIABlob.cpp:2058
msgid "Failed to read from the input file \"{0}\"."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:423
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:641
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:424
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:642
msgid "Failed to read selected savefile(s) from memory card."
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:173
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:175
msgid "Failed to read the Infinity file!"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:174
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:176
msgid ""
"Failed to read the Infinity file(%1)!\n"
"File was too small."
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:706
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:828
msgid "Failed to read the Skylander file!"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:707
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:829
msgid ""
"Failed to read the Skylander file(%1)!\n"
"File was too small."
@@ -4952,20 +5083,20 @@ msgstr ""
#: Source/Core/Core/Movie.cpp:1037
msgid "Failed to read {0}"
-msgstr ""
+msgstr "{0} olvasása sikertelen"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:668
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:669
msgid "Failed to remove file."
msgstr ""
-#: Source/Core/DolphinQt/ConvertDialog.cpp:453
+#: Source/Core/DolphinQt/ConvertDialog.cpp:455
msgid ""
"Failed to remove junk data from file \"%1\".\n"
"\n"
"Would you like to convert it without removing junk data?"
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:647
+#: Source/Core/DolphinQt/GameList/GameList.cpp:658
msgid "Failed to remove this title from the NAND."
msgstr ""
@@ -4981,27 +5112,34 @@ msgstr ""
msgid "Failed to reset NetPlay redirect folder. Verify your write permissions."
msgstr ""
-#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:241
+#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:237
msgid "Failed to save FIFO log."
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1598
+#: Source/Core/DolphinQt/MenuBar.cpp:1585
msgid "Failed to save code map to path '%1'"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1642
+#: Source/Core/DolphinQt/MenuBar.cpp:1629
msgid "Failed to save signature file '%1'"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1621
+#: Source/Core/DolphinQt/MenuBar.cpp:1608
msgid "Failed to save symbol map to path '%1'"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1723
+#: Source/Core/DolphinQt/MenuBar.cpp:1710
msgid "Failed to save to signature file '%1'"
msgstr ""
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:225
+#: Source/Core/Core/Core.cpp:548
+msgid ""
+"Failed to sync SD card with folder. All changes made this session will be "
+"discarded on next boot if you do not manually re-issue a resync in Config > "
+"Wii > SD Card Settings > Convert File to Folder Now!"
+msgstr ""
+
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:226
msgid "Failed to uninstall pack: %1"
msgstr ""
@@ -5011,19 +5149,19 @@ msgstr "A BT.DINF írása a SYSCONF fájlba sikertelen"
#: Source/Core/Core/NetPlayClient.cpp:1173
msgid "Failed to write Mii data."
-msgstr ""
+msgstr "Mii adat írása sikertelen."
#: Source/Core/Core/NetPlayClient.cpp:1258
msgid "Failed to write Wii save."
-msgstr ""
+msgstr "Wii mentés írása sikertelen."
#: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:131
msgid "Failed to write config file!"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:573
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:676
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:691
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:574
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:677
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:692
msgid "Failed to write modified memory card to disk."
msgstr ""
@@ -5031,33 +5169,33 @@ msgstr ""
msgid "Failed to write redirected save."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:447
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:448
msgid "Failed to write savefile to disk."
msgstr ""
-#: Source/Core/DiscIO/CompressedBlob.cpp:377 Source/Core/DiscIO/FileBlob.cpp:99
-#: Source/Core/DiscIO/WIABlob.cpp:2056
+#: Source/Core/DiscIO/CompressedBlob.cpp:382
+#: Source/Core/DiscIO/FileBlob.cpp:104 Source/Core/DiscIO/WIABlob.cpp:2062
msgid ""
"Failed to write the output file \"{0}\".\n"
"Check that you have enough space available on the target drive."
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:617
-#: Source/Core/DolphinQt/GameList/GameList.cpp:645
-#: Source/Core/DolphinQt/GameList/GameList.cpp:840
-#: Source/Core/DolphinQt/MenuBar.cpp:1074
+#: Source/Core/DolphinQt/GameList/GameList.cpp:626
+#: Source/Core/DolphinQt/GameList/GameList.cpp:656
+#: Source/Core/DolphinQt/GameList/GameList.cpp:853
+#: Source/Core/DolphinQt/MenuBar.cpp:1056
msgid "Failure"
msgstr ""
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:183
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:184
msgid "Fair Input Delay"
msgstr ""
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:199
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:200
msgid "Fallback Region"
msgstr ""
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:210
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:211
msgid "Fallback Region:"
msgstr ""
@@ -5081,58 +5219,62 @@ msgstr ""
msgid "Field of View"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:233
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:235
msgid "Figure Number:"
msgstr ""
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:380
+msgid "Figure type"
+msgstr ""
+
#: Source/Core/DolphinQt/Config/InfoWidget.cpp:46
msgid "File Details"
-msgstr ""
+msgstr "Fájl részletei"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:991
+#: Source/Core/DolphinQt/GameList/GameList.cpp:1005
#: Source/Core/DolphinQt/GameList/GameListModel.cpp:229
-#: Source/Core/DolphinQt/MenuBar.cpp:652
+#: Source/Core/DolphinQt/MenuBar.cpp:644
msgid "File Format"
-msgstr ""
+msgstr "Fájlformátum"
#: Source/Core/DolphinQt/Config/InfoWidget.cpp:65
msgid "File Format:"
-msgstr ""
+msgstr "Fájl formátuma:"
#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:80
msgid "File Info"
msgstr "Fájl információ"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:986
+#: Source/Core/DolphinQt/GameList/GameList.cpp:1000
#: Source/Core/DolphinQt/GameList/GameListModel.cpp:223
-#: Source/Core/DolphinQt/MenuBar.cpp:647
+#: Source/Core/DolphinQt/MenuBar.cpp:639
msgid "File Name"
msgstr "Fájlnév"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:987
+#: Source/Core/DolphinQt/GameList/GameList.cpp:1001
#: Source/Core/DolphinQt/GameList/GameListModel.cpp:225
-#: Source/Core/DolphinQt/MenuBar.cpp:648
+#: Source/Core/DolphinQt/MenuBar.cpp:640
msgid "File Path"
-msgstr ""
+msgstr "Fájl útvonala:"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:990
-#: Source/Core/DolphinQt/MenuBar.cpp:651
+#: Source/Core/DolphinQt/GameList/GameList.cpp:1004
+#: Source/Core/DolphinQt/MenuBar.cpp:643
msgid "File Size"
msgstr "Fájlméret"
#: Source/Core/DolphinQt/Config/InfoWidget.cpp:58
msgid "File Size:"
-msgstr ""
+msgstr "Fájl mérete:"
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:349
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:352
msgid "File contained no codes."
msgstr "A fájl nem tartalmazott kódokat."
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:149
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:150
msgid "Filename"
-msgstr ""
+msgstr "Fájlnév"
-#: Source/Core/DiscIO/CompressedBlob.cpp:289
+#: Source/Core/DiscIO/CompressedBlob.cpp:294
msgid "Files opened, ready to compress."
msgstr "Fájlok megnyitva, tömörítésre kész."
@@ -5142,11 +5284,11 @@ msgid ""
"{1}"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:833
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:835
msgid "Filesize does not match any known GameCube Memory Card size."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:836
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:838
msgid "Filesize in header mismatches actual card size."
msgstr ""
@@ -5154,9 +5296,9 @@ msgstr ""
msgid "Filesystem"
msgstr "Fájlrendszer"
-#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:102
+#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:103
msgid "Filters"
-msgstr ""
+msgstr "Szűrők"
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:152
msgid "Find &Next"
@@ -5168,29 +5310,31 @@ msgstr ""
#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:922
msgid "Finish Calibration"
-msgstr ""
+msgstr "Kalibrálás befejezése"
-#: Source/Core/DolphinQt/WiiUpdate.cpp:109
+#: Source/Core/DolphinQt/WiiUpdate.cpp:110
msgid ""
"Finishing the update...\n"
"This can take a while."
msgstr ""
+"Frissítés befejezése...\n"
+"Ez eltarthat egy ideig."
#. i18n: One of the elements in the Skylanders games. Japanese: 火. For official translations
#. in other languages, check the SuperChargers manual at https://support.activision.com/manuals
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:333
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:349
msgid "Fire"
msgstr ""
-#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:40
+#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:41
msgid "First Person"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:127
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:128
msgid "Fix Checksums"
msgstr "Ellenőrzőösszeg javítása"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:690
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:691
msgid "Fix Checksums Failed"
msgstr ""
@@ -5200,7 +5344,7 @@ msgstr ""
#. i18n: These are the kinds of flags that a CPU uses (e.g. carry),
#. not the kinds of flags that represent e.g. countries
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:166
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167
#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:87
msgid "Flags"
msgstr ""
@@ -5209,12 +5353,12 @@ msgstr ""
#. i18n: Floating-point (non-integer) number
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:138
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:198
-#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:152
+#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:153
#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97
msgid "Float"
msgstr ""
-#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:565
+#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:566
msgid "Follow &branch"
msgstr ""
@@ -5234,35 +5378,35 @@ msgid ""
"\">refer to this page."
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:57
+#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:58
msgid "Force 16:9"
msgstr "16:9 kényszerítése"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:117
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:152
msgid "Force 24-Bit Color"
-msgstr ""
+msgstr "24-Bites szín kényszerítése"
-#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:57
+#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:58
msgid "Force 4:3"
msgstr "4:3 kényszerítése"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:96
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:115
msgid "Force Linear"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:103
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:122
msgid "Force Linear and 16x Anisotropic"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:97
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:116
msgid "Force Linear and 2x Anisotropic"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:99
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:118
msgid "Force Linear and 4x Anisotropic"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:101
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:120
msgid "Force Linear and 8x Anisotropic"
msgstr ""
@@ -5270,7 +5414,7 @@ msgstr ""
msgid "Force Listen Port:"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:95
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:114
msgid "Force Nearest"
msgstr ""
@@ -5282,7 +5426,7 @@ msgstr ""
msgid "Forced on because %1 doesn't support geometry shaders."
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:474
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:556
msgid ""
"Forces the game to output graphics for any aspect ratio. Use with \"Aspect "
"Ratio\" set to \"Force 16:9\" to force 4:3-only games to run at 16:9."
@@ -5292,7 +5436,7 @@ msgid ""
""
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:503
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:585
msgid ""
"Forces the game to render the RGB color channels in 24-bit, thereby "
"increasing quality by reducing color banding.
Has no impact on "
@@ -5300,9 +5444,9 @@ msgid ""
"unsure, leave this checked."
msgstr ""
-#: Source/Core/DolphinQt/ConvertDialog.cpp:59
+#: Source/Core/DolphinQt/ConvertDialog.cpp:60
msgid "Format:"
-msgstr ""
+msgstr "Formátum:"
#: Source/Core/Core/FreeLookManager.cpp:92
#: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:24
@@ -5366,19 +5510,19 @@ msgstr ""
msgid "France"
msgstr "Francia"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:311
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:312
msgid "Free Blocks: %1"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:312
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:313
msgid "Free Files: %1"
msgstr ""
-#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:42
+#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:43
msgid "Free Look Control Type"
msgstr ""
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:468
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:470
msgid "Free Look Controller %1"
msgstr ""
@@ -5386,7 +5530,7 @@ msgstr ""
msgid "Free Look Settings"
msgstr ""
-#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:54
+#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:55
msgid ""
"Free Look allows for manipulation of the in-game camera. Different camera "
"types are available from the dropdown.
Nel dubbio, lascia "
"deselezionato."
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:508
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:590
msgid ""
"Disables the blending of adjacent rows when copying the EFB. This is known "
"in some games as \"deflickering\" or \"smoothing\".
Disabling the "
@@ -3746,7 +3854,7 @@ msgstr ""
"in immagini più nitide. Causa alcuni difetti grafici."
"
Nel dubbio, lascia selezionato."
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:96
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:97
msgid "Disc"
msgstr "Disco"
@@ -3756,7 +3864,7 @@ msgstr "Annulla"
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:182
msgid "Display Type"
-msgstr "Tipo Display"
+msgstr "Tipo display"
#: Source/Core/DolphinQt/CheatSearchWidget.cpp:232
msgid "Display values in Hex"
@@ -3785,25 +3893,25 @@ msgstr "Distanza"
msgid "Distance of travel from neutral position."
msgstr "Distanza di movimento dalla posizione neutrale."
-#: Source/Core/DolphinQt/Main.cpp:259
+#: Source/Core/DolphinQt/Main.cpp:264
msgid "Do you authorize Dolphin to report information to Dolphin's developers?"
msgstr "Autorizzi Dolphin a inviare informazioni agli sviluppatori di Dolphin?"
-#: Source/Core/DolphinQt/MainWindow.cpp:1692
+#: Source/Core/DolphinQt/MainWindow.cpp:1712
msgid "Do you want to add \"%1\" to the list of Game Paths?"
msgstr "Vuoi aggiungere \"%1\" alla lista dei Percorsi di Gioco?"
-#: Source/Core/DolphinQt/MenuBar.cpp:1241
+#: Source/Core/DolphinQt/MenuBar.cpp:1227
msgid "Do you want to clear the list of symbol names?"
msgstr "Vuoi cancellare la lista dei nomi dei simboli?"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:658
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:659
#, c-format
msgctxt ""
msgid "Do you want to delete the %n selected save file(s)?"
-msgstr "Vuoi eliminare i %n file di salvataggio selezionati?"
+msgstr "Vuoi eliminare %n file di salvataggio selezionato/i?"
-#: Source/Core/DolphinQt/MainWindow.cpp:933
+#: Source/Core/DolphinQt/MainWindow.cpp:935
msgid "Do you want to stop the current emulation?"
msgstr "Vuoi interrompere l'emulazione in corso?"
@@ -3815,35 +3923,35 @@ msgstr "Vuoi provare a correggere la NAND?"
msgid "Dolby Pro Logic II Decoder"
msgstr "Decoder Dolby Pro Logic II"
-#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:219
-#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:230
+#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:215
+#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:226
msgid "Dolphin FIFO Log (*.dff)"
msgstr "Log FIFO Dolphin (*.dff)"
-#: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:327
+#: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:326
msgid "Dolphin Game Mod Preset"
msgstr "Preset Dolphin Game Mod"
-#: Source/Core/DolphinQt/MenuBar.cpp:1536
-#: Source/Core/DolphinQt/MenuBar.cpp:1553
-#: Source/Core/DolphinQt/MenuBar.cpp:1572
+#: Source/Core/DolphinQt/MenuBar.cpp:1523
+#: Source/Core/DolphinQt/MenuBar.cpp:1540
+#: Source/Core/DolphinQt/MenuBar.cpp:1559
msgid "Dolphin Map File (*.map)"
-msgstr "File Mappa Dolphin (*.map)"
+msgstr "File mappa Dolphin (*.map)"
-#: Source/Core/DolphinQt/MenuBar.cpp:73
+#: Source/Core/DolphinQt/MenuBar.cpp:74
msgid "Dolphin Signature CSV File"
-msgstr "File Signature CSV Dolphin"
+msgstr "File signature CSV Dolphin"
-#: Source/Core/DolphinQt/MenuBar.cpp:73
+#: Source/Core/DolphinQt/MenuBar.cpp:74
msgid "Dolphin Signature File"
-msgstr "File Signature Dolphin"
+msgstr "File signature Dolphin"
-#: Source/Core/DolphinQt/MainWindow.cpp:1772
-#: Source/Core/DolphinQt/MainWindow.cpp:1843
+#: Source/Core/DolphinQt/MainWindow.cpp:1823
+#: Source/Core/DolphinQt/MainWindow.cpp:1894
msgid "Dolphin TAS Movies (*.dtm)"
msgstr "Filmati TAS Dolphin (*.dtm)"
-#: Source/Core/DolphinQt/ConvertDialog.cpp:326
+#: Source/Core/DolphinQt/ConvertDialog.cpp:327
msgid ""
"Dolphin can't convert NKit files to non-NKit files. Converting an NKit file "
"in Dolphin will result in another NKit file.\n"
@@ -3862,7 +3970,7 @@ msgstr ""
"\n"
"Vuoi continuare lo stesso?"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:279
+#: Source/Core/DolphinQt/GameList/GameList.cpp:280
msgid ""
"Dolphin could not find any GameCube/Wii ISOs or WADs.\n"
"Double-click here to set a games directory..."
@@ -3870,7 +3978,7 @@ msgstr ""
"Non è stato possibile trovare ISO GameCube/WII o WAD.\n"
"Doppioclicca qui per impostare una cartella di gioco."
-#: Source/Core/DolphinQt/ConvertDialog.cpp:526
+#: Source/Core/DolphinQt/ConvertDialog.cpp:529
msgid "Dolphin failed to complete the requested action."
msgstr "Dolphin non è riuscito a completare l'azione richiesta."
@@ -3882,7 +3990,7 @@ msgstr "Dolphin non è riuscito a completare l'azione richiesta."
msgid "Dolphin is a free and open-source GameCube and Wii emulator."
msgstr "Dolphin è un emulatore di GameCube e Wii gratuito e open-source."
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:998
msgid "Dolphin is too old for traversal server"
msgstr "Dolphin è troppo vecchio per il server traversal"
@@ -3898,7 +4006,7 @@ msgstr ""
msgid "Dolphin is unable to verify unlicensed discs."
msgstr "Dolphin non è in grado di verificare dischi senza licenza."
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:217
msgid ""
"Dolphin will use this for titles whose region cannot be determined "
"automatically."
@@ -3915,15 +4023,15 @@ msgstr "Il sistema codici di Dolphin è attualmente disabilitato."
msgid "Domain"
msgstr "Dominio"
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:193
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:194
msgid "Don't Update"
msgstr "Non aggiornare"
-#: Source/Core/DolphinQt/NKitWarningDialog.cpp:53
+#: Source/Core/DolphinQt/NKitWarningDialog.cpp:56
msgid "Don't show this again"
msgstr "Non mostrare più"
-#: Source/Core/DiscIO/CompressedBlob.cpp:369
+#: Source/Core/DiscIO/CompressedBlob.cpp:374
msgid "Done compressing disc image."
msgstr "Ho finito di comprimere l'immagine disco"
@@ -3931,42 +4039,42 @@ msgstr "Ho finito di comprimere l'immagine disco"
#. Labeled 戸じめ (in Japanese) on the actual controller.
#: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:55
msgid "Doors Locked"
-msgstr "Porte Bloccate"
+msgstr "Porte bloccate"
#. i18n: A double precision floating point number
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:139
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:199
-#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:154
+#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:155
msgid "Double"
msgstr "Double"
#: Source/Core/Core/FreeLookManager.cpp:89
#: Source/Core/Core/HW/WiimoteEmu/Extension/Guitar.cpp:80
#: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:35
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:43
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:44
#: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:21
#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUAccelerometer.cpp:19
#: Source/Core/InputCommon/ControllerEmu/ControllerEmu.h:24
msgid "Down"
msgstr "Giù"
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:86
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:87
msgid "Download Codes"
-msgstr "Scarica Codici"
+msgstr "Scarica codici"
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:88
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:89
msgid "Download Codes from the WiiRD Database"
-msgstr "Scarica Codici dal Database WiiRD"
+msgstr "Scarica codici dal Database WiiRD"
-#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:148
+#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:153
msgid "Download Game Covers from GameTDB.com for Use in Grid Mode"
msgstr "Scarica le Copertine dei Giochi da GameTDB.com per la Modalità Griglia"
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:370
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:373
msgid "Download complete"
msgstr "Download completato"
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:371
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:374
msgid "Downloaded %1 codes. (added %2)"
msgstr "Scaricati %1 codici. (aggiunti %2)"
@@ -3974,7 +4082,7 @@ msgstr "Scaricati %1 codici. (aggiunti %2)"
#: Source/Core/Core/HW/WiimoteEmu/Extension/DrawsomeTablet.cpp:25
#: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:203
msgid "Drawsome Tablet"
-msgstr "Drawsome Tablet"
+msgstr "Drawsome tablet"
#: Source/Core/Core/HW/WiimoteEmu/Extension/Drums.cpp:56
#: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:73
@@ -3987,9 +4095,9 @@ msgstr "Dual Core"
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:212
msgid "Dual View"
-msgstr "Doppia Visuale"
+msgstr "Doppia visuale"
-#: Source/Core/Core/HW/EXI/EXI_Device.h:95
+#: Source/Core/Core/HW/EXI/EXI_Device.h:94
msgid "Dummy"
msgstr "Fittizio"
@@ -4009,21 +4117,21 @@ msgstr "Dump &FakeVMEM"
msgid "Dump &MRAM"
msgstr "Dump &MRAM"
-#: Source/Core/DolphinQt/MenuBar.cpp:814
+#: Source/Core/DolphinQt/MenuBar.cpp:806
msgid "Dump Audio"
-msgstr "Dump Audio"
+msgstr "Dump audio"
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:121
msgid "Dump Base Textures"
-msgstr "Dump Texture Base"
+msgstr "Dump texture base"
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:101
msgid "Dump EFB Target"
-msgstr "Dump del Target EFB"
+msgstr "Dump del target EFB"
-#: Source/Core/DolphinQt/MenuBar.cpp:808
+#: Source/Core/DolphinQt/MenuBar.cpp:800
msgid "Dump Frames"
-msgstr "Dump dei Frame"
+msgstr "Dump dei frame"
#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:380
msgid "Dump GameCube BBA traffic"
@@ -4035,7 +4143,7 @@ msgstr "Dump Mip Map"
#: Source/Core/DolphinQt/Settings/PathPane.cpp:202
msgid "Dump Path:"
-msgstr "Percorso Dump:"
+msgstr "Percorso dump:"
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:102
msgid "Dump XFB Target"
@@ -4043,7 +4151,7 @@ msgstr "Dump del Target XFB"
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:134
msgid "Dump at Internal Resolution"
-msgstr "Dump a Risoluzione Interna"
+msgstr "Dump a risoluzione interna"
#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:375
msgid "Dump decrypted SSL reads"
@@ -4096,19 +4204,19 @@ msgstr ""
#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:58
msgid "Duration of Turbo Button Press (frames):"
-msgstr "Durata Pressione Pulsante Turbo (in frame):"
+msgstr "Durata pressione pulsante turbo (in frame):"
#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:64
msgid "Duration of Turbo Button Release (frames):"
-msgstr "Durata Rilascio Pulsante Turbo (in frame):"
+msgstr "Durata rilascio pulsante turbo (in frame):"
#: Source/Core/DiscIO/Enums.cpp:95
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174
msgid "Dutch"
msgstr "Olandese"
-#: Source/Core/DolphinQt/MenuBar.cpp:215
+#: Source/Core/DolphinQt/MenuBar.cpp:207
msgid "E&xit"
msgstr "&Esci"
@@ -4128,7 +4236,7 @@ msgstr ""
"potrebbe essere necessario un riavvio per permettere a Windows di "
"riconoscere il nuovo driver."
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:185
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:186
msgid ""
"Each player sends their own inputs to the game, with equal buffer size for "
"all players, configured by the host.\n"
@@ -4142,11 +4250,11 @@ msgstr ""
#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:122
msgid "Early Memory Updates"
-msgstr "Aggiornamenti Anticipati della Memoria"
+msgstr "Aggiornamenti anticipati della memoria"
#. i18n: One of the elements in the Skylanders games. Japanese: 土. For official translations
#. in other languages, check the SuperChargers manual at https://support.activision.com/manuals
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:336
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:352
msgid "Earth"
msgstr "Terra"
@@ -4157,9 +4265,9 @@ msgstr "Est Asia"
#: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:40
#: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:60
msgid "Edit Breakpoint"
-msgstr "Modifica Punto di Interruzione"
+msgstr "Modifica punto di interruzione"
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:426
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:430
msgid "Edit..."
msgstr "Modifica..."
@@ -4189,11 +4297,11 @@ msgstr "EiB"
#: Source/Core/Core/HotkeyManager.cpp:29
msgid "Eject Disc"
-msgstr "Espelli Disco"
+msgstr "Espelli disco"
#. i18n: Elements are a trait of Skylanders figures. For official translations of this term,
#. check the Skylanders SuperChargers manual at https://support.activision.com/manuals
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:289
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:300
msgid "Element"
msgstr "Elemento"
@@ -4201,27 +4309,27 @@ msgstr "Elemento"
msgid "Embedded Frame Buffer (EFB)"
msgstr "Embedded Frame Buffer (EFB)"
-#: Source/Core/Core/State.cpp:541
+#: Source/Core/Core/State.cpp:629
msgid "Empty"
msgstr "Vuoto"
-#: Source/Core/Core/Core.cpp:246
+#: Source/Core/Core/Core.cpp:247
msgid "Emu Thread already running"
-msgstr "Thread dell'Emulatore già in esecuzione"
+msgstr "Thread dell'emulatore già in esecuzione"
#: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:91
msgid "Emulate Disc Speed"
-msgstr "Emula Velocità Disco"
+msgstr "Emula velocità disco"
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:60
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:61
msgid "Emulate Infinity Base"
msgstr "Emula Base Infinity"
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:146
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:157
msgid "Emulate Skylander Portal"
msgstr "Emula Skylander Portal"
-#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:110
+#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:111
msgid "Emulate the Wii's Bluetooth adapter"
msgstr "Emula l'adattatore Bluetooth del Wii"
@@ -4233,13 +4341,13 @@ msgstr ""
"Emula la velocità disco dell'hardware reale. Disabilitarlo potrebbe causare "
"instabilità. L'impostazione predefinita è Abilitato"
-#: Source/Core/DolphinQt/MenuBar.cpp:230
+#: Source/Core/DolphinQt/MenuBar.cpp:222
msgid "Emulated USB Devices"
-msgstr "Dispositivi USB Emulati"
+msgstr "Dispositivi USB emulati"
-#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:141
+#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:142
msgid "Emulated Wii Remote"
-msgstr "Wii Remote Emulato"
+msgstr "Wii Remote emulato"
#: Source/Core/Core/FifoPlayer/FifoDataFile.cpp:277
msgid ""
@@ -4254,62 +4362,70 @@ msgstr ""
#: Source/Core/Core/HotkeyManager.cpp:335
#: Source/Core/DolphinQt/Config/Mapping/HotkeyGeneral.cpp:26
msgid "Emulation Speed"
-msgstr "Velocità di Emulazione"
+msgstr "Velocità di emulazione"
#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:182
msgid "Emulation must be started to record."
msgstr "L'emulazione deve essere iniziata per poter registrare"
-#: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:29
-#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:33
+#: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:30
+#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:34
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:120
-#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:129
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:402
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:419
+#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:130
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:406
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:423
msgid "Enable"
msgstr "Attiva"
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:86
msgid "Enable API Validation Layers"
-msgstr "Abilita Layer di Validazione API"
+msgstr "Abilita layer di validazione API"
+
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:83
+msgid "Enable Achievement Badges"
+msgstr "Abilita medaglie achievement"
#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:60
msgid "Enable Achievements"
-msgstr "Abilita Achievement"
+msgstr "Abilita achievement"
#: Source/Core/DolphinQt/Settings/AudioPane.cpp:142
msgid "Enable Audio Stretching"
-msgstr "Abilita Audio Stretching"
+msgstr "Abilita audio stretching"
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:142
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:143
msgid "Enable Cheats"
-msgstr "Abilita Trucchi"
+msgstr "Abilita trucchi"
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:155
+#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:53
+msgid "Enable Controller Inpu&t"
+msgstr "Abilita Inpu&t Controller"
+
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:161
msgid "Enable Custom RTC"
-msgstr "Abilita RTC Custom"
+msgstr "Abilita RTC personalizzato"
-#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:149
+#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:154
msgid "Enable Debugging UI"
-msgstr "Abilita UI Debugging"
+msgstr "Abilita UI debugging"
#: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:87
msgid "Enable Dual Core"
msgstr "Abilita Dual Core"
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:139
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:140
msgid "Enable Dual Core (speedup)"
msgstr "Abilita Dual Core (aumenta la velocità)"
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:88
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:94
msgid "Enable Emulated CPU Clock Override"
-msgstr "Abilita override del clock della CPU Emulata"
+msgstr "Abilita override del clock della CPU emulata"
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:118
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:124
msgid "Enable Emulated Memory Size Override"
-msgstr "Abilità Override Dimensione Memoria Emulata"
+msgstr "Abilità override dimensione memoria emulata"
-#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:78
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:88
msgid "Enable Encore Achievements"
msgstr "Abilita Achievement Encore"
@@ -4319,61 +4435,76 @@ msgstr "Abilita FPRF"
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:105
msgid "Enable Graphics Mods"
-msgstr "Abilita Mod Grafiche"
+msgstr "Abilita mod grafiche"
#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:62
msgid "Enable Leaderboards"
-msgstr "Abilita Leaderboard"
+msgstr "Abilita classifica"
#: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:88
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:66
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:68
msgid "Enable MMU"
msgstr "Abilita MMU"
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:78
+msgid "Enable Progress Notifications"
+msgstr "Abilita Notifica Avanzamento"
+
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:156
msgid "Enable Progressive Scan"
-msgstr "Abilita Scansione Progressiva"
+msgstr "Abilita scansione progressiva"
#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:45
msgid "Enable RetroAchievements.org Integration"
-msgstr "Abilita Integrazione RetroAchievements.org"
+msgstr "Abilita integrazione RetroAchievements.org"
#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:66
msgid "Enable Rich Presence"
msgstr "Abilita Rich Presence"
#: Source/Core/DolphinQt/Config/Mapping/GCPadWiiUConfigDialog.cpp:39
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:353
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:352
msgid "Enable Rumble"
-msgstr "Abilita Vibrazione"
+msgstr "Abilita vibrazione"
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:157
msgid "Enable Screen Saver"
-msgstr "Abilita Screen Saver"
+msgstr "Abilita screen saver"
-#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:113
+#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:114
msgid "Enable Speaker Data"
-msgstr "Abilita Dati Altoparlante"
+msgstr "Abilita dati altoparlante"
#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:72
msgid "Enable Unofficial Achievements"
-msgstr "Abilita Achievement non Ufficiali"
+msgstr "Abilita achievement non ufficiali"
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:230
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:231
msgid "Enable Usage Statistics Reporting"
-msgstr "Abilita Report Statistiche d'Uso"
+msgstr "Abilita report statistiche d'uso"
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158
msgid "Enable WiiConnect24 via WiiLink"
msgstr "Abilita WiiConnect24 tramite WiiLink"
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:81
msgid "Enable Wireframe"
-msgstr "Abilita Wireframe"
+msgstr "Abilita wireframe"
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:77
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:82
msgid "Enable Write-Back Cache (slow)"
-msgstr "Abilita Cache Write-Back (lento)"
+msgstr "Abilita cache write-back (lento)"
+
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:85
+msgid ""
+"Enable achievement badges.
Displays icons for the player, game, and "
+"achievements. Simple visual option, but will require a small amount of extra "
+"memory and time to download the images."
+msgstr ""
+"Abilita le medaglie per gli achievement.
Mostra delle icone per il "
+"giocatore, il gioco, e gli achievement. È una semplice opzione visiva, ma "
+"richiede una piccola quantità di memoria extra e del tempo per scaricare le "
+"immagini."
#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:64
msgid ""
@@ -4401,8 +4532,8 @@ msgid ""
"problems in some games. (ON = Compatible, OFF = Unlocked)"
msgstr ""
"Abilita l'emulazione della velocità del disco. Disabilitarlo potrebbe "
-"causare crash e diversi problemi in alcuni giochi. (ON = Compatibile, OFF = "
-"Sbloccato)"
+"causare crash e diversi problemi in alcuni giochi. (ON = Compatibilità, OFF "
+"= Sbloccato)"
#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:47
msgid ""
@@ -4418,6 +4549,16 @@ msgstr ""
#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:80
msgid ""
+"Enable progress notifications on achievements.
Displays a brief popup "
+"message whenever the player makes progress on an achievement that tracks an "
+"accumulated value, such as 60 out of 120 stars."
+msgstr ""
+"Abilita la notifica di avanzamento per gli achievement.
Mostra un "
+"messaggio a scomparsa ogni volta che il giocatore avanza nel progresso "
+"cumulativo di un achievement, come la raccolta di 60 stelle su 120."
+
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:90
+msgid ""
"Enable unlocking achievements in Encore Mode.
Encore Mode re-enables "
"achievements the player has already unlocked on the site so that the player "
"will be notified if they meet the unlock conditions again, useful for custom "
@@ -4460,7 +4601,7 @@ msgstr ""
"Abilita il calcolo rapido delle unità a virgola mobile, necessario per "
"alcuni giochi. (ON = Compatibilità, OFF = Velocità)"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:514
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:596
msgid ""
"Enables detection of arbitrary mipmaps, which some games use for special "
"distance-based effects.
May have false positives that result in "
@@ -4479,15 +4620,17 @@ msgstr ""
"Texture GPU.
Nel dubbio, lascia selezionato."
"dolphin_emphasis>"
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:79
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:84
msgid ""
-"Enables emulation of the CPU write-back cache.\n"
-"Enabling will have a significant impact on performance.\n"
-"This should be left disabled unless absolutely needed."
+"Enables emulation of the CPU write-back cache. Enabling will have a "
+"significant impact on performance. This should be left disabled unless "
+"absolutely needed.
If unsure, leave this unchecked."
+""
msgstr ""
-"Abilita l'emulazione della cache write-back della CPU.\n"
-"L'abilitazione influirà pesantemente sulle performance.\n"
-"Dovrebbe rimanere disabilitato a meno che non sia assolutamente necessario."
+"Abilita l'emulazione della cache CPU write-back. Abilitarla avrà un "
+"significativo impatto sulle performance. Dovrebbe rimanere disabilitata a "
+"meno che non sia assolutamente necessaria.
Nel "
+"dubbio, lascia deselezionato."
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:365
msgid ""
@@ -4511,7 +4654,7 @@ msgstr ""
"La maggior parte dei giochi ne è compatibile.
Nel "
"dubbio, lascia deselezionato."
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:522
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:604
msgid ""
"Enables scRGB HDR output (if supported by your graphics backend and "
"monitor). Fullscreen might be required.
This gives post process "
@@ -4547,7 +4690,6 @@ msgstr ""
"deselezionato."
#: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:100
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:68
msgid ""
"Enables the Memory Management Unit, needed for some games. (ON = Compatible, "
"OFF = Fast)"
@@ -4555,7 +4697,17 @@ msgstr ""
"Abilita l'Unità di Gestione della Memoria (MMU), necessaria per alcuni "
"giochi. (ON = Compatibilità, OFF = Velocità)"
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:193
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:70
+msgid ""
+"Enables the Memory Management Unit, needed for some games. (ON = Compatible, "
+"OFF = Fast)
If unsure, leave this unchecked."
+"dolphin_emphasis>"
+msgstr ""
+"Abilità la Memory Management Unit, necessaria per alcuni giochi. (ON = "
+"Compatibile, OFF = Veloce)
Nel dubbio, lascia "
+"deselezionato."
+
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190
msgid ""
"Enables the WiiLink service for WiiConnect24 channels.\n"
"WiiLink is an alternate provider for the discontinued WiiConnect24 Channels "
@@ -4592,7 +4744,7 @@ msgstr ""
msgid "Encoding"
msgstr "Codifica"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:615
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:616
msgid ""
"Encountered the following errors while opening save files:\n"
"%1\n"
@@ -4610,12 +4762,12 @@ msgid "Enet Didn't Initialize"
msgstr "Enet non è stato inizializzato"
#: Source/Core/DiscIO/Enums.cpp:80
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:85
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:169
msgid "English"
msgstr "Inglese"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:59
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:61
#: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:61
msgid "Enhancements"
msgstr "Miglioramenti"
@@ -4648,99 +4800,99 @@ msgstr "Inserisci la password"
msgid "Enter the DNS server to use:"
msgstr "Inserisci il server DNS da utilizzare:"
-#: Source/Core/DolphinQt/MenuBar.cpp:1300
+#: Source/Core/DolphinQt/MenuBar.cpp:1286
msgid "Enter the RSO module address:"
msgstr "Inserisci l'indirizzo del modulo RSO:"
#: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:194
#: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:250
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:261
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:262
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386
#: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:265
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:343
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:349
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:346
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:352
#: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:46
-#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:521
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:256
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:295
-#: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:232
-#: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:259
-#: Source/Core/DolphinQt/ConvertDialog.cpp:424
-#: Source/Core/DolphinQt/ConvertDialog.cpp:471
-#: Source/Core/DolphinQt/ConvertDialog.cpp:525
+#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:539
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:255
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:296
+#: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:229
+#: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:256
+#: Source/Core/DolphinQt/ConvertDialog.cpp:426
+#: Source/Core/DolphinQt/ConvertDialog.cpp:473
+#: Source/Core/DolphinQt/ConvertDialog.cpp:528
#: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:255
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:638
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:644
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:653
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:665
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:684
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:690
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:705
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:713
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:737
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:744
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:637
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:643
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:652
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:664
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:683
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:689
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:704
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:712
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:736
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:743
#: Source/Core/DolphinQt/Debugger/RegisterColumn.cpp:86
#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:282
#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:431
-#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:241
-#: Source/Core/DolphinQt/GBAWidget.cpp:576
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:346
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:376
-#: Source/Core/DolphinQt/Main.cpp:209 Source/Core/DolphinQt/Main.cpp:225
-#: Source/Core/DolphinQt/Main.cpp:232 Source/Core/DolphinQt/MainWindow.cpp:295
-#: Source/Core/DolphinQt/MainWindow.cpp:303
-#: Source/Core/DolphinQt/MainWindow.cpp:1108
-#: Source/Core/DolphinQt/MainWindow.cpp:1494
-#: Source/Core/DolphinQt/MainWindow.cpp:1501
-#: Source/Core/DolphinQt/MainWindow.cpp:1561
-#: Source/Core/DolphinQt/MainWindow.cpp:1568
-#: Source/Core/DolphinQt/MainWindow.cpp:1670
-#: Source/Core/DolphinQt/MenuBar.cpp:1204
-#: Source/Core/DolphinQt/MenuBar.cpp:1284
+#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:237
+#: Source/Core/DolphinQt/GBAWidget.cpp:578
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:347
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:377
+#: Source/Core/DolphinQt/Main.cpp:211 Source/Core/DolphinQt/Main.cpp:227
+#: Source/Core/DolphinQt/Main.cpp:234 Source/Core/DolphinQt/MainWindow.cpp:297
+#: Source/Core/DolphinQt/MainWindow.cpp:305
+#: Source/Core/DolphinQt/MainWindow.cpp:1110
+#: Source/Core/DolphinQt/MainWindow.cpp:1507
+#: Source/Core/DolphinQt/MainWindow.cpp:1514
+#: Source/Core/DolphinQt/MainWindow.cpp:1574
+#: Source/Core/DolphinQt/MainWindow.cpp:1581
+#: Source/Core/DolphinQt/MainWindow.cpp:1690
+#: Source/Core/DolphinQt/MenuBar.cpp:1190
+#: Source/Core/DolphinQt/MenuBar.cpp:1270
+#: Source/Core/DolphinQt/MenuBar.cpp:1293
#: Source/Core/DolphinQt/MenuBar.cpp:1307
-#: Source/Core/DolphinQt/MenuBar.cpp:1321
-#: Source/Core/DolphinQt/MenuBar.cpp:1352
-#: Source/Core/DolphinQt/MenuBar.cpp:1376
-#: Source/Core/DolphinQt/MenuBar.cpp:1597
-#: Source/Core/DolphinQt/MenuBar.cpp:1608
-#: Source/Core/DolphinQt/MenuBar.cpp:1620
-#: Source/Core/DolphinQt/MenuBar.cpp:1642
-#: Source/Core/DolphinQt/MenuBar.cpp:1668
-#: Source/Core/DolphinQt/MenuBar.cpp:1722
-#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:315
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:477
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:738
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:980
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1098
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1108
-#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:334
-#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:340
-#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:347
+#: Source/Core/DolphinQt/MenuBar.cpp:1339
+#: Source/Core/DolphinQt/MenuBar.cpp:1363
+#: Source/Core/DolphinQt/MenuBar.cpp:1584
+#: Source/Core/DolphinQt/MenuBar.cpp:1595
+#: Source/Core/DolphinQt/MenuBar.cpp:1607
+#: Source/Core/DolphinQt/MenuBar.cpp:1629
+#: Source/Core/DolphinQt/MenuBar.cpp:1655
+#: Source/Core/DolphinQt/MenuBar.cpp:1709
+#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:316
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:479
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:740
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:982
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1100
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1110
+#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:332
+#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:338
+#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:345
#: Source/Core/DolphinQt/RenderWidget.cpp:123
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:203
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:224
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:423
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:439
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:460
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:481
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:525
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:562
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:585
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:204
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:225
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:433
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:449
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:470
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:491
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:535
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:572
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:595
#: Source/Core/DolphinQt/Translation.cpp:322
msgid "Error"
msgstr "Errore"
#: Source/Core/DolphinQt/Config/Mapping/GCPadWiiUConfigDialog.cpp:75
msgid "Error Opening Adapter: %1"
-msgstr "Errore Apertura Adattatore: %1"
+msgstr "Errore apertura adattatore: %1"
-#: Source/Core/Core/NetPlayServer.cpp:1493
+#: Source/Core/Core/NetPlayServer.cpp:1497
msgid "Error collecting save data!"
msgstr "Errore recuperando i salvataggi!"
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:260
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:526
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:533
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:262
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:613
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:620
msgid "Error converting value"
msgstr "Errore nella conversione del valore"
@@ -4754,15 +4906,15 @@ msgstr ""
msgid "Error obtaining session list: %1"
msgstr "Errore durante l'ottenimento della lista delle sessioni: %1"
-#: Source/Core/DolphinQt/MainWindow.cpp:296
+#: Source/Core/DolphinQt/MainWindow.cpp:298
msgid "Error occurred while loading some texture packs"
msgstr "Si è verificato un errore durante il caricamento dei texture pack"
-#: Source/Core/Core/NetPlayClient.cpp:1847
+#: Source/Core/Core/NetPlayClient.cpp:1851
msgid "Error processing codes."
msgstr "Errore processando i codici."
-#: Source/Core/Core/NetPlayClient.cpp:1819
+#: Source/Core/Core/NetPlayClient.cpp:1823
msgid "Error processing data."
msgstr "Errore processando i dati."
@@ -4770,11 +4922,11 @@ msgstr "Errore processando i dati."
msgid "Error reading file: {0}"
msgstr "Errore durante la lettura del file: {0}"
-#: Source/Core/Core/NetPlayServer.cpp:1529
+#: Source/Core/Core/NetPlayServer.cpp:1533
msgid "Error synchronizing cheat codes!"
msgstr "Errore sincronizzando i cheat code!"
-#: Source/Core/Core/NetPlayServer.cpp:1515
+#: Source/Core/Core/NetPlayServer.cpp:1519
msgid "Error synchronizing save data!"
msgstr "Errore sincronizzando i dati di salvataggio!"
@@ -4853,7 +5005,7 @@ msgstr ""
msgid "Euphoria"
msgstr "Euforia"
-#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:282
+#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:274
#: Source/Core/UICommon/NetPlayIndex.cpp:249
msgid "Europe"
msgstr "Europa"
@@ -4898,13 +5050,13 @@ msgstr ""
msgid "Excluded: %1"
msgstr "Escluso: %1"
-#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:73
+#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:72
msgid "Excluded: 0"
msgstr "Escluso: 0"
-#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:107
+#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108
msgid "Exclusive Ubershaders"
-msgstr "Ubershader Esclusivi"
+msgstr "Ubershader esclusivi"
#: Source/Core/Core/HotkeyManager.cpp:36
msgid "Exit"
@@ -4950,70 +5102,70 @@ msgstr "Prevista nome variabile."
msgid "Experimental"
msgstr "Sperimentale"
-#: Source/Core/DolphinQt/MenuBar.cpp:294
+#: Source/Core/DolphinQt/MenuBar.cpp:286
msgid "Export All Wii Saves"
-msgstr "Esporta tutti i Salvataggi Wii"
+msgstr "Esporta tutti i salvataggi Wii"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:422
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:447
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:492
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:499
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:423
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:448
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:493
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:500
msgid "Export Failed"
-msgstr "Esportazione non Riuscita"
+msgstr "Esportazione non riuscita"
#: Source/Core/Core/HotkeyManager.cpp:57
msgid "Export Recording"
-msgstr "Esporta Registrazione"
+msgstr "Esporta registrazione"
-#: Source/Core/DolphinQt/MenuBar.cpp:753
+#: Source/Core/DolphinQt/MenuBar.cpp:745
msgid "Export Recording..."
-msgstr "Esporta Registrazione..."
+msgstr "Esporta registrazione..."
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:437
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:438
msgid "Export Save File"
-msgstr "Esporta File di Salvataggio"
+msgstr "Esporta file di salvataggio"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:454
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:455
msgid "Export Save Files"
-msgstr "Esporta File di Salvataggio"
+msgstr "Esporta file di salvataggio"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:470
+#: Source/Core/DolphinQt/GameList/GameList.cpp:473
msgid "Export Wii Save"
-msgstr "Esporta Salvataggio Wii"
+msgstr "Esporta salvataggio Wii"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:388
+#: Source/Core/DolphinQt/GameList/GameList.cpp:389
msgid "Export Wii Saves"
-msgstr "Esporta Salvataggi Wii"
+msgstr "Esporta salvataggi Wii"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:117
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:118
msgid "Export as .&gcs..."
msgstr "Esporta come .&gcs..."
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:118
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:119
msgid "Export as .&sav..."
msgstr "Esporta come .&sav..."
-#: Source/Core/DolphinQt/MenuBar.cpp:1133
+#: Source/Core/DolphinQt/MenuBar.cpp:1115
#, c-format
msgctxt ""
msgid "Exported %n save(s)"
msgstr "Esportato/i %n salvataggio/i"
#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:268
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:432
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:434
#: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:47
msgid "Extension"
msgstr "Estensione"
#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.h:121
msgid "Extension Motion Input"
-msgstr "Estensione Input di Movimento"
+msgstr "Estensione input di movimento"
#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.h:122
msgid "Extension Motion Simulation"
-msgstr "Estensione Simulazione di Movimento"
+msgstr "Estensione simulazione di movimento"
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:520
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:522
msgid "External"
msgstr "Esterno"
@@ -5021,37 +5173,37 @@ msgstr "Esterno"
msgid "External Frame Buffer (XFB)"
msgstr "External Frame Buffer (XFB)"
-#: Source/Core/DolphinQt/MenuBar.cpp:271
+#: Source/Core/DolphinQt/MenuBar.cpp:263
msgid "Extract Certificates from NAND"
-msgstr "Estrai Certificati da NAND"
+msgstr "Estrai certificati da NAND"
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:268
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:269
msgid "Extract Entire Disc..."
-msgstr "Estrai Disco Intero..."
+msgstr "Estrai disco intero..."
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:292
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:293
msgid "Extract Entire Partition..."
-msgstr "Estrai Partizione Intera..."
+msgstr "Estrai partizione intera..."
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:299
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:300
msgid "Extract File..."
-msgstr "Estrai File..."
+msgstr "Estrai file..."
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:241
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:242
msgid "Extract Files..."
-msgstr "Estrai File..."
+msgstr "Estrai file..."
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:251
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:252
msgid "Extract System Data..."
-msgstr "Estrai Dati di Sistema..."
-
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:355
-msgid "Extracting All Files..."
-msgstr "Estrazione di Tutti i File..."
+msgstr "Estrai dati di sistema..."
#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:356
+msgid "Extracting All Files..."
+msgstr "Estrazione di tutti i file..."
+
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357
msgid "Extracting Directory..."
-msgstr "Estrazione Directory..."
+msgstr "Estrazione cartella..."
#. i18n: FD stands for file descriptor (and in this case refers to sockets, not regular files)
#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330
@@ -5059,7 +5211,7 @@ msgid "FD"
msgstr "FD"
#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:37
-#: Source/Core/DolphinQt/MenuBar.cpp:228
+#: Source/Core/DolphinQt/MenuBar.cpp:220
msgid "FIFO Player"
msgstr "Lettore FIFO"
@@ -5067,7 +5219,7 @@ msgstr "Lettore FIFO"
msgid "Failed loading XML."
msgstr "Impossibile caricare l'XML."
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:347
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:348
msgid ""
"Failed opening memory card:\n"
"%1"
@@ -5075,11 +5227,11 @@ msgstr ""
"Fallita apertura della memory card:\n"
"%1"
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:454
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:456
msgid "Failed to add this session to the NetPlay index: %1"
msgstr "Fallito l'inserimento di questa sessione all'indice NetPlay: %1"
-#: Source/Core/DolphinQt/MenuBar.cpp:1669
+#: Source/Core/DolphinQt/MenuBar.cpp:1656
msgid "Failed to append to signature file '%1'"
msgstr "Impossibile aggiungere il file di signature '%1'"
@@ -5087,11 +5239,11 @@ msgstr "Impossibile aggiungere il file di signature '%1'"
msgid "Failed to claim interface for BT passthrough: {0}"
msgstr "Impossibile richiedere l'interfaccia per il ponte BT: {0}"
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:574
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:676
msgid "Failed to clear Skylander!"
msgstr "Fallita rimozione dello Skylander!"
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:575
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:677
msgid "Failed to clear the Skylander from slot(%1)!"
msgstr "Fallita rimozione dello Skylander dallo slot(%1)!"
@@ -5099,7 +5251,7 @@ msgstr "Fallita rimozione dello Skylander dallo slot(%1)!"
msgid "Failed to connect to Redump.org"
msgstr "Impossibile connettersi a Redump.org"
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:981
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:983
msgid "Failed to connect to server: %1"
msgstr "Impossibile connettersi al server: %1"
@@ -5120,15 +5272,15 @@ msgstr "Impossibile creare le risorse globali D3D12"
msgid "Failed to create DXGI factory"
msgstr "Impossibile creare la factory DXGI"
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:289
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:291
msgid "Failed to create Infinity file"
msgstr "Fallita creazione del file Infinity"
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:678
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:798
msgid "Failed to create Skylander file!"
msgstr "Fallita creazione del file Skylander!"
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:679
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:799
msgid ""
"Failed to create Skylander file:\n"
"%1\n"
@@ -5151,7 +5303,7 @@ msgstr ""
"Impossibile eliminare la memory card NetPlay. Controlla di avere i corretti "
"permessi di scrittura."
-#: Source/Core/DolphinQt/GameList/GameList.cpp:841
+#: Source/Core/DolphinQt/GameList/GameList.cpp:854
msgid "Failed to delete the selected file."
msgstr "Fallita la rimozione del file selezionato."
@@ -5159,36 +5311,36 @@ msgstr "Fallita la rimozione del file selezionato."
msgid "Failed to detach kernel driver for BT passthrough: {0}"
msgstr "Impossibile disconnettere il driver kernel per il ponte BT: {0}"
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:343
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:346
msgid "Failed to download codes."
msgstr "Download dei codici non riuscito."
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:738
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:737
msgid "Failed to dump %1: Can't open file"
msgstr "Fallito il dump %1: Impossibile aprire il file"
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:745
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:744
msgid "Failed to dump %1: Failed to write to file"
msgstr "Fallito il dump %1: Impossibile scrivere il file"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:488
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:489
msgctxt ""
msgid "Failed to export %n out of %1 save file(s)."
msgstr "Fallita l'esportazione di %n su %1 file di salvataggio."
-#: Source/Core/DolphinQt/GameList/GameList.cpp:576
+#: Source/Core/DolphinQt/GameList/GameList.cpp:584
msgid "Failed to export the following save files:"
msgstr "Fallita l'esportazione dei seguenti file di salvataggio:"
-#: Source/Core/DolphinQt/MenuBar.cpp:1204
+#: Source/Core/DolphinQt/MenuBar.cpp:1190
msgid "Failed to extract certificates from NAND"
msgstr "Fallita estrazione dei certificati dalla NAND"
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386
msgid "Failed to extract file."
msgstr "Estrazione del file non riuscita."
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:261
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:262
msgid "Failed to extract system data."
msgstr "Fallita estrazione dei dati di sistema."
@@ -5206,18 +5358,18 @@ msgstr ""
msgid "Failed to find one or more D3D symbols"
msgstr "Impossibile trovare uno o più simboli D3D"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:565
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:566
msgid "Failed to import \"%1\"."
msgstr "Importazione di \"%1\" non riuscita."
-#: Source/Core/DolphinQt/MenuBar.cpp:1109
+#: Source/Core/DolphinQt/MenuBar.cpp:1091
msgid ""
"Failed to import save file. Please launch the game once, then try again."
msgstr ""
"Fallita l'importazione del salvataggio. Avvia il gioco una volta, poi "
"riprova."
-#: Source/Core/DolphinQt/MenuBar.cpp:1103
+#: Source/Core/DolphinQt/MenuBar.cpp:1085
msgid ""
"Failed to import save file. The given file appears to be corrupted or is not "
"a valid Wii save."
@@ -5225,7 +5377,7 @@ msgstr ""
"Fallita l'importazione del salvataggio. Il file sembra corrotto o non è un "
"file di salvataggio Wii valido."
-#: Source/Core/DolphinQt/MenuBar.cpp:1116
+#: Source/Core/DolphinQt/MenuBar.cpp:1098
msgid ""
"Failed to import save file. Your NAND may be corrupt, or something is "
"preventing access to files within it. Try repairing your NAND (Tools -> "
@@ -5236,7 +5388,7 @@ msgstr ""
"ripararla (Strumenti -> Gestisci NAND -> Controlla NAND...), quindi importa "
"di nuovo il salvataggio."
-#: Source/Core/DolphinQt/MainWindow.cpp:1108
+#: Source/Core/DolphinQt/MainWindow.cpp:1110
msgid "Failed to init core"
msgstr "Inizializzazione fallita"
@@ -5254,16 +5406,16 @@ msgstr ""
msgid "Failed to initialize renderer classes"
msgstr "Impossibile inizializzare le classi del renderer"
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:204
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:205
msgid "Failed to install pack: %1"
msgstr "Fallita installazione del pack: %1"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:619
-#: Source/Core/DolphinQt/MenuBar.cpp:1074
+#: Source/Core/DolphinQt/GameList/GameList.cpp:628
+#: Source/Core/DolphinQt/MenuBar.cpp:1056
msgid "Failed to install this title to the NAND."
msgstr "Fallita installazione del titolo nella NAND."
-#: Source/Core/DolphinQt/MainWindow.cpp:1594
+#: Source/Core/DolphinQt/MainWindow.cpp:1607
msgid ""
"Failed to listen on port %1. Is another instance of the NetPlay server "
"running?"
@@ -5271,8 +5423,8 @@ msgstr ""
"Fallito l'ascolto sulla porta %1. C'è già un'altra istanza di un server "
"NetPlay in esecuzione?"
-#: Source/Core/DolphinQt/MenuBar.cpp:1321
-#: Source/Core/DolphinQt/MenuBar.cpp:1376
+#: Source/Core/DolphinQt/MenuBar.cpp:1307
+#: Source/Core/DolphinQt/MenuBar.cpp:1363
msgid "Failed to load RSO module at %1"
msgstr "Fallito caricamento del modulo RSO a %1"
@@ -5284,15 +5436,15 @@ msgstr "Caricamento d3d11.dll non riuscito"
msgid "Failed to load dxgi.dll"
msgstr "Caricamento dxgi.dll non riuscito"
-#: Source/Core/DolphinQt/MenuBar.cpp:1608
+#: Source/Core/DolphinQt/MenuBar.cpp:1595
msgid "Failed to load map file '%1'"
msgstr "Fallita l'apertura del file mappa '%1'"
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:720
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:842
msgid "Failed to load the Skylander file!"
msgstr "Fallito caricamento del file Skylander!"
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:721
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:843
msgid "Failed to load the Skylander file(%1)!\n"
msgstr "Fallito caricamento del file Skylander(%1)!\n"
@@ -5308,8 +5460,12 @@ msgstr ""
"Impossibile caricare {0}. Se stai utilizzando Windows 7, prova a installare "
"l'aggiornamento KB4019990."
-#: Source/Core/DolphinQt/GBAWidget.cpp:576
-#: Source/Core/DolphinQt/MainWindow.cpp:1670
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:663
+msgid "Failed to modify Skylander!"
+msgstr "Impossibile modificare lo Skylander!"
+
+#: Source/Core/DolphinQt/GBAWidget.cpp:578
+#: Source/Core/DolphinQt/MainWindow.cpp:1690
#: Source/Core/DolphinQt/RenderWidget.cpp:123
msgid "Failed to open '%1'"
msgstr "Fallita l'apertura di '%1'"
@@ -5340,19 +5496,19 @@ msgstr ""
"Impossibile aprire il file con un editor esterno.\n"
"Assicurati di avere un'applicazione di default per l'apertura dei file INI."
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:861
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:863
msgid "Failed to open file."
msgstr "Impossibile aprire il file."
-#: Source/Core/DolphinQt/MainWindow.cpp:1593
+#: Source/Core/DolphinQt/MainWindow.cpp:1606
msgid "Failed to open server"
msgstr "Impossibile avviare il server"
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:164
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:166
msgid "Failed to open the Infinity file!"
msgstr "Fallita apertura del file Infinity!"
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:165
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:167
msgid ""
"Failed to open the Infinity file(%1)!\n"
"File may already be in use on the base."
@@ -5360,11 +5516,11 @@ msgstr ""
"Fallita apertura del file Infinity(%1)!\n"
"Il file potrebbe già essere in uso sulla base."
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:696
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:818
msgid "Failed to open the Skylander file!"
msgstr "Fallita apertura del file Skylander!"
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:697
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:819
msgid ""
"Failed to open the Skylander file(%1)!\n"
"File may already be in use on the portal."
@@ -5372,12 +5528,12 @@ msgstr ""
"Fallita apertura del file Skylander(%1)!\n"
"Il file potrebbe già essere in uso sul portale."
-#: Source/Core/DolphinQt/ConvertDialog.cpp:472
+#: Source/Core/DolphinQt/ConvertDialog.cpp:474
msgid "Failed to open the input file \"%1\"."
msgstr "Fallita l'apertura del file di input \"%1\"."
-#: Source/Core/DiscIO/CompressedBlob.cpp:282 Source/Core/DiscIO/FileBlob.cpp:53
-#: Source/Core/DiscIO/WIABlob.cpp:2037
+#: Source/Core/DiscIO/CompressedBlob.cpp:287 Source/Core/DiscIO/FileBlob.cpp:58
+#: Source/Core/DiscIO/WIABlob.cpp:2043
msgid ""
"Failed to open the output file \"{0}\".\n"
"Check that you have permissions to write the target folder and that the "
@@ -5400,26 +5556,26 @@ msgstr "Non è stato possibile convertire il valore in input nel tipo indicato."
msgid "Failed to read DFF file."
msgstr "Lettura del file DFF non riuscita."
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:863
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:865
msgid "Failed to read from file."
msgstr "Accesso non riuscito al file."
-#: Source/Core/DiscIO/CompressedBlob.cpp:373 Source/Core/DiscIO/FileBlob.cpp:93
-#: Source/Core/DiscIO/WIABlob.cpp:2052
+#: Source/Core/DiscIO/CompressedBlob.cpp:378 Source/Core/DiscIO/FileBlob.cpp:98
+#: Source/Core/DiscIO/WIABlob.cpp:2058
msgid "Failed to read from the input file \"{0}\"."
msgstr "Fallita la lettura dal file di input \"{0}\"."
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:423
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:641
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:424
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:642
msgid "Failed to read selected savefile(s) from memory card."
msgstr ""
"Impossibile leggere i file di salvataggio selezionati dalla memory card."
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:173
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:175
msgid "Failed to read the Infinity file!"
msgstr "Fallita lettura del file Infinity!"
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:174
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:176
msgid ""
"Failed to read the Infinity file(%1)!\n"
"File was too small."
@@ -5427,11 +5583,11 @@ msgstr ""
"Fallita lettura del file Infinity(%1)!\n"
"Il file è troppo piccolo."
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:706
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:828
msgid "Failed to read the Skylander file!"
msgstr "Fallita lettura del file Skylander!"
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:707
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:829
msgid ""
"Failed to read the Skylander file(%1)!\n"
"File was too small."
@@ -5443,11 +5599,11 @@ msgstr ""
msgid "Failed to read {0}"
msgstr "Fallita lettura di {0}"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:668
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:669
msgid "Failed to remove file."
msgstr "Rimozione del file non riuscita."
-#: Source/Core/DolphinQt/ConvertDialog.cpp:453
+#: Source/Core/DolphinQt/ConvertDialog.cpp:455
msgid ""
"Failed to remove junk data from file \"%1\".\n"
"\n"
@@ -5457,7 +5613,7 @@ msgstr ""
"\n"
"Vuoi convertirlo senza la loro rimozione?"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:647
+#: Source/Core/DolphinQt/GameList/GameList.cpp:658
msgid "Failed to remove this title from the NAND."
msgstr "Fallita rimozione del titolo dalla NAND"
@@ -5479,27 +5635,38 @@ msgstr ""
"Impossibile resettare la cartella di reindirizzamento NetPlay. Controlla di "
"avere i corretti permessi di scrittura."
-#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:241
+#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:237
msgid "Failed to save FIFO log."
msgstr "Fallito il salvataggio del log FIFO."
-#: Source/Core/DolphinQt/MenuBar.cpp:1598
+#: Source/Core/DolphinQt/MenuBar.cpp:1585
msgid "Failed to save code map to path '%1'"
msgstr "Impossibile salvare la mappa del codice nel percorso '%1'"
-#: Source/Core/DolphinQt/MenuBar.cpp:1642
+#: Source/Core/DolphinQt/MenuBar.cpp:1629
msgid "Failed to save signature file '%1'"
msgstr "Impossibile salvare il file di signature '%1'"
-#: Source/Core/DolphinQt/MenuBar.cpp:1621
+#: Source/Core/DolphinQt/MenuBar.cpp:1608
msgid "Failed to save symbol map to path '%1'"
msgstr "Impossibile salvare la mappa dei simboli nel percorso '%1'"
-#: Source/Core/DolphinQt/MenuBar.cpp:1723
+#: Source/Core/DolphinQt/MenuBar.cpp:1710
msgid "Failed to save to signature file '%1'"
msgstr "Impossibile salvare nel file di signature '%1'"
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:225
+#: Source/Core/Core/Core.cpp:548
+msgid ""
+"Failed to sync SD card with folder. All changes made this session will be "
+"discarded on next boot if you do not manually re-issue a resync in Config > "
+"Wii > SD Card Settings > Convert File to Folder Now!"
+msgstr ""
+"Impossibile sincronizzare la scheda SD con la cartella. Tutte le modifiche "
+"fatte in questa sessione verranno scartate al prossimo avvio se non avvii "
+"manualmente una ri-sincronizzazione in Configurazione > Wii > Impostazioni "
+"Scheda SD > Converti file in cartella ora!"
+
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:226
msgid "Failed to uninstall pack: %1"
msgstr "Fallista disinstallazione del pack: %1"
@@ -5519,9 +5686,9 @@ msgstr "Fallita scrittura del salvataggio Wii."
msgid "Failed to write config file!"
msgstr "Fallita la scrittura del file di configurazione!"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:573
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:676
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:691
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:574
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:677
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:692
msgid "Failed to write modified memory card to disk."
msgstr "Impossibile scrivere la memory card modificata sul disco."
@@ -5529,12 +5696,12 @@ msgstr "Impossibile scrivere la memory card modificata sul disco."
msgid "Failed to write redirected save."
msgstr "Fallita scrittura del salvataggio redirezionato."
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:447
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:448
msgid "Failed to write savefile to disk."
msgstr "Impossibile scrivere il salvataggio su disco."
-#: Source/Core/DiscIO/CompressedBlob.cpp:377 Source/Core/DiscIO/FileBlob.cpp:99
-#: Source/Core/DiscIO/WIABlob.cpp:2056
+#: Source/Core/DiscIO/CompressedBlob.cpp:382
+#: Source/Core/DiscIO/FileBlob.cpp:104 Source/Core/DiscIO/WIABlob.cpp:2062
msgid ""
"Failed to write the output file \"{0}\".\n"
"Check that you have enough space available on the target drive."
@@ -5542,24 +5709,24 @@ msgstr ""
"Fallita la scrittura del file di output \"{0}\".\n"
"Controlla di avere abbastanza spazio sul dispositivo di destinazione."
-#: Source/Core/DolphinQt/GameList/GameList.cpp:617
-#: Source/Core/DolphinQt/GameList/GameList.cpp:645
-#: Source/Core/DolphinQt/GameList/GameList.cpp:840
-#: Source/Core/DolphinQt/MenuBar.cpp:1074
+#: Source/Core/DolphinQt/GameList/GameList.cpp:626
+#: Source/Core/DolphinQt/GameList/GameList.cpp:656
+#: Source/Core/DolphinQt/GameList/GameList.cpp:853
+#: Source/Core/DolphinQt/MenuBar.cpp:1056
msgid "Failure"
msgstr "Errore"
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:183
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:184
msgid "Fair Input Delay"
-msgstr "Ritardo Input Imparziale"
+msgstr "Ritardo input imparziale"
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:199
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:200
msgid "Fallback Region"
-msgstr "Regione di Fallback"
+msgstr "Regione alternativa"
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:210
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:211
msgid "Fallback Region:"
-msgstr "Regione di Fallback:"
+msgstr "Regione alternativa:"
#: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:232
#: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:79
@@ -5568,7 +5735,7 @@ msgstr "Rapida"
#: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:103
msgid "Fast Depth Calculation"
-msgstr "Calcolo Rapido della Profondità"
+msgstr "Calcolo rapido della profondità"
#: Source/Core/Core/Movie.cpp:1319
msgid ""
@@ -5581,60 +5748,64 @@ msgstr ""
#: Source/Core/Core/FreeLookManager.cpp:105
#: Source/Core/DolphinQt/Config/Mapping/FreeLookGeneral.cpp:25
msgid "Field of View"
-msgstr "Campo Visivo"
+msgstr "Campo visivo"
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:233
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:235
msgid "Figure Number:"
-msgstr "Statuina Numero:"
+msgstr "Statuina numero:"
+
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:380
+msgid "Figure type"
+msgstr "Tipo di figura"
#: Source/Core/DolphinQt/Config/InfoWidget.cpp:46
msgid "File Details"
-msgstr "Dettagli del File"
+msgstr "Dettagli del file"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:991
+#: Source/Core/DolphinQt/GameList/GameList.cpp:1005
#: Source/Core/DolphinQt/GameList/GameListModel.cpp:229
-#: Source/Core/DolphinQt/MenuBar.cpp:652
+#: Source/Core/DolphinQt/MenuBar.cpp:644
msgid "File Format"
-msgstr "Formato del File"
+msgstr "Formato del file"
#: Source/Core/DolphinQt/Config/InfoWidget.cpp:65
msgid "File Format:"
-msgstr "Formato del File:"
+msgstr "Formato del file:"
#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:80
msgid "File Info"
-msgstr "Info File"
+msgstr "Info file"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:986
+#: Source/Core/DolphinQt/GameList/GameList.cpp:1000
#: Source/Core/DolphinQt/GameList/GameListModel.cpp:223
-#: Source/Core/DolphinQt/MenuBar.cpp:647
+#: Source/Core/DolphinQt/MenuBar.cpp:639
msgid "File Name"
-msgstr "Nome File"
+msgstr "Nome file"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:987
+#: Source/Core/DolphinQt/GameList/GameList.cpp:1001
#: Source/Core/DolphinQt/GameList/GameListModel.cpp:225
-#: Source/Core/DolphinQt/MenuBar.cpp:648
+#: Source/Core/DolphinQt/MenuBar.cpp:640
msgid "File Path"
msgstr "Percorso:"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:990
-#: Source/Core/DolphinQt/MenuBar.cpp:651
+#: Source/Core/DolphinQt/GameList/GameList.cpp:1004
+#: Source/Core/DolphinQt/MenuBar.cpp:643
msgid "File Size"
-msgstr "Dimensioni del File"
+msgstr "Dimensioni del file"
#: Source/Core/DolphinQt/Config/InfoWidget.cpp:58
msgid "File Size:"
-msgstr "Dimensione del File:"
+msgstr "Dimensione del file:"
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:349
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:352
msgid "File contained no codes."
msgstr "Il file non contiene codici."
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:149
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:150
msgid "Filename"
msgstr "Nome file"
-#: Source/Core/DiscIO/CompressedBlob.cpp:289
+#: Source/Core/DiscIO/CompressedBlob.cpp:294
msgid "Files opened, ready to compress."
msgstr "File aperti, pronti alla compressione."
@@ -5646,12 +5817,12 @@ msgstr ""
"I file specificati nel flie M3U \"{0}\" non esistono:\n"
"{1}"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:833
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:835
msgid "Filesize does not match any known GameCube Memory Card size."
msgstr ""
"Le dimensioni non corrispondono a nessuna Memory Card GameCube conosciuta."
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:836
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:838
msgid "Filesize in header mismatches actual card size."
msgstr ""
"La dimensione nell'intestazione non corrisponde alla dimensione effettiva "
@@ -5661,23 +5832,23 @@ msgstr ""
msgid "Filesystem"
msgstr "Filesystem"
-#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:102
+#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:103
msgid "Filters"
msgstr "Filtri"
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:152
msgid "Find &Next"
-msgstr "Trova &Successivo"
+msgstr "Trova &successivo"
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:153
msgid "Find &Previous"
-msgstr "Trova &Precedente"
+msgstr "Trova &precedente"
#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:922
msgid "Finish Calibration"
-msgstr "Termina Calibrazione"
+msgstr "Termina calibrazione"
-#: Source/Core/DolphinQt/WiiUpdate.cpp:109
+#: Source/Core/DolphinQt/WiiUpdate.cpp:110
msgid ""
"Finishing the update...\n"
"This can take a while."
@@ -5687,29 +5858,29 @@ msgstr ""
#. i18n: One of the elements in the Skylanders games. Japanese: 火. For official translations
#. in other languages, check the SuperChargers manual at https://support.activision.com/manuals
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:333
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:349
msgid "Fire"
msgstr "Fuoco"
-#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:40
+#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:41
msgid "First Person"
-msgstr "Prima Persona"
+msgstr "Prima persona"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:127
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:128
msgid "Fix Checksums"
-msgstr "Ripara Checksum"
+msgstr "Ripara checksum"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:690
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:691
msgid "Fix Checksums Failed"
-msgstr "Ripara Checksum Falliti"
+msgstr "Ripara checksum falliti"
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:202
msgid "Fixed Alignment"
-msgstr "Allineamento Fisso"
+msgstr "Allineamento fisso"
#. i18n: These are the kinds of flags that a CPU uses (e.g. carry),
#. not the kinds of flags that represent e.g. countries
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:166
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167
#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:87
msgid "Flags"
msgstr "Flag"
@@ -5718,12 +5889,12 @@ msgstr "Flag"
#. i18n: Floating-point (non-integer) number
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:138
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:198
-#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:152
+#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:153
#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97
msgid "Float"
msgstr "Float"
-#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:565
+#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:566
msgid "Follow &branch"
msgstr "(b) Segui flusso"
@@ -5749,45 +5920,45 @@ msgstr ""
"Per istruzioni sull'installazione, consulta questa pagina."
-#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:57
+#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:58
msgid "Force 16:9"
msgstr "Forza 16:9"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:117
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:152
msgid "Force 24-Bit Color"
-msgstr "Forza Colore 24-Bit"
+msgstr "Forza colore 24-Bit"
-#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:57
+#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:58
msgid "Force 4:3"
msgstr "Forza 4:3"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:96
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:115
msgid "Force Linear"
-msgstr "Forza Lineare"
+msgstr "Forza lineare"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:103
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:122
msgid "Force Linear and 16x Anisotropic"
-msgstr "Forza Lineare e Anisotropico 16x"
+msgstr "Forza lineare e anisotropico 16x"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:97
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:116
msgid "Force Linear and 2x Anisotropic"
-msgstr "Forza Lineare e Anisotropico 2x"
+msgstr "Forza lineare e anisotropico 2x"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:99
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:118
msgid "Force Linear and 4x Anisotropic"
-msgstr "Forza Lineare e Anisotropico 4x"
+msgstr "Forza lineare e anisotropico 4x"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:101
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:120
msgid "Force Linear and 8x Anisotropic"
-msgstr "Forza Lineare e Anisotropico 8x"
+msgstr "Forza lineare e anisotropico 8x"
#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:135
msgid "Force Listen Port:"
-msgstr "Forza Ascolto su Porta:"
+msgstr "Forza ascolto su porta:"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:95
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:114
msgid "Force Nearest"
-msgstr "Forza Adiacente"
+msgstr "Forza adiacente"
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:444
msgid "Forced off because %1 doesn't support VS expansion."
@@ -5797,7 +5968,7 @@ msgstr "Forzato a off perché %1 non supporta l'espansione VS"
msgid "Forced on because %1 doesn't support geometry shaders."
msgstr "Forzato a on perché %1 non supporta i geometry shader."
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:474
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:556
msgid ""
"Forces the game to output graphics for any aspect ratio. Use with \"Aspect "
"Ratio\" set to \"Force 16:9\" to force 4:3-only games to run at 16:9."
@@ -5814,7 +5985,7 @@ msgstr ""
"
Nel dubbio, lascia deselezionato."
"dolphin_emphasis>"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:503
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:585
msgid ""
"Forces the game to render the RGB color channels in 24-bit, thereby "
"increasing quality by reducing color banding.
Has no impact on "
@@ -5826,7 +5997,7 @@ msgstr ""
"e causa minori difetti grafici.
Nel dubbio, lascia "
"selezionato."
-#: Source/Core/DolphinQt/ConvertDialog.cpp:59
+#: Source/Core/DolphinQt/ConvertDialog.cpp:60
msgid "Format:"
msgstr "Formato:"
@@ -5835,7 +6006,7 @@ msgstr "Formato:"
#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUAccelerometer.cpp:22
#: Source/Core/InputCommon/ControllerEmu/ControlGroup/Tilt.cpp:20
msgid "Forward"
-msgstr "in Avanti"
+msgstr "In avanti"
#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:145
msgid "Forward port (UPnP)"
@@ -5858,68 +6029,68 @@ msgstr "Frame %1"
#: Source/Core/Core/HotkeyManager.cpp:50 Source/Core/Core/HotkeyManager.cpp:336
#: Source/Core/DolphinQt/Config/Mapping/HotkeyTAS.cpp:21
msgid "Frame Advance"
-msgstr "Avanza di un Fotogramma"
+msgstr "Avanza di un fotogramma"
#: Source/Core/Core/HotkeyManager.cpp:51
msgid "Frame Advance Decrease Speed"
-msgstr "Riduci Velocità Avanzamento Frame"
+msgstr "Riduci velocità avanzamento frame"
#: Source/Core/Core/HotkeyManager.cpp:52
msgid "Frame Advance Increase Speed"
-msgstr "Aumenta Velocità Avanzamento Frame"
+msgstr "Aumenta velocità avanzamento frame"
#: Source/Core/Core/HotkeyManager.cpp:53
msgid "Frame Advance Reset Speed"
-msgstr "Reimposta Velocità Avanzamento Frame"
+msgstr "Reimposta velocità avanzamento frame"
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:130
msgid "Frame Dumping"
-msgstr "Dumping dei Frame"
+msgstr "Dumping dei frame"
#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:105
msgid "Frame Range"
-msgstr "Intervallo Fotogramma"
+msgstr "Intervallo fotogramma"
#: Source/Core/VideoCommon/FrameDumper.cpp:323
msgid "Frame dump image(s) '{0}' already exists. Overwrite?"
-msgstr "L'immagine del/dei frame '{0}' esiste già. Vuoi Sovrascrivere?"
+msgstr "L'immagine/i del fotogramma '{0}' esiste già. Vuoi sovrascrivere?"
#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:135
msgid "Frames to Record:"
-msgstr "Fotogrammi da Registrare:"
+msgstr "Fotogrammi da registrare:"
#: Source/Core/DiscIO/Enums.cpp:36
msgid "France"
msgstr "Francia"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:311
-msgid "Free Blocks: %1"
-msgstr "Blocchi Liberi: %1"
-
#: Source/Core/DolphinQt/GCMemcardManager.cpp:312
+msgid "Free Blocks: %1"
+msgstr "Blocchi liberi: %1"
+
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:313
msgid "Free Files: %1"
-msgstr "Blocchi Liberi: %1"
+msgstr "Blocchi liberi: %1"
-#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:42
+#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:43
msgid "Free Look Control Type"
-msgstr "Tipo Controlli Camera Libera"
+msgstr "Tipo controlli camera libera"
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:468
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:470
msgid "Free Look Controller %1"
-msgstr "Controller Camera Libera %1"
+msgstr "Controller camera libera %1"
#: Source/Core/DolphinQt/Config/FreeLookWindow.cpp:17
msgid "Free Look Settings"
-msgstr "Impostazioni Camera Libera"
+msgstr "Impostazioni camera libera"
-#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:54
+#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:55
msgid ""
"Free Look allows for manipulation of the in-game camera. Different camera "
"types are available from the dropdown.
For detailed instructions, refer to "
"this page."
msgstr ""
-"La Camera Libera permette la manipolazione della telecamera in-game. Diversi "
+"La camera libera permette la manipolazione della telecamera in-game. Diversi "
"tipi di telecamera sono disponibili dal menu a tendina.
Per "
"istruzioni dettagliate, consulta questa pagina."
@@ -5935,11 +6106,11 @@ msgstr "Camera libera"
#: Source/Core/Core/HotkeyManager.cpp:121
msgid "Freelook Toggle"
-msgstr "Abilita/Disabilita Camera Libera"
+msgstr "Abilita/Disabilita camera libera"
#: Source/Core/DiscIO/Enums.cpp:86
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171
msgid "French"
msgstr "Francese"
@@ -5965,27 +6136,27 @@ msgstr "Da:"
#: Source/Core/DolphinQt/ToolBar.cpp:124
msgid "FullScr"
-msgstr "Schermo Intero"
+msgstr "Schermo intero"
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:166
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167
msgid "Function"
msgstr "Funzione"
-#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:283
+#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:302
msgid "Functions"
msgstr "Funzioni"
-#: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:41
+#: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:42
msgid "GBA (Integrated)"
msgstr "GBA (Integrato)"
-#: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:43
+#: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:44
msgid "GBA (TCP)"
msgstr "GBA (TCP)"
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:114
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:115
msgid "GBA Cartridge Path:"
-msgstr "Percorso Cartuccia GBA:"
+msgstr "Percorso cartuccia GBA:"
#: Source/Core/Core/HotkeyManager.cpp:358
msgid "GBA Core"
@@ -5995,7 +6166,7 @@ msgstr "Core GBA"
msgid "GBA Port %1"
msgstr "Porta GBA %1"
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:198
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:199
msgid "GBA Settings"
msgstr "Impostazioni GBA"
@@ -6009,13 +6180,13 @@ msgstr "Volume GBA"
#: Source/Core/Core/HotkeyManager.cpp:360
msgid "GBA Window Size"
-msgstr "Dimensioni Finestra GBA"
+msgstr "Dimensioni finestra GBA"
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:833
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:835
msgid "GBA%1 ROM changed to \"%2\""
msgstr "Cambiata ROM GBA%1 in \"%2\""
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:838
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:840
msgid "GBA%1 ROM disabled"
msgstr "ROM GBA%1 disabilitata"
@@ -6023,11 +6194,11 @@ msgstr "ROM GBA%1 disabilitata"
msgid "GC Port %1"
msgstr "Porta GC %1"
-#: Source/Core/Core/HW/EXI/EXI_Device.h:104
+#: Source/Core/Core/HW/EXI/EXI_Device.h:103
msgid "GCI Folder"
msgstr "Cartella GCI"
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:120
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:121
msgid "GCI Folder Path:"
msgstr "Cartella GCI:"
@@ -6035,7 +6206,7 @@ msgstr "Cartella GCI:"
msgid "GCMemcardDirectory: ClearBlock called with invalid block address"
msgstr "GCMemcardDirectory: ClearBlock chiamato con indirizzo non valido"
-#: Source/Core/DolphinQt/ConvertDialog.cpp:348
+#: Source/Core/DolphinQt/ConvertDialog.cpp:349
msgid "GCZ GC/Wii images (*.gcz)"
msgstr "Immagini GCZ GC/Wii (*.gcz)"
@@ -6061,7 +6232,7 @@ msgstr "GL_MAX_TEXTURE_SIZE è {0} - deve essere almeno 1024."
#: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:69
msgid "GPU Texture Decoding"
-msgstr "Decodificatore Texture GPU"
+msgstr "Decodificatore texture GPU"
#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:232
msgid ""
@@ -6115,7 +6286,7 @@ msgstr ""
"GPU: ERRORE OGL: Occorre OpenGL versione 3.\n"
"GPU: La tua scheda video supporta OpenGL 3?"
-#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:456
+#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:467
msgid ""
"GPU: OGL ERROR: Need at least GLSL 1.30\n"
"GPU: Does your video card support OpenGL 3.0?\n"
@@ -6134,74 +6305,74 @@ msgstr ""
"GPU: La tua scheda video supporta OpenGL 2.x?"
#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:224
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:245
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:256
msgid "Game"
msgstr "Gioco"
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:401
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:459
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:403
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:461
msgid "Game Boy Advance"
msgstr "Game Boy Advance"
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:621
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:631
msgid "Game Boy Advance Carts (*.gba)"
msgstr "Schede di gioco Game Boy Advance (*.gba)"
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:807
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:817
msgid ""
"Game Boy Advance ROMs (*.gba *.gbc *.gb *.7z *.zip *.agb *.mb *.rom *.bin);;"
"All Files (*)"
msgstr ""
"ROM Game Boy Advance (*.gba *.gbc *.gb *.7z *.zip *.agb *.mb *.rom *.bin);;"
-"Tutti i File (*)"
+"Tutti i file (*)"
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:400
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:402
msgid "Game Boy Advance at Port %1"
-msgstr "Game Boy Advance sulla Porta %1"
+msgstr "Game Boy Advance sulla porta %1"
#: Source/Core/DolphinQt/Config/Graphics/ColorCorrectionConfigWindow.cpp:73
msgid "Game Color Space:"
-msgstr "Spazio Colore di Gioco:"
+msgstr "Spazio colore di gioco:"
#: Source/Core/DolphinQt/Config/PropertiesDialog.cpp:61
msgid "Game Config"
-msgstr "Configurazione di Gioco"
+msgstr "Configurazione di gioco"
#: Source/Core/DolphinQt/Config/InfoWidget.cpp:87
msgid "Game Details"
-msgstr "Dettagli del Gioco"
+msgstr "Dettagli del gioco"
#: Source/Core/DolphinQt/Settings/PathPane.cpp:120
msgid "Game Folders"
-msgstr "Cartelle di Gioco"
+msgstr "Cartelle di gioco"
#: Source/Core/DolphinQt/Config/Graphics/ColorCorrectionConfigWindow.cpp:88
msgid "Game Gamma"
-msgstr "Gamma di Gioco"
+msgstr "Gamma di gioco"
#: Source/Core/DolphinQt/Config/Graphics/ColorCorrectionConfigWindow.cpp:86
msgid "Game Gamma:"
-msgstr "Gamma di Gioco:"
+msgstr "Gamma di gioco:"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:988
-#: Source/Core/DolphinQt/MenuBar.cpp:649
+#: Source/Core/DolphinQt/GameList/GameList.cpp:1002
+#: Source/Core/DolphinQt/MenuBar.cpp:641
msgid "Game ID"
-msgstr "ID Gioco"
+msgstr "ID gioco"
#: Source/Core/DolphinQt/Config/InfoWidget.cpp:122
-#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:110
+#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:111
msgid "Game ID:"
-msgstr "ID Gioco:"
+msgstr "ID gioco:"
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:633
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635
msgid "Game Status"
-msgstr "Stato del Gioco"
+msgstr "Stato del gioco"
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:825
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:827
msgid "Game changed to \"%1\""
msgstr "Cambiato gioco in \"%1\""
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:641
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:643
msgid ""
"Game file has a different hash; right-click it, select Properties, switch to "
"the Verify tab, and select Verify Integrity to check the hash"
@@ -6210,17 +6381,17 @@ msgstr ""
"Proprietà, vai alla scheda Verifica e seleziona Verifica Integrità per "
"controllare l'hash."
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:644
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:646
msgid "Game has a different disc number"
msgstr "Il gioco ha un diverso numero di disco"
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:646
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:648
msgid "Game has a different revision"
msgstr "Il gioco ha una revisione differente"
-#: Source/Core/Core/NetPlayClient.cpp:1745
+#: Source/Core/Core/NetPlayClient.cpp:1749
msgid "Game is already running!"
-msgstr "Il Gioco è già in esecuzione!"
+msgstr "Il gioco è già in esecuzione!"
#: Source/Core/Core/HW/GCMemcard/GCMemcardDirectory.cpp:499
msgid ""
@@ -6229,7 +6400,7 @@ msgstr ""
"Gioco sovrascritto con un altro salvataggio. Corruzione in posizione {0:#x}, "
"{1:#x}"
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:648
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:650
msgid "Game region does not match"
msgstr "La regione del gioco non coincide"
@@ -6241,54 +6412,54 @@ msgstr "Impostazioni Specifiche del Gioco"
msgid "GameCube"
msgstr "GameCube"
-#: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:36
+#: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:37
msgid "GameCube Adapter for Wii U"
msgstr "Adattatore GameCube per Wii U"
#: Source/Core/DolphinQt/Config/Mapping/GCPadWiiUConfigDialog.cpp:35
msgid "GameCube Adapter for Wii U at Port %1"
-msgstr "Adattatore GameCube per Wii U su Porta %1"
+msgstr "Adattatore GameCube per Wii U su porta %1"
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:414
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:416
msgid "GameCube Controller"
msgstr "Controller GameCube"
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:413
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:415
msgid "GameCube Controller at Port %1"
-msgstr "Controller GameCube su Porta %1"
+msgstr "Controller GameCube su porta %1"
-#: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:76
+#: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:77
msgid "GameCube Controllers"
msgstr "Controller GameCube"
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:406
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:408
msgid "GameCube Keyboard"
msgstr "Tastiera GameCube"
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:405
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:407
msgid "GameCube Keyboard at Port %1"
-msgstr "Tastiera GameCube su Porta %1"
+msgstr "Tastiera GameCube su porta %1"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:99
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:100
msgid "GameCube Memory Card Manager"
-msgstr "GameCube Memory Card Manager"
+msgstr "Gestione Memory Card GameCube"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:362
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:363
msgid "GameCube Memory Cards"
msgstr "Memory Card GameCube"
#: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:75
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:413
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:423
msgid "GameCube Memory Cards (*.raw *.gcp)"
-msgstr "GameCube Memory Card (*.raw *.gcp)"
+msgstr "Memory Card GameCube (*.raw *.gcp)"
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:418
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:420
msgid "GameCube Microphone Slot %1"
-msgstr "Microfono GameCube Slot %1"
+msgstr "Microfono GameCube slot %1"
#: Source/Core/DolphinQt/TAS/GCTASInputWindow.cpp:27
msgid "GameCube TAS Input %1"
-msgstr "GameCube TAS Input %1"
+msgstr "GameCube TAS input %1"
#: Source/Core/DolphinQt/Config/Graphics/ColorCorrectionConfigWindow.cpp:80
msgid "Gamma"
@@ -6296,7 +6467,7 @@ msgstr "Gamma"
#: Source/Core/InputCommon/ControllerEmu/ControlGroup/AnalogStick.cpp:103
msgid "Gate Size"
-msgstr "Dimensione Slot Stick"
+msgstr "Dimensione slot stick"
#: Source/Core/DolphinQt/CheatsManager.cpp:91
#: Source/Core/DolphinQt/Config/PropertiesDialog.cpp:65
@@ -6308,35 +6479,35 @@ msgstr "Codici Gecko"
#: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:60
#: Source/Core/DolphinQt/Config/Graphics/PostProcessingConfigWindow.cpp:120
#: Source/Core/DolphinQt/Config/Mapping/HotkeyGeneral.cpp:21
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:444
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:466
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:446
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:468
#: Source/Core/DolphinQt/Config/SettingsWindow.cpp:37
msgid "General"
msgstr "Generale"
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:429
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:431
msgid "General and Options"
-msgstr "Generale e Opzioni"
+msgstr "Generale e opzioni"
#: Source/Core/DolphinQt/CheatSearchWidget.cpp:472
msgid "Generate Action Replay Code"
-msgstr "Genera Codice Action Replay"
+msgstr "Genera codice Action Replay"
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:232
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:233
msgid "Generate a New Statistics Identity"
-msgstr "Genera una nuova Identità Statistiche"
+msgstr "Genera una nuova identità statistiche"
#: Source/Core/DolphinQt/CheatSearchWidget.cpp:508
msgid "Generated AR code."
msgstr "Codice AR generato."
-#: Source/Core/DolphinQt/MenuBar.cpp:1278
+#: Source/Core/DolphinQt/MenuBar.cpp:1264
msgid "Generated symbol names from '%1'"
msgstr "Generati nomi dei simboli da '%1'"
#: Source/Core/DiscIO/Enums.cpp:83
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:85
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:170
msgid "German"
msgstr "Tedesco"
@@ -6352,40 +6523,45 @@ msgstr "Fallita GetDeviceList: {0}"
msgid "GiB"
msgstr "GiB"
+#. i18n: One of the figure types in the Skylanders games.
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:418
+msgid "Giant"
+msgstr "Gigante"
+
#. i18n: Figures for the game Skylanders: Giants. The game has the same title in all countries
#. it was released in. It was not released in Japan.
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:267
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:278
msgid "Giants"
msgstr "Giganti"
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:195
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:196
msgid "Golf Mode"
-msgstr "Modalità Golf"
+msgstr "Modalità golf"
#: Source/Core/DiscIO/VolumeVerifier.cpp:345
msgid "Good dump"
msgstr "Buon dump"
#: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:31
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:453
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:455
#: Source/Core/DolphinQt/ToolBar.cpp:130
msgid "Graphics"
msgstr "Video"
#: Source/Core/DolphinQt/Config/PropertiesDialog.cpp:67
msgid "Graphics Mods"
-msgstr "Mod Grafiche"
+msgstr "Mod grafiche"
#: Source/Core/Core/HotkeyManager.cpp:346
#: Source/Core/DolphinQt/Config/Mapping/HotkeyGraphics.cpp:20
msgid "Graphics Toggles"
-msgstr "Settaggi Grafici"
+msgstr "Settaggi grafici"
#: Source/Core/DolphinQt/Config/GraphicsModWarningWidget.cpp:59
msgid "Graphics mods are currently disabled."
msgstr "Le mod grafiche sono attualmente disabilitate."
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:463
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:545
msgid ""
"Greatly increases the quality of textures generated using render-to-texture "
"effects.
Slightly increases GPU load and causes relatively few "
@@ -6406,15 +6582,15 @@ msgstr "Verde"
#: Source/Core/Core/HW/WiimoteEmu/Extension/Turntable.cpp:41
msgid "Green Left"
-msgstr "Verde Sinistro"
+msgstr "Verde sinistro"
#: Source/Core/Core/HW/WiimoteEmu/Extension/Turntable.cpp:44
msgid "Green Right"
-msgstr "Verde Destro"
+msgstr "Verde destro"
-#: Source/Core/DolphinQt/MenuBar.cpp:624
+#: Source/Core/DolphinQt/MenuBar.cpp:616
msgid "Grid View"
-msgstr "Vista a Griglia"
+msgstr "Vista a griglia"
#: Source/Core/Core/HW/WiimoteEmu/Extension/Guitar.cpp:66
#: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:120
@@ -6425,7 +6601,7 @@ msgstr "Chitarra"
msgid "Gyroscope"
msgstr "Giroscopio"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:168
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:207
msgid "HDMI 3D"
msgstr "HDMI 3D"
@@ -6441,13 +6617,13 @@ msgstr "HDR Paper White Nits"
msgid "HDR Paper White Nits:"
msgstr "HDR Paper White Nits:"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:122
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:157
msgid "HDR Post-Processing"
msgstr "HDR Post-Processing"
#: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:62
msgid "Hacks"
-msgstr "Hacks"
+msgstr "Hack"
#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:164
msgid "Head"
@@ -6458,6 +6634,10 @@ msgstr "Testa"
msgid "Help"
msgstr "Aiuto"
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:128
+msgid "Hero level:"
+msgstr "Livello eroe:"
+
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:120
msgid "Hex"
msgstr "Hex"
@@ -6478,7 +6658,7 @@ msgstr "Hex 8"
msgid "Hex Byte String"
msgstr "Hex Byte String"
-#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:148
+#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:149
#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:91
msgid "Hexadecimal"
msgstr "Esadecimale"
@@ -6487,28 +6667,28 @@ msgstr "Esadecimale"
msgid "Hide"
msgstr "Nascondi"
-#: Source/Core/DolphinQt/MenuBar.cpp:719
+#: Source/Core/DolphinQt/MenuBar.cpp:711
msgid "Hide All"
-msgstr "Nascondi Tutto"
+msgstr "Nascondi tutto"
+
+#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:93
+msgid "Hide In-Game Sessions"
+msgstr "Nascondi sessioni in-game"
#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:92
-msgid "Hide In-Game Sessions"
-msgstr "Nascondi Sessioni In-Game"
-
-#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:91
msgid "Hide Incompatible Sessions"
-msgstr "Nascondi Sessioni Incompatibili"
+msgstr "Nascondi sessioni incompatibili"
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:231
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:233
msgid "Hide Remote GBAs"
-msgstr "Nascondi GBA Remoti"
+msgstr "Nascondi GBA remoti"
-#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:206
-#: Source/Core/DolphinQt/Settings/AudioPane.cpp:429
+#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:208
+#: Source/Core/DolphinQt/Settings/AudioPane.cpp:426
msgid "High"
msgstr "Alta"
-#: Source/Core/DolphinQt/Settings/AudioPane.cpp:427
+#: Source/Core/DolphinQt/Settings/AudioPane.cpp:424
msgid "Highest"
msgstr "Più alta"
@@ -6517,7 +6697,7 @@ msgstr "Più alta"
msgid "Hit Strength"
msgstr "Forza"
-#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:82
+#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:81
#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:144
#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:375
msgid "Hits"
@@ -6526,26 +6706,26 @@ msgstr "Passaggi"
#. i18n: FOV stands for "Field of view".
#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:237
msgid "Horizontal FOV"
-msgstr "FOV Orizzontale"
+msgstr "FOV orizzontale"
#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:148
#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:202
msgid "Host"
msgstr "Host"
-#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:309
+#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:307
msgid "Host Code:"
-msgstr "Codice Host:"
+msgstr "Codice host:"
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:189
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:190
msgid "Host Input Authority"
-msgstr "Autorità Input Host"
+msgstr "Autorità input host"
#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:82
msgid "Host Size"
-msgstr "Dimensione Host"
+msgstr "Dimensione host"
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:191
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:192
msgid ""
"Host has control of sending all inputs to the game, as received from other "
"players, giving the host zero latency but increasing latency for others.\n"
@@ -6557,15 +6737,15 @@ msgstr ""
"Adatto a giochi casual con più di 3 giocatori, ma potenzialmente instabile "
"su connessioni ad alta latenza."
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:934
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:936
msgid "Host input authority disabled"
msgstr "Autorità input host disattivata"
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:934
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:936
msgid "Host input authority enabled"
msgstr "Autorità input host attivata"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:519
+#: Source/Core/DolphinQt/GameList/GameList.cpp:526
msgid "Host with NetPlay"
msgstr "Host con NetPlay"
@@ -6573,7 +6753,7 @@ msgstr "Host con NetPlay"
msgid "Hostname"
msgstr "Hostname"
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:460
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:462
msgid "Hotkey Settings"
msgstr "Impostazioni Tasti di Scelta Rapida"
@@ -6581,15 +6761,15 @@ msgstr "Impostazioni Tasti di Scelta Rapida"
#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:258
#: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:41
msgid "Hotkeys"
-msgstr "Tasti di Scelta Rapida"
+msgstr "Tasti di scelta rapida"
-#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:150
+#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:155
msgid "Hotkeys Require Window Focus"
msgstr "I tasti rapidi richiedono il focus"
-#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108
+#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:109
msgid "Hybrid Ubershaders"
-msgstr "Ubershader Ibridi"
+msgstr "Ubershader ibridi"
#. i18n: The symbol/abbreviation for hertz (cycles per second).
#: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:153
@@ -6597,7 +6777,7 @@ msgstr "Ubershader Ibridi"
msgid "Hz"
msgstr "Hz"
-#: Source/Core/DolphinQt/NKitWarningDialog.cpp:50
+#: Source/Core/DolphinQt/NKitWarningDialog.cpp:53
msgid "I am aware of the risks and want to continue"
msgstr "Sono cosciente del rischio e voglio continuare"
@@ -6606,11 +6786,11 @@ msgstr "Sono cosciente del rischio e voglio continuare"
msgid "ID"
msgstr "ID"
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:526
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:613
msgid "ID entered is invalid!"
msgstr "L'ID inserito non è valido!"
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:501
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:588
msgid "ID:"
msgstr "ID:"
@@ -6638,24 +6818,24 @@ msgstr ""
"di consultare https://dolphin-emu.org/docs/guides/wii-network-guide/ per "
"istruzioni su come impostare le connettività Wii"
-#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:309
+#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:307
msgid "IP Address:"
msgstr "Indirizzo IP:"
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:68
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:69
msgid "IPL Settings"
msgstr "Impostazioni IPL"
-#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:48
+#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:49
msgid "IR"
msgstr "Puntamento IR"
#. i18n: IR stands for infrared and refers to the pointer functionality of Wii Remotes
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:362
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:361
msgid "IR Sensitivity:"
msgstr "Sensibilità IR:"
-#: Source/Core/DolphinQt/ConvertDialog.cpp:87
+#: Source/Core/DolphinQt/ConvertDialog.cpp:88
msgid ""
"ISO: A simple and robust format which is supported by many programs. It "
"takes up more space than any other format.\n"
@@ -6688,11 +6868,11 @@ msgstr ""
"successivi. Può comprimere efficientemente sia i dati inutilizzati sia i "
"dati criptati Wii."
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:155
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:156
msgid "Icon"
msgstr "Icona"
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:197
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:198
msgid ""
"Identical to Host Input Authority, except the \"Host\" (who has zero "
"latency) can be switched at any time.\n"
@@ -6703,11 +6883,11 @@ msgstr ""
"Adatto a giochi a turni dipendenti dalle tempistiche dei controlli, come il "
"golf."
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:371
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:372
msgid "Identity Generation"
-msgstr "Generazione Identità"
+msgstr "Generazione identità"
-#: Source/Core/DolphinQt/Main.cpp:261
+#: Source/Core/DolphinQt/Main.cpp:266
msgid ""
"If authorized, Dolphin can collect data on its performance, feature usage, "
"and configuration, as well as data on your system's hardware and operating "
@@ -6730,7 +6910,7 @@ msgstr ""
"Questa autorizzazione può essere revocata in qualunque momento dal menu "
"delle impostazioni di Dolphin."
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:166
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:167
msgid ""
"If checked, all Wii saves will be used instead of only the save of the game "
"being started. Useful when switching games mid-session. Has no effect if No "
@@ -6750,7 +6930,7 @@ msgstr ""
"Se disabilitato, lo stato di connessione del controller emulato è legato\n"
"allo stato di connessione del dispositivo di default reale (se presente)"
-#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:204
+#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:200
msgid ""
"If enabled, then all memory updates happen at once before the first frame."
"
Causes issues with many fifologs, but can be useful for testing."
@@ -6761,7 +6941,7 @@ msgstr ""
"per testing.
Nel dubbio, lascia deselezionato."
"dolphin_emphasis>"
-#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:208
+#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:204
msgid ""
"If unchecked, then playback of the fifolog stops after the final frame."
"
This is generally only useful when a frame-dumping option is enabled."
@@ -6779,9 +6959,9 @@ msgstr "Ignora"
#: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:46
msgid "Ignore Format Changes"
-msgstr "Ignora Cambiamenti di Formato"
+msgstr "Ignora cambiamenti di formato"
-#: Source/Core/DolphinQt/Main.cpp:75
+#: Source/Core/DolphinQt/Main.cpp:76
msgid "Ignore for this session"
msgstr "Ignora per questa sessione"
@@ -6812,7 +6992,7 @@ msgstr ""
#: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:89
msgid "Immediately Present XFB"
-msgstr "XFB Immediatamente Presente"
+msgstr "XFB immediatamente presente"
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:398
msgid ""
@@ -6829,30 +7009,30 @@ msgstr ""
"
Nel "
"dubbio, lascia selezionato."
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:218
+msgid "Incorrect hero level value!"
+msgstr "Valore livello eroe non valido!"
+
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:241
+msgid "Incorrect last placed time!"
+msgstr "Valore ultimo posizionamento non valido!"
+
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:235
+msgid "Incorrect last reset time!"
+msgstr "Valore ultimo reset non valido!"
+
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:212
+msgid "Incorrect money value!"
+msgstr "Valore soldi non valido!"
+
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:224
+msgid "Incorrect nickname!"
+msgstr "Soprannome non valido!"
+
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:230
+msgid "Incorrect playtime value!"
+msgstr "Valore tempo di gioco non valido!"
+
#: Source/Core/Core/FreeLookManager.cpp:98
msgid "Increase"
msgstr "Aumenta"
#: Source/Core/Core/HotkeyManager.cpp:129
msgid "Increase Convergence"
-msgstr "Aumenta Convergenza"
+msgstr "Aumenta convergenza"
#: Source/Core/Core/HotkeyManager.cpp:127
msgid "Increase Depth"
-msgstr "Aumenta Profondità"
+msgstr "Aumenta profondità"
#: Source/Core/Core/HotkeyManager.cpp:47
msgid "Increase Emulation Speed"
-msgstr "Aumenta Velocità di Emulazione"
+msgstr "Aumenta velocità di emulazione"
#. i18n: IR stands for internal resolution
#: Source/Core/Core/HotkeyManager.cpp:117
@@ -6910,7 +7114,7 @@ msgstr "Aumenta IR"
#: Source/Core/Core/HotkeyManager.cpp:182
msgid "Increase Selected State Slot"
-msgstr "Slot Stato Selezionato Successivo"
+msgstr "Slot stato selezionato successivo"
#: Source/Core/Core/FreeLookManager.cpp:107
msgid "Increase X"
@@ -6922,21 +7126,21 @@ msgstr "Aumenta Y"
#: Source/Core/Core/FreeLookManager.cpp:113
msgid "Incremental Rotation"
-msgstr "Rotazione Incrementale"
+msgstr "Rotazione incrementale"
-#: Source/Core/DolphinQt/Config/Mapping/FreeLookRotation.cpp:41
+#: Source/Core/DolphinQt/Config/Mapping/FreeLookRotation.cpp:43
msgid "Incremental Rotation (rad/sec)"
-msgstr "Rotazione Incrementale (rad/sec)"
+msgstr "Rotazione incrementale (rad/sec)"
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:188
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:190
msgid "Infinity Figure Creator"
-msgstr "Creatore Statuina Infinity"
+msgstr "Creatore statuina Infinity"
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:37
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:38
msgid "Infinity Manager"
-msgstr "Manager Infinity"
+msgstr "Gestione Infinity"
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:280
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:282
msgid "Infinity Object (*.bin);;"
msgstr "Oggetto Infinity (*.bin);;"
@@ -6952,27 +7156,27 @@ msgstr ""
#: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:48
#: Source/Core/DolphinQt/Config/PropertiesDialog.cpp:68
-#: Source/Core/DolphinQt/ConvertDialog.cpp:101
+#: Source/Core/DolphinQt/ConvertDialog.cpp:102
msgid "Info"
msgstr "Info"
#: Source/Core/Common/MsgHandler.cpp:59
-#: Source/Core/DolphinQt/GameList/GameList.cpp:700
-#: Source/Core/DolphinQt/GameList/GameList.cpp:762
-#: Source/Core/DolphinQt/MenuBar.cpp:1277
-#: Source/Core/DolphinQt/MenuBar.cpp:1516
+#: Source/Core/DolphinQt/GameList/GameList.cpp:712
+#: Source/Core/DolphinQt/GameList/GameList.cpp:774
+#: Source/Core/DolphinQt/MenuBar.cpp:1263
+#: Source/Core/DolphinQt/MenuBar.cpp:1503
msgid "Information"
msgstr "Informazioni"
-#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:151
+#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:156
msgid "Inhibit Screensaver During Emulation"
-msgstr "Disabilita lo Screensaver durante l'Emulazione"
+msgstr "Disabilita lo screensaver durante l'emulazione"
#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:275
-#: Source/Core/DolphinQt/MenuBar.cpp:1300
-#: Source/Core/DolphinQt/MenuBar.cpp:1358
-#: Source/Core/DolphinQt/MenuBar.cpp:1627
-#: Source/Core/DolphinQt/MenuBar.cpp:1652
+#: Source/Core/DolphinQt/MenuBar.cpp:1286
+#: Source/Core/DolphinQt/MenuBar.cpp:1345
+#: Source/Core/DolphinQt/MenuBar.cpp:1614
+#: Source/Core/DolphinQt/MenuBar.cpp:1639
msgid "Input"
msgstr "Input"
@@ -6986,42 +7190,42 @@ msgstr "Forza richiesta per l'attivazione"
msgid "Input strength to ignore and remap."
msgstr "Forza da ignorare e rimappare."
-#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:596
+#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:597
msgid "Insert &nop"
msgstr "Inserisci &nop"
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:219
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:216
msgid "Insert SD Card"
-msgstr "Inserisci SD Card"
+msgstr "Inserisci scheda SD"
-#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:82
+#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:81
#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:144
#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:375
msgid "Inspected"
msgstr "Ispezionato"
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:39
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:319
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:40
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:321
msgid "Install"
msgstr "Installa"
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:153
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:154
msgid "Install Partition (%1)"
-msgstr "Partizione di Installazione (%1)"
+msgstr "Partizione di installazione (%1)"
-#: Source/Core/DolphinQt/Updater.cpp:85
+#: Source/Core/DolphinQt/Updater.cpp:86
msgid "Install Update"
-msgstr "Installa Aggiornamento"
+msgstr "Installa aggiornamento"
-#: Source/Core/DolphinQt/MenuBar.cpp:266
+#: Source/Core/DolphinQt/MenuBar.cpp:258
msgid "Install WAD..."
msgstr "Installa WAD..."
-#: Source/Core/DolphinQt/GameList/GameList.cpp:442
+#: Source/Core/DolphinQt/GameList/GameList.cpp:443
msgid "Install to the NAND"
msgstr "Installa su NAND"
-#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:155
+#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:156
msgid "Instr."
msgstr "Istr."
@@ -7031,9 +7235,9 @@ msgstr "Istruzione"
#: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:101
msgid "Instruction Breakpoint"
-msgstr "Punto di Interruzione"
+msgstr "Punto di interruzione"
-#: Source/Core/DolphinQt/MenuBar.cpp:1750
+#: Source/Core/DolphinQt/MenuBar.cpp:1737
msgid "Instruction:"
msgstr "Istruzione:"
@@ -7041,7 +7245,7 @@ msgstr "Istruzione:"
msgid "Instruction: %1"
msgstr "Istruzione: %1"
-#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:730
+#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:731
msgid ""
"Instructions executed: %1\n"
"Value contained in:\n"
@@ -7062,8 +7266,23 @@ msgstr "Intensità"
msgid "Interface"
msgstr "Interfaccia"
+#: Source/Core/Core/State.cpp:665
+msgid "Internal LZ4 Error - Tried decompressing {0} bytes"
+msgstr "Errore Interno LZ4 - Tentata decompressione di {0} byte"
+
+#: Source/Core/Core/State.cpp:331
+msgid "Internal LZ4 Error - compression failed"
+msgstr "Errore Interno LZ4 - compressione non riuscita"
+
+#: Source/Core/Core/State.cpp:685
+msgid "Internal LZ4 Error - decompression failed ({0}, {1}, {2})"
+msgstr "Errore Interno LZ4 - decompressione non riuscita ({0}, {1}, {2})"
+
+#: Source/Core/Core/State.cpp:698
+msgid "Internal LZ4 Error - payload size mismatch ({0} / {1}))"
+msgstr "Errore Interno LZ4 - dimensione del payload differente ({0} / {1}))"
+
#: Source/Core/Core/NetPlayCommon.cpp:67 Source/Core/Core/NetPlayCommon.cpp:151
-#: Source/Core/Core/State.cpp:407
msgid "Internal LZO Error - compression failed"
msgstr "Errore Interno LZO - compressione non riuscita"
@@ -7072,43 +7291,54 @@ msgstr "Errore Interno LZO - compressione non riuscita"
msgid "Internal LZO Error - decompression failed"
msgstr "Errore Interno LZO - decompressione non riuscita"
-#: Source/Core/Core/State.cpp:617
+#: Source/Core/Core/State.cpp:529
msgid ""
-"Internal LZO Error - decompression failed ({0}) ({1}, {2}) \n"
-"Try loading the state again"
+"Internal LZO Error - decompression failed ({0}) ({1}) \n"
+"Unable to retrieve outdated savestate version info."
msgstr ""
-"Errore Interno LZO - decompressione non riuscita ({0}) ({1}, {2})\n"
-"Prova a caricare di nuovo lo stato di salvataggio"
+"Errore Interno LZO - decompressione non riuscita ({0}) ({1}) \n"
+"Impossibile recuperare i dati di versione del salvataggio obsoleto."
-#: Source/Core/Core/State.cpp:725
-msgid "Internal LZO Error - lzo_init() failed"
-msgstr "Errore Interno LZO - lzo_init() fallito"
+#: Source/Core/Core/State.cpp:542
+msgid ""
+"Internal LZO Error - failed to parse decompressed version cookie and version "
+"string length ({0})"
+msgstr ""
+"Errore Interno LZO - impossibile analizzare il cookie di versione e la "
+"lunghezza della stringa di versione ({0})"
+
+#: Source/Core/Core/State.cpp:559
+msgid ""
+"Internal LZO Error - failed to parse decompressed version string ({0} / {1})"
+msgstr ""
+"Errore Interno LZO - impossibile analizzare la stringa di versione "
+"decompressa ({0} / {1})"
#: Source/Core/Core/HotkeyManager.cpp:347
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:529
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:611
#: Source/Core/DolphinQt/Config/Mapping/HotkeyGraphics.cpp:27
msgid "Internal Resolution"
-msgstr "Risoluzione Interna"
+msgstr "Risoluzione interna"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:125
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:160
msgid "Internal Resolution:"
-msgstr "Risoluzione Interna:"
+msgstr "Risoluzione interna:"
#: Source/Core/DolphinQt/CheatSearchWidget.cpp:521
msgid "Internal error while generating AR code."
msgstr "Errore interno durante la generazione del codice AR."
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:28
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:30
msgid "Interpreter (slowest)"
msgstr "Interpreter (il più lento)"
-#: Source/Core/DolphinQt/MenuBar.cpp:825
+#: Source/Core/DolphinQt/MenuBar.cpp:817
msgid "Interpreter Core"
msgstr "Interpreter Core"
-#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:689
+#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:707
msgid "Invalid Expression."
-msgstr "Espressione non Valida"
+msgstr "Espressione non valida"
#: Source/Core/UICommon/AutoUpdate.cpp:214
msgid "Invalid JSON received from auto-update service : {0}"
@@ -7116,26 +7346,26 @@ msgstr "JSON non valido ricevuto dal servizio di auto-aggiornamento : {0}"
#: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:166
msgid "Invalid Mixed Code"
-msgstr "Codice Misto Invalido"
+msgstr "Codice misto invalido"
-#: Source/Core/DolphinQt/MainWindow.cpp:304
+#: Source/Core/DolphinQt/MainWindow.cpp:306
msgid "Invalid Pack %1 provided: %2"
msgstr "Pack non valido %1 fornito: %2"
#: Source/Core/DolphinQt/NetPlay/ChunkedProgressDialog.cpp:26
#: Source/Core/DolphinQt/NetPlay/GameDigestDialog.cpp:23
msgid "Invalid Player ID"
-msgstr "ID Giocatore non valido"
+msgstr "ID giocatore non valido"
-#: Source/Core/DolphinQt/MenuBar.cpp:1307
+#: Source/Core/DolphinQt/MenuBar.cpp:1293
msgid "Invalid RSO module address: %1"
msgstr "Indirizzo del modulo RSO non valido: %1"
-#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:350
+#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:352
msgid "Invalid callstack"
msgstr "Stack di chiamate non valido"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:839
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:841
msgid "Invalid checksums."
msgstr "Checksum invalidi."
@@ -7143,7 +7373,7 @@ msgstr "Checksum invalidi."
msgid "Invalid game."
msgstr "Gioco non valido."
-#: Source/Core/Core/NetPlayClient.cpp:1979
+#: Source/Core/Core/NetPlayClient.cpp:1983
msgid "Invalid host"
msgstr "Host non valido"
@@ -7164,7 +7394,7 @@ msgstr "Letterale non valido."
msgid "Invalid parameters given to search."
msgstr "Non sono stati forniti parametri validi alla ricerca."
-#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:315
+#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:316
msgid "Invalid password provided."
msgstr "Inserita password non valida."
@@ -7186,7 +7416,7 @@ msgstr ""
"Stringa di ricerca non valida (solo stringhe di lunghezza pari sono "
"supportate)"
-#: Source/Core/DolphinQt/Main.cpp:209
+#: Source/Core/DolphinQt/Main.cpp:211
msgid "Invalid title ID."
msgstr "Title ID non valido."
@@ -7195,8 +7425,8 @@ msgid "Invalid watch address: %1"
msgstr "Indirizzo di controllo non valido: %1"
#: Source/Core/DiscIO/Enums.cpp:92
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:173
msgid "Italian"
msgstr "Italiano"
@@ -7204,80 +7434,85 @@ msgstr "Italiano"
msgid "Italy"
msgstr "Italia"
-#: Source/Core/DolphinQt/MenuBar.cpp:823
+#. i18n: One of the figure types in the Skylanders games.
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:426
+msgid "Item"
+msgstr "Oggetto"
+
+#: Source/Core/DolphinQt/MenuBar.cpp:815
msgid "JIT"
msgstr "JIT"
-#: Source/Core/DolphinQt/MenuBar.cpp:837
+#: Source/Core/DolphinQt/MenuBar.cpp:829
msgid "JIT Block Linking Off"
-msgstr "Disattiva Linking dei Blocchi JIT"
+msgstr "Disattiva linking dei blocchi JIT"
#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:24
msgid "JIT Blocks"
msgstr "Blocchi JIT"
-#: Source/Core/DolphinQt/MenuBar.cpp:961
+#: Source/Core/DolphinQt/MenuBar.cpp:945
msgid "JIT Branch Off"
msgstr "JIT Branch Off"
-#: Source/Core/DolphinQt/MenuBar.cpp:929
+#: Source/Core/DolphinQt/MenuBar.cpp:917
msgid "JIT FloatingPoint Off"
msgstr "JIT FloatingPoint Off"
-#: Source/Core/DolphinQt/MenuBar.cpp:937
+#: Source/Core/DolphinQt/MenuBar.cpp:924
msgid "JIT Integer Off"
msgstr "JIT Integer Off"
-#: Source/Core/DolphinQt/MenuBar.cpp:912
+#: Source/Core/DolphinQt/MenuBar.cpp:902
msgid "JIT LoadStore Floating Off"
msgstr "JIT LoadStore Floating Off"
-#: Source/Core/DolphinQt/MenuBar.cpp:880
+#: Source/Core/DolphinQt/MenuBar.cpp:874
msgid "JIT LoadStore Off"
msgstr "JIT LoadStore Off"
-#: Source/Core/DolphinQt/MenuBar.cpp:921
+#: Source/Core/DolphinQt/MenuBar.cpp:910
msgid "JIT LoadStore Paired Off"
msgstr "JIT LoadStore Paired Off"
-#: Source/Core/DolphinQt/MenuBar.cpp:896
+#: Source/Core/DolphinQt/MenuBar.cpp:888
msgid "JIT LoadStore lXz Off"
msgstr "JIT LoadStore lXz Off"
-#: Source/Core/DolphinQt/MenuBar.cpp:888
+#: Source/Core/DolphinQt/MenuBar.cpp:881
msgid "JIT LoadStore lbzx Off"
msgstr "JIT LoadStore lbzx Off"
-#: Source/Core/DolphinQt/MenuBar.cpp:904
+#: Source/Core/DolphinQt/MenuBar.cpp:895
msgid "JIT LoadStore lwz Off"
msgstr "JIT LoadStore lwz Off"
-#: Source/Core/DolphinQt/MenuBar.cpp:872
+#: Source/Core/DolphinQt/MenuBar.cpp:868
msgid "JIT Off (JIT Core)"
msgstr "JIT Off (JIT Core)"
-#: Source/Core/DolphinQt/MenuBar.cpp:945
+#: Source/Core/DolphinQt/MenuBar.cpp:931
msgid "JIT Paired Off"
msgstr "JIT Paired Off"
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:31
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:33
msgid "JIT Recompiler for ARM64 (recommended)"
msgstr "Ricompilatore JIT per ARM64 (consigliato)"
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:30
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:32
msgid "JIT Recompiler for x86-64 (recommended)"
msgstr "Ricompilatore JIT per x86-64 (consigliato)"
-#: Source/Core/DolphinQt/MenuBar.cpp:969
+#: Source/Core/DolphinQt/MenuBar.cpp:952
msgid "JIT Register Cache Off"
-msgstr "Registro Cache JIT Off"
+msgstr "Registro cache JIT Off"
-#: Source/Core/DolphinQt/MenuBar.cpp:953
+#: Source/Core/DolphinQt/MenuBar.cpp:938
msgid "JIT SystemRegisters Off"
msgstr "JIT SystemRegisters Off"
-#: Source/Core/Core/PowerPC/Jit64/Jit.cpp:793
-#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:795
+#: Source/Core/Core/PowerPC/Jit64/Jit.cpp:815
+#: Source/Core/Core/PowerPC/JitArm64/Jit.cpp:936
msgid ""
"JIT failed to find code space after a cache clear. This should never happen. "
"Please report this incident on the bug tracker. Dolphin will now exit."
@@ -7286,12 +7521,12 @@ msgstr ""
"cache. Questo non dovrebbe mai accadere. Per cortesia segnala questo "
"problema nel bug tracker. Dolphin ora terminerà."
-#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:284
+#: Source/Core/DiscIO/Enums.cpp:27 Source/Core/DolphinQt/MenuBar.cpp:276
msgid "Japan"
msgstr "Giappone"
#: Source/Core/DiscIO/Enums.cpp:77
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:171
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:168
msgid "Japanese"
msgstr "Giapponese"
@@ -7302,12 +7537,20 @@ msgstr "Giapponese"
msgid "Japanese (Shift-JIS)"
msgstr "Giapponese (Shift-JIS)"
-#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:671
-#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:295
-msgid "Keep Running"
-msgstr "Rimani in Esecuzione"
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:292
+msgid ""
+"Kaos is the only villain for this trophy and is always unlocked. No need to "
+"edit anything!"
+msgstr ""
+"Kaos è l'unico cattivo per questo trofeo ed è sempre sbloccato. Non serve "
+"modificare nulla!"
-#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:168
+#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:672
+#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:296
+msgid "Keep Running"
+msgstr "Rimani in esecuzione"
+
+#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:172
msgid "Keep Window on Top"
msgstr "Finestra sempre in cima"
@@ -7324,9 +7567,9 @@ msgstr "Mantieni gli indirizzi il cui valore in memoria"
msgid "Keyboard"
msgstr "Tastiera"
-#: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:44
+#: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:45
msgid "Keyboard Controller"
-msgstr "Controller Tastiera"
+msgstr "Controller tastiera"
#: Source/Core/Core/HW/GCKeyboardEmu.cpp:57
#: Source/Core/Core/HW/GCKeyboardEmu.cpp:61
@@ -7341,16 +7584,16 @@ msgstr "Tasti"
msgid "KiB"
msgstr "KiB"
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:292
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:294
msgid "Kick Player"
-msgstr "Kicka Giocatore"
+msgstr "Kicka giocatore"
-#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:286
+#: Source/Core/DiscIO/Enums.cpp:45 Source/Core/DolphinQt/MenuBar.cpp:278
msgid "Korea"
msgstr "Corea"
#: Source/Core/DiscIO/Enums.cpp:104
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:180
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177
msgid "Korean"
msgstr "Coreano"
@@ -7361,7 +7604,7 @@ msgstr "Coreano"
msgid "L"
msgstr "L"
-#: Source/Core/DolphinQt/GBAWidget.cpp:392
+#: Source/Core/DolphinQt/GBAWidget.cpp:393
msgid "L&oad ROM..."
msgstr "C&arica ROM..."
@@ -7381,25 +7624,33 @@ msgstr "Etichetta"
#: Source/Core/DolphinQt/CheatSearchWidget.cpp:534
msgid "Last Value"
-msgstr "Ultimo Valore"
+msgstr "Ultimo valore"
+
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:153
+msgid "Last placed:"
+msgstr "Ultimo posizionamento:"
+
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:144
+msgid "Last reset:"
+msgstr "Ultimo reset:"
#: Source/Core/DolphinQt/Settings/AudioPane.cpp:87
msgid "Latency:"
msgstr "Latenza:"
-#: Source/Core/DolphinQt/Settings/AudioPane.cpp:438
+#: Source/Core/DolphinQt/Settings/AudioPane.cpp:435
msgid "Latency: ~10 ms"
msgstr "Latenza: ~10 ms"
-#: Source/Core/DolphinQt/Settings/AudioPane.cpp:440
+#: Source/Core/DolphinQt/Settings/AudioPane.cpp:437
msgid "Latency: ~20 ms"
msgstr "Latenza: ~20 ms"
-#: Source/Core/DolphinQt/Settings/AudioPane.cpp:444
+#: Source/Core/DolphinQt/Settings/AudioPane.cpp:441
msgid "Latency: ~40 ms"
msgstr "Latenza: ~40 ms"
-#: Source/Core/DolphinQt/Settings/AudioPane.cpp:442
+#: Source/Core/DolphinQt/Settings/AudioPane.cpp:439
msgid "Latency: ~80 ms"
msgstr "Latenza: ~80 ms"
@@ -7407,11 +7658,15 @@ msgstr "Latenza: ~80 ms"
msgid "Launching these titles may also fix the issues."
msgstr "Avviare questi titoli potrebbe anche correggere i problemi."
+#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:52
+msgid "Leaderboards"
+msgstr "Classifiche"
+
#: Source/Core/Core/FreeLookManager.cpp:90
#: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:36
#: Source/Core/Core/HW/WiimoteEmu/Extension/TaTaCon.cpp:35
#: Source/Core/DolphinQt/TAS/GCTASInputWindow.cpp:41
-#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:213
+#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:214
#: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:22
#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUAccelerometer.cpp:20
#: Source/Core/InputCommon/ControllerEmu/ControlGroup/Slider.cpp:21
@@ -7422,15 +7677,15 @@ msgstr "Sinistra"
#: Source/Core/Core/HW/WiimoteEmu/Extension/Classic.h:220
#: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:55
-#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:93
+#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:94
msgid "Left Stick"
-msgstr "Levetta Sinistra"
+msgstr "Levetta sinistra"
#. i18n: "Table" refers to a turntable
#: Source/Core/Core/HW/WiimoteEmu/Extension/Turntable.cpp:68
#: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:166
msgid "Left Table"
-msgstr "Tabella di Sinistra"
+msgstr "Tabella di sinistra"
#: Source/Core/DolphinQt/TAS/IRWidget.cpp:19
msgid ""
@@ -7448,7 +7703,7 @@ msgstr ""
"Click sinistro per impostare lo stick.\n"
"Click destro per ri-centrarlo."
-#: Source/Core/DolphinQt/Config/Mapping/MappingButton.cpp:81
+#: Source/Core/DolphinQt/Config/Mapping/MappingButton.cpp:82
msgid ""
"Left-click to detect input.\n"
"Middle-click to clear.\n"
@@ -7458,7 +7713,7 @@ msgstr ""
"Click centrale del mouse per cancellare.\n"
"Click destro del mouse per altre opzioni."
-#: Source/Core/DolphinQt/Config/Mapping/MappingButton.cpp:85
+#: Source/Core/DolphinQt/Config/Mapping/MappingButton.cpp:86
msgid ""
"Left/Right-click to configure output.\n"
"Middle-click to clear."
@@ -7477,7 +7732,7 @@ msgstr "Licenza"
#. i18n: One of the elements in the Skylanders games. Japanese: ライフ. For official translations
#. in other languages, check the SuperChargers manual at https://support.activision.com/manuals
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:339
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:355
msgid "Life"
msgstr "Vita"
@@ -7487,203 +7742,206 @@ msgid "Lift"
msgstr "Solleva"
#. i18n: Noun. This is used as a label for a control group that represents lights on controllers.
+#. i18n: One of the elements in the Skylanders games. For official translations
+#. in other languages, check the SuperChargers manual at https://support.activision.com/manuals
#: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:52
#: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:239
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:368
msgid "Light"
msgstr "Luce"
#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:137
msgid "Limit Chunked Upload Speed:"
-msgstr "Limite Velocità di Chunked Upload:"
+msgstr "Limite velocità upload a blocchi:"
-#: Source/Core/DolphinQt/MenuBar.cpp:658
+#: Source/Core/DolphinQt/MenuBar.cpp:650
msgid "List Columns"
-msgstr "Lista Colonne"
+msgstr "Lista colonne"
-#: Source/Core/DolphinQt/MenuBar.cpp:621
+#: Source/Core/DolphinQt/MenuBar.cpp:613
msgid "List View"
-msgstr "Vista a Lista"
+msgstr "Vista a lista"
#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:96
msgid "Listening"
msgstr "Ascolto"
#: Source/Core/DolphinQt/Config/Mapping/HotkeyStates.cpp:23
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:130
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:114
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:131
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:115
#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:104
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:108
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:109
msgid "Load"
msgstr "Carica"
-#: Source/Core/DolphinQt/MenuBar.cpp:995
+#: Source/Core/DolphinQt/MenuBar.cpp:977
msgid "Load &Bad Map File..."
-msgstr "(&B) Carica Mappa Invalida..."
+msgstr "Carica file mappa &invalida..."
-#: Source/Core/DolphinQt/MenuBar.cpp:994
+#: Source/Core/DolphinQt/MenuBar.cpp:976
msgid "Load &Other Map File..."
-msgstr "(&O) Carica Altra Mappa..."
+msgstr "Carica &altro file mappa..."
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:98
msgid "Load Custom Textures"
-msgstr "Carica Texture Personalizzate"
+msgstr "Carica texture personalizzate"
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:118
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:126
msgid "Load File"
-msgstr "Carica File"
+msgstr "Carica file"
-#: Source/Core/DolphinQt/MenuBar.cpp:251
+#: Source/Core/DolphinQt/MenuBar.cpp:243
msgid "Load GameCube Main Menu"
-msgstr "Carica Main Menu GameCube"
+msgstr "Carica menu principale GameCube"
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:145
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:146
msgid "Load Host's Save Data Only"
-msgstr "Carica Solo Salvataggio dell'Host"
+msgstr "Carica solo salvataggio dell'host"
#: Source/Core/Core/HotkeyManager.cpp:356
#: Source/Core/DolphinQt/Config/Mapping/HotkeyStatesOther.cpp:22
msgid "Load Last State"
-msgstr "Carica Ultimo Stato di Gioco"
+msgstr "Carica ultimo stato di gioco"
#: Source/Core/DolphinQt/Settings/PathPane.cpp:211
msgid "Load Path:"
-msgstr "Carica Percorso:"
+msgstr "Carica percorso:"
#: Source/Core/Core/HotkeyManager.cpp:185
msgid "Load ROM"
msgstr "Carica ROM"
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:120
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:128
msgid "Load Slot"
-msgstr "Carica Slot"
+msgstr "Carica slot"
#: Source/Core/Core/HotkeyManager.cpp:181
#: Source/Core/Core/HotkeyManager.cpp:353
msgid "Load State"
-msgstr "Carica Stato di Gioco"
+msgstr "Carica stato di gioco"
#: Source/Core/Core/HotkeyManager.cpp:166
msgid "Load State Last 1"
-msgstr "Carica Stato di Gioco in Posizione 1"
+msgstr "Carica stato di gioco in posizione 1"
#: Source/Core/Core/HotkeyManager.cpp:175
msgid "Load State Last 10"
-msgstr "Carica Stato di Gioco in Posizione 10"
+msgstr "Carica stato di gioco in posizione 10"
#: Source/Core/Core/HotkeyManager.cpp:167
msgid "Load State Last 2"
-msgstr "Carica Stato di Gioco in Posizione 2"
+msgstr "Carica stato di gioco in posizione 2"
#: Source/Core/Core/HotkeyManager.cpp:168
msgid "Load State Last 3"
-msgstr "Carica Stato di Gioco in Posizione 3"
+msgstr "Carica stato di gioco in posizione 3"
#: Source/Core/Core/HotkeyManager.cpp:169
msgid "Load State Last 4"
-msgstr "Carica Stato di Gioco in Posizione 4"
+msgstr "Carica stato di gioco in posizione 4"
#: Source/Core/Core/HotkeyManager.cpp:170
msgid "Load State Last 5"
-msgstr "Carica Stato di Gioco in Posizione 5"
+msgstr "Carica stato di gioco in posizione 5"
#: Source/Core/Core/HotkeyManager.cpp:171
msgid "Load State Last 6"
-msgstr "Carica Stato di Gioco in Posizione 6"
+msgstr "Carica stato di gioco in posizione 6"
#: Source/Core/Core/HotkeyManager.cpp:172
msgid "Load State Last 7"
-msgstr "Carica Stato di Gioco in Posizione 7"
+msgstr "Carica stato di gioco in posizione 7"
#: Source/Core/Core/HotkeyManager.cpp:173
msgid "Load State Last 8"
-msgstr "Carica Stato di Gioco in Posizione 8"
+msgstr "Carica stato di gioco in posizione 8"
#: Source/Core/Core/HotkeyManager.cpp:174
msgid "Load State Last 9"
-msgstr "Carica Stato di Gioco in Posizione 9"
+msgstr "Carica stato di gioco in posizione 9"
#: Source/Core/Core/HotkeyManager.cpp:131
msgid "Load State Slot 1"
-msgstr "Carica Stato di Gioco da Slot 1"
+msgstr "Carica stato di gioco da slot 1"
#: Source/Core/Core/HotkeyManager.cpp:140
msgid "Load State Slot 10"
-msgstr "Carica Stato di Gioco da Slot 10"
+msgstr "Carica stato di gioco da slot 10"
#: Source/Core/Core/HotkeyManager.cpp:132
msgid "Load State Slot 2"
-msgstr "Carica Stato di Gioco da Slot 2"
+msgstr "Carica stato di gioco da slot 2"
#: Source/Core/Core/HotkeyManager.cpp:133
msgid "Load State Slot 3"
-msgstr "Carica Stato di Gioco da Slot 3"
+msgstr "Carica stato di gioco da slot 3"
#: Source/Core/Core/HotkeyManager.cpp:134
msgid "Load State Slot 4"
-msgstr "Carica Stato di Gioco da Slot 4"
+msgstr "Carica stato di gioco da slot 4"
#: Source/Core/Core/HotkeyManager.cpp:135
msgid "Load State Slot 5"
-msgstr "Carica Stato di Gioco da Slot 5"
+msgstr "Carica stato di gioco da slot 5"
#: Source/Core/Core/HotkeyManager.cpp:136
msgid "Load State Slot 6"
-msgstr "Carica Stato di Gioco da Slot 6"
+msgstr "Carica stato di gioco da slot 6"
#: Source/Core/Core/HotkeyManager.cpp:137
msgid "Load State Slot 7"
-msgstr "Carica Stato di Gioco da Slot 7"
+msgstr "Carica stato di gioco da slot 7"
#: Source/Core/Core/HotkeyManager.cpp:138
msgid "Load State Slot 8"
-msgstr "Carica Stato di Gioco da Slot 8"
+msgstr "Carica stato di gioco da slot 8"
#: Source/Core/Core/HotkeyManager.cpp:139
msgid "Load State Slot 9"
-msgstr "Carica Stato di Gioco da Slot 9"
+msgstr "Carica stato di gioco da slot 9"
-#: Source/Core/DolphinQt/MenuBar.cpp:341
+#: Source/Core/DolphinQt/MenuBar.cpp:333
msgid "Load State from File"
-msgstr "Carica Stato da File"
+msgstr "Carica stato da file"
-#: Source/Core/DolphinQt/MenuBar.cpp:342
+#: Source/Core/DolphinQt/MenuBar.cpp:334
msgid "Load State from Selected Slot"
-msgstr "Carica Stato dallo Slot Selezionato"
+msgstr "Carica stato dallo slot selezionato"
-#: Source/Core/DolphinQt/MenuBar.cpp:343
+#: Source/Core/DolphinQt/MenuBar.cpp:335
msgid "Load State from Slot"
-msgstr "Carica Stato da Slot"
+msgstr "Carica stato da slot"
-#: Source/Core/DolphinQt/MenuBar.cpp:1034
+#: Source/Core/DolphinQt/MenuBar.cpp:1016
msgid "Load Wii System Menu %1"
-msgstr "Carica Menu di Sistema Wii %1"
+msgstr "Carica menu di sistema Wii %1"
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:150
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:151
msgid "Load and Write Host's Save Data"
-msgstr "Carica e Scrivi Salvataggio dell'Host"
+msgstr "Carica e scrivi salvataggio dell'host"
#: Source/Core/Core/HotkeyManager.cpp:141
msgid "Load from Selected Slot"
-msgstr "Carica dallo Slot Selezionato"
+msgstr "Carica dallo slot selezionato"
-#: Source/Core/DolphinQt/MenuBar.cpp:397
+#: Source/Core/DolphinQt/MenuBar.cpp:389
msgid "Load from Slot %1 - %2"
-msgstr "Carica da Slot %1 - %2"
+msgstr "Carica da slot %1 - %2"
-#: Source/Core/DolphinQt/MenuBar.cpp:1535
-#: Source/Core/DolphinQt/MenuBar.cpp:1552
+#: Source/Core/DolphinQt/MenuBar.cpp:1522
+#: Source/Core/DolphinQt/MenuBar.cpp:1539
msgid "Load map file"
msgstr "Carica mappa"
-#: Source/Core/DolphinQt/MenuBar.cpp:1033
+#: Source/Core/DolphinQt/MenuBar.cpp:1015
msgid "Load vWii System Menu %1"
-msgstr "Carica Menu di Sistema vWii %1"
+msgstr "Carica menu di sistema vWii %1"
#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:148
msgid "Load..."
msgstr "Carica..."
-#: Source/Core/DolphinQt/MenuBar.cpp:1517
+#: Source/Core/DolphinQt/MenuBar.cpp:1504
msgid "Loaded symbols from '%1'"
msgstr "Caricati simboli da '%1'"
@@ -7705,15 +7963,15 @@ msgstr ""
"Carica mod grafiche da User/Load/GraphicsMods/.
Nel "
"dubbio, lascia deselezionato."
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:525
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:527
msgid "Local"
msgstr "Locale"
-#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:193
+#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:197
msgid "Lock Mouse Cursor"
-msgstr "Blocca il Cursore del Mouse"
+msgstr "Blocca il cursore del mouse"
-#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:115
+#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:162
#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97
msgid "Locked"
msgstr "Bloccato"
@@ -7725,11 +7983,19 @@ msgstr "Log"
#: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:22
msgid "Log Configuration"
-msgstr "Configurazione Log"
+msgstr "Configurazione log"
-#: Source/Core/DolphinQt/MenuBar.cpp:866
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:55
+msgid "Log In"
+msgstr "Login"
+
+#: Source/Core/DolphinQt/MenuBar.cpp:862
msgid "Log JIT Instruction Coverage"
-msgstr "Log della Copertura delle Istruzioni JIT"
+msgstr "Log della copertura delle istruzioni JIT"
+
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:56
+msgid "Log Out"
+msgstr "Logut"
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:63
msgid "Log Render Time to File"
@@ -7737,23 +8003,15 @@ msgstr "Scrivi log del tempo di rendering su file"
#: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:59
msgid "Log Types"
-msgstr "Tipi di Log"
+msgstr "Tipi di log"
#: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:52
msgid "Logger Outputs"
-msgstr "Destinazione Logger"
-
-#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:55
-msgid "Login"
-msgstr "Login"
+msgstr "Destinazione logger"
#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:57
msgid "Login Failed"
-msgstr "Login non Riuscita"
-
-#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:56
-msgid "Logout"
-msgstr "Logout"
+msgstr "Login non riuscita"
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:284
msgid ""
@@ -7770,20 +8028,20 @@ msgstr ""
msgid "Loop"
msgstr "Loop"
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:974
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:976
msgid "Lost connection to NetPlay server..."
msgstr "Persa la connessione al server NetPlay..."
-#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:200
-#: Source/Core/DolphinQt/Settings/AudioPane.cpp:425
+#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:202
+#: Source/Core/DolphinQt/Settings/AudioPane.cpp:422
msgid "Low"
msgstr "Bassa"
-#: Source/Core/DolphinQt/Settings/AudioPane.cpp:423
+#: Source/Core/DolphinQt/Settings/AudioPane.cpp:420
msgid "Lowest"
msgstr "Più bassa"
-#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:74
+#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:75
msgid "MD5:"
msgstr "MD5:"
@@ -7795,23 +8053,51 @@ msgstr "MMU"
msgid "MORIBUND"
msgstr "MORIBUND"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:400
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:401
msgid "MadCatz Gameshark files"
msgstr "File Gameshark MadCatz"
#. i18n: One of the elements in the Skylanders games. Japanese: まほう. For official translations
#. in other languages, check the SuperChargers manual at https://support.activision.com/manuals
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:324
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:340
msgid "Magic"
msgstr "Magia"
#: Source/Core/DolphinQt/TAS/GCTASInputWindow.cpp:29
msgid "Main Stick"
-msgstr "Levetta Principale"
+msgstr "Levetta principale"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:985
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:219
+msgid "Make sure that the hero level value is between 0 and 100!"
+msgstr "Assicurati che il valore del livello eroe sia tra 0 e 100!"
+
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:242
+msgid "Make sure that the last placed datetime value is valid!"
+msgstr "Assicurati che il valore dell'ultimo posizionamento sia valido!"
+
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:236
+msgid "Make sure that the last reset datetime value is valid!"
+msgstr "Assicurati che la data e l'ora dell'ultimo reset siano validi!"
+
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:213
+msgid "Make sure that the money value is between 0 and 65000!"
+msgstr "Assicurati che il valore dei soldi sia tra 0 e 65000!"
+
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:225
+msgid "Make sure that the nickname is between 0 and 15 characters long!"
+msgstr "Assicurati che il soprannome sia lungo tra 0 e 15 caratteri!"
+
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:231
+msgid "Make sure that the playtime value is valid!"
+msgstr "Assicurati che il valore del tempo di gioco sia valido!"
+
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:664
+msgid "Make sure there is a Skylander in slot %1!"
+msgstr "Assicurati che ci sia uno Skylander nello slot %1!"
+
+#: Source/Core/DolphinQt/GameList/GameList.cpp:999
#: Source/Core/DolphinQt/GameList/GameListModel.cpp:221
-#: Source/Core/DolphinQt/MenuBar.cpp:646
+#: Source/Core/DolphinQt/MenuBar.cpp:638
msgid "Maker"
msgstr "Produttore"
@@ -7820,7 +8106,7 @@ msgstr "Produttore"
msgid "Maker:"
msgstr "Produttore:"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:481
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:563
msgid ""
"Makes distant objects more visible by removing fog, thus increasing the "
"overall detail.
Disabling fog will break some games which rely on "
@@ -7833,32 +8119,32 @@ msgstr ""
"
Nel dubbio, lascia deselezionato."
"dolphin_emphasis>"
-#: Source/Core/DolphinQt/MenuBar.cpp:267
+#: Source/Core/DolphinQt/MenuBar.cpp:259
msgid "Manage NAND"
msgstr "Gestisci NAND"
#: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:93
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:184
msgid "Manual Texture Sampling"
-msgstr "Texture Sampling Manuale"
+msgstr "Texture sampling manuale"
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:633
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635
msgid "Mapping"
msgstr "Mappatura"
-#: Source/Core/Core/HW/EXI/EXI_Device.h:97
+#: Source/Core/Core/HW/EXI/EXI_Device.h:96
msgid "Mask ROM"
msgstr "Maschera ROM"
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:845
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:844
msgid "Match Found"
-msgstr "Trovata Corrispondenza"
+msgstr "Trovata corrispondenza"
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:956
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:958
msgid "Max Buffer:"
-msgstr "Buffer Massimo:"
+msgstr "Buffer massimo:"
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:924
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:926
msgid "Max buffer size changed to %1"
msgstr "Dimensione massima del buffer cambiata a %1"
@@ -7867,13 +8153,13 @@ msgstr "Dimensione massima del buffer cambiata a %1"
msgid "Maximum tilt angle."
msgstr "Massimo angolo di inclinazione"
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:197
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:194
msgid "May cause slow down in Wii Menu and some games."
msgstr ""
-"Potrebbe causare rallentamenti all'interno del Menu Wii e in alcuni giochi."
+"Potrebbe causare rallentamenti all'interno del menu Wii e in alcuni giochi."
#: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:228
-#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:203
+#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:205
msgid "Medium"
msgstr "Medio"
@@ -7883,23 +8169,23 @@ msgstr "Memoria"
#: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:119
msgid "Memory Breakpoint"
-msgstr "Punto di Interruzione dei Dati"
+msgstr "Punto di interruzione dei dati"
-#: Source/Core/Core/HW/EXI/EXI_Device.h:96
+#: Source/Core/Core/HW/EXI/EXI_Device.h:95
msgid "Memory Card"
msgstr "Memory Card"
-#: Source/Core/DolphinQt/MenuBar.cpp:260
+#: Source/Core/DolphinQt/MenuBar.cpp:252
msgid "Memory Card Manager"
-msgstr "Memory Card Manager"
+msgstr "Gestione Memory Card"
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:108
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:109
msgid "Memory Card Path:"
msgstr "Percorso Memory Card:"
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:113
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:119
msgid "Memory Override"
-msgstr "Override Memoria"
+msgstr "Override memoria"
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:220
msgid "Memory breakpoint options"
@@ -7918,7 +8204,7 @@ msgid "MemoryCard: Write called with invalid destination address ({0:#x})"
msgstr ""
"MemoryCard: Write chiamata su indirizzo di destinazione non valido ({0:#x})"
-#: Source/Core/DolphinQt/MainWindow.cpp:1715
+#: Source/Core/DolphinQt/MainWindow.cpp:1765
msgid ""
"Merging a new NAND over your currently selected NAND will overwrite any "
"channels and savegames that already exist. This process is not reversible, "
@@ -7934,31 +8220,36 @@ msgstr ""
msgid "MiB"
msgstr "MiB"
-#: Source/Core/Core/HW/EXI/EXI_Device.h:100 Source/Core/Core/HW/GCPadEmu.h:60
+#: Source/Core/Core/HW/EXI/EXI_Device.h:99 Source/Core/Core/HW/GCPadEmu.h:60
#: Source/Core/DolphinQt/Config/Mapping/GCMicrophone.cpp:26
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:420
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:422
msgid "Microphone"
msgstr "Microfono"
+#. i18n: One of the figure types in the Skylanders games.
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:424
+msgid "Mini"
+msgstr "Mini"
+
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:151
msgid "Misc"
msgstr "Varie"
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:155
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:152
msgid "Misc Settings"
-msgstr "Impostazioni Varie"
+msgstr "Impostazioni varie"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:842
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:844
msgid "Mismatch between free block count in header and actually unused blocks."
msgstr ""
"Discordanza tra il conto dei blocchi liberi nell'intestazione e i blocchi "
"effettivamente liberi."
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:845
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:847
msgid "Mismatch between internal data structures."
msgstr "Discordanza tra le strutture dati interne."
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1100
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1102
msgid ""
"Mismatched ROMs\n"
"Selected: {0}\n"
@@ -7979,7 +8270,7 @@ msgstr ""
#: Source/Core/InputCommon/ControllerEmu/ControlGroup/AnalogStick.cpp:32
#: Source/Core/InputCommon/ControllerEmu/ControlGroup/Tilt.cpp:25
msgid "Modifier"
-msgstr "Mezza Incl."
+msgstr "Mezza incl."
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:294
msgid ""
@@ -7992,52 +8283,60 @@ msgstr ""
"
Nel dubbio, lascia deselezionato."
"dolphin_emphasis>"
-#: Source/Core/DolphinQt/MenuBar.cpp:1327
-#: Source/Core/DolphinQt/MenuBar.cpp:1476
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:129
+msgid "Modify Slot"
+msgstr "Modifica slot"
+
+#: Source/Core/DolphinQt/MenuBar.cpp:1313
+#: Source/Core/DolphinQt/MenuBar.cpp:1463
msgid "Modules found: %1"
msgstr "Moduli trovati: %1"
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:184
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:124
+msgid "Money:"
+msgstr "Soldi:"
+
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:181
msgid "Mono"
msgstr "Mono"
#: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:134
msgid "Monoscopic Shadows"
-msgstr "Ombre Monoscopiche"
+msgstr "Ombre monoscopiche"
#: Source/Core/DolphinQt/Config/LogWidget.cpp:138
msgid "Monospaced Font"
msgstr "Carattere a spaziatura fissa"
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:431
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:433
msgid "Motion Input"
-msgstr "Input di Movimento"
+msgstr "Input di movimento"
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:430
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:432
msgid "Motion Simulation"
-msgstr "Simulazione di Movimento"
+msgstr "Simulazione di movimento"
#: Source/Core/Core/HW/GCPadEmu.cpp:78
#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:284
msgid "Motor"
msgstr "Motore"
-#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:175
+#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:179
msgid "Mouse Cursor Visibility"
-msgstr "Visibilità Puntatore Mouse"
+msgstr "Visibilità puntatore mouse"
-#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:181
+#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:185
msgid ""
"Mouse Cursor hides after inactivity and returns upon Mouse Cursor movement."
msgstr ""
"Il puntatore del mouse scompare dopo un periodo di inattività, e riappare al "
"muoversi del mouse."
-#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:186
+#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:190
msgid "Mouse Cursor will always be visible."
msgstr "Il puntatore sarà sempre visibile."
-#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:184
+#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:188
msgid "Mouse Cursor will never be visible while a game is running."
msgstr ""
"Il puntatore del mouse non sarà mai visibile durante l'esecuzione di un "
@@ -8062,28 +8361,28 @@ msgstr ""
"molto probabilmente non sarà sincronizzato!"
#. i18n: Controller input values are multiplied by this percentage value.
-#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:323
+#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:342
msgid "Multiplier"
msgstr "Moltiplicatore"
#: qtbase/src/gui/kernel/qplatformtheme.cpp:722
msgid "N&o to All"
-msgstr "N&o a Tutto"
+msgstr "N&o a tutto"
-#: Source/Core/DolphinQt/MenuBar.cpp:1163
+#: Source/Core/DolphinQt/MenuBar.cpp:1145
+#: Source/Core/DolphinQt/MenuBar.cpp:1154
#: Source/Core/DolphinQt/MenuBar.cpp:1172
-#: Source/Core/DolphinQt/MenuBar.cpp:1186
-#: Source/Core/DolphinQt/MenuBar.cpp:1190
+#: Source/Core/DolphinQt/MenuBar.cpp:1176
#: Source/Core/DolphinQt/NANDRepairDialog.cpp:29
msgid "NAND Check"
msgstr "Controllo NAND"
-#: Source/Core/DolphinQt/NKitWarningDialog.cpp:29
+#: Source/Core/DolphinQt/NKitWarningDialog.cpp:32
msgid "NKit Warning"
msgstr "Attenzione NKit"
-#: Source/Core/DolphinQt/MenuBar.cpp:253
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:212
+#: Source/Core/DolphinQt/MenuBar.cpp:245
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:213
msgid "NTSC-J"
msgstr "NTSC-J"
@@ -8091,7 +8390,7 @@ msgstr "NTSC-J"
msgid "NTSC-J (ARIB TR-B9)"
msgstr "NTSC-J (ARIB TR-B9)"
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:212
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:213
msgid "NTSC-K"
msgstr "NTSC-K"
@@ -8113,25 +8412,25 @@ msgstr ""
"gioco permette di scegliere un valore gamma, impostalo qui."
"
Nel dubbio, lascia a 2.35."
-#: Source/Core/DolphinQt/MenuBar.cpp:255
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:212
+#: Source/Core/DolphinQt/MenuBar.cpp:247
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:213
msgid "NTSC-U"
msgstr "NTSC-U"
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:60
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:61
#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330
#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352
#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223
#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:160
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:91
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:92
msgid "Name"
msgstr "Nome"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:1104
+#: Source/Core/DolphinQt/GameList/GameList.cpp:1118
msgid "Name for a new tag:"
msgstr "Nome del nuovo tag:"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:1116
+#: Source/Core/DolphinQt/GameList/GameList.cpp:1130
msgid "Name of the tag to remove:"
msgstr "Nome del tag da rimuovere:"
@@ -8140,11 +8439,11 @@ msgid "Name of your session shown in the server browser"
msgstr "Nome della sessione da visualizzare nel server browser"
#: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:87
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:108
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:109
#: Source/Core/DolphinQt/Config/InfoWidget.cpp:121
#: Source/Core/DolphinQt/Config/InfoWidget.cpp:156
#: Source/Core/DolphinQt/Config/InfoWidget.cpp:163
-#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:108
+#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:109
msgid "Name:"
msgstr "Nome:"
@@ -8152,18 +8451,18 @@ msgstr "Nome:"
msgid "Native (640x528)"
msgstr "Nativo (640x528)"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:398
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:405
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:399
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:406
msgid "Native GCI File"
msgstr "File GCI Nativo"
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:98
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:99
msgid "NetPlay"
msgstr "NetPlay"
-#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:33
+#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:34
msgid "NetPlay Session Browser"
-msgstr "Browser Sessioni NetPlay"
+msgstr "Sfoglia sessioni NetPlay"
#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:34
msgid "NetPlay Setup"
@@ -8173,7 +8472,7 @@ msgstr "Impostazioni NetPlay"
msgid "Netherlands"
msgstr "Olanda"
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:152
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:153
msgid ""
"Netplay will start using the Host's save data, and any save data created or "
"modified during the Netplay session will remain in the Host's local saves."
@@ -8182,7 +8481,7 @@ msgstr ""
"salvataggio creato o modificato durante la sessione Netplay rimarrà tra i "
"salvataggi locali dell'Host."
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:147
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:148
msgid ""
"Netplay will start using the Host's save data, but any save data created or "
"modified during the Netplay session will be discarded at the end of the "
@@ -8192,7 +8491,7 @@ msgstr ""
"salvataggio creato o modificato durante la sessione Netplay verrà scartato "
"al termine."
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:142
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:143
msgid ""
"Netplay will start without any save data, and any created save data will be "
"discarded at the end of the Netplay session."
@@ -8201,7 +8500,7 @@ msgstr ""
"creato o modificato durante la sessione Netplay verrà scartato al termine."
#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:147
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:181
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:182
msgid "Network"
msgstr "Network"
@@ -8209,62 +8508,63 @@ msgstr "Network"
msgid "Network dump format:"
msgstr "Formato dump network:"
-#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:182
+#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:186
msgid "Never"
msgstr "Mai"
-#: Source/Core/DolphinQt/Updater.cpp:83
+#: Source/Core/DolphinQt/Updater.cpp:84
msgid "Never Auto-Update"
-msgstr "Disabilita Aggiornamento Automatico"
+msgstr "Disabilita aggiornamento automatico"
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:110
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:111
#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:101
msgid "New"
msgstr "Nuovo"
#: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:28
msgid "New Breakpoint"
-msgstr "Nuovo Punto di Interruzione"
+msgstr "Nuovo punto di interruzione"
#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:123
msgid "New Search"
-msgstr "Nuova Ricerca"
+msgstr "Nuova ricerca"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:514
+#: Source/Core/DolphinQt/GameList/GameList.cpp:521
msgid "New Tag..."
-msgstr "Nuovo Tag..."
+msgstr "Nuovo tag..."
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:372
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:373
msgid "New identity generated."
-msgstr "Generata Nuova Identità"
+msgstr "Generata nuova identità"
#: Source/Core/DolphinQt/Debugger/PatchInstructionDialog.cpp:35
msgid "New instruction:"
msgstr "Nuova istruzione:"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:1104
+#: Source/Core/DolphinQt/GameList/GameList.cpp:1118
msgid "New tag"
-msgstr "Nuovo Tag"
+msgstr "Nuovo tag"
#: Source/Core/Core/HotkeyManager.cpp:91 Source/Core/Core/HotkeyManager.cpp:95
#: Source/Core/Core/HotkeyManager.cpp:99 Source/Core/Core/HotkeyManager.cpp:103
msgid "Next Game Profile"
-msgstr "Profilo di Gioco Successivo"
+msgstr "Profilo di gioco successivo"
#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:87
msgid "Next Match"
-msgstr "Corrispondenza Successiva"
+msgstr "Corrispondenza successiva"
#: Source/Core/Core/HotkeyManager.cpp:89 Source/Core/Core/HotkeyManager.cpp:93
#: Source/Core/Core/HotkeyManager.cpp:97 Source/Core/Core/HotkeyManager.cpp:101
msgid "Next Profile"
-msgstr "Profilo Successivo"
+msgstr "Profilo successivo"
#: Source/Core/Core/NetPlayClient.cpp:293
msgid "Nickname is too long."
msgstr "Il nickname è troppo lungo."
#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:195
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:134
msgid "Nickname:"
msgstr "Nickname:"
@@ -8276,29 +8576,33 @@ msgstr "No"
#: Source/Core/DolphinQt/Config/Mapping/GCPadWiiUConfigDialog.cpp:79
msgid "No Adapter Detected"
-msgstr "Nessun Adattatore Rilevato"
+msgstr "Nessun adattatore rilevato"
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:204
msgid "No Alignment"
-msgstr "Nessun Allineamento"
+msgstr "Nessun allineamento"
#: Source/Core/Core/Config/MainSettings.h:17
msgid "No Audio Output"
-msgstr "Nessun Output Audio"
+msgstr "Nessun output audio"
#: Source/Core/DolphinQt/Config/InfoWidget.cpp:69
#: Source/Core/DolphinQt/ConvertDialog.cpp:217
#: Source/Core/DolphinQt/GameList/GameListModel.cpp:187
msgid "No Compression"
-msgstr "Nessuna Compressione"
+msgstr "Nessuna compressione"
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:857
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:856
msgid "No Match"
-msgstr "Nessuna Corrispondenza"
+msgstr "Nessuna corrispondenza"
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:140
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:141
msgid "No Save Data"
-msgstr "Nessun Salvataggio"
+msgstr "Nessun salvataggio"
+
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:82
+msgid "No data to modify!"
+msgstr "Non sono presenti dati da modificare!"
#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:542
#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:559
@@ -8309,7 +8613,7 @@ msgstr "Nessun Salvataggio"
msgid "No description available"
msgstr "Non è disponibile una descrizione"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:851
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:853
msgid "No errors."
msgstr "Nessun errore."
@@ -8317,7 +8621,7 @@ msgstr "Nessun errore."
msgid "No extension selected."
msgstr "Nessuna estensione selezionata."
-#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:329
+#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:325
msgid "No file loaded / recorded."
msgstr "Nessun file caricato / registrato."
@@ -8325,15 +8629,19 @@ msgstr "Nessun file caricato / registrato."
msgid "No game is running."
msgstr "Nessun gioco è in esecuzione."
-#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:163
+#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:165
msgid "No game running."
msgstr "Nessun gioco in esecuzione."
-#: Source/Core/DolphinQt/MenuBar.cpp:1174
+#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:196
+msgid "No graphics mod selected"
+msgstr "Non sono state selezionate mod grafiche"
+
+#: Source/Core/DolphinQt/MenuBar.cpp:1156
msgid "No issues have been detected."
msgstr "Non sono stati rilevati problemi."
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:650
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:652
msgid "No matching game was found"
msgstr "Non sono stati trovati giochi compatibili"
@@ -8368,26 +8676,26 @@ msgstr "Nessun profilo trovato per l'impostazione di gioco '{0}'"
msgid "No recording loaded."
msgstr "Nessuna registrazione caricata."
-#: Source/Core/DolphinQt/GameList/GameList.cpp:700
-#: Source/Core/DolphinQt/GameList/GameList.cpp:762
+#: Source/Core/DolphinQt/GameList/GameList.cpp:712
+#: Source/Core/DolphinQt/GameList/GameList.cpp:774
msgid "No save data found."
msgstr "Non sono stati trovati dati di salvataggio."
-#: Source/Core/Core/State.cpp:817
+#: Source/Core/Core/State.cpp:1010
msgid "No undo.dtm found, aborting undo load state to prevent movie desyncs"
msgstr ""
"Non è stato possibile trovare il file undo.dtm, l'annullamento del "
"caricamento dello stato verrà interrotto per evitare la desincronizzazione "
"del filmato."
-#: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:34
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:284
-#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:141
+#: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:35
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:323
+#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:142
#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:423
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:111
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:129
-#: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:82
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:749
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:112
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:130
+#: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:80
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:871
msgid "None"
msgstr "Nessuno"
@@ -8397,13 +8705,13 @@ msgstr "Nord America"
#: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:96
msgid "Not Set"
-msgstr "Non Impostato"
+msgstr "Non impostato"
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:470
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:472
msgid "Not all players have the game. Do you really want to start?"
msgstr "Non tutti i giocatori hanno il gioco. Vuoi davvero continuare?"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:528
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:529
#, c-format
msgctxt ""
msgid ""
@@ -8413,7 +8721,7 @@ msgstr ""
"Non ci sono abbastanza blocchi liberi nella memory card di destinazione. Ne "
"sono necessari almeno %n."
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:521
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:522
#, c-format
msgctxt ""
msgid ""
@@ -8423,11 +8731,11 @@ msgstr ""
"Non ci sono abbastanza file liberi nella memory card di destinazione. Ne "
"sono necessari almeno %n."
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:650
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:652
msgid "Not found"
msgstr "Non trovato"
-#: Source/Core/DolphinQt/Config/Mapping/FreeLookRotation.cpp:27
+#: Source/Core/DolphinQt/Config/Mapping/FreeLookRotation.cpp:28
msgid ""
"Note: motion input may require configuring alternate input sources before "
"use."
@@ -8464,25 +8772,25 @@ msgstr "Scuotimenti al secondo."
#: Source/Core/Core/HW/WiimoteEmu/Extension/Nunchuk.cpp:37
#: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:104
-#: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionInput.cpp:30
+#: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionInput.cpp:31
#: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionSimulation.cpp:27
msgid "Nunchuk"
msgstr "Nunchuk"
-#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:184
+#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:185
msgid "Nunchuk Accelerometer"
msgstr "Accelerometro Nunchuk"
-#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:277
+#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:278
msgid "Nunchuk Buttons"
msgstr "Pulsanti Nunchuk"
-#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:89
+#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:90
msgid "Nunchuk Stick"
msgstr "Levetta Nunchuk"
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:638
-#: Source/Core/DolphinQt/NKitWarningDialog.cpp:57
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:640
+#: Source/Core/DolphinQt/NKitWarningDialog.cpp:60
#: qtbase/src/gui/kernel/qplatformtheme.cpp:708
msgid "OK"
msgstr "OK"
@@ -8493,14 +8801,14 @@ msgstr "Oggetto %1"
#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:90
msgid "Object Range"
-msgstr "Intervallo Oggetto"
+msgstr "Intervallo oggetto"
#: Source/Core/UICommon/NetPlayIndex.cpp:250
msgid "Oceania"
msgstr "Oceania"
#: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:157
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:167
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:206
msgid "Off"
msgstr "Off"
@@ -8512,9 +8820,9 @@ msgstr "Offset"
msgid "On"
msgstr "On"
-#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:179
+#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:183
msgid "On Movement"
-msgstr "Al Movimento"
+msgstr "Al movimento"
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:370
msgid ""
@@ -8526,15 +8834,15 @@ msgstr ""
"espandere vertici e linee, utilizza sempre il vertex shader. Potrebbe "
"influire sulle performance.
%1"
-#: Source/Core/DolphinQt/MenuBar.cpp:591
+#: Source/Core/DolphinQt/MenuBar.cpp:583
msgid "Online &Documentation"
-msgstr "&Documentazione Online"
+msgstr "&Documentazione online"
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:47
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:50
msgid "Only Show Collection"
-msgstr "Mostra Solo Collezione"
+msgstr "Mostra solo collezione"
-#: Source/Core/DolphinQt/MenuBar.cpp:1652
+#: Source/Core/DolphinQt/MenuBar.cpp:1639
msgid ""
"Only append symbols with prefix:\n"
"(Blank for all symbols)"
@@ -8542,7 +8850,7 @@ msgstr ""
"Inserisci solo simboli con prefisso:\n"
"(Vuoto per tutti i simboli)"
-#: Source/Core/DolphinQt/MenuBar.cpp:1627
+#: Source/Core/DolphinQt/MenuBar.cpp:1614
msgid ""
"Only export symbols with prefix:\n"
"(Blank for all symbols)"
@@ -8555,34 +8863,34 @@ msgstr ""
msgid "Open"
msgstr "Apri"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:480
+#: Source/Core/DolphinQt/GameList/GameList.cpp:487
msgid "Open &Containing Folder"
-msgstr "Apri &Percorso File"
+msgstr "Apri &percorso file"
-#: Source/Core/DolphinQt/MenuBar.cpp:211
+#: Source/Core/DolphinQt/MenuBar.cpp:203
msgid "Open &User Folder"
-msgstr "Apri Cartella &Utente"
+msgstr "Apri cartella &utente"
-#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:65
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:38
+#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:66
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:39
msgid "Open Directory..."
-msgstr "Apri Directory..."
+msgstr "Apri cartella..."
-#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:218
+#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:214
msgid "Open FIFO log"
msgstr "Apri log FIFO"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:476
+#: Source/Core/DolphinQt/GameList/GameList.cpp:483
msgid "Open GameCube &Save Folder"
-msgstr "Apri Cartella dei &Salvataggi GameCube"
+msgstr "Apri cartella dei &salvataggi GameCube"
#: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:60
msgid "Open Riivolution XML..."
msgstr "Apri Riivolution XML..."
-#: Source/Core/DolphinQt/GameList/GameList.cpp:469
+#: Source/Core/DolphinQt/GameList/GameList.cpp:471
msgid "Open Wii &Save Folder"
-msgstr "Apri Cartella dei &Salvataggi Wii"
+msgstr "Apri cartella dei &salvataggi Wii"
#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:381
msgid "Open dump folder"
@@ -8590,7 +8898,7 @@ msgstr "Apri cartella dump"
#: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:203
msgid "Open in External Editor"
-msgstr "Apri con l'Editor Esterno"
+msgstr "Apri con l'editor esterno"
#: Source/Core/AudioCommon/OpenALStream.cpp:117
msgid "OpenAL: can't create context for device {0}"
@@ -8612,7 +8920,7 @@ msgstr "OpenGL"
msgid "OpenGL ES"
msgstr "OpenGL ES"
-#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:260
+#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:279
msgid "Operators"
msgstr "Operatori"
@@ -8620,8 +8928,8 @@ msgstr "Operatori"
#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:287
#: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:37
#: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:70
-#: Source/Core/DolphinQt/ConvertDialog.cpp:83
-#: Source/Core/DolphinQt/GBAWidget.cpp:429
+#: Source/Core/DolphinQt/ConvertDialog.cpp:84
+#: Source/Core/DolphinQt/GBAWidget.cpp:430
msgid "Options"
msgstr "Opzioni"
@@ -8630,47 +8938,55 @@ msgstr "Opzioni"
msgid "Orange"
msgstr "Arancione"
-#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:40
+#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:41
msgid "Orbital"
msgstr "Orbita"
#: Source/Core/Core/FreeLookManager.cpp:101
-#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:84
+#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:85
#: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:98
#: Source/Core/DolphinQt/Config/Mapping/FreeLookGeneral.cpp:29
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:226
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:347
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:357
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:228
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:369
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:444
msgid "Other"
msgstr "Altro"
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:157
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:158
msgid "Other Partition (%1)"
-msgstr "Altra Partizione (%1)"
+msgstr "Altra partizione (%1)"
#: Source/Core/Core/HotkeyManager.cpp:357
#: Source/Core/DolphinQt/Config/Mapping/HotkeyStatesOther.cpp:25
msgid "Other State Hotkeys"
-msgstr "Altri Tasti Rapidi"
+msgstr "Altri tasti rapidi"
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:458
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:460
msgid "Other State Management"
-msgstr "Gestione Altri Stati di Gioco"
+msgstr "Gestione altri stati di gioco"
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:213
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:214
msgid "Other game..."
msgstr "Altro gioco..."
-#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:690
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:620
+msgid "Output Resampling"
+msgstr "Ricampionamento Output"
+
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:172
+msgid "Output Resampling:"
+msgstr "Ricampionamento Output:"
+
+#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:691
msgid "Overwritten"
msgstr "Sovrascritto"
-#: Source/Core/DolphinQt/MenuBar.cpp:749
+#: Source/Core/DolphinQt/MenuBar.cpp:741
msgid "P&lay Input Recording..."
-msgstr "&Riproduci Registrazione Input..."
+msgstr "&Riproduci registrazione input..."
-#: Source/Core/DolphinQt/MenuBar.cpp:258
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:212
+#: Source/Core/DolphinQt/MenuBar.cpp:250
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:213
msgid "PAL"
msgstr "PAL"
@@ -8685,11 +9001,11 @@ msgstr "PCAP"
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:147
msgid "PNG Compression Level"
-msgstr "Livello Compressione PNG"
+msgstr "Livello compressione PNG"
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:146
msgid "PNG Compression Level:"
-msgstr "Livello Compressione PNG:"
+msgstr "Livello compressione PNG:"
#: Source/Core/DolphinQt/Config/InfoWidget.cpp:195
msgid "PNG image file (*.png);; All Files (*)"
@@ -8699,7 +9015,7 @@ msgstr "File immagine PNG (*.png);; Tutti i File (*)"
msgid "PPC Size"
msgstr "Dimensione PPC"
-#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:594
+#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:595
msgid "PPC vs Host"
msgstr "PPC vs Host"
@@ -8712,26 +9028,26 @@ msgstr "Pad"
msgid "Pads"
msgstr "Pad"
-#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:156
+#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:157
msgid "Parameters"
msgstr "Parametri"
#: Source/Core/DolphinQt/CheatSearchWidget.cpp:210
msgid "Parse as Hex"
-msgstr "Leggi come Esadecimale"
+msgstr "Leggi come esadecimale"
#: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:149
#: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:236
msgid "Parsing Error"
-msgstr "Analisi dell'Errore"
+msgstr "Analisi dell'errore"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:168
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:207
msgid "Passive"
msgstr "Passivo"
-#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:104
+#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:105
msgid "Passthrough a Bluetooth adapter"
-msgstr "Usa Adattatore Bluetooth Ponte"
+msgstr "Usa adattatore Bluetooth ponte"
#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:52
#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:162
@@ -8748,7 +9064,7 @@ msgstr "Password?"
#: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:40
msgid "Patch Editor"
-msgstr "Patch Editor"
+msgstr "Editor patch"
#: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:63
msgid "Patch name"
@@ -8771,27 +9087,29 @@ msgstr "Percorsi"
msgid "Pause"
msgstr "Pausa"
-#: Source/Core/DolphinQt/MenuBar.cpp:769
+#: Source/Core/DolphinQt/MenuBar.cpp:761
msgid "Pause at End of Movie"
-msgstr "Pausa al Termine del Filmato"
+msgstr "Pausa al termine del filmato"
-#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:173
+#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:177
msgid "Pause on Focus Loss"
-msgstr "Pausa in Secondo Piano"
+msgstr "Pausa in secondo piano"
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:71
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:74
msgid "Pause on Panic"
-msgstr "Pausa su Eccezioni"
+msgstr "Pausa alle eccezioni"
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:73
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:76
msgid ""
-"Pauses the emulation if a Read/Write or Unknown Instruction panic occurs.\n"
-"Enabling will affect performance.\n"
-"The performance impact is the same as having Enable MMU on."
+"Pauses the emulation if a Read/Write or Unknown Instruction panic occurs."
+" Enabling will affect performance. The performance impact is the same "
+"as having Enable MMU on.
If unsure, leave this "
+"unchecked."
msgstr ""
-"Pausa l'emulazione alle eccezioni Read/Write o Istruzione Sconosciuta.\n"
-"Abilitarla influenzerà le prestazioni.\n"
-"L'impatto sarà identico ad avere Abilita MMU attivo."
+"Pausa l'emulazione alle eccezioni Read/Write o Istruzione Sconosciuta."
+" Abilitarla influenzerà le prestazioni. L'impatto sarà identico ad "
+"avere Abilita MMU attivo.
Nel dubbio, lascia "
+"deselezionato"
#. i18n: Refers to tilting an emulated Wii Remote.
#: Source/Core/InputCommon/ControllerEmu/ControlGroup/Tilt.cpp:40
@@ -8808,29 +9126,29 @@ msgstr "Velocità massima per raggiungere la posizione neutrale"
msgid "Peak velocity of outward swing movements."
msgstr "Velocità massima per oscillare verso l'esterno"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:112
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:147
msgid "Per-Pixel Lighting"
-msgstr "Illuminazione Per-Pixel"
+msgstr "Illuminazione per-pixel"
-#: Source/Core/DolphinQt/MenuBar.cpp:278
+#: Source/Core/DolphinQt/MenuBar.cpp:270
msgid "Perform Online System Update"
-msgstr "Avviare Aggiornamento di Sistema Online"
+msgstr "Avviare aggiornamento di sistema online"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:430
+#: Source/Core/DolphinQt/GameList/GameList.cpp:431
msgid "Perform System Update"
-msgstr "Avvia l'Aggiornamento di Sistema"
+msgstr "Avvia l'aggiornamento di sistema"
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:61
msgid "Performance Sample Window (ms)"
-msgstr "Finestra Campione Performance (ms)"
+msgstr "Finestra campione performance (ms)"
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:71
msgid "Performance Sample Window (ms):"
-msgstr "Finestra Campione Performance (ms):"
+msgstr "Finestra campione performance (ms):"
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:49
msgid "Performance Statistics"
-msgstr "Statistiche di Prestazioni"
+msgstr "Statistiche di prestazioni"
#. i18n: One of the options shown below "Address Space". "Physical" is the address space that
#. reflects how devices (e.g. RAM) is physically wired up.
@@ -8846,24 +9164,24 @@ msgstr "Spazio dell'indirizzo fisico"
msgid "PiB"
msgstr "PiB"
-#: Source/Core/DolphinQt/MenuBar.cpp:1232
+#: Source/Core/DolphinQt/MenuBar.cpp:1218
msgid "Pick a debug font"
msgstr "Scegli un font di debug"
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:633
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635
msgid "Ping"
msgstr "Ping"
#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUGyroscope.cpp:30
msgid "Pitch Down"
-msgstr "Inclinazione in Basso"
+msgstr "Inclinazione in basso"
#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUGyroscope.cpp:29
msgid "Pitch Up"
-msgstr "Inclinazione in Alto"
+msgstr "Inclinazione in alto"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:981
-#: Source/Core/DolphinQt/MenuBar.cpp:642
+#: Source/Core/DolphinQt/GameList/GameList.cpp:995
+#: Source/Core/DolphinQt/MenuBar.cpp:634
msgid "Platform"
msgstr "Piattaforma"
@@ -8877,49 +9195,53 @@ msgstr "Avvia / Registra"
#: Source/Core/Core/HotkeyManager.cpp:56
msgid "Play Recording"
-msgstr "Riproduci Registrazione"
+msgstr "Riproduci registrazione"
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:78
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:79
msgid "Play Set/Power Disc"
-msgstr "Play Set/Power Disc"
+msgstr "Avvia Set/Power Disc"
#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:120
msgid "Playback Options"
-msgstr "Opzioni di Riproduzione"
+msgstr "Opzioni di riproduzione"
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:633
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635
msgid "Player"
msgstr "Giocatore"
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:80
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:81
msgid "Player One"
-msgstr "Primo Giocatore"
+msgstr "Primo giocatore"
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:82
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:83
msgid "Player One Ability One"
-msgstr "Primo Giocatore Prima Abilità"
+msgstr "Primo giocatore prima abilità"
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:84
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:85
msgid "Player One Ability Two"
-msgstr "Primo Giocatore Seconda Abilità"
+msgstr "Primo giocatore seconda abilità"
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:86
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:87
msgid "Player Two"
-msgstr "Secondo Giocatore"
+msgstr "Secondo giocatore"
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:88
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:89
msgid "Player Two Ability One"
-msgstr "Secondo Giocatore Prima Abilità"
+msgstr "Secondo giocatore prima abilità"
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:90
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:91
msgid "Player Two Ability Two"
-msgstr "Secondo Giocatore Seconda Abilità"
+msgstr "Secondo giocatore seconda abilità"
#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:224
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:287
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:289
msgid "Players"
msgstr "Giocatori"
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:139
+msgid "Playtime:"
+msgstr "Tempo di gioco:"
+
#. i18n: Please leave SyncOnSkipIdle and True untranslated.
#. The user needs to enter these terms as-is in an INI file.
#: Source/Core/VideoCommon/CommandProcessor.cpp:717
@@ -8931,7 +9253,7 @@ msgstr ""
"disabilitata, per cui molto probabilmente il problema si verificherà di "
"nuovo."
-#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:164
+#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:166
msgid ""
"Please start a game before starting a search with standard memory regions."
msgstr ""
@@ -8943,48 +9265,48 @@ msgstr ""
msgid "Point"
msgstr "Puntamento"
-#: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:83
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:66
+#: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:84
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:67
msgid "Port %1"
msgstr "Porta %1"
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:218
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:219
msgid "Port %1 ROM:"
-msgstr "ROM Porta %1:"
+msgstr "ROM porta %1:"
#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:103
#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:133
msgid "Port:"
msgstr "Porta:"
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:163
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:174
msgid "Portal Slots"
-msgstr "Slot Portale"
+msgstr "Slot portale"
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:967
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:969
msgid "Possible desync detected: %1 might have desynced at frame %2"
msgstr "Rilevato possibile desync: %1 potrebbe aver desyncato al frame %2"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:540
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:626
msgid "Post-Processing Effect"
-msgstr "Effetto di Post-Processing"
+msgstr "Effetto di post-processing"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:141
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:180
msgid "Post-Processing Effect:"
-msgstr "Effetto di Post-Processing:"
+msgstr "Effetto di post-processing:"
#: Source/Core/DolphinQt/Config/Graphics/PostProcessingConfigWindow.cpp:44
msgid "Post-Processing Shader Configuration"
-msgstr "Configura Shader di Post-Processing"
+msgstr "Configura shader di post-processing"
#. i18n: VS is short for vertex shaders.
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:161
msgid "Prefer VS for Point/Line Expansion"
-msgstr "Preferisci VS per Espansione Vertici/Linee"
+msgstr "Preferisci VS per espansione vertici/linee"
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:100
msgid "Prefetch Custom Textures"
-msgstr "Precarica Texture Personalizzate"
+msgstr "Precarica texture personalizzate"
#: Source/Core/Core/Movie.cpp:1217
msgid "Premature movie end in PlayController. {0} + {1} > {2}"
@@ -8998,7 +9320,7 @@ msgstr "Termine prematuro del filmato in PlayWiimote. {0} + {1} > {2}"
msgid "Premature movie end in PlayWiimote. {0} > {1}"
msgstr "Termine prematuro del filmato in PlayWiimote. {0} > {1}"
-#: Source/Core/DolphinQt/WiiUpdate.cpp:96
+#: Source/Core/DolphinQt/WiiUpdate.cpp:97
msgid ""
"Preparing to update...\n"
"This can take a while."
@@ -9012,14 +9334,14 @@ msgstr "Preimpostazioni"
#: Source/Core/Core/HotkeyManager.cpp:80
msgid "Press Sync Button"
-msgstr "Premi il Pulsante Sync"
+msgstr "Premi il pulsante Sync"
#: Source/Core/Core/HW/WiimoteEmu/Extension/DrawsomeTablet.cpp:34
#: Source/Core/Core/HW/WiimoteEmu/Extension/UDrawTablet.cpp:52
msgid "Pressure"
msgstr "Pressione"
-#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:242
+#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:243
msgid ""
"Prevents shader compilation stuttering by not rendering waiting objects. Can "
"work in scenarios where Ubershaders doesn't, at the cost of introducing "
@@ -9037,16 +9359,16 @@ msgstr ""
#: Source/Core/Core/HotkeyManager.cpp:100
#: Source/Core/Core/HotkeyManager.cpp:104
msgid "Previous Game Profile"
-msgstr "Profilo di Gioco Precedente"
+msgstr "Profilo di gioco precedente"
#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:88
msgid "Previous Match"
-msgstr "Corrispondenza Precedente"
+msgstr "Corrispondenza precedente"
#: Source/Core/Core/HotkeyManager.cpp:90 Source/Core/Core/HotkeyManager.cpp:94
#: Source/Core/Core/HotkeyManager.cpp:98 Source/Core/Core/HotkeyManager.cpp:102
msgid "Previous Profile"
-msgstr "Profilo Precedente"
+msgstr "Profilo precedente"
#. i18n: In this context, a primitive means a point, line, triangle or rectangle.
#. Do not translate the word primitive as if it was an adjective.
@@ -9054,15 +9376,15 @@ msgstr "Profilo Precedente"
msgid "Primitive %1"
msgstr "Primitiva %1"
-#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:97
+#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:98
msgid "Private"
msgstr "Privato"
-#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:96
+#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:97
msgid "Private and Public"
-msgstr "Privato e Pubblico"
+msgstr "Privato e pubblico"
-#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:62
+#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:63
msgid "Problem"
msgstr "Problema"
@@ -9090,7 +9412,7 @@ msgstr ""
"Sono stati rilevati problemi di media severità. Il gioco o alcune sue parti "
"potrebbero non funzionare correttamente."
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:128
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:129
msgid "Profile"
msgstr "Profilo"
@@ -9099,23 +9421,23 @@ msgstr "Profilo"
msgid "Program Counter"
msgstr "Program Counter"
-#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:46
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:344
-#: Source/Core/DolphinQt/ConvertDialog.cpp:434
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:284
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:308
+#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:50
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:345
+#: Source/Core/DolphinQt/ConvertDialog.cpp:436
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:281
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306
msgid "Progress"
msgstr "Avanzamento"
-#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:98
+#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:99
msgid "Public"
msgstr "Pubblica"
-#: Source/Core/DolphinQt/MenuBar.cpp:516
+#: Source/Core/DolphinQt/MenuBar.cpp:508
msgid "Purge Game List Cache"
-msgstr "Pulisci Cache Lista Giochi"
+msgstr "Pulisci cache lista giochi"
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:712
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:722
msgid "Put IPL ROMs in User/GC/."
msgstr "Posiziona le ROM IPL in User/GC/."
@@ -9140,13 +9462,13 @@ msgid "Quality of the DPLII decoder. Audio latency increases with quality."
msgstr "Qualità del decoder DPLII. La latenza audio aumenta con la qualità."
#: Source/Core/Common/MsgHandler.cpp:60
-#: Source/Core/DolphinQt/ConvertDialog.cpp:452
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:660
-#: Source/Core/DolphinQt/MainWindow.cpp:1714
+#: Source/Core/DolphinQt/ConvertDialog.cpp:454
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:661
+#: Source/Core/DolphinQt/MainWindow.cpp:1764
msgid "Question"
msgstr "Conferma"
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:133
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:134
msgid "Quit"
msgstr "Esci"
@@ -9167,11 +9489,11 @@ msgstr "R-Analogico"
msgid "READY"
msgstr "PRONTO"
-#: Source/Core/DolphinQt/MenuBar.cpp:987
+#: Source/Core/DolphinQt/MenuBar.cpp:969
msgid "RSO Modules"
msgstr "Moduli RSO"
-#: Source/Core/DolphinQt/MenuBar.cpp:1295
+#: Source/Core/DolphinQt/MenuBar.cpp:1281
msgid "RSO auto-detection"
msgstr "Auto-rilevamento RSO"
@@ -9179,7 +9501,7 @@ msgstr "Auto-rilevamento RSO"
msgid "RUNNING"
msgstr "IN ESECUZIONE"
-#: Source/Core/DolphinQt/ConvertDialog.cpp:356
+#: Source/Core/DolphinQt/ConvertDialog.cpp:357
msgid "RVZ GC/Wii images (*.rvz)"
msgstr "Immagini RVZ GC/Wii (*.rvz)"
@@ -9190,15 +9512,19 @@ msgstr "Intensità"
#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:75
msgid "Range End: "
-msgstr "Fine Intervallo:"
+msgstr "Fine intervallo:"
#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:73
msgid "Range Start: "
-msgstr "Inizio Intervallo:"
+msgstr "Inizio intervallo:"
-#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:598
+#: Source/Core/DolphinQt/Achievements/AchievementLeaderboardWidget.cpp:107
+msgid "Rank %1"
+msgstr "%1 Posizione"
+
+#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:599
msgid "Re&place instruction"
-msgstr "(&p) Sostituisci istruzione"
+msgstr "&Sostituisci istruzione"
#. i18n: This is a selectable condition when adding a breakpoint
#: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:134
@@ -9210,7 +9536,7 @@ msgstr "Lettura"
#. The string is not a command to read and write something or to allow reading and writing.
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:227
msgid "Read and write"
-msgstr "Lettura e Scrittura"
+msgstr "Lettura e scrittura"
#. i18n: This string is used for a radio button that represents the type of
#. memory breakpoint that gets triggered when a read operation occurs.
@@ -9222,19 +9548,19 @@ msgstr "Sola lettura"
#. i18n: This is a selectable condition when adding a breakpoint
#: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:138
msgid "Read or Write"
-msgstr "Lettura o Scrittura"
+msgstr "Lettura o scrittura"
#: Source/Core/Core/HotkeyManager.cpp:58
msgid "Read-Only Mode"
-msgstr "Modalità Sola-lettura"
+msgstr "Modalità sola-lettura"
-#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:112
+#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:113
msgid "Real Balance Board"
-msgstr "Balance Board Reale"
+msgstr "Balance Board reale"
-#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:141
+#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:142
msgid "Real Wii Remote"
-msgstr "Wii Remote Reale"
+msgstr "Wii Remote reale"
#: Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp:387
msgid "Received invalid Wii Remote data from Netplay."
@@ -9249,9 +9575,9 @@ msgstr "Centra"
msgid "Record"
msgstr "Registra"
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:227
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:229
msgid "Record Inputs"
-msgstr "Registra Input"
+msgstr "Registra input"
#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:147
msgid "Recording"
@@ -9259,9 +9585,9 @@ msgstr "Registrazione"
#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:132
msgid "Recording Options"
-msgstr "Opzioni di Registrazione"
+msgstr "Opzioni di registrazione"
-#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:325
+#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:321
msgid "Recording..."
msgstr "Registrazione..."
@@ -9272,13 +9598,13 @@ msgstr "Rosso"
#: Source/Core/Core/HW/WiimoteEmu/Extension/Turntable.cpp:42
msgid "Red Left"
-msgstr "Rosso Sinistro"
+msgstr "Rosso sinistro"
#: Source/Core/Core/HW/WiimoteEmu/Extension/Turntable.cpp:45
msgid "Red Right"
-msgstr "Rosso Destro"
+msgstr "Rosso destro"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:444
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:495
msgid ""
"Reduces the amount of aliasing caused by rasterizing 3D graphics, resulting "
"in smoother edges on objects. Increases GPU load and sometimes causes "
@@ -9294,28 +9620,28 @@ msgstr ""
"applicato anche alle luci, agli effetti di shader e alle texture."
"
Nel dubbio, seleziona Nessuno."
-#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:86
+#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:87
msgid "Redump.org Status:"
msgstr "Stato di Redump.org:"
#: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:202
#: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:80
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:106
-#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:107
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:107
+#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:108
#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:99
-#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:88
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:41
+#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:89
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:42
#: Source/Core/DolphinQt/ToolBar.cpp:116
msgid "Refresh"
msgstr "Aggiorna"
#: Source/Core/DolphinQt/CheatSearchWidget.cpp:221
msgid "Refresh Current Values"
-msgstr "Aggiorna Valori Attuali"
+msgstr "Aggiorna valori attuali"
#: Source/Core/Core/HotkeyManager.cpp:30
msgid "Refresh Game List"
-msgstr "Aggiorna l'Elenco dei Giochi"
+msgstr "Aggiorna l'elenco dei giochi"
#: Source/Core/DolphinQt/CheatSearchWidget.cpp:407
msgid "Refresh failed. Please run the game for a bit and try again."
@@ -9323,65 +9649,65 @@ msgstr "Aggiornamento fallito. Esegui il gioco per un po', quindi riprova."
#: Source/Core/DolphinQt/CheatSearchWidget.cpp:421
msgid "Refreshed current values."
-msgstr "Valori Attuali Aggiornati."
+msgstr "Valori attuali aggiornati."
-#: Source/Core/DolphinQt/GameList/GameList.cpp:278
+#: Source/Core/DolphinQt/GameList/GameList.cpp:279
#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:198
msgid "Refreshing..."
msgstr "Aggiornamento..."
-#: Source/Core/DolphinQt/GameList/GameList.cpp:989
-#: Source/Core/DolphinQt/MenuBar.cpp:650
+#: Source/Core/DolphinQt/GameList/GameList.cpp:1003
+#: Source/Core/DolphinQt/MenuBar.cpp:642
#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223
msgid "Region"
msgstr "Regione"
-#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:106
+#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:107
msgid "Region:"
msgstr "Regione:"
-#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:26
+#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:27
msgid "Registers"
msgstr "Registri"
#: Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.cpp:62
msgid "Relative Input"
-msgstr "Input Relativo"
+msgstr "Input relativo"
#: Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.cpp:33
msgid "Relative Input Hold"
-msgstr "Pressione Relativa Input"
+msgstr "Pressione relativa input"
-#: Source/Core/DolphinQt/Updater.cpp:84
+#: Source/Core/DolphinQt/Updater.cpp:85
msgid "Remind Me Later"
-msgstr "Ricorda Più Tardi"
+msgstr "Ricorda più tardi"
-#: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:39
+#: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:40
#: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:129
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:40
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:41
#: Source/Core/DolphinQt/Settings/PathPane.cpp:142
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:329
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:328
msgid "Remove"
msgstr "Rimuovi"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:668
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:675
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:669
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:676
msgid "Remove Failed"
-msgstr "Rimozione non Riuscita"
+msgstr "Rimozione non riuscita"
-#: Source/Core/DolphinQt/ConvertDialog.cpp:75
+#: Source/Core/DolphinQt/ConvertDialog.cpp:76
msgid "Remove Junk Data (Irreversible):"
-msgstr "Rimuovi Dati Inutilizzati (Irreversibile)"
+msgstr "Rimuovi dati inutilizzati (irreversibile)"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:515
+#: Source/Core/DolphinQt/GameList/GameList.cpp:522
msgid "Remove Tag..."
-msgstr "Rimuovi Tag..."
+msgstr "Rimuovi tag..."
-#: Source/Core/DolphinQt/GameList/GameList.cpp:1116
+#: Source/Core/DolphinQt/GameList/GameList.cpp:1130
msgid "Remove tag"
msgstr "Rimuovi tag"
-#: Source/Core/DolphinQt/ConvertDialog.cpp:302
+#: Source/Core/DolphinQt/ConvertDialog.cpp:303
msgid ""
"Removing junk data does not save any space when converting to ISO (unless "
"you package the ISO file in a compressed file format such as ZIP "
@@ -9391,18 +9717,18 @@ msgstr ""
"in ISO (a meno che poi tu non comprima il file ISO in un file ad esempio "
"ZIP). Vuoi proseguire lo stesso?"
-#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:919
-#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:954
+#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:921
+#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:956
msgid "Rename symbol"
msgstr "Rinomina simbolo"
-#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:163
+#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:167
msgid "Render Window"
-msgstr "Finestra di Render"
+msgstr "Finestra di render"
-#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:91
+#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:92
msgid "Render to Main Window"
-msgstr "Renderizza nella Finestra Principale"
+msgstr "Renderizza nella finestra principale"
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:288
msgid ""
@@ -9423,52 +9749,52 @@ msgstr "Invita al tuo party"
#: Source/Core/Core/FreeLookManager.cpp:99
#: Source/Core/Core/HotkeyManager.cpp:33 Source/Core/Core/HotkeyManager.cpp:187
#: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp:899
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:152
-#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:106
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:153
+#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:107
#: qtbase/src/gui/kernel/qplatformtheme.cpp:740
msgid "Reset"
-msgstr "Resetta"
+msgstr "Reimposta"
-#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:215
+#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:216
#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:92
msgid "Reset All"
-msgstr "Resetta Tutto"
+msgstr "Reimposta tutto"
-#: Source/Core/DolphinQt/MenuBar.cpp:565
+#: Source/Core/DolphinQt/MenuBar.cpp:557
msgid "Reset Ignore Panic Handler"
-msgstr "Resetta Ignora Avvisi di Errore"
+msgstr "Reimposta ignora avvisi di errore"
#: Source/Core/DolphinQt/CheatSearchWidget.cpp:223
msgid "Reset Results"
-msgstr "Azzera Risultati"
+msgstr "Azzera risultati"
-#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:389
+#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:387
msgid "Reset Traversal Server"
-msgstr "Reset Server Traversal"
+msgstr "Reimposta server traversal"
-#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:390
+#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:388
msgid "Reset Traversal Server to %1:%2"
-msgstr "Server Traversal resettato a %1:%2"
+msgstr "Server traversal reimpostato a %1:%2"
#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:91
msgid "Reset Traversal Settings"
-msgstr "Reset Impostazioni Traversal"
+msgstr "Reimposta impostazioni traversal"
-#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:314
+#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:333
msgid "Reset Values"
-msgstr "Reimposta Valori"
+msgstr "Reimposta valori"
#: Source/Core/Core/FreeLookManager.cpp:103
msgid "Reset View"
-msgstr "Ripristina Visuale"
+msgstr "Reimposta visuale"
-#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:109
+#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:110
msgid "Reset all saved Wii Remote pairings"
-msgstr "Resetta tutti gli abbinamenti salvati con i Wii Remote"
+msgstr "Reimposta tutti gli abbinamenti salvati con i Wii Remote"
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:25
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:26
msgid "Resource Pack Manager"
-msgstr "Resource Pack Manager"
+msgstr "Gestione Resource Pack"
#: Source/Core/DolphinQt/Settings/PathPane.cpp:222
msgid "Resource Pack Path:"
@@ -9476,26 +9802,26 @@ msgstr "Percorso Resource Pack:"
#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:321
msgid "Restart Required"
-msgstr "Riavvio Necessario"
+msgstr "Riavvio necessario"
#: qtbase/src/gui/kernel/qplatformtheme.cpp:742
msgid "Restore Defaults"
-msgstr "Ripristina Predefiniti"
+msgstr "Ripristina predefiniti"
-#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:600
+#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:601
msgid "Restore instruction"
msgstr "Ripristina istruzione"
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:739
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:741
#: qtbase/src/gui/kernel/qplatformtheme.cpp:726
msgid "Retry"
msgstr "Riprova"
#: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:51
msgid "Return Speed"
-msgstr "Velocità di Ritorno"
+msgstr "Velocità di ritorno"
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:633
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:635
msgid "Revision"
msgstr "Revisione"
@@ -9507,7 +9833,7 @@ msgstr "Revisione: %1"
#: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:37
#: Source/Core/Core/HW/WiimoteEmu/Extension/TaTaCon.cpp:36
#: Source/Core/DolphinQt/TAS/GCTASInputWindow.cpp:45
-#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:216
+#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:217
#: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:23
#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUAccelerometer.cpp:21
#: Source/Core/InputCommon/ControllerEmu/ControlGroup/Slider.cpp:22
@@ -9518,15 +9844,15 @@ msgstr "Destra"
#: Source/Core/Core/HW/WiimoteEmu/Extension/Classic.h:221
#: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:59
-#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:97
+#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:98
msgid "Right Stick"
-msgstr "Levetta Destra"
+msgstr "Levetta destra"
#. i18n: "Table" refers to a turntable
#: Source/Core/Core/HW/WiimoteEmu/Extension/Turntable.cpp:71
#: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:171
msgid "Right Table"
-msgstr "Tabella di Destra"
+msgstr "Tabella di destra"
#: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:121
msgid "Riivolution XML files"
@@ -9540,25 +9866,25 @@ msgstr "Bordo"
#: Source/Core/Core/HW/WiimoteEmu/Extension/UDrawTablet.cpp:32
msgid "Rocker Down"
-msgstr "Pulsante Inferiore"
+msgstr "Pulsante inferiore"
#: Source/Core/Core/HW/WiimoteEmu/Extension/UDrawTablet.cpp:31
msgid "Rocker Up"
-msgstr "Pulsante Superiore"
+msgstr "Pulsante superiore"
#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUGyroscope.cpp:31
msgid "Roll Left"
-msgstr "Rotazione a Sinistra"
+msgstr "Rotazione a sinistra"
#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUGyroscope.cpp:32
msgid "Roll Right"
-msgstr "Rotazione a Destra"
+msgstr "Rotazione a destra"
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:519
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:521
msgid "Room ID"
-msgstr "ID Stanza"
+msgstr "ID stanza"
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:467
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:469
msgid "Rotation"
msgstr "Rotazione"
@@ -9588,23 +9914,23 @@ msgstr ""
msgid "Rumble"
msgstr "Vibrazione"
-#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:591
+#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:592
msgid "Run &To Here"
-msgstr "(&T) Esegui Fino al Cursore"
+msgstr "&Esegui fino al cursore"
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:203
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:204
msgid "Run GBA Cores in Dedicated Threads"
-msgstr "Avvia i Core GBA in Thread Dedicati"
+msgstr "Avvia i Core GBA in thread dedicati"
-#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:670
+#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:671
msgid "Run until"
msgstr "Esegui fino a"
-#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:625
+#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:626
msgid "Run until (ignoring breakpoints)"
msgstr "Esegui fino a (ignorando i punti di interruzione)"
-#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:177
+#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:178
msgid "Run until hit (ignoring breakpoints)"
msgstr "Esegui fino al raggiungimento (ignorando i punti di interruzione)"
@@ -9612,33 +9938,33 @@ msgstr "Esegui fino al raggiungimento (ignorando i punti di interruzione)"
msgid "Russia"
msgstr "Russia"
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:221
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:223
msgid "SD Card"
msgstr "Scheda SD"
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:266
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:263
msgid "SD Card File Size:"
-msgstr "Dimensione File Scheda SD:"
+msgstr "Dimensione file scheda SD:"
#: Source/Core/DolphinQt/Settings/WiiPane.cpp:506
msgid "SD Card Image (*.raw);;All Files (*)"
-msgstr "Immagine Scheda SD (*.raw);;Tutti i File (*)"
+msgstr "Immagine scheda SD (*.raw);;Tutti i file (*)"
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:233
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:230
msgid "SD Card Path:"
-msgstr "Percorso SD Card:"
+msgstr "Percorso scheda SD:"
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:213
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:210
msgid "SD Card Settings"
-msgstr "Impostazioni Scheda SD"
+msgstr "Impostazioni scheda SD"
#: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:168
msgid "SD Root:"
-msgstr "SD Root:"
+msgstr "Root SD:"
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:255
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:252
msgid "SD Sync Folder:"
-msgstr "Cartella Sync SD:"
+msgstr "Cartella sincronizzazione SD:"
#: Source/Core/DolphinQt/Config/Graphics/ColorCorrectionConfigWindow.cpp:97
msgid "SDR Display Gamma Target"
@@ -9649,7 +9975,7 @@ msgstr "SDR Display Gamma Target"
msgid "SELECT"
msgstr "SELECT"
-#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:75
+#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:76
msgid "SHA-1:"
msgstr "SHA-1:"
@@ -9657,7 +9983,7 @@ msgstr "SHA-1:"
msgid "SHA1 Digest"
msgstr "Digest SHA1"
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:191
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:192
msgid "SP1:"
msgstr "SP1:"
@@ -9671,13 +9997,13 @@ msgstr "Contesto SSL"
msgid "START"
msgstr "START"
-#: Source/Core/DolphinQt/MenuBar.cpp:999
+#: Source/Core/DolphinQt/MenuBar.cpp:981
msgid "Sa&ve Code"
-msgstr "Sal&va Codice"
+msgstr "Sal&va codice"
-#: Source/Core/DolphinQt/MenuBar.cpp:356
+#: Source/Core/DolphinQt/MenuBar.cpp:348
msgid "Sa&ve State"
-msgstr "Sal&va Stato di Gioco"
+msgstr "Sal&va stato di gioco"
#: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:224
#: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:71
@@ -9685,8 +10011,8 @@ msgid "Safe"
msgstr "Sicura"
#: Source/Core/DolphinQt/Config/Mapping/HotkeyStates.cpp:21
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:131
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:115
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:132
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:116
#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:105
#: qtbase/src/gui/kernel/qplatformtheme.cpp:710
msgid "Save"
@@ -9694,138 +10020,138 @@ msgstr "Salva"
#: qtbase/src/gui/kernel/qplatformtheme.cpp:712
msgid "Save All"
-msgstr "Salva Tutto"
+msgstr "Salva tutto"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:575
-#: Source/Core/DolphinQt/GameList/GameList.cpp:580
-#: Source/Core/DolphinQt/MenuBar.cpp:1132
+#: Source/Core/DolphinQt/GameList/GameList.cpp:583
+#: Source/Core/DolphinQt/GameList/GameList.cpp:588
+#: Source/Core/DolphinQt/MenuBar.cpp:1114
msgid "Save Export"
-msgstr "Esporta Salvataggio"
+msgstr "Esporta salvataggio"
-#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:229
+#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:225
msgid "Save FIFO log"
msgstr "Salva log FIFO"
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:301
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:302
msgid "Save File to"
msgstr "Salva con nome"
#. i18n: Noun (i.e. the data saved by the game)
-#: Source/Core/DolphinQt/GBAWidget.cpp:409
+#: Source/Core/DolphinQt/GBAWidget.cpp:410
msgid "Save Game"
-msgstr "Salvataggio di Gioco"
+msgstr "Salvataggio di gioco"
-#: Source/Core/DolphinQt/GBAWidget.cpp:245
+#: Source/Core/DolphinQt/GBAWidget.cpp:246
msgid "Save Game Files (*.sav);;All Files (*)"
-msgstr "File di Salvataggio di Gioco (*.sav);;Tutti i File (*)"
+msgstr "File di salvataggio di gioco (*.sav);;Tutti i file (*)"
+#: Source/Core/DolphinQt/MenuBar.cpp:1072
+#: Source/Core/DolphinQt/MenuBar.cpp:1081
+#: Source/Core/DolphinQt/MenuBar.cpp:1084
#: Source/Core/DolphinQt/MenuBar.cpp:1090
-#: Source/Core/DolphinQt/MenuBar.cpp:1099
-#: Source/Core/DolphinQt/MenuBar.cpp:1102
-#: Source/Core/DolphinQt/MenuBar.cpp:1108
-#: Source/Core/DolphinQt/MenuBar.cpp:1115
+#: Source/Core/DolphinQt/MenuBar.cpp:1097
msgid "Save Import"
-msgstr "Importa Salvataggio"
+msgstr "Importa salvataggio"
#: Source/Core/Core/HotkeyManager.cpp:177
msgid "Save Oldest State"
-msgstr "Salva sul più vecchio Stato di Gioco"
+msgstr "Salva sul più vecchio stato di gioco"
-#: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:325
+#: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:324
msgid "Save Preset"
-msgstr "Salva Preset"
+msgstr "Salva preset"
-#: Source/Core/DolphinQt/MainWindow.cpp:1843
+#: Source/Core/DolphinQt/MainWindow.cpp:1894
msgid "Save Recording File As"
-msgstr "Salva File Registrazione Come"
+msgstr "Salva file registrazione come"
#: Source/Core/Core/HotkeyManager.cpp:180
#: Source/Core/Core/HotkeyManager.cpp:354
-#: Source/Core/DolphinQt/GBAWidget.cpp:417
+#: Source/Core/DolphinQt/GBAWidget.cpp:418
msgid "Save State"
-msgstr "Salva Stato di Gioco"
+msgstr "Salva stato di gioco"
#: Source/Core/Core/HotkeyManager.cpp:143
msgid "Save State Slot 1"
-msgstr "Salva Stato di Gioco nello Slot 1"
+msgstr "Salva stato di gioco nello slot 1"
#: Source/Core/Core/HotkeyManager.cpp:152
msgid "Save State Slot 10"
-msgstr "Salva Stato di Gioco nello Slot 10"
+msgstr "Salva stato di gioco nello slot 10"
#: Source/Core/Core/HotkeyManager.cpp:144
msgid "Save State Slot 2"
-msgstr "Salva Stato di Gioco nello Slot 2"
+msgstr "Salva stato di gioco nello slot 2"
#: Source/Core/Core/HotkeyManager.cpp:145
msgid "Save State Slot 3"
-msgstr "Salva Stato di Gioco nello Slot 3"
+msgstr "Salva stato di gioco nello slot 3"
#: Source/Core/Core/HotkeyManager.cpp:146
msgid "Save State Slot 4"
-msgstr "Salva Stato di Gioco nello Slot 4"
+msgstr "Salva stato di gioco nello slot 4"
#: Source/Core/Core/HotkeyManager.cpp:147
msgid "Save State Slot 5"
-msgstr "Salva Stato di Gioco nello Slot 5"
+msgstr "Salva stato di gioco nello slot 5"
#: Source/Core/Core/HotkeyManager.cpp:148
msgid "Save State Slot 6"
-msgstr "Salva Stato di Gioco nello Slot 6"
+msgstr "Salva stato di gioco nello slot 6"
#: Source/Core/Core/HotkeyManager.cpp:149
msgid "Save State Slot 7"
-msgstr "Salva Stato di Gioco nello Slot 7"
+msgstr "Salva stato di gioco nello slot 7"
#: Source/Core/Core/HotkeyManager.cpp:150
msgid "Save State Slot 8"
-msgstr "Salva Stato di Gioco nello Slot 8"
+msgstr "Salva stato di gioco nello slot 8"
#: Source/Core/Core/HotkeyManager.cpp:151
msgid "Save State Slot 9"
-msgstr "Salva Stato di Gioco nello Slot 9"
+msgstr "Salva stato di gioco nello slot 9"
-#: Source/Core/DolphinQt/MenuBar.cpp:357
+#: Source/Core/DolphinQt/MenuBar.cpp:349
msgid "Save State to File"
-msgstr "Salva Stato su File"
+msgstr "Salva stato su file"
-#: Source/Core/DolphinQt/MenuBar.cpp:359
+#: Source/Core/DolphinQt/MenuBar.cpp:351
msgid "Save State to Oldest Slot"
-msgstr "Salva Stato su Slot più Vecchio"
+msgstr "Salva stato su slot più vecchio"
-#: Source/Core/DolphinQt/MenuBar.cpp:358
+#: Source/Core/DolphinQt/MenuBar.cpp:350
msgid "Save State to Selected Slot"
-msgstr "Salva Stato nello Slot Selezionato"
+msgstr "Salva stato nello slot selezionato"
-#: Source/Core/DolphinQt/MenuBar.cpp:360
+#: Source/Core/DolphinQt/MenuBar.cpp:352
msgid "Save State to Slot"
-msgstr "Salva Stato su Slot"
+msgstr "Salva stato su slot"
-#: Source/Core/DolphinQt/MenuBar.cpp:996
+#: Source/Core/DolphinQt/MenuBar.cpp:978
msgid "Save Symbol Map &As..."
-msgstr "Salva Mappa dei Simboli &Come..."
+msgstr "Salva mappa dei simboli &come..."
#: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:108
msgid "Save Texture Cache to State"
-msgstr "Salva Cache Texture su Stato"
+msgstr "Salva cache texture su stato"
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:457
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:459
msgid "Save and Load State"
-msgstr "Salva e Carica Stato di Gioco"
+msgstr "Salva e carica stato di gioco"
#: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:63
msgid "Save as Preset..."
-msgstr "Salva come Preset..."
+msgstr "Salva come preset..."
#: Source/Core/DolphinQt/Config/InfoWidget.cpp:183
msgid "Save as..."
msgstr "Salva come..."
-#: Source/Core/DolphinQt/MenuBar.cpp:1710
+#: Source/Core/DolphinQt/MenuBar.cpp:1697
msgid "Save combined output file as"
msgstr "Salva file combinato in output come"
-#: Source/Core/DolphinQt/MenuBar.cpp:1091
+#: Source/Core/DolphinQt/MenuBar.cpp:1073
msgid ""
"Save data for this title already exists in the NAND. Consider backing up the "
"current data before overwriting.\n"
@@ -9835,37 +10161,37 @@ msgstr ""
"conviene fare un backup dei dati attuali prima di sovrascriverli.\n"
"Vuoi proseguire?"
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:224
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:225
msgid "Save in Same Directory as the ROM"
-msgstr "Salva nella Stessa Directory della ROM"
+msgstr "Salva nella stessa cartella della ROM"
-#: Source/Core/DolphinQt/MenuBar.cpp:1570
+#: Source/Core/DolphinQt/MenuBar.cpp:1557
msgid "Save map file"
msgstr "Salva file mappa"
-#: Source/Core/DolphinQt/MenuBar.cpp:1630
+#: Source/Core/DolphinQt/MenuBar.cpp:1617
msgid "Save signature file"
msgstr "Salva file di signature"
#: Source/Core/Core/HotkeyManager.cpp:153
msgid "Save to Selected Slot"
-msgstr "Salva nello Slot Selezionato"
+msgstr "Salva nello slot selezionato"
-#: Source/Core/DolphinQt/MenuBar.cpp:398
+#: Source/Core/DolphinQt/MenuBar.cpp:390
msgid "Save to Slot %1 - %2"
-msgstr "Salva su Slot %1 - %2"
+msgstr "Salva su slot %1 - %2"
#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:149
msgid "Save..."
msgstr "Salva..."
-#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:216
+#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:217
msgid "Saved Wii Remote pairings can only be reset when a Wii game is running."
msgstr ""
"Gli abbinamenti salvati con i Wii Remote possono essere resettati soltanto "
"durante l'esecuzione di un gioco Wii."
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:230
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:231
msgid "Saves:"
msgstr "Salvataggi:"
@@ -9873,7 +10199,7 @@ msgstr "Salvataggi:"
msgid "Savestate movie {0} is corrupted, movie recording stopping..."
msgstr "Il salvataggio del filmato {0} è corrotto, arresto registrazione..."
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:110
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:145
msgid "Scaled EFB Copy"
msgstr "Copia EFB in scala"
@@ -9887,26 +10213,26 @@ msgstr "Screenshot"
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:148
#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:86
-#: Source/Core/DolphinQt/MenuBar.cpp:524 Source/Core/DolphinQt/MenuBar.cpp:526
+#: Source/Core/DolphinQt/MenuBar.cpp:516 Source/Core/DolphinQt/MenuBar.cpp:518
msgid "Search"
msgstr "Cerca"
-#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:110
+#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:111
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:109
msgid "Search Address"
-msgstr "Cerca Indirizzo"
+msgstr "Cerca indirizzo"
#: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:84
msgid "Search Current Object"
-msgstr "Cerca Oggetto Corrente"
+msgstr "Cerca oggetto corrente"
#: Source/Core/DolphinQt/Settings/PathPane.cpp:146
msgid "Search Subfolders"
-msgstr "Cerca nelle Sottocartelle"
+msgstr "Cerca nelle sottocartelle"
#: Source/Core/DolphinQt/CheatSearchWidget.cpp:219
msgid "Search and Filter"
-msgstr "Cerca e Filtra"
+msgstr "Cerca e filtra"
#: Source/Core/DolphinQt/CheatSearchWidget.cpp:364
msgid ""
@@ -9916,19 +10242,19 @@ msgstr ""
"La ricerca non è attualmente possibile nello spazio di indirizzo virtuale. "
"Esegui il gioco per un po', quindi riprova."
-#: Source/Core/DolphinQt/MenuBar.cpp:868
+#: Source/Core/DolphinQt/MenuBar.cpp:864
msgid "Search for an Instruction"
-msgstr "Cerca un'Istruzione"
+msgstr "Cerca un'istruzione"
#: Source/Core/DolphinQt/SearchBar.cpp:29
msgid "Search games..."
msgstr "Cerca giochi..."
-#: Source/Core/DolphinQt/MenuBar.cpp:1750
+#: Source/Core/DolphinQt/MenuBar.cpp:1737
msgid "Search instruction"
msgstr "Ricerca istruzione"
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:236
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:247
msgid "Search:"
msgstr "Cerca:"
@@ -9953,146 +10279,146 @@ msgstr ""
msgid "Security options"
msgstr "Opzioni di sicurezza"
-#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:242
+#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:261
msgid "Select"
msgstr "Seleziona"
#: Source/Core/DolphinQt/Settings/PathPane.cpp:71
msgid "Select Dump Path"
-msgstr "Seleziona Percorso Dump"
+msgstr "Seleziona percorso dump"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:555
-#: Source/Core/DolphinQt/MenuBar.cpp:1126
+#: Source/Core/DolphinQt/GameList/GameList.cpp:563
+#: Source/Core/DolphinQt/MenuBar.cpp:1108
msgid "Select Export Directory"
-msgstr "Seleziona Directory di Estrazione"
+msgstr "Seleziona cartella di estrazione"
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:137
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:138
msgid "Select Figure File"
-msgstr "Seleziona File Statuina"
+msgstr "Seleziona file statuina"
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:653
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:663
msgid "Select GBA BIOS"
msgstr "Seleziona BIOS GBA"
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:801
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:811
msgid "Select GBA ROM"
msgstr "Seleziona ROM GBA"
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:682
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:692
msgid "Select GBA Saves Path"
-msgstr "Seleziona Percorso dei Salvataggi GBA"
+msgstr "Seleziona percorso dei salvataggi GBA"
#: Source/Core/DolphinQt/Config/Mapping/HotkeyStatesOther.cpp:21
msgid "Select Last State"
-msgstr "Seleziona Ultimo Stato"
+msgstr "Seleziona ultimo stato"
#: Source/Core/DolphinQt/Settings/PathPane.cpp:82
msgid "Select Load Path"
-msgstr "Seleziona Percorso da Caricare"
+msgstr "Seleziona percorso da caricare"
#: Source/Core/DolphinQt/Settings/PathPane.cpp:93
msgid "Select Resource Pack Path"
-msgstr "Seleziona Percorso Resource Pack"
+msgstr "Seleziona percorso Resource Pack"
#: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:120
msgid "Select Riivolution XML file"
msgstr "Seleziona file Riivolution XML"
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:410
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:497
msgid "Select Skylander Collection"
-msgstr "Seleziona Collezione Skylander"
+msgstr "Seleziona collezione Skylander"
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:481
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:568
msgid "Select Skylander File"
-msgstr "Seleziona File Skylander"
+msgstr "Seleziona file Skylander"
-#: Source/Core/DolphinQt/MenuBar.cpp:399
+#: Source/Core/DolphinQt/MenuBar.cpp:391
msgid "Select Slot %1 - %2"
-msgstr "Seleziona Slot %1 - %2"
+msgstr "Seleziona slot %1 - %2"
#: Source/Core/Core/HotkeyManager.cpp:355
msgid "Select State"
-msgstr "Seleziona Stato di Gioco"
+msgstr "Seleziona stato di gioco"
-#: Source/Core/DolphinQt/MenuBar.cpp:373
+#: Source/Core/DolphinQt/MenuBar.cpp:365
msgid "Select State Slot"
-msgstr "Seleziona Slot di Stato"
+msgstr "Seleziona slot di stato"
#: Source/Core/Core/HotkeyManager.cpp:155
msgid "Select State Slot 1"
-msgstr "Seleziona Slot di Stato 1"
+msgstr "Seleziona slot di stato 1"
#: Source/Core/Core/HotkeyManager.cpp:164
msgid "Select State Slot 10"
-msgstr "Seleziona Slot di Stato 10"
+msgstr "Seleziona slot di stato 10"
#: Source/Core/Core/HotkeyManager.cpp:156
msgid "Select State Slot 2"
-msgstr "Seleziona Slot di Stato 2"
+msgstr "Seleziona slot di stato 2"
#: Source/Core/Core/HotkeyManager.cpp:157
msgid "Select State Slot 3"
-msgstr "Seleziona Slot di Stato 3"
+msgstr "Seleziona slot di stato 3"
#: Source/Core/Core/HotkeyManager.cpp:158
msgid "Select State Slot 4"
-msgstr "Seleziona Slot di Stato 4"
+msgstr "Seleziona slot di stato 4"
#: Source/Core/Core/HotkeyManager.cpp:159
msgid "Select State Slot 5"
-msgstr "Seleziona Slot di Stato 5"
+msgstr "Seleziona slot di stato 5"
#: Source/Core/Core/HotkeyManager.cpp:160
msgid "Select State Slot 6"
-msgstr "Seleziona Slot di Stato 6"
+msgstr "Seleziona slot di stato 6"
#: Source/Core/Core/HotkeyManager.cpp:161
msgid "Select State Slot 7"
-msgstr "Seleziona Slot di Stato 7"
+msgstr "Seleziona slot di stato 7"
#: Source/Core/Core/HotkeyManager.cpp:162
msgid "Select State Slot 8"
-msgstr "Seleziona Slot di Stato 8"
+msgstr "Seleziona slot di stato 8"
#: Source/Core/Core/HotkeyManager.cpp:163
msgid "Select State Slot 9"
-msgstr "Seleziona Slot di Stato 9"
+msgstr "Seleziona slot di stato 9"
#: Source/Core/DolphinQt/Settings/PathPane.cpp:105
msgid "Select WFS Path"
-msgstr "Seleziona Percorso WFS"
+msgstr "Seleziona percorso WFS"
#: Source/Core/DolphinQt/Settings/PathPane.cpp:60
msgid "Select Wii NAND Root"
-msgstr "Seleziona Root NAND Wii"
+msgstr "Seleziona root NAND Wii"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:291
+#: Source/Core/DolphinQt/GameList/GameList.cpp:292
#: Source/Core/DolphinQt/Settings/PathPane.cpp:39
msgid "Select a Directory"
-msgstr "Seleziona una Directory"
+msgstr "Seleziona una cartella"
#: Source/Core/DolphinQt/Config/InfoWidget.cpp:194
-#: Source/Core/DolphinQt/GBAWidget.cpp:213
-#: Source/Core/DolphinQt/GBAWidget.cpp:244
-#: Source/Core/DolphinQt/MainWindow.cpp:763
-#: Source/Core/DolphinQt/MainWindow.cpp:1368
-#: Source/Core/DolphinQt/MainWindow.cpp:1377
+#: Source/Core/DolphinQt/GBAWidget.cpp:214
+#: Source/Core/DolphinQt/GBAWidget.cpp:245
+#: Source/Core/DolphinQt/MainWindow.cpp:765
+#: Source/Core/DolphinQt/MainWindow.cpp:1381
+#: Source/Core/DolphinQt/MainWindow.cpp:1390
msgid "Select a File"
-msgstr "Seleziona un File"
+msgstr "Seleziona un file"
#: Source/Core/DolphinQt/Settings/WiiPane.cpp:521
msgid "Select a Folder to sync with the SD Card Image"
-msgstr "Scegli la cartella da sincronizzare con l'Immagine Scheda SD"
+msgstr "Scegli la cartella da sincronizzare con l'immagine scheda SD"
#: Source/Core/DolphinQt/Settings/PathPane.cpp:47
msgid "Select a Game"
-msgstr "Seleziona un Gioco"
+msgstr "Seleziona un gioco"
#: Source/Core/DolphinQt/Settings/WiiPane.cpp:504
msgid "Select a SD Card Image"
-msgstr "Seleziona un'Immagine Scheda SD"
+msgstr "Seleziona un'immagine scheda SD"
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:694
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:693
msgid "Select a file"
msgstr "Seleziona un file"
@@ -10100,56 +10426,56 @@ msgstr "Seleziona un file"
msgid "Select a game"
msgstr "Seleziona un gioco"
-#: Source/Core/DolphinQt/MenuBar.cpp:1061
+#: Source/Core/DolphinQt/MenuBar.cpp:1043
msgid "Select a title to install to NAND"
msgstr "Seleziona un titolo da installare su NAND"
-#: Source/Core/DolphinQt/GBAWidget.cpp:191
+#: Source/Core/DolphinQt/GBAWidget.cpp:192
msgid "Select e-Reader Cards"
-msgstr "Seleziona Carte e-Reader"
+msgstr "Seleziona carte e-Reader"
-#: Source/Core/DolphinQt/MenuBar.cpp:1358
+#: Source/Core/DolphinQt/MenuBar.cpp:1345
msgid "Select the RSO module address:"
msgstr "Scegli l'indirizzo del modulo RSO:"
-#: Source/Core/DolphinQt/MainWindow.cpp:1772
+#: Source/Core/DolphinQt/MainWindow.cpp:1823
msgid "Select the Recording File to Play"
-msgstr "Seleziona la Registrazione da Eseguire"
+msgstr "Seleziona la registrazione da eseguire"
#: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:174
msgid "Select the Virtual SD Card Root"
-msgstr "Seleziona la directory principale per la Scheda SD Virtuale"
+msgstr "Seleziona la cartella principale per la scheda SD virtuale"
-#: Source/Core/DolphinQt/MainWindow.cpp:1750
+#: Source/Core/DolphinQt/MainWindow.cpp:1800
msgid "Select the keys file (OTP/SEEPROM dump)"
msgstr "Seleziona il file contenente le chiavi (dump OTP/SEEPROM)"
-#: Source/Core/DolphinQt/MainWindow.cpp:1724
-#: Source/Core/DolphinQt/MenuBar.cpp:1081
+#: Source/Core/DolphinQt/MainWindow.cpp:1774
+#: Source/Core/DolphinQt/MenuBar.cpp:1063
msgid "Select the save file"
msgstr "Seleziona il file di salvataggio"
-#: Source/Core/DolphinQt/ConvertDialog.cpp:378
+#: Source/Core/DolphinQt/ConvertDialog.cpp:379
msgid "Select where you want to save the converted image"
msgstr "Seleziona dove vuoi salvare l'immagine convertita"
-#: Source/Core/DolphinQt/ConvertDialog.cpp:369
+#: Source/Core/DolphinQt/ConvertDialog.cpp:370
msgid "Select where you want to save the converted images"
msgstr "Seleziona dove vuoi salvare le immagini convertite"
#: Source/Core/DolphinQt/Config/LogWidget.cpp:138
msgid "Selected Font"
-msgstr "Font Selezionato"
+msgstr "Font selezionato"
#: Source/Core/Core/ConfigLoaders/GameConfigLoader.cpp:233
msgid "Selected controller profile does not exist"
msgstr "Il profilo controller selezionato non esiste"
-#: Source/Core/Core/NetPlayServer.cpp:1331
-#: Source/Core/Core/NetPlayServer.cpp:1705
-#: Source/Core/Core/NetPlayServer.cpp:2033
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:486
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:888
+#: Source/Core/Core/NetPlayServer.cpp:1335
+#: Source/Core/Core/NetPlayServer.cpp:1709
+#: Source/Core/Core/NetPlayServer.cpp:2037
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:488
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:890
msgid "Selected game doesn't exist in game list!"
msgstr "Il gioco selezionato non esiste nella lista dei giochi!"
@@ -10161,7 +10487,7 @@ msgstr "Callstack thread selezionato"
msgid "Selected thread context"
msgstr "Contesto thread selezionato"
-#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:307
+#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:308
msgid ""
"Selects a hardware adapter to use.
%1 doesn't "
"support this feature."
@@ -10169,7 +10495,7 @@ msgstr ""
"Seleziona un adattatore hardware da utilizzare.
%1 "
"Non supporta questa feature."
-#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:304
+#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:305
msgid ""
"Selects a hardware adapter to use.
If unsure, "
"select the first one."
@@ -10177,7 +10503,7 @@ msgstr ""
"Seleziona l'adattatore hardware da utilizzare.
Nel "
"dubbio, seleziona il primo."
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:486
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:568
msgid ""
"Selects the stereoscopic 3D mode. Stereoscopy allows a better feeling of "
"depth if the necessary hardware is present. Heavily decreases emulation "
@@ -10196,7 +10522,7 @@ msgstr ""
"una tipologia di 3D usata da alcune TV.
Nel dubbio, "
"seleziona Off."
-#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:210
+#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:211
msgid ""
"Selects which aspect ratio to use when rendering.
Auto: Uses the "
"native aspect ratio Force 16:9: Mimics an analog TV with a widescreen "
@@ -10211,7 +10537,7 @@ msgstr ""
"Finestra: Allarga l'immagine perché si adatti alle dimensioni della finestra."
"
Nel dubbio, seleziona Auto."
-#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:192
+#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:193
msgid ""
"Selects which graphics API to use internally.
The software renderer "
"is extremely slow and only useful for debugging, so any of the other "
@@ -10228,11 +10554,11 @@ msgstr ""
"più compatibile.
Nel dubbio, seleziona OpenGL."
"dolphin_emphasis>"
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:267
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:269
msgid "Send"
msgstr "Invia"
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:355
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:354
msgid "Sensor Bar Position:"
msgstr "Posizione della Sensor Bar: "
@@ -10250,20 +10576,20 @@ msgstr ""
#: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:50
msgid "Server IP Address"
-msgstr "Indirizzo IP del Server"
+msgstr "Indirizzo IP del server"
#: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:52
msgid "Server Port"
-msgstr "Porta del Server"
+msgstr "Porta del server"
-#: Source/Core/Core/NetPlayClient.cpp:1976
+#: Source/Core/Core/NetPlayClient.cpp:1980
msgid "Server rejected traversal attempt"
msgstr ""
"Il server ha rifiutato il tentativo di connessione in modalità traversal"
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:121
msgid "Set &Value"
-msgstr "Imposta &Valore"
+msgstr "Imposta &valore"
#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:456
msgid "Set &blr"
@@ -10274,35 +10600,35 @@ msgstr "Imposta &blr"
msgid "Set PC"
msgstr "Imposta PC"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:414
+#: Source/Core/DolphinQt/GameList/GameList.cpp:415
msgid "Set as &Default ISO"
-msgstr "Imposta come ISO &Predefinita"
-
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:358
-msgid "Set memory card file for Slot A"
-msgstr "Seleziona file per la memory card dello Slot A"
+msgstr "Imposta come ISO &predefinita"
#: Source/Core/DolphinQt/GCMemcardManager.cpp:359
-msgid "Set memory card file for Slot B"
-msgstr "Seleziona file per la memory card dello Slot B"
+msgid "Set memory card file for Slot A"
+msgstr "Seleziona file per la memory card dello slot A"
-#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:588
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:360
+msgid "Set memory card file for Slot B"
+msgstr "Seleziona file per la memory card dello slot B"
+
+#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:589
msgid "Set symbol &end address"
msgstr "Imposta indirizzo di t&ermine del simbolo"
-#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:586
+#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:587
msgid "Set symbol &size"
msgstr "Imposta dimensione del &simbolo"
-#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:979
+#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:981
msgid "Set symbol end address"
msgstr "Imposta indirizzo di termine del simbolo"
-#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:955
+#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:957
msgid "Set symbol size (%1):"
msgstr "Imposta dimensione del simbolo (%1):"
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:189
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:186
msgid ""
"Sets the Wii display mode to 60Hz (480i) instead of 50Hz (576i) for PAL "
"games.\n"
@@ -10312,7 +10638,7 @@ msgstr ""
"(576i) per i giochi PAL.\n"
"Potrebbe non funzionare su tutti i giochi."
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:196
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:193
msgid "Sets the Wii system language."
msgstr "Imposta la lingua di sistema del Wii"
@@ -10321,7 +10647,7 @@ msgid ""
"Sets the latency in milliseconds. Higher values may reduce audio crackling. "
"Certain backends only."
msgstr ""
-"Imposta la latenza (in millisecondi). Valori maggiori possono correggere un "
+"Imposta la latenza in millisecondi. Valori maggiori possono correggere un "
"audio gracchiante. Solo per alcuni backend."
#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:54
@@ -10332,7 +10658,7 @@ msgstr ""
"Imposta la ricerca utilizzando i mapping MEM1 e (su Wii) MEM2 nello spazio "
"di indirizzi virtuale. Funzionerà per la maggior parte dei giochi."
-#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:45
+#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:49
#: Source/Core/DolphinQt/Config/SettingsWindow.cpp:27
#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:70
msgid "Settings"
@@ -10342,13 +10668,13 @@ msgstr "Impostazioni"
msgid "SetupWiiMemory: Can't create setting.txt file"
msgstr "SetupWiiMemory: Impossibile creare il file setting.txt"
-#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:62
+#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:63
msgid "Severity"
msgstr "Severità"
-#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:102
+#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:103
msgid "Shader Compilation"
-msgstr "Compilazione Shader"
+msgstr "Compilazione shader"
#: Source/Core/Core/HW/WiimoteEmu/Extension/Nunchuk.cpp:52
#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:228
@@ -10356,6 +10682,10 @@ msgstr "Compilazione Shader"
msgid "Shake"
msgstr "Scuoti"
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:136
+msgid "Sharp Bilinear"
+msgstr "Bilineare Netto"
+
#: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:232
msgid "Shinkansen"
msgstr "Shinkansen"
@@ -10367,123 +10697,123 @@ msgstr "Controller Shinkansen"
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:58
#, c-format
msgid "Show % Speed"
-msgstr "Mostra Velocità %"
+msgstr "Mostra velocità %"
-#: Source/Core/DolphinQt/MenuBar.cpp:406
+#: Source/Core/DolphinQt/MenuBar.cpp:398
msgid "Show &Log"
-msgstr "Mostra Finestra di &Log"
+msgstr "Mostra finestra di &log"
-#: Source/Core/DolphinQt/MenuBar.cpp:419
+#: Source/Core/DolphinQt/MenuBar.cpp:411
msgid "Show &Toolbar"
-msgstr "Mostra Barra degli St&rumenti"
+msgstr "Mostra barra degli s&trumenti"
-#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:172
+#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:176
msgid "Show Active Title in Window Title"
-msgstr "Mostra Gioco Corrente nella Barra del Titolo"
+msgstr "Mostra gioco corrente nella barra del titolo"
-#: Source/Core/DolphinQt/MenuBar.cpp:718
+#: Source/Core/DolphinQt/MenuBar.cpp:710
msgid "Show All"
-msgstr "Mostra Tutto"
+msgstr "Mostra tutto"
-#: Source/Core/DolphinQt/MenuBar.cpp:705
+#: Source/Core/DolphinQt/MenuBar.cpp:697
msgid "Show Australia"
msgstr "Mostra Australia"
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:152
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:153
msgid "Show Current Game on Discord"
-msgstr "Mostra Gioco Corrente su Discord"
+msgstr "Mostra gioco corrente su Discord"
-#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:118
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:262
+#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:119
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:265
msgid "Show Disabled Codes First"
-msgstr "Mostra Prima Codici Inattivi"
+msgstr "Mostra prima codici inattivi"
-#: Source/Core/DolphinQt/MenuBar.cpp:680
+#: Source/Core/DolphinQt/MenuBar.cpp:672
msgid "Show ELF/DOL"
msgstr "Mostra ELF/DOL"
-#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:117
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:261
+#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:118
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:264
msgid "Show Enabled Codes First"
-msgstr "Mostra Prima Codici Attivi"
+msgstr "Mostra prima codici attivi"
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:53
msgid "Show FPS"
msgstr "Mostra FPS"
-#: Source/Core/DolphinQt/MenuBar.cpp:787
+#: Source/Core/DolphinQt/MenuBar.cpp:779
msgid "Show Frame Counter"
-msgstr "Mostra Contatore Frame"
+msgstr "Mostra contatore frame"
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:54
msgid "Show Frame Times"
-msgstr "Mostra Tempi Frame"
+msgstr "Mostra tempi frame"
-#: Source/Core/DolphinQt/MenuBar.cpp:706
+#: Source/Core/DolphinQt/MenuBar.cpp:698
msgid "Show France"
msgstr "Mostra Francia"
-#: Source/Core/DolphinQt/MenuBar.cpp:678
+#: Source/Core/DolphinQt/MenuBar.cpp:670
msgid "Show GameCube"
msgstr "Mostra GameCube"
-#: Source/Core/DolphinQt/MenuBar.cpp:707
+#: Source/Core/DolphinQt/MenuBar.cpp:699
msgid "Show Germany"
msgstr "Mostra Germania"
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:229
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:231
msgid "Show Golf Mode Overlay"
-msgstr "Mostra Overlay Modalità Golf"
+msgstr "Mostra overlay modalità golf"
#: Source/Core/Core/HotkeyManager.cpp:199
msgid "Show Infinity Base"
-msgstr "Mostra Base Infinity"
+msgstr "Mostra base Infinity"
-#: Source/Core/DolphinQt/MenuBar.cpp:793
+#: Source/Core/DolphinQt/MenuBar.cpp:785
msgid "Show Input Display"
-msgstr "Mostra Tasti di Input"
+msgstr "Mostra tasti di input"
-#: Source/Core/DolphinQt/MenuBar.cpp:708
+#: Source/Core/DolphinQt/MenuBar.cpp:700
msgid "Show Italy"
msgstr "Mostra Italia"
-#: Source/Core/DolphinQt/MenuBar.cpp:702
+#: Source/Core/DolphinQt/MenuBar.cpp:694
msgid "Show JPN"
msgstr "Mostra JPN"
-#: Source/Core/DolphinQt/MenuBar.cpp:709
+#: Source/Core/DolphinQt/MenuBar.cpp:701
msgid "Show Korea"
msgstr "Mostra Corea"
-#: Source/Core/DolphinQt/MenuBar.cpp:781
+#: Source/Core/DolphinQt/MenuBar.cpp:773
msgid "Show Lag Counter"
-msgstr "Mostra Contatore Lag"
+msgstr "Mostra contatore lag"
#: Source/Core/DolphinQt/Config/InfoWidget.cpp:152
msgid "Show Language:"
-msgstr "Mostra Lingua:"
+msgstr "Mostra lingua:"
-#: Source/Core/DolphinQt/MenuBar.cpp:412
+#: Source/Core/DolphinQt/MenuBar.cpp:404
msgid "Show Log &Configuration"
-msgstr "Mostra &Configurazione Log"
+msgstr "Mostra &configurazione log"
-#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:90
+#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:91
msgid "Show NetPlay Messages"
-msgstr "Mostra Messaggi NetPlay"
+msgstr "Mostra messaggi NetPlay"
-#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:87
+#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:88
msgid "Show NetPlay Ping"
-msgstr "Mostra Ping NetPlay"
+msgstr "Mostra ping NetPlay"
-#: Source/Core/DolphinQt/MenuBar.cpp:710
+#: Source/Core/DolphinQt/MenuBar.cpp:702
msgid "Show Netherlands"
msgstr "Mostra Olanda"
-#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:171
+#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:175
msgid "Show On-Screen Display Messages"
-msgstr "Mostra Messaggi su Schermo"
+msgstr "Mostra messaggi su schermo"
-#: Source/Core/DolphinQt/MenuBar.cpp:703
+#: Source/Core/DolphinQt/MenuBar.cpp:695
msgid "Show PAL"
msgstr "Mostra PAL"
@@ -10494,88 +10824,88 @@ msgstr "Mostra PC"
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:57
msgid "Show Performance Graphs"
-msgstr "Mostra Grafico di Performance"
+msgstr "Mostra grafico di performance"
-#: Source/Core/DolphinQt/MenuBar.cpp:683
+#: Source/Core/DolphinQt/MenuBar.cpp:675
msgid "Show Platforms"
-msgstr "Mostra Piattaforme"
+msgstr "Mostra piattaforme"
-#: Source/Core/DolphinQt/MenuBar.cpp:717
+#: Source/Core/DolphinQt/MenuBar.cpp:709
msgid "Show Regions"
-msgstr "Mostra Regioni"
+msgstr "Mostra regioni"
-#: Source/Core/DolphinQt/MenuBar.cpp:775
+#: Source/Core/DolphinQt/MenuBar.cpp:767
msgid "Show Rerecord Counter"
-msgstr "Mostra Contatore Re-registrazioni"
+msgstr "Mostra contatore re-registrazioni"
-#: Source/Core/DolphinQt/MenuBar.cpp:711
+#: Source/Core/DolphinQt/MenuBar.cpp:703
msgid "Show Russia"
msgstr "Mostra Russia"
#: Source/Core/Core/HotkeyManager.cpp:198
msgid "Show Skylanders Portal"
-msgstr "Mostra Portale Skylanders"
+msgstr "Mostra portale Skylanders"
-#: Source/Core/DolphinQt/MenuBar.cpp:712
+#: Source/Core/DolphinQt/MenuBar.cpp:704
msgid "Show Spain"
msgstr "Mostra Spagna"
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:59
msgid "Show Speed Colors"
-msgstr "Mostra Colori Velocità"
+msgstr "Mostra colori velocità"
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:82
msgid "Show Statistics"
-msgstr "Mostra Informazioni"
+msgstr "Mostra informazioni"
-#: Source/Core/DolphinQt/MenuBar.cpp:800
+#: Source/Core/DolphinQt/MenuBar.cpp:792
msgid "Show System Clock"
-msgstr "Mostra Orologio di Sistema"
+msgstr "Mostra orologio di sistema"
-#: Source/Core/DolphinQt/MenuBar.cpp:713
+#: Source/Core/DolphinQt/MenuBar.cpp:705
msgid "Show Taiwan"
msgstr "Mostra Taiwan"
-#: Source/Core/DolphinQt/MenuBar.cpp:704
+#: Source/Core/DolphinQt/MenuBar.cpp:696
msgid "Show USA"
msgstr "Mostra USA"
-#: Source/Core/DolphinQt/MenuBar.cpp:715
+#: Source/Core/DolphinQt/MenuBar.cpp:707
msgid "Show Unknown"
-msgstr "Mostra Sconosciuto"
+msgstr "Mostra sconosciuto"
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:56
msgid "Show VBlank Times"
-msgstr "Mostra Tempi VBlank"
+msgstr "Mostra tempi VBlank"
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:55
msgid "Show VPS"
msgstr "Mostra VPS"
-#: Source/Core/DolphinQt/MenuBar.cpp:679
+#: Source/Core/DolphinQt/MenuBar.cpp:671
msgid "Show WAD"
msgstr "Mostra WAD"
-#: Source/Core/DolphinQt/MenuBar.cpp:677
+#: Source/Core/DolphinQt/MenuBar.cpp:669
msgid "Show Wii"
msgstr "Mostra Wii"
-#: Source/Core/DolphinQt/MenuBar.cpp:714
+#: Source/Core/DolphinQt/MenuBar.cpp:706
msgid "Show World"
-msgstr "Mostra Mondo"
+msgstr "Mostra mondo"
-#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:576
+#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:577
msgid "Show in &memory"
msgstr "Mostra in &memoria"
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:401
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:405
msgid "Show in Code"
-msgstr "Mostra in Codice"
+msgstr "Mostra nel codice"
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:418
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:422
#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:356
msgid "Show in Memory"
-msgstr "Mostra in Memoria"
+msgstr "Mostra in memoria"
#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:897
msgid "Show in code"
@@ -10589,11 +10919,11 @@ msgstr "Mostra in memoria"
msgid "Show in server browser"
msgstr "Mostra nel server browser"
-#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:578
+#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:579
msgid "Show target in memor&y"
msgstr "&Mostra target in memoria"
-#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:223
+#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:224
msgid ""
"Shows chat messages, buffer changes, and desync alerts while playing NetPlay."
"
If unsure, leave this unchecked."
@@ -10662,7 +10992,7 @@ msgstr ""
"della velocità di emulazione.
Nel dubbio, lascia "
"deselezionato."
-#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:220
+#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:221
msgid ""
"Shows the player's maximum ping while playing on NetPlay."
"
If unsure, leave this unchecked."
@@ -10679,9 +11009,9 @@ msgstr ""
"Mostra diverse informazioni di rendering.
Nel "
"dubbio, lascia selezionato."
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:177
+#. i18n: One of the figure types in the Skylanders games.
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:416
+msgid "Skylander"
+msgstr "Skylander"
+
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:188
msgid "Skylander %1"
msgstr "Skylander %1"
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:482
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:551
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:569
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:638
msgid "Skylander (*.sky);;All Files (*)"
-msgstr "Skylander (*.sky);;Tutti i File (*)"
+msgstr "Skylander (*.sky);;Tutti i file (*)"
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:217
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:228
msgid "Skylander Collection Path:"
-msgstr "Percorso Collezione Skylander:"
+msgstr "Percorso collezione Skylander:"
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:448
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:535
msgid "Skylander not found in this collection. Create new file?"
msgstr ""
"Non sono stati trovati Skylander in questa collezione. Creare un nuovo file?"
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:42
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:45
msgid "Skylanders Manager"
-msgstr "Manager Skylander"
+msgstr "Gestione Skylander"
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:81
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:84
msgid "Skylanders folder not found for this user. Create new folder?"
msgstr ""
"Non è stata trovata una cartella Skylander per questo utente. Creare una "
@@ -10826,19 +11161,19 @@ msgstr ""
msgid "Slider Bar"
msgstr "Slider Bar"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:133
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:134
msgid "Slot A"
-msgstr "Ingresso A"
+msgstr "Slot A"
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:163
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:164
msgid "Slot A:"
msgstr "Slot A:"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:133
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:134
msgid "Slot B"
-msgstr "Ingresso B"
+msgstr "Slot B"
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:177
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:178
msgid "Slot B:"
msgstr "Slot B:"
@@ -10848,11 +11183,11 @@ msgstr "Cattura la posizione dell'analogico al più vicino asse ottagonale."
#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:324
msgid "Socket table"
-msgstr "Tabella Socket"
+msgstr "Tabella socket"
#: Source/Core/VideoBackends/Software/SWmain.cpp:55
msgid "Software Renderer"
-msgstr "Software Renderer"
+msgstr "Renderer software"
#: Source/Core/DiscIO/VolumeVerifier.cpp:1322
msgid "Some of the data could not be read."
@@ -10866,7 +11201,7 @@ msgstr ""
"Alcuni dati di riempimento che dovrebbero essere zero non sono zero. Il "
"gioco potrebbe bloccarsi in certi punti."
-#: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:260
+#: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:257
msgid ""
"Some values you provided are invalid.\n"
"Please check the highlighted values."
@@ -10874,12 +11209,12 @@ msgstr ""
"Alcuni dei valori forniti non sono validi.\n"
"Controlla i valori evidenziati."
-#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:116
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:260
+#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:117
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:263
msgid "Sort Alphabetically"
-msgstr "Ordine Alfabetico"
+msgstr "Ordine alfabetico"
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:182
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:179
msgid "Sound:"
msgstr "Suono:"
@@ -10892,22 +11227,22 @@ msgid "Spain"
msgstr "Spagna"
#: Source/Core/DiscIO/Enums.cpp:89
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:175
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172
msgid "Spanish"
msgstr "Spagnolo"
#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:290
msgid "Speaker Pan"
-msgstr "Panning Altoparlante"
+msgstr "Panning altoparlante"
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:369
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:368
msgid "Speaker Volume:"
-msgstr "Volume Altoparlante:"
+msgstr "Volume altoparlante:"
-#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:106
+#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:107
msgid "Specialized (Default)"
-msgstr "Specializzato (Default)"
+msgstr "Specializzato (default)"
#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:188
msgid "Specific"
@@ -10943,7 +11278,7 @@ msgstr "Velocità"
#. i18n: Figures for the game Skylanders: Spyro's Adventure. The game has the same title in all
#. countries it was released in, except Japan, where it's named スカイランダーズ スパイロの大冒険.
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:264
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:275
msgid "Spyro's Adventure"
msgstr "Spyro's Adventure"
@@ -10955,46 +11290,46 @@ msgstr "Fine stack"
msgid "Stack start"
msgstr "Inizio stack"
-#: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:35
+#: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:36
msgid "Standard Controller"
-msgstr "Controller Standard"
+msgstr "Controller standard"
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:130
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:131
#: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:61
msgid "Start"
msgstr "Start"
-#: Source/Core/DolphinQt/MenuBar.cpp:237
+#: Source/Core/DolphinQt/MenuBar.cpp:229
msgid "Start &NetPlay..."
msgstr "Avvia &NetPlay"
#: Source/Core/DolphinQt/CheatsManager.cpp:106
msgid "Start New Cheat Search"
-msgstr "Inizia Nuova Ricerca Cheat"
+msgstr "Inizia nuova ricerca cheat"
-#: Source/Core/DolphinQt/MenuBar.cpp:747
+#: Source/Core/DolphinQt/MenuBar.cpp:739
msgid "Start Re&cording Input"
-msgstr "Avvia Re&gistrazione Input"
+msgstr "Avvia re&gistrazione input"
#: Source/Core/Core/HotkeyManager.cpp:55
#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:61
#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:213
msgid "Start Recording"
-msgstr "Avvia Registrazione"
+msgstr "Avvia registrazione"
-#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61
+#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:62
msgid "Start in Fullscreen"
-msgstr "Avvia a Schermo Intero."
+msgstr "Avvia a schermo intero."
#: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:47
msgid "Start with Riivolution Patches"
-msgstr "Avvia con le Patch Riivolution"
+msgstr "Avvia con le patch Riivolution"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:409
+#: Source/Core/DolphinQt/GameList/GameList.cpp:410
msgid "Start with Riivolution Patches..."
-msgstr "Avvia con le Patch Riivolution..."
+msgstr "Avvia con le patch Riivolution..."
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:870
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:872
msgid "Started game"
msgstr "Gioco avviato"
@@ -11005,7 +11340,7 @@ msgstr "Gioco avviato"
msgid "State"
msgstr "Stato"
-#: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:37
+#: Source/Core/DolphinQt/Config/GamecubeControllersWidget.cpp:38
msgid "Steering Wheel"
msgstr "Volante"
@@ -11013,39 +11348,39 @@ msgstr "Volante"
#. going through code step by step.
#: Source/Core/DolphinQt/ToolBar.cpp:102
msgid "Step"
-msgstr "Entra nell'Istruzione"
+msgstr "Entra nell'istruzione"
#. i18n: Here, "Step" is a verb. This feature is used for
#. going through code step by step.
#: Source/Core/Core/HotkeyManager.cpp:62
msgid "Step Into"
-msgstr "Entra nell'Istruzione"
+msgstr "Entra nell'istruzione"
#. i18n: Here, "Step" is a verb. This feature is used for
#. going through code step by step.
#: Source/Core/Core/HotkeyManager.cpp:68 Source/Core/DolphinQt/ToolBar.cpp:108
msgid "Step Out"
-msgstr "Esci dall'Istruzione"
+msgstr "Esci dall'istruzione"
#. i18n: Here, "Step" is a verb. This feature is used for
#. going through code step by step.
#: Source/Core/Core/HotkeyManager.cpp:65 Source/Core/DolphinQt/ToolBar.cpp:105
msgid "Step Over"
-msgstr "Esegui Istruzione"
+msgstr "Esegui istruzione"
-#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:568
+#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:570
msgid "Step out successful!"
msgstr "Uscito con successo dall'istruzione!"
-#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:566
+#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:568
msgid "Step out timed out!"
msgstr "Scaduto tempo di uscita dall'istruzione!"
-#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:485
+#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:487
msgid "Step over in progress..."
msgstr "Esecuzione dell'istruzione in corso..."
-#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:463
+#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:465
msgid "Step successful!"
msgstr "Istruzione eseguita con successo!"
@@ -11054,20 +11389,20 @@ msgstr "Istruzione eseguita con successo!"
msgid "Stepping"
msgstr "Entrando"
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:185
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:182
msgid "Stereo"
msgstr "Stereo"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:559
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:645
msgid "Stereoscopic 3D Mode"
-msgstr "Modalità Stereoscopia 3D"
+msgstr "Modalità stereoscopia 3D"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:175
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:214
msgid "Stereoscopic 3D Mode:"
-msgstr "Modalità Stereoscopia 3D"
+msgstr "Modalità stereoscopia 3D"
#: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:122
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:163
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:202
msgid "Stereoscopy"
msgstr "Stereoscopia"
@@ -11088,15 +11423,15 @@ msgstr "Levetta"
msgid "Stop"
msgstr "Arresta"
-#: Source/Core/DolphinQt/MenuBar.cpp:750
+#: Source/Core/DolphinQt/MenuBar.cpp:742
msgid "Stop Playing/Recording Input"
-msgstr "Interrompi Riproduzione/Registrazione Input"
+msgstr "Interrompi riproduzione/registrazione input"
#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:205
msgid "Stop Recording"
-msgstr "Ferma Registrazione"
+msgstr "Ferma registrazione"
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:406
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:409
msgid "Stopped game"
msgstr "Gioco fermato"
@@ -11138,13 +11473,13 @@ msgstr ""
"RAM (e su texture)
Nel dubbio, lascia selezionato."
"dolphin_emphasis>"
-#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:57
+#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:58
msgid "Stretch to Window"
-msgstr "Adatta a Finestra"
+msgstr "Adatta a finestra"
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:174
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:175
msgid "Strict Settings Sync"
-msgstr "Sincronizzazione Esatta Impostazioni"
+msgstr "Sincronizzazione esatta impostazioni"
#. i18n: Data type used in computing
#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:95
@@ -11156,6 +11491,10 @@ msgstr "Stringa"
msgid "Strum"
msgstr "Strimpellata"
+#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:131
+msgid "Style:"
+msgstr "Stile:"
+
#: Source/Core/Core/HW/WiimoteEmu/Extension/DrawsomeTablet.cpp:29
#: Source/Core/Core/HW/WiimoteEmu/Extension/UDrawTablet.cpp:48
#: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:192
@@ -11163,69 +11502,69 @@ msgstr "Strimpellata"
msgid "Stylus"
msgstr "Stilo"
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:258
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:382
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:283
-#: Source/Core/DolphinQt/ConvertDialog.cpp:534
-#: Source/Core/DolphinQt/GameList/GameList.cpp:617
-#: Source/Core/DolphinQt/GameList/GameList.cpp:645
-#: Source/Core/DolphinQt/MenuBar.cpp:1069
-#: Source/Core/DolphinQt/MenuBar.cpp:1199
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:259
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:284
+#: Source/Core/DolphinQt/ConvertDialog.cpp:537
+#: Source/Core/DolphinQt/GameList/GameList.cpp:626
+#: Source/Core/DolphinQt/GameList/GameList.cpp:656
+#: Source/Core/DolphinQt/MenuBar.cpp:1051
+#: Source/Core/DolphinQt/MenuBar.cpp:1185
msgid "Success"
msgstr "Completato"
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:453
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:455
msgid "Successfully added to the NetPlay index"
msgstr "Inserito con successo nell'indice NetPlay"
-#: Source/Core/DolphinQt/ConvertDialog.cpp:535
+#: Source/Core/DolphinQt/ConvertDialog.cpp:538
#, c-format
msgctxt ""
msgid "Successfully converted %n image(s)."
-msgstr "Convertiti con successo %n immagini."
+msgstr "Convertito con successo %n immagine/i."
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:284
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:285
msgid "Successfully deleted '%1'."
msgstr "'%1' eliminato con successo."
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:496
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:497
msgctxt ""
msgid "Successfully exported %n out of %1 save file(s)."
-msgstr "Esportati con successo %n file di salvataggio su %1."
+msgstr "Esportato con successo %n file di salvataggio su %1."
-#: Source/Core/DolphinQt/GameList/GameList.cpp:580
+#: Source/Core/DolphinQt/GameList/GameList.cpp:588
msgid "Successfully exported save files"
msgstr "File di salvataggio esportati con successo"
-#: Source/Core/DolphinQt/MenuBar.cpp:1200
+#: Source/Core/DolphinQt/MenuBar.cpp:1186
msgid "Successfully extracted certificates from NAND"
msgstr "I certificati sono stati estratti con successo dalla NAND"
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:382
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384
msgid "Successfully extracted file."
msgstr "File estratto con successo."
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:259
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:260
msgid "Successfully extracted system data."
msgstr "Dati di sistema estratti con successo."
-#: Source/Core/DolphinQt/MenuBar.cpp:1099
+#: Source/Core/DolphinQt/MenuBar.cpp:1081
msgid "Successfully imported save file."
msgstr "Salvataggio importato con successo."
-#: Source/Core/DolphinQt/GameList/GameList.cpp:618
-#: Source/Core/DolphinQt/MenuBar.cpp:1070
+#: Source/Core/DolphinQt/GameList/GameList.cpp:627
+#: Source/Core/DolphinQt/MenuBar.cpp:1052
msgid "Successfully installed this title to the NAND."
msgstr "Il titolo è stato installato con successo su NAND."
-#: Source/Core/DolphinQt/GameList/GameList.cpp:646
+#: Source/Core/DolphinQt/GameList/GameList.cpp:657
msgid "Successfully removed this title from the NAND."
msgstr "Il titolo è stato rimosso con successo dalla NAND."
#. i18n: Figures for the games Skylanders: SuperChargers (not available for the Wii) and
#. Skylanders: SuperChargers Racing (available for the Wii). The games have the same titles in
#. all countries they were released in. They were not released in Japan.
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:277
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:288
msgid "SuperChargers"
msgstr "SuperChargers"
@@ -11233,16 +11572,16 @@ msgstr "SuperChargers"
msgid "Support"
msgstr "Supporto"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:588
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:589
msgid "Supported file formats"
msgstr "Formato file supportati"
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:220
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:217
msgid "Supports SD and SDHC. Default size is 128 MB."
msgstr "Supporta SD e SDHC. La dimensione standard è 128 MB."
#. i18n: Surround audio (Dolby Pro Logic II)
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:187
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:184
msgid "Surround"
msgstr "Surround"
@@ -11250,17 +11589,22 @@ msgstr "Surround"
msgid "Suspended"
msgstr "Sospeso"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:173
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:212
msgid "Swap Eyes"
-msgstr "Inverti Occhi"
+msgstr "Inverti occhi"
#. i18n: Figures for the game Skylanders: Swap Force. The game has the same title in all countries
#. it was released in. It was not released in Japan.
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:270
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:281
msgid "Swap Force"
msgstr "Swap Force"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:500
+#. i18n: One of the figure types in the Skylanders games.
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:420
+msgid "Swapper"
+msgstr "Swapper"
+
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:582
msgid ""
"Swaps the left and right eye. Most useful in side-by-side stereoscopy mode."
"
If unsure, leave this unchecked."
@@ -11273,25 +11617,25 @@ msgstr ""
#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:230
#: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionSimulation.cpp:35
msgid "Swing"
-msgstr "Ruota/Oscilla"
+msgstr "Ruota/oscilla"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:242
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:243
msgid "Switch to A"
-msgstr "Scambia ad A"
+msgstr "Scambia con A"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:242
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:243
msgid "Switch to B"
-msgstr "Scambia a B"
+msgstr "Scambia con B"
#. i18n: The symbolic name of a code block
-#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:82
+#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:81
#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:144
#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:375
#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:84
msgid "Symbol"
msgstr "Simbolo"
-#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:980
+#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:982
msgid "Symbol (%1) end address:"
msgstr "Indirizzo di termine del simbolo (%1):"
@@ -11305,29 +11649,29 @@ msgid ""
msgstr ""
"Mappa dei simboli non trovata.\n"
"\n"
-"Se non esiste, puoi generarla dal Menu:\n"
-"Simboli -> Genera Simboli Da ->\n"
-"\tIndirizzo | Database Firme | Moduli RSO"
+"Se non esiste, puoi generarla dal menu:\n"
+"Simboli -> Genera simboli da ->\n"
+"\tIndirizzo | Database signature | Moduli RSO"
-#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:919
+#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:921
msgid "Symbol name:"
msgstr "Nome del simbolo:"
-#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:157
-#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:135
-#: Source/Core/DolphinQt/MenuBar.cpp:980
+#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:158
+#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:136
+#: Source/Core/DolphinQt/MenuBar.cpp:962
msgid "Symbols"
msgstr "Simboli"
-#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:105
+#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:106
msgid "Sync"
msgstr "Sincronizza"
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:172
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:173
msgid "Sync AR/Gecko Codes"
-msgstr "Sincronizza Codici AR/Gecko"
+msgstr "Sincronizza codici AR/Gecko"
-#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:108
+#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:109
msgid "Sync real Wii Remotes and pair them"
msgstr "Sincronizza e abbina Wii Remote reali"
@@ -11343,7 +11687,7 @@ msgstr ""
"Sincronizza i thread della GPU e della CPU per prevenire alcuni blocchi "
"casuali in modalità Dual Core. (ON = Compatibilità, OFF = Velocità)"
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:243
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:240
msgid ""
"Synchronizes the SD Card with the SD Sync Folder when starting and ending "
"emulation."
@@ -11363,25 +11707,25 @@ msgstr "Sincronizzazione codici Gecko..."
msgid "Synchronizing save data..."
msgstr "Sincronizzazione dei dati di salvataggio in corso..."
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:82
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:169
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:83
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:166
msgid "System Language:"
-msgstr "Lingua di Sistema:"
+msgstr "Lingua di sistema:"
-#: Source/Core/DolphinQt/MenuBar.cpp:765
+#: Source/Core/DolphinQt/MenuBar.cpp:757
msgid "TAS Input"
-msgstr "TAS Input"
+msgstr "Input TAS"
#. i18n: TAS is short for tool-assisted speedrun. Read http://tasvideos.org/ for details.
#. Frame advance is an example of a typical TAS tool.
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:447
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:449
msgid "TAS Tools"
msgstr "Strumenti TAS"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:494
-#: Source/Core/DolphinQt/GameList/GameList.cpp:994
+#: Source/Core/DolphinQt/GameList/GameList.cpp:501
+#: Source/Core/DolphinQt/GameList/GameList.cpp:1008
#: Source/Core/DolphinQt/GameList/GameListModel.cpp:235
-#: Source/Core/DolphinQt/MenuBar.cpp:655
+#: Source/Core/DolphinQt/MenuBar.cpp:647
msgid "Tags"
msgstr "Tag"
@@ -11399,15 +11743,15 @@ msgstr "Coda"
msgid "Taiwan"
msgstr "Taiwan"
-#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:325
+#: Source/Core/Core/HotkeyManager.cpp:35 Source/Core/DolphinQt/MenuBar.cpp:317
msgid "Take Screenshot"
-msgstr "Cattura uno Screenshot"
+msgstr "Cattura uno screenshot"
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:665
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:664
msgid "Target address range is invalid."
msgstr "Il range di indirizzi non è valido."
-#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:691
+#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:692
msgid ""
"Target value was overwritten by current instruction.\n"
"Instructions executed: %1"
@@ -11417,45 +11761,45 @@ msgstr ""
#. i18n: One of the elements in the Skylanders games. Japanese: マシン. For official translations
#. in other languages, check the SuperChargers manual at https://support.activision.com/manuals
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:330
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:346
msgid "Tech"
msgstr "Tecnica"
-#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:244
+#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:263
msgid "Test"
msgstr "Prova"
#: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:223
#: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:59
msgid "Texture Cache"
-msgstr "Cache Texture"
+msgstr "Cache texture"
#: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:298
msgid "Texture Cache Accuracy"
-msgstr "Accuratezza Cache Texture"
+msgstr "Accuratezza cache texture"
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:117
msgid "Texture Dumping"
-msgstr "Dump delle Texture"
+msgstr "Dump delle texture"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:535
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:617
msgid "Texture Filtering"
-msgstr "Filtraggio Texture"
+msgstr "Filtraggio texture"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:133
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:168
msgid "Texture Filtering:"
-msgstr "Filtraggio Texture:"
+msgstr "Filtraggio texture:"
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:84
msgid "Texture Format Overlay"
-msgstr "Overlay Formato Texture"
+msgstr "Overlay formato texture"
#: Source/Core/Core/FifoPlayer/FifoDataFile.cpp:237
msgid ""
"The DFF's minimum loader version ({0}) exceeds the version of this FIFO "
"Player ({1})"
msgstr ""
-"La versinoe minima del loader DFF ({0}) supera la versione di questo Player "
+"La versione minima del loader DFF ({0}) supera la versione di questo Player "
"FIFO ({1})"
#: Source/Core/VideoBackends/D3D/D3DMain.cpp:57
@@ -11490,7 +11834,7 @@ msgstr "Il file IPL non è un dump conosciuto ben formato. (CRC32: {0:x})"
msgid "The Masterpiece partitions are missing."
msgstr "Le partizioni Capolavori sono assenti."
-#: Source/Core/DolphinQt/MenuBar.cpp:1191
+#: Source/Core/DolphinQt/MenuBar.cpp:1177
msgid ""
"The NAND could not be repaired. It is recommended to back up your current "
"data and start over with a fresh NAND."
@@ -11498,7 +11842,7 @@ msgstr ""
"Non è stato possibile riparare la NAND. Si consiglia di fare un backup dei "
"dati attualmente presenti e ricominciare con una NAND pulita."
-#: Source/Core/DolphinQt/MenuBar.cpp:1186
+#: Source/Core/DolphinQt/MenuBar.cpp:1172
msgid "The NAND has been repaired."
msgstr "La NAND è stata riparata."
@@ -11509,8 +11853,12 @@ msgid ""
"copy or move it back to the NAND."
msgstr ""
"Il TMD non è firmato correttamente. Se sposti o copi questo titolo sulla "
-"Scheda SD, il Menu di Sistema Wii non si avvierà più, e non sarà più "
-"possibile copiarlo o rispostarlo sulla NAND."
+"scheda SD, il menu di sistema Wii non si avvierà più, e non sarà più "
+"possibile copiarlo o rispostarlo sulla NAND."
+
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:170
+msgid "The amount of money this skylander should have. Between 0 and 65000"
+msgstr "Quanti soldi dovrà avere questo Skylander. Tra 0 e 65000"
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:278
msgid ""
@@ -11556,7 +11904,7 @@ msgid "The decryption keys need to be appended to the NAND backup file."
msgstr ""
"Le chiavi di decrittazione devono essere inserite nel file di backup NAND."
-#: Source/Core/DolphinQt/ConvertDialog.cpp:425
+#: Source/Core/DolphinQt/ConvertDialog.cpp:427
msgid ""
"The destination file cannot be the same as the source file\n"
"\n"
@@ -11587,14 +11935,14 @@ msgid ""
"The emulated NAND is damaged. System titles such as the Wii Menu and the Wii "
"Shop Channel may not work correctly."
msgstr ""
-"La NAND emulata è danneggiata. Titoli di sistema come il Menu Wii e il Wii "
-"Shop Channel potrebbero non funzionare correttamente."
+"La NAND emulata è danneggiata. Titoli di sistema come il menu Wii e il "
+"Canale Wii Shop potrebbero non funzionare correttamente."
-#: Source/Core/DolphinQt/WiiUpdate.cpp:33
+#: Source/Core/DolphinQt/WiiUpdate.cpp:34
msgid "The emulated Wii console has been updated."
msgstr "La console Wii emulata è stata aggiornata."
-#: Source/Core/DolphinQt/WiiUpdate.cpp:38
+#: Source/Core/DolphinQt/WiiUpdate.cpp:39
msgid "The emulated Wii console is already up-to-date."
msgstr "La console Wii emulata è già aggiornata."
@@ -11604,19 +11952,21 @@ msgstr "La console Wii emulata è già aggiornata."
msgid "The entered MAC address is invalid."
msgstr "L'indirizzo MAC inserito non è valido."
-#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:138
+#. i18n: Here, PID means Product ID (for a USB device).
+#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:140
msgid "The entered PID is invalid."
msgstr "Il PID inserito non è valido."
-#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:132
+#. i18n: Here, VID means Vendor ID (for a USB device).
+#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:133
msgid "The entered VID is invalid."
msgstr "Il VID inserito non è valido."
-#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:521
+#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:539
msgid "The expression contains a syntax error."
msgstr "L'espressione contiene un errore di sintassi."
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:461
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:471
msgid ""
"The file\n"
"%1\n"
@@ -11628,7 +11978,7 @@ msgstr ""
"è o corrotto o non un file memory card GameCube.\n"
"%2"
-#: Source/Core/DolphinQt/ConvertDialog.cpp:407
+#: Source/Core/DolphinQt/ConvertDialog.cpp:408
msgid ""
"The file %1 already exists.\n"
"Do you wish to replace it?"
@@ -11636,6 +11986,13 @@ msgstr ""
"Il file %1 esiste già.\n"
"Vuoi sostituirlo?"
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:274
+msgid ""
+"The file associated to this file was closed! Did you clear the slot before "
+"saving?"
+msgstr ""
+"Il file associato è stato chiuso! Hai eliminato lo slot prima di salvare?"
+
#: Source/Core/AudioCommon/WaveFile.cpp:60
msgid ""
"The file {0} could not be opened for writing. Please check if it's already "
@@ -11648,7 +12005,7 @@ msgstr ""
msgid "The file {0} was already open, the file header will not be written."
msgstr "Il file {0} è già stato aperto, l'intestazione non verrà scritta."
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:440
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:450
msgid ""
"The filename %1 does not conform to Dolphin's region code format for memory "
"cards. Please rename this file to either %2, %3, or %4, matching the region "
@@ -11662,7 +12019,7 @@ msgstr ""
msgid "The filesystem is invalid or could not be read."
msgstr "Il filesystem non è valido o è illeggibile."
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:563
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:573
msgid ""
"The folder %1 does not conform to Dolphin's region code format for GCI "
"folders. Please rename this folder to either %2, %3, or %4, matching the "
@@ -11692,7 +12049,7 @@ msgstr "L'ID del gioco è insolitamente breve."
msgid "The game ID is {0} but should be {1}."
msgstr "L'ID del gioco è {0} ma dovrebbe essere {1}."
-#: Source/Core/DolphinQt/WiiUpdate.cpp:72
+#: Source/Core/DolphinQt/WiiUpdate.cpp:73
msgid "The game disc does not contain any usable update information."
msgstr "Questo disco di gioco non contiene alcun aggiornamento utilizzabile."
@@ -11700,7 +12057,7 @@ msgstr "Questo disco di gioco non contiene alcun aggiornamento utilizzabile."
msgid "The game is currently running."
msgstr "Il gioco è attualmente avviato."
-#: Source/Core/DolphinQt/WiiUpdate.cpp:65
+#: Source/Core/DolphinQt/WiiUpdate.cpp:66
msgid ""
"The game's region does not match your console's. To avoid issues with the "
"system menu, it is not possible to update the emulated console using this "
@@ -11710,7 +12067,7 @@ msgstr ""
"problemi col menu di sistema, non è possibile aggiornare la console emulata "
"con questo disco."
-#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:704
+#: Source/Core/VideoBackends/OGL/OGLConfig.cpp:715
msgid ""
"The graphics driver is forcibly enabling anti-aliasing for Dolphin. You need "
"to turn this off in the graphics driver's settings in order for Dolphin to "
@@ -11732,6 +12089,14 @@ msgstr "Gli hash non coincidono!"
msgid "The hashes match!"
msgstr "Gli hash coincidono!"
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:171
+msgid ""
+"The hero level of this skylander. Only seen in Skylanders: Spyro's "
+"Adventures. Between 0 and 100"
+msgstr ""
+"Il livello eroe di questo Skylander. Presente solo su Skylanders: Spyro's "
+"Adventures. Tra 0 e 100."
+
#: Source/Core/Core/NetPlayClient.cpp:184
msgid ""
"The host code is too long.\n"
@@ -11744,6 +12109,18 @@ msgstr ""
msgid "The install partition is missing."
msgstr "La partizione di installazione è assente"
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:178
+msgid "The last time the figure has been placed on a portal"
+msgstr "L'ultima volta che questa figura è stata posizionata su un portale"
+
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:176
+msgid ""
+"The last time the figure has been reset. If the figure has never been reset, "
+"the first time the figure was placed on a portal"
+msgstr ""
+"L'ultima volta che questa figura è stata resettata. Se non è mai successo, è "
+"la prima volta in cui la figura è stata posizionata su un portale"
+
#: Source/Core/Core/HW/EXI/EXI.cpp:48
msgid ""
"The movie indicates that a memory card should be inserted into {0:n}, but "
@@ -11756,13 +12133,17 @@ msgstr ""
"selezionato su Memory Card o Cartella GCI per sincronizzare correttamente la "
"registrazione."
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:173
+msgid "The nickname for this skylander. Limited to 15 characters"
+msgstr "Il soprannome di questo Skylander. Massimo 15 caratteri"
+
#: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:141
msgid "The patches in %1 are not for the selected game or game revision."
msgstr ""
"Le patch in %1 non sono per il gioco o per la sua versione selezionata."
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:257
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:296
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:256
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:297
msgid "The profile '%1' does not exist"
msgstr "Il profilo '%1' non esiste"
@@ -11785,12 +12166,12 @@ msgstr ""
msgid "The resulting decrypted AR code doesn't contain any lines."
msgstr "Il codice AR decriptato risultante non contiene alcuna riga."
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:482
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:492
msgid ""
"The same file can't be used in multiple slots; it is already used by %1."
msgstr "Lo stesso file non può essere usato su più slot; è già usato da %1."
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:586
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:596
msgid ""
"The same folder can't be used in multiple slots; it is already used by %1."
msgstr ""
@@ -11830,13 +12211,15 @@ msgstr ""
msgid "The specified file \"{0}\" does not exist"
msgstr "il file specificato \"{0}\" non esiste"
-#: Source/Core/DolphinQt/MenuBar.cpp:1153
+#: Source/Core/DolphinQt/MenuBar.cpp:1135
msgid ""
"The system-reserved part of your NAND contains %1 blocks (%2 KiB) of data, "
"out of an allowed maximum of %3 blocks (%4 KiB)."
msgstr ""
+"La parte riservata al sistema nella tua NAND contiene %1 blocchi (%2 KiB) di "
+"dati, con un massimo permesso di %3 blocchi (%4 KiB)."
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:543
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:544
msgid "The target memory card already contains a file \"%1\"."
msgstr "La memory card di destinazione contiene già un file \"%1\"."
@@ -11845,11 +12228,36 @@ msgstr "La memory card di destinazione contiene già un file \"%1\"."
msgid "The ticket is not correctly signed."
msgstr "Il ticket non è correttamente firmato."
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:175
+msgid "The total time this figure has been used inside a game in seconds"
+msgstr ""
+"Il tempo totale in secondi per cui questa figura è stata usata in un gioco"
+
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:169
+msgid "The toy code for this figure. Only available for real figures."
+msgstr ""
+"Il codice univoco per questa figura. Disponibile solo per figure reali."
+
#: Source/Core/DiscIO/VolumeVerifier.cpp:523
msgid "The type of a partition could not be read."
msgstr "Impossibile leggere il tipo di una partizione."
-#: Source/Core/DolphinQt/WiiUpdate.cpp:59
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:83
+msgid "The type of this Skylander does not have any data that can be modified!"
+msgstr "Questo tipo di Skylander non ha alcun dato modificabile!"
+
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:90
+msgid "The type of this Skylander is unknown!"
+msgstr "Questo tipo di Skylander è sconosciuto!"
+
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:97
+msgid ""
+"The type of this Skylander is unknown, or can't be modified at this time!"
+msgstr ""
+"Il tipo di questo Skylander è sconosciuto, o non può ancora essere "
+"modificato!"
+
+#: Source/Core/DolphinQt/WiiUpdate.cpp:60
msgid ""
"The update has been cancelled. It is strongly recommended to finish it in "
"order to avoid inconsistent system software versions."
@@ -11871,11 +12279,13 @@ msgid "The update partition is not at its normal position."
msgstr ""
"La partizione di aggiornamento non si trova nella posizione predefinita."
-#: Source/Core/DolphinQt/MenuBar.cpp:1145
+#: Source/Core/DolphinQt/MenuBar.cpp:1127
msgid ""
"The user-accessible part of your NAND contains %1 blocks (%2 KiB) of data, "
"out of an allowed maximum of %3 blocks (%4 KiB)."
msgstr ""
+"La parte accessibile all'utente nella tua NAND contiene %1 blocchi (%2 KiB) "
+"di dati, con un massimo permesso di %3 blocchi (%4 KiB)."
#: Source/Core/DiscIO/VolumeVerifier.cpp:643
msgid "The {0} partition does not have a valid file system."
@@ -11897,11 +12307,11 @@ msgstr "La partizione {0} non è correttamente allineata."
msgid "There are too many partitions in the first partition table."
msgstr "Ci sono troppe partizioni nella prima tabella delle partizioni."
-#: Source/Core/Core/State.cpp:827
+#: Source/Core/Core/State.cpp:1020
msgid "There is nothing to undo!"
msgstr "Non c'è nulla da annullare!"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:487
+#: Source/Core/DolphinQt/GameList/GameList.cpp:494
msgid "There was an issue adding a shortcut to the desktop"
msgstr "Non è stato possibile creare un collegamento sul desktop."
@@ -11940,7 +12350,11 @@ msgstr ""
"tipicamente in uso sulle console coreane. Probabilmente verrà visualizzato "
"un ERROR #002"
-#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:150
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:100
+msgid "This Skylander type can't be modified yet!"
+msgstr "Il tipo di questo Skylander non può ancora essere modificato!"
+
+#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:152
msgid "This USB device is already whitelisted."
msgstr "Questo dispositivo USB è già stato accettato."
@@ -11968,7 +12382,7 @@ msgstr ""
"Usa la build ARM64 per avere prestazioni migliori."
#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:267
-#: Source/Core/DolphinQt/GameList/GameList.cpp:818
+#: Source/Core/DolphinQt/GameList/GameList.cpp:830
msgid "This cannot be undone!"
msgstr "Impossibile annullare l'operazione!"
@@ -12097,7 +12511,7 @@ msgstr "Questo è un buon dump."
msgid "This session requires a password:"
msgstr "Questa sessione richiede una password:"
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:177
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:183
msgid ""
"This setting allows you to set a custom real time clock (RTC) separate from "
"your current system time.\n"
@@ -12175,7 +12589,7 @@ msgstr ""
"Serve a limitare la velocità di chunked upload per ogni client, utilizzato "
"per la sincronizzazione dei salvataggi."
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:176
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:177
msgid ""
"This will sync additional graphics settings, and force everyone to the same "
"internal resolution.\n"
@@ -12189,7 +12603,7 @@ msgstr ""
#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:143
msgid "Thread context"
-msgstr "Contesto Thread"
+msgstr "Contesto thread"
#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:24
msgid "Threads"
@@ -12216,103 +12630,103 @@ msgstr ""
"Tempo di input stabile richiesto per iniziare la calibrazione. (zero per "
"disabilitare)"
-#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:292
+#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:293
msgid "Timed Out"
-msgstr "Tempo Scaduto"
+msgstr "Tempo scaduto"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:983
+#: Source/Core/DolphinQt/GameList/GameList.cpp:997
#: Source/Core/DolphinQt/GameList/GameListModel.cpp:213
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:153
-#: Source/Core/DolphinQt/MenuBar.cpp:644
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:154
+#: Source/Core/DolphinQt/MenuBar.cpp:636
msgid "Title"
msgstr "Titolo"
#: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:309
msgid "To"
-msgstr "a"
+msgstr "A"
#: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:132
#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:96
#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:111
msgid "To:"
-msgstr "Da:"
+msgstr "A:"
-#: Source/Core/DolphinQt/MenuBar.cpp:322
+#: Source/Core/DolphinQt/MenuBar.cpp:314
msgid "Toggle &Fullscreen"
-msgstr "Attiva/Disattiva &Schermo intero"
+msgstr "Attiva/disattiva &schermo intero"
#: Source/Core/Core/HotkeyManager.cpp:125
msgid "Toggle 3D Anaglyph"
-msgstr "Attiva/Disattiva Anaglifo 3D"
+msgstr "Attiva/disattiva anaglifo 3D"
#: Source/Core/Core/HotkeyManager.cpp:123
msgid "Toggle 3D Side-by-Side"
-msgstr "Attiva/Disattiva 3D Fianco-a-Fianco"
+msgstr "Attiva/disattiva 3D fianco-a-fianco"
#: Source/Core/Core/HotkeyManager.cpp:124
msgid "Toggle 3D Top-Bottom"
-msgstr "Attiva/Disattiva 3D Sopra-sotto"
+msgstr "Attiva/disattiva 3D sopra-sotto"
#: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:62
msgid "Toggle All Log Types"
-msgstr "Seleziona/Deseleziona tutti i Tipi di Log"
+msgstr "Attiva/disattiva tutti i tipi di log"
#: Source/Core/Core/HotkeyManager.cpp:107
msgid "Toggle Aspect Ratio"
-msgstr "Attiva/Disattiva Aspetto"
+msgstr "Attiva/disattiva rapporto di aspetto"
#: Source/Core/Core/HotkeyManager.cpp:76
#: Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp:906
msgid "Toggle Breakpoint"
-msgstr "Imposta/rimuovi Punto di Interruzione"
+msgstr "Attiva/disattiva punto di interruzione"
#: Source/Core/Core/HotkeyManager.cpp:106
msgid "Toggle Crop"
-msgstr "Attiva/Disattiva Ritaglio"
+msgstr "Attiva/disattiva ritaglio"
#: Source/Core/Core/HotkeyManager.cpp:114
msgid "Toggle Custom Textures"
-msgstr "Attiva/Disattiva Texture Personalizzate"
+msgstr "Attiva/disattiva texture personalizzate"
#: Source/Core/Core/HotkeyManager.cpp:109
msgid "Toggle EFB Copies"
-msgstr "Attiva/Disattiva Copie EFB"
+msgstr "Attiva/disattiva copie EFB"
#: Source/Core/Core/HotkeyManager.cpp:112
msgid "Toggle Fog"
-msgstr "Attiva/Disattiva Nebbia"
+msgstr "Attiva/disattiva nebbia"
#: Source/Core/Core/HotkeyManager.cpp:34
msgid "Toggle Fullscreen"
-msgstr "Visualizza a Schermo Intero"
+msgstr "Attiva/disattiva schermo intero"
#: Source/Core/Core/HotkeyManager.cpp:31
msgid "Toggle Pause"
-msgstr "Attiva/Disattiva Pausa"
+msgstr "Attiva/disattiva pausa"
#: Source/Core/Core/HotkeyManager.cpp:86
msgid "Toggle SD Card"
-msgstr "Attiva/Disattiva Scheda SD"
+msgstr "Attiva/disattiva scheda SD"
#: Source/Core/Core/HotkeyManager.cpp:108
msgid "Toggle Skip EFB Access"
-msgstr "Attiva/Disattiva Salta Accesso EFB"
+msgstr "Attiva/disattiva salta accesso EFB"
#: Source/Core/Core/HotkeyManager.cpp:113
msgid "Toggle Texture Dumping"
-msgstr "Attiva/Disattiva Texture Dump"
+msgstr "Attiva/disattiva dump texture"
#: Source/Core/Core/HotkeyManager.cpp:87
msgid "Toggle USB Keyboard"
-msgstr "Attiva/Disattiva Tastiera USB"
+msgstr "Attiva/disattiva tastiera USB"
#: Source/Core/Core/HotkeyManager.cpp:110
msgid "Toggle XFB Copies"
-msgstr "Attiva/Disattiva Copie XFB"
+msgstr "Attiva/disattiva copie XFB"
#: Source/Core/Core/HotkeyManager.cpp:111
msgid "Toggle XFB Immediate Mode"
-msgstr "Attiva/Disattiva Modalità XFB Immediata"
+msgstr "Attiva/disattiva modalità XFB immediata"
#: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:958
msgid "Tokenizing failed."
@@ -12320,32 +12734,32 @@ msgstr "Tokenizzazione fallita."
#: Source/Core/DolphinQt/ToolBar.cpp:28
msgid "Toolbar"
-msgstr "Barra degli Strumenti"
+msgstr "Barra degli strumenti"
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:357
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:356
msgid "Top"
msgstr "Sopra"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:167
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:206
msgid "Top-and-Bottom"
-msgstr "Sopra-e-Sotto"
+msgstr "Sopra-e-sotto"
-#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:82
+#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:81
#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:144
#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:375
msgid "Total Hits"
-msgstr "Numero di Passaggi"
+msgstr "Numero di passaggi"
#. i18n: Refers to an amount of rotational movement about the "pitch" axis.
#: Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.cpp:55
msgid "Total Pitch"
-msgstr "Beccheggio Totale"
+msgstr "Beccheggio totale"
#. i18n: Refers to an amount of rotational movement about the "yaw" axis.
#: Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.cpp:46
#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUCursor.cpp:35
msgid "Total Yaw"
-msgstr "Imbardata Totale"
+msgstr "Imbardata totale"
#. i18n: Refers to emulated wii remote movements.
#: Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.cpp:59
@@ -12369,27 +12783,41 @@ msgstr "Massima distanza di movimento."
msgid "Touch"
msgstr "Tocco"
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:119
+msgid "Toy code:"
+msgstr "Codice figura:"
+
#: Source/Core/DiscIO/Enums.cpp:101
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:179
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:176
msgid "Traditional Chinese"
msgstr "Cinese Tradizionale"
+#. i18n: One of the figure types in the Skylanders games.
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:433
+msgid "Trap"
+msgstr "Trappola"
+
+#. i18n: One of the figure types in the Skylanders games.
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:422
+msgid "Trap Master"
+msgstr "Trap Master"
+
#. i18n: Figures for the game Skylanders: Trap Team. The game has the same title in all countries
#. it was released in. It was not released in Japan.
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:273
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:284
msgid "Trap Team"
msgstr "Trap Team"
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:991
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:995
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:993
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:997
msgid "Traversal Error"
-msgstr "Errore Traversal"
+msgstr "Errore traversal"
#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:190
msgid "Traversal Server"
-msgstr "Traversal Server"
+msgstr "Traversal server"
-#: Source/Core/Core/NetPlayClient.cpp:1973
+#: Source/Core/Core/NetPlayClient.cpp:1977
msgid "Traversal server timed out connecting to the host"
msgstr ""
"Il traversal server è andato in time out durante la connessione con l'host."
@@ -12402,7 +12830,7 @@ msgstr ""
"Prova a tradurre i branch in anticipo, migliorando le performance nella "
"maggior parte dei casi. Il default è Attivo"
-#: Source/Core/Core/HW/EXI/EXI_Device.h:102
+#: Source/Core/Core/HW/EXI/EXI_Device.h:101
msgid "Triforce AM Baseboard"
msgstr "AM Baseboard Triforce "
@@ -12411,12 +12839,17 @@ msgstr "AM Baseboard Triforce "
#: Source/Core/DolphinQt/Config/Mapping/GCPadEmu.cpp:33
#: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:63
#: Source/Core/DolphinQt/TAS/GCTASInputWindow.cpp:38
-#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:211
+#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:212
msgid "Triggers"
msgstr "Grilletti"
+#. i18n: One of the figure types in the Skylanders games.
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:428
+msgid "Trophy"
+msgstr "Trofeo"
+
#: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:127
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:166
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167
#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:330
#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:352
msgid "Type"
@@ -12424,11 +12857,11 @@ msgstr "Tipo"
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:203
msgid "Type-based Alignment"
-msgstr "Allineamento per Tipo"
+msgstr "Allineamento per tipo"
#: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:49
msgid "Typical GameCube/Wii Address Space"
-msgstr "Spazio di Indirizzi GameCube/Wii Standard"
+msgstr "Spazio di indirizzi standard GameCube/Wii"
#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:292
msgid "UNKNOWN"
@@ -12440,29 +12873,27 @@ msgstr "USA"
#: Source/Core/DolphinQt/Config/Mapping/HotkeyUSBEmu.cpp:21
msgid "USB Device Emulation"
-msgstr "Dispositivo di Emulazione USB"
+msgstr "Dispositivo di emulazione USB"
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:454
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:456
msgid "USB Emulation"
msgstr "Emulazione USB"
#: Source/Core/Core/HotkeyManager.cpp:361
msgid "USB Emulation Devices"
-msgstr "Dispositivi di Emulazione USB"
+msgstr "Dispositivi di emulazione USB"
-#: Source/Core/Core/HW/EXI/EXI_Device.h:103
+#: Source/Core/Core/HW/EXI/EXI_Device.h:102
msgid "USB Gecko"
msgstr "USB Gecko"
-#. i18n: Here, VID means Vendor ID (for a USB device).
-#. i18n: Here, PID means Product ID (for a USB device).
-#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:132
+#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:131
#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:138
-#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:149
+#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:151
msgid "USB Whitelist Error"
msgstr "Errore USB Whitelist"
-#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:227
+#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:228
msgid ""
"Ubershaders are never used. Stuttering will occur during shader compilation, "
"but GPU demands are low.
Nel dubbio, seleziona questa modalità."
"dolphin_emphasis>"
-#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:232
+#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:233
msgid ""
"Ubershaders will always be used. Provides a near stutter-free experience at "
"the cost of very high GPU performance requirements."
@@ -12486,7 +12917,7 @@ msgstr ""
"
Non usarlo a meno che non riscontri rallentamenti "
"con Ubershader Ibridi e hai una GPU molto potente."
-#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:237
+#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:238
msgid ""
"Ubershaders will be used to prevent stuttering during shader compilation, "
"but specialized shaders will be used when they will not cause stuttering."
@@ -12500,7 +12931,7 @@ msgstr ""
"durante la compilazione degli shader con un minore impatto sulle "
"performance, ma il risultato dipende dai driver della scheda grafica."
-#: Source/Core/DolphinQt/MenuBar.cpp:1352
+#: Source/Core/DolphinQt/MenuBar.cpp:1339
msgid "Unable to auto-detect RSO module"
msgstr "Impossibile individuare automaticamente il modulo RSO"
@@ -12512,7 +12943,11 @@ msgstr "Impossibile contattare server di aggiornamento."
msgid "Unable to create updater copy."
msgstr "Impossibile creare copia dell'programma di aggiornamento"
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:705
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:96
+msgid "Unable to modify Skylander!"
+msgstr "Impossibile modificare lo Skylander!"
+
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:704
msgid "Unable to open file."
msgstr "Impossibile aprire il file."
@@ -12540,7 +12975,7 @@ msgstr ""
"\n"
"Vuoi ignorare questa riga e continuare l'analisi?"
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:713
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:712
msgid "Unable to read file."
msgstr "Impossibile leggere il file."
@@ -12556,34 +12991,34 @@ msgstr "Impossibile scrivere su file {0}"
msgid "Unbound"
msgstr "Non assegnato"
-#: Source/Core/DolphinQt/ConvertDialog.cpp:344
+#: Source/Core/DolphinQt/ConvertDialog.cpp:345
msgid "Uncompressed GC/Wii images (*.iso *.gcm)"
msgstr "Immagini GC/Wii non compresse (*.iso *.gcm)"
#. i18n: One of the elements in the Skylanders games. Japanese: アンデッド. For official
#. translations in other languages, check the SuperChargers manual at
#. https://support.activision.com/manuals
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:346
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:362
msgid "Undead"
msgstr "Non-morti"
-#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:344
+#: Source/Core/Core/HotkeyManager.cpp:178 Source/Core/DolphinQt/MenuBar.cpp:336
msgid "Undo Load State"
-msgstr "Annulla Caricamento Stato di Gioco"
+msgstr "Annulla caricamento stato di gioco"
-#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:361
+#: Source/Core/Core/HotkeyManager.cpp:179 Source/Core/DolphinQt/MenuBar.cpp:353
msgid "Undo Save State"
-msgstr "Annulla Salvataggio dello Stato di Gioco"
+msgstr "Annulla salvataggio dello stato di gioco"
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:318
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:320
msgid "Uninstall"
msgstr "Disinstalla"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:443
+#: Source/Core/DolphinQt/GameList/GameList.cpp:444
msgid "Uninstall from the NAND"
msgstr "Disinstalla dalla NAND"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:633
+#: Source/Core/DolphinQt/GameList/GameList.cpp:643
msgid ""
"Uninstalling the WAD will remove the currently installed version of this "
"title from the NAND without deleting its save data. Continue?"
@@ -12592,24 +13027,29 @@ msgstr ""
"attualmente installata su NAND senza cancellarne i file di salvataggio. "
"Continuare?"
-#: Source/Core/DolphinQt/MenuBar.cpp:288
+#: Source/Core/DolphinQt/MenuBar.cpp:280
msgid "United States"
msgstr "Stati Uniti"
-#: Source/Core/Core/State.cpp:545 Source/Core/DiscIO/Enums.cpp:63
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:89
+msgid "Unknow Skylander type!"
+msgstr "Tipo Skylander sconosciuto!"
+
+#: Source/Core/Core/State.cpp:633 Source/Core/DiscIO/Enums.cpp:63
#: Source/Core/DiscIO/Enums.cpp:107
#: Source/Core/DolphinQt/Config/InfoWidget.cpp:85
#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:45
#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:68
#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:126
#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:130
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:757
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:759
msgid "Unknown"
msgstr "Sconosciuto"
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:744
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:56
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:866
msgid "Unknown (Id:%1 Var:%2)"
-msgstr "Sconosciuto (Id:%1 Var:%2)"
+msgstr "Sconosciuto (id:%1 var:%2)"
#: Source/Core/Core/HW/DVD/DVDInterface.cpp:1168
msgid "Unknown DVD command {0:08x} - fatal error"
@@ -12619,7 +13059,7 @@ msgstr "Comando DVD {0:08x} sconosciuto - errore fatale"
msgid "Unknown SYNC_CODES message received with id: {0}"
msgstr "Messaggio SYNC_CODES sconosciuto ricevuto con id: {0}"
-#: Source/Core/Core/NetPlayServer.cpp:1234
+#: Source/Core/Core/NetPlayServer.cpp:1238
msgid ""
"Unknown SYNC_GECKO_CODES message with id:{0} received from player:{1} "
"Kicking player!"
@@ -12631,7 +13071,7 @@ msgstr ""
msgid "Unknown SYNC_SAVE_DATA message received with id: {0}"
msgstr "Messaggio SYNC_SAVE_DATA sconosciuto ricevuto con id: {0}"
-#: Source/Core/Core/NetPlayServer.cpp:1177
+#: Source/Core/Core/NetPlayServer.cpp:1181
msgid ""
"Unknown SYNC_SAVE_DATA message with id:{0} received from player:{1} Kicking "
"player!"
@@ -12643,7 +13083,7 @@ msgstr ""
msgid "Unknown address space"
msgstr "Spazio dell'indirizzo sconosciuto"
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:119
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:120
msgid "Unknown author"
msgstr "Autore sconosciuto"
@@ -12659,11 +13099,11 @@ msgstr "Disco sconosciuto"
msgid "Unknown error occurred."
msgstr "Si è verificato un errore sconosciuto."
-#: Source/Core/Core/NetPlayClient.cpp:1982
+#: Source/Core/Core/NetPlayClient.cpp:1986
msgid "Unknown error {0:x}"
msgstr "Errore sconosciuto {0:x}"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:867
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:869
msgid "Unknown error."
msgstr "Errore sconosciuto."
@@ -12671,22 +13111,22 @@ msgstr "Errore sconosciuto."
msgid "Unknown message received with id : {0}"
msgstr "Ricevuto messaggio sconosciuto con id : {0}"
-#: Source/Core/Core/NetPlayServer.cpp:1242
+#: Source/Core/Core/NetPlayServer.cpp:1246
msgid "Unknown message with id:{0} received from player:{1} Kicking player!"
msgstr ""
"Ricevuto messaggio sconosciuto con id:{0} ricevuto dal giocatore:{1} "
"Giocatore espulso!"
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:462
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:546
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:549
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:633
msgid "Unknown(%1 %2).sky"
msgstr "Sconosciuto(%1 %2).sky"
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:275
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:277
msgid "Unknown(%1).bin"
msgstr "Sconosciuto(%1).bin"
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:163
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:164
msgid "Unlimited"
msgstr "Illimitato"
@@ -12696,25 +13136,25 @@ msgstr "Rimuovi ROM"
#: Source/Core/Core/HotkeyManager.cpp:37
msgid "Unlock Cursor"
-msgstr "Sblocca il Cursore"
+msgstr "Sblocca il cursore"
-#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:119
+#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:166
msgid "Unlocked"
msgstr "Sbloccato"
-#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:108
+#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:155
msgid "Unlocked %1 times this session"
msgstr "Sbloccato %1 volte questa sessione"
-#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:117
+#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:164
msgid "Unlocked (Casual)"
-msgstr "Sbloccato (Casual)"
+msgstr "Sbloccato (casual)"
-#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:110
+#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:157
msgid "Unlocked this session"
msgstr "Sbloccato questa sessione"
-#: Source/Core/DiscIO/FileBlob.cpp:82
+#: Source/Core/DiscIO/FileBlob.cpp:87
msgid "Unpacking"
msgstr "Apertura"
@@ -12733,59 +13173,59 @@ msgstr "Unsigned 32"
msgid "Unsigned 8"
msgstr "Unsigned 8"
-#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:150
+#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:151
msgid "Unsigned Integer"
msgstr "Unsigned Integer"
#: Source/Core/Core/FreeLookManager.cpp:88
#: Source/Core/Core/HW/WiimoteEmu/Extension/Guitar.cpp:79
#: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:34
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:42
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:43
#: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:20
#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUAccelerometer.cpp:18
#: Source/Core/InputCommon/ControllerEmu/ControllerEmu.h:23
msgid "Up"
msgstr "Su"
-#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:281
+#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:282
#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:369
msgid "Update"
msgstr "Aggiorna"
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:147
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:148
msgid "Update Partition (%1)"
-msgstr "Partizione di Aggiornamento (%1)"
+msgstr "Partizione di aggiornamento (%1)"
-#: Source/Core/DolphinQt/Updater.cpp:76
+#: Source/Core/DolphinQt/Updater.cpp:77
msgid "Update after closing Dolphin"
msgstr "Aggiorna alla chiusura di Dolphin"
-#: Source/Core/DolphinQt/Updater.cpp:59
+#: Source/Core/DolphinQt/Updater.cpp:60
msgid "Update available"
msgstr "Aggiornamento disponibile"
-#: Source/Core/DolphinQt/WiiUpdate.cpp:58
+#: Source/Core/DolphinQt/WiiUpdate.cpp:59
msgid "Update cancelled"
msgstr "Aggiornamento annullato"
-#: Source/Core/DolphinQt/WiiUpdate.cpp:32
-#: Source/Core/DolphinQt/WiiUpdate.cpp:37
+#: Source/Core/DolphinQt/WiiUpdate.cpp:33
+#: Source/Core/DolphinQt/WiiUpdate.cpp:38
msgid "Update completed"
msgstr "Aggiornamento completato"
-#: Source/Core/DolphinQt/WiiUpdate.cpp:42
-#: Source/Core/DolphinQt/WiiUpdate.cpp:47
-#: Source/Core/DolphinQt/WiiUpdate.cpp:52
-#: Source/Core/DolphinQt/WiiUpdate.cpp:64
-#: Source/Core/DolphinQt/WiiUpdate.cpp:71
+#: Source/Core/DolphinQt/WiiUpdate.cpp:43
+#: Source/Core/DolphinQt/WiiUpdate.cpp:48
+#: Source/Core/DolphinQt/WiiUpdate.cpp:53
+#: Source/Core/DolphinQt/WiiUpdate.cpp:65
+#: Source/Core/DolphinQt/WiiUpdate.cpp:72
msgid "Update failed"
msgstr "Aggiornamento fallito"
-#: Source/Core/DolphinQt/WiiUpdate.cpp:97
+#: Source/Core/DolphinQt/WiiUpdate.cpp:98
msgid "Updating"
msgstr "Aggiornando"
-#: Source/Core/DolphinQt/WiiUpdate.cpp:123
+#: Source/Core/DolphinQt/WiiUpdate.cpp:124
msgid ""
"Updating title %1...\n"
"This can take a while."
@@ -12799,13 +13239,13 @@ msgstr "Mantieni posizione verticale"
#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:262
msgid "Upright Toggle"
-msgstr "Attiva/Disattiva posizione verticale"
+msgstr "Attiva/disattiva posizione verticale"
#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:304
msgid "Upright Wii Remote"
msgstr "Wii Remote in posizione verticale"
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:225
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:226
msgid "Usage Statistics Reporting Settings"
msgstr "Impostazioni Report Statistiche d'Uso"
@@ -12814,29 +13254,25 @@ msgid "Use 8.8.8.8 for normal DNS, else enter your custom one"
msgstr ""
"Usa 8.8.8.8 come DNS standard, altrimenti inseriscine uno personalizzato"
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:164
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:165
msgid "Use All Wii Save Data"
-msgstr "Usa Tutti i Salvataggi Wii"
+msgstr "Usa tutti i salvataggi Wii"
-#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:145
+#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:151
msgid "Use Built-In Database of Game Names"
-msgstr "Usa Database Interno per i Nomi dei Giochi"
-
-#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:146
-msgid "Use Custom User Style"
-msgstr "Usa Stile Utente Personalizzato"
+msgstr "Usa database interno per i nomi dei giochi"
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:136
msgid "Use Lossless Codec (FFV1)"
-msgstr "Usa Codec Lossless (FFV1)"
+msgstr "Usa codec lossless (FFV1)"
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:159
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:156
msgid "Use PAL60 Mode (EuRGB60)"
-msgstr "Usa Modalità PAL60 (EuRGB60)"
+msgstr "Usa modalità PAL60 (EuRGB60)"
-#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:170
+#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:174
msgid "Use Panic Handlers"
-msgstr "Avvisi di Errore"
+msgstr "Usa avvisi di errore"
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:385
msgid ""
@@ -12927,21 +13363,17 @@ msgstr ""
#: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:183
msgid "User Config"
-msgstr "Configurazione Utente"
+msgstr "Configurazione utente"
#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:102
msgid "User Interface"
-msgstr "Interfaccia Utente"
+msgstr "Interfaccia utente"
-#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:131
-msgid "User Style:"
-msgstr "Stile Utente:"
-
-#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:309
+#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:328
msgid "User Variables"
-msgstr "Variabili Utente"
+msgstr "Variabili utente"
-#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:311
+#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:330
msgid ""
"User defined variables usable in the control expression.\n"
"You can use them to save or retrieve values between\n"
@@ -12967,7 +13399,7 @@ msgstr ""
"di velocità a seconda del gioco e/o della tua GPU."
"
Nel dubbio, lascia selezionato."
-#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:199
+#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:200
msgid ""
"Uses the entire screen for rendering.
If disabled, a render window "
"will be created instead.
If unsure, leave this "
@@ -12978,7 +13410,7 @@ msgstr ""
"
Nel dubbio, lascia deselezionato."
"dolphin_emphasis>"
-#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:206
+#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:207
msgid ""
"Uses the main Dolphin window for rendering rather than a separate render "
"window.
If unsure, leave this unchecked."
@@ -13016,7 +13448,7 @@ msgstr "Solitamente usato per matrici di coordinate di texture"
msgid "Utility"
msgstr "Utilità"
-#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:60
+#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:61
msgid "V-Sync"
msgstr "V-Sync"
@@ -13028,7 +13460,7 @@ msgstr "Ignora VBI"
msgid "Value"
msgstr "Valore"
-#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:704
+#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:705
msgid "Value tracked to current instruction."
msgstr "Valore tracciato all'istruzione corrente."
@@ -13036,14 +13468,20 @@ msgstr "Valore tracciato all'istruzione corrente."
msgid "Value:"
msgstr "Valore:"
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:533
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:620
msgid "Variant entered is invalid!"
msgstr "La variante inserita non è valida!"
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:502
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:589
msgid "Variant:"
msgstr "Variante:"
+#. i18n: One of the figure types in the Skylanders games. For official translations
+#. in other languages, check the SuperChargers manual at https://support.activision.com/manuals
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:431
+msgid "Vehicle"
+msgstr "Veicolo"
+
#: Source/Core/InputCommon/ControllerEmu/ControlGroup/Tilt.cpp:36
msgid "Velocity"
msgstr "Velocità"
@@ -13056,21 +13494,21 @@ msgstr "Verbosità"
msgid "Verify"
msgstr "Verifica"
-#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:100
+#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:101
msgid "Verify Integrity"
-msgstr "Verifica Integrità"
+msgstr "Verifica integrità"
#: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:412
msgid "Verify certificates"
msgstr "Verifica certificati"
-#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:157
-#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:159
+#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:158
+#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:160
msgid "Verifying"
msgstr "Verifica in corso"
#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:225
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:91
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:92
msgid "Version"
msgstr "Versione"
@@ -13081,30 +13519,30 @@ msgstr "Vertex Rounding"
#. i18n: FOV stands for "Field of view".
#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:245
msgid "Vertical FOV"
-msgstr "FOV Verticale"
+msgstr "FOV verticale"
#. i18n: Refers to a positional offset applied to an emulated wiimote.
#: Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.cpp:39
msgid "Vertical Offset"
-msgstr "Offset Verticale"
+msgstr "Offset verticale"
#: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:214
msgid "Video"
msgstr "Video"
-#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:140
+#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:141
#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:128
msgid "View &code"
msgstr "Visualizza &codice"
-#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:138
+#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:139
#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:127
msgid "View &memory"
msgstr "Visualizza &memoria"
#: Source/Core/InputCommon/ControllerEmu/ControlGroup/ControlGroup.cpp:33
msgid "Virtual Notches"
-msgstr "Tacche Virtuali"
+msgstr "Tacche virtuali"
#: Source/Core/DolphinQt/CheatSearchWidget.cpp:126
msgid "Virtual address space"
@@ -13119,21 +13557,21 @@ msgstr "Volume"
#: Source/Core/Core/HotkeyManager.cpp:42 Source/Core/Core/HotkeyManager.cpp:189
msgid "Volume Down"
-msgstr "Abbassa il Volume"
+msgstr "Abbassa il volume"
#: Source/Core/Core/HotkeyManager.cpp:44 Source/Core/Core/HotkeyManager.cpp:191
msgid "Volume Toggle Mute"
-msgstr "Abilita/Disabilita il Volume"
+msgstr "Abilita/sisabilita il volume"
#: Source/Core/Core/HotkeyManager.cpp:43 Source/Core/Core/HotkeyManager.cpp:190
msgid "Volume Up"
-msgstr "Alza il Volume"
+msgstr "Alza il volume"
#: Source/Core/VideoBackends/Vulkan/VideoBackend.h:18
msgid "Vulkan"
msgstr "Vulkan"
-#: Source/Core/DolphinQt/MenuBar.cpp:1061
+#: Source/Core/DolphinQt/MenuBar.cpp:1043
msgid "WAD files (*.wad)"
msgstr "File WAD (*.wad)"
@@ -13178,7 +13616,7 @@ msgstr ""
"con dati incompleti nella NAND, compresi i relativi file di salvataggio. Se "
"desideri continuare, i seguenti titoli verranno rimossi:."
-#: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuMotionControlIMU.cpp:31
+#: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuMotionControlIMU.cpp:32
msgid ""
"WARNING: The controls under Accelerometer and Gyroscope are designed to "
"interface directly with motion sensor hardware. They are not intended for "
@@ -13190,7 +13628,7 @@ msgstr ""
"sono fatti per essere mappati a pulsanti tradizionali, grilletti o assi. "
"Dovresti configurare sorgenti di input diverse prima di usarli."
-#: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionInput.cpp:34
+#: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionInput.cpp:35
msgid ""
"WARNING: These controls are designed to interface directly with motion "
"sensor hardware. They are not intended for mapping traditional buttons, "
@@ -13204,13 +13642,13 @@ msgstr ""
#: Source/Core/Core/Config/MainSettings.h:23
msgid "WASAPI (Exclusive Mode)"
-msgstr "WASAPI (Modalità Esclusiva)"
+msgstr "WASAPI (modalità esclusiva)"
#: Source/Core/DolphinQt/Settings/PathPane.cpp:231
msgid "WFS Path:"
msgstr "Percorso WFS:"
-#: Source/Core/DolphinQt/ConvertDialog.cpp:352
+#: Source/Core/DolphinQt/ConvertDialog.cpp:353
msgid "WIA GC/Wii images (*.wia)"
msgstr "Immagini WIA GC/Wii (*.wia)"
@@ -13219,7 +13657,7 @@ msgstr "Immagini WIA GC/Wii (*.wia)"
msgid "Waiting for first scan..."
msgstr "In attesa della prima scansione..."
-#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:247
+#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:248
msgid ""
"Waits for all shaders to finish compiling before starting a game. Enabling "
"this option may reduce stuttering or hitching for a short time after the "
@@ -13237,7 +13675,7 @@ msgstr ""
"
Altrimenti, nel dubbio, lascia disattivato."
"dolphin_emphasis>"
-#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:215
+#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:216
msgid ""
"Waits for vertical blanks in order to prevent tearing.
Decreases "
"performance if emulation speed is below 100%.
If "
@@ -13266,14 +13704,14 @@ msgstr ""
#: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:124
#: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:131
#: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:47
-#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:215
-#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:231
-#: Source/Core/DolphinQt/MenuBar.cpp:1505
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:469
+#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:216
+#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:232
+#: Source/Core/DolphinQt/MenuBar.cpp:1492
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:471
msgid "Warning"
msgstr "Attenzione"
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:122
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:123
msgid ""
"Warning: A GCI folder override path is currently configured for this slot. "
"Adjusting the GCI path here will have no effect."
@@ -13374,11 +13812,11 @@ msgstr "Espressione di controllo"
#. i18n: One of the elements in the Skylanders games. Japanese: 水. For official translations
#. in other languages, check the SuperChargers manual at https://support.activision.com/manuals
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:327
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:343
msgid "Water"
msgstr "Acqua"
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:91
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:92
msgid "Website"
msgstr "Website"
@@ -13415,13 +13853,13 @@ msgstr ""
"Detection Arbitraria' è abilitato in Miglioramenti."
"
Nel dubbio, lascia selezionato."
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:341
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:340
msgid "Whitelisted USB Passthrough Devices"
-msgstr "Dispositivi USB Ponte Accettati"
+msgstr "Dispositivi USB ponte accettati"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:114
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:149
msgid "Widescreen Hack"
-msgstr "Hack Widescreen"
+msgstr "Hack widescreen"
#: Source/Core/Core/HotkeyManager.cpp:341
#: Source/Core/DolphinQt/Config/Mapping/HotkeyWii.cpp:20
@@ -13447,45 +13885,45 @@ msgstr "Wii Remote"
#: Source/Core/DolphinQt/Config/Mapping/HotkeyControllerProfile.cpp:26
#: Source/Core/DolphinQt/Config/Mapping/HotkeyControllerProfile.cpp:31
#: Source/Core/DolphinQt/Config/Mapping/HotkeyControllerProfile.cpp:36
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:428
-#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:137
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:430
+#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:138
#: Source/Core/DolphinQt/NetPlay/PadMappingDialog.cpp:43
msgid "Wii Remote %1"
msgstr "Wii Remote %1"
-#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:111
+#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:112
msgid "Wii Remote Accelerometer"
msgstr "Accelerometro Wii Remote"
-#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:269
+#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:270
msgid "Wii Remote Buttons"
msgstr "Pulsanti Wii Remote"
-#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:144
+#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:145
msgid "Wii Remote Gyroscope"
msgstr "Giroscopio Wii Remote"
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:349
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:348
msgid "Wii Remote Settings"
msgstr "Impostazioni Wii Remote"
-#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:101
+#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:102
msgid "Wii Remotes"
msgstr "Wii Remote"
-#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:412
+#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:419
msgid "Wii TAS Input %1 - Classic Controller"
msgstr "Wii TAS Input %1 - Classic Controller"
-#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:427
+#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:438
msgid "Wii TAS Input %1 - Wii Remote"
msgstr "Wii TAS Input %1 - Wii Remote"
-#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:397
+#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:398
msgid "Wii TAS Input %1 - Wii Remote + Nunchuk"
msgstr "Wii TAS Input %1 - Wii Remote + Nunchuk"
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:451
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:453
msgid "Wii and Wii Remote"
msgstr "Wii e Wii Remote"
@@ -13493,30 +13931,30 @@ msgstr "Wii e Wii Remote"
msgid "Wii data is not public yet"
msgstr "Dati Wii non ancora pubblici"
-#: Source/Core/DolphinQt/MenuBar.cpp:1082
+#: Source/Core/DolphinQt/MenuBar.cpp:1064
msgid "Wii save files (*.bin);;All Files (*)"
-msgstr "File di salvataggio Wii (*.bin);;Tutti i File (*)"
+msgstr "File di salvataggio Wii (*.bin);;Tutti i file (*)"
-#: Source/Core/DolphinQt/MenuBar.cpp:74
+#: Source/Core/DolphinQt/MenuBar.cpp:75
msgid "WiiTools Signature MEGA File"
msgstr "File WIITools Signature MEGA"
-#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:194
+#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:198
msgid ""
"Will lock the Mouse Cursor to the Render Widget as long as it has focus. You "
"can set a hotkey to unlock it."
msgstr ""
-"Bloccherà il Cursore del Mouse sul widget di render fintantoché avrà il "
+"Bloccherà il cursore del mouse sul widget di render fintantoché avrà il "
"focus. Puoi impostare un hotkey per sbloccarlo."
#: Source/Core/DolphinQt/Config/Mapping/HotkeyGBA.cpp:25
-#: Source/Core/DolphinQt/GBAWidget.cpp:431
+#: Source/Core/DolphinQt/GBAWidget.cpp:432
msgid "Window Size"
-msgstr "Dimensioni Finestra"
+msgstr "Dimensioni finestra"
#: Source/Core/DolphinQt/Config/LogWidget.cpp:134
msgid "Word Wrap"
-msgstr "Adatta Testo"
+msgstr "Adatta testo"
#: Source/Core/DiscIO/Enums.cpp:60
msgid "World"
@@ -13536,46 +13974,46 @@ msgstr "Sola scrittura"
#: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:56
msgid "Write to Console"
-msgstr "Scrivi nella Console"
+msgstr "Scrivi su console"
#: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:55
msgid "Write to File"
-msgstr "Scrivi su File"
+msgstr "Scrivi su file"
#. i18n: This is a selectable action when adding a breakpoint
#: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:141
msgid "Write to Log"
-msgstr "Scrivi su Log"
+msgstr "Scrivi su log"
#. i18n: This is a selectable action when adding a breakpoint
#: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:145
msgid "Write to Log and Break"
-msgstr "Scrivi su Log e Interrompi"
+msgstr "Scrivi su log e interrompi"
#: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:57
msgid "Write to Window"
-msgstr "Scrivi in Finestra"
+msgstr "Scrivi su finestra"
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:644
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:646
msgid "Wrong disc number"
msgstr "Numero del disco errato"
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:640
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:642
msgid "Wrong hash"
msgstr "Hash errato"
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:648
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:650
msgid "Wrong region"
msgstr "Regione errata"
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:646
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:648
msgid "Wrong revision"
msgstr "Revisione errata"
#. i18n: Refers to a 3D axis (used when mapping motion controls)
-#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:121
-#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:161
-#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:188
+#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:122
+#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:162
+#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:189
#: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:129
msgid "X"
msgstr "X"
@@ -13586,23 +14024,23 @@ msgstr "Registro XF"
#: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:67
msgid "XLink Kai BBA Destination Address"
-msgstr "Indirizzo Destinazione XLink Kai BBA"
+msgstr "Indirizzo destinazione XLink Kai BBA"
#. i18n: Refers to a 3D axis (used when mapping motion controls)
-#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:127
-#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:167
-#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:194
+#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:128
+#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:168
+#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:195
#: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:131
msgid "Y"
msgstr "Y"
#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUGyroscope.cpp:33
msgid "Yaw Left"
-msgstr "Imbardata a Sinistra"
+msgstr "Imbardata a sinistra"
#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUGyroscope.cpp:34
msgid "Yaw Right"
-msgstr "Imbardata a Destra"
+msgstr "Imbardata a destra"
#: Source/Core/Core/HW/WiimoteEmu/Extension/Drums.cpp:35
#: Source/Core/Core/HW/WiimoteEmu/Extension/Guitar.cpp:51
@@ -13617,9 +14055,9 @@ msgstr "Sì"
#: qtbase/src/gui/kernel/qplatformtheme.cpp:718
msgid "Yes to &All"
-msgstr "Sì a &Tutto"
+msgstr "Sì a &tutto"
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:299
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:297
msgid ""
"You are about to convert the content of the file at %2 into the folder at "
"%1. All current content of the folder will be deleted. Are you sure you want "
@@ -13628,7 +14066,7 @@ msgstr ""
"Stai per convertire il contenuto del file %2 nella cartella %1. Il contenuto "
"corrente della cartella verrà eliminato. Sei sicuro di voler continuare?"
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:275
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:272
msgid ""
"You are about to convert the content of the folder at %1 into the file at "
"%2. All current content of the file will be deleted. Are you sure you want "
@@ -13637,7 +14075,7 @@ msgstr ""
"Stai per convertire il contenuto del della cartella %1 nel file %2. Il "
"contenuto corrente del file verrà eliminato. Sei sicuro di voler continuare?"
-#: Source/Core/DolphinQt/NKitWarningDialog.cpp:36
+#: Source/Core/DolphinQt/NKitWarningDialog.cpp:39
msgid ""
"You are about to run an NKit disc image. NKit disc images cause problems "
"that don't happen with normal disc images. These problems include:\n"
@@ -13722,15 +14160,15 @@ msgstr ""
"Consulta la guida all'uso della NAND per ulteriori informazioni: https://"
"dolphin-emu.org/docs/guides/nand-usage-guide/"
-#: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:232
+#: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:229
msgid "You have to enter a name."
msgstr "Devi inserire un nome."
-#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:340
+#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:338
msgid "You must provide a name for your session!"
msgstr "Devi inserire un nome per la tua sessione!"
-#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:348
+#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:346
msgid "You must provide a region for your session!"
msgstr "Devi indicare una regione per la tua sessione!"
@@ -13738,7 +14176,7 @@ msgstr "Devi indicare una regione per la tua sessione!"
msgid "You must restart Dolphin in order for the change to take effect."
msgstr "È necessario riavviare Dolphin affinché le modifiche abbiano effetto."
-#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:334
+#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:332
msgid "You must select a game to host!"
msgstr "Devi scegliere un gioco da avviare!"
@@ -13762,23 +14200,25 @@ msgstr ""
"Vuoi terminare l'emulazione per correggere il problema?\n"
"Se selezioni \"No\", l'audio potrebbe risultare ingarbugliato."
-#: Source/Core/DolphinQt/MenuBar.cpp:1165
+#: Source/Core/DolphinQt/MenuBar.cpp:1147
msgid ""
"Your NAND contains more data than allowed. Wii software may behave "
"incorrectly or not allow saving."
msgstr ""
+"La tua NAND contiene più dati di quelli permessi. Il software Wii potrebbe "
+"comportarsi erronamente o non permettere il salvataggio."
#. i18n: Refers to a 3D axis (used when mapping motion controls)
-#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:133
-#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:173
-#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:200
+#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:134
+#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:174
+#: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:201
#: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:133
msgid "Z"
msgstr "Z"
#: Source/Core/Core/ActionReplay.cpp:941
msgid "Zero 3 code not supported"
-msgstr "Zero 3 codice non supportato"
+msgstr "Codice Zero 3 non supportato"
#: Source/Core/Core/ActionReplay.cpp:961
msgid "Zero code unknown to Dolphin: {0:08x}"
@@ -13792,7 +14232,7 @@ msgstr "[%1, %2]"
msgid "[%1, %2] and [%3, %4]"
msgstr "[%1, %2] e [%3, %4]"
-#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:273
+#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:292
msgid "^ Xor"
msgstr "^ Xor"
@@ -13815,23 +14255,23 @@ msgstr "auto"
msgid "cm"
msgstr "cm"
-#: Source/Core/VideoBackends/D3D12/DX12Context.cpp:107
+#: Source/Core/VideoBackends/D3D12/DX12Context.cpp:108
msgid "d3d12.dll could not be loaded."
msgstr "Impossibile caricare d3d12.dll."
-#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:617
-#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:637
+#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:635
+#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:655
msgid "default"
msgstr "default"
-#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:639
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:385
+#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:657
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:387
msgid "disconnected"
msgstr "disconnesso"
-#: Source/Core/DolphinQt/GBAWidget.cpp:191
+#: Source/Core/DolphinQt/GBAWidget.cpp:192
msgid "e-Reader Cards (*.raw);;All Files (*)"
-msgstr "Carte e-Reader (*.raw);;Tutti i File (*)"
+msgstr "Carte e-Reader (*.raw);;Tutti i file (*)"
#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:187
msgid "errno"
@@ -13839,7 +14279,7 @@ msgstr "errno"
#: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:96
msgid "fake-completion"
-msgstr "esecuzione finta"
+msgstr "completamento-finto"
#: Source/Core/DolphinQt/CheatSearchWidget.cpp:183
msgid "is equal to"
@@ -13875,7 +14315,7 @@ msgstr "ultimo valore"
msgid "m/s"
msgstr "m/s"
-#: Source/Core/DolphinQt/GBAWidget.cpp:214
+#: Source/Core/DolphinQt/GBAWidget.cpp:215
msgid ""
"mGBA Save States (*.ss0 *.ss1 *.ss2 *.ss3 *.ss4 *.ss5 *.ss6 *.ss7 *.ss8 *."
"ss9);;All Files (*)"
@@ -13887,13 +14327,13 @@ msgstr ""
msgid "none"
msgstr "inattivo"
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:186
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:228
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:187
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:229
msgid "off"
msgstr "off"
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:186
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:228
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:187
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:229
msgid "on"
msgstr "su"
@@ -13941,14 +14381,13 @@ msgstr "{0} (NKit)"
#: Source/Core/Core/Boot/Boot.cpp:431
msgid "{0} IPL found in {1} directory. The disc might not be recognized"
msgstr ""
-"{0} IPL trovato nella directory {1}. Il disco potrebbe non venire "
-"riconosciuto"
+"{0} IPL trovato nella cartella {1}. Il disco potrebbe non venire riconosciuto"
-#: Source/Core/Core/NetPlayServer.cpp:1226
+#: Source/Core/Core/NetPlayServer.cpp:1230
msgid "{0} failed to synchronize codes."
msgstr "{0} ha fallito la sincronizzazione dei codici."
-#: Source/Core/Core/NetPlayServer.cpp:1168
+#: Source/Core/Core/NetPlayServer.cpp:1172
msgid "{0} failed to synchronize."
msgstr "{0} ha fallito la sincronizzazione."
@@ -13957,20 +14396,20 @@ msgid ""
"{0} is not a directory, failed to move to *.original.\n"
" Verify your write permissions or move the file outside of Dolphin"
msgstr ""
-"{0} non è una directory, ed è stato impossibile spostare in *.original.\n"
+"{0} non è una cartella, ed è stato impossibile spostare in *.original.\n"
" Si prega di verificare i permessi di scrittura o di spostare il file al di "
"fuori di Dolphin"
-#: Source/Core/DiscIO/CompressedBlob.cpp:260
-#: Source/Core/DiscIO/WIABlob.cpp:1697
+#: Source/Core/DiscIO/CompressedBlob.cpp:265
+#: Source/Core/DiscIO/WIABlob.cpp:1703
msgid "{0} of {1} blocks. Compression ratio {2}%"
msgstr "{0} blocchi su {1}. Rapporto di compressione {2}%"
#: Source/Core/Core/HW/EXI/EXI_DeviceMemoryCard.cpp:200
msgid "{0} was not a directory, moved to *.original"
-msgstr "{0} non è una directory, spostato in *.original"
+msgstr "{0} non è una cartella, spostato in *.original"
-#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:275
+#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:294
msgid "| Or"
msgstr "| Or"
@@ -14007,8 +14446,8 @@ msgstr "°/s"
#: Source/Core/DolphinQt/DiscordJoinRequestDialog.cpp:53
msgid "✔ Invite"
-msgstr "✔ Invita"
+msgstr "✔ invita"
#: Source/Core/DolphinQt/DiscordJoinRequestDialog.cpp:54
msgid "✖ Decline"
-msgstr "✖ Rifiuta"
+msgstr "✖ rifiuta"
diff --git a/Languages/po/ja.po b/Languages/po/ja.po
index 1ffe6922c0..df40947515 100644
--- a/Languages/po/ja.po
+++ b/Languages/po/ja.po
@@ -18,7 +18,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Dolphin Emulator\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-08-01 21:06+0200\n"
+"POT-Creation-Date: 2023-11-15 21:18+0100\n"
"PO-Revision-Date: 2013-01-23 13:48+0000\n"
"Last-Translator: DanbSky , 2015-2022\n"
"Language-Team: Japanese (http://app.transifex.com/delroth/dolphin-emu/"
@@ -57,7 +57,7 @@ msgstr ""
msgid " (Disc %1)"
msgstr "(ディスク %1)"
-#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:264
+#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:283
msgid "! Not"
msgstr "! Not(否定)"
@@ -66,7 +66,7 @@ msgid "\"{0}\" is an invalid GCM/ISO file, or is not a GC/Wii ISO."
msgstr ""
"\"{0}\" は無効なファイル、またはゲームキューブ/Wii のISOではありません"
-#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:276
+#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:295
msgid "$ User Variable"
msgstr ""
@@ -79,7 +79,7 @@ msgstr ""
#: Source/Core/Core/HW/WiimoteEmu/Extension/Drums.cpp:71
#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:292
#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:298
-#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:333
+#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:352
#: Source/Core/InputCommon/ControllerEmu/ControlGroup/AnalogStick.cpp:105
#: Source/Core/InputCommon/ControllerEmu/ControlGroup/ControlGroup.cpp:45
#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUCursor.cpp:46
@@ -87,7 +87,7 @@ msgstr ""
msgid "%"
msgstr "%"
-#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:267
+#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:286
msgid "% Modulo"
msgstr "% Modulo(剰余)"
@@ -112,14 +112,14 @@ msgstr "%1 %2"
msgid "%1 %2 %3"
msgstr "%1 %2 %3"
-#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:80
+#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:81
#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:167
msgid "%1 (%2)"
msgstr "%1 (%2)"
#. i18n: If there is a pre-defined patch with the name %1 and the user wants to edit it,
#. a copy of it gets created with this name
-#: Source/Core/DolphinQt/Config/PatchesWidget.cpp:98
+#: Source/Core/DolphinQt/Config/PatchesWidget.cpp:105
msgid "%1 (Copy)"
msgstr "%1 (コピー)"
@@ -132,7 +132,7 @@ msgid "%1 (Revision %3)"
msgstr "%1 (リビジョン %3)"
#. i18n: "Stock" refers to input profiles included with Dolphin
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:509
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:511
msgid "%1 (Stock)"
msgstr ""
@@ -146,7 +146,7 @@ msgstr "%1(推奨)"
msgid "%1 (slow)"
msgstr "%1(低速)"
-#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:317
+#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:313
msgid ""
"%1 FIFO bytes\n"
"%2 memory bytes\n"
@@ -160,11 +160,11 @@ msgstr ""
msgid "%1 Graphics Configuration"
msgstr "%1 グラフィック設定"
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:308
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:298
msgid "%1 MB (MEM1)"
msgstr "%1 MB (MEM1)"
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:322
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:312
msgid "%1 MB (MEM2)"
msgstr "%1 MB (MEM2)"
@@ -172,11 +172,11 @@ msgstr "%1 MB (MEM2)"
msgid "%1 doesn't support this feature on your system."
msgstr "%1 はあなたのシステム上でこの機能をサポートしていません"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:253
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:292
msgid "%1 doesn't support this feature."
msgstr "%1 はこの機能をサポートしていません"
-#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:297
+#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:293
msgid ""
"%1 frame(s)\n"
"%2 object(s)\n"
@@ -186,43 +186,47 @@ msgstr ""
"%2 オブジェクト\n"
"現在のフレーム: %3"
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:910
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:912
msgid "%1 has joined"
msgstr "%1 が入室しました"
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:915
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:917
msgid "%1 has left"
msgstr "%1 が退室しました"
-#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:120
+#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:169
msgid ""
"%1 has unlocked %2/%3 achievements (%4 hardcore) worth %5/%6 points (%7 "
"hardcore)"
msgstr ""
-#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:131
+#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:180
msgid "%1 has unlocked %2/%3 achievements worth %4/%5 points"
msgstr ""
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1108
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1110
msgid "%1 is not a valid ROM"
msgstr ""
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1037
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1039
msgid "%1 is now golfing"
msgstr "%1 がゴルフ中"
+#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:136
+msgid "%1 is playing %2"
+msgstr ""
+
#: Source/Core/DolphinQt/CheatSearchWidget.cpp:112
msgid "%1 memory ranges"
msgstr "%1 memory ranges"
-#: Source/Core/DolphinQt/Settings/AudioPane.cpp:254
-#: Source/Core/DolphinQt/Settings/AudioPane.cpp:323
+#: Source/Core/DolphinQt/Settings/AudioPane.cpp:251
+#: Source/Core/DolphinQt/Settings/AudioPane.cpp:320
msgid "%1 ms"
msgstr "%1 ms"
-#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:86
-#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:55
+#: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:155
+#: Source/Core/DolphinQt/Achievements/AchievementProgressWidget.cpp:101
msgid "%1 points"
msgstr ""
@@ -234,30 +238,30 @@ msgstr "%1 個のセッションを発見"
msgid "%1 sessions found"
msgstr "%1 個のセッションを発見"
-#: Source/Core/DolphinQt/Settings/AudioPane.cpp:408
+#: Source/Core/DolphinQt/Settings/AudioPane.cpp:405
msgid "%1%"
msgstr ""
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:292
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:281
msgid "%1% (%2 MHz)"
msgstr "%1% (%2 MHz)"
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:170
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:171
msgid "%1% (Normal Speed)"
msgstr "%1% (標準)"
#. i18n: One of the options shown below "Run until (ignoring breakpoints)"
-#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:633
+#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:634
msgid "%1's value is changed"
msgstr "%1's value is changed"
#. i18n: One of the options shown below "Run until (ignoring breakpoints)"
-#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:627
+#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:628
msgid "%1's value is hit"
msgstr "%1's value is hit"
#. i18n: One of the options shown below "Run until (ignoring breakpoints)"
-#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:630
+#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:631
msgid "%1's value is used"
msgstr "%1's value is used"
@@ -265,7 +269,7 @@ msgstr "%1's value is used"
msgid "%1, %2, %3, %4"
msgstr "%1, %2, %3, %4"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:605
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:606
msgid "%1: %2"
msgstr ""
@@ -281,16 +285,20 @@ msgstr "%1[%2]: %3 %"
msgid "%1[%2]: %3/%4 MiB"
msgstr "%1[%2]: %3/%4 MiB"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:286
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:325
#, c-format
msgid "%1x MSAA"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:78
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:94
msgid "%1x Native (%2x%3)"
msgstr "%1x Native (%2x%3)"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:298
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:99
+msgid "%1x Native (%2x%3) for %4"
+msgstr ""
+
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:337
#, c-format
msgid "%1x SSAA"
msgstr ""
@@ -314,27 +322,27 @@ msgctxt ""
msgid "%n address(es) were removed."
msgstr "%n address(es) were removed."
-#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:272
+#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:291
msgid "& And"
msgstr "& And(論理積)"
-#: Source/Core/DolphinQt/GBAWidget.cpp:432
+#: Source/Core/DolphinQt/GBAWidget.cpp:433
msgid "&1x"
msgstr "&1x"
-#: Source/Core/DolphinQt/GBAWidget.cpp:434
+#: Source/Core/DolphinQt/GBAWidget.cpp:435
msgid "&2x"
msgstr "&2x"
-#: Source/Core/DolphinQt/GBAWidget.cpp:436
+#: Source/Core/DolphinQt/GBAWidget.cpp:437
msgid "&3x"
msgstr "&3x"
-#: Source/Core/DolphinQt/GBAWidget.cpp:438
+#: Source/Core/DolphinQt/GBAWidget.cpp:439
msgid "&4x"
msgstr "&4x"
-#: Source/Core/DolphinQt/MenuBar.cpp:616
+#: Source/Core/DolphinQt/MenuBar.cpp:608
msgid "&About"
msgstr "Dolphinについて(&A)"
@@ -342,85 +350,85 @@ msgstr "Dolphinについて(&A)"
msgid "&Add Memory Breakpoint"
msgstr "&Add Memory Breakpoint"
-#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:58
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:83
+#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:59
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:84
msgid "&Add New Code..."
msgstr "コードを追加...(&A)"
-#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:593
+#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:594
msgid "&Add function"
msgstr "&Add function"
-#: Source/Core/DolphinQt/Config/PatchesWidget.cpp:43
+#: Source/Core/DolphinQt/Config/PatchesWidget.cpp:44
msgid "&Add..."
msgstr "追加...(&A)"
-#: Source/Core/DolphinQt/MenuBar.cpp:542
+#: Source/Core/DolphinQt/MenuBar.cpp:534
msgid "&Audio Settings"
msgstr "サウンド設定(&A)"
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:190
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:191
msgid "&Auto Update:"
msgstr "自動更新(&A)"
-#: Source/Core/DolphinQt/MenuBar.cpp:558
+#: Source/Core/DolphinQt/MenuBar.cpp:550
msgid "&Automatic Start"
msgstr "&Automatic Start"
-#: Source/Core/DolphinQt/GBAWidget.cpp:441
+#: Source/Core/DolphinQt/GBAWidget.cpp:442
msgid "&Borderless Window"
msgstr "ボーダレス ウィンドウ(&B)"
-#: Source/Core/DolphinQt/MenuBar.cpp:474
+#: Source/Core/DolphinQt/MenuBar.cpp:466
msgid "&Breakpoints"
msgstr "&Breakpoints"
-#: Source/Core/DolphinQt/MenuBar.cpp:599
+#: Source/Core/DolphinQt/MenuBar.cpp:591
msgid "&Bug Tracker"
msgstr "バグトラッカー(&B)"
-#: Source/Core/DolphinQt/WiiUpdate.cpp:104
+#: Source/Core/DolphinQt/WiiUpdate.cpp:105
msgid "&Cancel"
msgstr "キャンセル(&C)"
-#: Source/Core/DolphinQt/MenuBar.cpp:226
+#: Source/Core/DolphinQt/MenuBar.cpp:218
msgid "&Cheats Manager"
msgstr "チートマネージャ(&C)"
-#: Source/Core/DolphinQt/MenuBar.cpp:609
+#: Source/Core/DolphinQt/MenuBar.cpp:601
msgid "&Check for Updates..."
msgstr "Dolphinのアップデート(&C)"
-#: Source/Core/DolphinQt/MenuBar.cpp:982
+#: Source/Core/DolphinQt/MenuBar.cpp:964
msgid "&Clear Symbols"
msgstr "&Clear Symbols"
-#: Source/Core/DolphinQt/Config/PatchesWidget.cpp:162
+#: Source/Core/DolphinQt/Config/PatchesWidget.cpp:175
msgid "&Clone..."
msgstr "クローン(&C)..."
-#: Source/Core/DolphinQt/MenuBar.cpp:439
+#: Source/Core/DolphinQt/MenuBar.cpp:431
msgid "&Code"
msgstr "&Code"
-#: Source/Core/DolphinQt/GBAWidget.cpp:386
+#: Source/Core/DolphinQt/GBAWidget.cpp:387
msgid "&Connected"
msgstr "接続(&C)"
-#: Source/Core/DolphinQt/MenuBar.cpp:544
+#: Source/Core/DolphinQt/MenuBar.cpp:536
msgid "&Controller Settings"
msgstr "コントローラ設定(&C)"
-#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:569
+#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:570
msgid "&Copy address"
msgstr "&Copy address"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:136
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:137
msgid "&Create..."
msgstr "作成(&C)"
#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:457
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:112
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:113
msgid "&Delete"
msgstr "削除(&D)"
@@ -436,21 +444,21 @@ msgstr "&Delete Watch"
msgid "&Delete Watches"
msgstr ""
-#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:59
-#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:179
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:84
+#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:60
+#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:180
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:85
msgid "&Edit Code..."
msgstr "コードを編集...(&E)"
-#: Source/Core/DolphinQt/Config/PatchesWidget.cpp:162
+#: Source/Core/DolphinQt/Config/PatchesWidget.cpp:175
msgid "&Edit..."
msgstr "編集...(&E)"
-#: Source/Core/DolphinQt/MenuBar.cpp:206
+#: Source/Core/DolphinQt/MenuBar.cpp:198
msgid "&Eject Disc"
msgstr "ディスクの取り出し(&E)"
-#: Source/Core/DolphinQt/MenuBar.cpp:317
+#: Source/Core/DolphinQt/MenuBar.cpp:309
msgid "&Emulation"
msgstr "エミュレーション(&E)"
@@ -458,39 +466,39 @@ msgstr "エミュレーション(&E)"
msgid "&Export"
msgstr "&Export"
-#: Source/Core/DolphinQt/GBAWidget.cpp:413
+#: Source/Core/DolphinQt/GBAWidget.cpp:414
msgid "&Export Save Game..."
msgstr "セーブファイルのエクスポート...(&E)"
-#: Source/Core/DolphinQt/GBAWidget.cpp:421
+#: Source/Core/DolphinQt/GBAWidget.cpp:422
msgid "&Export State..."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:116
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:117
msgid "&Export as .gci..."
msgstr "GCI形式でエクスポート..."
-#: Source/Core/DolphinQt/MenuBar.cpp:196
+#: Source/Core/DolphinQt/MenuBar.cpp:188
msgid "&File"
msgstr "ファイル(&F)"
-#: Source/Core/DolphinQt/MenuBar.cpp:571
+#: Source/Core/DolphinQt/MenuBar.cpp:563
msgid "&Font..."
msgstr "&Font..."
-#: Source/Core/DolphinQt/MenuBar.cpp:323
+#: Source/Core/DolphinQt/MenuBar.cpp:315
msgid "&Frame Advance"
msgstr "Frame Advance(&F)"
-#: Source/Core/DolphinQt/MenuBar.cpp:546
+#: Source/Core/DolphinQt/MenuBar.cpp:538
msgid "&Free Look Settings"
msgstr "フリールックの設定(&F)"
-#: Source/Core/DolphinQt/MenuBar.cpp:984
+#: Source/Core/DolphinQt/MenuBar.cpp:966
msgid "&Generate Symbols From"
msgstr "&Generate Symbols From"
-#: Source/Core/DolphinQt/MenuBar.cpp:595
+#: Source/Core/DolphinQt/MenuBar.cpp:587
msgid "&GitHub Repository"
msgstr "GitHub リポジトリ(&G)"
@@ -498,15 +506,15 @@ msgstr "GitHub リポジトリ(&G)"
msgid "&Go to start of function"
msgstr "&Go to start of function"
-#: Source/Core/DolphinQt/MenuBar.cpp:541
+#: Source/Core/DolphinQt/MenuBar.cpp:533
msgid "&Graphics Settings"
msgstr "グラフィック設定(&G)"
-#: Source/Core/DolphinQt/MenuBar.cpp:586
+#: Source/Core/DolphinQt/MenuBar.cpp:578
msgid "&Help"
msgstr "ヘルプ(&H)"
-#: Source/Core/DolphinQt/MenuBar.cpp:545
+#: Source/Core/DolphinQt/MenuBar.cpp:537
msgid "&Hotkey Settings"
msgstr "ホットキーのカスタマイズ(&H)"
@@ -514,31 +522,31 @@ msgstr "ホットキーのカスタマイズ(&H)"
msgid "&Import"
msgstr "&Import"
-#: Source/Core/DolphinQt/GBAWidget.cpp:410
+#: Source/Core/DolphinQt/GBAWidget.cpp:411
msgid "&Import Save Game..."
msgstr "セーブファイルのインポート...(&I)"
-#: Source/Core/DolphinQt/GBAWidget.cpp:418
+#: Source/Core/DolphinQt/GBAWidget.cpp:419
msgid "&Import State..."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:126
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:127
msgid "&Import..."
msgstr "インポート...(&I)"
-#: Source/Core/DolphinQt/MenuBar.cpp:232
+#: Source/Core/DolphinQt/MenuBar.cpp:224
msgid "&Infinity Base"
msgstr ""
-#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:595
+#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:596
msgid "&Insert blr"
msgstr "&Insert blr"
-#: Source/Core/DolphinQt/GBAWidget.cpp:451
+#: Source/Core/DolphinQt/GBAWidget.cpp:452
msgid "&Interframe Blending"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:499
+#: Source/Core/DolphinQt/MenuBar.cpp:491
msgid "&JIT"
msgstr "&JIT"
@@ -546,11 +554,11 @@ msgstr "&JIT"
msgid "&Language:"
msgstr "UIの言語(&L):"
-#: Source/Core/DolphinQt/MenuBar.cpp:340
+#: Source/Core/DolphinQt/MenuBar.cpp:332
msgid "&Load State"
msgstr "ステートロード(&L)"
-#: Source/Core/DolphinQt/MenuBar.cpp:990
+#: Source/Core/DolphinQt/MenuBar.cpp:972
msgid "&Load Symbol Map"
msgstr "&Load Symbol Map"
@@ -564,23 +572,23 @@ msgstr "&Load file to current address"
msgid "&Lock Watches"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:431
+#: Source/Core/DolphinQt/MenuBar.cpp:423
msgid "&Lock Widgets In Place"
msgstr "ツールバーの位置を固定(&L)"
-#: Source/Core/DolphinQt/MenuBar.cpp:483
+#: Source/Core/DolphinQt/MenuBar.cpp:475
msgid "&Memory"
msgstr "&Memory"
-#: Source/Core/DolphinQt/MenuBar.cpp:745
+#: Source/Core/DolphinQt/MenuBar.cpp:737
msgid "&Movie"
msgstr "記録(&M)"
-#: Source/Core/DolphinQt/GBAWidget.cpp:424
+#: Source/Core/DolphinQt/GBAWidget.cpp:425
msgid "&Mute"
msgstr "ミュート(&M)"
-#: Source/Core/DolphinQt/MenuBar.cpp:491
+#: Source/Core/DolphinQt/MenuBar.cpp:483
msgid "&Network"
msgstr "&Network"
@@ -588,82 +596,82 @@ msgstr "&Network"
msgid "&No"
msgstr "いいえ(&N)"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:135
-#: Source/Core/DolphinQt/MenuBar.cpp:198 Source/Core/DolphinQt/MenuBar.cpp:200
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:136
+#: Source/Core/DolphinQt/MenuBar.cpp:190 Source/Core/DolphinQt/MenuBar.cpp:192
msgid "&Open..."
msgstr "開く(&O)"
-#: Source/Core/DolphinQt/MenuBar.cpp:532
+#: Source/Core/DolphinQt/MenuBar.cpp:524
msgid "&Options"
msgstr "設定(&O)"
-#: Source/Core/DolphinQt/MenuBar.cpp:1010
+#: Source/Core/DolphinQt/MenuBar.cpp:992
msgid "&Patch HLE Functions"
msgstr "&Patch HLE Functions"
-#: Source/Core/DolphinQt/MenuBar.cpp:319
+#: Source/Core/DolphinQt/MenuBar.cpp:311
msgid "&Pause"
msgstr "一時停止(&P)"
-#: Source/Core/DolphinQt/MenuBar.cpp:318
+#: Source/Core/DolphinQt/MenuBar.cpp:310
msgid "&Play"
msgstr "開始(&P)"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:399
+#: Source/Core/DolphinQt/GameList/GameList.cpp:400
msgid "&Properties"
msgstr "プロパティ(&P)"
-#: Source/Core/DolphinQt/MenuBar.cpp:760
+#: Source/Core/DolphinQt/MenuBar.cpp:752
msgid "&Read-Only Mode"
msgstr "読み込み専用(&R)"
-#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:66
+#: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:67
msgid "&Refresh List"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:447
+#: Source/Core/DolphinQt/MenuBar.cpp:439
msgid "&Registers"
msgstr "&Registers"
-#: Source/Core/DolphinQt/Config/PatchesWidget.cpp:45
+#: Source/Core/DolphinQt/Config/PatchesWidget.cpp:46
msgid "&Remove"
msgstr "削除(&R)"
-#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:60
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:85
+#: Source/Core/DolphinQt/Config/ARCodeWidget.cpp:61
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:86
msgid "&Remove Code"
msgstr "コードを削除(&R)"
-#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:584
+#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:585
msgid "&Rename symbol"
msgstr "&Rename symbol"
-#: Source/Core/DolphinQt/GBAWidget.cpp:404
-#: Source/Core/DolphinQt/MenuBar.cpp:321
+#: Source/Core/DolphinQt/GBAWidget.cpp:405
+#: Source/Core/DolphinQt/MenuBar.cpp:313
msgid "&Reset"
msgstr "リセット(&R)"
-#: Source/Core/DolphinQt/MenuBar.cpp:223
+#: Source/Core/DolphinQt/MenuBar.cpp:215
msgid "&Resource Pack Manager"
msgstr "リソースパックマネージャー(&R)"
-#: Source/Core/DolphinQt/MenuBar.cpp:991
+#: Source/Core/DolphinQt/MenuBar.cpp:973
msgid "&Save Symbol Map"
msgstr "&Save Symbol Map"
-#: Source/Core/DolphinQt/GBAWidget.cpp:400
+#: Source/Core/DolphinQt/GBAWidget.cpp:401
msgid "&Scan e-Reader Card(s)..."
msgstr "カードeのスキャン...(&S)"
-#: Source/Core/DolphinQt/MenuBar.cpp:231
+#: Source/Core/DolphinQt/MenuBar.cpp:223
msgid "&Skylanders Portal"
msgstr ""
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:175
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:176
msgid "&Speed Limit:"
msgstr "速度制限(&S):"
-#: Source/Core/DolphinQt/MenuBar.cpp:320
+#: Source/Core/DolphinQt/MenuBar.cpp:312
msgid "&Stop"
msgstr "停止(&S)"
@@ -671,15 +679,15 @@ msgstr "停止(&S)"
msgid "&Theme:"
msgstr "テーマ(&T):"
-#: Source/Core/DolphinQt/MenuBar.cpp:456
+#: Source/Core/DolphinQt/MenuBar.cpp:448
msgid "&Threads"
msgstr "&Threads"
-#: Source/Core/DolphinQt/MenuBar.cpp:221
+#: Source/Core/DolphinQt/MenuBar.cpp:213
msgid "&Tools"
msgstr "ツール(&T)"
-#: Source/Core/DolphinQt/GBAWidget.cpp:396
+#: Source/Core/DolphinQt/GBAWidget.cpp:397
msgid "&Unload ROM"
msgstr "ROMを取り外してリセット(&U)"
@@ -689,21 +697,21 @@ msgstr "ROMを取り外してリセット(&U)"
msgid "&Unlock Watches"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:405
+#: Source/Core/DolphinQt/MenuBar.cpp:397
msgid "&View"
msgstr "表示(&V)"
#. i18n: This kind of "watch" is used for watching emulated memory.
#. It's not related to timekeeping devices.
-#: Source/Core/DolphinQt/MenuBar.cpp:466
+#: Source/Core/DolphinQt/MenuBar.cpp:458
msgid "&Watch"
msgstr "&Watch"
-#: Source/Core/DolphinQt/MenuBar.cpp:588
+#: Source/Core/DolphinQt/MenuBar.cpp:580
msgid "&Website"
msgstr "公式Webサイト(&W)"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:402
+#: Source/Core/DolphinQt/GameList/GameList.cpp:403
msgid "&Wiki"
msgstr "公式Wiki(英語)で動作状況を確認(&W)"
@@ -711,23 +719,31 @@ msgstr "公式Wiki(英語)で動作状況を確認(&W)"
msgid "&Yes"
msgstr "はい(&Y)"
-#: Source/Core/DolphinQt/MenuBar.cpp:1285
+#: Source/Core/DolphinQt/MenuBar.cpp:1271
msgid "'%1' not found, no symbol names generated"
msgstr "'%1' not found, no symbol names generated"
-#: Source/Core/DolphinQt/MenuBar.cpp:1506
+#: Source/Core/DolphinQt/MenuBar.cpp:1493
msgid "'%1' not found, scanning for common functions instead"
msgstr "'%1' not found, scanning for common functions instead"
+#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:141
+msgid "(Dark)"
+msgstr ""
+
+#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:140
+msgid "(Light)"
+msgstr ""
+
#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:136
-msgid "(None)"
-msgstr "なし"
+msgid "(System)"
+msgstr ""
#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:142
msgid "(host)"
msgstr "(host)"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:227
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:266
msgid "(off)"
msgstr "オフ"
@@ -735,63 +751,71 @@ msgstr "オフ"
msgid "(ppc)"
msgstr "(ppc)"
-#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:265
+#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:284
msgid "* Multiply"
msgstr "* Multiply(乗算)"
-#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:268
+#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:287
msgid "+ Add"
msgstr "+ Add(加算)"
-#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:279
+#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:298
msgid ", Comma"
msgstr ""
-#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:269
+#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:288
msgid "- Subtract"
msgstr "- Subtract(減算)"
-#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:373
+#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:374
msgid "--> %1"
msgstr "--> %1"
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:215
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:217
msgid "--Unknown--"
msgstr ""
-#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:298
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:714
+#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:300
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:716
#: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:167
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:101
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:102
msgid "..."
msgstr "..."
-#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:266
+#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:285
msgid "/ Divide"
msgstr "/ Divide(除算)"
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:503
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:504
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:590
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:591
msgid "0"
msgstr ""
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:79
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:80
msgid "1 GiB"
msgstr ""
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:73
+msgid "1080p"
+msgstr ""
+
#: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:31
msgid "128 Mbit (2043 blocks)"
msgstr "128 Mbit (2043 ブロック)"
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:76
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:77
msgid "128 MiB"
msgstr ""
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:73
+msgid "1440p"
+msgstr ""
+
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:209
msgid "16 Bytes"
msgstr "16 Bytes"
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:83
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:84
msgid "16 GiB (SDHC)"
msgstr ""
@@ -813,11 +837,11 @@ msgstr "16-bit Signed Integer"
msgid "16-bit Unsigned Integer"
msgstr "16-bit Unsigned Integer"
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:167
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:164
msgid "16:9"
msgstr "16:9"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:94
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:113
msgid "16x Anisotropic"
msgstr "16x Anisotropic"
@@ -825,11 +849,11 @@ msgstr "16x Anisotropic"
msgid "1x"
msgstr "1x"
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:80
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:81
msgid "2 GiB"
msgstr ""
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:77
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:78
msgid "256 MiB"
msgstr ""
@@ -837,15 +861,11 @@ msgstr ""
msgid "2x"
msgstr "2x"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:91
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:110
msgid "2x Anisotropic"
msgstr "2x Anisotropic"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:66
-msgid "2x Native (1280x1056) for 720p"
-msgstr "2x Native (1280x1056) for 720p"
-
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:84
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:85
msgid "32 GiB (SDHC)"
msgstr ""
@@ -875,7 +895,7 @@ msgstr "32-bit Unsigned Integer"
#. i18n: Stereoscopic 3D
#: Source/Core/Core/HotkeyManager.cpp:350
#: Source/Core/DolphinQt/Config/Mapping/Hotkey3D.cpp:22
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:456
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:458
msgid "3D"
msgstr "3D"
@@ -889,15 +909,11 @@ msgstr "3D深度"
msgid "3x"
msgstr "3x"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:66
-msgid "3x Native (1920x1584) for 1080p"
-msgstr "3x Native (1920x1584) for 1080p"
-
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:207
msgid "4 Bytes"
msgstr "4 Bytes"
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:81
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:82
msgid "4 GiB (SDHC)"
msgstr ""
@@ -905,35 +921,35 @@ msgstr ""
msgid "4 Mbit (59 blocks)"
msgstr "4 Mbit (59 ブロック)"
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:166
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:163
msgid "4:3"
msgstr "4:3"
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:74
+msgid "4K"
+msgstr ""
+
#: Source/Core/Core/HotkeyManager.cpp:196
msgid "4x"
msgstr "4x"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:92
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:111
msgid "4x Anisotropic"
msgstr "4x Anisotropic"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:67
-msgid "4x Native (2560x2112) for 1440p"
-msgstr "4x Native (2560x2112) for 1440p"
-
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:78
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:79
msgid "512 MiB"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:67
-msgid "5x Native (3200x2640)"
-msgstr "5x Native (3200x2640)"
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:74
+msgid "5K"
+msgstr ""
#: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:30
msgid "64 Mbit (1019 blocks)"
msgstr "64 Mbit (1019 ブロック)"
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:75
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:76
msgid "64 MiB"
msgstr ""
@@ -952,19 +968,15 @@ msgstr "64-bit Signed Integer"
msgid "64-bit Unsigned Integer"
msgstr "64-bit Unsigned Integer"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:68
-msgid "6x Native (3840x3168) for 4K"
-msgstr "6x Native (3840x3168) for 4K"
-
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:68
-msgid "7x Native (4480x3696)"
-msgstr "7x Native (4480x3696)"
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:73
+msgid "720p"
+msgstr ""
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:208
msgid "8 Bytes"
msgstr "8 Bytes"
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:82
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:83
msgid "8 GiB (SDHC)"
msgstr ""
@@ -986,19 +998,19 @@ msgstr "8-bit Signed Integer"
msgid "8-bit Unsigned Integer"
msgstr "8-bit Unsigned Integer"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:93
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:75
+msgid "8K"
+msgstr ""
+
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:112
msgid "8x Anisotropic"
msgstr "8x Anisotropic"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:69
-msgid "8x Native (5120x4224) for 5K"
-msgstr "8x Native (5120x4224) for 5K"
-
-#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:271
+#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:290
msgid "< Less-than"
msgstr "< Less-than(より小さい)"
-#: Source/Core/Core/HW/EXI/EXI_Device.h:132
+#: Source/Core/Core/HW/EXI/EXI_Device.h:131
msgid ""
msgstr "なし"
@@ -1012,8 +1024,8 @@ msgstr ""
"よく分からなければ、チェックを入れないでください"
"dolphin_emphasis>"
-#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:700
-#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:293
+#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:701
+#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:294
msgid ""
"AutoStepping timed out. Current instruction is "
"irrelevant."
@@ -1021,7 +1033,7 @@ msgstr ""
"AutoStepping timed out. Current instruction is "
"irrelevant."
-#: Source/Core/DolphinQt/Updater.cpp:63
+#: Source/Core/DolphinQt/Updater.cpp:64
msgid ""
"
A new version of Dolphin is available!
Dolphin %1 is available for "
"download. You are running %2. Would you like to update?
"
-#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:270
+#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:289
msgid "> Greater-than"
msgstr "> Greater-than(より大きい)"
-#: Source/Core/DolphinQt/MainWindow.cpp:1502
-#: Source/Core/DolphinQt/MainWindow.cpp:1569
+#: Source/Core/DolphinQt/MainWindow.cpp:1515
+#: Source/Core/DolphinQt/MainWindow.cpp:1582
msgid "A NetPlay Session is already in progress!"
msgstr "ネットプレイのセッションは既に進行中です!"
@@ -1059,17 +1071,17 @@ msgstr ""
msgid "A disc is already about to be inserted."
msgstr "ディスクは既に挿入されています。"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:457
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:539
msgid ""
"A group of features to make the colors more accurate, matching the color "
"space Wii and GC games were meant for."
msgstr ""
-#: Source/Core/DolphinQt/Main.cpp:226
+#: Source/Core/DolphinQt/Main.cpp:228
msgid "A save state cannot be loaded without specifying a game to launch."
msgstr "起動するタイトルを指定せずにステートセーブをロードすることはできません"
-#: Source/Core/DolphinQt/MainWindow.cpp:930
+#: Source/Core/DolphinQt/MainWindow.cpp:932
msgid ""
"A shutdown is already in progress. Unsaved data may be lost if you stop the "
"current emulation before it completes. Force stop?"
@@ -1077,18 +1089,18 @@ msgstr ""
"終了処理の実行中です。 この処理が完了する前にエミュレーションの強制終了をする"
"とデータが失われる場合があります。それでも強制終了しますか?"
-#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:159
+#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:160
msgid ""
"A supported Bluetooth device could not be found.\n"
"You must manually connect your Wii Remote."
msgstr ""
-#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:232
+#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:233
msgid "A sync can only be triggered when a Wii game is running."
msgstr "WiiリモコンとのSyncはWiiのゲームを実行中にのみ行なえます"
#. i18n: A mysterious debugging/diagnostics peripheral for the GameCube.
-#: Source/Core/Core/HW/EXI/EXI_Device.h:99
+#: Source/Core/Core/HW/EXI/EXI_Device.h:98
msgid "AD16"
msgstr ""
@@ -1131,7 +1143,7 @@ msgstr "アクションリプレイコード"
msgid "ASCII"
msgstr "ASCII"
-#: Source/Core/DolphinQt/ConvertDialog.cpp:432
+#: Source/Core/DolphinQt/ConvertDialog.cpp:434
#: qtbase/src/gui/kernel/qplatformtheme.cpp:724
msgid "Abort"
msgstr "中断"
@@ -1142,7 +1154,7 @@ msgstr "Dolphinについて"
#: Source/Core/Core/HW/WiimoteEmu/Extension/Nunchuk.cpp:62
#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:253
-#: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionInput.cpp:49
+#: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionInput.cpp:51
msgid "Accelerometer"
msgstr "加速度"
@@ -1155,8 +1167,8 @@ msgstr ""
msgid "Accuracy:"
msgstr "精度:"
-#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:21
-#: Source/Core/DolphinQt/MenuBar.cpp:245
+#: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:22
+#: Source/Core/DolphinQt/MenuBar.cpp:237
msgid "Achievements"
msgstr ""
@@ -1248,11 +1260,11 @@ msgstr "Action Replay: Normal Code {0}: Invalid subtype {1:08x} ({2})"
msgid "Activate NetPlay Chat"
msgstr "ネットプレイ:チャットをアクティブ"
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:166
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167
msgid "Active"
msgstr "Active"
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:74
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:75
msgid "Active Infinity Figures:"
msgstr ""
@@ -1264,7 +1276,7 @@ msgstr "Active thread queue"
msgid "Active threads"
msgstr "Active threads"
-#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:257
+#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:258
msgid "Adapter"
msgstr "ビデオカード"
@@ -1272,7 +1284,7 @@ msgstr "ビデオカード"
msgid "Adapter Detected"
msgstr "タップが接続されています"
-#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:74
+#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:75
msgid "Adapter:"
msgstr "ビデオカード:"
@@ -1294,8 +1306,8 @@ msgstr "DSU Serverの追加"
msgid "Add New USB Device"
msgstr "USBデバイスを追加"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:483
-#: Source/Core/DolphinQt/GameList/GameList.cpp:486
+#: Source/Core/DolphinQt/GameList/GameList.cpp:490
+#: Source/Core/DolphinQt/GameList/GameList.cpp:493
msgid "Add Shortcut to Desktop"
msgstr "ショートカットをデスクトップに追加"
@@ -1307,7 +1319,7 @@ msgstr "Add a Breakpoint"
msgid "Add a Memory Breakpoint"
msgstr "Add a Memory Breakpoint"
-#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:136
+#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:137
msgid "Add memory &breakpoint"
msgstr "Add memory &breakpoint"
@@ -1317,7 +1329,7 @@ msgstr "Add memory breakpoint"
#. i18n: This kind of "watch" is used for watching emulated memory.
#. It's not related to timekeeping devices.
-#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:131
+#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:132
#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:125
msgid "Add to &watch"
msgstr "Add to &watch"
@@ -1327,9 +1339,9 @@ msgstr "Add to &watch"
msgid "Add to watch"
msgstr "Add to watch"
-#: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:36
+#: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:37
#: Source/Core/DolphinQt/Settings/PathPane.cpp:141
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:328
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:327
msgid "Add..."
msgstr "追加"
@@ -1337,16 +1349,16 @@ msgstr "追加"
#: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:123
#: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:288
#: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:300
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:166
-#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:82
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167
+#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:81
#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:144
#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:375
-#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:154
+#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:155
#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:82
#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:181
#: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:233
#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:91
-#: Source/Core/DolphinQt/MenuBar.cpp:985
+#: Source/Core/DolphinQt/MenuBar.cpp:967
msgid "Address"
msgstr "Address"
@@ -1365,7 +1377,7 @@ msgstr "Address space by CPU state"
msgid "Address:"
msgstr "Address:"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:451
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:502
msgid ""
"Adjust the texture filtering. Anisotropic filtering enhances the visual "
"quality of textures that are at oblique viewing angles. Force Nearest and "
@@ -1400,7 +1412,7 @@ msgstr ""
"
よく分からなければ、右端に合わせておいてください。"
""
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:144
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:150
msgid ""
"Adjusts the amount of RAM in the emulated console.\n"
"\n"
@@ -1414,7 +1426,7 @@ msgstr ""
"する可能性があります。この設定はごく限られたタイトルでのみ恩恵を受けられる機"
"能です。"
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:103
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:109
msgid ""
"Adjusts the emulated CPU's clock rate.\n"
"\n"
@@ -1437,27 +1449,50 @@ msgstr ""
"あくまでも自己責任での使用を前提とし、 デフォルト以外の値で発生したバグについ"
"ては 報告しないでください。"
-#: Source/Core/Core/HW/EXI/EXI_Device.h:105
+#: Source/Core/Core/HW/EXI/EXI_Device.h:104
msgid "Advance Game Port"
msgstr "アドバンスコネクタ"
#: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:63
-#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:156
+#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:157
#: Source/Core/DolphinQt/Config/SettingsWindow.cpp:43
msgid "Advanced"
msgstr "高度な設定"
-#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:209
+#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:210
msgid "Advanced Settings"
msgstr ""
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:508
+msgid ""
+"Affects how the game output is scaled to the window resolution. The "
+"performance mostly depends on the number of samples each method uses."
+" Compared to SSAA, resampling is useful in case the output "
+"window resolution isn't a multiplier of the native emulation resolution."
+"
Default - [fastest] Internal GPU bilinear sampler which is "
+"not gamma corrected. This setting might be ignored if gamma correction is "
+"forced on.
Bilinear - [4 samples] Gamma corrected linear "
+"interpolation between pixels.
Bicubic - [16 samples] Gamma "
+"corrected cubic interpolation between pixels. Good when rescaling between "
+"close resolutions. i.e 1080p and 1440p. Comes in various flavors: B-"
+"Spline: Blurry, but avoids all lobing artifacts Mitchell-"
+"Netravali: Good middle ground between blurry and lobing Catmull-"
+"Rom: Sharper, but can cause lobing artifacts
Sharp Bilinear"
+"b> - [1-4 samples] Similarly to \"Nearest Neighbor\", it maintains a "
+"sharp look, but also does some blending to avoid shimmering. Works "
+"best with 2D games at low resolutions.
Area Sampling - [up to "
+"324 samples] Weights pixels by the percentage of area they occupy. Gamma "
+"corrected. Best for down scaling by more than 2x."
+"
If unsure, select 'Default'."
+msgstr ""
+
#: Source/Core/UICommon/NetPlayIndex.cpp:251
msgid "Africa"
msgstr "アフリカ"
#. i18n: One of the elements in the Skylanders games. Japanese: 風. For official translations
#. in other languages, check the SuperChargers manual at https://support.activision.com/manuals
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:342
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:358
msgid "Air"
msgstr ""
@@ -1465,82 +1500,83 @@ msgstr ""
msgid "Aligned to data type length"
msgstr "Aligned to data type length"
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:320
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:336
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:414
msgid "All"
msgstr ""
#. i18n: A double precision floating point number
-#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:168
+#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:169
msgid "All Double"
msgstr "All Double"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:362
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:439
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:590
-#: Source/Core/DolphinQt/MainWindow.cpp:768
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:363
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:440
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:591
+#: Source/Core/DolphinQt/MainWindow.cpp:770
#: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:121
-#: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:328
+#: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:327
#: Source/Core/DolphinQt/Settings/PathPane.cpp:51
msgid "All Files"
msgstr "すべてのファイル"
#: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:75
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:654
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:664
msgid "All Files (*)"
msgstr "すべてのファイル (*)"
#. i18n: A floating point number
-#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:165
+#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:166
msgid "All Float"
msgstr "All Float"
-#: Source/Core/DolphinQt/MainWindow.cpp:767
+#: Source/Core/DolphinQt/MainWindow.cpp:769
#: Source/Core/DolphinQt/Settings/PathPane.cpp:50
msgid "All GC/Wii files"
msgstr "すべての GC/Wii ファイル"
-#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:158
+#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:159
msgid "All Hexadecimal"
msgstr "All Hexadecimal"
-#: Source/Core/DolphinQt/MainWindow.cpp:1369
-#: Source/Core/DolphinQt/MainWindow.cpp:1378
+#: Source/Core/DolphinQt/MainWindow.cpp:1382
+#: Source/Core/DolphinQt/MainWindow.cpp:1391
msgid "All Save States (*.sav *.s##);; All Files (*)"
msgstr "全てのステートセーブファイル (*.sav *.s##);; 全てのファイル (*)"
-#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:160
+#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:161
msgid "All Signed Integer"
msgstr "All Signed Integer"
-#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:162
+#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:163
msgid "All Unsigned Integer"
msgstr "All Unsigned Integer"
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:695
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:694
msgid "All files (*)"
msgstr "すべてのファイル (*)"
-#: Source/Core/Core/NetPlayServer.cpp:1205
+#: Source/Core/Core/NetPlayServer.cpp:1209
msgid "All players' codes synchronized."
msgstr "すべてのプレイヤーのチートコードは同期されました"
-#: Source/Core/Core/NetPlayServer.cpp:1147
+#: Source/Core/Core/NetPlayServer.cpp:1151
msgid "All players' saves synchronized."
msgstr "すべてのプレイヤーのセーブデータは同期されました"
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:145
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:146
msgid "Allow Mismatched Region Settings"
msgstr "コンソール上の言語設定の不一致を許可"
-#: Source/Core/DolphinQt/Main.cpp:257
+#: Source/Core/DolphinQt/Main.cpp:262
msgid "Allow Usage Statistics Reporting"
msgstr "利用統計レポートを許可"
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:221
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:218
msgid "Allow Writes to SD Card"
msgstr "SDカードへの書込を許可"
-#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:36
+#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:37
msgid ""
"Allows manipulation of the in-game camera.
If "
"unsure, leave this unchecked."
@@ -1548,15 +1584,15 @@ msgstr ""
"ゲーム内カメラの操作を許可します。
よく分からなければ、チェックを入れないでください。"
""
-#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:107
+#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:108
msgid "Calculate"
msgstr "計算する"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:468
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:550
msgid ""
"Calculates lighting of 3D objects per-pixel rather than per-vertex, "
"smoothing out the appearance of lit polygons and making individual triangles "
@@ -2172,19 +2228,19 @@ msgstr ""
msgid "Call display list at %1 with size %2"
msgstr "Call display list at %1 with size %2"
-#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:143
+#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:144
msgid "Callers"
msgstr "Callers"
-#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:139
+#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:140
msgid "Calls"
msgstr "Calls"
-#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:131
+#: Source/Core/DolphinQt/Debugger/CodeWidget.cpp:132
msgid "Callstack"
msgstr "Callstack"
-#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:68
+#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:69
msgid "Camera 1"
msgstr "カメラ 1"
@@ -2198,22 +2254,30 @@ msgstr ""
msgid "Can only generate AR code for values in virtual memory."
msgstr "Can only generate AR code for values in virtual memory."
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:99
+msgid "Can't be modified yet!"
+msgstr ""
+
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:291
+msgid "Can't edit villains for this trophy!"
+msgstr ""
+
#: Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp:1828
msgid "Can't find Wii Remote by connection handle {0:02x}"
msgstr ""
-#: Source/Core/DolphinQt/MainWindow.cpp:1495
-#: Source/Core/DolphinQt/MainWindow.cpp:1562
+#: Source/Core/DolphinQt/MainWindow.cpp:1508
+#: Source/Core/DolphinQt/MainWindow.cpp:1575
msgid "Can't start a NetPlay Session while a game is still running!"
msgstr "ゲーム実行中はネットプレイセッションを開始できません!"
#: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:57
-#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:157
-#: Source/Core/DolphinQt/MenuBar.cpp:1327
-#: Source/Core/DolphinQt/NKitWarningDialog.cpp:59
+#: Source/Core/DolphinQt/Config/VerifyWidget.cpp:158
+#: Source/Core/DolphinQt/MenuBar.cpp:1313
+#: Source/Core/DolphinQt/NKitWarningDialog.cpp:62
#: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:50
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:282
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:306
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:279
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:304
#: qtbase/src/gui/kernel/qplatformtheme.cpp:732
msgid "Cancel"
msgstr "キャンセル"
@@ -2247,11 +2311,11 @@ msgstr "Cannot generate AR code for this address."
msgid "Cannot refresh without results."
msgstr "Cannot refresh without results."
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:525
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:535
msgid "Cannot set GCI folder to an empty path."
msgstr ""
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:423
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:433
msgid "Cannot set memory card to an empty path."
msgstr ""
@@ -2259,6 +2323,10 @@ msgstr ""
msgid "Cannot start the game, because the GC IPL could not be found."
msgstr "GC IPLが見つからないため、ゲームを開始できませんでした。"
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:312
+msgid "Captured villain %1:"
+msgstr ""
+
#: Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp:41
msgid "Card Size"
msgstr "容量"
@@ -2277,11 +2345,11 @@ msgstr ""
msgid "Center and Calibrate"
msgstr "センタリングとキャリブレーション"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:419
+#: Source/Core/DolphinQt/GameList/GameList.cpp:420
msgid "Change &Disc"
msgstr "ディスクの入れ替え(&D)"
-#: Source/Core/DolphinQt/MenuBar.cpp:205
+#: Source/Core/DolphinQt/MenuBar.cpp:197
msgid "Change &Disc..."
msgstr "ディスクの入れ替え(&D)"
@@ -2289,7 +2357,7 @@ msgstr "ディスクの入れ替え(&D)"
msgid "Change Disc"
msgstr "ディスクの入れ替え"
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:148
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:149
msgid "Change Discs Automatically"
msgstr "ディスク交換を自動化"
@@ -2303,7 +2371,7 @@ msgid ""
"
If unsure, leave this checked."
msgstr ""
-#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:44
+#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:45
msgid ""
"Changes the in-game camera type during Free Look.
If unsure, leave this at 200."
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:496
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:578
msgid ""
"Controls the distance of the convergence plane. This is the distance at "
"which virtual objects will appear to be in front of the screen.
よく分からなければ、チェックを外さないでください。"
""
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:96
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:97
msgid "Disc"
msgstr "ディスク"
@@ -3637,25 +3724,25 @@ msgstr "距離"
msgid "Distance of travel from neutral position."
msgstr "振りの強さをニュートラルポジションからの距離で指定"
-#: Source/Core/DolphinQt/Main.cpp:259
+#: Source/Core/DolphinQt/Main.cpp:264
msgid "Do you authorize Dolphin to report information to Dolphin's developers?"
msgstr "Dolphinの開発者への情報提供にご協力いただけますか?"
-#: Source/Core/DolphinQt/MainWindow.cpp:1692
+#: Source/Core/DolphinQt/MainWindow.cpp:1712
msgid "Do you want to add \"%1\" to the list of Game Paths?"
msgstr "\"%1\" をゲームパスリストに追加しますか?"
-#: Source/Core/DolphinQt/MenuBar.cpp:1241
+#: Source/Core/DolphinQt/MenuBar.cpp:1227
msgid "Do you want to clear the list of symbol names?"
msgstr "Do you want to clear the list of symbol names?"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:658
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:659
#, c-format
msgctxt ""
msgid "Do you want to delete the %n selected save file(s)?"
msgstr "選択中の %n 個のセーブファイルを削除しますか?"
-#: Source/Core/DolphinQt/MainWindow.cpp:933
+#: Source/Core/DolphinQt/MainWindow.cpp:935
msgid "Do you want to stop the current emulation?"
msgstr "動作中のゲームを停止しますか?"
@@ -3667,35 +3754,35 @@ msgstr ""
msgid "Dolby Pro Logic II Decoder"
msgstr "Dolby Pro Logic II decoder"
-#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:219
-#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:230
+#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:215
+#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:226
msgid "Dolphin FIFO Log (*.dff)"
msgstr "Dolphin FIFO ログファイル (*.dff)"
-#: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:327
+#: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:326
msgid "Dolphin Game Mod Preset"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1536
-#: Source/Core/DolphinQt/MenuBar.cpp:1553
-#: Source/Core/DolphinQt/MenuBar.cpp:1572
+#: Source/Core/DolphinQt/MenuBar.cpp:1523
+#: Source/Core/DolphinQt/MenuBar.cpp:1540
+#: Source/Core/DolphinQt/MenuBar.cpp:1559
msgid "Dolphin Map File (*.map)"
msgstr "Dolphin Map File (*.map)"
-#: Source/Core/DolphinQt/MenuBar.cpp:73
+#: Source/Core/DolphinQt/MenuBar.cpp:74
msgid "Dolphin Signature CSV File"
msgstr "Dolphin Signature CSV File"
-#: Source/Core/DolphinQt/MenuBar.cpp:73
+#: Source/Core/DolphinQt/MenuBar.cpp:74
msgid "Dolphin Signature File"
msgstr "Dolphin Signature File"
-#: Source/Core/DolphinQt/MainWindow.cpp:1772
-#: Source/Core/DolphinQt/MainWindow.cpp:1843
+#: Source/Core/DolphinQt/MainWindow.cpp:1823
+#: Source/Core/DolphinQt/MainWindow.cpp:1894
msgid "Dolphin TAS Movies (*.dtm)"
msgstr "Dolphin TAS ムービー (*.dtm)"
-#: Source/Core/DolphinQt/ConvertDialog.cpp:326
+#: Source/Core/DolphinQt/ConvertDialog.cpp:327
msgid ""
"Dolphin can't convert NKit files to non-NKit files. Converting an NKit file "
"in Dolphin will result in another NKit file.\n"
@@ -3706,7 +3793,7 @@ msgid ""
"Do you want to continue anyway?"
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:279
+#: Source/Core/DolphinQt/GameList/GameList.cpp:280
msgid ""
"Dolphin could not find any GameCube/Wii ISOs or WADs.\n"
"Double-click here to set a games directory..."
@@ -3714,7 +3801,7 @@ msgstr ""
"ゲームリストは空です。この文章をダブルクリックして GC/Wii の ディスクイメー"
"ジ もしくは WAD ファイルのあるフォルダを選択してください。"
-#: Source/Core/DolphinQt/ConvertDialog.cpp:526
+#: Source/Core/DolphinQt/ConvertDialog.cpp:529
msgid "Dolphin failed to complete the requested action."
msgstr "要求された操作を完了することができませんでした。"
@@ -3726,7 +3813,7 @@ msgstr "要求された操作を完了することができませんでした。
msgid "Dolphin is a free and open-source GameCube and Wii emulator."
msgstr "Dolphin is a free and open-source GameCube and Wii emulator."
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:998
msgid "Dolphin is too old for traversal server"
msgstr "Dolphinのバージョンが古すぎます"
@@ -3742,7 +3829,7 @@ msgstr ""
msgid "Dolphin is unable to verify unlicensed discs."
msgstr "Dolphin is unable to verify unlicensed discs."
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:217
msgid ""
"Dolphin will use this for titles whose region cannot be determined "
"automatically."
@@ -3759,15 +3846,15 @@ msgstr "チートは現在、無効化されています"
msgid "Domain"
msgstr "Domain"
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:193
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:194
msgid "Don't Update"
msgstr "自動更新しない"
-#: Source/Core/DolphinQt/NKitWarningDialog.cpp:53
+#: Source/Core/DolphinQt/NKitWarningDialog.cpp:56
msgid "Don't show this again"
msgstr "次回からこの画面を表示しない"
-#: Source/Core/DiscIO/CompressedBlob.cpp:369
+#: Source/Core/DiscIO/CompressedBlob.cpp:374
msgid "Done compressing disc image."
msgstr "ディスクイメージの圧縮に成功しました"
@@ -3780,37 +3867,37 @@ msgstr ""
#. i18n: A double precision floating point number
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:139
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:199
-#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:154
+#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:155
msgid "Double"
msgstr "Double"
#: Source/Core/Core/FreeLookManager.cpp:89
#: Source/Core/Core/HW/WiimoteEmu/Extension/Guitar.cpp:80
#: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:35
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:43
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:44
#: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:21
#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUAccelerometer.cpp:19
#: Source/Core/InputCommon/ControllerEmu/ControllerEmu.h:24
msgid "Down"
msgstr "下"
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:86
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:87
msgid "Download Codes"
msgstr "Webからコードを入手"
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:88
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:89
msgid "Download Codes from the WiiRD Database"
msgstr "Webからコードを入手 (WiiRD Database)"
-#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:148
+#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:153
msgid "Download Game Covers from GameTDB.com for Use in Grid Mode"
msgstr "グリッド表示でパッケージ画像を使用 ( GameTDB.comより取得 )"
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:370
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:373
msgid "Download complete"
msgstr "ダウンロード完了"
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:371
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:374
msgid "Downloaded %1 codes. (added %2)"
msgstr "%1 個のコードが見つかりました。( 新規追加: %2 個 )"
@@ -3833,7 +3920,7 @@ msgstr "デュアルコア動作"
msgid "Dual View"
msgstr "Dual View"
-#: Source/Core/Core/HW/EXI/EXI_Device.h:95
+#: Source/Core/Core/HW/EXI/EXI_Device.h:94
msgid "Dummy"
msgstr "ダミーデバイス"
@@ -3853,7 +3940,7 @@ msgstr "Dump &FakeVMEM"
msgid "Dump &MRAM"
msgstr "Dump &MRAM"
-#: Source/Core/DolphinQt/MenuBar.cpp:814
+#: Source/Core/DolphinQt/MenuBar.cpp:806
msgid "Dump Audio"
msgstr "サウンドのダンプを行う(WAV形式)"
@@ -3865,7 +3952,7 @@ msgstr "Dump Base Textures"
msgid "Dump EFB Target"
msgstr "EFBターゲットをダンプ"
-#: Source/Core/DolphinQt/MenuBar.cpp:808
+#: Source/Core/DolphinQt/MenuBar.cpp:800
msgid "Dump Frames"
msgstr "フレームのダンプを行う(AVI形式)"
@@ -3941,12 +4028,12 @@ msgid "Duration of Turbo Button Release (frames):"
msgstr ""
#: Source/Core/DiscIO/Enums.cpp:95
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174
msgid "Dutch"
msgstr "オランダ語"
-#: Source/Core/DolphinQt/MenuBar.cpp:215
+#: Source/Core/DolphinQt/MenuBar.cpp:207
msgid "E&xit"
msgstr "終了"
@@ -3965,7 +4052,7 @@ msgstr ""
"近Dolphinのバージョンを更新した場合は、ドライバを認識させるためにWindowsの再"
"起動が必要になるかもしれません。"
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:185
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:186
msgid ""
"Each player sends their own inputs to the game, with equal buffer size for "
"all players, configured by the host.\n"
@@ -3981,7 +4068,7 @@ msgstr "Early Memory Updates"
#. i18n: One of the elements in the Skylanders games. Japanese: 土. For official translations
#. in other languages, check the SuperChargers manual at https://support.activision.com/manuals
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:336
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:352
msgid "Earth"
msgstr ""
@@ -3994,7 +4081,7 @@ msgstr "東アジア"
msgid "Edit Breakpoint"
msgstr "Edit Breakpoint"
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:426
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:430
msgid "Edit..."
msgstr "Edit..."
@@ -4028,7 +4115,7 @@ msgstr "ディスクの取り出し"
#. i18n: Elements are a trait of Skylanders figures. For official translations of this term,
#. check the Skylanders SuperChargers manual at https://support.activision.com/manuals
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:289
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:300
msgid "Element"
msgstr ""
@@ -4036,11 +4123,11 @@ msgstr ""
msgid "Embedded Frame Buffer (EFB)"
msgstr "Embedded Frame Buffer (内蔵フレームバッファ)"
-#: Source/Core/Core/State.cpp:541
+#: Source/Core/Core/State.cpp:629
msgid "Empty"
msgstr "空き"
-#: Source/Core/Core/Core.cpp:246
+#: Source/Core/Core/Core.cpp:247
msgid "Emu Thread already running"
msgstr "エミュレーションスレッドはすでに稼働中です"
@@ -4048,15 +4135,15 @@ msgstr "エミュレーションスレッドはすでに稼働中です"
msgid "Emulate Disc Speed"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:60
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:61
msgid "Emulate Infinity Base"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:146
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:157
msgid "Emulate Skylander Portal"
msgstr ""
-#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:110
+#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:111
msgid "Emulate the Wii's Bluetooth adapter"
msgstr "WiiのBluetoothアダプタをエミュレート"
@@ -4066,11 +4153,11 @@ msgid ""
"Defaults to True"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:230
+#: Source/Core/DolphinQt/MenuBar.cpp:222
msgid "Emulated USB Devices"
msgstr ""
-#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:141
+#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:142
msgid "Emulated Wii Remote"
msgstr "Wiiリモコンをエミュレート"
@@ -4093,12 +4180,12 @@ msgstr "エミュレーション速度"
msgid "Emulation must be started to record."
msgstr "Emulation must be started to record."
-#: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:29
-#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:33
+#: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:30
+#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:34
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:120
-#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:129
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:402
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:419
+#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:130
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:406
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:423
msgid "Enable"
msgstr "有効"
@@ -4106,6 +4193,10 @@ msgstr "有効"
msgid "Enable API Validation Layers"
msgstr "Enable API Validation Layers"
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:83
+msgid "Enable Achievement Badges"
+msgstr ""
+
#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:60
msgid "Enable Achievements"
msgstr ""
@@ -4114,15 +4205,19 @@ msgstr ""
msgid "Enable Audio Stretching"
msgstr "タイムストレッチを有効にする (Audio Stretching)"
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:142
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:143
msgid "Enable Cheats"
msgstr "チートコードを有効化"
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:155
+#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:53
+msgid "Enable Controller Inpu&t"
+msgstr ""
+
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:161
msgid "Enable Custom RTC"
msgstr "Custom RTC を使用する"
-#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:149
+#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:154
msgid "Enable Debugging UI"
msgstr ""
@@ -4130,19 +4225,19 @@ msgstr ""
msgid "Enable Dual Core"
msgstr "デュアルコア動作を行う"
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:139
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:140
msgid "Enable Dual Core (speedup)"
msgstr "デュアルコア動作を行う (速度向上)"
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:88
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:94
msgid "Enable Emulated CPU Clock Override"
msgstr "CPU Clock Override を有効化"
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:118
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:124
msgid "Enable Emulated Memory Size Override"
msgstr "Memory Size Override を有効化"
-#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:78
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:88
msgid "Enable Encore Achievements"
msgstr ""
@@ -4159,10 +4254,14 @@ msgid "Enable Leaderboards"
msgstr ""
#: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:88
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:66
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:68
msgid "Enable MMU"
msgstr "Enable MMU"
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:78
+msgid "Enable Progress Notifications"
+msgstr ""
+
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:156
msgid "Enable Progressive Scan"
msgstr "プログレッシブ表示を有効化"
@@ -4176,15 +4275,15 @@ msgid "Enable Rich Presence"
msgstr ""
#: Source/Core/DolphinQt/Config/Mapping/GCPadWiiUConfigDialog.cpp:39
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:353
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:352
msgid "Enable Rumble"
msgstr "振動を有効にする"
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:157
msgid "Enable Screen Saver"
msgstr "スクリーンセーバーを有効化"
-#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:113
+#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:114
msgid "Enable Speaker Data"
msgstr "Wiiリモコンのスピーカーを有効化"
@@ -4192,11 +4291,11 @@ msgstr "Wiiリモコンのスピーカーを有効化"
msgid "Enable Unofficial Achievements"
msgstr ""
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:230
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:231
msgid "Enable Usage Statistics Reporting"
msgstr "統計レポートの収集に協力する"
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158
msgid "Enable WiiConnect24 via WiiLink"
msgstr ""
@@ -4204,10 +4303,17 @@ msgstr ""
msgid "Enable Wireframe"
msgstr "ワイヤーフレームを有効化"
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:77
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:82
msgid "Enable Write-Back Cache (slow)"
msgstr ""
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:85
+msgid ""
+"Enable achievement badges.
Displays icons for the player, game, and "
+"achievements. Simple visual option, but will require a small amount of extra "
+"memory and time to download the images."
+msgstr ""
+
#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:64
msgid ""
"Enable competing in RetroAchievements leaderboards.
Displays a brief popup "
+"message whenever the player makes progress on an achievement that tracks an "
+"accumulated value, such as 60 out of 120 stars."
+msgstr ""
+
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:90
+msgid ""
"Enable unlocking achievements in Encore Mode.
Encore Mode re-enables "
"achievements the player has already unlocked on the site so that the player "
"will be notified if they meet the unlock conditions again, useful for custom "
@@ -4272,7 +4385,7 @@ msgstr ""
"浮動小数点演算結果フラグを有効にします。必要なゲームはわずかです [有効=互換"
"性重視/無効=速度向上]"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:514
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:596
msgid ""
"Enables detection of arbitrary mipmaps, which some games use for special "
"distance-based effects.
May have false positives that result in "
@@ -4290,11 +4403,12 @@ msgstr ""
"ディング」と互換性がありません。
よく分からなけれ"
"ば、チェックを外さないでください。"
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:79
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:84
msgid ""
-"Enables emulation of the CPU write-back cache.\n"
-"Enabling will have a significant impact on performance.\n"
-"This should be left disabled unless absolutely needed."
+"Enables emulation of the CPU write-back cache. Enabling will have a "
+"significant impact on performance. This should be left disabled unless "
+"absolutely needed.
If unsure, leave this unchecked."
+""
msgstr ""
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:365
@@ -4315,7 +4429,7 @@ msgstr ""
"この設定について考える必要はありません。
よく分から"
"なければ、チェックを入れないでください。"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:522
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:604
msgid ""
"Enables scRGB HDR output (if supported by your graphics backend and "
"monitor). Fullscreen might be required.
This gives post process "
@@ -4342,7 +4456,6 @@ msgstr ""
"い。"
#: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:100
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:68
msgid ""
"Enables the Memory Management Unit, needed for some games. (ON = Compatible, "
"OFF = Fast)"
@@ -4350,7 +4463,14 @@ msgstr ""
"メモリ管理機構を有効にします。いくつかのタイトルで必要です [有効=互換性重視"
"/無効=速度向上]"
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:193
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:70
+msgid ""
+"Enables the Memory Management Unit, needed for some games. (ON = Compatible, "
+"OFF = Fast)
If unsure, leave this unchecked."
+"dolphin_emphasis>"
+msgstr ""
+
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190
msgid ""
"Enables the WiiLink service for WiiConnect24 channels.\n"
"WiiLink is an alternate provider for the discontinued WiiConnect24 Channels "
@@ -4379,7 +4499,7 @@ msgstr ""
msgid "Encoding"
msgstr "エンコード"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:615
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:616
msgid ""
"Encountered the following errors while opening save files:\n"
"%1\n"
@@ -4396,12 +4516,12 @@ msgid "Enet Didn't Initialize"
msgstr "Enet Didn't Initialize"
#: Source/Core/DiscIO/Enums.cpp:80
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:85
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:169
msgid "English"
msgstr "英語"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:59
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:61
#: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:61
msgid "Enhancements"
msgstr "画質向上の設定"
@@ -4432,84 +4552,84 @@ msgstr "ここにパスワードを入力"
msgid "Enter the DNS server to use:"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1300
+#: Source/Core/DolphinQt/MenuBar.cpp:1286
msgid "Enter the RSO module address:"
msgstr "Enter the RSO module address:"
#: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:194
#: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:250
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:261
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:262
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386
#: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:265
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:343
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:349
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:346
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:352
#: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:46
-#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:521
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:256
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:295
-#: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:232
-#: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:259
-#: Source/Core/DolphinQt/ConvertDialog.cpp:424
-#: Source/Core/DolphinQt/ConvertDialog.cpp:471
-#: Source/Core/DolphinQt/ConvertDialog.cpp:525
+#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:539
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:255
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:296
+#: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:229
+#: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:256
+#: Source/Core/DolphinQt/ConvertDialog.cpp:426
+#: Source/Core/DolphinQt/ConvertDialog.cpp:473
+#: Source/Core/DolphinQt/ConvertDialog.cpp:528
#: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:255
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:638
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:644
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:653
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:665
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:684
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:690
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:705
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:713
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:737
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:744
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:637
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:643
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:652
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:664
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:683
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:689
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:704
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:712
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:736
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:743
#: Source/Core/DolphinQt/Debugger/RegisterColumn.cpp:86
#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:282
#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:431
-#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:241
-#: Source/Core/DolphinQt/GBAWidget.cpp:576
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:346
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:376
-#: Source/Core/DolphinQt/Main.cpp:209 Source/Core/DolphinQt/Main.cpp:225
-#: Source/Core/DolphinQt/Main.cpp:232 Source/Core/DolphinQt/MainWindow.cpp:295
-#: Source/Core/DolphinQt/MainWindow.cpp:303
-#: Source/Core/DolphinQt/MainWindow.cpp:1108
-#: Source/Core/DolphinQt/MainWindow.cpp:1494
-#: Source/Core/DolphinQt/MainWindow.cpp:1501
-#: Source/Core/DolphinQt/MainWindow.cpp:1561
-#: Source/Core/DolphinQt/MainWindow.cpp:1568
-#: Source/Core/DolphinQt/MainWindow.cpp:1670
-#: Source/Core/DolphinQt/MenuBar.cpp:1204
-#: Source/Core/DolphinQt/MenuBar.cpp:1284
+#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:237
+#: Source/Core/DolphinQt/GBAWidget.cpp:578
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:347
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:377
+#: Source/Core/DolphinQt/Main.cpp:211 Source/Core/DolphinQt/Main.cpp:227
+#: Source/Core/DolphinQt/Main.cpp:234 Source/Core/DolphinQt/MainWindow.cpp:297
+#: Source/Core/DolphinQt/MainWindow.cpp:305
+#: Source/Core/DolphinQt/MainWindow.cpp:1110
+#: Source/Core/DolphinQt/MainWindow.cpp:1507
+#: Source/Core/DolphinQt/MainWindow.cpp:1514
+#: Source/Core/DolphinQt/MainWindow.cpp:1574
+#: Source/Core/DolphinQt/MainWindow.cpp:1581
+#: Source/Core/DolphinQt/MainWindow.cpp:1690
+#: Source/Core/DolphinQt/MenuBar.cpp:1190
+#: Source/Core/DolphinQt/MenuBar.cpp:1270
+#: Source/Core/DolphinQt/MenuBar.cpp:1293
#: Source/Core/DolphinQt/MenuBar.cpp:1307
-#: Source/Core/DolphinQt/MenuBar.cpp:1321
-#: Source/Core/DolphinQt/MenuBar.cpp:1352
-#: Source/Core/DolphinQt/MenuBar.cpp:1376
-#: Source/Core/DolphinQt/MenuBar.cpp:1597
-#: Source/Core/DolphinQt/MenuBar.cpp:1608
-#: Source/Core/DolphinQt/MenuBar.cpp:1620
-#: Source/Core/DolphinQt/MenuBar.cpp:1642
-#: Source/Core/DolphinQt/MenuBar.cpp:1668
-#: Source/Core/DolphinQt/MenuBar.cpp:1722
-#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:315
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:477
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:738
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:980
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1098
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1108
-#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:334
-#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:340
-#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:347
+#: Source/Core/DolphinQt/MenuBar.cpp:1339
+#: Source/Core/DolphinQt/MenuBar.cpp:1363
+#: Source/Core/DolphinQt/MenuBar.cpp:1584
+#: Source/Core/DolphinQt/MenuBar.cpp:1595
+#: Source/Core/DolphinQt/MenuBar.cpp:1607
+#: Source/Core/DolphinQt/MenuBar.cpp:1629
+#: Source/Core/DolphinQt/MenuBar.cpp:1655
+#: Source/Core/DolphinQt/MenuBar.cpp:1709
+#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:316
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:479
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:740
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:982
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1100
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1110
+#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:332
+#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:338
+#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:345
#: Source/Core/DolphinQt/RenderWidget.cpp:123
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:203
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:224
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:423
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:439
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:460
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:481
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:525
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:562
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:585
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:204
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:225
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:433
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:449
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:470
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:491
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:535
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:572
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:595
#: Source/Core/DolphinQt/Translation.cpp:322
msgid "Error"
msgstr "エラー"
@@ -4518,13 +4638,13 @@ msgstr "エラー"
msgid "Error Opening Adapter: %1"
msgstr ""
-#: Source/Core/Core/NetPlayServer.cpp:1493
+#: Source/Core/Core/NetPlayServer.cpp:1497
msgid "Error collecting save data!"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:260
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:526
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:533
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:262
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:613
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:620
msgid "Error converting value"
msgstr ""
@@ -4537,15 +4657,15 @@ msgstr ""
msgid "Error obtaining session list: %1"
msgstr "セッションリストの取得エラー: %1"
-#: Source/Core/DolphinQt/MainWindow.cpp:296
+#: Source/Core/DolphinQt/MainWindow.cpp:298
msgid "Error occurred while loading some texture packs"
msgstr ""
-#: Source/Core/Core/NetPlayClient.cpp:1847
+#: Source/Core/Core/NetPlayClient.cpp:1851
msgid "Error processing codes."
msgstr ""
-#: Source/Core/Core/NetPlayClient.cpp:1819
+#: Source/Core/Core/NetPlayClient.cpp:1823
msgid "Error processing data."
msgstr "データ処理中にエラーが発生しました"
@@ -4553,11 +4673,11 @@ msgstr "データ処理中にエラーが発生しました"
msgid "Error reading file: {0}"
msgstr ""
-#: Source/Core/Core/NetPlayServer.cpp:1529
+#: Source/Core/Core/NetPlayServer.cpp:1533
msgid "Error synchronizing cheat codes!"
msgstr ""
-#: Source/Core/Core/NetPlayServer.cpp:1515
+#: Source/Core/Core/NetPlayServer.cpp:1519
msgid "Error synchronizing save data!"
msgstr "セーブデータ同期中にエラー発生!"
@@ -4632,7 +4752,7 @@ msgstr "Errors were found in {0} unused blocks in the {1} partition."
msgid "Euphoria"
msgstr "Euphoria"
-#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:282
+#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:274
#: Source/Core/UICommon/NetPlayIndex.cpp:249
msgid "Europe"
msgstr "ヨーロッパ"
@@ -4676,11 +4796,11 @@ msgstr ""
msgid "Excluded: %1"
msgstr "Excluded: %1"
-#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:73
+#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:72
msgid "Excluded: 0"
msgstr "Excluded: 0"
-#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:107
+#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108
msgid "Exclusive Ubershaders"
msgstr "Exclusive Ubershaders"
@@ -4728,14 +4848,14 @@ msgstr ""
msgid "Experimental"
msgstr "実験的"
-#: Source/Core/DolphinQt/MenuBar.cpp:294
+#: Source/Core/DolphinQt/MenuBar.cpp:286
msgid "Export All Wii Saves"
msgstr "全てのWiiセーブデータをエクスポート"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:422
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:447
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:492
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:499
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:423
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:448
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:493
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:500
msgid "Export Failed"
msgstr "エクスポート失敗"
@@ -4743,42 +4863,42 @@ msgstr "エクスポート失敗"
msgid "Export Recording"
msgstr "録画ファイルのエクスポート"
-#: Source/Core/DolphinQt/MenuBar.cpp:753
+#: Source/Core/DolphinQt/MenuBar.cpp:745
msgid "Export Recording..."
msgstr "録画ファイルのエクスポート"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:437
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:438
msgid "Export Save File"
msgstr "セーブファイルをエクスポート"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:454
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:455
msgid "Export Save Files"
msgstr "複数のセーブファイルをエクスポート"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:470
+#: Source/Core/DolphinQt/GameList/GameList.cpp:473
msgid "Export Wii Save"
msgstr "セーブデータをエクスポート"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:388
+#: Source/Core/DolphinQt/GameList/GameList.cpp:389
msgid "Export Wii Saves"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:117
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:118
msgid "Export as .&gcs..."
msgstr "GCS形式でエクスポート..."
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:118
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:119
msgid "Export as .&sav..."
msgstr "SAV形式でエクスポート..."
-#: Source/Core/DolphinQt/MenuBar.cpp:1133
+#: Source/Core/DolphinQt/MenuBar.cpp:1115
#, c-format
msgctxt ""
msgid "Exported %n save(s)"
msgstr "%n個のファイルをエクスポートしました"
#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:268
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:432
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:434
#: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:47
msgid "Extension"
msgstr "拡張コントローラ"
@@ -4791,7 +4911,7 @@ msgstr "拡張コントローラ モーション(外部入力)"
msgid "Extension Motion Simulation"
msgstr "拡張コントローラ モーション"
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:520
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:522
msgid "External"
msgstr "External"
@@ -4799,35 +4919,35 @@ msgstr "External"
msgid "External Frame Buffer (XFB)"
msgstr "External Frame Buffer (外部フレームバッファ)"
-#: Source/Core/DolphinQt/MenuBar.cpp:271
+#: Source/Core/DolphinQt/MenuBar.cpp:263
msgid "Extract Certificates from NAND"
msgstr "証明書ファイルをNANDから取り出す"
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:268
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:269
msgid "Extract Entire Disc..."
msgstr "ディスク全体を抽出"
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:292
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:293
msgid "Extract Entire Partition..."
msgstr "パーティション全体を抽出"
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:299
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:300
msgid "Extract File..."
msgstr "このファイルを抽出"
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:241
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:242
msgid "Extract Files..."
msgstr "このファイルを抽出"
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:251
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:252
msgid "Extract System Data..."
msgstr "システムデータを抽出"
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:355
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:356
msgid "Extracting All Files..."
msgstr "全てのファイルを抽出"
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:356
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357
msgid "Extracting Directory..."
msgstr "このフォルダを抽出"
@@ -4837,7 +4957,7 @@ msgid "FD"
msgstr "FD"
#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:37
-#: Source/Core/DolphinQt/MenuBar.cpp:228
+#: Source/Core/DolphinQt/MenuBar.cpp:220
msgid "FIFO Player"
msgstr "FIFO プレーヤー"
@@ -4845,7 +4965,7 @@ msgstr "FIFO プレーヤー"
msgid "Failed loading XML."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:347
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:348
msgid ""
"Failed opening memory card:\n"
"%1"
@@ -4853,11 +4973,11 @@ msgstr ""
"メモリカードを開くことに失敗\n"
"%1"
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:454
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:456
msgid "Failed to add this session to the NetPlay index: %1"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1669
+#: Source/Core/DolphinQt/MenuBar.cpp:1656
msgid "Failed to append to signature file '%1'"
msgstr "Failed to append to signature file '%1'"
@@ -4865,11 +4985,11 @@ msgstr "Failed to append to signature file '%1'"
msgid "Failed to claim interface for BT passthrough: {0}"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:574
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:676
msgid "Failed to clear Skylander!"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:575
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:677
msgid "Failed to clear the Skylander from slot(%1)!"
msgstr ""
@@ -4877,7 +4997,7 @@ msgstr ""
msgid "Failed to connect to Redump.org"
msgstr "Redump.org に接続できませんでした"
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:981
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:983
msgid "Failed to connect to server: %1"
msgstr "サーバー %1 に接続できませんでした"
@@ -4898,15 +5018,15 @@ msgstr "Failed to create D3D12 global resources"
msgid "Failed to create DXGI factory"
msgstr "Failed to create DXGI factory"
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:289
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:291
msgid "Failed to create Infinity file"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:678
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:798
msgid "Failed to create Skylander file!"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:679
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:799
msgid ""
"Failed to create Skylander file:\n"
"%1\n"
@@ -4923,7 +5043,7 @@ msgid "Failed to delete NetPlay memory card. Verify your write permissions."
msgstr ""
"ネットプレイ メモリカードの削除に失敗しました。書き込み権限を確認してください"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:841
+#: Source/Core/DolphinQt/GameList/GameList.cpp:854
msgid "Failed to delete the selected file."
msgstr "選択したファイルの削除に失敗しました"
@@ -4931,36 +5051,36 @@ msgstr "選択したファイルの削除に失敗しました"
msgid "Failed to detach kernel driver for BT passthrough: {0}"
msgstr ""
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:343
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:346
msgid "Failed to download codes."
msgstr "コードの取得に失敗しました"
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:738
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:737
msgid "Failed to dump %1: Can't open file"
msgstr "Failed to dump %1: Can't open file"
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:745
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:744
msgid "Failed to dump %1: Failed to write to file"
msgstr "Failed to dump %1: Failed to write to file"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:488
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:489
msgctxt ""
msgid "Failed to export %n out of %1 save file(s)."
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:576
+#: Source/Core/DolphinQt/GameList/GameList.cpp:584
msgid "Failed to export the following save files:"
msgstr "次のセーブファイルをエクスポートできませんでした:"
-#: Source/Core/DolphinQt/MenuBar.cpp:1204
+#: Source/Core/DolphinQt/MenuBar.cpp:1190
msgid "Failed to extract certificates from NAND"
msgstr "証明書ファイルの取り出しに失敗"
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386
msgid "Failed to extract file."
msgstr "ファイルの抽出に失敗しました"
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:261
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:262
msgid "Failed to extract system data."
msgstr "システムデータの抽出に失敗しました"
@@ -4975,29 +5095,29 @@ msgstr ""
msgid "Failed to find one or more D3D symbols"
msgstr "Failed to find one or more D3D symbols"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:565
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:566
msgid "Failed to import \"%1\"."
msgstr "\"%1\" をインポートできませんでした"
-#: Source/Core/DolphinQt/MenuBar.cpp:1109
+#: Source/Core/DolphinQt/MenuBar.cpp:1091
msgid ""
"Failed to import save file. Please launch the game once, then try again."
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1103
+#: Source/Core/DolphinQt/MenuBar.cpp:1085
msgid ""
"Failed to import save file. The given file appears to be corrupted or is not "
"a valid Wii save."
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1116
+#: Source/Core/DolphinQt/MenuBar.cpp:1098
msgid ""
"Failed to import save file. Your NAND may be corrupt, or something is "
"preventing access to files within it. Try repairing your NAND (Tools -> "
"Manage NAND -> Check NAND...), then import the save again."
msgstr ""
-#: Source/Core/DolphinQt/MainWindow.cpp:1108
+#: Source/Core/DolphinQt/MainWindow.cpp:1110
msgid "Failed to init core"
msgstr "Failed to init core"
@@ -5012,16 +5132,16 @@ msgstr ""
msgid "Failed to initialize renderer classes"
msgstr ""
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:204
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:205
msgid "Failed to install pack: %1"
msgstr "リソースパック %1 をインストールできませんでした"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:619
-#: Source/Core/DolphinQt/MenuBar.cpp:1074
+#: Source/Core/DolphinQt/GameList/GameList.cpp:628
+#: Source/Core/DolphinQt/MenuBar.cpp:1056
msgid "Failed to install this title to the NAND."
msgstr "タイトルのインストールに失敗"
-#: Source/Core/DolphinQt/MainWindow.cpp:1594
+#: Source/Core/DolphinQt/MainWindow.cpp:1607
msgid ""
"Failed to listen on port %1. Is another instance of the NetPlay server "
"running?"
@@ -5029,8 +5149,8 @@ msgstr ""
"ポート番号 %1 で待ち受けできませんでした。別のネットプレイサーバーが実行中に"
"なっていませんか?"
-#: Source/Core/DolphinQt/MenuBar.cpp:1321
-#: Source/Core/DolphinQt/MenuBar.cpp:1376
+#: Source/Core/DolphinQt/MenuBar.cpp:1307
+#: Source/Core/DolphinQt/MenuBar.cpp:1363
msgid "Failed to load RSO module at %1"
msgstr "Failed to load RSO module at %1"
@@ -5042,15 +5162,15 @@ msgstr "Failed to load d3d11.dll"
msgid "Failed to load dxgi.dll"
msgstr "Failed to load dxgi.dll"
-#: Source/Core/DolphinQt/MenuBar.cpp:1608
+#: Source/Core/DolphinQt/MenuBar.cpp:1595
msgid "Failed to load map file '%1'"
msgstr "Failed to load map file '%1'"
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:720
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:842
msgid "Failed to load the Skylander file!"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:721
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:843
msgid "Failed to load the Skylander file(%1)!\n"
msgstr ""
@@ -5064,8 +5184,12 @@ msgid ""
"update package."
msgstr ""
-#: Source/Core/DolphinQt/GBAWidget.cpp:576
-#: Source/Core/DolphinQt/MainWindow.cpp:1670
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:663
+msgid "Failed to modify Skylander!"
+msgstr ""
+
+#: Source/Core/DolphinQt/GBAWidget.cpp:578
+#: Source/Core/DolphinQt/MainWindow.cpp:1690
#: Source/Core/DolphinQt/RenderWidget.cpp:123
msgid "Failed to open '%1'"
msgstr "'%1' のオープンに失敗しました"
@@ -5094,40 +5218,40 @@ msgstr ""
"外部エディタでファイルを開くことができませんでした\n"
"INIファイルに関連付けされているソフトを確認してください"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:861
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:863
msgid "Failed to open file."
msgstr "ファイルを"
-#: Source/Core/DolphinQt/MainWindow.cpp:1593
+#: Source/Core/DolphinQt/MainWindow.cpp:1606
msgid "Failed to open server"
msgstr "サーバーを開けませんでした"
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:164
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:166
msgid "Failed to open the Infinity file!"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:165
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:167
msgid ""
"Failed to open the Infinity file(%1)!\n"
"File may already be in use on the base."
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:696
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:818
msgid "Failed to open the Skylander file!"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:697
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:819
msgid ""
"Failed to open the Skylander file(%1)!\n"
"File may already be in use on the portal."
msgstr ""
-#: Source/Core/DolphinQt/ConvertDialog.cpp:472
+#: Source/Core/DolphinQt/ConvertDialog.cpp:474
msgid "Failed to open the input file \"%1\"."
msgstr ""
-#: Source/Core/DiscIO/CompressedBlob.cpp:282 Source/Core/DiscIO/FileBlob.cpp:53
-#: Source/Core/DiscIO/WIABlob.cpp:2037
+#: Source/Core/DiscIO/CompressedBlob.cpp:287 Source/Core/DiscIO/FileBlob.cpp:58
+#: Source/Core/DiscIO/WIABlob.cpp:2043
msgid ""
"Failed to open the output file \"{0}\".\n"
"Check that you have permissions to write the target folder and that the "
@@ -5147,35 +5271,35 @@ msgstr "Failed to parse given value into target data type."
msgid "Failed to read DFF file."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:863
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:865
msgid "Failed to read from file."
msgstr ""
-#: Source/Core/DiscIO/CompressedBlob.cpp:373 Source/Core/DiscIO/FileBlob.cpp:93
-#: Source/Core/DiscIO/WIABlob.cpp:2052
+#: Source/Core/DiscIO/CompressedBlob.cpp:378 Source/Core/DiscIO/FileBlob.cpp:98
+#: Source/Core/DiscIO/WIABlob.cpp:2058
msgid "Failed to read from the input file \"{0}\"."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:423
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:641
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:424
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:642
msgid "Failed to read selected savefile(s) from memory card."
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:173
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:175
msgid "Failed to read the Infinity file!"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:174
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:176
msgid ""
"Failed to read the Infinity file(%1)!\n"
"File was too small."
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:706
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:828
msgid "Failed to read the Skylander file!"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:707
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:829
msgid ""
"Failed to read the Skylander file(%1)!\n"
"File was too small."
@@ -5185,18 +5309,18 @@ msgstr ""
msgid "Failed to read {0}"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:668
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:669
msgid "Failed to remove file."
msgstr ""
-#: Source/Core/DolphinQt/ConvertDialog.cpp:453
+#: Source/Core/DolphinQt/ConvertDialog.cpp:455
msgid ""
"Failed to remove junk data from file \"%1\".\n"
"\n"
"Would you like to convert it without removing junk data?"
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:647
+#: Source/Core/DolphinQt/GameList/GameList.cpp:658
msgid "Failed to remove this title from the NAND."
msgstr "タイトルの消去に失敗"
@@ -5216,27 +5340,34 @@ msgstr ""
msgid "Failed to reset NetPlay redirect folder. Verify your write permissions."
msgstr ""
-#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:241
+#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:237
msgid "Failed to save FIFO log."
msgstr "FIFOログの保存に失敗しました"
-#: Source/Core/DolphinQt/MenuBar.cpp:1598
+#: Source/Core/DolphinQt/MenuBar.cpp:1585
msgid "Failed to save code map to path '%1'"
msgstr "Failed to save code map to path '%1'"
-#: Source/Core/DolphinQt/MenuBar.cpp:1642
+#: Source/Core/DolphinQt/MenuBar.cpp:1629
msgid "Failed to save signature file '%1'"
msgstr "Failed to save signature file '%1'"
-#: Source/Core/DolphinQt/MenuBar.cpp:1621
+#: Source/Core/DolphinQt/MenuBar.cpp:1608
msgid "Failed to save symbol map to path '%1'"
msgstr "Failed to save symbol map to path '%1'"
-#: Source/Core/DolphinQt/MenuBar.cpp:1723
+#: Source/Core/DolphinQt/MenuBar.cpp:1710
msgid "Failed to save to signature file '%1'"
msgstr "Failed to save to signature file '%1'"
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:225
+#: Source/Core/Core/Core.cpp:548
+msgid ""
+"Failed to sync SD card with folder. All changes made this session will be "
+"discarded on next boot if you do not manually re-issue a resync in Config > "
+"Wii > SD Card Settings > Convert File to Folder Now!"
+msgstr ""
+
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:226
msgid "Failed to uninstall pack: %1"
msgstr "リソースパック %1 のアンインストールに失敗しました"
@@ -5256,9 +5387,9 @@ msgstr "Wii セーブデータの書き込みに失敗しました"
msgid "Failed to write config file!"
msgstr "設定ファイルの書き込みに失敗!"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:573
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:676
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:691
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:574
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:677
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:692
msgid "Failed to write modified memory card to disk."
msgstr ""
@@ -5266,33 +5397,33 @@ msgstr ""
msgid "Failed to write redirected save."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:447
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:448
msgid "Failed to write savefile to disk."
msgstr "セーブファイルのディスクへの書き込みに失敗"
-#: Source/Core/DiscIO/CompressedBlob.cpp:377 Source/Core/DiscIO/FileBlob.cpp:99
-#: Source/Core/DiscIO/WIABlob.cpp:2056
+#: Source/Core/DiscIO/CompressedBlob.cpp:382
+#: Source/Core/DiscIO/FileBlob.cpp:104 Source/Core/DiscIO/WIABlob.cpp:2062
msgid ""
"Failed to write the output file \"{0}\".\n"
"Check that you have enough space available on the target drive."
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:617
-#: Source/Core/DolphinQt/GameList/GameList.cpp:645
-#: Source/Core/DolphinQt/GameList/GameList.cpp:840
-#: Source/Core/DolphinQt/MenuBar.cpp:1074
+#: Source/Core/DolphinQt/GameList/GameList.cpp:626
+#: Source/Core/DolphinQt/GameList/GameList.cpp:656
+#: Source/Core/DolphinQt/GameList/GameList.cpp:853
+#: Source/Core/DolphinQt/MenuBar.cpp:1056
msgid "Failure"
msgstr "失敗"
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:183
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:184
msgid "Fair Input Delay"
msgstr "Fair Input Delay"
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:199
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:200
msgid "Fallback Region"
msgstr "Fallback Region"
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:210
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:211
msgid "Fallback Region:"
msgstr "Fallback Region:"
@@ -5316,17 +5447,21 @@ msgstr ""
msgid "Field of View"
msgstr "視野角(Field of View)"
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:233
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:235
msgid "Figure Number:"
msgstr ""
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:380
+msgid "Figure type"
+msgstr ""
+
#: Source/Core/DolphinQt/Config/InfoWidget.cpp:46
msgid "File Details"
msgstr "ファイル情報"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:991
+#: Source/Core/DolphinQt/GameList/GameList.cpp:1005
#: Source/Core/DolphinQt/GameList/GameListModel.cpp:229
-#: Source/Core/DolphinQt/MenuBar.cpp:652
+#: Source/Core/DolphinQt/MenuBar.cpp:644
msgid "File Format"
msgstr "ファイル形式"
@@ -5338,20 +5473,20 @@ msgstr "ファイル形式:"
msgid "File Info"
msgstr "ファイル情報"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:986
+#: Source/Core/DolphinQt/GameList/GameList.cpp:1000
#: Source/Core/DolphinQt/GameList/GameListModel.cpp:223
-#: Source/Core/DolphinQt/MenuBar.cpp:647
+#: Source/Core/DolphinQt/MenuBar.cpp:639
msgid "File Name"
msgstr "ファイル名"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:987
+#: Source/Core/DolphinQt/GameList/GameList.cpp:1001
#: Source/Core/DolphinQt/GameList/GameListModel.cpp:225
-#: Source/Core/DolphinQt/MenuBar.cpp:648
+#: Source/Core/DolphinQt/MenuBar.cpp:640
msgid "File Path"
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:990
-#: Source/Core/DolphinQt/MenuBar.cpp:651
+#: Source/Core/DolphinQt/GameList/GameList.cpp:1004
+#: Source/Core/DolphinQt/MenuBar.cpp:643
msgid "File Size"
msgstr "ファイルサイズ"
@@ -5359,15 +5494,15 @@ msgstr "ファイルサイズ"
msgid "File Size:"
msgstr "ファイルサイズ:"
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:349
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:352
msgid "File contained no codes."
msgstr "コードを含まないファイルです"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:149
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:150
msgid "Filename"
msgstr "ファイル名"
-#: Source/Core/DiscIO/CompressedBlob.cpp:289
+#: Source/Core/DiscIO/CompressedBlob.cpp:294
msgid "Files opened, ready to compress."
msgstr "圧縮処理の待機中です..."
@@ -5377,12 +5512,12 @@ msgid ""
"{1}"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:833
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:835
msgid "Filesize does not match any known GameCube Memory Card size."
msgstr ""
"ファイルサイズがどの種類のゲームキューブメモリカードにも適合しなかったため"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:836
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:838
msgid "Filesize in header mismatches actual card size."
msgstr "Filesize in header mismatches actual card size."
@@ -5390,7 +5525,7 @@ msgstr "Filesize in header mismatches actual card size."
msgid "Filesystem"
msgstr "構造"
-#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:102
+#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:103
msgid "Filters"
msgstr "フィルタ"
@@ -5406,7 +5541,7 @@ msgstr "Find &Previous"
msgid "Finish Calibration"
msgstr "キャリブレーション終了"
-#: Source/Core/DolphinQt/WiiUpdate.cpp:109
+#: Source/Core/DolphinQt/WiiUpdate.cpp:110
msgid ""
"Finishing the update...\n"
"This can take a while."
@@ -5416,19 +5551,19 @@ msgstr ""
#. i18n: One of the elements in the Skylanders games. Japanese: 火. For official translations
#. in other languages, check the SuperChargers manual at https://support.activision.com/manuals
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:333
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:349
msgid "Fire"
msgstr ""
-#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:40
+#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:41
msgid "First Person"
msgstr "First Person"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:127
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:128
msgid "Fix Checksums"
msgstr "チェックサムを修正"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:690
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:691
msgid "Fix Checksums Failed"
msgstr "チェックサムの修正に失敗"
@@ -5438,7 +5573,7 @@ msgstr "Fixed Alignment"
#. i18n: These are the kinds of flags that a CPU uses (e.g. carry),
#. not the kinds of flags that represent e.g. countries
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:166
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167
#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:87
msgid "Flags"
msgstr "Flags"
@@ -5447,12 +5582,12 @@ msgstr "Flags"
#. i18n: Floating-point (non-integer) number
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:138
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:198
-#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:152
+#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:153
#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97
msgid "Float"
msgstr "Float"
-#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:565
+#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:566
msgid "Follow &branch"
msgstr "Follow &branch"
@@ -5472,35 +5607,35 @@ msgid ""
"\">refer to this page
."
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:57
+#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:58
msgid "Force 16:9"
msgstr "強制的に 16:9 にする"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:117
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:152
msgid "Force 24-Bit Color"
msgstr "強制24bitカラー化"
-#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:57
+#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:58
msgid "Force 4:3"
msgstr "強制的に 4:3 にする"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:96
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:115
msgid "Force Linear"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:103
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:122
msgid "Force Linear and 16x Anisotropic"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:97
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:116
msgid "Force Linear and 2x Anisotropic"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:99
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:118
msgid "Force Linear and 4x Anisotropic"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:101
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:120
msgid "Force Linear and 8x Anisotropic"
msgstr ""
@@ -5508,7 +5643,7 @@ msgstr ""
msgid "Force Listen Port:"
msgstr "接続待ちポートを次の番号で固定:"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:95
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:114
msgid "Force Nearest"
msgstr ""
@@ -5520,7 +5655,7 @@ msgstr ""
msgid "Forced on because %1 doesn't support geometry shaders."
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:474
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:556
msgid ""
"Forces the game to output graphics for any aspect ratio. Use with \"Aspect "
"Ratio\" set to \"Force 16:9\" to force 4:3-only games to run at 16:9."
@@ -5536,7 +5671,7 @@ msgstr ""
"い。
よく分からなければ、チェックを入れないでくださ"
"い。"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:503
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:585
msgid ""
"Forces the game to render the RGB color channels in 24-bit, thereby "
"increasing quality by reducing color banding.
Has no impact on "
@@ -5548,7 +5683,7 @@ msgstr ""
"
잘 모르겠으면, 체크 해제해 두세요."
"dolphin_emphasis>"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:508
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:590
msgid ""
"Disables the blending of adjacent rows when copying the EFB. This is known "
"in some games as \"deflickering\" or \"smoothing\".
Disabling the "
@@ -3632,7 +3787,7 @@ msgstr ""
"의 그래픽 이슈들을 일으킵니다.
잘 모르겠으면, 체크"
"해 두세요."
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:96
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:97
msgid "Disc"
msgstr "디스크"
@@ -3671,25 +3826,25 @@ msgstr "거리"
msgid "Distance of travel from neutral position."
msgstr "중립 위치에서 이동 거리"
-#: Source/Core/DolphinQt/Main.cpp:259
+#: Source/Core/DolphinQt/Main.cpp:264
msgid "Do you authorize Dolphin to report information to Dolphin's developers?"
msgstr "돌핀이 정보를 돌핀 개발자들에게 보고하도록 허가하시겠습니까?"
-#: Source/Core/DolphinQt/MainWindow.cpp:1692
+#: Source/Core/DolphinQt/MainWindow.cpp:1712
msgid "Do you want to add \"%1\" to the list of Game Paths?"
msgstr "\"%1\" 를 게임 경로들의 목록에 추가하고 싶습니까?"
-#: Source/Core/DolphinQt/MenuBar.cpp:1241
+#: Source/Core/DolphinQt/MenuBar.cpp:1227
msgid "Do you want to clear the list of symbol names?"
msgstr "부호 이름 목록을 청소할까요?"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:658
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:659
#, c-format
msgctxt ""
msgid "Do you want to delete the %n selected save file(s)?"
msgstr "선택된 저장 파일 %n 을 삭제하고 싶습니까?"
-#: Source/Core/DolphinQt/MainWindow.cpp:933
+#: Source/Core/DolphinQt/MainWindow.cpp:935
msgid "Do you want to stop the current emulation?"
msgstr "에뮬레이션을 중단하고 싶습니까?"
@@ -3701,35 +3856,35 @@ msgstr "NAND 고치기를 시도하고 싶습니까?"
msgid "Dolby Pro Logic II Decoder"
msgstr "돌비 프로 로직 II 디코더"
-#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:219
-#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:230
+#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:215
+#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:226
msgid "Dolphin FIFO Log (*.dff)"
msgstr "돌핀 FIFO 로그 (*.dff)"
-#: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:327
+#: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:326
msgid "Dolphin Game Mod Preset"
msgstr "돌핀 게임 모드 프리셋"
-#: Source/Core/DolphinQt/MenuBar.cpp:1536
-#: Source/Core/DolphinQt/MenuBar.cpp:1553
-#: Source/Core/DolphinQt/MenuBar.cpp:1572
+#: Source/Core/DolphinQt/MenuBar.cpp:1523
+#: Source/Core/DolphinQt/MenuBar.cpp:1540
+#: Source/Core/DolphinQt/MenuBar.cpp:1559
msgid "Dolphin Map File (*.map)"
msgstr "돌핀 맵 파일 (*.map)"
-#: Source/Core/DolphinQt/MenuBar.cpp:73
+#: Source/Core/DolphinQt/MenuBar.cpp:74
msgid "Dolphin Signature CSV File"
msgstr "돌핀 서명 CSV 파일"
-#: Source/Core/DolphinQt/MenuBar.cpp:73
+#: Source/Core/DolphinQt/MenuBar.cpp:74
msgid "Dolphin Signature File"
msgstr "돌핀 서명 파일"
-#: Source/Core/DolphinQt/MainWindow.cpp:1772
-#: Source/Core/DolphinQt/MainWindow.cpp:1843
+#: Source/Core/DolphinQt/MainWindow.cpp:1823
+#: Source/Core/DolphinQt/MainWindow.cpp:1894
msgid "Dolphin TAS Movies (*.dtm)"
msgstr "돌핀 TAS 무비 (*.dtm)"
-#: Source/Core/DolphinQt/ConvertDialog.cpp:326
+#: Source/Core/DolphinQt/ConvertDialog.cpp:327
msgid ""
"Dolphin can't convert NKit files to non-NKit files. Converting an NKit file "
"in Dolphin will result in another NKit file.\n"
@@ -3747,7 +3902,7 @@ msgstr ""
"\n"
"아무튼 계속 하고 싶습니까?"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:279
+#: Source/Core/DolphinQt/GameList/GameList.cpp:280
msgid ""
"Dolphin could not find any GameCube/Wii ISOs or WADs.\n"
"Double-click here to set a games directory..."
@@ -3755,7 +3910,7 @@ msgstr ""
"돌핀이 어떠한 게임큐브/Wii ISO나 WAD를 찾을 수 없습니다.\n"
"게임 디렉토리를 설정하려면 여기를 더블클릭하세요..."
-#: Source/Core/DolphinQt/ConvertDialog.cpp:526
+#: Source/Core/DolphinQt/ConvertDialog.cpp:529
msgid "Dolphin failed to complete the requested action."
msgstr "돌핀이 요청된 액션 완수에 실패했습니다."
@@ -3767,7 +3922,7 @@ msgstr "돌핀이 요청된 액션 완수에 실패했습니다."
msgid "Dolphin is a free and open-source GameCube and Wii emulator."
msgstr "돌핀은 무료이고 오픈-소스 게임큐브 및 Wii 에뮬레이터입니다."
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:998
msgid "Dolphin is too old for traversal server"
msgstr "횡단 서버에 비해 돌핀이 너무 구 버전입니다."
@@ -3783,7 +3938,7 @@ msgstr ""
msgid "Dolphin is unable to verify unlicensed discs."
msgstr "돌핀은 라이슨스되지 않은 디스크들을 검증할 수 없습니다."
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:217
msgid ""
"Dolphin will use this for titles whose region cannot be determined "
"automatically."
@@ -3799,15 +3954,15 @@ msgstr "돌핀의 치트 시스템이 현재 꺼졌습니다."
msgid "Domain"
msgstr "도메인"
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:193
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:194
msgid "Don't Update"
msgstr "업데이트 안함"
-#: Source/Core/DolphinQt/NKitWarningDialog.cpp:53
+#: Source/Core/DolphinQt/NKitWarningDialog.cpp:56
msgid "Don't show this again"
msgstr "이것을 다시 보여주지마세요"
-#: Source/Core/DiscIO/CompressedBlob.cpp:369
+#: Source/Core/DiscIO/CompressedBlob.cpp:374
msgid "Done compressing disc image."
msgstr "디스크 이미지 압축이 완료되었습니다."
@@ -3820,37 +3975,37 @@ msgstr "문들이 잠겼습니다"
#. i18n: A double precision floating point number
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:139
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:199
-#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:154
+#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:155
msgid "Double"
msgstr "더블"
#: Source/Core/Core/FreeLookManager.cpp:89
#: Source/Core/Core/HW/WiimoteEmu/Extension/Guitar.cpp:80
#: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:35
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:43
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:44
#: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:21
#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUAccelerometer.cpp:19
#: Source/Core/InputCommon/ControllerEmu/ControllerEmu.h:24
msgid "Down"
msgstr "아래쪽"
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:86
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:87
msgid "Download Codes"
msgstr "코드 다운로드"
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:88
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:89
msgid "Download Codes from the WiiRD Database"
msgstr "WiiRD 데이터베이스에서 코드를 다운로드"
-#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:148
+#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:153
msgid "Download Game Covers from GameTDB.com for Use in Grid Mode"
msgstr "GameTDB.com 에서 그리드 모드에 사용할 게임커버를 다운로드"
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:370
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:373
msgid "Download complete"
msgstr "다운로드 완료"
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:371
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:374
msgid "Downloaded %1 codes. (added %2)"
msgstr "%1 코드들이 다운로드됨. (%2 추가됨)"
@@ -3873,7 +4028,7 @@ msgstr "듀얼 코어"
msgid "Dual View"
msgstr "듀얼 뷰"
-#: Source/Core/Core/HW/EXI/EXI_Device.h:95
+#: Source/Core/Core/HW/EXI/EXI_Device.h:94
msgid "Dummy"
msgstr "더미"
@@ -3893,7 +4048,7 @@ msgstr "가짜가상메모리 덤프(&F)"
msgid "Dump &MRAM"
msgstr "MRAM 덤프(&M)"
-#: Source/Core/DolphinQt/MenuBar.cpp:814
+#: Source/Core/DolphinQt/MenuBar.cpp:806
msgid "Dump Audio"
msgstr "오디오 덤프"
@@ -3905,7 +4060,7 @@ msgstr "기반 텍스처 덤프"
msgid "Dump EFB Target"
msgstr "EFB 타겟 덤프"
-#: Source/Core/DolphinQt/MenuBar.cpp:808
+#: Source/Core/DolphinQt/MenuBar.cpp:800
msgid "Dump Frames"
msgstr "프레임들 덤프"
@@ -3985,12 +4140,12 @@ msgid "Duration of Turbo Button Release (frames):"
msgstr "터보 버튼 떼기의 기간 (프레임)"
#: Source/Core/DiscIO/Enums.cpp:95
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174
msgid "Dutch"
msgstr "네덜란드어"
-#: Source/Core/DolphinQt/MenuBar.cpp:215
+#: Source/Core/DolphinQt/MenuBar.cpp:207
msgid "E&xit"
msgstr "종료(&x)"
@@ -4009,7 +4164,7 @@ msgstr ""
"-- 최근에 돌핀 배포를 업그레이드했다면, 윈도우가 새로운 드라이버를 인식하기 "
"위해 재부팅이 필요합니다."
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:185
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:186
msgid ""
"Each player sends their own inputs to the game, with equal buffer size for "
"all players, configured by the host.\n"
@@ -4026,9 +4181,9 @@ msgstr "빠른 메모리 업데이트"
#. i18n: One of the elements in the Skylanders games. Japanese: 土. For official translations
#. in other languages, check the SuperChargers manual at https://support.activision.com/manuals
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:336
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:352
msgid "Earth"
-msgstr ""
+msgstr "지구"
#: Source/Core/UICommon/NetPlayIndex.cpp:249
msgid "East Asia"
@@ -4039,7 +4194,7 @@ msgstr "동 아시아"
msgid "Edit Breakpoint"
msgstr "중단점 수정"
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:426
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:430
msgid "Edit..."
msgstr "편집..."
@@ -4073,35 +4228,35 @@ msgstr "디스크 꺼내기"
#. i18n: Elements are a trait of Skylanders figures. For official translations of this term,
#. check the Skylanders SuperChargers manual at https://support.activision.com/manuals
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:289
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:300
msgid "Element"
-msgstr ""
+msgstr "요소"
#: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:41
msgid "Embedded Frame Buffer (EFB)"
msgstr "내장형 프레임 버퍼 (EFB)"
-#: Source/Core/Core/State.cpp:541
+#: Source/Core/Core/State.cpp:629
msgid "Empty"
msgstr "비어있음"
-#: Source/Core/Core/Core.cpp:246
+#: Source/Core/Core/Core.cpp:247
msgid "Emu Thread already running"
msgstr "에뮬 쓰레드가 이미 구동중임"
#: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:91
msgid "Emulate Disc Speed"
-msgstr ""
+msgstr "디스크 속도 에뮬"
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:60
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:61
msgid "Emulate Infinity Base"
-msgstr ""
+msgstr "무한대 기반 에뮬"
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:146
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:157
msgid "Emulate Skylander Portal"
msgstr "쓰카이 포탈 에뮬레이트"
-#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:110
+#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:111
msgid "Emulate the Wii's Bluetooth adapter"
msgstr "Wii 의 블루투스 어댑터를 에뮬"
@@ -4110,12 +4265,14 @@ msgid ""
"Emulate the disc speed of real hardware. Disabling can cause instability. "
"Defaults to True"
msgstr ""
+"실제 하드웨어의 디스크 속도를 에뮬합니다. 비활성화는 불안정을 유발할 수 있습"
+"니다. 기본 값은 True"
-#: Source/Core/DolphinQt/MenuBar.cpp:230
+#: Source/Core/DolphinQt/MenuBar.cpp:222
msgid "Emulated USB Devices"
-msgstr ""
+msgstr "에뮬된 USB 장치들"
-#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:141
+#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:142
msgid "Emulated Wii Remote"
msgstr "에뮬된 Wii 리모트"
@@ -4138,12 +4295,12 @@ msgstr "에뮬레이션 속도"
msgid "Emulation must be started to record."
msgstr "녹화하려면 에뮬레이션이 시작되어야 합니다"
-#: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:29
-#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:33
+#: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:30
+#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:34
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:120
-#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:129
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:402
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:419
+#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:130
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:406
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:423
msgid "Enable"
msgstr "활성"
@@ -4151,45 +4308,53 @@ msgstr "활성"
msgid "Enable API Validation Layers"
msgstr "API 검증 레이어 활성화"
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:83
+msgid "Enable Achievement Badges"
+msgstr ""
+
#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:60
msgid "Enable Achievements"
-msgstr ""
+msgstr "달성 활성화"
#: Source/Core/DolphinQt/Settings/AudioPane.cpp:142
msgid "Enable Audio Stretching"
msgstr "오디오 늘림 활성"
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:142
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:143
msgid "Enable Cheats"
msgstr "치트 활성화"
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:155
+#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:53
+msgid "Enable Controller Inpu&t"
+msgstr ""
+
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:161
msgid "Enable Custom RTC"
msgstr "사용자 지정 RTC 켜기"
-#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:149
+#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:154
msgid "Enable Debugging UI"
-msgstr ""
+msgstr "디버깅 UI 활성화"
#: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:87
msgid "Enable Dual Core"
msgstr "듀얼 코어 활성화"
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:139
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:140
msgid "Enable Dual Core (speedup)"
msgstr "듀얼 코어 활성화 (속도 상승)"
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:88
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:94
msgid "Enable Emulated CPU Clock Override"
msgstr "에뮬된 CPU 클럭 오버라이드 활성화"
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:118
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:124
msgid "Enable Emulated Memory Size Override"
msgstr "에뮬된 메모리 크기 오버라이드 활성화"
-#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:78
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:88
msgid "Enable Encore Achievements"
-msgstr ""
+msgstr "재 달성 활성화"
#: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:89
msgid "Enable FPRF"
@@ -4201,63 +4366,76 @@ msgstr "그래픽 모드 활성화"
#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:62
msgid "Enable Leaderboards"
-msgstr ""
+msgstr "리더보드 활성화"
#: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:88
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:66
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:68
msgid "Enable MMU"
msgstr "MMU 활성화"
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:78
+msgid "Enable Progress Notifications"
+msgstr ""
+
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:156
msgid "Enable Progressive Scan"
msgstr "프로그레시브 스캔 활성화"
#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:45
msgid "Enable RetroAchievements.org Integration"
-msgstr ""
+msgstr "RetroAchievements.org 통합 활성화"
#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:66
msgid "Enable Rich Presence"
-msgstr ""
+msgstr "풍부한 존재 활성화"
#: Source/Core/DolphinQt/Config/Mapping/GCPadWiiUConfigDialog.cpp:39
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:353
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:352
msgid "Enable Rumble"
msgstr "진동 활성화"
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:157
msgid "Enable Screen Saver"
msgstr "화면 보호기 활성화"
-#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:113
+#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:114
msgid "Enable Speaker Data"
msgstr "스피커 데이터 활성화"
#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:72
msgid "Enable Unofficial Achievements"
-msgstr ""
+msgstr "비공식 달성 활성화"
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:230
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:231
msgid "Enable Usage Statistics Reporting"
msgstr "사용 통계 보고 활성화"
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158
msgid "Enable WiiConnect24 via WiiLink"
-msgstr ""
+msgstr "WiiLink 로 WiiConnect24 활성화"
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:81
msgid "Enable Wireframe"
msgstr "와이어프레임 활성화"
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:77
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:82
msgid "Enable Write-Back Cache (slow)"
msgstr "롸이트-백 캐시 활성화 (느림)"
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:85
+msgid ""
+"Enable achievement badges.
Displays icons for the player, game, and "
+"achievements. Simple visual option, but will require a small amount of extra "
+"memory and time to download the images."
+msgstr ""
+
#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:64
msgid ""
"Enable competing in RetroAchievements leaderboards.
Hardcore Mode "
"must be enabled to use."
msgstr ""
+"RetroAchievements 리더보드에서 경쟁을 활성화합니다.
사용하려면 하드코"
+"어 모드가 활성화 되어야만 합니다."
#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:68
msgid ""
@@ -4266,12 +4444,18 @@ msgid ""
"website. If this is disabled, the website will only report what game is "
"being played.
This has no bearing on Discord rich presence."
msgstr ""
+"RetroAchievements 웹사이트상에 자세한 풍부한 존재를 활성화합니다.
이것"
+"은 플레이어가 게임에서 무엇을 하고 있는지 웹사이트에 자세한 설명을 제공합니"
+"다. 이것이 비활성화 되면, 웹사이트는 무슨 게임이 플레이되고 있는지만 보고할 "
+"것입니다.
이것은 디스코드 풍부한 존재와 무관합니다."
#: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:107
msgid ""
"Enable emulated disc speed. Disabling this can cause crashes and other "
"problems in some games. (ON = Compatible, OFF = Unlocked)"
msgstr ""
+"에뮬된 디스크 속도를 켭니다. 이것을 비활성화하면 일부 게임에서 깨짐이나 다른 "
+"문제를 일으킬 수 있습니다. (켬 = 호환성, 끔 = 해제)"
#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:47
msgid ""
@@ -4280,18 +4464,31 @@ msgid ""
"account to use. Dolphin does not save your password locally and uses an API "
"token to maintain login."
msgstr ""
+"얻은 달성과 리더보드 경쟁을 위한 RetroAchievements 와 통합을 활성합니다."
+"
사용하려면 RetroAchievements 계정에 로그인 해야만 합니다. 돌핀은 로그"
+"인을 유지하기 위해 패스워드를 로컬로 저장하지 않고 API 토큰을 사용합니다."
#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:80
msgid ""
+"Enable progress notifications on achievements.
Displays a brief popup "
+"message whenever the player makes progress on an achievement that tracks an "
+"accumulated value, such as 60 out of 120 stars."
+msgstr ""
+
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:90
+msgid ""
"Enable unlocking achievements in Encore Mode.
Encore Mode re-enables "
"achievements the player has already unlocked on the site so that the player "
"will be notified if they meet the unlock conditions again, useful for custom "
"speedrun criteria or simply for fun."
msgstr ""
+"앙코르 모드에서 달성을 해제합니다.
앙코르 모드는 사이트에서 이미 해제"
+"된 달성을 재활성화해서 해제된 조건들을 다시 만나면 알림을 받을 수 있습니다, "
+"커스텀 스피드런에 유용 혹은 단순 재미용."
#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:61
msgid "Enable unlocking achievements. "
-msgstr ""
+msgstr "달성 해제 활성화. "
#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:74
msgid ""
@@ -4300,6 +4497,9 @@ msgid ""
"that have not been deemed official by RetroAchievements and may be useful "
"for testing or simply for fun."
msgstr ""
+"공식 뿐만아니라 비공식 달성 해제도 활성화합니다.
비공식 달성은 "
+"RetroAchievements에서 공식으로 간주되지 않은 옵션이나 미완료 달성이될 수 있으"
+"며 테스트용 또는 단순히 재미로 유용할 수 있습니다."
#: Source/Core/DolphinQt/Settings/AudioPane.cpp:97
msgid ""
@@ -4317,7 +4517,7 @@ msgstr ""
"부동 소수점 결과 플래그 계산을 켭니다, 소수의 게임들에서 필요합니다. (켬 = 호"
"환성, 끔 = 빠름)"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:514
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:596
msgid ""
"Enables detection of arbitrary mipmaps, which some games use for special "
"distance-based effects.
May have false positives that result in "
@@ -4334,15 +4534,13 @@ msgstr ""
"일 수도 있습니다. 이 특성은 GPU 텍스처 디코딩과는 호환되지 않습니다."
"
잘 모르겠으면, 체크해 두세요."
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:79
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:84
msgid ""
-"Enables emulation of the CPU write-back cache.\n"
-"Enabling will have a significant impact on performance.\n"
-"This should be left disabled unless absolutely needed."
+"Enables emulation of the CPU write-back cache. Enabling will have a "
+"significant impact on performance. This should be left disabled unless "
+"absolutely needed.
If unsure, leave this unchecked."
+""
msgstr ""
-"CPU 롸이트-백 캐시의 에뮬레이션을 활성화합니다.\n"
-"활성시 성능에 상당한 영향이 있을 것입니다.\n"
-"절대로 요구되는 경우가 아니라면 이것은 비활성으로 두어야합니다."
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:365
msgid ""
@@ -4366,7 +4564,7 @@ msgstr ""
"들은 이것과 아무런 이슈가 없습니다.
잘 모르겠으면, "
"체크 해제해 두세요."
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:522
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:604
msgid ""
"Enables scRGB HDR output (if supported by your graphics backend and "
"monitor). Fullscreen might be required.
This gives post process "
@@ -4375,6 +4573,12 @@ msgid ""
"
Note that games still render in SDR internally."
"
If unsure, leave this unchecked."
msgstr ""
+"scRGB HDR 출력 (그래픽 카드 백엔드와 모니터가 지원된다면) 을 활성화합니다. 전"
+"체화면이 필요할지 모릅니다.
이것은 후처리 쉐이더에 정확도를 위한 더 많"
+"은 공간을 제공합니다, \"AutoHDR\" 후-처리 쉐이더가 작동하도록 허용합니다, 그"
+"리고 PAL 과 NTSC-J 색 공간 전체 표현을 허용합니다.
게임들은 내부적으"
+"로 여전히 SDR 로 랜더하는 점을 알아두세요.
잘 모르겠"
+"으면, 체크 해제해 두세요."
#: Source/Core/DolphinQt/Settings/AudioPane.cpp:151
msgid "Enables stretching of the audio to match emulation speed."
@@ -4393,7 +4597,6 @@ msgstr ""
"dolphin_emphasis>"
#: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:100
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:68
msgid ""
"Enables the Memory Management Unit, needed for some games. (ON = Compatible, "
"OFF = Fast)"
@@ -4401,13 +4604,24 @@ msgstr ""
"일부 게임들에 필요한 메모리 관리 유닛을 활성화 합니다. (켬 = 호환성, 끔 = 빠"
"름)"
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:193
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:70
+msgid ""
+"Enables the Memory Management Unit, needed for some games. (ON = Compatible, "
+"OFF = Fast)
If unsure, leave this unchecked."
+"dolphin_emphasis>"
+msgstr ""
+
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190
msgid ""
"Enables the WiiLink service for WiiConnect24 channels.\n"
"WiiLink is an alternate provider for the discontinued WiiConnect24 Channels "
"such as the Forecast and Nintendo Channels\n"
"Read the Terms of Service at: https://www.wiilink24.com/tos"
msgstr ""
+"WiiConnect24 채널들을 위한 WiiLink 서비스를 활성화합니다.\n"
+"WiiLink 는 Forecast 와 닌텐도 채널들과 같은 중단된 WiiConnect24 채널들을 위"
+"한 대체 제공자입니다.\n"
+"이곳에서 서비스 설명을 읽으세요: https://www.wiilink24.com/tos"
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:298
msgid ""
@@ -4434,7 +4648,7 @@ msgstr ""
msgid "Encoding"
msgstr "인코딩"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:615
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:616
msgid ""
"Encountered the following errors while opening save files:\n"
"%1\n"
@@ -4451,12 +4665,12 @@ msgid "Enet Didn't Initialize"
msgstr "Enet이 초기화되지 않았습니다."
#: Source/Core/DiscIO/Enums.cpp:80
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:85
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:169
msgid "English"
msgstr "영어"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:59
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:61
#: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:61
msgid "Enhancements"
msgstr "향상"
@@ -4487,84 +4701,84 @@ msgstr "패스워드 입력"
msgid "Enter the DNS server to use:"
msgstr "사용할 DNS 서버를 입력:"
-#: Source/Core/DolphinQt/MenuBar.cpp:1300
+#: Source/Core/DolphinQt/MenuBar.cpp:1286
msgid "Enter the RSO module address:"
msgstr "RSO 모듈 주소를 입력:"
#: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:194
#: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:250
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:261
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:262
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386
#: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:265
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:343
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:349
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:346
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:352
#: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:46
-#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:521
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:256
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:295
-#: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:232
-#: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:259
-#: Source/Core/DolphinQt/ConvertDialog.cpp:424
-#: Source/Core/DolphinQt/ConvertDialog.cpp:471
-#: Source/Core/DolphinQt/ConvertDialog.cpp:525
+#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:539
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:255
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:296
+#: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:229
+#: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:256
+#: Source/Core/DolphinQt/ConvertDialog.cpp:426
+#: Source/Core/DolphinQt/ConvertDialog.cpp:473
+#: Source/Core/DolphinQt/ConvertDialog.cpp:528
#: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:255
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:638
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:644
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:653
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:665
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:684
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:690
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:705
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:713
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:737
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:744
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:637
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:643
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:652
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:664
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:683
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:689
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:704
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:712
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:736
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:743
#: Source/Core/DolphinQt/Debugger/RegisterColumn.cpp:86
#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:282
#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:431
-#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:241
-#: Source/Core/DolphinQt/GBAWidget.cpp:576
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:346
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:376
-#: Source/Core/DolphinQt/Main.cpp:209 Source/Core/DolphinQt/Main.cpp:225
-#: Source/Core/DolphinQt/Main.cpp:232 Source/Core/DolphinQt/MainWindow.cpp:295
-#: Source/Core/DolphinQt/MainWindow.cpp:303
-#: Source/Core/DolphinQt/MainWindow.cpp:1108
-#: Source/Core/DolphinQt/MainWindow.cpp:1494
-#: Source/Core/DolphinQt/MainWindow.cpp:1501
-#: Source/Core/DolphinQt/MainWindow.cpp:1561
-#: Source/Core/DolphinQt/MainWindow.cpp:1568
-#: Source/Core/DolphinQt/MainWindow.cpp:1670
-#: Source/Core/DolphinQt/MenuBar.cpp:1204
-#: Source/Core/DolphinQt/MenuBar.cpp:1284
+#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:237
+#: Source/Core/DolphinQt/GBAWidget.cpp:578
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:347
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:377
+#: Source/Core/DolphinQt/Main.cpp:211 Source/Core/DolphinQt/Main.cpp:227
+#: Source/Core/DolphinQt/Main.cpp:234 Source/Core/DolphinQt/MainWindow.cpp:297
+#: Source/Core/DolphinQt/MainWindow.cpp:305
+#: Source/Core/DolphinQt/MainWindow.cpp:1110
+#: Source/Core/DolphinQt/MainWindow.cpp:1507
+#: Source/Core/DolphinQt/MainWindow.cpp:1514
+#: Source/Core/DolphinQt/MainWindow.cpp:1574
+#: Source/Core/DolphinQt/MainWindow.cpp:1581
+#: Source/Core/DolphinQt/MainWindow.cpp:1690
+#: Source/Core/DolphinQt/MenuBar.cpp:1190
+#: Source/Core/DolphinQt/MenuBar.cpp:1270
+#: Source/Core/DolphinQt/MenuBar.cpp:1293
#: Source/Core/DolphinQt/MenuBar.cpp:1307
-#: Source/Core/DolphinQt/MenuBar.cpp:1321
-#: Source/Core/DolphinQt/MenuBar.cpp:1352
-#: Source/Core/DolphinQt/MenuBar.cpp:1376
-#: Source/Core/DolphinQt/MenuBar.cpp:1597
-#: Source/Core/DolphinQt/MenuBar.cpp:1608
-#: Source/Core/DolphinQt/MenuBar.cpp:1620
-#: Source/Core/DolphinQt/MenuBar.cpp:1642
-#: Source/Core/DolphinQt/MenuBar.cpp:1668
-#: Source/Core/DolphinQt/MenuBar.cpp:1722
-#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:315
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:477
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:738
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:980
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1098
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1108
-#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:334
-#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:340
-#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:347
+#: Source/Core/DolphinQt/MenuBar.cpp:1339
+#: Source/Core/DolphinQt/MenuBar.cpp:1363
+#: Source/Core/DolphinQt/MenuBar.cpp:1584
+#: Source/Core/DolphinQt/MenuBar.cpp:1595
+#: Source/Core/DolphinQt/MenuBar.cpp:1607
+#: Source/Core/DolphinQt/MenuBar.cpp:1629
+#: Source/Core/DolphinQt/MenuBar.cpp:1655
+#: Source/Core/DolphinQt/MenuBar.cpp:1709
+#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:316
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:479
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:740
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:982
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1100
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1110
+#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:332
+#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:338
+#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:345
#: Source/Core/DolphinQt/RenderWidget.cpp:123
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:203
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:224
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:423
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:439
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:460
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:481
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:525
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:562
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:585
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:204
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:225
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:433
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:449
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:470
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:491
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:535
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:572
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:595
#: Source/Core/DolphinQt/Translation.cpp:322
msgid "Error"
msgstr "오류"
@@ -4573,13 +4787,13 @@ msgstr "오류"
msgid "Error Opening Adapter: %1"
msgstr "어댑터 열기 에러: %1"
-#: Source/Core/Core/NetPlayServer.cpp:1493
+#: Source/Core/Core/NetPlayServer.cpp:1497
msgid "Error collecting save data!"
msgstr "저장 데이터 수집 에러!"
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:260
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:526
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:533
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:262
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:613
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:620
msgid "Error converting value"
msgstr "값 변환 에러"
@@ -4592,15 +4806,15 @@ msgstr ""
msgid "Error obtaining session list: %1"
msgstr "에러가 있는 세션 목록: %1"
-#: Source/Core/DolphinQt/MainWindow.cpp:296
+#: Source/Core/DolphinQt/MainWindow.cpp:298
msgid "Error occurred while loading some texture packs"
msgstr "일부 텍스처 팩을 로딩하는 중에 에러가 발생했습니다"
-#: Source/Core/Core/NetPlayClient.cpp:1847
+#: Source/Core/Core/NetPlayClient.cpp:1851
msgid "Error processing codes."
msgstr "코드들 처리 에러."
-#: Source/Core/Core/NetPlayClient.cpp:1819
+#: Source/Core/Core/NetPlayClient.cpp:1823
msgid "Error processing data."
msgstr "데이터 처리 에러."
@@ -4608,11 +4822,11 @@ msgstr "데이터 처리 에러."
msgid "Error reading file: {0}"
msgstr "파일 읽기 에러: {0}"
-#: Source/Core/Core/NetPlayServer.cpp:1529
+#: Source/Core/Core/NetPlayServer.cpp:1533
msgid "Error synchronizing cheat codes!"
msgstr "치트 코드들 동기화 에러!"
-#: Source/Core/Core/NetPlayServer.cpp:1515
+#: Source/Core/Core/NetPlayServer.cpp:1519
msgid "Error synchronizing save data!"
msgstr "저장 데이터 동기화 에러!"
@@ -4689,7 +4903,7 @@ msgstr "{1} 파티션에 {0} 사용되지 않은 블락들에서 에러들이
msgid "Euphoria"
msgstr "유포리아"
-#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:282
+#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:274
#: Source/Core/UICommon/NetPlayIndex.cpp:249
msgid "Europe"
msgstr "유럽"
@@ -4732,11 +4946,11 @@ msgstr ""
msgid "Excluded: %1"
msgstr "제외됨: %1"
-#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:73
+#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:72
msgid "Excluded: 0"
msgstr "제외됨: 0"
-#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:107
+#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108
msgid "Exclusive Ubershaders"
msgstr "전용 우버쉐이더"
@@ -4784,14 +4998,14 @@ msgstr "변수 이름을 예상했습니다."
msgid "Experimental"
msgstr "실험적"
-#: Source/Core/DolphinQt/MenuBar.cpp:294
+#: Source/Core/DolphinQt/MenuBar.cpp:286
msgid "Export All Wii Saves"
msgstr "모든 Wii 저장을 내보내기"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:422
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:447
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:492
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:499
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:423
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:448
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:493
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:500
msgid "Export Failed"
msgstr "내보내기를 실패했습니다"
@@ -4799,42 +5013,42 @@ msgstr "내보내기를 실패했습니다"
msgid "Export Recording"
msgstr "입력 기록 내보내기"
-#: Source/Core/DolphinQt/MenuBar.cpp:753
+#: Source/Core/DolphinQt/MenuBar.cpp:745
msgid "Export Recording..."
msgstr "입력 기록 내보내기..."
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:437
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:438
msgid "Export Save File"
msgstr "저장 파일 내보내기"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:454
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:455
msgid "Export Save Files"
msgstr "저장 파일들 내보내기"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:470
+#: Source/Core/DolphinQt/GameList/GameList.cpp:473
msgid "Export Wii Save"
msgstr "Wii 저장 내보내기"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:388
+#: Source/Core/DolphinQt/GameList/GameList.cpp:389
msgid "Export Wii Saves"
msgstr "Wii 저장들 내보내기"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:117
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:118
msgid "Export as .&gcs..."
msgstr ".gcs 로 내보내기... (&g)"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:118
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:119
msgid "Export as .&sav..."
msgstr ".sav 로 내보내기... (&s)"
-#: Source/Core/DolphinQt/MenuBar.cpp:1133
+#: Source/Core/DolphinQt/MenuBar.cpp:1115
#, c-format
msgctxt ""
msgid "Exported %n save(s)"
msgstr "%n 저장(들)을 내보냈습니다"
#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:268
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:432
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:434
#: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:47
msgid "Extension"
msgstr "확장"
@@ -4847,7 +5061,7 @@ msgstr "확장 모션 입력"
msgid "Extension Motion Simulation"
msgstr "확장 모션 시뮬레이션"
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:520
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:522
msgid "External"
msgstr "외부의"
@@ -4855,35 +5069,35 @@ msgstr "외부의"
msgid "External Frame Buffer (XFB)"
msgstr "외부 프레임 버퍼 (XFB)"
-#: Source/Core/DolphinQt/MenuBar.cpp:271
+#: Source/Core/DolphinQt/MenuBar.cpp:263
msgid "Extract Certificates from NAND"
msgstr "NAND 에서 증명서 추출"
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:268
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:269
msgid "Extract Entire Disc..."
msgstr "전체 디스크 압축 풀기..."
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:292
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:293
msgid "Extract Entire Partition..."
msgstr "전체 파티션 압축 풀기..."
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:299
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:300
msgid "Extract File..."
msgstr "파일 압축 풀기..."
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:241
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:242
msgid "Extract Files..."
msgstr "파일 압축 풀기..."
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:251
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:252
msgid "Extract System Data..."
msgstr "시스템 데이터 압축 풀기..."
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:355
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:356
msgid "Extracting All Files..."
msgstr "모든 파일을 압축 풀기..."
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:356
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357
msgid "Extracting Directory..."
msgstr "디렉토리 압축 풀기..."
@@ -4893,7 +5107,7 @@ msgid "FD"
msgstr "FD"
#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:37
-#: Source/Core/DolphinQt/MenuBar.cpp:228
+#: Source/Core/DolphinQt/MenuBar.cpp:220
msgid "FIFO Player"
msgstr "FIFO 플레이어"
@@ -4901,7 +5115,7 @@ msgstr "FIFO 플레이어"
msgid "Failed loading XML."
msgstr "XML 로딩에 실패했습니다."
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:347
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:348
msgid ""
"Failed opening memory card:\n"
"%1"
@@ -4909,11 +5123,11 @@ msgstr ""
"메모리 카드 열기에 실패했습니다:\n"
"%1"
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:454
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:456
msgid "Failed to add this session to the NetPlay index: %1"
msgstr "넷플레이 목록 : %1 에 이 세션을 추가하는데에 실패했습니다"
-#: Source/Core/DolphinQt/MenuBar.cpp:1669
+#: Source/Core/DolphinQt/MenuBar.cpp:1656
msgid "Failed to append to signature file '%1'"
msgstr "서명 파일 '%1' 에 덧붙이기에 실패했습니다."
@@ -4921,19 +5135,19 @@ msgstr "서명 파일 '%1' 에 덧붙이기에 실패했습니다."
msgid "Failed to claim interface for BT passthrough: {0}"
msgstr "블투 패스쓰루용 인터페이스 요청에 실패했습니다: {0}"
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:574
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:676
msgid "Failed to clear Skylander!"
msgstr "스카이랜더 클리어에 실패했습니다!"
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:575
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:677
msgid "Failed to clear the Skylander from slot(%1)!"
-msgstr ""
+msgstr "slot(%1) 에서 스카이랜더 클리어에 실패했습니다!"
#: Source/Core/DiscIO/VolumeVerifier.cpp:108
msgid "Failed to connect to Redump.org"
msgstr "Redump.org 연결에 실패했습니다"
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:981
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:983
msgid "Failed to connect to server: %1"
msgstr "서버 연결에 실패했습니다: %1"
@@ -4954,20 +5168,23 @@ msgstr "D3D12 글로벌 리소스 생성에 실패했습니다"
msgid "Failed to create DXGI factory"
msgstr "DXGI 팩토리 생성에 실패했습니다"
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:289
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:291
msgid "Failed to create Infinity file"
-msgstr ""
+msgstr "무한대 파일 생성에 실패했습니다"
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:678
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:798
msgid "Failed to create Skylander file!"
msgstr "스카이랜더 파일 생성에 실패했습니다!"
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:679
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:799
msgid ""
"Failed to create Skylander file:\n"
"%1\n"
"(Skylander may already be on the portal)"
msgstr ""
+"스카이랜더 파일 생성에 실패했습니다:\n"
+"%1\n"
+"(포탈에 스카이랜더가 이미 있을지도 모릅니다)"
#: Source/Core/Core/NetPlayClient.cpp:1292
msgid ""
@@ -4978,7 +5195,7 @@ msgstr "넷플레이 GBA{0} 저장 파일 삭제에 실패했습니다. 쓰기
msgid "Failed to delete NetPlay memory card. Verify your write permissions."
msgstr "넷플레이 메모리 카드를 삭제에 실패했습니다. 쓰기 권한을 검증하세요."
-#: Source/Core/DolphinQt/GameList/GameList.cpp:841
+#: Source/Core/DolphinQt/GameList/GameList.cpp:854
msgid "Failed to delete the selected file."
msgstr "선택된 파일 삭제에 실패했습니다."
@@ -4986,36 +5203,36 @@ msgstr "선택된 파일 삭제에 실패했습니다."
msgid "Failed to detach kernel driver for BT passthrough: {0}"
msgstr "블투 패스쓰루용 커널 드라이버를 분리하는데에 실패했습니다: {0}"
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:343
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:346
msgid "Failed to download codes."
msgstr "코드 다운로드에 실패했습니다."
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:738
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:737
msgid "Failed to dump %1: Can't open file"
msgstr "덤프에 실패했습니다 %1: 파일을 열 수 없습니다"
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:745
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:744
msgid "Failed to dump %1: Failed to write to file"
msgstr "덤프에 실패했습니다 %1: 파일에 쓰기를 실패했습니다"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:488
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:489
msgctxt ""
msgid "Failed to export %n out of %1 save file(s)."
msgstr "%1 저장 파일(들)로부터 %n 를 내보내기에 실패했습니다 ."
-#: Source/Core/DolphinQt/GameList/GameList.cpp:576
+#: Source/Core/DolphinQt/GameList/GameList.cpp:584
msgid "Failed to export the following save files:"
msgstr "다음 저장 파일들을 내보내기에 실패했습니다:"
-#: Source/Core/DolphinQt/MenuBar.cpp:1204
+#: Source/Core/DolphinQt/MenuBar.cpp:1190
msgid "Failed to extract certificates from NAND"
msgstr "NAND 에서 증명서 추출에 실패했습니다"
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386
msgid "Failed to extract file."
msgstr "파일 압축 풀기에 실패했습니다."
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:261
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:262
msgid "Failed to extract system data."
msgstr "시스템 데이터 압축 풀기에 실패했습니다."
@@ -5033,18 +5250,18 @@ msgstr ""
msgid "Failed to find one or more D3D symbols"
msgstr "하나 이상의 D3D 부호 찾기에 실패했습니다"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:565
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:566
msgid "Failed to import \"%1\"."
msgstr "\"%1\" 가져오기에 실패했습니다."
-#: Source/Core/DolphinQt/MenuBar.cpp:1109
+#: Source/Core/DolphinQt/MenuBar.cpp:1091
msgid ""
"Failed to import save file. Please launch the game once, then try again."
msgstr ""
"저장 파일을 가져오기에 실패했습니다. 해당 게임을 한번 띄워주세요, 그리고 다"
"시 시도하세요."
-#: Source/Core/DolphinQt/MenuBar.cpp:1103
+#: Source/Core/DolphinQt/MenuBar.cpp:1085
msgid ""
"Failed to import save file. The given file appears to be corrupted or is not "
"a valid Wii save."
@@ -5052,7 +5269,7 @@ msgstr ""
"저장 파일 가져오기에 실패했습니다. 주어진 파일은 오염되었거나 적합한 Wii 저장"
"이 아닙니다."
-#: Source/Core/DolphinQt/MenuBar.cpp:1116
+#: Source/Core/DolphinQt/MenuBar.cpp:1098
msgid ""
"Failed to import save file. Your NAND may be corrupt, or something is "
"preventing access to files within it. Try repairing your NAND (Tools -> "
@@ -5062,7 +5279,7 @@ msgstr ""
"것이 그 안에 파일들에 액세스를 막고 있습니다. NAND (도구 -> NAND 관리 -> "
"NAND 체크...) 를 고쳐 보세요, 그런 후 저장을 다시 가져오세요."
-#: Source/Core/DolphinQt/MainWindow.cpp:1108
+#: Source/Core/DolphinQt/MainWindow.cpp:1110
msgid "Failed to init core"
msgstr "코어 인식에 실패했습니다"
@@ -5080,16 +5297,16 @@ msgstr ""
msgid "Failed to initialize renderer classes"
msgstr "렌더러 클래스 초기화에 실패했습니다"
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:204
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:205
msgid "Failed to install pack: %1"
msgstr "팩 설치에 실패했습니다: %1"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:619
-#: Source/Core/DolphinQt/MenuBar.cpp:1074
+#: Source/Core/DolphinQt/GameList/GameList.cpp:628
+#: Source/Core/DolphinQt/MenuBar.cpp:1056
msgid "Failed to install this title to the NAND."
msgstr "NAND 에 이 타이틀 설치에 실패했습니다."
-#: Source/Core/DolphinQt/MainWindow.cpp:1594
+#: Source/Core/DolphinQt/MainWindow.cpp:1607
msgid ""
"Failed to listen on port %1. Is another instance of the NetPlay server "
"running?"
@@ -5097,8 +5314,8 @@ msgstr ""
"포트 %1 듣기에 실패했습니다. 구동 중인 다른 넷플레이 서버 인스턴스가 있습니"
"까?"
-#: Source/Core/DolphinQt/MenuBar.cpp:1321
-#: Source/Core/DolphinQt/MenuBar.cpp:1376
+#: Source/Core/DolphinQt/MenuBar.cpp:1307
+#: Source/Core/DolphinQt/MenuBar.cpp:1363
msgid "Failed to load RSO module at %1"
msgstr "%1 에서 RSO 모듈 로드에 실패했습니다"
@@ -5110,15 +5327,15 @@ msgstr "d3d11.dll 로드에 실패했습니다"
msgid "Failed to load dxgi.dll"
msgstr "dxgi.dll 로드에 실패했습니다"
-#: Source/Core/DolphinQt/MenuBar.cpp:1608
+#: Source/Core/DolphinQt/MenuBar.cpp:1595
msgid "Failed to load map file '%1'"
msgstr "맵 파일 '%1' 을 로드에 실패했습니다."
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:720
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:842
msgid "Failed to load the Skylander file!"
msgstr "스카이랜더 파일 로드에 실패했습니다!"
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:721
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:843
msgid "Failed to load the Skylander file(%1)!\n"
msgstr "스카이랜더 파일(%1) 로드에 실패했습니다!\n"
@@ -5134,8 +5351,12 @@ msgstr ""
"{0} 로드에 실패했습니다. 윈도우 7을 사용중이면, KB4019990 업데이트 패키지를 "
"설치해보세요."
-#: Source/Core/DolphinQt/GBAWidget.cpp:576
-#: Source/Core/DolphinQt/MainWindow.cpp:1670
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:663
+msgid "Failed to modify Skylander!"
+msgstr ""
+
+#: Source/Core/DolphinQt/GBAWidget.cpp:578
+#: Source/Core/DolphinQt/MainWindow.cpp:1690
#: Source/Core/DolphinQt/RenderWidget.cpp:123
msgid "Failed to open '%1'"
msgstr "'%1' 를 열기에 실패했습니다"
@@ -5164,29 +5385,31 @@ msgstr ""
"외부 에디터로 파일 열기에 실패했습니다.\n"
"INI 파일들을 여는데 할당된 애플러케이션이 있는지 확인하세요."
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:861
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:863
msgid "Failed to open file."
msgstr "파일 열기에 실패했습니다."
-#: Source/Core/DolphinQt/MainWindow.cpp:1593
+#: Source/Core/DolphinQt/MainWindow.cpp:1606
msgid "Failed to open server"
msgstr "서버 열기에 실패했습니다"
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:164
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:166
msgid "Failed to open the Infinity file!"
-msgstr ""
+msgstr "무한대 파일 열기에 실패했습니다!"
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:165
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:167
msgid ""
"Failed to open the Infinity file(%1)!\n"
"File may already be in use on the base."
msgstr ""
+"무한대 파일 열기에 실패했습니다(%1)!\n"
+"파일이 이미 베이스에서 사용중일지도 모릅니다."
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:696
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:818
msgid "Failed to open the Skylander file!"
msgstr "스카이랜더 파일 열기에 실패했습니다!"
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:697
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:819
msgid ""
"Failed to open the Skylander file(%1)!\n"
"File may already be in use on the portal."
@@ -5194,12 +5417,12 @@ msgstr ""
"스카이랜더 파일(%1) 열기에 실패했습니다!\n"
"파일이 아마 포탈에서 이미 사용 중일 것입니다."
-#: Source/Core/DolphinQt/ConvertDialog.cpp:472
+#: Source/Core/DolphinQt/ConvertDialog.cpp:474
msgid "Failed to open the input file \"%1\"."
msgstr "입력 파일 \"%1\" 열기에 실패했습니다."
-#: Source/Core/DiscIO/CompressedBlob.cpp:282 Source/Core/DiscIO/FileBlob.cpp:53
-#: Source/Core/DiscIO/WIABlob.cpp:2037
+#: Source/Core/DiscIO/CompressedBlob.cpp:287 Source/Core/DiscIO/FileBlob.cpp:58
+#: Source/Core/DiscIO/WIABlob.cpp:2043
msgid ""
"Failed to open the output file \"{0}\".\n"
"Check that you have permissions to write the target folder and that the "
@@ -5222,35 +5445,37 @@ msgstr "주어진 값을 대상 데어터 타입으로 파싱하는데에 실패
msgid "Failed to read DFF file."
msgstr "DFF 파일 읽기에 실패했습니다."
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:863
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:865
msgid "Failed to read from file."
msgstr "파일에서 읽기에 실패했습니다."
-#: Source/Core/DiscIO/CompressedBlob.cpp:373 Source/Core/DiscIO/FileBlob.cpp:93
-#: Source/Core/DiscIO/WIABlob.cpp:2052
+#: Source/Core/DiscIO/CompressedBlob.cpp:378 Source/Core/DiscIO/FileBlob.cpp:98
+#: Source/Core/DiscIO/WIABlob.cpp:2058
msgid "Failed to read from the input file \"{0}\"."
msgstr "입력 파일 \"{0}\" 로 부터 읽기에 실패했습니다."
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:423
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:641
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:424
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:642
msgid "Failed to read selected savefile(s) from memory card."
msgstr "메모리 카드에서 선택된 저장파일(들)을 읽기에 실패했습니다."
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:173
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:175
msgid "Failed to read the Infinity file!"
-msgstr ""
+msgstr "무한대 파일 읽기에 실패했습니다!"
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:174
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:176
msgid ""
"Failed to read the Infinity file(%1)!\n"
"File was too small."
msgstr ""
+"무한대 파일 읽기에 실패했습니다(%1)!\n"
+"파일이 너무 작습니다."
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:706
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:828
msgid "Failed to read the Skylander file!"
msgstr "스카이랜더 파일 읽기에 실패했습니다!"
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:707
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:829
msgid ""
"Failed to read the Skylander file(%1)!\n"
"File was too small."
@@ -5262,11 +5487,11 @@ msgstr ""
msgid "Failed to read {0}"
msgstr "{0} 을 읽을 수 없습니다."
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:668
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:669
msgid "Failed to remove file."
msgstr "파일 삭제에 실패했습니다."
-#: Source/Core/DolphinQt/ConvertDialog.cpp:453
+#: Source/Core/DolphinQt/ConvertDialog.cpp:455
msgid ""
"Failed to remove junk data from file \"%1\".\n"
"\n"
@@ -5276,7 +5501,7 @@ msgstr ""
"\n"
"정크 데이터 제거 없이 변환 하시겠습니까?"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:647
+#: Source/Core/DolphinQt/GameList/GameList.cpp:658
msgid "Failed to remove this title from the NAND."
msgstr "NAND 에서 이 타이틀 제거에 실패했습니다."
@@ -5293,27 +5518,34 @@ msgid "Failed to reset NetPlay redirect folder. Verify your write permissions."
msgstr ""
"넷플레이 리다이렉트 폴더 재설정에 실패했습니다. 쓰기 권한을 검증하세요."
-#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:241
+#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:237
msgid "Failed to save FIFO log."
msgstr "FIFO 로그 저장에 실패했습니다."
-#: Source/Core/DolphinQt/MenuBar.cpp:1598
+#: Source/Core/DolphinQt/MenuBar.cpp:1585
msgid "Failed to save code map to path '%1'"
msgstr "경로 '%1' 에 코드 맵 저장을 실패했습니다"
-#: Source/Core/DolphinQt/MenuBar.cpp:1642
+#: Source/Core/DolphinQt/MenuBar.cpp:1629
msgid "Failed to save signature file '%1'"
msgstr "서명 파일 '%1' 을 저장에 실패했습니다."
-#: Source/Core/DolphinQt/MenuBar.cpp:1621
+#: Source/Core/DolphinQt/MenuBar.cpp:1608
msgid "Failed to save symbol map to path '%1'"
msgstr "경로 '%1' 에 심볼 맵 저장을 실패했습니다."
-#: Source/Core/DolphinQt/MenuBar.cpp:1723
+#: Source/Core/DolphinQt/MenuBar.cpp:1710
msgid "Failed to save to signature file '%1'"
msgstr "서명 파일 '%1' 에 저장에 실패했습니다."
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:225
+#: Source/Core/Core/Core.cpp:548
+msgid ""
+"Failed to sync SD card with folder. All changes made this session will be "
+"discarded on next boot if you do not manually re-issue a resync in Config > "
+"Wii > SD Card Settings > Convert File to Folder Now!"
+msgstr ""
+
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:226
msgid "Failed to uninstall pack: %1"
msgstr "팩 언인스톨에 실패했습니다: %1"
@@ -5333,9 +5565,9 @@ msgstr "Wii 저장 쓰기에 실패했습니다."
msgid "Failed to write config file!"
msgstr "환경 파일 쓰기에 실패했습니다!"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:573
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:676
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:691
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:574
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:677
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:692
msgid "Failed to write modified memory card to disk."
msgstr "수정된 메모리 카드를 디스크에 쓰기를 실패했습니다."
@@ -5343,12 +5575,12 @@ msgstr "수정된 메모리 카드를 디스크에 쓰기를 실패했습니다.
msgid "Failed to write redirected save."
msgstr "리다이렉트된 저장 쓰기에 실패했습니다."
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:447
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:448
msgid "Failed to write savefile to disk."
msgstr "저장파일을 디스크에 쓰기를 실패했습니다. "
-#: Source/Core/DiscIO/CompressedBlob.cpp:377 Source/Core/DiscIO/FileBlob.cpp:99
-#: Source/Core/DiscIO/WIABlob.cpp:2056
+#: Source/Core/DiscIO/CompressedBlob.cpp:382
+#: Source/Core/DiscIO/FileBlob.cpp:104 Source/Core/DiscIO/WIABlob.cpp:2062
msgid ""
"Failed to write the output file \"{0}\".\n"
"Check that you have enough space available on the target drive."
@@ -5356,22 +5588,22 @@ msgstr ""
"출력 파일 \"{0}\" 를 쓰지 못했습니다.\n"
"타겟 드라이브에 충분한 여유 공간이 있는지 확인하세요."
-#: Source/Core/DolphinQt/GameList/GameList.cpp:617
-#: Source/Core/DolphinQt/GameList/GameList.cpp:645
-#: Source/Core/DolphinQt/GameList/GameList.cpp:840
-#: Source/Core/DolphinQt/MenuBar.cpp:1074
+#: Source/Core/DolphinQt/GameList/GameList.cpp:626
+#: Source/Core/DolphinQt/GameList/GameList.cpp:656
+#: Source/Core/DolphinQt/GameList/GameList.cpp:853
+#: Source/Core/DolphinQt/MenuBar.cpp:1056
msgid "Failure"
msgstr "실패"
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:183
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:184
msgid "Fair Input Delay"
msgstr "공정한 입력 지연"
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:199
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:200
msgid "Fallback Region"
msgstr "대비책 지역"
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:210
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:211
msgid "Fallback Region:"
msgstr "대비책 지역:"
@@ -5397,17 +5629,21 @@ msgstr ""
msgid "Field of View"
msgstr "시야"
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:233
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:235
msgid "Figure Number:"
+msgstr "피겨 번호:"
+
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:380
+msgid "Figure type"
msgstr ""
#: Source/Core/DolphinQt/Config/InfoWidget.cpp:46
msgid "File Details"
msgstr "파일 세부사항"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:991
+#: Source/Core/DolphinQt/GameList/GameList.cpp:1005
#: Source/Core/DolphinQt/GameList/GameListModel.cpp:229
-#: Source/Core/DolphinQt/MenuBar.cpp:652
+#: Source/Core/DolphinQt/MenuBar.cpp:644
msgid "File Format"
msgstr "파일 형식"
@@ -5419,20 +5655,20 @@ msgstr "파일 형식:"
msgid "File Info"
msgstr "파일 정보"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:986
+#: Source/Core/DolphinQt/GameList/GameList.cpp:1000
#: Source/Core/DolphinQt/GameList/GameListModel.cpp:223
-#: Source/Core/DolphinQt/MenuBar.cpp:647
+#: Source/Core/DolphinQt/MenuBar.cpp:639
msgid "File Name"
msgstr "파일 이름"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:987
+#: Source/Core/DolphinQt/GameList/GameList.cpp:1001
#: Source/Core/DolphinQt/GameList/GameListModel.cpp:225
-#: Source/Core/DolphinQt/MenuBar.cpp:648
+#: Source/Core/DolphinQt/MenuBar.cpp:640
msgid "File Path"
msgstr "파일 경로"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:990
-#: Source/Core/DolphinQt/MenuBar.cpp:651
+#: Source/Core/DolphinQt/GameList/GameList.cpp:1004
+#: Source/Core/DolphinQt/MenuBar.cpp:643
msgid "File Size"
msgstr "파일 크기"
@@ -5440,15 +5676,15 @@ msgstr "파일 크기"
msgid "File Size:"
msgstr "파일 크기:"
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:349
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:352
msgid "File contained no codes."
msgstr "파일에 코드가 없습니다."
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:149
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:150
msgid "Filename"
msgstr "파일명"
-#: Source/Core/DiscIO/CompressedBlob.cpp:289
+#: Source/Core/DiscIO/CompressedBlob.cpp:294
msgid "Files opened, ready to compress."
msgstr "파일이 열렸습니다, 압축할 준비가 되었습니다."
@@ -5460,11 +5696,11 @@ msgstr ""
"M3U 파일 \"{0}\" 에 기술된 파일들은 발견되지 않음:\n"
"{1}"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:833
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:835
msgid "Filesize does not match any known GameCube Memory Card size."
msgstr "파일크기가 어떤 알려진 게임큐브 메모리 카트 크기와도 맞지 않습니다."
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:836
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:838
msgid "Filesize in header mismatches actual card size."
msgstr "헤더안 파일크기가 실제 카드 크기와 맞지 않습니다."
@@ -5472,7 +5708,7 @@ msgstr "헤더안 파일크기가 실제 카드 크기와 맞지 않습니다."
msgid "Filesystem"
msgstr "파일 시스템"
-#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:102
+#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:103
msgid "Filters"
msgstr "필터들"
@@ -5488,7 +5724,7 @@ msgstr "이전 찾기(&P)"
msgid "Finish Calibration"
msgstr "측정 완료"
-#: Source/Core/DolphinQt/WiiUpdate.cpp:109
+#: Source/Core/DolphinQt/WiiUpdate.cpp:110
msgid ""
"Finishing the update...\n"
"This can take a while."
@@ -5498,19 +5734,19 @@ msgstr ""
#. i18n: One of the elements in the Skylanders games. Japanese: 火. For official translations
#. in other languages, check the SuperChargers manual at https://support.activision.com/manuals
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:333
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:349
msgid "Fire"
-msgstr ""
+msgstr "발사"
-#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:40
+#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:41
msgid "First Person"
msgstr "일인칭"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:127
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:128
msgid "Fix Checksums"
msgstr "체크섬을 고치기"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:690
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:691
msgid "Fix Checksums Failed"
msgstr "실패한 체크섬 고치기"
@@ -5520,7 +5756,7 @@ msgstr "고정된 정돈"
#. i18n: These are the kinds of flags that a CPU uses (e.g. carry),
#. not the kinds of flags that represent e.g. countries
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:166
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167
#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:87
msgid "Flags"
msgstr "플래그"
@@ -5529,12 +5765,12 @@ msgstr "플래그"
#. i18n: Floating-point (non-integer) number
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:138
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:198
-#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:152
+#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:153
#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97
msgid "Float"
msgstr "플로우트"
-#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:565
+#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:566
msgid "Follow &branch"
msgstr "분기 따라가기 (&b)"
@@ -5559,35 +5795,35 @@ msgstr ""
"설정 지시사항에 대해, "
"이 페이지를 참고하세요."
-#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:57
+#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:58
msgid "Force 16:9"
msgstr "강제 16:9"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:117
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:152
msgid "Force 24-Bit Color"
msgstr "강제 24-비트 컬러"
-#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:57
+#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:58
msgid "Force 4:3"
msgstr "강제 4:3"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:96
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:115
msgid "Force Linear"
msgstr "강제 Linear"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:103
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:122
msgid "Force Linear and 16x Anisotropic"
msgstr "강제 Linear 와 16x 비등방성"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:97
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:116
msgid "Force Linear and 2x Anisotropic"
msgstr "강제 Linear 와 2x 비등방성"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:99
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:118
msgid "Force Linear and 4x Anisotropic"
msgstr "강제 Linear 와 4x 비등방성"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:101
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:120
msgid "Force Linear and 8x Anisotropic"
msgstr "강제 Linear 와 8x 비등방성"
@@ -5595,7 +5831,7 @@ msgstr "강제 Linear 와 8x 비등방성"
msgid "Force Listen Port:"
msgstr "강제 듣기 포트: "
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:95
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:114
msgid "Force Nearest"
msgstr "강제 Nearest"
@@ -5607,7 +5843,7 @@ msgstr "%1 가 VS 확장을 지원하지 않기 때문에 강제로 꺼졌습니
msgid "Forced on because %1 doesn't support geometry shaders."
msgstr "%1 가 기하학 쉐이더를 지원하지 않기 때문에 강제로 켜졌습니다."
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:474
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:556
msgid ""
"Forces the game to output graphics for any aspect ratio. Use with \"Aspect "
"Ratio\" set to \"Force 16:9\" to force 4:3-only games to run at 16:9."
@@ -5623,7 +5859,7 @@ msgstr ""
"
잘 모르겠으면, 체크 해제해 두세요."
"dolphin_emphasis>"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:503
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:585
msgid ""
"Forces the game to render the RGB color channels in 24-bit, thereby "
"increasing quality by reducing color banding.
Has no impact on "
@@ -5634,7 +5870,7 @@ msgstr ""
"줄여서 품질이 증가합니다. 성능에 영향이 없고 소수의 그래픽 이슈를 읽으킵니다."
"
잘 모르겠으면, 체크해 두세요."
-#: Source/Core/DolphinQt/ConvertDialog.cpp:59
+#: Source/Core/DolphinQt/ConvertDialog.cpp:60
msgid "Format:"
msgstr "포맷:"
@@ -5700,19 +5936,19 @@ msgstr "녹화할 프레임:"
msgid "France"
msgstr "프랑스"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:311
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:312
msgid "Free Blocks: %1"
msgstr "빈 블록: %1"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:312
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:313
msgid "Free Files: %1"
msgstr "빈 파일: %1"
-#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:42
+#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:43
msgid "Free Look Control Type"
msgstr "자유 보기 컨트롤 타입"
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:468
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:470
msgid "Free Look Controller %1"
msgstr "자유 보기 컨트롤러 %1"
@@ -5720,7 +5956,7 @@ msgstr "자유 보기 컨트롤러 %1"
msgid "Free Look Settings"
msgstr "자유 보기 설정"
-#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:54
+#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:55
msgid ""
"Free Look allows for manipulation of the in-game camera. Different camera "
"types are available from the dropdown.
Disabling the "
@@ -3462,7 +3549,7 @@ msgid ""
"checked."
msgstr ""
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:96
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:97
msgid "Disc"
msgstr "Cakera"
@@ -3496,26 +3583,26 @@ msgstr ""
msgid "Distance of travel from neutral position."
msgstr ""
-#: Source/Core/DolphinQt/Main.cpp:259
+#: Source/Core/DolphinQt/Main.cpp:264
msgid "Do you authorize Dolphin to report information to Dolphin's developers?"
msgstr ""
"Adakah anda izinkan Dolphin melaporkan maklumat kepada pembangun Dolphin?"
-#: Source/Core/DolphinQt/MainWindow.cpp:1692
+#: Source/Core/DolphinQt/MainWindow.cpp:1712
msgid "Do you want to add \"%1\" to the list of Game Paths?"
msgstr "Anda mahu tambah \"%1\" ke dalam senarai Laluan Permainan?"
-#: Source/Core/DolphinQt/MenuBar.cpp:1241
+#: Source/Core/DolphinQt/MenuBar.cpp:1227
msgid "Do you want to clear the list of symbol names?"
msgstr "Anda mahu kosongkan senarai nama simbol?"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:658
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:659
#, c-format
msgctxt ""
msgid "Do you want to delete the %n selected save file(s)?"
msgstr ""
-#: Source/Core/DolphinQt/MainWindow.cpp:933
+#: Source/Core/DolphinQt/MainWindow.cpp:935
msgid "Do you want to stop the current emulation?"
msgstr "Anda hendak hentikan emulasi semasa?"
@@ -3527,35 +3614,35 @@ msgstr ""
msgid "Dolby Pro Logic II Decoder"
msgstr "Penyahkod Dolby Pro Logic II"
-#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:219
-#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:230
+#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:215
+#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:226
msgid "Dolphin FIFO Log (*.dff)"
msgstr "Log FIFO Dolphin (*.dff)"
-#: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:327
+#: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:326
msgid "Dolphin Game Mod Preset"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1536
-#: Source/Core/DolphinQt/MenuBar.cpp:1553
-#: Source/Core/DolphinQt/MenuBar.cpp:1572
+#: Source/Core/DolphinQt/MenuBar.cpp:1523
+#: Source/Core/DolphinQt/MenuBar.cpp:1540
+#: Source/Core/DolphinQt/MenuBar.cpp:1559
msgid "Dolphin Map File (*.map)"
msgstr "Fail Peta Dolphin (*.map)"
-#: Source/Core/DolphinQt/MenuBar.cpp:73
+#: Source/Core/DolphinQt/MenuBar.cpp:74
msgid "Dolphin Signature CSV File"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:73
+#: Source/Core/DolphinQt/MenuBar.cpp:74
msgid "Dolphin Signature File"
msgstr ""
-#: Source/Core/DolphinQt/MainWindow.cpp:1772
-#: Source/Core/DolphinQt/MainWindow.cpp:1843
+#: Source/Core/DolphinQt/MainWindow.cpp:1823
+#: Source/Core/DolphinQt/MainWindow.cpp:1894
msgid "Dolphin TAS Movies (*.dtm)"
msgstr "Cereka TAS Dolphin (*.dtm)"
-#: Source/Core/DolphinQt/ConvertDialog.cpp:326
+#: Source/Core/DolphinQt/ConvertDialog.cpp:327
msgid ""
"Dolphin can't convert NKit files to non-NKit files. Converting an NKit file "
"in Dolphin will result in another NKit file.\n"
@@ -3566,7 +3653,7 @@ msgid ""
"Do you want to continue anyway?"
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:279
+#: Source/Core/DolphinQt/GameList/GameList.cpp:280
msgid ""
"Dolphin could not find any GameCube/Wii ISOs or WADs.\n"
"Double-click here to set a games directory..."
@@ -3574,7 +3661,7 @@ msgstr ""
"Dolphin tidak dapat cari mana-mana ISO GameCube/Wii atau WAD.\n"
"Dwi-klik di sini untuk tetapkan direktori permainan..."
-#: Source/Core/DolphinQt/ConvertDialog.cpp:526
+#: Source/Core/DolphinQt/ConvertDialog.cpp:529
msgid "Dolphin failed to complete the requested action."
msgstr "Dolphin gagal menyelesaikan tindakan yang dipinta."
@@ -3586,7 +3673,7 @@ msgstr "Dolphin gagal menyelesaikan tindakan yang dipinta."
msgid "Dolphin is a free and open-source GameCube and Wii emulator."
msgstr "Dolphin ialah emulator GameCube dan Wii bebas dan bersumber-terbuka."
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:998
msgid "Dolphin is too old for traversal server"
msgstr "Dolphin terlalu tua untuk pelayan traversal"
@@ -3600,7 +3687,7 @@ msgstr ""
msgid "Dolphin is unable to verify unlicensed discs."
msgstr ""
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:217
msgid ""
"Dolphin will use this for titles whose region cannot be determined "
"automatically."
@@ -3615,15 +3702,15 @@ msgstr "Sistem tipuan Dolphin buat masa ini dilumpuhkan."
msgid "Domain"
msgstr ""
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:193
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:194
msgid "Don't Update"
msgstr ""
-#: Source/Core/DolphinQt/NKitWarningDialog.cpp:53
+#: Source/Core/DolphinQt/NKitWarningDialog.cpp:56
msgid "Don't show this again"
msgstr ""
-#: Source/Core/DiscIO/CompressedBlob.cpp:369
+#: Source/Core/DiscIO/CompressedBlob.cpp:374
msgid "Done compressing disc image."
msgstr "Selesai memampatkan imej cakera."
@@ -3636,37 +3723,37 @@ msgstr ""
#. i18n: A double precision floating point number
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:139
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:199
-#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:154
+#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:155
msgid "Double"
msgstr "Dubel"
#: Source/Core/Core/FreeLookManager.cpp:89
#: Source/Core/Core/HW/WiimoteEmu/Extension/Guitar.cpp:80
#: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:35
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:43
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:44
#: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:21
#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUAccelerometer.cpp:19
#: Source/Core/InputCommon/ControllerEmu/ControllerEmu.h:24
msgid "Down"
msgstr "Turun"
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:86
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:87
msgid "Download Codes"
msgstr "Muat Turun Kod"
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:88
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:89
msgid "Download Codes from the WiiRD Database"
msgstr "Muat turun Kod dar Pangkalan Data WiiRD"
-#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:148
+#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:153
msgid "Download Game Covers from GameTDB.com for Use in Grid Mode"
msgstr ""
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:370
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:373
msgid "Download complete"
msgstr "Muat turun selesai"
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:371
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:374
msgid "Downloaded %1 codes. (added %2)"
msgstr "%1 kod dimuat turun. (%2 ditambah)"
@@ -3689,7 +3776,7 @@ msgstr ""
msgid "Dual View"
msgstr ""
-#: Source/Core/Core/HW/EXI/EXI_Device.h:95
+#: Source/Core/Core/HW/EXI/EXI_Device.h:94
msgid "Dummy"
msgstr "Semu"
@@ -3709,7 +3796,7 @@ msgstr ""
msgid "Dump &MRAM"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:814
+#: Source/Core/DolphinQt/MenuBar.cpp:806
msgid "Dump Audio"
msgstr "Longgok Audio"
@@ -3721,7 +3808,7 @@ msgstr ""
msgid "Dump EFB Target"
msgstr "Longgok Sasaran EFB"
-#: Source/Core/DolphinQt/MenuBar.cpp:808
+#: Source/Core/DolphinQt/MenuBar.cpp:800
msgid "Dump Frames"
msgstr "Longgok Bingkai"
@@ -3794,12 +3881,12 @@ msgid "Duration of Turbo Button Release (frames):"
msgstr ""
#: Source/Core/DiscIO/Enums.cpp:95
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174
msgid "Dutch"
msgstr "Bahasa Belanda"
-#: Source/Core/DolphinQt/MenuBar.cpp:215
+#: Source/Core/DolphinQt/MenuBar.cpp:207
msgid "E&xit"
msgstr "Ke&luar"
@@ -3815,7 +3902,7 @@ msgid ""
"driver."
msgstr ""
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:185
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:186
msgid ""
"Each player sends their own inputs to the game, with equal buffer size for "
"all players, configured by the host.\n"
@@ -3829,7 +3916,7 @@ msgstr "Kemaskini Ingatan Awal"
#. i18n: One of the elements in the Skylanders games. Japanese: 土. For official translations
#. in other languages, check the SuperChargers manual at https://support.activision.com/manuals
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:336
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:352
msgid "Earth"
msgstr ""
@@ -3842,7 +3929,7 @@ msgstr ""
msgid "Edit Breakpoint"
msgstr ""
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:426
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:430
msgid "Edit..."
msgstr ""
@@ -3876,7 +3963,7 @@ msgstr "Lenting Cakera"
#. i18n: Elements are a trait of Skylanders figures. For official translations of this term,
#. check the Skylanders SuperChargers manual at https://support.activision.com/manuals
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:289
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:300
msgid "Element"
msgstr ""
@@ -3884,11 +3971,11 @@ msgstr ""
msgid "Embedded Frame Buffer (EFB)"
msgstr "Penimbal Bingkai Terbenam (EFB)"
-#: Source/Core/Core/State.cpp:541
+#: Source/Core/Core/State.cpp:629
msgid "Empty"
msgstr "Kosong"
-#: Source/Core/Core/Core.cpp:246
+#: Source/Core/Core/Core.cpp:247
msgid "Emu Thread already running"
msgstr "Bebenang Emu sudah berjalan"
@@ -3896,15 +3983,15 @@ msgstr "Bebenang Emu sudah berjalan"
msgid "Emulate Disc Speed"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:60
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:61
msgid "Emulate Infinity Base"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:146
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:157
msgid "Emulate Skylander Portal"
msgstr ""
-#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:110
+#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:111
msgid "Emulate the Wii's Bluetooth adapter"
msgstr "Emulasikan penyuai Bluetooth Wii"
@@ -3914,11 +4001,11 @@ msgid ""
"Defaults to True"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:230
+#: Source/Core/DolphinQt/MenuBar.cpp:222
msgid "Emulated USB Devices"
msgstr ""
-#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:141
+#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:142
msgid "Emulated Wii Remote"
msgstr "Wii Remote Teremulasi"
@@ -3938,12 +4025,12 @@ msgstr "Kelajuan Emulasi"
msgid "Emulation must be started to record."
msgstr ""
-#: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:29
-#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:33
+#: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:30
+#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:34
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:120
-#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:129
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:402
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:419
+#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:130
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:406
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:423
msgid "Enable"
msgstr ""
@@ -3951,6 +4038,10 @@ msgstr ""
msgid "Enable API Validation Layers"
msgstr "Benarkan Lapisan Pengesahan API"
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:83
+msgid "Enable Achievement Badges"
+msgstr ""
+
#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:60
msgid "Enable Achievements"
msgstr ""
@@ -3959,15 +4050,19 @@ msgstr ""
msgid "Enable Audio Stretching"
msgstr "Benarkan Peregangan Audio"
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:142
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:143
msgid "Enable Cheats"
msgstr "Benarkan Menipu"
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:155
+#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:53
+msgid "Enable Controller Inpu&t"
+msgstr ""
+
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:161
msgid "Enable Custom RTC"
msgstr "Benarkan RTC Suai"
-#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:149
+#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:154
msgid "Enable Debugging UI"
msgstr ""
@@ -3975,19 +4070,19 @@ msgstr ""
msgid "Enable Dual Core"
msgstr "Benarkan Dwi-Teras"
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:139
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:140
msgid "Enable Dual Core (speedup)"
msgstr "Benarkan Dwi-Teras (lajukan)"
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:88
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:94
msgid "Enable Emulated CPU Clock Override"
msgstr "Benarkan Pembatalan Jam CPU Teremulasi"
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:118
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:124
msgid "Enable Emulated Memory Size Override"
msgstr ""
-#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:78
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:88
msgid "Enable Encore Achievements"
msgstr ""
@@ -4004,10 +4099,14 @@ msgid "Enable Leaderboards"
msgstr ""
#: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:88
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:66
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:68
msgid "Enable MMU"
msgstr "Benarkan MMU"
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:78
+msgid "Enable Progress Notifications"
+msgstr ""
+
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:156
msgid "Enable Progressive Scan"
msgstr "Benarkan Imbas Progresif"
@@ -4021,15 +4120,15 @@ msgid "Enable Rich Presence"
msgstr ""
#: Source/Core/DolphinQt/Config/Mapping/GCPadWiiUConfigDialog.cpp:39
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:353
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:352
msgid "Enable Rumble"
msgstr "Benarkan Rumble"
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:157
msgid "Enable Screen Saver"
msgstr "Benarkan Penyelamat Skrin"
-#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:113
+#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:114
msgid "Enable Speaker Data"
msgstr "Benarkan Data Pembesar Suara"
@@ -4037,11 +4136,11 @@ msgstr "Benarkan Data Pembesar Suara"
msgid "Enable Unofficial Achievements"
msgstr ""
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:230
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:231
msgid "Enable Usage Statistics Reporting"
msgstr "Benarkan Pelaporan Statistik Penggunaan"
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158
msgid "Enable WiiConnect24 via WiiLink"
msgstr ""
@@ -4049,10 +4148,17 @@ msgstr ""
msgid "Enable Wireframe"
msgstr "Benarkan Bingkai Wayar"
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:77
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:82
msgid "Enable Write-Back Cache (slow)"
msgstr ""
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:85
+msgid ""
+"Enable achievement badges.
Displays icons for the player, game, and "
+"achievements. Simple visual option, but will require a small amount of extra "
+"memory and time to download the images."
+msgstr ""
+
#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:64
msgid ""
"Enable competing in RetroAchievements leaderboards.
Displays a brief popup "
+"message whenever the player makes progress on an achievement that tracks an "
+"accumulated value, such as 60 out of 120 stars."
+msgstr ""
+
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:90
+msgid ""
"Enable unlocking achievements in Encore Mode.
Encore Mode re-enables "
"achievements the player has already unlocked on the site so that the player "
"will be notified if they meet the unlock conditions again, useful for custom "
@@ -4117,7 +4230,7 @@ msgstr ""
"Benarkan Pengiraan Bendera Keputusan Titik Apung, diperlukan oleh sesetengah "
"permainan. (HIDUP = Serasi, MATI = Pantas)"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:514
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:596
msgid ""
"Enables detection of arbitrary mipmaps, which some games use for special "
"distance-based effects.
May have false positives that result in "
@@ -4128,11 +4241,12 @@ msgid ""
"dolphin_emphasis>"
msgstr ""
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:79
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:84
msgid ""
-"Enables emulation of the CPU write-back cache.\n"
-"Enabling will have a significant impact on performance.\n"
-"This should be left disabled unless absolutely needed."
+"Enables emulation of the CPU write-back cache. Enabling will have a "
+"significant impact on performance. This should be left disabled unless "
+"absolutely needed.
If unsure, leave this unchecked."
+""
msgstr ""
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:365
@@ -4150,7 +4264,7 @@ msgid ""
"this unchecked."
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:522
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:604
msgid ""
"Enables scRGB HDR output (if supported by your graphics backend and "
"monitor). Fullscreen might be required.
This gives post process "
@@ -4173,7 +4287,6 @@ msgid ""
msgstr ""
#: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:100
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:68
msgid ""
"Enables the Memory Management Unit, needed for some games. (ON = Compatible, "
"OFF = Fast)"
@@ -4181,7 +4294,14 @@ msgstr ""
"Benarkan Unit Pengurusan Ingatan, diperlukan oleh sesetengah permainan. "
"(HIDUP = Serasi, MATI = Pantas)"
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:193
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:70
+msgid ""
+"Enables the Memory Management Unit, needed for some games. (ON = Compatible, "
+"OFF = Fast)
If unsure, leave this unchecked."
+"dolphin_emphasis>"
+msgstr ""
+
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190
msgid ""
"Enables the WiiLink service for WiiConnect24 channels.\n"
"WiiLink is an alternate provider for the discontinued WiiConnect24 Channels "
@@ -4208,7 +4328,7 @@ msgstr ""
msgid "Encoding"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:615
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:616
msgid ""
"Encountered the following errors while opening save files:\n"
"%1\n"
@@ -4221,12 +4341,12 @@ msgid "Enet Didn't Initialize"
msgstr "Enet Tidak Diawalkan"
#: Source/Core/DiscIO/Enums.cpp:80
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:85
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:169
msgid "English"
msgstr "Bahasa Inggeris"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:59
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:61
#: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:61
msgid "Enhancements"
msgstr "Penambahbaikan"
@@ -4257,84 +4377,84 @@ msgstr ""
msgid "Enter the DNS server to use:"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1300
+#: Source/Core/DolphinQt/MenuBar.cpp:1286
msgid "Enter the RSO module address:"
msgstr "Masukkan alamat modul RSO:"
#: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:194
#: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:250
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:261
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:262
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386
#: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:265
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:343
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:349
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:346
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:352
#: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:46
-#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:521
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:256
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:295
-#: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:232
-#: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:259
-#: Source/Core/DolphinQt/ConvertDialog.cpp:424
-#: Source/Core/DolphinQt/ConvertDialog.cpp:471
-#: Source/Core/DolphinQt/ConvertDialog.cpp:525
+#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:539
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:255
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:296
+#: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:229
+#: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:256
+#: Source/Core/DolphinQt/ConvertDialog.cpp:426
+#: Source/Core/DolphinQt/ConvertDialog.cpp:473
+#: Source/Core/DolphinQt/ConvertDialog.cpp:528
#: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:255
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:638
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:644
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:653
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:665
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:684
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:690
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:705
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:713
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:737
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:744
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:637
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:643
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:652
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:664
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:683
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:689
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:704
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:712
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:736
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:743
#: Source/Core/DolphinQt/Debugger/RegisterColumn.cpp:86
#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:282
#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:431
-#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:241
-#: Source/Core/DolphinQt/GBAWidget.cpp:576
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:346
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:376
-#: Source/Core/DolphinQt/Main.cpp:209 Source/Core/DolphinQt/Main.cpp:225
-#: Source/Core/DolphinQt/Main.cpp:232 Source/Core/DolphinQt/MainWindow.cpp:295
-#: Source/Core/DolphinQt/MainWindow.cpp:303
-#: Source/Core/DolphinQt/MainWindow.cpp:1108
-#: Source/Core/DolphinQt/MainWindow.cpp:1494
-#: Source/Core/DolphinQt/MainWindow.cpp:1501
-#: Source/Core/DolphinQt/MainWindow.cpp:1561
-#: Source/Core/DolphinQt/MainWindow.cpp:1568
-#: Source/Core/DolphinQt/MainWindow.cpp:1670
-#: Source/Core/DolphinQt/MenuBar.cpp:1204
-#: Source/Core/DolphinQt/MenuBar.cpp:1284
+#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:237
+#: Source/Core/DolphinQt/GBAWidget.cpp:578
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:347
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:377
+#: Source/Core/DolphinQt/Main.cpp:211 Source/Core/DolphinQt/Main.cpp:227
+#: Source/Core/DolphinQt/Main.cpp:234 Source/Core/DolphinQt/MainWindow.cpp:297
+#: Source/Core/DolphinQt/MainWindow.cpp:305
+#: Source/Core/DolphinQt/MainWindow.cpp:1110
+#: Source/Core/DolphinQt/MainWindow.cpp:1507
+#: Source/Core/DolphinQt/MainWindow.cpp:1514
+#: Source/Core/DolphinQt/MainWindow.cpp:1574
+#: Source/Core/DolphinQt/MainWindow.cpp:1581
+#: Source/Core/DolphinQt/MainWindow.cpp:1690
+#: Source/Core/DolphinQt/MenuBar.cpp:1190
+#: Source/Core/DolphinQt/MenuBar.cpp:1270
+#: Source/Core/DolphinQt/MenuBar.cpp:1293
#: Source/Core/DolphinQt/MenuBar.cpp:1307
-#: Source/Core/DolphinQt/MenuBar.cpp:1321
-#: Source/Core/DolphinQt/MenuBar.cpp:1352
-#: Source/Core/DolphinQt/MenuBar.cpp:1376
-#: Source/Core/DolphinQt/MenuBar.cpp:1597
-#: Source/Core/DolphinQt/MenuBar.cpp:1608
-#: Source/Core/DolphinQt/MenuBar.cpp:1620
-#: Source/Core/DolphinQt/MenuBar.cpp:1642
-#: Source/Core/DolphinQt/MenuBar.cpp:1668
-#: Source/Core/DolphinQt/MenuBar.cpp:1722
-#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:315
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:477
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:738
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:980
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1098
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1108
-#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:334
-#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:340
-#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:347
+#: Source/Core/DolphinQt/MenuBar.cpp:1339
+#: Source/Core/DolphinQt/MenuBar.cpp:1363
+#: Source/Core/DolphinQt/MenuBar.cpp:1584
+#: Source/Core/DolphinQt/MenuBar.cpp:1595
+#: Source/Core/DolphinQt/MenuBar.cpp:1607
+#: Source/Core/DolphinQt/MenuBar.cpp:1629
+#: Source/Core/DolphinQt/MenuBar.cpp:1655
+#: Source/Core/DolphinQt/MenuBar.cpp:1709
+#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:316
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:479
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:740
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:982
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1100
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1110
+#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:332
+#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:338
+#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:345
#: Source/Core/DolphinQt/RenderWidget.cpp:123
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:203
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:224
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:423
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:439
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:460
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:481
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:525
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:562
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:585
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:204
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:225
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:433
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:449
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:470
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:491
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:535
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:572
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:595
#: Source/Core/DolphinQt/Translation.cpp:322
msgid "Error"
msgstr "Ralat"
@@ -4343,13 +4463,13 @@ msgstr "Ralat"
msgid "Error Opening Adapter: %1"
msgstr ""
-#: Source/Core/Core/NetPlayServer.cpp:1493
+#: Source/Core/Core/NetPlayServer.cpp:1497
msgid "Error collecting save data!"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:260
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:526
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:533
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:262
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:613
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:620
msgid "Error converting value"
msgstr ""
@@ -4361,15 +4481,15 @@ msgstr "Ralat memuatkan bahasa pilihan. Jatuh balik ke lalai sistem."
msgid "Error obtaining session list: %1"
msgstr ""
-#: Source/Core/DolphinQt/MainWindow.cpp:296
+#: Source/Core/DolphinQt/MainWindow.cpp:298
msgid "Error occurred while loading some texture packs"
msgstr ""
-#: Source/Core/Core/NetPlayClient.cpp:1847
+#: Source/Core/Core/NetPlayClient.cpp:1851
msgid "Error processing codes."
msgstr ""
-#: Source/Core/Core/NetPlayClient.cpp:1819
+#: Source/Core/Core/NetPlayClient.cpp:1823
msgid "Error processing data."
msgstr ""
@@ -4377,11 +4497,11 @@ msgstr ""
msgid "Error reading file: {0}"
msgstr ""
-#: Source/Core/Core/NetPlayServer.cpp:1529
+#: Source/Core/Core/NetPlayServer.cpp:1533
msgid "Error synchronizing cheat codes!"
msgstr ""
-#: Source/Core/Core/NetPlayServer.cpp:1515
+#: Source/Core/Core/NetPlayServer.cpp:1519
msgid "Error synchronizing save data!"
msgstr ""
@@ -4456,7 +4576,7 @@ msgstr ""
msgid "Euphoria"
msgstr "Euforia"
-#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:282
+#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:274
#: Source/Core/UICommon/NetPlayIndex.cpp:249
msgid "Europe"
msgstr "Eropah"
@@ -4485,11 +4605,11 @@ msgstr ""
msgid "Excluded: %1"
msgstr ""
-#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:73
+#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:72
msgid "Excluded: 0"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:107
+#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108
msgid "Exclusive Ubershaders"
msgstr ""
@@ -4537,14 +4657,14 @@ msgstr ""
msgid "Experimental"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:294
+#: Source/Core/DolphinQt/MenuBar.cpp:286
msgid "Export All Wii Saves"
msgstr "Eskport Semua Simpan Wii"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:422
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:447
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:492
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:499
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:423
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:448
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:493
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:500
msgid "Export Failed"
msgstr ""
@@ -4552,42 +4672,42 @@ msgstr ""
msgid "Export Recording"
msgstr "Eksport Rakaman"
-#: Source/Core/DolphinQt/MenuBar.cpp:753
+#: Source/Core/DolphinQt/MenuBar.cpp:745
msgid "Export Recording..."
msgstr "Eksport Rakaman..."
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:437
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:438
msgid "Export Save File"
msgstr "Eksport Fail Simpan"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:454
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:455
msgid "Export Save Files"
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:470
+#: Source/Core/DolphinQt/GameList/GameList.cpp:473
msgid "Export Wii Save"
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:388
+#: Source/Core/DolphinQt/GameList/GameList.cpp:389
msgid "Export Wii Saves"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:117
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:118
msgid "Export as .&gcs..."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:118
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:119
msgid "Export as .&sav..."
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1133
+#: Source/Core/DolphinQt/MenuBar.cpp:1115
#, c-format
msgctxt ""
msgid "Exported %n save(s)"
msgstr ""
#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:268
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:432
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:434
#: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:47
msgid "Extension"
msgstr "Sambungan"
@@ -4600,7 +4720,7 @@ msgstr ""
msgid "Extension Motion Simulation"
msgstr ""
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:520
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:522
msgid "External"
msgstr ""
@@ -4608,35 +4728,35 @@ msgstr ""
msgid "External Frame Buffer (XFB)"
msgstr "Penimbal Bingkai Luaran (XFB)"
-#: Source/Core/DolphinQt/MenuBar.cpp:271
+#: Source/Core/DolphinQt/MenuBar.cpp:263
msgid "Extract Certificates from NAND"
msgstr "Ekstrak Sijil dari NAND"
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:268
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:269
msgid "Extract Entire Disc..."
msgstr "Ektrak Keseluruhan Cakera..."
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:292
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:293
msgid "Extract Entire Partition..."
msgstr "Ekstrak Keseluruhan Sekatan..."
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:299
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:300
msgid "Extract File..."
msgstr "Ekstrak Fail..."
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:241
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:242
msgid "Extract Files..."
msgstr "Ekstrak Fail..."
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:251
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:252
msgid "Extract System Data..."
msgstr "Ekstrak Data Sistem..."
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:355
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:356
msgid "Extracting All Files..."
msgstr "Mengekstrak Semua Fail..."
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:356
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357
msgid "Extracting Directory..."
msgstr "Mengekstrak Direktori..."
@@ -4646,7 +4766,7 @@ msgid "FD"
msgstr ""
#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:37
-#: Source/Core/DolphinQt/MenuBar.cpp:228
+#: Source/Core/DolphinQt/MenuBar.cpp:220
msgid "FIFO Player"
msgstr "Pemain FIFO"
@@ -4654,17 +4774,17 @@ msgstr "Pemain FIFO"
msgid "Failed loading XML."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:347
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:348
msgid ""
"Failed opening memory card:\n"
"%1"
msgstr ""
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:454
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:456
msgid "Failed to add this session to the NetPlay index: %1"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1669
+#: Source/Core/DolphinQt/MenuBar.cpp:1656
msgid "Failed to append to signature file '%1'"
msgstr ""
@@ -4672,11 +4792,11 @@ msgstr ""
msgid "Failed to claim interface for BT passthrough: {0}"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:574
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:676
msgid "Failed to clear Skylander!"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:575
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:677
msgid "Failed to clear the Skylander from slot(%1)!"
msgstr ""
@@ -4684,7 +4804,7 @@ msgstr ""
msgid "Failed to connect to Redump.org"
msgstr ""
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:981
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:983
msgid "Failed to connect to server: %1"
msgstr ""
@@ -4705,15 +4825,15 @@ msgstr ""
msgid "Failed to create DXGI factory"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:289
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:291
msgid "Failed to create Infinity file"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:678
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:798
msgid "Failed to create Skylander file!"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:679
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:799
msgid ""
"Failed to create Skylander file:\n"
"%1\n"
@@ -4729,7 +4849,7 @@ msgstr ""
msgid "Failed to delete NetPlay memory card. Verify your write permissions."
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:841
+#: Source/Core/DolphinQt/GameList/GameList.cpp:854
msgid "Failed to delete the selected file."
msgstr "Gagal memadam fail terpilih."
@@ -4737,36 +4857,36 @@ msgstr "Gagal memadam fail terpilih."
msgid "Failed to detach kernel driver for BT passthrough: {0}"
msgstr ""
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:343
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:346
msgid "Failed to download codes."
msgstr "Gagal muat turun kod."
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:738
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:737
msgid "Failed to dump %1: Can't open file"
msgstr ""
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:745
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:744
msgid "Failed to dump %1: Failed to write to file"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:488
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:489
msgctxt ""
msgid "Failed to export %n out of %1 save file(s)."
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:576
+#: Source/Core/DolphinQt/GameList/GameList.cpp:584
msgid "Failed to export the following save files:"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1204
+#: Source/Core/DolphinQt/MenuBar.cpp:1190
msgid "Failed to extract certificates from NAND"
msgstr "Gagal mengekstrak sijil dari NAND"
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386
msgid "Failed to extract file."
msgstr "Gagal mengekstrak fail."
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:261
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:262
msgid "Failed to extract system data."
msgstr "Gagal mengekstrak data sistem."
@@ -4781,29 +4901,29 @@ msgstr ""
msgid "Failed to find one or more D3D symbols"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:565
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:566
msgid "Failed to import \"%1\"."
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1109
+#: Source/Core/DolphinQt/MenuBar.cpp:1091
msgid ""
"Failed to import save file. Please launch the game once, then try again."
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1103
+#: Source/Core/DolphinQt/MenuBar.cpp:1085
msgid ""
"Failed to import save file. The given file appears to be corrupted or is not "
"a valid Wii save."
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1116
+#: Source/Core/DolphinQt/MenuBar.cpp:1098
msgid ""
"Failed to import save file. Your NAND may be corrupt, or something is "
"preventing access to files within it. Try repairing your NAND (Tools -> "
"Manage NAND -> Check NAND...), then import the save again."
msgstr ""
-#: Source/Core/DolphinQt/MainWindow.cpp:1108
+#: Source/Core/DolphinQt/MainWindow.cpp:1110
msgid "Failed to init core"
msgstr "Gagal ke teras init"
@@ -4818,16 +4938,16 @@ msgstr ""
msgid "Failed to initialize renderer classes"
msgstr ""
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:204
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:205
msgid "Failed to install pack: %1"
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:619
-#: Source/Core/DolphinQt/MenuBar.cpp:1074
+#: Source/Core/DolphinQt/GameList/GameList.cpp:628
+#: Source/Core/DolphinQt/MenuBar.cpp:1056
msgid "Failed to install this title to the NAND."
msgstr "Gagal memasang tajuk ini ke NAND."
-#: Source/Core/DolphinQt/MainWindow.cpp:1594
+#: Source/Core/DolphinQt/MainWindow.cpp:1607
msgid ""
"Failed to listen on port %1. Is another instance of the NetPlay server "
"running?"
@@ -4835,8 +4955,8 @@ msgstr ""
"Gagal mendengar pada port %1. Adakah kejadian lain pelayan NetPlay masih "
"berjalan?"
-#: Source/Core/DolphinQt/MenuBar.cpp:1321
-#: Source/Core/DolphinQt/MenuBar.cpp:1376
+#: Source/Core/DolphinQt/MenuBar.cpp:1307
+#: Source/Core/DolphinQt/MenuBar.cpp:1363
msgid "Failed to load RSO module at %1"
msgstr "Gagal memuatkan modul RSO pada %1"
@@ -4848,15 +4968,15 @@ msgstr ""
msgid "Failed to load dxgi.dll"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1608
+#: Source/Core/DolphinQt/MenuBar.cpp:1595
msgid "Failed to load map file '%1'"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:720
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:842
msgid "Failed to load the Skylander file!"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:721
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:843
msgid "Failed to load the Skylander file(%1)!\n"
msgstr ""
@@ -4870,8 +4990,12 @@ msgid ""
"update package."
msgstr ""
-#: Source/Core/DolphinQt/GBAWidget.cpp:576
-#: Source/Core/DolphinQt/MainWindow.cpp:1670
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:663
+msgid "Failed to modify Skylander!"
+msgstr ""
+
+#: Source/Core/DolphinQt/GBAWidget.cpp:578
+#: Source/Core/DolphinQt/MainWindow.cpp:1690
#: Source/Core/DolphinQt/RenderWidget.cpp:123
msgid "Failed to open '%1'"
msgstr "Gagal membuka '%1'"
@@ -4898,40 +5022,40 @@ msgid ""
"Make sure there's an application assigned to open INI files."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:861
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:863
msgid "Failed to open file."
msgstr ""
-#: Source/Core/DolphinQt/MainWindow.cpp:1593
+#: Source/Core/DolphinQt/MainWindow.cpp:1606
msgid "Failed to open server"
msgstr "Gagal membuka pelayan"
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:164
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:166
msgid "Failed to open the Infinity file!"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:165
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:167
msgid ""
"Failed to open the Infinity file(%1)!\n"
"File may already be in use on the base."
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:696
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:818
msgid "Failed to open the Skylander file!"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:697
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:819
msgid ""
"Failed to open the Skylander file(%1)!\n"
"File may already be in use on the portal."
msgstr ""
-#: Source/Core/DolphinQt/ConvertDialog.cpp:472
+#: Source/Core/DolphinQt/ConvertDialog.cpp:474
msgid "Failed to open the input file \"%1\"."
msgstr ""
-#: Source/Core/DiscIO/CompressedBlob.cpp:282 Source/Core/DiscIO/FileBlob.cpp:53
-#: Source/Core/DiscIO/WIABlob.cpp:2037
+#: Source/Core/DiscIO/CompressedBlob.cpp:287 Source/Core/DiscIO/FileBlob.cpp:58
+#: Source/Core/DiscIO/WIABlob.cpp:2043
msgid ""
"Failed to open the output file \"{0}\".\n"
"Check that you have permissions to write the target folder and that the "
@@ -4951,35 +5075,35 @@ msgstr ""
msgid "Failed to read DFF file."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:863
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:865
msgid "Failed to read from file."
msgstr ""
-#: Source/Core/DiscIO/CompressedBlob.cpp:373 Source/Core/DiscIO/FileBlob.cpp:93
-#: Source/Core/DiscIO/WIABlob.cpp:2052
+#: Source/Core/DiscIO/CompressedBlob.cpp:378 Source/Core/DiscIO/FileBlob.cpp:98
+#: Source/Core/DiscIO/WIABlob.cpp:2058
msgid "Failed to read from the input file \"{0}\"."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:423
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:641
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:424
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:642
msgid "Failed to read selected savefile(s) from memory card."
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:173
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:175
msgid "Failed to read the Infinity file!"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:174
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:176
msgid ""
"Failed to read the Infinity file(%1)!\n"
"File was too small."
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:706
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:828
msgid "Failed to read the Skylander file!"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:707
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:829
msgid ""
"Failed to read the Skylander file(%1)!\n"
"File was too small."
@@ -4989,18 +5113,18 @@ msgstr ""
msgid "Failed to read {0}"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:668
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:669
msgid "Failed to remove file."
msgstr ""
-#: Source/Core/DolphinQt/ConvertDialog.cpp:453
+#: Source/Core/DolphinQt/ConvertDialog.cpp:455
msgid ""
"Failed to remove junk data from file \"%1\".\n"
"\n"
"Would you like to convert it without removing junk data?"
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:647
+#: Source/Core/DolphinQt/GameList/GameList.cpp:658
msgid "Failed to remove this title from the NAND."
msgstr "Gagal membuang tajuk ini dari NAND."
@@ -5016,27 +5140,34 @@ msgstr ""
msgid "Failed to reset NetPlay redirect folder. Verify your write permissions."
msgstr ""
-#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:241
+#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:237
msgid "Failed to save FIFO log."
msgstr "Gagal menyimpan log FIFO."
-#: Source/Core/DolphinQt/MenuBar.cpp:1598
+#: Source/Core/DolphinQt/MenuBar.cpp:1585
msgid "Failed to save code map to path '%1'"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1642
+#: Source/Core/DolphinQt/MenuBar.cpp:1629
msgid "Failed to save signature file '%1'"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1621
+#: Source/Core/DolphinQt/MenuBar.cpp:1608
msgid "Failed to save symbol map to path '%1'"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1723
+#: Source/Core/DolphinQt/MenuBar.cpp:1710
msgid "Failed to save to signature file '%1'"
msgstr ""
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:225
+#: Source/Core/Core/Core.cpp:548
+msgid ""
+"Failed to sync SD card with folder. All changes made this session will be "
+"discarded on next boot if you do not manually re-issue a resync in Config > "
+"Wii > SD Card Settings > Convert File to Folder Now!"
+msgstr ""
+
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:226
msgid "Failed to uninstall pack: %1"
msgstr ""
@@ -5056,9 +5187,9 @@ msgstr ""
msgid "Failed to write config file!"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:573
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:676
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:691
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:574
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:677
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:692
msgid "Failed to write modified memory card to disk."
msgstr ""
@@ -5066,33 +5197,33 @@ msgstr ""
msgid "Failed to write redirected save."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:447
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:448
msgid "Failed to write savefile to disk."
msgstr ""
-#: Source/Core/DiscIO/CompressedBlob.cpp:377 Source/Core/DiscIO/FileBlob.cpp:99
-#: Source/Core/DiscIO/WIABlob.cpp:2056
+#: Source/Core/DiscIO/CompressedBlob.cpp:382
+#: Source/Core/DiscIO/FileBlob.cpp:104 Source/Core/DiscIO/WIABlob.cpp:2062
msgid ""
"Failed to write the output file \"{0}\".\n"
"Check that you have enough space available on the target drive."
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:617
-#: Source/Core/DolphinQt/GameList/GameList.cpp:645
-#: Source/Core/DolphinQt/GameList/GameList.cpp:840
-#: Source/Core/DolphinQt/MenuBar.cpp:1074
+#: Source/Core/DolphinQt/GameList/GameList.cpp:626
+#: Source/Core/DolphinQt/GameList/GameList.cpp:656
+#: Source/Core/DolphinQt/GameList/GameList.cpp:853
+#: Source/Core/DolphinQt/MenuBar.cpp:1056
msgid "Failure"
msgstr ""
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:183
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:184
msgid "Fair Input Delay"
msgstr ""
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:199
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:200
msgid "Fallback Region"
msgstr ""
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:210
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:211
msgid "Fallback Region:"
msgstr ""
@@ -5116,17 +5247,21 @@ msgstr ""
msgid "Field of View"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:233
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:235
msgid "Figure Number:"
msgstr ""
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:380
+msgid "Figure type"
+msgstr ""
+
#: Source/Core/DolphinQt/Config/InfoWidget.cpp:46
msgid "File Details"
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:991
+#: Source/Core/DolphinQt/GameList/GameList.cpp:1005
#: Source/Core/DolphinQt/GameList/GameListModel.cpp:229
-#: Source/Core/DolphinQt/MenuBar.cpp:652
+#: Source/Core/DolphinQt/MenuBar.cpp:644
msgid "File Format"
msgstr ""
@@ -5138,20 +5273,20 @@ msgstr ""
msgid "File Info"
msgstr "Maklumat Fail"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:986
+#: Source/Core/DolphinQt/GameList/GameList.cpp:1000
#: Source/Core/DolphinQt/GameList/GameListModel.cpp:223
-#: Source/Core/DolphinQt/MenuBar.cpp:647
+#: Source/Core/DolphinQt/MenuBar.cpp:639
msgid "File Name"
msgstr "Nama Fail"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:987
+#: Source/Core/DolphinQt/GameList/GameList.cpp:1001
#: Source/Core/DolphinQt/GameList/GameListModel.cpp:225
-#: Source/Core/DolphinQt/MenuBar.cpp:648
+#: Source/Core/DolphinQt/MenuBar.cpp:640
msgid "File Path"
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:990
-#: Source/Core/DolphinQt/MenuBar.cpp:651
+#: Source/Core/DolphinQt/GameList/GameList.cpp:1004
+#: Source/Core/DolphinQt/MenuBar.cpp:643
msgid "File Size"
msgstr "Saiz Fail"
@@ -5159,15 +5294,15 @@ msgstr "Saiz Fail"
msgid "File Size:"
msgstr ""
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:349
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:352
msgid "File contained no codes."
msgstr "Fail tidak mengandungi kod."
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:149
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:150
msgid "Filename"
msgstr ""
-#: Source/Core/DiscIO/CompressedBlob.cpp:289
+#: Source/Core/DiscIO/CompressedBlob.cpp:294
msgid "Files opened, ready to compress."
msgstr "Fail dibuka, sedia untuk dimampatkan."
@@ -5177,11 +5312,11 @@ msgid ""
"{1}"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:833
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:835
msgid "Filesize does not match any known GameCube Memory Card size."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:836
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:838
msgid "Filesize in header mismatches actual card size."
msgstr ""
@@ -5189,7 +5324,7 @@ msgstr ""
msgid "Filesystem"
msgstr "Sistem Fail"
-#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:102
+#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:103
msgid "Filters"
msgstr ""
@@ -5205,7 +5340,7 @@ msgstr ""
msgid "Finish Calibration"
msgstr ""
-#: Source/Core/DolphinQt/WiiUpdate.cpp:109
+#: Source/Core/DolphinQt/WiiUpdate.cpp:110
msgid ""
"Finishing the update...\n"
"This can take a while."
@@ -5215,19 +5350,19 @@ msgstr ""
#. i18n: One of the elements in the Skylanders games. Japanese: 火. For official translations
#. in other languages, check the SuperChargers manual at https://support.activision.com/manuals
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:333
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:349
msgid "Fire"
msgstr ""
-#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:40
+#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:41
msgid "First Person"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:127
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:128
msgid "Fix Checksums"
msgstr "Baiki Hasil Tambah Semak"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:690
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:691
msgid "Fix Checksums Failed"
msgstr ""
@@ -5237,7 +5372,7 @@ msgstr ""
#. i18n: These are the kinds of flags that a CPU uses (e.g. carry),
#. not the kinds of flags that represent e.g. countries
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:166
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167
#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:87
msgid "Flags"
msgstr "Bendera"
@@ -5246,12 +5381,12 @@ msgstr "Bendera"
#. i18n: Floating-point (non-integer) number
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:138
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:198
-#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:152
+#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:153
#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97
msgid "Float"
msgstr "Apung"
-#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:565
+#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:566
msgid "Follow &branch"
msgstr "Ikut &cabang"
@@ -5271,35 +5406,35 @@ msgid ""
"\">refer to this page."
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:57
+#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:58
msgid "Force 16:9"
msgstr "Paksa 16:9"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:117
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:152
msgid "Force 24-Bit Color"
msgstr "Paksa warna 24-Bit"
-#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:57
+#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:58
msgid "Force 4:3"
msgstr "Paksa 4:3"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:96
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:115
msgid "Force Linear"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:103
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:122
msgid "Force Linear and 16x Anisotropic"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:97
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:116
msgid "Force Linear and 2x Anisotropic"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:99
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:118
msgid "Force Linear and 4x Anisotropic"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:101
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:120
msgid "Force Linear and 8x Anisotropic"
msgstr ""
@@ -5307,7 +5442,7 @@ msgstr ""
msgid "Force Listen Port:"
msgstr "Paksa Port Dengar:"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:95
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:114
msgid "Force Nearest"
msgstr ""
@@ -5319,7 +5454,7 @@ msgstr ""
msgid "Forced on because %1 doesn't support geometry shaders."
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:474
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:556
msgid ""
"Forces the game to output graphics for any aspect ratio. Use with \"Aspect "
"Ratio\" set to \"Force 16:9\" to force 4:3-only games to run at 16:9."
@@ -5329,7 +5464,7 @@ msgid ""
""
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:503
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:585
msgid ""
"Forces the game to render the RGB color channels in 24-bit, thereby "
"increasing quality by reducing color banding.
Has no impact on "
@@ -5337,7 +5472,7 @@ msgid ""
"unsure, leave this checked."
msgstr ""
-#: Source/Core/DolphinQt/ConvertDialog.cpp:59
+#: Source/Core/DolphinQt/ConvertDialog.cpp:60
msgid "Format:"
msgstr ""
@@ -5403,19 +5538,19 @@ msgstr "Bingkai untuk Dirakam:"
msgid "France"
msgstr "Perancis"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:311
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:312
msgid "Free Blocks: %1"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:312
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:313
msgid "Free Files: %1"
msgstr ""
-#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:42
+#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:43
msgid "Free Look Control Type"
msgstr ""
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:468
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:470
msgid "Free Look Controller %1"
msgstr ""
@@ -5423,7 +5558,7 @@ msgstr ""
msgid "Free Look Settings"
msgstr ""
-#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:54
+#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:55
msgid ""
"Free Look allows for manipulation of the in-game camera. Different camera "
"types are available from the dropdown.
Disabling the "
@@ -3501,7 +3588,7 @@ msgid ""
"checked."
msgstr ""
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:96
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:97
msgid "Disc"
msgstr "Plate"
@@ -3535,25 +3622,25 @@ msgstr "Avstand"
msgid "Distance of travel from neutral position."
msgstr "Reiseavstand fra nøytral posisjon."
-#: Source/Core/DolphinQt/Main.cpp:259
+#: Source/Core/DolphinQt/Main.cpp:264
msgid "Do you authorize Dolphin to report information to Dolphin's developers?"
msgstr "Tillater du at Dolphin samler inn informasjon til Dolphins utviklere?"
-#: Source/Core/DolphinQt/MainWindow.cpp:1692
+#: Source/Core/DolphinQt/MainWindow.cpp:1712
msgid "Do you want to add \"%1\" to the list of Game Paths?"
msgstr "Vil du legge til «%1» i listen over spillfilbaner?"
-#: Source/Core/DolphinQt/MenuBar.cpp:1241
+#: Source/Core/DolphinQt/MenuBar.cpp:1227
msgid "Do you want to clear the list of symbol names?"
msgstr "Vil du tømme listen over symbolnavn?"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:658
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:659
#, c-format
msgctxt ""
msgid "Do you want to delete the %n selected save file(s)?"
msgstr ""
-#: Source/Core/DolphinQt/MainWindow.cpp:933
+#: Source/Core/DolphinQt/MainWindow.cpp:935
msgid "Do you want to stop the current emulation?"
msgstr "Vil du stoppe pågående emulering?"
@@ -3565,35 +3652,35 @@ msgstr ""
msgid "Dolby Pro Logic II Decoder"
msgstr "Dolby Pro Logic II-dekoder"
-#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:219
-#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:230
+#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:215
+#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:226
msgid "Dolphin FIFO Log (*.dff)"
msgstr "Dolphin FIFO-Logg (*.dff)"
-#: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:327
+#: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:326
msgid "Dolphin Game Mod Preset"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1536
-#: Source/Core/DolphinQt/MenuBar.cpp:1553
-#: Source/Core/DolphinQt/MenuBar.cpp:1572
+#: Source/Core/DolphinQt/MenuBar.cpp:1523
+#: Source/Core/DolphinQt/MenuBar.cpp:1540
+#: Source/Core/DolphinQt/MenuBar.cpp:1559
msgid "Dolphin Map File (*.map)"
msgstr "Dolphin Map Fil (*.map)"
-#: Source/Core/DolphinQt/MenuBar.cpp:73
+#: Source/Core/DolphinQt/MenuBar.cpp:74
msgid "Dolphin Signature CSV File"
msgstr "Dolphin-signatur-CSV-fil"
-#: Source/Core/DolphinQt/MenuBar.cpp:73
+#: Source/Core/DolphinQt/MenuBar.cpp:74
msgid "Dolphin Signature File"
msgstr "Dolphin-signaturfil"
-#: Source/Core/DolphinQt/MainWindow.cpp:1772
-#: Source/Core/DolphinQt/MainWindow.cpp:1843
+#: Source/Core/DolphinQt/MainWindow.cpp:1823
+#: Source/Core/DolphinQt/MainWindow.cpp:1894
msgid "Dolphin TAS Movies (*.dtm)"
msgstr "Dolphin TAS-Filmer (*.dtm)"
-#: Source/Core/DolphinQt/ConvertDialog.cpp:326
+#: Source/Core/DolphinQt/ConvertDialog.cpp:327
msgid ""
"Dolphin can't convert NKit files to non-NKit files. Converting an NKit file "
"in Dolphin will result in another NKit file.\n"
@@ -3604,7 +3691,7 @@ msgid ""
"Do you want to continue anyway?"
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:279
+#: Source/Core/DolphinQt/GameList/GameList.cpp:280
msgid ""
"Dolphin could not find any GameCube/Wii ISOs or WADs.\n"
"Double-click here to set a games directory..."
@@ -3612,7 +3699,7 @@ msgstr ""
"Dolphin kunne ikke finne noen GameCube/Wii ISO-filer eller WAD-filer.\n"
"Dobbeltklikk her for å velge en spillmappe..."
-#: Source/Core/DolphinQt/ConvertDialog.cpp:526
+#: Source/Core/DolphinQt/ConvertDialog.cpp:529
msgid "Dolphin failed to complete the requested action."
msgstr "Dolphin kunne ikke fullføre den forespurte handligen."
@@ -3624,7 +3711,7 @@ msgstr "Dolphin kunne ikke fullføre den forespurte handligen."
msgid "Dolphin is a free and open-source GameCube and Wii emulator."
msgstr "Dolphin er en fri og åpen kildekode-basert GameCube og Wii-emulator."
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:998
msgid "Dolphin is too old for traversal server"
msgstr "Dolphin er for gammel for traverseringsserveren"
@@ -3640,7 +3727,7 @@ msgstr ""
msgid "Dolphin is unable to verify unlicensed discs."
msgstr "Dolphin kan ikke verifisere ulisensierte disker."
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:217
msgid ""
"Dolphin will use this for titles whose region cannot be determined "
"automatically."
@@ -3655,15 +3742,15 @@ msgstr "Dolphins juksesystem er for øyeblikket deaktivert."
msgid "Domain"
msgstr "Domene"
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:193
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:194
msgid "Don't Update"
msgstr "Ikke oppdater"
-#: Source/Core/DolphinQt/NKitWarningDialog.cpp:53
+#: Source/Core/DolphinQt/NKitWarningDialog.cpp:56
msgid "Don't show this again"
msgstr "Ikke vis dette igjen"
-#: Source/Core/DiscIO/CompressedBlob.cpp:369
+#: Source/Core/DiscIO/CompressedBlob.cpp:374
msgid "Done compressing disc image."
msgstr "Ferdig med å komprimere disk-avbildningsfil."
@@ -3676,37 +3763,37 @@ msgstr ""
#. i18n: A double precision floating point number
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:139
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:199
-#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:154
+#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:155
msgid "Double"
msgstr "Dobbel"
#: Source/Core/Core/FreeLookManager.cpp:89
#: Source/Core/Core/HW/WiimoteEmu/Extension/Guitar.cpp:80
#: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:35
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:43
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:44
#: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:21
#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUAccelerometer.cpp:19
#: Source/Core/InputCommon/ControllerEmu/ControllerEmu.h:24
msgid "Down"
msgstr "Ned"
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:86
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:87
msgid "Download Codes"
msgstr "Last ned koder"
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:88
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:89
msgid "Download Codes from the WiiRD Database"
msgstr "Last ned koder fra WiiRD-databasen"
-#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:148
+#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:153
msgid "Download Game Covers from GameTDB.com for Use in Grid Mode"
msgstr "Last ned spillcovere fra GameTDB.com for bruk i portrettmodus"
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:370
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:373
msgid "Download complete"
msgstr "Nedlasting fullført"
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:371
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:374
msgid "Downloaded %1 codes. (added %2)"
msgstr "Lastet %1 koder. (Lagt til %2)"
@@ -3729,7 +3816,7 @@ msgstr "Dobbelkjerne"
msgid "Dual View"
msgstr ""
-#: Source/Core/Core/HW/EXI/EXI_Device.h:95
+#: Source/Core/Core/HW/EXI/EXI_Device.h:94
msgid "Dummy"
msgstr "Juksedukke"
@@ -3749,7 +3836,7 @@ msgstr "Dump &FakeVMEM"
msgid "Dump &MRAM"
msgstr "Dump &MRAM"
-#: Source/Core/DolphinQt/MenuBar.cpp:814
+#: Source/Core/DolphinQt/MenuBar.cpp:806
msgid "Dump Audio"
msgstr "Dump lyd"
@@ -3761,7 +3848,7 @@ msgstr "Dump grunnteksturer"
msgid "Dump EFB Target"
msgstr "Dump EFB-mål"
-#: Source/Core/DolphinQt/MenuBar.cpp:808
+#: Source/Core/DolphinQt/MenuBar.cpp:800
msgid "Dump Frames"
msgstr "Dumping av bilder"
@@ -3834,12 +3921,12 @@ msgid "Duration of Turbo Button Release (frames):"
msgstr ""
#: Source/Core/DiscIO/Enums.cpp:95
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174
msgid "Dutch"
msgstr "Nederlandsk"
-#: Source/Core/DolphinQt/MenuBar.cpp:215
+#: Source/Core/DolphinQt/MenuBar.cpp:207
msgid "E&xit"
msgstr "&Avslutt"
@@ -3855,7 +3942,7 @@ msgid ""
"driver."
msgstr ""
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:185
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:186
msgid ""
"Each player sends their own inputs to the game, with equal buffer size for "
"all players, configured by the host.\n"
@@ -3869,7 +3956,7 @@ msgstr "Tidlige minneoppdateringer"
#. i18n: One of the elements in the Skylanders games. Japanese: 土. For official translations
#. in other languages, check the SuperChargers manual at https://support.activision.com/manuals
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:336
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:352
msgid "Earth"
msgstr ""
@@ -3882,7 +3969,7 @@ msgstr "Øst-Asia"
msgid "Edit Breakpoint"
msgstr ""
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:426
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:430
msgid "Edit..."
msgstr ""
@@ -3916,7 +4003,7 @@ msgstr "Løs ut disk"
#. i18n: Elements are a trait of Skylanders figures. For official translations of this term,
#. check the Skylanders SuperChargers manual at https://support.activision.com/manuals
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:289
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:300
msgid "Element"
msgstr ""
@@ -3924,11 +4011,11 @@ msgstr ""
msgid "Embedded Frame Buffer (EFB)"
msgstr "Eksternt bildemellomlager (EFB)"
-#: Source/Core/Core/State.cpp:541
+#: Source/Core/Core/State.cpp:629
msgid "Empty"
msgstr "Tom"
-#: Source/Core/Core/Core.cpp:246
+#: Source/Core/Core/Core.cpp:247
msgid "Emu Thread already running"
msgstr "Emulator-CPU-tråden kjører allerede"
@@ -3936,15 +4023,15 @@ msgstr "Emulator-CPU-tråden kjører allerede"
msgid "Emulate Disc Speed"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:60
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:61
msgid "Emulate Infinity Base"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:146
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:157
msgid "Emulate Skylander Portal"
msgstr ""
-#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:110
+#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:111
msgid "Emulate the Wii's Bluetooth adapter"
msgstr "Emuler Wii-ens Blåtannsadapter"
@@ -3954,11 +4041,11 @@ msgid ""
"Defaults to True"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:230
+#: Source/Core/DolphinQt/MenuBar.cpp:222
msgid "Emulated USB Devices"
msgstr ""
-#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:141
+#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:142
msgid "Emulated Wii Remote"
msgstr "Emulert Wii Remote"
@@ -3978,12 +4065,12 @@ msgstr "Emuleringshastighet"
msgid "Emulation must be started to record."
msgstr ""
-#: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:29
-#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:33
+#: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:30
+#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:34
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:120
-#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:129
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:402
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:419
+#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:130
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:406
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:423
msgid "Enable"
msgstr "Aktiver"
@@ -3991,6 +4078,10 @@ msgstr "Aktiver"
msgid "Enable API Validation Layers"
msgstr "Slå på API-valideringslag"
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:83
+msgid "Enable Achievement Badges"
+msgstr ""
+
#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:60
msgid "Enable Achievements"
msgstr ""
@@ -3999,15 +4090,19 @@ msgstr ""
msgid "Enable Audio Stretching"
msgstr "Tillat lydstrekking"
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:142
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:143
msgid "Enable Cheats"
msgstr "Aktiver juksekoder"
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:155
+#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:53
+msgid "Enable Controller Inpu&t"
+msgstr ""
+
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:161
msgid "Enable Custom RTC"
msgstr "Aktiver egendefinert RTC (klokke)"
-#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:149
+#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:154
msgid "Enable Debugging UI"
msgstr ""
@@ -4015,19 +4110,19 @@ msgstr ""
msgid "Enable Dual Core"
msgstr "Aktiver bruk av dobbelkjerne"
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:139
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:140
msgid "Enable Dual Core (speedup)"
msgstr "Aktiver bruk av dobbelkjerne (for bedre ytelse)"
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:88
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:94
msgid "Enable Emulated CPU Clock Override"
msgstr "Aktiver emulert CPU klokkefrekvensoverskridelse"
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:118
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:124
msgid "Enable Emulated Memory Size Override"
msgstr ""
-#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:78
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:88
msgid "Enable Encore Achievements"
msgstr ""
@@ -4044,10 +4139,14 @@ msgid "Enable Leaderboards"
msgstr ""
#: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:88
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:66
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:68
msgid "Enable MMU"
msgstr "Aktiver MMU"
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:78
+msgid "Enable Progress Notifications"
+msgstr ""
+
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:156
msgid "Enable Progressive Scan"
msgstr "Aktiver progressiv skanning"
@@ -4061,15 +4160,15 @@ msgid "Enable Rich Presence"
msgstr ""
#: Source/Core/DolphinQt/Config/Mapping/GCPadWiiUConfigDialog.cpp:39
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:353
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:352
msgid "Enable Rumble"
msgstr "Aktiver vibrering"
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:157
msgid "Enable Screen Saver"
msgstr "Aktiver skjermbeskytter"
-#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:113
+#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:114
msgid "Enable Speaker Data"
msgstr "Tillat høyttalerdata"
@@ -4077,11 +4176,11 @@ msgstr "Tillat høyttalerdata"
msgid "Enable Unofficial Achievements"
msgstr ""
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:230
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:231
msgid "Enable Usage Statistics Reporting"
msgstr "Skru på bruks- og statistikkrapportering"
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158
msgid "Enable WiiConnect24 via WiiLink"
msgstr ""
@@ -4089,10 +4188,17 @@ msgstr ""
msgid "Enable Wireframe"
msgstr "Aktiver wireframe"
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:77
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:82
msgid "Enable Write-Back Cache (slow)"
msgstr ""
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:85
+msgid ""
+"Enable achievement badges.
Displays icons for the player, game, and "
+"achievements. Simple visual option, but will require a small amount of extra "
+"memory and time to download the images."
+msgstr ""
+
#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:64
msgid ""
"Enable competing in RetroAchievements leaderboards.
Displays a brief popup "
+"message whenever the player makes progress on an achievement that tracks an "
+"accumulated value, such as 60 out of 120 stars."
+msgstr ""
+
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:90
+msgid ""
"Enable unlocking achievements in Encore Mode.
Encore Mode re-enables "
"achievements the player has already unlocked on the site so that the player "
"will be notified if they meet the unlock conditions again, useful for custom "
@@ -4157,7 +4270,7 @@ msgstr ""
"Aktiverer flyttallskalkulering av punkt for resulterende flagg, som trengs "
"for noen få spill. (PÅ = Kompatibelt, AV = Raskt)"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:514
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:596
msgid ""
"Enables detection of arbitrary mipmaps, which some games use for special "
"distance-based effects.
May have false positives that result in "
@@ -4168,11 +4281,12 @@ msgid ""
"dolphin_emphasis>"
msgstr ""
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:79
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:84
msgid ""
-"Enables emulation of the CPU write-back cache.\n"
-"Enabling will have a significant impact on performance.\n"
-"This should be left disabled unless absolutely needed."
+"Enables emulation of the CPU write-back cache. Enabling will have a "
+"significant impact on performance. This should be left disabled unless "
+"absolutely needed.
If unsure, leave this unchecked."
+""
msgstr ""
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:365
@@ -4190,7 +4304,7 @@ msgid ""
"this unchecked."
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:522
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:604
msgid ""
"Enables scRGB HDR output (if supported by your graphics backend and "
"monitor). Fullscreen might be required.
This gives post process "
@@ -4213,7 +4327,6 @@ msgid ""
msgstr ""
#: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:100
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:68
msgid ""
"Enables the Memory Management Unit, needed for some games. (ON = Compatible, "
"OFF = Fast)"
@@ -4221,7 +4334,14 @@ msgstr ""
"Tillater Memory Management Unit (MMU), som trengs for noen spill. (PÅ = "
"Kompatibelt, AV = Raskt)"
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:193
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:70
+msgid ""
+"Enables the Memory Management Unit, needed for some games. (ON = Compatible, "
+"OFF = Fast)
If unsure, leave this unchecked."
+"dolphin_emphasis>"
+msgstr ""
+
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190
msgid ""
"Enables the WiiLink service for WiiConnect24 channels.\n"
"WiiLink is an alternate provider for the discontinued WiiConnect24 Channels "
@@ -4248,7 +4368,7 @@ msgstr ""
msgid "Encoding"
msgstr "Tegnkoding"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:615
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:616
msgid ""
"Encountered the following errors while opening save files:\n"
"%1\n"
@@ -4261,12 +4381,12 @@ msgid "Enet Didn't Initialize"
msgstr "Enhet ble ikke igangsatt"
#: Source/Core/DiscIO/Enums.cpp:80
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:85
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:169
msgid "English"
msgstr "Engelsk"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:59
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:61
#: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:61
msgid "Enhancements"
msgstr "Forbedringer"
@@ -4297,84 +4417,84 @@ msgstr "Oppgi passord"
msgid "Enter the DNS server to use:"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1300
+#: Source/Core/DolphinQt/MenuBar.cpp:1286
msgid "Enter the RSO module address:"
msgstr "Skriv inn RSO-moduladresse:"
#: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:194
#: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:250
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:261
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:262
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386
#: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:265
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:343
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:349
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:346
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:352
#: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:46
-#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:521
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:256
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:295
-#: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:232
-#: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:259
-#: Source/Core/DolphinQt/ConvertDialog.cpp:424
-#: Source/Core/DolphinQt/ConvertDialog.cpp:471
-#: Source/Core/DolphinQt/ConvertDialog.cpp:525
+#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:539
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:255
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:296
+#: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:229
+#: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:256
+#: Source/Core/DolphinQt/ConvertDialog.cpp:426
+#: Source/Core/DolphinQt/ConvertDialog.cpp:473
+#: Source/Core/DolphinQt/ConvertDialog.cpp:528
#: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:255
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:638
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:644
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:653
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:665
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:684
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:690
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:705
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:713
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:737
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:744
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:637
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:643
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:652
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:664
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:683
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:689
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:704
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:712
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:736
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:743
#: Source/Core/DolphinQt/Debugger/RegisterColumn.cpp:86
#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:282
#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:431
-#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:241
-#: Source/Core/DolphinQt/GBAWidget.cpp:576
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:346
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:376
-#: Source/Core/DolphinQt/Main.cpp:209 Source/Core/DolphinQt/Main.cpp:225
-#: Source/Core/DolphinQt/Main.cpp:232 Source/Core/DolphinQt/MainWindow.cpp:295
-#: Source/Core/DolphinQt/MainWindow.cpp:303
-#: Source/Core/DolphinQt/MainWindow.cpp:1108
-#: Source/Core/DolphinQt/MainWindow.cpp:1494
-#: Source/Core/DolphinQt/MainWindow.cpp:1501
-#: Source/Core/DolphinQt/MainWindow.cpp:1561
-#: Source/Core/DolphinQt/MainWindow.cpp:1568
-#: Source/Core/DolphinQt/MainWindow.cpp:1670
-#: Source/Core/DolphinQt/MenuBar.cpp:1204
-#: Source/Core/DolphinQt/MenuBar.cpp:1284
+#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:237
+#: Source/Core/DolphinQt/GBAWidget.cpp:578
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:347
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:377
+#: Source/Core/DolphinQt/Main.cpp:211 Source/Core/DolphinQt/Main.cpp:227
+#: Source/Core/DolphinQt/Main.cpp:234 Source/Core/DolphinQt/MainWindow.cpp:297
+#: Source/Core/DolphinQt/MainWindow.cpp:305
+#: Source/Core/DolphinQt/MainWindow.cpp:1110
+#: Source/Core/DolphinQt/MainWindow.cpp:1507
+#: Source/Core/DolphinQt/MainWindow.cpp:1514
+#: Source/Core/DolphinQt/MainWindow.cpp:1574
+#: Source/Core/DolphinQt/MainWindow.cpp:1581
+#: Source/Core/DolphinQt/MainWindow.cpp:1690
+#: Source/Core/DolphinQt/MenuBar.cpp:1190
+#: Source/Core/DolphinQt/MenuBar.cpp:1270
+#: Source/Core/DolphinQt/MenuBar.cpp:1293
#: Source/Core/DolphinQt/MenuBar.cpp:1307
-#: Source/Core/DolphinQt/MenuBar.cpp:1321
-#: Source/Core/DolphinQt/MenuBar.cpp:1352
-#: Source/Core/DolphinQt/MenuBar.cpp:1376
-#: Source/Core/DolphinQt/MenuBar.cpp:1597
-#: Source/Core/DolphinQt/MenuBar.cpp:1608
-#: Source/Core/DolphinQt/MenuBar.cpp:1620
-#: Source/Core/DolphinQt/MenuBar.cpp:1642
-#: Source/Core/DolphinQt/MenuBar.cpp:1668
-#: Source/Core/DolphinQt/MenuBar.cpp:1722
-#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:315
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:477
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:738
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:980
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1098
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1108
-#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:334
-#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:340
-#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:347
+#: Source/Core/DolphinQt/MenuBar.cpp:1339
+#: Source/Core/DolphinQt/MenuBar.cpp:1363
+#: Source/Core/DolphinQt/MenuBar.cpp:1584
+#: Source/Core/DolphinQt/MenuBar.cpp:1595
+#: Source/Core/DolphinQt/MenuBar.cpp:1607
+#: Source/Core/DolphinQt/MenuBar.cpp:1629
+#: Source/Core/DolphinQt/MenuBar.cpp:1655
+#: Source/Core/DolphinQt/MenuBar.cpp:1709
+#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:316
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:479
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:740
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:982
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1100
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1110
+#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:332
+#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:338
+#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:345
#: Source/Core/DolphinQt/RenderWidget.cpp:123
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:203
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:224
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:423
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:439
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:460
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:481
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:525
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:562
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:585
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:204
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:225
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:433
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:449
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:470
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:491
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:535
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:572
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:595
#: Source/Core/DolphinQt/Translation.cpp:322
msgid "Error"
msgstr "Feil"
@@ -4383,13 +4503,13 @@ msgstr "Feil"
msgid "Error Opening Adapter: %1"
msgstr "Feil under åpning av adapter: %1"
-#: Source/Core/Core/NetPlayServer.cpp:1493
+#: Source/Core/Core/NetPlayServer.cpp:1497
msgid "Error collecting save data!"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:260
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:526
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:533
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:262
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:613
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:620
msgid "Error converting value"
msgstr ""
@@ -4402,15 +4522,15 @@ msgstr ""
msgid "Error obtaining session list: %1"
msgstr "Feil ved henting av sesjonsliste: %1"
-#: Source/Core/DolphinQt/MainWindow.cpp:296
+#: Source/Core/DolphinQt/MainWindow.cpp:298
msgid "Error occurred while loading some texture packs"
msgstr ""
-#: Source/Core/Core/NetPlayClient.cpp:1847
+#: Source/Core/Core/NetPlayClient.cpp:1851
msgid "Error processing codes."
msgstr "Feil ved synkronisering av juksekoder."
-#: Source/Core/Core/NetPlayClient.cpp:1819
+#: Source/Core/Core/NetPlayClient.cpp:1823
msgid "Error processing data."
msgstr "Feil ved bearbeidelse av data."
@@ -4418,11 +4538,11 @@ msgstr "Feil ved bearbeidelse av data."
msgid "Error reading file: {0}"
msgstr ""
-#: Source/Core/Core/NetPlayServer.cpp:1529
+#: Source/Core/Core/NetPlayServer.cpp:1533
msgid "Error synchronizing cheat codes!"
msgstr "Feil ved synkronisering av juksekoder!"
-#: Source/Core/Core/NetPlayServer.cpp:1515
+#: Source/Core/Core/NetPlayServer.cpp:1519
msgid "Error synchronizing save data!"
msgstr "Feil ved synkronisering av lagringsdata!"
@@ -4497,7 +4617,7 @@ msgstr ""
msgid "Euphoria"
msgstr "Euforia"
-#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:282
+#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:274
#: Source/Core/UICommon/NetPlayIndex.cpp:249
msgid "Europe"
msgstr "Europa"
@@ -4526,11 +4646,11 @@ msgstr ""
msgid "Excluded: %1"
msgstr ""
-#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:73
+#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:72
msgid "Excluded: 0"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:107
+#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108
msgid "Exclusive Ubershaders"
msgstr ""
@@ -4578,14 +4698,14 @@ msgstr ""
msgid "Experimental"
msgstr "Eksperimentell"
-#: Source/Core/DolphinQt/MenuBar.cpp:294
+#: Source/Core/DolphinQt/MenuBar.cpp:286
msgid "Export All Wii Saves"
msgstr "Eksporter alle Wii-lagringsfiler"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:422
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:447
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:492
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:499
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:423
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:448
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:493
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:500
msgid "Export Failed"
msgstr ""
@@ -4593,42 +4713,42 @@ msgstr ""
msgid "Export Recording"
msgstr "Eksporter opptak"
-#: Source/Core/DolphinQt/MenuBar.cpp:753
+#: Source/Core/DolphinQt/MenuBar.cpp:745
msgid "Export Recording..."
msgstr "Eksporter opptak…"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:437
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:438
msgid "Export Save File"
msgstr "Eksporter lagringsfil"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:454
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:455
msgid "Export Save Files"
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:470
+#: Source/Core/DolphinQt/GameList/GameList.cpp:473
msgid "Export Wii Save"
msgstr "Eksporter Wii-lagrefil"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:388
+#: Source/Core/DolphinQt/GameList/GameList.cpp:389
msgid "Export Wii Saves"
msgstr "Eksporter Wii-lagrefiler"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:117
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:118
msgid "Export as .&gcs..."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:118
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:119
msgid "Export as .&sav..."
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1133
+#: Source/Core/DolphinQt/MenuBar.cpp:1115
#, c-format
msgctxt ""
msgid "Exported %n save(s)"
msgstr "Eksporterte %n lagringsfil(er)."
#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:268
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:432
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:434
#: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:47
msgid "Extension"
msgstr "Utvidelse"
@@ -4641,7 +4761,7 @@ msgstr ""
msgid "Extension Motion Simulation"
msgstr ""
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:520
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:522
msgid "External"
msgstr "Ekstern"
@@ -4649,35 +4769,35 @@ msgstr "Ekstern"
msgid "External Frame Buffer (XFB)"
msgstr "Eksternt bildebuffer (EFB)"
-#: Source/Core/DolphinQt/MenuBar.cpp:271
+#: Source/Core/DolphinQt/MenuBar.cpp:263
msgid "Extract Certificates from NAND"
msgstr "Pakk ut sertifikater fra NAND"
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:268
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:269
msgid "Extract Entire Disc..."
msgstr "Pakk ut hele disken…"
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:292
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:293
msgid "Extract Entire Partition..."
msgstr "Pakk ut hele partisjonen…"
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:299
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:300
msgid "Extract File..."
msgstr "Pakk ut fil…"
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:241
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:242
msgid "Extract Files..."
msgstr "Pakk ut filer…"
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:251
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:252
msgid "Extract System Data..."
msgstr "Pakk ut systemdata…"
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:355
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:356
msgid "Extracting All Files..."
msgstr "Pakker ut alle filer..."
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:356
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357
msgid "Extracting Directory..."
msgstr "Pakker ut mappe..."
@@ -4687,7 +4807,7 @@ msgid "FD"
msgstr "FD"
#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:37
-#: Source/Core/DolphinQt/MenuBar.cpp:228
+#: Source/Core/DolphinQt/MenuBar.cpp:220
msgid "FIFO Player"
msgstr "FIFO-spiller"
@@ -4695,7 +4815,7 @@ msgstr "FIFO-spiller"
msgid "Failed loading XML."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:347
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:348
msgid ""
"Failed opening memory card:\n"
"%1"
@@ -4703,11 +4823,11 @@ msgstr ""
"Kunne ikke åpne minnekort:\n"
"%1"
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:454
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:456
msgid "Failed to add this session to the NetPlay index: %1"
msgstr "Kunne ikke legge til denne sesjonen i NetPlay-indeksen: %1"
-#: Source/Core/DolphinQt/MenuBar.cpp:1669
+#: Source/Core/DolphinQt/MenuBar.cpp:1656
msgid "Failed to append to signature file '%1'"
msgstr "Kunne ikke legge til på signaturfil '%1'"
@@ -4715,11 +4835,11 @@ msgstr "Kunne ikke legge til på signaturfil '%1'"
msgid "Failed to claim interface for BT passthrough: {0}"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:574
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:676
msgid "Failed to clear Skylander!"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:575
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:677
msgid "Failed to clear the Skylander from slot(%1)!"
msgstr ""
@@ -4727,7 +4847,7 @@ msgstr ""
msgid "Failed to connect to Redump.org"
msgstr ""
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:981
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:983
msgid "Failed to connect to server: %1"
msgstr "Kunne ikke koble til server: %1"
@@ -4748,15 +4868,15 @@ msgstr ""
msgid "Failed to create DXGI factory"
msgstr "Kunne ikke lage DXGI factory"
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:289
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:291
msgid "Failed to create Infinity file"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:678
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:798
msgid "Failed to create Skylander file!"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:679
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:799
msgid ""
"Failed to create Skylander file:\n"
"%1\n"
@@ -4772,7 +4892,7 @@ msgstr ""
msgid "Failed to delete NetPlay memory card. Verify your write permissions."
msgstr "Kunne ikke slette NetPlay-minnekort. Verifiser dine skrivetillatelser."
-#: Source/Core/DolphinQt/GameList/GameList.cpp:841
+#: Source/Core/DolphinQt/GameList/GameList.cpp:854
msgid "Failed to delete the selected file."
msgstr "Klarte ikke å slette valgt fil."
@@ -4780,36 +4900,36 @@ msgstr "Klarte ikke å slette valgt fil."
msgid "Failed to detach kernel driver for BT passthrough: {0}"
msgstr ""
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:343
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:346
msgid "Failed to download codes."
msgstr "Nedlasting av koder mislyktes."
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:738
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:737
msgid "Failed to dump %1: Can't open file"
msgstr "Kunne ikke dumpe %1: Kan ikke åpne fil"
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:745
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:744
msgid "Failed to dump %1: Failed to write to file"
msgstr "Kunne ikke dumpe %1: Kan ikke skrive til fil"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:488
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:489
msgctxt ""
msgid "Failed to export %n out of %1 save file(s)."
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:576
+#: Source/Core/DolphinQt/GameList/GameList.cpp:584
msgid "Failed to export the following save files:"
msgstr "Kunne ikke eksportere følgende lagringsfiler:"
-#: Source/Core/DolphinQt/MenuBar.cpp:1204
+#: Source/Core/DolphinQt/MenuBar.cpp:1190
msgid "Failed to extract certificates from NAND"
msgstr "Klarte ikke å pakke ut sertifikater fra NAND"
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386
msgid "Failed to extract file."
msgstr "Kunne ikke pakke ut fil."
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:261
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:262
msgid "Failed to extract system data."
msgstr "Kunne ikke pakke ut systemdata."
@@ -4824,29 +4944,29 @@ msgstr ""
msgid "Failed to find one or more D3D symbols"
msgstr "Kunne ikke finne en eller flere D3D-symboler"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:565
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:566
msgid "Failed to import \"%1\"."
msgstr "Kunne ikke importere \"%1\"."
-#: Source/Core/DolphinQt/MenuBar.cpp:1109
+#: Source/Core/DolphinQt/MenuBar.cpp:1091
msgid ""
"Failed to import save file. Please launch the game once, then try again."
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1103
+#: Source/Core/DolphinQt/MenuBar.cpp:1085
msgid ""
"Failed to import save file. The given file appears to be corrupted or is not "
"a valid Wii save."
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1116
+#: Source/Core/DolphinQt/MenuBar.cpp:1098
msgid ""
"Failed to import save file. Your NAND may be corrupt, or something is "
"preventing access to files within it. Try repairing your NAND (Tools -> "
"Manage NAND -> Check NAND...), then import the save again."
msgstr ""
-#: Source/Core/DolphinQt/MainWindow.cpp:1108
+#: Source/Core/DolphinQt/MainWindow.cpp:1110
msgid "Failed to init core"
msgstr "Klarte ikke å igangsette kjerne"
@@ -4861,16 +4981,16 @@ msgstr ""
msgid "Failed to initialize renderer classes"
msgstr ""
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:204
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:205
msgid "Failed to install pack: %1"
msgstr "Kunne ikke installere pakke: %1"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:619
-#: Source/Core/DolphinQt/MenuBar.cpp:1074
+#: Source/Core/DolphinQt/GameList/GameList.cpp:628
+#: Source/Core/DolphinQt/MenuBar.cpp:1056
msgid "Failed to install this title to the NAND."
msgstr "Klarte ikke å installere denne tittelen til NAND."
-#: Source/Core/DolphinQt/MainWindow.cpp:1594
+#: Source/Core/DolphinQt/MainWindow.cpp:1607
msgid ""
"Failed to listen on port %1. Is another instance of the NetPlay server "
"running?"
@@ -4878,8 +4998,8 @@ msgstr ""
"Klarte ikke å lytte til port %1. Kjøres det en annen instans av NetPlay-"
"tjeneren?"
-#: Source/Core/DolphinQt/MenuBar.cpp:1321
-#: Source/Core/DolphinQt/MenuBar.cpp:1376
+#: Source/Core/DolphinQt/MenuBar.cpp:1307
+#: Source/Core/DolphinQt/MenuBar.cpp:1363
msgid "Failed to load RSO module at %1"
msgstr "Kunne ikke laste RSO-modul ved %1"
@@ -4891,15 +5011,15 @@ msgstr "Kunne ikke laste d3d11.dll"
msgid "Failed to load dxgi.dll"
msgstr "Kunne ikke laste dxgi.dll"
-#: Source/Core/DolphinQt/MenuBar.cpp:1608
+#: Source/Core/DolphinQt/MenuBar.cpp:1595
msgid "Failed to load map file '%1'"
msgstr "Kunne ikke laste map-fil '%1'"
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:720
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:842
msgid "Failed to load the Skylander file!"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:721
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:843
msgid "Failed to load the Skylander file(%1)!\n"
msgstr ""
@@ -4913,8 +5033,12 @@ msgid ""
"update package."
msgstr ""
-#: Source/Core/DolphinQt/GBAWidget.cpp:576
-#: Source/Core/DolphinQt/MainWindow.cpp:1670
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:663
+msgid "Failed to modify Skylander!"
+msgstr ""
+
+#: Source/Core/DolphinQt/GBAWidget.cpp:578
+#: Source/Core/DolphinQt/MainWindow.cpp:1690
#: Source/Core/DolphinQt/RenderWidget.cpp:123
msgid "Failed to open '%1'"
msgstr "Klarte ikke å åpne \"%1\""
@@ -4943,40 +5067,40 @@ msgstr ""
"Kunne ikke åpne ekstern editor.\n"
"Pass på at det er en applikasjon valgt til å åpne INI-filer."
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:861
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:863
msgid "Failed to open file."
msgstr ""
-#: Source/Core/DolphinQt/MainWindow.cpp:1593
+#: Source/Core/DolphinQt/MainWindow.cpp:1606
msgid "Failed to open server"
msgstr "Klarte ikke å åpne tjener"
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:164
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:166
msgid "Failed to open the Infinity file!"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:165
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:167
msgid ""
"Failed to open the Infinity file(%1)!\n"
"File may already be in use on the base."
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:696
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:818
msgid "Failed to open the Skylander file!"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:697
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:819
msgid ""
"Failed to open the Skylander file(%1)!\n"
"File may already be in use on the portal."
msgstr ""
-#: Source/Core/DolphinQt/ConvertDialog.cpp:472
+#: Source/Core/DolphinQt/ConvertDialog.cpp:474
msgid "Failed to open the input file \"%1\"."
msgstr "Mislyktes i å åpne inndatafilen «%1»."
-#: Source/Core/DiscIO/CompressedBlob.cpp:282 Source/Core/DiscIO/FileBlob.cpp:53
-#: Source/Core/DiscIO/WIABlob.cpp:2037
+#: Source/Core/DiscIO/CompressedBlob.cpp:287 Source/Core/DiscIO/FileBlob.cpp:58
+#: Source/Core/DiscIO/WIABlob.cpp:2043
msgid ""
"Failed to open the output file \"{0}\".\n"
"Check that you have permissions to write the target folder and that the "
@@ -4996,35 +5120,35 @@ msgstr ""
msgid "Failed to read DFF file."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:863
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:865
msgid "Failed to read from file."
msgstr ""
-#: Source/Core/DiscIO/CompressedBlob.cpp:373 Source/Core/DiscIO/FileBlob.cpp:93
-#: Source/Core/DiscIO/WIABlob.cpp:2052
+#: Source/Core/DiscIO/CompressedBlob.cpp:378 Source/Core/DiscIO/FileBlob.cpp:98
+#: Source/Core/DiscIO/WIABlob.cpp:2058
msgid "Failed to read from the input file \"{0}\"."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:423
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:641
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:424
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:642
msgid "Failed to read selected savefile(s) from memory card."
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:173
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:175
msgid "Failed to read the Infinity file!"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:174
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:176
msgid ""
"Failed to read the Infinity file(%1)!\n"
"File was too small."
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:706
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:828
msgid "Failed to read the Skylander file!"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:707
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:829
msgid ""
"Failed to read the Skylander file(%1)!\n"
"File was too small."
@@ -5034,18 +5158,18 @@ msgstr ""
msgid "Failed to read {0}"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:668
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:669
msgid "Failed to remove file."
msgstr ""
-#: Source/Core/DolphinQt/ConvertDialog.cpp:453
+#: Source/Core/DolphinQt/ConvertDialog.cpp:455
msgid ""
"Failed to remove junk data from file \"%1\".\n"
"\n"
"Would you like to convert it without removing junk data?"
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:647
+#: Source/Core/DolphinQt/GameList/GameList.cpp:658
msgid "Failed to remove this title from the NAND."
msgstr "Kunne ikke fjerne denne tittelen fra NAND."
@@ -5064,27 +5188,34 @@ msgstr ""
msgid "Failed to reset NetPlay redirect folder. Verify your write permissions."
msgstr ""
-#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:241
+#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:237
msgid "Failed to save FIFO log."
msgstr "Lagring av FIFO-logg mislyktes."
-#: Source/Core/DolphinQt/MenuBar.cpp:1598
+#: Source/Core/DolphinQt/MenuBar.cpp:1585
msgid "Failed to save code map to path '%1'"
msgstr "Kunne ikke lagre kodemapping til sti '%1'"
-#: Source/Core/DolphinQt/MenuBar.cpp:1642
+#: Source/Core/DolphinQt/MenuBar.cpp:1629
msgid "Failed to save signature file '%1'"
msgstr "Kunne ikke lagre signaturfil '%1'"
-#: Source/Core/DolphinQt/MenuBar.cpp:1621
+#: Source/Core/DolphinQt/MenuBar.cpp:1608
msgid "Failed to save symbol map to path '%1'"
msgstr "Kunne ikke lagre symbolkart til sti '%1'"
-#: Source/Core/DolphinQt/MenuBar.cpp:1723
+#: Source/Core/DolphinQt/MenuBar.cpp:1710
msgid "Failed to save to signature file '%1'"
msgstr "Kunne ikke lagre til signaturfil '%1'"
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:225
+#: Source/Core/Core/Core.cpp:548
+msgid ""
+"Failed to sync SD card with folder. All changes made this session will be "
+"discarded on next boot if you do not manually re-issue a resync in Config > "
+"Wii > SD Card Settings > Convert File to Folder Now!"
+msgstr ""
+
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:226
msgid "Failed to uninstall pack: %1"
msgstr "Kunne ikke avinstallere pakke: %1"
@@ -5104,9 +5235,9 @@ msgstr "Skriving til Wii-lagringsfil mislyktes."
msgid "Failed to write config file!"
msgstr "Kunne ikke skrive til konfigurasjonsfilen!"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:573
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:676
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:691
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:574
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:677
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:692
msgid "Failed to write modified memory card to disk."
msgstr ""
@@ -5114,33 +5245,33 @@ msgstr ""
msgid "Failed to write redirected save."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:447
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:448
msgid "Failed to write savefile to disk."
msgstr ""
-#: Source/Core/DiscIO/CompressedBlob.cpp:377 Source/Core/DiscIO/FileBlob.cpp:99
-#: Source/Core/DiscIO/WIABlob.cpp:2056
+#: Source/Core/DiscIO/CompressedBlob.cpp:382
+#: Source/Core/DiscIO/FileBlob.cpp:104 Source/Core/DiscIO/WIABlob.cpp:2062
msgid ""
"Failed to write the output file \"{0}\".\n"
"Check that you have enough space available on the target drive."
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:617
-#: Source/Core/DolphinQt/GameList/GameList.cpp:645
-#: Source/Core/DolphinQt/GameList/GameList.cpp:840
-#: Source/Core/DolphinQt/MenuBar.cpp:1074
+#: Source/Core/DolphinQt/GameList/GameList.cpp:626
+#: Source/Core/DolphinQt/GameList/GameList.cpp:656
+#: Source/Core/DolphinQt/GameList/GameList.cpp:853
+#: Source/Core/DolphinQt/MenuBar.cpp:1056
msgid "Failure"
msgstr "Feil"
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:183
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:184
msgid "Fair Input Delay"
msgstr ""
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:199
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:200
msgid "Fallback Region"
msgstr ""
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:210
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:211
msgid "Fallback Region:"
msgstr ""
@@ -5164,17 +5295,21 @@ msgstr ""
msgid "Field of View"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:233
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:235
msgid "Figure Number:"
msgstr ""
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:380
+msgid "Figure type"
+msgstr ""
+
#: Source/Core/DolphinQt/Config/InfoWidget.cpp:46
msgid "File Details"
msgstr "Fildetaljer"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:991
+#: Source/Core/DolphinQt/GameList/GameList.cpp:1005
#: Source/Core/DolphinQt/GameList/GameListModel.cpp:229
-#: Source/Core/DolphinQt/MenuBar.cpp:652
+#: Source/Core/DolphinQt/MenuBar.cpp:644
msgid "File Format"
msgstr "Filformat"
@@ -5186,20 +5321,20 @@ msgstr "Filformat:"
msgid "File Info"
msgstr "Fil-informasjon"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:986
+#: Source/Core/DolphinQt/GameList/GameList.cpp:1000
#: Source/Core/DolphinQt/GameList/GameListModel.cpp:223
-#: Source/Core/DolphinQt/MenuBar.cpp:647
+#: Source/Core/DolphinQt/MenuBar.cpp:639
msgid "File Name"
msgstr "Filnavn"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:987
+#: Source/Core/DolphinQt/GameList/GameList.cpp:1001
#: Source/Core/DolphinQt/GameList/GameListModel.cpp:225
-#: Source/Core/DolphinQt/MenuBar.cpp:648
+#: Source/Core/DolphinQt/MenuBar.cpp:640
msgid "File Path"
msgstr "Filbane"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:990
-#: Source/Core/DolphinQt/MenuBar.cpp:651
+#: Source/Core/DolphinQt/GameList/GameList.cpp:1004
+#: Source/Core/DolphinQt/MenuBar.cpp:643
msgid "File Size"
msgstr "Filstørrelse"
@@ -5207,15 +5342,15 @@ msgstr "Filstørrelse"
msgid "File Size:"
msgstr "Filstørrelse:"
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:349
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:352
msgid "File contained no codes."
msgstr "Filen inneholdt ingen koder."
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:149
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:150
msgid "Filename"
msgstr ""
-#: Source/Core/DiscIO/CompressedBlob.cpp:289
+#: Source/Core/DiscIO/CompressedBlob.cpp:294
msgid "Files opened, ready to compress."
msgstr "Fil åpnet, klar for komprimering."
@@ -5225,12 +5360,12 @@ msgid ""
"{1}"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:833
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:835
msgid "Filesize does not match any known GameCube Memory Card size."
msgstr ""
"Filstørrelsen samsvarer ikke med noen kjente Gamecube-minnekortstørrelser."
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:836
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:838
msgid "Filesize in header mismatches actual card size."
msgstr ""
@@ -5238,7 +5373,7 @@ msgstr ""
msgid "Filesystem"
msgstr "Filsystem"
-#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:102
+#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:103
msgid "Filters"
msgstr "Filtre"
@@ -5254,7 +5389,7 @@ msgstr "Finn &forrige"
msgid "Finish Calibration"
msgstr "Fullfør kalibrering"
-#: Source/Core/DolphinQt/WiiUpdate.cpp:109
+#: Source/Core/DolphinQt/WiiUpdate.cpp:110
msgid ""
"Finishing the update...\n"
"This can take a while."
@@ -5264,19 +5399,19 @@ msgstr ""
#. i18n: One of the elements in the Skylanders games. Japanese: 火. For official translations
#. in other languages, check the SuperChargers manual at https://support.activision.com/manuals
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:333
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:349
msgid "Fire"
msgstr ""
-#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:40
+#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:41
msgid "First Person"
msgstr "Førsteperson"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:127
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:128
msgid "Fix Checksums"
msgstr "Fiks sjekksummer"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:690
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:691
msgid "Fix Checksums Failed"
msgstr ""
@@ -5286,7 +5421,7 @@ msgstr ""
#. i18n: These are the kinds of flags that a CPU uses (e.g. carry),
#. not the kinds of flags that represent e.g. countries
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:166
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167
#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:87
msgid "Flags"
msgstr "Flagg"
@@ -5295,12 +5430,12 @@ msgstr "Flagg"
#. i18n: Floating-point (non-integer) number
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:138
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:198
-#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:152
+#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:153
#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97
msgid "Float"
msgstr "Flyttall"
-#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:565
+#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:566
msgid "Follow &branch"
msgstr "Følg &avgrening"
@@ -5322,35 +5457,35 @@ msgid ""
"\">refer to this page."
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:57
+#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:58
msgid "Force 16:9"
msgstr "Tving 16:9"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:117
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:152
msgid "Force 24-Bit Color"
msgstr "Tving 24-biters farge"
-#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:57
+#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:58
msgid "Force 4:3"
msgstr "Tving 4:3"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:96
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:115
msgid "Force Linear"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:103
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:122
msgid "Force Linear and 16x Anisotropic"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:97
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:116
msgid "Force Linear and 2x Anisotropic"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:99
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:118
msgid "Force Linear and 4x Anisotropic"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:101
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:120
msgid "Force Linear and 8x Anisotropic"
msgstr ""
@@ -5358,7 +5493,7 @@ msgstr ""
msgid "Force Listen Port:"
msgstr "Tving lytteport:"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:95
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:114
msgid "Force Nearest"
msgstr ""
@@ -5370,7 +5505,7 @@ msgstr ""
msgid "Forced on because %1 doesn't support geometry shaders."
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:474
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:556
msgid ""
"Forces the game to output graphics for any aspect ratio. Use with \"Aspect "
"Ratio\" set to \"Force 16:9\" to force 4:3-only games to run at 16:9."
@@ -5380,7 +5515,7 @@ msgid ""
""
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:503
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:585
msgid ""
"Forces the game to render the RGB color channels in 24-bit, thereby "
"increasing quality by reducing color banding.
Has no impact on "
@@ -5388,7 +5523,7 @@ msgid ""
"unsure, leave this checked."
msgstr ""
-#: Source/Core/DolphinQt/ConvertDialog.cpp:59
+#: Source/Core/DolphinQt/ConvertDialog.cpp:60
msgid "Format:"
msgstr "Format:"
@@ -5454,19 +5589,19 @@ msgstr "Bilder å ta opp:"
msgid "France"
msgstr "Frankrike"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:311
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:312
msgid "Free Blocks: %1"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:312
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:313
msgid "Free Files: %1"
msgstr ""
-#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:42
+#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:43
msgid "Free Look Control Type"
msgstr ""
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:468
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:470
msgid "Free Look Controller %1"
msgstr ""
@@ -5474,7 +5609,7 @@ msgstr ""
msgid "Free Look Settings"
msgstr ""
-#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:54
+#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:55
msgid ""
"Free Look allows for manipulation of the in-game camera. Different camera "
"types are available from the dropdown.
Disabling the "
@@ -3485,7 +3572,7 @@ msgid ""
"checked."
msgstr ""
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:96
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:97
msgid "Disc"
msgstr "Dysk"
@@ -3519,26 +3606,26 @@ msgstr ""
msgid "Distance of travel from neutral position."
msgstr ""
-#: Source/Core/DolphinQt/Main.cpp:259
+#: Source/Core/DolphinQt/Main.cpp:264
msgid "Do you authorize Dolphin to report information to Dolphin's developers?"
msgstr ""
"Czy zezwalasz programowi Dolphin na wysyłanie informacji do jego producentów?"
-#: Source/Core/DolphinQt/MainWindow.cpp:1692
+#: Source/Core/DolphinQt/MainWindow.cpp:1712
msgid "Do you want to add \"%1\" to the list of Game Paths?"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1241
+#: Source/Core/DolphinQt/MenuBar.cpp:1227
msgid "Do you want to clear the list of symbol names?"
msgstr "Czy chcesz wyczyścić listę nazw symboli?"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:658
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:659
#, c-format
msgctxt ""
msgid "Do you want to delete the %n selected save file(s)?"
msgstr ""
-#: Source/Core/DolphinQt/MainWindow.cpp:933
+#: Source/Core/DolphinQt/MainWindow.cpp:935
msgid "Do you want to stop the current emulation?"
msgstr "Zatrzymać aktualną emulację?"
@@ -3550,35 +3637,35 @@ msgstr ""
msgid "Dolby Pro Logic II Decoder"
msgstr "Dekoder Dolby Pro Logic II"
-#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:219
-#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:230
+#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:215
+#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:226
msgid "Dolphin FIFO Log (*.dff)"
msgstr ""
-#: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:327
+#: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:326
msgid "Dolphin Game Mod Preset"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1536
-#: Source/Core/DolphinQt/MenuBar.cpp:1553
-#: Source/Core/DolphinQt/MenuBar.cpp:1572
+#: Source/Core/DolphinQt/MenuBar.cpp:1523
+#: Source/Core/DolphinQt/MenuBar.cpp:1540
+#: Source/Core/DolphinQt/MenuBar.cpp:1559
msgid "Dolphin Map File (*.map)"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:73
+#: Source/Core/DolphinQt/MenuBar.cpp:74
msgid "Dolphin Signature CSV File"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:73
+#: Source/Core/DolphinQt/MenuBar.cpp:74
msgid "Dolphin Signature File"
msgstr ""
-#: Source/Core/DolphinQt/MainWindow.cpp:1772
-#: Source/Core/DolphinQt/MainWindow.cpp:1843
+#: Source/Core/DolphinQt/MainWindow.cpp:1823
+#: Source/Core/DolphinQt/MainWindow.cpp:1894
msgid "Dolphin TAS Movies (*.dtm)"
msgstr "Filmy TAS (*.dtm)"
-#: Source/Core/DolphinQt/ConvertDialog.cpp:326
+#: Source/Core/DolphinQt/ConvertDialog.cpp:327
msgid ""
"Dolphin can't convert NKit files to non-NKit files. Converting an NKit file "
"in Dolphin will result in another NKit file.\n"
@@ -3589,7 +3676,7 @@ msgid ""
"Do you want to continue anyway?"
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:279
+#: Source/Core/DolphinQt/GameList/GameList.cpp:280
msgid ""
"Dolphin could not find any GameCube/Wii ISOs or WADs.\n"
"Double-click here to set a games directory..."
@@ -3597,7 +3684,7 @@ msgstr ""
"Dolphin nie mógł odnaleźć żadnych plików ISO lub WAD GameCube'a/Wii.\n"
"Kliknij dwukrotnie tutaj, aby ustawić folder gier..."
-#: Source/Core/DolphinQt/ConvertDialog.cpp:526
+#: Source/Core/DolphinQt/ConvertDialog.cpp:529
msgid "Dolphin failed to complete the requested action."
msgstr "Nie udało się wykonać wymaganego zadania."
@@ -3609,7 +3696,7 @@ msgstr "Nie udało się wykonać wymaganego zadania."
msgid "Dolphin is a free and open-source GameCube and Wii emulator."
msgstr "Dolphin jest wolnym i otwartoźródłowym emulatorem GameCube'a oraz Wii."
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:998
msgid "Dolphin is too old for traversal server"
msgstr ""
@@ -3623,7 +3710,7 @@ msgstr ""
msgid "Dolphin is unable to verify unlicensed discs."
msgstr ""
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:217
msgid ""
"Dolphin will use this for titles whose region cannot be determined "
"automatically."
@@ -3638,15 +3725,15 @@ msgstr "System cheatów programu Dolphin jest aktualnie wyłączony."
msgid "Domain"
msgstr ""
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:193
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:194
msgid "Don't Update"
msgstr "Nie aktualizuj"
-#: Source/Core/DolphinQt/NKitWarningDialog.cpp:53
+#: Source/Core/DolphinQt/NKitWarningDialog.cpp:56
msgid "Don't show this again"
msgstr ""
-#: Source/Core/DiscIO/CompressedBlob.cpp:369
+#: Source/Core/DiscIO/CompressedBlob.cpp:374
msgid "Done compressing disc image."
msgstr "Zakończono kompresję obrazu płyty."
@@ -3659,37 +3746,37 @@ msgstr ""
#. i18n: A double precision floating point number
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:139
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:199
-#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:154
+#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:155
msgid "Double"
msgstr ""
#: Source/Core/Core/FreeLookManager.cpp:89
#: Source/Core/Core/HW/WiimoteEmu/Extension/Guitar.cpp:80
#: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:35
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:43
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:44
#: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:21
#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUAccelerometer.cpp:19
#: Source/Core/InputCommon/ControllerEmu/ControllerEmu.h:24
msgid "Down"
msgstr "Dół"
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:86
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:87
msgid "Download Codes"
msgstr "Pobierz kody"
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:88
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:89
msgid "Download Codes from the WiiRD Database"
msgstr "Pobierz kody z bazy danych WiiRD"
-#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:148
+#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:153
msgid "Download Game Covers from GameTDB.com for Use in Grid Mode"
msgstr ""
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:370
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:373
msgid "Download complete"
msgstr "Pobieranie zakończone"
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:371
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:374
msgid "Downloaded %1 codes. (added %2)"
msgstr "Pobrano %1 kodów. (dodano %2)"
@@ -3712,7 +3799,7 @@ msgstr "Dwa rdzenie"
msgid "Dual View"
msgstr ""
-#: Source/Core/Core/HW/EXI/EXI_Device.h:95
+#: Source/Core/Core/HW/EXI/EXI_Device.h:94
msgid "Dummy"
msgstr "Atrapa"
@@ -3732,7 +3819,7 @@ msgstr ""
msgid "Dump &MRAM"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:814
+#: Source/Core/DolphinQt/MenuBar.cpp:806
msgid "Dump Audio"
msgstr "Zrzucaj audio"
@@ -3744,7 +3831,7 @@ msgstr ""
msgid "Dump EFB Target"
msgstr "Zrzucaj docelowy EFB"
-#: Source/Core/DolphinQt/MenuBar.cpp:808
+#: Source/Core/DolphinQt/MenuBar.cpp:800
msgid "Dump Frames"
msgstr "Zrzucaj klatki"
@@ -3817,12 +3904,12 @@ msgid "Duration of Turbo Button Release (frames):"
msgstr ""
#: Source/Core/DiscIO/Enums.cpp:95
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174
msgid "Dutch"
msgstr "Holenderski"
-#: Source/Core/DolphinQt/MenuBar.cpp:215
+#: Source/Core/DolphinQt/MenuBar.cpp:207
msgid "E&xit"
msgstr "&Wyjście"
@@ -3838,7 +3925,7 @@ msgid ""
"driver."
msgstr ""
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:185
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:186
msgid ""
"Each player sends their own inputs to the game, with equal buffer size for "
"all players, configured by the host.\n"
@@ -3852,7 +3939,7 @@ msgstr "Wczesne aktualizacje pamięci"
#. i18n: One of the elements in the Skylanders games. Japanese: 土. For official translations
#. in other languages, check the SuperChargers manual at https://support.activision.com/manuals
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:336
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:352
msgid "Earth"
msgstr ""
@@ -3865,7 +3952,7 @@ msgstr "Azja Wschodnia"
msgid "Edit Breakpoint"
msgstr ""
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:426
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:430
msgid "Edit..."
msgstr ""
@@ -3899,7 +3986,7 @@ msgstr "Wysuń dysk"
#. i18n: Elements are a trait of Skylanders figures. For official translations of this term,
#. check the Skylanders SuperChargers manual at https://support.activision.com/manuals
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:289
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:300
msgid "Element"
msgstr ""
@@ -3907,11 +3994,11 @@ msgstr ""
msgid "Embedded Frame Buffer (EFB)"
msgstr "Wbudowany bufor klatki (Embedded Frame Buffer - EFB)"
-#: Source/Core/Core/State.cpp:541
+#: Source/Core/Core/State.cpp:629
msgid "Empty"
msgstr "Pusty"
-#: Source/Core/Core/Core.cpp:246
+#: Source/Core/Core/Core.cpp:247
msgid "Emu Thread already running"
msgstr "Wątek emulacji jest już uruchomiony"
@@ -3919,15 +4006,15 @@ msgstr "Wątek emulacji jest już uruchomiony"
msgid "Emulate Disc Speed"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:60
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:61
msgid "Emulate Infinity Base"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:146
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:157
msgid "Emulate Skylander Portal"
msgstr ""
-#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:110
+#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:111
msgid "Emulate the Wii's Bluetooth adapter"
msgstr "Emuluj adapter Bluetooth Wii"
@@ -3937,11 +4024,11 @@ msgid ""
"Defaults to True"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:230
+#: Source/Core/DolphinQt/MenuBar.cpp:222
msgid "Emulated USB Devices"
msgstr ""
-#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:141
+#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:142
msgid "Emulated Wii Remote"
msgstr "Emulowany Wiilot"
@@ -3961,12 +4048,12 @@ msgstr "Szybkość emulacji"
msgid "Emulation must be started to record."
msgstr ""
-#: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:29
-#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:33
+#: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:30
+#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:34
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:120
-#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:129
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:402
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:419
+#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:130
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:406
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:423
msgid "Enable"
msgstr ""
@@ -3974,6 +4061,10 @@ msgstr ""
msgid "Enable API Validation Layers"
msgstr "Włącz weryfikację warstw API"
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:83
+msgid "Enable Achievement Badges"
+msgstr ""
+
#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:60
msgid "Enable Achievements"
msgstr ""
@@ -3982,15 +4073,19 @@ msgstr ""
msgid "Enable Audio Stretching"
msgstr "Włącz rozciąganie dźwięku"
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:142
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:143
msgid "Enable Cheats"
msgstr "Włącz cheaty"
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:155
+#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:53
+msgid "Enable Controller Inpu&t"
+msgstr ""
+
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:161
msgid "Enable Custom RTC"
msgstr "Włącz dostosowany RTC"
-#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:149
+#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:154
msgid "Enable Debugging UI"
msgstr ""
@@ -3998,19 +4093,19 @@ msgstr ""
msgid "Enable Dual Core"
msgstr "Włącz dwa rdzenie"
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:139
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:140
msgid "Enable Dual Core (speedup)"
msgstr "Włącz dwa rdzenie (przyspieszenie)"
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:88
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:94
msgid "Enable Emulated CPU Clock Override"
msgstr "Zmień częstotliwość taktowania emulowanego CPU"
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:118
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:124
msgid "Enable Emulated Memory Size Override"
msgstr ""
-#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:78
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:88
msgid "Enable Encore Achievements"
msgstr ""
@@ -4027,10 +4122,14 @@ msgid "Enable Leaderboards"
msgstr ""
#: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:88
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:66
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:68
msgid "Enable MMU"
msgstr "Włącz MMU"
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:78
+msgid "Enable Progress Notifications"
+msgstr ""
+
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:156
msgid "Enable Progressive Scan"
msgstr "Włącz skanowanie progresywne"
@@ -4044,15 +4143,15 @@ msgid "Enable Rich Presence"
msgstr ""
#: Source/Core/DolphinQt/Config/Mapping/GCPadWiiUConfigDialog.cpp:39
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:353
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:352
msgid "Enable Rumble"
msgstr ""
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:157
msgid "Enable Screen Saver"
msgstr "Włącz wygaszacz ekranu"
-#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:113
+#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:114
msgid "Enable Speaker Data"
msgstr "Włącz dane głosu"
@@ -4060,11 +4159,11 @@ msgstr "Włącz dane głosu"
msgid "Enable Unofficial Achievements"
msgstr ""
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:230
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:231
msgid "Enable Usage Statistics Reporting"
msgstr "Włącz raportowanie statystyk użytkowania"
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158
msgid "Enable WiiConnect24 via WiiLink"
msgstr ""
@@ -4072,10 +4171,17 @@ msgstr ""
msgid "Enable Wireframe"
msgstr "Włącz przedstawienie szkieletowe"
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:77
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:82
msgid "Enable Write-Back Cache (slow)"
msgstr ""
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:85
+msgid ""
+"Enable achievement badges.
Displays icons for the player, game, and "
+"achievements. Simple visual option, but will require a small amount of extra "
+"memory and time to download the images."
+msgstr ""
+
#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:64
msgid ""
"Enable competing in RetroAchievements leaderboards.
Displays a brief popup "
+"message whenever the player makes progress on an achievement that tracks an "
+"accumulated value, such as 60 out of 120 stars."
+msgstr ""
+
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:90
+msgid ""
"Enable unlocking achievements in Encore Mode.
Encore Mode re-enables "
"achievements the player has already unlocked on the site so that the player "
"will be notified if they meet the unlock conditions again, useful for custom "
@@ -4140,7 +4253,7 @@ msgstr ""
"Włącza obliczanie flagi wyniku liczby zmiennoprzecinkowej, wymagane dla "
"niektórych gier. (włączone = kompatybilne, wyłączone = szybkie)"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:514
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:596
msgid ""
"Enables detection of arbitrary mipmaps, which some games use for special "
"distance-based effects.
May have false positives that result in "
@@ -4151,11 +4264,12 @@ msgid ""
"dolphin_emphasis>"
msgstr ""
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:79
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:84
msgid ""
-"Enables emulation of the CPU write-back cache.\n"
-"Enabling will have a significant impact on performance.\n"
-"This should be left disabled unless absolutely needed."
+"Enables emulation of the CPU write-back cache. Enabling will have a "
+"significant impact on performance. This should be left disabled unless "
+"absolutely needed.
If unsure, leave this unchecked."
+""
msgstr ""
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:365
@@ -4173,7 +4287,7 @@ msgid ""
"this unchecked."
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:522
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:604
msgid ""
"Enables scRGB HDR output (if supported by your graphics backend and "
"monitor). Fullscreen might be required.
This gives post process "
@@ -4196,7 +4310,6 @@ msgid ""
msgstr ""
#: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:100
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:68
msgid ""
"Enables the Memory Management Unit, needed for some games. (ON = Compatible, "
"OFF = Fast)"
@@ -4204,7 +4317,14 @@ msgstr ""
"Włącza jednostkę zarządzania pamięcią (Memory Management Unit - MMU), "
"wymagana dla niektórych gier. (włączone = kompatybilne, wyłączone = szybkie)"
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:193
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:70
+msgid ""
+"Enables the Memory Management Unit, needed for some games. (ON = Compatible, "
+"OFF = Fast)
If unsure, leave this unchecked."
+"dolphin_emphasis>"
+msgstr ""
+
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190
msgid ""
"Enables the WiiLink service for WiiConnect24 channels.\n"
"WiiLink is an alternate provider for the discontinued WiiConnect24 Channels "
@@ -4231,7 +4351,7 @@ msgstr ""
msgid "Encoding"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:615
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:616
msgid ""
"Encountered the following errors while opening save files:\n"
"%1\n"
@@ -4244,12 +4364,12 @@ msgid "Enet Didn't Initialize"
msgstr "Enet nie zainicjował się"
#: Source/Core/DiscIO/Enums.cpp:80
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:85
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:169
msgid "English"
msgstr "Angielski"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:59
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:61
#: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:61
msgid "Enhancements"
msgstr "Ulepszenia"
@@ -4280,84 +4400,84 @@ msgstr ""
msgid "Enter the DNS server to use:"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1300
+#: Source/Core/DolphinQt/MenuBar.cpp:1286
msgid "Enter the RSO module address:"
msgstr ""
#: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:194
#: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:250
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:261
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:262
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386
#: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:265
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:343
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:349
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:346
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:352
#: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:46
-#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:521
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:256
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:295
-#: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:232
-#: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:259
-#: Source/Core/DolphinQt/ConvertDialog.cpp:424
-#: Source/Core/DolphinQt/ConvertDialog.cpp:471
-#: Source/Core/DolphinQt/ConvertDialog.cpp:525
+#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:539
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:255
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:296
+#: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:229
+#: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:256
+#: Source/Core/DolphinQt/ConvertDialog.cpp:426
+#: Source/Core/DolphinQt/ConvertDialog.cpp:473
+#: Source/Core/DolphinQt/ConvertDialog.cpp:528
#: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:255
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:638
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:644
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:653
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:665
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:684
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:690
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:705
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:713
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:737
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:744
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:637
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:643
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:652
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:664
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:683
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:689
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:704
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:712
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:736
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:743
#: Source/Core/DolphinQt/Debugger/RegisterColumn.cpp:86
#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:282
#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:431
-#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:241
-#: Source/Core/DolphinQt/GBAWidget.cpp:576
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:346
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:376
-#: Source/Core/DolphinQt/Main.cpp:209 Source/Core/DolphinQt/Main.cpp:225
-#: Source/Core/DolphinQt/Main.cpp:232 Source/Core/DolphinQt/MainWindow.cpp:295
-#: Source/Core/DolphinQt/MainWindow.cpp:303
-#: Source/Core/DolphinQt/MainWindow.cpp:1108
-#: Source/Core/DolphinQt/MainWindow.cpp:1494
-#: Source/Core/DolphinQt/MainWindow.cpp:1501
-#: Source/Core/DolphinQt/MainWindow.cpp:1561
-#: Source/Core/DolphinQt/MainWindow.cpp:1568
-#: Source/Core/DolphinQt/MainWindow.cpp:1670
-#: Source/Core/DolphinQt/MenuBar.cpp:1204
-#: Source/Core/DolphinQt/MenuBar.cpp:1284
+#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:237
+#: Source/Core/DolphinQt/GBAWidget.cpp:578
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:347
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:377
+#: Source/Core/DolphinQt/Main.cpp:211 Source/Core/DolphinQt/Main.cpp:227
+#: Source/Core/DolphinQt/Main.cpp:234 Source/Core/DolphinQt/MainWindow.cpp:297
+#: Source/Core/DolphinQt/MainWindow.cpp:305
+#: Source/Core/DolphinQt/MainWindow.cpp:1110
+#: Source/Core/DolphinQt/MainWindow.cpp:1507
+#: Source/Core/DolphinQt/MainWindow.cpp:1514
+#: Source/Core/DolphinQt/MainWindow.cpp:1574
+#: Source/Core/DolphinQt/MainWindow.cpp:1581
+#: Source/Core/DolphinQt/MainWindow.cpp:1690
+#: Source/Core/DolphinQt/MenuBar.cpp:1190
+#: Source/Core/DolphinQt/MenuBar.cpp:1270
+#: Source/Core/DolphinQt/MenuBar.cpp:1293
#: Source/Core/DolphinQt/MenuBar.cpp:1307
-#: Source/Core/DolphinQt/MenuBar.cpp:1321
-#: Source/Core/DolphinQt/MenuBar.cpp:1352
-#: Source/Core/DolphinQt/MenuBar.cpp:1376
-#: Source/Core/DolphinQt/MenuBar.cpp:1597
-#: Source/Core/DolphinQt/MenuBar.cpp:1608
-#: Source/Core/DolphinQt/MenuBar.cpp:1620
-#: Source/Core/DolphinQt/MenuBar.cpp:1642
-#: Source/Core/DolphinQt/MenuBar.cpp:1668
-#: Source/Core/DolphinQt/MenuBar.cpp:1722
-#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:315
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:477
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:738
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:980
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1098
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1108
-#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:334
-#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:340
-#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:347
+#: Source/Core/DolphinQt/MenuBar.cpp:1339
+#: Source/Core/DolphinQt/MenuBar.cpp:1363
+#: Source/Core/DolphinQt/MenuBar.cpp:1584
+#: Source/Core/DolphinQt/MenuBar.cpp:1595
+#: Source/Core/DolphinQt/MenuBar.cpp:1607
+#: Source/Core/DolphinQt/MenuBar.cpp:1629
+#: Source/Core/DolphinQt/MenuBar.cpp:1655
+#: Source/Core/DolphinQt/MenuBar.cpp:1709
+#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:316
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:479
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:740
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:982
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1100
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1110
+#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:332
+#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:338
+#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:345
#: Source/Core/DolphinQt/RenderWidget.cpp:123
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:203
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:224
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:423
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:439
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:460
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:481
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:525
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:562
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:585
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:204
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:225
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:433
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:449
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:470
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:491
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:535
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:572
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:595
#: Source/Core/DolphinQt/Translation.cpp:322
msgid "Error"
msgstr "Błąd"
@@ -4366,13 +4486,13 @@ msgstr "Błąd"
msgid "Error Opening Adapter: %1"
msgstr ""
-#: Source/Core/Core/NetPlayServer.cpp:1493
+#: Source/Core/Core/NetPlayServer.cpp:1497
msgid "Error collecting save data!"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:260
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:526
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:533
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:262
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:613
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:620
msgid "Error converting value"
msgstr ""
@@ -4385,15 +4505,15 @@ msgstr ""
msgid "Error obtaining session list: %1"
msgstr ""
-#: Source/Core/DolphinQt/MainWindow.cpp:296
+#: Source/Core/DolphinQt/MainWindow.cpp:298
msgid "Error occurred while loading some texture packs"
msgstr ""
-#: Source/Core/Core/NetPlayClient.cpp:1847
+#: Source/Core/Core/NetPlayClient.cpp:1851
msgid "Error processing codes."
msgstr ""
-#: Source/Core/Core/NetPlayClient.cpp:1819
+#: Source/Core/Core/NetPlayClient.cpp:1823
msgid "Error processing data."
msgstr ""
@@ -4401,11 +4521,11 @@ msgstr ""
msgid "Error reading file: {0}"
msgstr ""
-#: Source/Core/Core/NetPlayServer.cpp:1529
+#: Source/Core/Core/NetPlayServer.cpp:1533
msgid "Error synchronizing cheat codes!"
msgstr "Błąd synchronizacji kodów cheatowania"
-#: Source/Core/Core/NetPlayServer.cpp:1515
+#: Source/Core/Core/NetPlayServer.cpp:1519
msgid "Error synchronizing save data!"
msgstr ""
@@ -4480,7 +4600,7 @@ msgstr ""
msgid "Euphoria"
msgstr "Euforia"
-#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:282
+#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:274
#: Source/Core/UICommon/NetPlayIndex.cpp:249
msgid "Europe"
msgstr "Europa"
@@ -4509,11 +4629,11 @@ msgstr ""
msgid "Excluded: %1"
msgstr ""
-#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:73
+#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:72
msgid "Excluded: 0"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:107
+#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108
msgid "Exclusive Ubershaders"
msgstr ""
@@ -4561,14 +4681,14 @@ msgstr ""
msgid "Experimental"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:294
+#: Source/Core/DolphinQt/MenuBar.cpp:286
msgid "Export All Wii Saves"
msgstr "Eksportuj wszystkie zapisy Wii"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:422
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:447
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:492
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:499
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:423
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:448
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:493
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:500
msgid "Export Failed"
msgstr ""
@@ -4576,42 +4696,42 @@ msgstr ""
msgid "Export Recording"
msgstr "Eksportuj nagranie"
-#: Source/Core/DolphinQt/MenuBar.cpp:753
+#: Source/Core/DolphinQt/MenuBar.cpp:745
msgid "Export Recording..."
msgstr "Eksportuj nagranie..."
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:437
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:438
msgid "Export Save File"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:454
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:455
msgid "Export Save Files"
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:470
+#: Source/Core/DolphinQt/GameList/GameList.cpp:473
msgid "Export Wii Save"
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:388
+#: Source/Core/DolphinQt/GameList/GameList.cpp:389
msgid "Export Wii Saves"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:117
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:118
msgid "Export as .&gcs..."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:118
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:119
msgid "Export as .&sav..."
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1133
+#: Source/Core/DolphinQt/MenuBar.cpp:1115
#, c-format
msgctxt ""
msgid "Exported %n save(s)"
msgstr ""
#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:268
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:432
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:434
#: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:47
msgid "Extension"
msgstr "Rozszerzenie"
@@ -4624,7 +4744,7 @@ msgstr ""
msgid "Extension Motion Simulation"
msgstr ""
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:520
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:522
msgid "External"
msgstr ""
@@ -4632,35 +4752,35 @@ msgstr ""
msgid "External Frame Buffer (XFB)"
msgstr "Zewnętrzny bufor klatki (External Frame Buffer - XFB)"
-#: Source/Core/DolphinQt/MenuBar.cpp:271
+#: Source/Core/DolphinQt/MenuBar.cpp:263
msgid "Extract Certificates from NAND"
msgstr "Wypakuj certyfikaty z NAND"
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:268
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:269
msgid "Extract Entire Disc..."
msgstr "Wypakuj cały dysk..."
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:292
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:293
msgid "Extract Entire Partition..."
msgstr "Wypakuj całą partycję"
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:299
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:300
msgid "Extract File..."
msgstr "Wypakuj plik..."
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:241
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:242
msgid "Extract Files..."
msgstr "Wypakuj pliki..."
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:251
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:252
msgid "Extract System Data..."
msgstr "Wypakuj dane systemowe..."
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:355
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:356
msgid "Extracting All Files..."
msgstr "Wypakowywanie wszystkich plików..."
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:356
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357
msgid "Extracting Directory..."
msgstr "Wypakowywanie folderu..."
@@ -4670,7 +4790,7 @@ msgid "FD"
msgstr ""
#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:37
-#: Source/Core/DolphinQt/MenuBar.cpp:228
+#: Source/Core/DolphinQt/MenuBar.cpp:220
msgid "FIFO Player"
msgstr "Odtwarzacz FIFO"
@@ -4678,17 +4798,17 @@ msgstr "Odtwarzacz FIFO"
msgid "Failed loading XML."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:347
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:348
msgid ""
"Failed opening memory card:\n"
"%1"
msgstr ""
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:454
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:456
msgid "Failed to add this session to the NetPlay index: %1"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1669
+#: Source/Core/DolphinQt/MenuBar.cpp:1656
msgid "Failed to append to signature file '%1'"
msgstr ""
@@ -4696,11 +4816,11 @@ msgstr ""
msgid "Failed to claim interface for BT passthrough: {0}"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:574
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:676
msgid "Failed to clear Skylander!"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:575
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:677
msgid "Failed to clear the Skylander from slot(%1)!"
msgstr ""
@@ -4708,7 +4828,7 @@ msgstr ""
msgid "Failed to connect to Redump.org"
msgstr ""
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:981
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:983
msgid "Failed to connect to server: %1"
msgstr ""
@@ -4729,15 +4849,15 @@ msgstr ""
msgid "Failed to create DXGI factory"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:289
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:291
msgid "Failed to create Infinity file"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:678
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:798
msgid "Failed to create Skylander file!"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:679
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:799
msgid ""
"Failed to create Skylander file:\n"
"%1\n"
@@ -4753,7 +4873,7 @@ msgstr ""
msgid "Failed to delete NetPlay memory card. Verify your write permissions."
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:841
+#: Source/Core/DolphinQt/GameList/GameList.cpp:854
msgid "Failed to delete the selected file."
msgstr "Nie udało się usunąć wybranego pliku."
@@ -4761,36 +4881,36 @@ msgstr "Nie udało się usunąć wybranego pliku."
msgid "Failed to detach kernel driver for BT passthrough: {0}"
msgstr ""
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:343
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:346
msgid "Failed to download codes."
msgstr "Nie udało się pobrać kodów."
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:738
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:737
msgid "Failed to dump %1: Can't open file"
msgstr ""
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:745
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:744
msgid "Failed to dump %1: Failed to write to file"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:488
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:489
msgctxt ""
msgid "Failed to export %n out of %1 save file(s)."
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:576
+#: Source/Core/DolphinQt/GameList/GameList.cpp:584
msgid "Failed to export the following save files:"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1204
+#: Source/Core/DolphinQt/MenuBar.cpp:1190
msgid "Failed to extract certificates from NAND"
msgstr ""
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386
msgid "Failed to extract file."
msgstr "Nie udało się wypakować pliku."
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:261
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:262
msgid "Failed to extract system data."
msgstr ""
@@ -4805,29 +4925,29 @@ msgstr ""
msgid "Failed to find one or more D3D symbols"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:565
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:566
msgid "Failed to import \"%1\"."
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1109
+#: Source/Core/DolphinQt/MenuBar.cpp:1091
msgid ""
"Failed to import save file. Please launch the game once, then try again."
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1103
+#: Source/Core/DolphinQt/MenuBar.cpp:1085
msgid ""
"Failed to import save file. The given file appears to be corrupted or is not "
"a valid Wii save."
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1116
+#: Source/Core/DolphinQt/MenuBar.cpp:1098
msgid ""
"Failed to import save file. Your NAND may be corrupt, or something is "
"preventing access to files within it. Try repairing your NAND (Tools -> "
"Manage NAND -> Check NAND...), then import the save again."
msgstr ""
-#: Source/Core/DolphinQt/MainWindow.cpp:1108
+#: Source/Core/DolphinQt/MainWindow.cpp:1110
msgid "Failed to init core"
msgstr ""
@@ -4842,16 +4962,16 @@ msgstr ""
msgid "Failed to initialize renderer classes"
msgstr ""
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:204
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:205
msgid "Failed to install pack: %1"
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:619
-#: Source/Core/DolphinQt/MenuBar.cpp:1074
+#: Source/Core/DolphinQt/GameList/GameList.cpp:628
+#: Source/Core/DolphinQt/MenuBar.cpp:1056
msgid "Failed to install this title to the NAND."
msgstr ""
-#: Source/Core/DolphinQt/MainWindow.cpp:1594
+#: Source/Core/DolphinQt/MainWindow.cpp:1607
msgid ""
"Failed to listen on port %1. Is another instance of the NetPlay server "
"running?"
@@ -4859,8 +4979,8 @@ msgstr ""
"Nasłuch na porcie %1 zakończony niepowodzeniem. Czy jest uruchomiony jakiś "
"inny serwer NetPlay?"
-#: Source/Core/DolphinQt/MenuBar.cpp:1321
-#: Source/Core/DolphinQt/MenuBar.cpp:1376
+#: Source/Core/DolphinQt/MenuBar.cpp:1307
+#: Source/Core/DolphinQt/MenuBar.cpp:1363
msgid "Failed to load RSO module at %1"
msgstr ""
@@ -4872,15 +4992,15 @@ msgstr ""
msgid "Failed to load dxgi.dll"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1608
+#: Source/Core/DolphinQt/MenuBar.cpp:1595
msgid "Failed to load map file '%1'"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:720
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:842
msgid "Failed to load the Skylander file!"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:721
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:843
msgid "Failed to load the Skylander file(%1)!\n"
msgstr ""
@@ -4894,8 +5014,12 @@ msgid ""
"update package."
msgstr ""
-#: Source/Core/DolphinQt/GBAWidget.cpp:576
-#: Source/Core/DolphinQt/MainWindow.cpp:1670
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:663
+msgid "Failed to modify Skylander!"
+msgstr ""
+
+#: Source/Core/DolphinQt/GBAWidget.cpp:578
+#: Source/Core/DolphinQt/MainWindow.cpp:1690
#: Source/Core/DolphinQt/RenderWidget.cpp:123
msgid "Failed to open '%1'"
msgstr "Nie udało się otworzyć '%1'"
@@ -4922,40 +5046,40 @@ msgid ""
"Make sure there's an application assigned to open INI files."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:861
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:863
msgid "Failed to open file."
msgstr ""
-#: Source/Core/DolphinQt/MainWindow.cpp:1593
+#: Source/Core/DolphinQt/MainWindow.cpp:1606
msgid "Failed to open server"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:164
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:166
msgid "Failed to open the Infinity file!"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:165
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:167
msgid ""
"Failed to open the Infinity file(%1)!\n"
"File may already be in use on the base."
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:696
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:818
msgid "Failed to open the Skylander file!"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:697
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:819
msgid ""
"Failed to open the Skylander file(%1)!\n"
"File may already be in use on the portal."
msgstr ""
-#: Source/Core/DolphinQt/ConvertDialog.cpp:472
+#: Source/Core/DolphinQt/ConvertDialog.cpp:474
msgid "Failed to open the input file \"%1\"."
msgstr ""
-#: Source/Core/DiscIO/CompressedBlob.cpp:282 Source/Core/DiscIO/FileBlob.cpp:53
-#: Source/Core/DiscIO/WIABlob.cpp:2037
+#: Source/Core/DiscIO/CompressedBlob.cpp:287 Source/Core/DiscIO/FileBlob.cpp:58
+#: Source/Core/DiscIO/WIABlob.cpp:2043
msgid ""
"Failed to open the output file \"{0}\".\n"
"Check that you have permissions to write the target folder and that the "
@@ -4975,35 +5099,35 @@ msgstr ""
msgid "Failed to read DFF file."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:863
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:865
msgid "Failed to read from file."
msgstr ""
-#: Source/Core/DiscIO/CompressedBlob.cpp:373 Source/Core/DiscIO/FileBlob.cpp:93
-#: Source/Core/DiscIO/WIABlob.cpp:2052
+#: Source/Core/DiscIO/CompressedBlob.cpp:378 Source/Core/DiscIO/FileBlob.cpp:98
+#: Source/Core/DiscIO/WIABlob.cpp:2058
msgid "Failed to read from the input file \"{0}\"."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:423
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:641
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:424
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:642
msgid "Failed to read selected savefile(s) from memory card."
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:173
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:175
msgid "Failed to read the Infinity file!"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:174
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:176
msgid ""
"Failed to read the Infinity file(%1)!\n"
"File was too small."
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:706
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:828
msgid "Failed to read the Skylander file!"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:707
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:829
msgid ""
"Failed to read the Skylander file(%1)!\n"
"File was too small."
@@ -5013,18 +5137,18 @@ msgstr ""
msgid "Failed to read {0}"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:668
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:669
msgid "Failed to remove file."
msgstr ""
-#: Source/Core/DolphinQt/ConvertDialog.cpp:453
+#: Source/Core/DolphinQt/ConvertDialog.cpp:455
msgid ""
"Failed to remove junk data from file \"%1\".\n"
"\n"
"Would you like to convert it without removing junk data?"
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:647
+#: Source/Core/DolphinQt/GameList/GameList.cpp:658
msgid "Failed to remove this title from the NAND."
msgstr ""
@@ -5040,27 +5164,34 @@ msgstr ""
msgid "Failed to reset NetPlay redirect folder. Verify your write permissions."
msgstr ""
-#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:241
+#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:237
msgid "Failed to save FIFO log."
msgstr "Nie udało się zapisać log FIFO."
-#: Source/Core/DolphinQt/MenuBar.cpp:1598
+#: Source/Core/DolphinQt/MenuBar.cpp:1585
msgid "Failed to save code map to path '%1'"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1642
+#: Source/Core/DolphinQt/MenuBar.cpp:1629
msgid "Failed to save signature file '%1'"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1621
+#: Source/Core/DolphinQt/MenuBar.cpp:1608
msgid "Failed to save symbol map to path '%1'"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1723
+#: Source/Core/DolphinQt/MenuBar.cpp:1710
msgid "Failed to save to signature file '%1'"
msgstr ""
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:225
+#: Source/Core/Core/Core.cpp:548
+msgid ""
+"Failed to sync SD card with folder. All changes made this session will be "
+"discarded on next boot if you do not manually re-issue a resync in Config > "
+"Wii > SD Card Settings > Convert File to Folder Now!"
+msgstr ""
+
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:226
msgid "Failed to uninstall pack: %1"
msgstr ""
@@ -5080,9 +5211,9 @@ msgstr ""
msgid "Failed to write config file!"
msgstr "Nie udało się zapisać pliku konfiguracyjnego!"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:573
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:676
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:691
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:574
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:677
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:692
msgid "Failed to write modified memory card to disk."
msgstr ""
@@ -5090,33 +5221,33 @@ msgstr ""
msgid "Failed to write redirected save."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:447
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:448
msgid "Failed to write savefile to disk."
msgstr ""
-#: Source/Core/DiscIO/CompressedBlob.cpp:377 Source/Core/DiscIO/FileBlob.cpp:99
-#: Source/Core/DiscIO/WIABlob.cpp:2056
+#: Source/Core/DiscIO/CompressedBlob.cpp:382
+#: Source/Core/DiscIO/FileBlob.cpp:104 Source/Core/DiscIO/WIABlob.cpp:2062
msgid ""
"Failed to write the output file \"{0}\".\n"
"Check that you have enough space available on the target drive."
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:617
-#: Source/Core/DolphinQt/GameList/GameList.cpp:645
-#: Source/Core/DolphinQt/GameList/GameList.cpp:840
-#: Source/Core/DolphinQt/MenuBar.cpp:1074
+#: Source/Core/DolphinQt/GameList/GameList.cpp:626
+#: Source/Core/DolphinQt/GameList/GameList.cpp:656
+#: Source/Core/DolphinQt/GameList/GameList.cpp:853
+#: Source/Core/DolphinQt/MenuBar.cpp:1056
msgid "Failure"
msgstr ""
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:183
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:184
msgid "Fair Input Delay"
msgstr ""
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:199
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:200
msgid "Fallback Region"
msgstr ""
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:210
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:211
msgid "Fallback Region:"
msgstr ""
@@ -5140,17 +5271,21 @@ msgstr ""
msgid "Field of View"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:233
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:235
msgid "Figure Number:"
msgstr ""
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:380
+msgid "Figure type"
+msgstr ""
+
#: Source/Core/DolphinQt/Config/InfoWidget.cpp:46
msgid "File Details"
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:991
+#: Source/Core/DolphinQt/GameList/GameList.cpp:1005
#: Source/Core/DolphinQt/GameList/GameListModel.cpp:229
-#: Source/Core/DolphinQt/MenuBar.cpp:652
+#: Source/Core/DolphinQt/MenuBar.cpp:644
msgid "File Format"
msgstr ""
@@ -5162,20 +5297,20 @@ msgstr ""
msgid "File Info"
msgstr "Informacje o pliku"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:986
+#: Source/Core/DolphinQt/GameList/GameList.cpp:1000
#: Source/Core/DolphinQt/GameList/GameListModel.cpp:223
-#: Source/Core/DolphinQt/MenuBar.cpp:647
+#: Source/Core/DolphinQt/MenuBar.cpp:639
msgid "File Name"
msgstr "Nazwa pliku"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:987
+#: Source/Core/DolphinQt/GameList/GameList.cpp:1001
#: Source/Core/DolphinQt/GameList/GameListModel.cpp:225
-#: Source/Core/DolphinQt/MenuBar.cpp:648
+#: Source/Core/DolphinQt/MenuBar.cpp:640
msgid "File Path"
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:990
-#: Source/Core/DolphinQt/MenuBar.cpp:651
+#: Source/Core/DolphinQt/GameList/GameList.cpp:1004
+#: Source/Core/DolphinQt/MenuBar.cpp:643
msgid "File Size"
msgstr "Rozmiar pliku"
@@ -5183,15 +5318,15 @@ msgstr "Rozmiar pliku"
msgid "File Size:"
msgstr ""
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:349
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:352
msgid "File contained no codes."
msgstr "Plik nie zawierał kodów."
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:149
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:150
msgid "Filename"
msgstr ""
-#: Source/Core/DiscIO/CompressedBlob.cpp:289
+#: Source/Core/DiscIO/CompressedBlob.cpp:294
msgid "Files opened, ready to compress."
msgstr "Pliki otwarte, gotowe do kompresji."
@@ -5201,11 +5336,11 @@ msgid ""
"{1}"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:833
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:835
msgid "Filesize does not match any known GameCube Memory Card size."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:836
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:838
msgid "Filesize in header mismatches actual card size."
msgstr ""
@@ -5213,7 +5348,7 @@ msgstr ""
msgid "Filesystem"
msgstr "System plików"
-#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:102
+#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:103
msgid "Filters"
msgstr ""
@@ -5229,7 +5364,7 @@ msgstr ""
msgid "Finish Calibration"
msgstr ""
-#: Source/Core/DolphinQt/WiiUpdate.cpp:109
+#: Source/Core/DolphinQt/WiiUpdate.cpp:110
msgid ""
"Finishing the update...\n"
"This can take a while."
@@ -5237,19 +5372,19 @@ msgstr ""
#. i18n: One of the elements in the Skylanders games. Japanese: 火. For official translations
#. in other languages, check the SuperChargers manual at https://support.activision.com/manuals
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:333
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:349
msgid "Fire"
msgstr ""
-#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:40
+#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:41
msgid "First Person"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:127
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:128
msgid "Fix Checksums"
msgstr "Napraw sumy kontrolne"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:690
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:691
msgid "Fix Checksums Failed"
msgstr ""
@@ -5259,7 +5394,7 @@ msgstr ""
#. i18n: These are the kinds of flags that a CPU uses (e.g. carry),
#. not the kinds of flags that represent e.g. countries
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:166
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167
#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:87
msgid "Flags"
msgstr "Flagi"
@@ -5268,12 +5403,12 @@ msgstr "Flagi"
#. i18n: Floating-point (non-integer) number
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:138
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:198
-#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:152
+#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:153
#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97
msgid "Float"
msgstr ""
-#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:565
+#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:566
msgid "Follow &branch"
msgstr ""
@@ -5293,35 +5428,35 @@ msgid ""
"\">refer to this page
."
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:57
+#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:58
msgid "Force 16:9"
msgstr "Wymuszaj 16:9"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:117
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:152
msgid "Force 24-Bit Color"
msgstr "Wymuszaj 24-bitowy kolor"
-#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:57
+#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:58
msgid "Force 4:3"
msgstr "Wymuszaj 4:3"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:96
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:115
msgid "Force Linear"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:103
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:122
msgid "Force Linear and 16x Anisotropic"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:97
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:116
msgid "Force Linear and 2x Anisotropic"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:99
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:118
msgid "Force Linear and 4x Anisotropic"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:101
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:120
msgid "Force Linear and 8x Anisotropic"
msgstr ""
@@ -5329,7 +5464,7 @@ msgstr ""
msgid "Force Listen Port:"
msgstr "Wymuszaj nasłuch na porcie:"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:95
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:114
msgid "Force Nearest"
msgstr ""
@@ -5341,7 +5476,7 @@ msgstr ""
msgid "Forced on because %1 doesn't support geometry shaders."
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:474
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:556
msgid ""
"Forces the game to output graphics for any aspect ratio. Use with \"Aspect "
"Ratio\" set to \"Force 16:9\" to force 4:3-only games to run at 16:9."
@@ -5351,7 +5486,7 @@ msgid ""
""
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:503
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:585
msgid ""
"Forces the game to render the RGB color channels in 24-bit, thereby "
"increasing quality by reducing color banding.
Has no impact on "
@@ -5359,7 +5494,7 @@ msgid ""
"unsure, leave this checked."
msgstr ""
-#: Source/Core/DolphinQt/ConvertDialog.cpp:59
+#: Source/Core/DolphinQt/ConvertDialog.cpp:60
msgid "Format:"
msgstr ""
@@ -5425,19 +5560,19 @@ msgstr ""
msgid "France"
msgstr "Francja"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:311
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:312
msgid "Free Blocks: %1"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:312
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:313
msgid "Free Files: %1"
msgstr ""
-#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:42
+#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:43
msgid "Free Look Control Type"
msgstr ""
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:468
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:470
msgid "Free Look Controller %1"
msgstr ""
@@ -5445,7 +5580,7 @@ msgstr ""
msgid "Free Look Settings"
msgstr ""
-#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:54
+#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:55
msgid ""
"Free Look allows for manipulation of the in-game camera. Different camera "
"types are available from the dropdown.
Disabling the "
@@ -3431,7 +3518,7 @@ msgid ""
"checked."
msgstr ""
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:96
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:97
msgid "Disc"
msgstr "Disco"
@@ -3465,25 +3552,25 @@ msgstr ""
msgid "Distance of travel from neutral position."
msgstr ""
-#: Source/Core/DolphinQt/Main.cpp:259
+#: Source/Core/DolphinQt/Main.cpp:264
msgid "Do you authorize Dolphin to report information to Dolphin's developers?"
msgstr ""
-#: Source/Core/DolphinQt/MainWindow.cpp:1692
+#: Source/Core/DolphinQt/MainWindow.cpp:1712
msgid "Do you want to add \"%1\" to the list of Game Paths?"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1241
+#: Source/Core/DolphinQt/MenuBar.cpp:1227
msgid "Do you want to clear the list of symbol names?"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:658
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:659
#, c-format
msgctxt ""
msgid "Do you want to delete the %n selected save file(s)?"
msgstr ""
-#: Source/Core/DolphinQt/MainWindow.cpp:933
+#: Source/Core/DolphinQt/MainWindow.cpp:935
msgid "Do you want to stop the current emulation?"
msgstr "Deseja parar a emulação actual?"
@@ -3495,35 +3582,35 @@ msgstr ""
msgid "Dolby Pro Logic II Decoder"
msgstr ""
-#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:219
-#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:230
+#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:215
+#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:226
msgid "Dolphin FIFO Log (*.dff)"
msgstr ""
-#: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:327
+#: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:326
msgid "Dolphin Game Mod Preset"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1536
-#: Source/Core/DolphinQt/MenuBar.cpp:1553
-#: Source/Core/DolphinQt/MenuBar.cpp:1572
+#: Source/Core/DolphinQt/MenuBar.cpp:1523
+#: Source/Core/DolphinQt/MenuBar.cpp:1540
+#: Source/Core/DolphinQt/MenuBar.cpp:1559
msgid "Dolphin Map File (*.map)"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:73
+#: Source/Core/DolphinQt/MenuBar.cpp:74
msgid "Dolphin Signature CSV File"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:73
+#: Source/Core/DolphinQt/MenuBar.cpp:74
msgid "Dolphin Signature File"
msgstr ""
-#: Source/Core/DolphinQt/MainWindow.cpp:1772
-#: Source/Core/DolphinQt/MainWindow.cpp:1843
+#: Source/Core/DolphinQt/MainWindow.cpp:1823
+#: Source/Core/DolphinQt/MainWindow.cpp:1894
msgid "Dolphin TAS Movies (*.dtm)"
msgstr "Dolphin TAS filmes (*.dtm)"
-#: Source/Core/DolphinQt/ConvertDialog.cpp:326
+#: Source/Core/DolphinQt/ConvertDialog.cpp:327
msgid ""
"Dolphin can't convert NKit files to non-NKit files. Converting an NKit file "
"in Dolphin will result in another NKit file.\n"
@@ -3534,13 +3621,13 @@ msgid ""
"Do you want to continue anyway?"
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:279
+#: Source/Core/DolphinQt/GameList/GameList.cpp:280
msgid ""
"Dolphin could not find any GameCube/Wii ISOs or WADs.\n"
"Double-click here to set a games directory..."
msgstr ""
-#: Source/Core/DolphinQt/ConvertDialog.cpp:526
+#: Source/Core/DolphinQt/ConvertDialog.cpp:529
msgid "Dolphin failed to complete the requested action."
msgstr ""
@@ -3552,7 +3639,7 @@ msgstr ""
msgid "Dolphin is a free and open-source GameCube and Wii emulator."
msgstr ""
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:998
msgid "Dolphin is too old for traversal server"
msgstr ""
@@ -3566,7 +3653,7 @@ msgstr ""
msgid "Dolphin is unable to verify unlicensed discs."
msgstr ""
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:217
msgid ""
"Dolphin will use this for titles whose region cannot be determined "
"automatically."
@@ -3581,15 +3668,15 @@ msgstr ""
msgid "Domain"
msgstr ""
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:193
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:194
msgid "Don't Update"
msgstr ""
-#: Source/Core/DolphinQt/NKitWarningDialog.cpp:53
+#: Source/Core/DolphinQt/NKitWarningDialog.cpp:56
msgid "Don't show this again"
msgstr ""
-#: Source/Core/DiscIO/CompressedBlob.cpp:369
+#: Source/Core/DiscIO/CompressedBlob.cpp:374
msgid "Done compressing disc image."
msgstr ""
@@ -3602,37 +3689,37 @@ msgstr ""
#. i18n: A double precision floating point number
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:139
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:199
-#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:154
+#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:155
msgid "Double"
msgstr ""
#: Source/Core/Core/FreeLookManager.cpp:89
#: Source/Core/Core/HW/WiimoteEmu/Extension/Guitar.cpp:80
#: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:35
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:43
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:44
#: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:21
#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUAccelerometer.cpp:19
#: Source/Core/InputCommon/ControllerEmu/ControllerEmu.h:24
msgid "Down"
msgstr "Baixo"
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:86
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:87
msgid "Download Codes"
msgstr ""
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:88
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:89
msgid "Download Codes from the WiiRD Database"
msgstr ""
-#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:148
+#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:153
msgid "Download Game Covers from GameTDB.com for Use in Grid Mode"
msgstr ""
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:370
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:373
msgid "Download complete"
msgstr ""
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:371
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:374
msgid "Downloaded %1 codes. (added %2)"
msgstr ""
@@ -3655,7 +3742,7 @@ msgstr ""
msgid "Dual View"
msgstr ""
-#: Source/Core/Core/HW/EXI/EXI_Device.h:95
+#: Source/Core/Core/HW/EXI/EXI_Device.h:94
msgid "Dummy"
msgstr "Dummy"
@@ -3675,7 +3762,7 @@ msgstr ""
msgid "Dump &MRAM"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:814
+#: Source/Core/DolphinQt/MenuBar.cpp:806
msgid "Dump Audio"
msgstr "Depositar Áudio"
@@ -3687,7 +3774,7 @@ msgstr ""
msgid "Dump EFB Target"
msgstr "Depositar Alvo EFB"
-#: Source/Core/DolphinQt/MenuBar.cpp:808
+#: Source/Core/DolphinQt/MenuBar.cpp:800
msgid "Dump Frames"
msgstr "Depositar Quadros"
@@ -3760,12 +3847,12 @@ msgid "Duration of Turbo Button Release (frames):"
msgstr ""
#: Source/Core/DiscIO/Enums.cpp:95
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174
msgid "Dutch"
msgstr "Holandês"
-#: Source/Core/DolphinQt/MenuBar.cpp:215
+#: Source/Core/DolphinQt/MenuBar.cpp:207
msgid "E&xit"
msgstr "S&air"
@@ -3781,7 +3868,7 @@ msgid ""
"driver."
msgstr ""
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:185
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:186
msgid ""
"Each player sends their own inputs to the game, with equal buffer size for "
"all players, configured by the host.\n"
@@ -3795,7 +3882,7 @@ msgstr "Actualizações de Memória Inicial"
#. i18n: One of the elements in the Skylanders games. Japanese: 土. For official translations
#. in other languages, check the SuperChargers manual at https://support.activision.com/manuals
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:336
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:352
msgid "Earth"
msgstr ""
@@ -3808,7 +3895,7 @@ msgstr ""
msgid "Edit Breakpoint"
msgstr ""
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:426
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:430
msgid "Edit..."
msgstr ""
@@ -3842,7 +3929,7 @@ msgstr ""
#. i18n: Elements are a trait of Skylanders figures. For official translations of this term,
#. check the Skylanders SuperChargers manual at https://support.activision.com/manuals
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:289
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:300
msgid "Element"
msgstr ""
@@ -3850,11 +3937,11 @@ msgstr ""
msgid "Embedded Frame Buffer (EFB)"
msgstr ""
-#: Source/Core/Core/State.cpp:541
+#: Source/Core/Core/State.cpp:629
msgid "Empty"
msgstr ""
-#: Source/Core/Core/Core.cpp:246
+#: Source/Core/Core/Core.cpp:247
msgid "Emu Thread already running"
msgstr "Thread de Emulador já em execução"
@@ -3862,15 +3949,15 @@ msgstr "Thread de Emulador já em execução"
msgid "Emulate Disc Speed"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:60
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:61
msgid "Emulate Infinity Base"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:146
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:157
msgid "Emulate Skylander Portal"
msgstr ""
-#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:110
+#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:111
msgid "Emulate the Wii's Bluetooth adapter"
msgstr ""
@@ -3880,11 +3967,11 @@ msgid ""
"Defaults to True"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:230
+#: Source/Core/DolphinQt/MenuBar.cpp:222
msgid "Emulated USB Devices"
msgstr ""
-#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:141
+#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:142
msgid "Emulated Wii Remote"
msgstr ""
@@ -3904,12 +3991,12 @@ msgstr ""
msgid "Emulation must be started to record."
msgstr ""
-#: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:29
-#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:33
+#: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:30
+#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:34
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:120
-#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:129
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:402
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:419
+#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:130
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:406
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:423
msgid "Enable"
msgstr ""
@@ -3917,6 +4004,10 @@ msgstr ""
msgid "Enable API Validation Layers"
msgstr ""
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:83
+msgid "Enable Achievement Badges"
+msgstr ""
+
#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:60
msgid "Enable Achievements"
msgstr ""
@@ -3925,15 +4016,19 @@ msgstr ""
msgid "Enable Audio Stretching"
msgstr ""
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:142
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:143
msgid "Enable Cheats"
msgstr "Activar Cheats"
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:155
+#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:53
+msgid "Enable Controller Inpu&t"
+msgstr ""
+
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:161
msgid "Enable Custom RTC"
msgstr ""
-#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:149
+#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:154
msgid "Enable Debugging UI"
msgstr ""
@@ -3941,19 +4036,19 @@ msgstr ""
msgid "Enable Dual Core"
msgstr "Activar Dual Core"
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:139
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:140
msgid "Enable Dual Core (speedup)"
msgstr "Activar Dual Core (aumento de desempenho)"
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:88
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:94
msgid "Enable Emulated CPU Clock Override"
msgstr ""
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:118
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:124
msgid "Enable Emulated Memory Size Override"
msgstr ""
-#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:78
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:88
msgid "Enable Encore Achievements"
msgstr ""
@@ -3970,10 +4065,14 @@ msgid "Enable Leaderboards"
msgstr ""
#: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:88
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:66
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:68
msgid "Enable MMU"
msgstr "Activar MMU"
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:78
+msgid "Enable Progress Notifications"
+msgstr ""
+
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:156
msgid "Enable Progressive Scan"
msgstr "Activar Progressive Scan"
@@ -3987,15 +4086,15 @@ msgid "Enable Rich Presence"
msgstr ""
#: Source/Core/DolphinQt/Config/Mapping/GCPadWiiUConfigDialog.cpp:39
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:353
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:352
msgid "Enable Rumble"
msgstr ""
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:157
msgid "Enable Screen Saver"
msgstr "Activar Protector de Ecrã"
-#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:113
+#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:114
msgid "Enable Speaker Data"
msgstr ""
@@ -4003,11 +4102,11 @@ msgstr ""
msgid "Enable Unofficial Achievements"
msgstr ""
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:230
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:231
msgid "Enable Usage Statistics Reporting"
msgstr ""
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158
msgid "Enable WiiConnect24 via WiiLink"
msgstr ""
@@ -4015,10 +4114,17 @@ msgstr ""
msgid "Enable Wireframe"
msgstr "Activar Wireframe"
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:77
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:82
msgid "Enable Write-Back Cache (slow)"
msgstr ""
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:85
+msgid ""
+"Enable achievement badges.
Displays icons for the player, game, and "
+"achievements. Simple visual option, but will require a small amount of extra "
+"memory and time to download the images."
+msgstr ""
+
#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:64
msgid ""
"Enable competing in RetroAchievements leaderboards.
Displays a brief popup "
+"message whenever the player makes progress on an achievement that tracks an "
+"accumulated value, such as 60 out of 120 stars."
+msgstr ""
+
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:90
+msgid ""
"Enable unlocking achievements in Encore Mode.
Encore Mode re-enables "
"achievements the player has already unlocked on the site so that the player "
"will be notified if they meet the unlock conditions again, useful for custom "
@@ -4079,7 +4192,7 @@ msgid ""
"= Compatible, OFF = Fast)"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:514
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:596
msgid ""
"Enables detection of arbitrary mipmaps, which some games use for special "
"distance-based effects.
May have false positives that result in "
@@ -4090,11 +4203,12 @@ msgid ""
"dolphin_emphasis>"
msgstr ""
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:79
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:84
msgid ""
-"Enables emulation of the CPU write-back cache.\n"
-"Enabling will have a significant impact on performance.\n"
-"This should be left disabled unless absolutely needed."
+"Enables emulation of the CPU write-back cache. Enabling will have a "
+"significant impact on performance. This should be left disabled unless "
+"absolutely needed.
If unsure, leave this unchecked."
+""
msgstr ""
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:365
@@ -4112,7 +4226,7 @@ msgid ""
"this unchecked."
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:522
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:604
msgid ""
"Enables scRGB HDR output (if supported by your graphics backend and "
"monitor). Fullscreen might be required.
This gives post process "
@@ -4135,7 +4249,6 @@ msgid ""
msgstr ""
#: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:100
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:68
msgid ""
"Enables the Memory Management Unit, needed for some games. (ON = Compatible, "
"OFF = Fast)"
@@ -4143,7 +4256,14 @@ msgstr ""
"Activa a Unidade de Gestão de Memória, necessária em alguns jogos. (ON = "
"Compatível, OFF = Rápido)"
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:193
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:70
+msgid ""
+"Enables the Memory Management Unit, needed for some games. (ON = Compatible, "
+"OFF = Fast)
If unsure, leave this unchecked."
+"dolphin_emphasis>"
+msgstr ""
+
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190
msgid ""
"Enables the WiiLink service for WiiConnect24 channels.\n"
"WiiLink is an alternate provider for the discontinued WiiConnect24 Channels "
@@ -4170,7 +4290,7 @@ msgstr ""
msgid "Encoding"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:615
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:616
msgid ""
"Encountered the following errors while opening save files:\n"
"%1\n"
@@ -4183,12 +4303,12 @@ msgid "Enet Didn't Initialize"
msgstr ""
#: Source/Core/DiscIO/Enums.cpp:80
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:85
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:169
msgid "English"
msgstr "Inglês"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:59
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:61
#: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:61
msgid "Enhancements"
msgstr "Melhorias"
@@ -4219,84 +4339,84 @@ msgstr ""
msgid "Enter the DNS server to use:"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1300
+#: Source/Core/DolphinQt/MenuBar.cpp:1286
msgid "Enter the RSO module address:"
msgstr ""
#: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:194
#: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:250
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:261
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:262
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386
#: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:265
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:343
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:349
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:346
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:352
#: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:46
-#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:521
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:256
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:295
-#: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:232
-#: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:259
-#: Source/Core/DolphinQt/ConvertDialog.cpp:424
-#: Source/Core/DolphinQt/ConvertDialog.cpp:471
-#: Source/Core/DolphinQt/ConvertDialog.cpp:525
+#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:539
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:255
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:296
+#: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:229
+#: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:256
+#: Source/Core/DolphinQt/ConvertDialog.cpp:426
+#: Source/Core/DolphinQt/ConvertDialog.cpp:473
+#: Source/Core/DolphinQt/ConvertDialog.cpp:528
#: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:255
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:638
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:644
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:653
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:665
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:684
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:690
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:705
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:713
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:737
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:744
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:637
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:643
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:652
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:664
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:683
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:689
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:704
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:712
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:736
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:743
#: Source/Core/DolphinQt/Debugger/RegisterColumn.cpp:86
#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:282
#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:431
-#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:241
-#: Source/Core/DolphinQt/GBAWidget.cpp:576
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:346
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:376
-#: Source/Core/DolphinQt/Main.cpp:209 Source/Core/DolphinQt/Main.cpp:225
-#: Source/Core/DolphinQt/Main.cpp:232 Source/Core/DolphinQt/MainWindow.cpp:295
-#: Source/Core/DolphinQt/MainWindow.cpp:303
-#: Source/Core/DolphinQt/MainWindow.cpp:1108
-#: Source/Core/DolphinQt/MainWindow.cpp:1494
-#: Source/Core/DolphinQt/MainWindow.cpp:1501
-#: Source/Core/DolphinQt/MainWindow.cpp:1561
-#: Source/Core/DolphinQt/MainWindow.cpp:1568
-#: Source/Core/DolphinQt/MainWindow.cpp:1670
-#: Source/Core/DolphinQt/MenuBar.cpp:1204
-#: Source/Core/DolphinQt/MenuBar.cpp:1284
+#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:237
+#: Source/Core/DolphinQt/GBAWidget.cpp:578
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:347
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:377
+#: Source/Core/DolphinQt/Main.cpp:211 Source/Core/DolphinQt/Main.cpp:227
+#: Source/Core/DolphinQt/Main.cpp:234 Source/Core/DolphinQt/MainWindow.cpp:297
+#: Source/Core/DolphinQt/MainWindow.cpp:305
+#: Source/Core/DolphinQt/MainWindow.cpp:1110
+#: Source/Core/DolphinQt/MainWindow.cpp:1507
+#: Source/Core/DolphinQt/MainWindow.cpp:1514
+#: Source/Core/DolphinQt/MainWindow.cpp:1574
+#: Source/Core/DolphinQt/MainWindow.cpp:1581
+#: Source/Core/DolphinQt/MainWindow.cpp:1690
+#: Source/Core/DolphinQt/MenuBar.cpp:1190
+#: Source/Core/DolphinQt/MenuBar.cpp:1270
+#: Source/Core/DolphinQt/MenuBar.cpp:1293
#: Source/Core/DolphinQt/MenuBar.cpp:1307
-#: Source/Core/DolphinQt/MenuBar.cpp:1321
-#: Source/Core/DolphinQt/MenuBar.cpp:1352
-#: Source/Core/DolphinQt/MenuBar.cpp:1376
-#: Source/Core/DolphinQt/MenuBar.cpp:1597
-#: Source/Core/DolphinQt/MenuBar.cpp:1608
-#: Source/Core/DolphinQt/MenuBar.cpp:1620
-#: Source/Core/DolphinQt/MenuBar.cpp:1642
-#: Source/Core/DolphinQt/MenuBar.cpp:1668
-#: Source/Core/DolphinQt/MenuBar.cpp:1722
-#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:315
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:477
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:738
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:980
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1098
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1108
-#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:334
-#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:340
-#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:347
+#: Source/Core/DolphinQt/MenuBar.cpp:1339
+#: Source/Core/DolphinQt/MenuBar.cpp:1363
+#: Source/Core/DolphinQt/MenuBar.cpp:1584
+#: Source/Core/DolphinQt/MenuBar.cpp:1595
+#: Source/Core/DolphinQt/MenuBar.cpp:1607
+#: Source/Core/DolphinQt/MenuBar.cpp:1629
+#: Source/Core/DolphinQt/MenuBar.cpp:1655
+#: Source/Core/DolphinQt/MenuBar.cpp:1709
+#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:316
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:479
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:740
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:982
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1100
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1110
+#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:332
+#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:338
+#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:345
#: Source/Core/DolphinQt/RenderWidget.cpp:123
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:203
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:224
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:423
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:439
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:460
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:481
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:525
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:562
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:585
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:204
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:225
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:433
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:449
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:470
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:491
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:535
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:572
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:595
#: Source/Core/DolphinQt/Translation.cpp:322
msgid "Error"
msgstr "Erro"
@@ -4305,13 +4425,13 @@ msgstr "Erro"
msgid "Error Opening Adapter: %1"
msgstr ""
-#: Source/Core/Core/NetPlayServer.cpp:1493
+#: Source/Core/Core/NetPlayServer.cpp:1497
msgid "Error collecting save data!"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:260
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:526
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:533
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:262
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:613
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:620
msgid "Error converting value"
msgstr ""
@@ -4325,15 +4445,15 @@ msgstr ""
msgid "Error obtaining session list: %1"
msgstr ""
-#: Source/Core/DolphinQt/MainWindow.cpp:296
+#: Source/Core/DolphinQt/MainWindow.cpp:298
msgid "Error occurred while loading some texture packs"
msgstr ""
-#: Source/Core/Core/NetPlayClient.cpp:1847
+#: Source/Core/Core/NetPlayClient.cpp:1851
msgid "Error processing codes."
msgstr ""
-#: Source/Core/Core/NetPlayClient.cpp:1819
+#: Source/Core/Core/NetPlayClient.cpp:1823
msgid "Error processing data."
msgstr ""
@@ -4341,11 +4461,11 @@ msgstr ""
msgid "Error reading file: {0}"
msgstr ""
-#: Source/Core/Core/NetPlayServer.cpp:1529
+#: Source/Core/Core/NetPlayServer.cpp:1533
msgid "Error synchronizing cheat codes!"
msgstr ""
-#: Source/Core/Core/NetPlayServer.cpp:1515
+#: Source/Core/Core/NetPlayServer.cpp:1519
msgid "Error synchronizing save data!"
msgstr ""
@@ -4416,7 +4536,7 @@ msgstr ""
msgid "Euphoria"
msgstr "Euphoria"
-#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:282
+#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:274
#: Source/Core/UICommon/NetPlayIndex.cpp:249
msgid "Europe"
msgstr ""
@@ -4445,11 +4565,11 @@ msgstr ""
msgid "Excluded: %1"
msgstr ""
-#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:73
+#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:72
msgid "Excluded: 0"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:107
+#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108
msgid "Exclusive Ubershaders"
msgstr ""
@@ -4497,14 +4617,14 @@ msgstr ""
msgid "Experimental"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:294
+#: Source/Core/DolphinQt/MenuBar.cpp:286
msgid "Export All Wii Saves"
msgstr "Exportar Todos os Jogos Guardados Wii"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:422
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:447
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:492
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:499
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:423
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:448
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:493
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:500
msgid "Export Failed"
msgstr ""
@@ -4512,42 +4632,42 @@ msgstr ""
msgid "Export Recording"
msgstr "Exportar Gravação"
-#: Source/Core/DolphinQt/MenuBar.cpp:753
+#: Source/Core/DolphinQt/MenuBar.cpp:745
msgid "Export Recording..."
msgstr "Exportar Gravação..."
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:437
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:438
msgid "Export Save File"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:454
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:455
msgid "Export Save Files"
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:470
+#: Source/Core/DolphinQt/GameList/GameList.cpp:473
msgid "Export Wii Save"
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:388
+#: Source/Core/DolphinQt/GameList/GameList.cpp:389
msgid "Export Wii Saves"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:117
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:118
msgid "Export as .&gcs..."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:118
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:119
msgid "Export as .&sav..."
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1133
+#: Source/Core/DolphinQt/MenuBar.cpp:1115
#, c-format
msgctxt ""
msgid "Exported %n save(s)"
msgstr ""
#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:268
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:432
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:434
#: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:47
msgid "Extension"
msgstr "Extensão"
@@ -4560,7 +4680,7 @@ msgstr ""
msgid "Extension Motion Simulation"
msgstr ""
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:520
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:522
msgid "External"
msgstr ""
@@ -4568,35 +4688,35 @@ msgstr ""
msgid "External Frame Buffer (XFB)"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:271
+#: Source/Core/DolphinQt/MenuBar.cpp:263
msgid "Extract Certificates from NAND"
msgstr ""
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:268
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:269
msgid "Extract Entire Disc..."
msgstr ""
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:292
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:293
msgid "Extract Entire Partition..."
msgstr ""
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:299
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:300
msgid "Extract File..."
msgstr "Extrair Ficheiro..."
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:241
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:242
msgid "Extract Files..."
msgstr ""
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:251
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:252
msgid "Extract System Data..."
msgstr ""
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:355
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:356
msgid "Extracting All Files..."
msgstr ""
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:356
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357
msgid "Extracting Directory..."
msgstr ""
@@ -4606,7 +4726,7 @@ msgid "FD"
msgstr ""
#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:37
-#: Source/Core/DolphinQt/MenuBar.cpp:228
+#: Source/Core/DolphinQt/MenuBar.cpp:220
msgid "FIFO Player"
msgstr "Reprodutor FIFO"
@@ -4614,17 +4734,17 @@ msgstr "Reprodutor FIFO"
msgid "Failed loading XML."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:347
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:348
msgid ""
"Failed opening memory card:\n"
"%1"
msgstr ""
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:454
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:456
msgid "Failed to add this session to the NetPlay index: %1"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1669
+#: Source/Core/DolphinQt/MenuBar.cpp:1656
msgid "Failed to append to signature file '%1'"
msgstr ""
@@ -4632,11 +4752,11 @@ msgstr ""
msgid "Failed to claim interface for BT passthrough: {0}"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:574
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:676
msgid "Failed to clear Skylander!"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:575
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:677
msgid "Failed to clear the Skylander from slot(%1)!"
msgstr ""
@@ -4644,7 +4764,7 @@ msgstr ""
msgid "Failed to connect to Redump.org"
msgstr ""
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:981
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:983
msgid "Failed to connect to server: %1"
msgstr ""
@@ -4665,15 +4785,15 @@ msgstr ""
msgid "Failed to create DXGI factory"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:289
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:291
msgid "Failed to create Infinity file"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:678
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:798
msgid "Failed to create Skylander file!"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:679
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:799
msgid ""
"Failed to create Skylander file:\n"
"%1\n"
@@ -4689,7 +4809,7 @@ msgstr ""
msgid "Failed to delete NetPlay memory card. Verify your write permissions."
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:841
+#: Source/Core/DolphinQt/GameList/GameList.cpp:854
msgid "Failed to delete the selected file."
msgstr ""
@@ -4697,36 +4817,36 @@ msgstr ""
msgid "Failed to detach kernel driver for BT passthrough: {0}"
msgstr ""
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:343
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:346
msgid "Failed to download codes."
msgstr "Falha ao descarregar códigos"
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:738
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:737
msgid "Failed to dump %1: Can't open file"
msgstr ""
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:745
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:744
msgid "Failed to dump %1: Failed to write to file"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:488
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:489
msgctxt ""
msgid "Failed to export %n out of %1 save file(s)."
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:576
+#: Source/Core/DolphinQt/GameList/GameList.cpp:584
msgid "Failed to export the following save files:"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1204
+#: Source/Core/DolphinQt/MenuBar.cpp:1190
msgid "Failed to extract certificates from NAND"
msgstr ""
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386
msgid "Failed to extract file."
msgstr ""
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:261
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:262
msgid "Failed to extract system data."
msgstr ""
@@ -4741,29 +4861,29 @@ msgstr ""
msgid "Failed to find one or more D3D symbols"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:565
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:566
msgid "Failed to import \"%1\"."
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1109
+#: Source/Core/DolphinQt/MenuBar.cpp:1091
msgid ""
"Failed to import save file. Please launch the game once, then try again."
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1103
+#: Source/Core/DolphinQt/MenuBar.cpp:1085
msgid ""
"Failed to import save file. The given file appears to be corrupted or is not "
"a valid Wii save."
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1116
+#: Source/Core/DolphinQt/MenuBar.cpp:1098
msgid ""
"Failed to import save file. Your NAND may be corrupt, or something is "
"preventing access to files within it. Try repairing your NAND (Tools -> "
"Manage NAND -> Check NAND...), then import the save again."
msgstr ""
-#: Source/Core/DolphinQt/MainWindow.cpp:1108
+#: Source/Core/DolphinQt/MainWindow.cpp:1110
msgid "Failed to init core"
msgstr ""
@@ -4778,23 +4898,23 @@ msgstr ""
msgid "Failed to initialize renderer classes"
msgstr ""
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:204
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:205
msgid "Failed to install pack: %1"
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:619
-#: Source/Core/DolphinQt/MenuBar.cpp:1074
+#: Source/Core/DolphinQt/GameList/GameList.cpp:628
+#: Source/Core/DolphinQt/MenuBar.cpp:1056
msgid "Failed to install this title to the NAND."
msgstr ""
-#: Source/Core/DolphinQt/MainWindow.cpp:1594
+#: Source/Core/DolphinQt/MainWindow.cpp:1607
msgid ""
"Failed to listen on port %1. Is another instance of the NetPlay server "
"running?"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1321
-#: Source/Core/DolphinQt/MenuBar.cpp:1376
+#: Source/Core/DolphinQt/MenuBar.cpp:1307
+#: Source/Core/DolphinQt/MenuBar.cpp:1363
msgid "Failed to load RSO module at %1"
msgstr ""
@@ -4806,15 +4926,15 @@ msgstr ""
msgid "Failed to load dxgi.dll"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1608
+#: Source/Core/DolphinQt/MenuBar.cpp:1595
msgid "Failed to load map file '%1'"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:720
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:842
msgid "Failed to load the Skylander file!"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:721
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:843
msgid "Failed to load the Skylander file(%1)!\n"
msgstr ""
@@ -4828,8 +4948,12 @@ msgid ""
"update package."
msgstr ""
-#: Source/Core/DolphinQt/GBAWidget.cpp:576
-#: Source/Core/DolphinQt/MainWindow.cpp:1670
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:663
+msgid "Failed to modify Skylander!"
+msgstr ""
+
+#: Source/Core/DolphinQt/GBAWidget.cpp:578
+#: Source/Core/DolphinQt/MainWindow.cpp:1690
#: Source/Core/DolphinQt/RenderWidget.cpp:123
msgid "Failed to open '%1'"
msgstr ""
@@ -4856,40 +4980,40 @@ msgid ""
"Make sure there's an application assigned to open INI files."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:861
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:863
msgid "Failed to open file."
msgstr ""
-#: Source/Core/DolphinQt/MainWindow.cpp:1593
+#: Source/Core/DolphinQt/MainWindow.cpp:1606
msgid "Failed to open server"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:164
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:166
msgid "Failed to open the Infinity file!"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:165
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:167
msgid ""
"Failed to open the Infinity file(%1)!\n"
"File may already be in use on the base."
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:696
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:818
msgid "Failed to open the Skylander file!"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:697
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:819
msgid ""
"Failed to open the Skylander file(%1)!\n"
"File may already be in use on the portal."
msgstr ""
-#: Source/Core/DolphinQt/ConvertDialog.cpp:472
+#: Source/Core/DolphinQt/ConvertDialog.cpp:474
msgid "Failed to open the input file \"%1\"."
msgstr ""
-#: Source/Core/DiscIO/CompressedBlob.cpp:282 Source/Core/DiscIO/FileBlob.cpp:53
-#: Source/Core/DiscIO/WIABlob.cpp:2037
+#: Source/Core/DiscIO/CompressedBlob.cpp:287 Source/Core/DiscIO/FileBlob.cpp:58
+#: Source/Core/DiscIO/WIABlob.cpp:2043
msgid ""
"Failed to open the output file \"{0}\".\n"
"Check that you have permissions to write the target folder and that the "
@@ -4909,35 +5033,35 @@ msgstr ""
msgid "Failed to read DFF file."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:863
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:865
msgid "Failed to read from file."
msgstr ""
-#: Source/Core/DiscIO/CompressedBlob.cpp:373 Source/Core/DiscIO/FileBlob.cpp:93
-#: Source/Core/DiscIO/WIABlob.cpp:2052
+#: Source/Core/DiscIO/CompressedBlob.cpp:378 Source/Core/DiscIO/FileBlob.cpp:98
+#: Source/Core/DiscIO/WIABlob.cpp:2058
msgid "Failed to read from the input file \"{0}\"."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:423
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:641
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:424
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:642
msgid "Failed to read selected savefile(s) from memory card."
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:173
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:175
msgid "Failed to read the Infinity file!"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:174
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:176
msgid ""
"Failed to read the Infinity file(%1)!\n"
"File was too small."
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:706
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:828
msgid "Failed to read the Skylander file!"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:707
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:829
msgid ""
"Failed to read the Skylander file(%1)!\n"
"File was too small."
@@ -4947,18 +5071,18 @@ msgstr ""
msgid "Failed to read {0}"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:668
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:669
msgid "Failed to remove file."
msgstr ""
-#: Source/Core/DolphinQt/ConvertDialog.cpp:453
+#: Source/Core/DolphinQt/ConvertDialog.cpp:455
msgid ""
"Failed to remove junk data from file \"%1\".\n"
"\n"
"Would you like to convert it without removing junk data?"
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:647
+#: Source/Core/DolphinQt/GameList/GameList.cpp:658
msgid "Failed to remove this title from the NAND."
msgstr ""
@@ -4974,27 +5098,34 @@ msgstr ""
msgid "Failed to reset NetPlay redirect folder. Verify your write permissions."
msgstr ""
-#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:241
+#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:237
msgid "Failed to save FIFO log."
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1598
+#: Source/Core/DolphinQt/MenuBar.cpp:1585
msgid "Failed to save code map to path '%1'"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1642
+#: Source/Core/DolphinQt/MenuBar.cpp:1629
msgid "Failed to save signature file '%1'"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1621
+#: Source/Core/DolphinQt/MenuBar.cpp:1608
msgid "Failed to save symbol map to path '%1'"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1723
+#: Source/Core/DolphinQt/MenuBar.cpp:1710
msgid "Failed to save to signature file '%1'"
msgstr ""
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:225
+#: Source/Core/Core/Core.cpp:548
+msgid ""
+"Failed to sync SD card with folder. All changes made this session will be "
+"discarded on next boot if you do not manually re-issue a resync in Config > "
+"Wii > SD Card Settings > Convert File to Folder Now!"
+msgstr ""
+
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:226
msgid "Failed to uninstall pack: %1"
msgstr ""
@@ -5014,9 +5145,9 @@ msgstr ""
msgid "Failed to write config file!"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:573
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:676
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:691
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:574
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:677
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:692
msgid "Failed to write modified memory card to disk."
msgstr ""
@@ -5024,33 +5155,33 @@ msgstr ""
msgid "Failed to write redirected save."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:447
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:448
msgid "Failed to write savefile to disk."
msgstr ""
-#: Source/Core/DiscIO/CompressedBlob.cpp:377 Source/Core/DiscIO/FileBlob.cpp:99
-#: Source/Core/DiscIO/WIABlob.cpp:2056
+#: Source/Core/DiscIO/CompressedBlob.cpp:382
+#: Source/Core/DiscIO/FileBlob.cpp:104 Source/Core/DiscIO/WIABlob.cpp:2062
msgid ""
"Failed to write the output file \"{0}\".\n"
"Check that you have enough space available on the target drive."
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:617
-#: Source/Core/DolphinQt/GameList/GameList.cpp:645
-#: Source/Core/DolphinQt/GameList/GameList.cpp:840
-#: Source/Core/DolphinQt/MenuBar.cpp:1074
+#: Source/Core/DolphinQt/GameList/GameList.cpp:626
+#: Source/Core/DolphinQt/GameList/GameList.cpp:656
+#: Source/Core/DolphinQt/GameList/GameList.cpp:853
+#: Source/Core/DolphinQt/MenuBar.cpp:1056
msgid "Failure"
msgstr ""
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:183
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:184
msgid "Fair Input Delay"
msgstr ""
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:199
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:200
msgid "Fallback Region"
msgstr ""
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:210
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:211
msgid "Fallback Region:"
msgstr ""
@@ -5074,17 +5205,21 @@ msgstr ""
msgid "Field of View"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:233
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:235
msgid "Figure Number:"
msgstr ""
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:380
+msgid "Figure type"
+msgstr ""
+
#: Source/Core/DolphinQt/Config/InfoWidget.cpp:46
msgid "File Details"
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:991
+#: Source/Core/DolphinQt/GameList/GameList.cpp:1005
#: Source/Core/DolphinQt/GameList/GameListModel.cpp:229
-#: Source/Core/DolphinQt/MenuBar.cpp:652
+#: Source/Core/DolphinQt/MenuBar.cpp:644
msgid "File Format"
msgstr ""
@@ -5096,20 +5231,20 @@ msgstr ""
msgid "File Info"
msgstr "Informação de Ficheiro"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:986
+#: Source/Core/DolphinQt/GameList/GameList.cpp:1000
#: Source/Core/DolphinQt/GameList/GameListModel.cpp:223
-#: Source/Core/DolphinQt/MenuBar.cpp:647
+#: Source/Core/DolphinQt/MenuBar.cpp:639
msgid "File Name"
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:987
+#: Source/Core/DolphinQt/GameList/GameList.cpp:1001
#: Source/Core/DolphinQt/GameList/GameListModel.cpp:225
-#: Source/Core/DolphinQt/MenuBar.cpp:648
+#: Source/Core/DolphinQt/MenuBar.cpp:640
msgid "File Path"
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:990
-#: Source/Core/DolphinQt/MenuBar.cpp:651
+#: Source/Core/DolphinQt/GameList/GameList.cpp:1004
+#: Source/Core/DolphinQt/MenuBar.cpp:643
msgid "File Size"
msgstr ""
@@ -5117,15 +5252,15 @@ msgstr ""
msgid "File Size:"
msgstr ""
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:349
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:352
msgid "File contained no codes."
msgstr "O ficheiro não continha códigos."
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:149
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:150
msgid "Filename"
msgstr ""
-#: Source/Core/DiscIO/CompressedBlob.cpp:289
+#: Source/Core/DiscIO/CompressedBlob.cpp:294
msgid "Files opened, ready to compress."
msgstr ""
@@ -5135,11 +5270,11 @@ msgid ""
"{1}"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:833
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:835
msgid "Filesize does not match any known GameCube Memory Card size."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:836
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:838
msgid "Filesize in header mismatches actual card size."
msgstr ""
@@ -5147,7 +5282,7 @@ msgstr ""
msgid "Filesystem"
msgstr "Sistema de ficheiros"
-#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:102
+#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:103
msgid "Filters"
msgstr ""
@@ -5163,7 +5298,7 @@ msgstr ""
msgid "Finish Calibration"
msgstr ""
-#: Source/Core/DolphinQt/WiiUpdate.cpp:109
+#: Source/Core/DolphinQt/WiiUpdate.cpp:110
msgid ""
"Finishing the update...\n"
"This can take a while."
@@ -5171,19 +5306,19 @@ msgstr ""
#. i18n: One of the elements in the Skylanders games. Japanese: 火. For official translations
#. in other languages, check the SuperChargers manual at https://support.activision.com/manuals
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:333
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:349
msgid "Fire"
msgstr ""
-#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:40
+#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:41
msgid "First Person"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:127
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:128
msgid "Fix Checksums"
msgstr "Corrigir Checksums"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:690
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:691
msgid "Fix Checksums Failed"
msgstr ""
@@ -5193,7 +5328,7 @@ msgstr ""
#. i18n: These are the kinds of flags that a CPU uses (e.g. carry),
#. not the kinds of flags that represent e.g. countries
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:166
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167
#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:87
msgid "Flags"
msgstr ""
@@ -5202,12 +5337,12 @@ msgstr ""
#. i18n: Floating-point (non-integer) number
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:138
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:198
-#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:152
+#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:153
#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97
msgid "Float"
msgstr ""
-#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:565
+#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:566
msgid "Follow &branch"
msgstr ""
@@ -5227,35 +5362,35 @@ msgid ""
"\">refer to this page."
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:57
+#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:58
msgid "Force 16:9"
msgstr "Forçar 16:9"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:117
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:152
msgid "Force 24-Bit Color"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:57
+#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:58
msgid "Force 4:3"
msgstr "Forçar 4:3"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:96
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:115
msgid "Force Linear"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:103
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:122
msgid "Force Linear and 16x Anisotropic"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:97
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:116
msgid "Force Linear and 2x Anisotropic"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:99
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:118
msgid "Force Linear and 4x Anisotropic"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:101
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:120
msgid "Force Linear and 8x Anisotropic"
msgstr ""
@@ -5263,7 +5398,7 @@ msgstr ""
msgid "Force Listen Port:"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:95
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:114
msgid "Force Nearest"
msgstr ""
@@ -5275,7 +5410,7 @@ msgstr ""
msgid "Forced on because %1 doesn't support geometry shaders."
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:474
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:556
msgid ""
"Forces the game to output graphics for any aspect ratio. Use with \"Aspect "
"Ratio\" set to \"Force 16:9\" to force 4:3-only games to run at 16:9."
@@ -5285,7 +5420,7 @@ msgid ""
""
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:503
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:585
msgid ""
"Forces the game to render the RGB color channels in 24-bit, thereby "
"increasing quality by reducing color banding.
Has no impact on "
@@ -5293,7 +5428,7 @@ msgid ""
"unsure, leave this checked."
msgstr ""
-#: Source/Core/DolphinQt/ConvertDialog.cpp:59
+#: Source/Core/DolphinQt/ConvertDialog.cpp:60
msgid "Format:"
msgstr ""
@@ -5359,19 +5494,19 @@ msgstr ""
msgid "France"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:311
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:312
msgid "Free Blocks: %1"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:312
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:313
msgid "Free Files: %1"
msgstr ""
-#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:42
+#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:43
msgid "Free Look Control Type"
msgstr ""
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:468
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:470
msgid "Free Look Controller %1"
msgstr ""
@@ -5379,7 +5514,7 @@ msgstr ""
msgid "Free Look Settings"
msgstr ""
-#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:54
+#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:55
msgid ""
"Free Look allows for manipulation of the in-game camera. Different camera "
"types are available from the dropdown.
Na dúvida, mantenha essa opção desativada."
"dolphin_emphasis>"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:508
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:590
msgid ""
"Disables the blending of adjacent rows when copying the EFB. This is known "
"in some games as \"deflickering\" or \"smoothing\".
Disabling the "
@@ -3793,7 +3901,7 @@ msgstr ""
"Causa alguns defeitos gráficos.
Na dúvida, mantenha "
"essa opção ativada."
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:96
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:97
msgid "Disc"
msgstr "Disco"
@@ -3832,27 +3940,27 @@ msgstr "Distância"
msgid "Distance of travel from neutral position."
msgstr "Distância de viagem da posição neutra."
-#: Source/Core/DolphinQt/Main.cpp:259
+#: Source/Core/DolphinQt/Main.cpp:264
msgid "Do you authorize Dolphin to report information to Dolphin's developers?"
msgstr ""
"Você autoriza o Dolphin a enviar estatísticas de uso para a equipe de "
"desenvolvimento?"
-#: Source/Core/DolphinQt/MainWindow.cpp:1692
+#: Source/Core/DolphinQt/MainWindow.cpp:1712
msgid "Do you want to add \"%1\" to the list of Game Paths?"
msgstr "Você quer adicionar '%1' a lista de caminhos dos jogos?"
-#: Source/Core/DolphinQt/MenuBar.cpp:1241
+#: Source/Core/DolphinQt/MenuBar.cpp:1227
msgid "Do you want to clear the list of symbol names?"
msgstr "Você quer limpar a lista dos nomes do símbolos?"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:658
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:659
#, c-format
msgctxt ""
msgid "Do you want to delete the %n selected save file(s)?"
msgstr "Deseja excluir %n arquivo(s) de jogo salvo selecionado(s)?"
-#: Source/Core/DolphinQt/MainWindow.cpp:933
+#: Source/Core/DolphinQt/MainWindow.cpp:935
msgid "Do you want to stop the current emulation?"
msgstr "Deseja parar a emulação atual?"
@@ -3864,35 +3972,35 @@ msgstr "Deseja tentar efetuar um reparo na NAND?"
msgid "Dolby Pro Logic II Decoder"
msgstr "Decodificador Dolby Pro Logic II"
-#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:219
-#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:230
+#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:215
+#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:226
msgid "Dolphin FIFO Log (*.dff)"
msgstr "Registro FIFO do Dolphin (*.dff)"
-#: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:327
+#: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:326
msgid "Dolphin Game Mod Preset"
msgstr "Pré-definição do Mod do Jogo no Dolphin"
-#: Source/Core/DolphinQt/MenuBar.cpp:1536
-#: Source/Core/DolphinQt/MenuBar.cpp:1553
-#: Source/Core/DolphinQt/MenuBar.cpp:1572
+#: Source/Core/DolphinQt/MenuBar.cpp:1523
+#: Source/Core/DolphinQt/MenuBar.cpp:1540
+#: Source/Core/DolphinQt/MenuBar.cpp:1559
msgid "Dolphin Map File (*.map)"
msgstr "Arquivo do Mapa do Dolphin (*.map)"
-#: Source/Core/DolphinQt/MenuBar.cpp:73
+#: Source/Core/DolphinQt/MenuBar.cpp:74
msgid "Dolphin Signature CSV File"
msgstr "Arquivo CSV de Assinatura do Dolphin"
-#: Source/Core/DolphinQt/MenuBar.cpp:73
+#: Source/Core/DolphinQt/MenuBar.cpp:74
msgid "Dolphin Signature File"
msgstr "Arquivo de Assinatura do Dolphin"
-#: Source/Core/DolphinQt/MainWindow.cpp:1772
-#: Source/Core/DolphinQt/MainWindow.cpp:1843
+#: Source/Core/DolphinQt/MainWindow.cpp:1823
+#: Source/Core/DolphinQt/MainWindow.cpp:1894
msgid "Dolphin TAS Movies (*.dtm)"
msgstr "Gravações TAS do Dolphin (*.dtm)"
-#: Source/Core/DolphinQt/ConvertDialog.cpp:326
+#: Source/Core/DolphinQt/ConvertDialog.cpp:327
msgid ""
"Dolphin can't convert NKit files to non-NKit files. Converting an NKit file "
"in Dolphin will result in another NKit file.\n"
@@ -3911,7 +4019,7 @@ msgstr ""
"\n"
"Deseja continuar assim mesmo?"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:279
+#: Source/Core/DolphinQt/GameList/GameList.cpp:280
msgid ""
"Dolphin could not find any GameCube/Wii ISOs or WADs.\n"
"Double-click here to set a games directory..."
@@ -3919,7 +4027,7 @@ msgstr ""
"O Dolphin não encontrou nenhuma ISO de GameCube/Wii ou WADs.\n"
"Dê um clique duplo aqui para definir uma pasta de jogos..."
-#: Source/Core/DolphinQt/ConvertDialog.cpp:526
+#: Source/Core/DolphinQt/ConvertDialog.cpp:529
msgid "Dolphin failed to complete the requested action."
msgstr "Falha ao completar a ação requisitada."
@@ -3932,7 +4040,7 @@ msgid "Dolphin is a free and open-source GameCube and Wii emulator."
msgstr ""
"O Dolphin é um emulador de GameCube e Wii grátis e de código fonte aberto."
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:998
msgid "Dolphin is too old for traversal server"
msgstr "Versão do Dolphin é muito antiga para o servidor traversal"
@@ -3948,7 +4056,7 @@ msgstr ""
msgid "Dolphin is unable to verify unlicensed discs."
msgstr "O Dolphin não pode verificar imagens de discos não licenciados."
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:217
msgid ""
"Dolphin will use this for titles whose region cannot be determined "
"automatically."
@@ -3965,15 +4073,15 @@ msgstr "O sistema de cheats do Dolphin está desativado no momento."
msgid "Domain"
msgstr "Domínio"
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:193
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:194
msgid "Don't Update"
msgstr "Desativar Atualizações"
-#: Source/Core/DolphinQt/NKitWarningDialog.cpp:53
+#: Source/Core/DolphinQt/NKitWarningDialog.cpp:56
msgid "Don't show this again"
msgstr "Não mostrar novamente"
-#: Source/Core/DiscIO/CompressedBlob.cpp:369
+#: Source/Core/DiscIO/CompressedBlob.cpp:374
msgid "Done compressing disc image."
msgstr "Compressão de imagem do disco concluída."
@@ -3986,37 +4094,37 @@ msgstr "Portas Fechadas"
#. i18n: A double precision floating point number
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:139
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:199
-#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:154
+#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:155
msgid "Double"
msgstr "Dobro"
#: Source/Core/Core/FreeLookManager.cpp:89
#: Source/Core/Core/HW/WiimoteEmu/Extension/Guitar.cpp:80
#: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:35
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:43
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:44
#: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:21
#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUAccelerometer.cpp:19
#: Source/Core/InputCommon/ControllerEmu/ControllerEmu.h:24
msgid "Down"
msgstr "Para Baixo"
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:86
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:87
msgid "Download Codes"
msgstr "Baixar Códigos"
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:88
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:89
msgid "Download Codes from the WiiRD Database"
msgstr "Baixar Códigos da Base de Dados do WiiRD"
-#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:148
+#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:153
msgid "Download Game Covers from GameTDB.com for Use in Grid Mode"
msgstr "Mostrar Capas de Jogos Baixadas do GameTDB.com no Modo Grade"
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:370
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:373
msgid "Download complete"
msgstr "Download completo"
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:371
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:374
msgid "Downloaded %1 codes. (added %2)"
msgstr "%1 códigos baixados (%2 adicionados)"
@@ -4039,7 +4147,7 @@ msgstr "Dual Core"
msgid "Dual View"
msgstr "Visualização Dupla"
-#: Source/Core/Core/HW/EXI/EXI_Device.h:95
+#: Source/Core/Core/HW/EXI/EXI_Device.h:94
msgid "Dummy"
msgstr "Dummy"
@@ -4059,7 +4167,7 @@ msgstr "Exportar &FakeVMEM"
msgid "Dump &MRAM"
msgstr "Exportar &MRAM"
-#: Source/Core/DolphinQt/MenuBar.cpp:814
+#: Source/Core/DolphinQt/MenuBar.cpp:806
msgid "Dump Audio"
msgstr "Exportar Áudio"
@@ -4071,7 +4179,7 @@ msgstr "Exportar Texturas de Base"
msgid "Dump EFB Target"
msgstr "Exportar Alvo EFB"
-#: Source/Core/DolphinQt/MenuBar.cpp:808
+#: Source/Core/DolphinQt/MenuBar.cpp:800
msgid "Dump Frames"
msgstr "Exportar Quadros"
@@ -4153,12 +4261,12 @@ msgid "Duration of Turbo Button Release (frames):"
msgstr "Duração do Soltar do Botão Turbo (frames):"
#: Source/Core/DiscIO/Enums.cpp:95
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174
msgid "Dutch"
msgstr "Holandês"
-#: Source/Core/DolphinQt/MenuBar.cpp:215
+#: Source/Core/DolphinQt/MenuBar.cpp:207
msgid "E&xit"
msgstr "S&air"
@@ -4178,7 +4286,7 @@ msgstr ""
"provavelmente será necessário reiniciar o computador para que o Windows "
"utilize o novo driver."
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:185
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:186
msgid ""
"Each player sends their own inputs to the game, with equal buffer size for "
"all players, configured by the host.\n"
@@ -4196,7 +4304,7 @@ msgstr "Atualizações Prévias de Memória"
#. i18n: One of the elements in the Skylanders games. Japanese: 土. For official translations
#. in other languages, check the SuperChargers manual at https://support.activision.com/manuals
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:336
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:352
msgid "Earth"
msgstr "Terra"
@@ -4209,7 +4317,7 @@ msgstr "Ásia Oriental"
msgid "Edit Breakpoint"
msgstr "Editar Ponto de Interrupção"
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:426
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:430
msgid "Edit..."
msgstr "Editar..."
@@ -4243,7 +4351,7 @@ msgstr "Ejetar Disco"
#. i18n: Elements are a trait of Skylanders figures. For official translations of this term,
#. check the Skylanders SuperChargers manual at https://support.activision.com/manuals
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:289
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:300
msgid "Element"
msgstr "Elemento"
@@ -4251,11 +4359,11 @@ msgstr "Elemento"
msgid "Embedded Frame Buffer (EFB)"
msgstr "Frame Buffer Embutido (EFB)"
-#: Source/Core/Core/State.cpp:541
+#: Source/Core/Core/State.cpp:629
msgid "Empty"
msgstr "Vazio"
-#: Source/Core/Core/Core.cpp:246
+#: Source/Core/Core/Core.cpp:247
msgid "Emu Thread already running"
msgstr "Thread de Emulação já está em execução"
@@ -4263,15 +4371,15 @@ msgstr "Thread de Emulação já está em execução"
msgid "Emulate Disc Speed"
msgstr "Emular Velocidade do Disco"
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:60
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:61
msgid "Emulate Infinity Base"
msgstr "Emular Base Infinity"
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:146
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:157
msgid "Emulate Skylander Portal"
msgstr "Emular Portal Skylander"
-#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:110
+#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:111
msgid "Emulate the Wii's Bluetooth adapter"
msgstr "Emular o adaptador Bluetooth do Wii"
@@ -4283,11 +4391,11 @@ msgstr ""
"Emula a velocidade do disco do hardware original. Desativar essa opção pode "
"causar instabilidade. Valor padrão:Ativado"
-#: Source/Core/DolphinQt/MenuBar.cpp:230
+#: Source/Core/DolphinQt/MenuBar.cpp:222
msgid "Emulated USB Devices"
msgstr "Dispositivos USB Emulados"
-#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:141
+#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:142
msgid "Emulated Wii Remote"
msgstr "Wii Remote Emulado"
@@ -4310,12 +4418,12 @@ msgstr "Velocidade de Emulação"
msgid "Emulation must be started to record."
msgstr "A emulação deve ser iniciada pra gravar."
-#: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:29
-#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:33
+#: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:30
+#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:34
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:120
-#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:129
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:402
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:419
+#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:130
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:406
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:423
msgid "Enable"
msgstr "Ativar"
@@ -4323,6 +4431,10 @@ msgstr "Ativar"
msgid "Enable API Validation Layers"
msgstr "Ativar Camadas de Validação da API"
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:83
+msgid "Enable Achievement Badges"
+msgstr "Ativar Ícones de Conquistas"
+
#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:60
msgid "Enable Achievements"
msgstr "Ativar Conquistas"
@@ -4331,15 +4443,19 @@ msgstr "Ativar Conquistas"
msgid "Enable Audio Stretching"
msgstr "Ativar Alongamento de Áudio"
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:142
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:143
msgid "Enable Cheats"
msgstr "Ativar Cheats"
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:155
+#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:53
+msgid "Enable Controller Inpu&t"
+msgstr "Ativar Entrada do Control&e"
+
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:161
msgid "Enable Custom RTC"
msgstr "Ativar RTC Personalizado"
-#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:149
+#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:154
msgid "Enable Debugging UI"
msgstr "Ativar Interface de Depuração"
@@ -4347,19 +4463,19 @@ msgstr "Ativar Interface de Depuração"
msgid "Enable Dual Core"
msgstr "Ativar Dual Core"
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:139
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:140
msgid "Enable Dual Core (speedup)"
msgstr "Ativar Dual Core (aumento na velocidade)"
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:88
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:94
msgid "Enable Emulated CPU Clock Override"
msgstr "Ativar Ajuste de Clock da CPU Emulada"
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:118
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:124
msgid "Enable Emulated Memory Size Override"
msgstr "Ativar Ajuste de Memória do Console Emulado"
-#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:78
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:88
msgid "Enable Encore Achievements"
msgstr "Ativar Conquistas Encore"
@@ -4376,10 +4492,14 @@ msgid "Enable Leaderboards"
msgstr "Ativar Placar de Líderes"
#: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:88
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:66
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:68
msgid "Enable MMU"
msgstr "Ativar MMU"
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:78
+msgid "Enable Progress Notifications"
+msgstr "Ativar Notificações de Progresso"
+
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:156
msgid "Enable Progressive Scan"
msgstr "Ativar Varredura Progressiva"
@@ -4393,15 +4513,15 @@ msgid "Enable Rich Presence"
msgstr "Ativar Status de Atividade"
#: Source/Core/DolphinQt/Config/Mapping/GCPadWiiUConfigDialog.cpp:39
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:353
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:352
msgid "Enable Rumble"
msgstr "Ativar Vibração"
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:157
msgid "Enable Screen Saver"
msgstr "Ativar Proteção de Tela"
-#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:113
+#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:114
msgid "Enable Speaker Data"
msgstr "Ativar Dados do Auto-Falante"
@@ -4409,11 +4529,11 @@ msgstr "Ativar Dados do Auto-Falante"
msgid "Enable Unofficial Achievements"
msgstr "Ativar Conquistas Não Oficiais"
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:230
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:231
msgid "Enable Usage Statistics Reporting"
msgstr "Ativar Envio de Estatísticas de Uso"
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158
msgid "Enable WiiConnect24 via WiiLink"
msgstr "Ativar WiiConnect24 via WiiLink"
@@ -4421,10 +4541,20 @@ msgstr "Ativar WiiConnect24 via WiiLink"
msgid "Enable Wireframe"
msgstr "Ativar Wireframe"
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:77
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:82
msgid "Enable Write-Back Cache (slow)"
msgstr "Ativar Cache Write-Back (lento)"
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:85
+msgid ""
+"Enable achievement badges.
Displays icons for the player, game, and "
+"achievements. Simple visual option, but will require a small amount of extra "
+"memory and time to download the images."
+msgstr ""
+"Ativa ícones de conquista.
Mostra ícones para o jogador, jogo, e "
+"conquistas. Opção visual simples, mas que requer uma pequena quantidade "
+"extra de memória e tempo para baixar as imagens."
+
#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:64
msgid ""
"Enable competing in RetroAchievements leaderboards.
Displays a brief popup "
+"message whenever the player makes progress on an achievement that tracks an "
+"accumulated value, such as 60 out of 120 stars."
+msgstr ""
+"Ativa notificações de progresso das conquistas.
Mostra uma pequena "
+"mensagem popup quando o jogador progride em uma conquista que monitora um "
+"valor acumulado, por exemplo, 60 de 120 estrelas."
+
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:90
+msgid ""
"Enable unlocking achievements in Encore Mode.
Encore Mode re-enables "
"achievements the player has already unlocked on the site so that the player "
"will be notified if they meet the unlock conditions again, useful for custom "
@@ -4511,7 +4651,7 @@ msgstr ""
"Ativa o cálculo da Flag de Resultado com Ponto Flutuante, necessária em "
"alguns jogos. (ON = Compatível, OFF = Rápido)"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:514
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:596
msgid ""
"Enables detection of arbitrary mipmaps, which some games use for special "
"distance-based effects.
May have false positives that result in "
@@ -4530,15 +4670,17 @@ msgstr ""
"com a 'Decodificação de Texturas na GPU'.
Na "
"dúvida, mantenha essa opção ativada."
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:79
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:84
msgid ""
-"Enables emulation of the CPU write-back cache.\n"
-"Enabling will have a significant impact on performance.\n"
-"This should be left disabled unless absolutely needed."
+"Enables emulation of the CPU write-back cache. Enabling will have a "
+"significant impact on performance. This should be left disabled unless "
+"absolutely needed.
If unsure, leave this unchecked."
+""
msgstr ""
-"Ativa a emulação da cache de write-back da CPU.\n"
-"Ativar essa opção causará um impacto significativo no desempenho. \n"
-"Mantenha essa opção desativada a menos que seja absolutamente necessária."
+"Ativa a emulação da cache de write-back da CPU. Ativar essa opção causará "
+"um impacto significativo no desempenho. Só deve ser ativada quando for "
+"absolutamente necessária.
Na dúvida, mantenha essa "
+"opção desativada."
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:365
msgid ""
@@ -4564,7 +4706,7 @@ msgstr ""
"
Na dúvida, mantenha essa opção desativada."
"dolphin_emphasis>"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:522
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:604
msgid ""
"Enables scRGB HDR output (if supported by your graphics backend and "
"monitor). Fullscreen might be required.
This gives post process "
@@ -4600,7 +4742,6 @@ msgstr ""
"dolphin_emphasis>"
#: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:100
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:68
msgid ""
"Enables the Memory Management Unit, needed for some games. (ON = Compatible, "
"OFF = Fast)"
@@ -4608,7 +4749,17 @@ msgstr ""
"Ativa a Unidade de Gerenciamento de Memória, necessária para alguns jogos. "
"(ON = Compatível, OFF = Rápido)"
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:193
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:70
+msgid ""
+"Enables the Memory Management Unit, needed for some games. (ON = Compatible, "
+"OFF = Fast)
If unsure, leave this unchecked."
+"dolphin_emphasis>"
+msgstr ""
+"Ativa a Unidade de Gerenciamento de Memória, necessária para alguns jogos. "
+"(ON = Compatível, OFF = Rápido)
Na dúvida, mantenha "
+"essa opção desativada."
+
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190
msgid ""
"Enables the WiiLink service for WiiConnect24 channels.\n"
"WiiLink is an alternate provider for the discontinued WiiConnect24 Channels "
@@ -4646,7 +4797,7 @@ msgstr ""
msgid "Encoding"
msgstr "Codificação"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:615
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:616
msgid ""
"Encountered the following errors while opening save files:\n"
"%1\n"
@@ -4663,12 +4814,12 @@ msgid "Enet Didn't Initialize"
msgstr "Enet Não Inicializou"
#: Source/Core/DiscIO/Enums.cpp:80
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:85
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:169
msgid "English"
msgstr "Inglês"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:59
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:61
#: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:61
msgid "Enhancements"
msgstr "Melhorias"
@@ -4699,84 +4850,84 @@ msgstr "Inserir senha"
msgid "Enter the DNS server to use:"
msgstr "Informe o endereço do servidor DNS:"
-#: Source/Core/DolphinQt/MenuBar.cpp:1300
+#: Source/Core/DolphinQt/MenuBar.cpp:1286
msgid "Enter the RSO module address:"
msgstr "Insira o endereço do módulo do RSO:"
#: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:194
#: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:250
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:261
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:262
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386
#: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:265
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:343
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:349
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:346
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:352
#: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:46
-#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:521
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:256
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:295
-#: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:232
-#: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:259
-#: Source/Core/DolphinQt/ConvertDialog.cpp:424
-#: Source/Core/DolphinQt/ConvertDialog.cpp:471
-#: Source/Core/DolphinQt/ConvertDialog.cpp:525
+#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:539
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:255
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:296
+#: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:229
+#: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:256
+#: Source/Core/DolphinQt/ConvertDialog.cpp:426
+#: Source/Core/DolphinQt/ConvertDialog.cpp:473
+#: Source/Core/DolphinQt/ConvertDialog.cpp:528
#: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:255
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:638
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:644
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:653
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:665
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:684
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:690
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:705
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:713
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:737
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:744
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:637
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:643
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:652
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:664
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:683
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:689
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:704
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:712
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:736
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:743
#: Source/Core/DolphinQt/Debugger/RegisterColumn.cpp:86
#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:282
#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:431
-#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:241
-#: Source/Core/DolphinQt/GBAWidget.cpp:576
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:346
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:376
-#: Source/Core/DolphinQt/Main.cpp:209 Source/Core/DolphinQt/Main.cpp:225
-#: Source/Core/DolphinQt/Main.cpp:232 Source/Core/DolphinQt/MainWindow.cpp:295
-#: Source/Core/DolphinQt/MainWindow.cpp:303
-#: Source/Core/DolphinQt/MainWindow.cpp:1108
-#: Source/Core/DolphinQt/MainWindow.cpp:1494
-#: Source/Core/DolphinQt/MainWindow.cpp:1501
-#: Source/Core/DolphinQt/MainWindow.cpp:1561
-#: Source/Core/DolphinQt/MainWindow.cpp:1568
-#: Source/Core/DolphinQt/MainWindow.cpp:1670
-#: Source/Core/DolphinQt/MenuBar.cpp:1204
-#: Source/Core/DolphinQt/MenuBar.cpp:1284
+#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:237
+#: Source/Core/DolphinQt/GBAWidget.cpp:578
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:347
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:377
+#: Source/Core/DolphinQt/Main.cpp:211 Source/Core/DolphinQt/Main.cpp:227
+#: Source/Core/DolphinQt/Main.cpp:234 Source/Core/DolphinQt/MainWindow.cpp:297
+#: Source/Core/DolphinQt/MainWindow.cpp:305
+#: Source/Core/DolphinQt/MainWindow.cpp:1110
+#: Source/Core/DolphinQt/MainWindow.cpp:1507
+#: Source/Core/DolphinQt/MainWindow.cpp:1514
+#: Source/Core/DolphinQt/MainWindow.cpp:1574
+#: Source/Core/DolphinQt/MainWindow.cpp:1581
+#: Source/Core/DolphinQt/MainWindow.cpp:1690
+#: Source/Core/DolphinQt/MenuBar.cpp:1190
+#: Source/Core/DolphinQt/MenuBar.cpp:1270
+#: Source/Core/DolphinQt/MenuBar.cpp:1293
#: Source/Core/DolphinQt/MenuBar.cpp:1307
-#: Source/Core/DolphinQt/MenuBar.cpp:1321
-#: Source/Core/DolphinQt/MenuBar.cpp:1352
-#: Source/Core/DolphinQt/MenuBar.cpp:1376
-#: Source/Core/DolphinQt/MenuBar.cpp:1597
-#: Source/Core/DolphinQt/MenuBar.cpp:1608
-#: Source/Core/DolphinQt/MenuBar.cpp:1620
-#: Source/Core/DolphinQt/MenuBar.cpp:1642
-#: Source/Core/DolphinQt/MenuBar.cpp:1668
-#: Source/Core/DolphinQt/MenuBar.cpp:1722
-#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:315
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:477
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:738
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:980
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1098
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1108
-#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:334
-#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:340
-#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:347
+#: Source/Core/DolphinQt/MenuBar.cpp:1339
+#: Source/Core/DolphinQt/MenuBar.cpp:1363
+#: Source/Core/DolphinQt/MenuBar.cpp:1584
+#: Source/Core/DolphinQt/MenuBar.cpp:1595
+#: Source/Core/DolphinQt/MenuBar.cpp:1607
+#: Source/Core/DolphinQt/MenuBar.cpp:1629
+#: Source/Core/DolphinQt/MenuBar.cpp:1655
+#: Source/Core/DolphinQt/MenuBar.cpp:1709
+#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:316
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:479
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:740
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:982
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1100
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1110
+#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:332
+#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:338
+#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:345
#: Source/Core/DolphinQt/RenderWidget.cpp:123
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:203
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:224
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:423
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:439
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:460
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:481
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:525
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:562
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:585
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:204
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:225
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:433
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:449
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:470
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:491
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:535
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:572
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:595
#: Source/Core/DolphinQt/Translation.cpp:322
msgid "Error"
msgstr "Erro"
@@ -4785,13 +4936,13 @@ msgstr "Erro"
msgid "Error Opening Adapter: %1"
msgstr "Erro ao Abrir o Adaptador: %1"
-#: Source/Core/Core/NetPlayServer.cpp:1493
+#: Source/Core/Core/NetPlayServer.cpp:1497
msgid "Error collecting save data!"
msgstr "Erro ao coletar os dados do save!"
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:260
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:526
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:533
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:262
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:613
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:620
msgid "Error converting value"
msgstr "Erro ao converter valor"
@@ -4803,15 +4954,15 @@ msgstr "Erro ao carregar o idioma selecionado. Voltando ao padrão do sistema."
msgid "Error obtaining session list: %1"
msgstr "Erro ao obter a lista da sessão: %1"
-#: Source/Core/DolphinQt/MainWindow.cpp:296
+#: Source/Core/DolphinQt/MainWindow.cpp:298
msgid "Error occurred while loading some texture packs"
msgstr "Um erro ocorreu enquanto carregava alguns pacotes de texturas"
-#: Source/Core/Core/NetPlayClient.cpp:1847
+#: Source/Core/Core/NetPlayClient.cpp:1851
msgid "Error processing codes."
msgstr "Erro ao processar os códigos."
-#: Source/Core/Core/NetPlayClient.cpp:1819
+#: Source/Core/Core/NetPlayClient.cpp:1823
msgid "Error processing data."
msgstr "Erro ao processar os dados."
@@ -4819,11 +4970,11 @@ msgstr "Erro ao processar os dados."
msgid "Error reading file: {0}"
msgstr "Erro ao ler o arquivo: {0}"
-#: Source/Core/Core/NetPlayServer.cpp:1529
+#: Source/Core/Core/NetPlayServer.cpp:1533
msgid "Error synchronizing cheat codes!"
msgstr "Erro ao sincronizar os códigos de trapaça!"
-#: Source/Core/Core/NetPlayServer.cpp:1515
+#: Source/Core/Core/NetPlayServer.cpp:1519
msgid "Error synchronizing save data!"
msgstr "Erro ao sincronizar os dados do save!"
@@ -4900,7 +5051,7 @@ msgstr "Erros foram encontrados em {0} blocos não utilizados da partição {1}.
msgid "Euphoria"
msgstr "Euforia"
-#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:282
+#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:274
#: Source/Core/UICommon/NetPlayIndex.cpp:249
msgid "Europe"
msgstr "Europa"
@@ -4946,11 +5097,11 @@ msgstr ""
msgid "Excluded: %1"
msgstr "Excluído: %1"
-#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:73
+#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:72
msgid "Excluded: 0"
msgstr "Excluído: 0"
-#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:107
+#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108
msgid "Exclusive Ubershaders"
msgstr "Ubershaders Exclusivos"
@@ -4998,14 +5149,14 @@ msgstr "Nome esperado da variável."
msgid "Experimental"
msgstr "Experimental"
-#: Source/Core/DolphinQt/MenuBar.cpp:294
+#: Source/Core/DolphinQt/MenuBar.cpp:286
msgid "Export All Wii Saves"
msgstr "Exportar Todos os Dados Salvos do Wii"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:422
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:447
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:492
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:499
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:423
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:448
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:493
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:500
msgid "Export Failed"
msgstr "Falha ao Exportar"
@@ -5013,42 +5164,42 @@ msgstr "Falha ao Exportar"
msgid "Export Recording"
msgstr "Exportar Gravação"
-#: Source/Core/DolphinQt/MenuBar.cpp:753
+#: Source/Core/DolphinQt/MenuBar.cpp:745
msgid "Export Recording..."
msgstr "Exportar Gravação..."
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:437
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:438
msgid "Export Save File"
msgstr "Exportar Arquivo de Jogo Salvo"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:454
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:455
msgid "Export Save Files"
msgstr "Exportar Arquivos de Jogos Salvos"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:470
+#: Source/Core/DolphinQt/GameList/GameList.cpp:473
msgid "Export Wii Save"
msgstr "Exportar Dados Salvos"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:388
+#: Source/Core/DolphinQt/GameList/GameList.cpp:389
msgid "Export Wii Saves"
msgstr "Exportar Dados Salvos"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:117
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:118
msgid "Export as .&gcs..."
msgstr "Exportar como .&gcs..."
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:118
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:119
msgid "Export as .&sav..."
msgstr "Exportar como .&sav..."
-#: Source/Core/DolphinQt/MenuBar.cpp:1133
+#: Source/Core/DolphinQt/MenuBar.cpp:1115
#, c-format
msgctxt ""
msgid "Exported %n save(s)"
msgstr "%n dado(s) salvo(s) exportado(s)"
#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:268
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:432
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:434
#: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:47
msgid "Extension"
msgstr "Acessório"
@@ -5061,7 +5212,7 @@ msgstr "Dados de Movimento do Acessório"
msgid "Extension Motion Simulation"
msgstr "Simulação de Movimentos do Acessório"
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:520
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:522
msgid "External"
msgstr "IP Externo"
@@ -5069,35 +5220,35 @@ msgstr "IP Externo"
msgid "External Frame Buffer (XFB)"
msgstr "Frame Buffer Externo (XFB)"
-#: Source/Core/DolphinQt/MenuBar.cpp:271
+#: Source/Core/DolphinQt/MenuBar.cpp:263
msgid "Extract Certificates from NAND"
msgstr "Extrair Certificados da NAND"
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:268
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:269
msgid "Extract Entire Disc..."
msgstr "Extrair Disco Inteiro..."
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:292
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:293
msgid "Extract Entire Partition..."
msgstr "Extrair Partição Inteira..."
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:299
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:300
msgid "Extract File..."
msgstr "Extrair Arquivo..."
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:241
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:242
msgid "Extract Files..."
msgstr "Extrair Arquivos..."
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:251
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:252
msgid "Extract System Data..."
msgstr "Extrair Dados do Sistema..."
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:355
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:356
msgid "Extracting All Files..."
msgstr "Extraindo Todos os Arquivos..."
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:356
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357
msgid "Extracting Directory..."
msgstr "Extraindo Diretório..."
@@ -5107,7 +5258,7 @@ msgid "FD"
msgstr "FD"
#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:37
-#: Source/Core/DolphinQt/MenuBar.cpp:228
+#: Source/Core/DolphinQt/MenuBar.cpp:220
msgid "FIFO Player"
msgstr "FIFO Player"
@@ -5115,7 +5266,7 @@ msgstr "FIFO Player"
msgid "Failed loading XML."
msgstr "Falha ao carregar o XML."
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:347
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:348
msgid ""
"Failed opening memory card:\n"
"%1"
@@ -5123,11 +5274,11 @@ msgstr ""
"Falha ao abrir o Memory Card:\n"
"%1"
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:454
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:456
msgid "Failed to add this session to the NetPlay index: %1"
msgstr "Falha ao adicionar essa sessão ao indexador do NetPlay: %1"
-#: Source/Core/DolphinQt/MenuBar.cpp:1669
+#: Source/Core/DolphinQt/MenuBar.cpp:1656
msgid "Failed to append to signature file '%1'"
msgstr "Falha ao anexar ao arquivo de assinatura '%1'"
@@ -5136,11 +5287,11 @@ msgid "Failed to claim interface for BT passthrough: {0}"
msgstr ""
"Falha ao solicitar acesso à interface para o redirecionamento Bluetooth: {0}"
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:574
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:676
msgid "Failed to clear Skylander!"
msgstr "Falha ao remover Skylander!"
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:575
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:677
msgid "Failed to clear the Skylander from slot(%1)!"
msgstr "Falha ao remover o Skylander do slot(%1)!"
@@ -5148,7 +5299,7 @@ msgstr "Falha ao remover o Skylander do slot(%1)!"
msgid "Failed to connect to Redump.org"
msgstr "Falha na conexão com Redump.org"
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:981
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:983
msgid "Failed to connect to server: %1"
msgstr "Falha na conexão com o servidor: %1"
@@ -5169,15 +5320,15 @@ msgstr "Falha ao criar recursos globais do Direct3D 12"
msgid "Failed to create DXGI factory"
msgstr "Falha ao criar fábrica DXGI"
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:289
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:291
msgid "Failed to create Infinity file"
msgstr "Falha ao criar arquivo do Infinity!"
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:678
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:798
msgid "Failed to create Skylander file!"
msgstr "Falha ao criar arquivo do Skylander!"
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:679
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:799
msgid ""
"Failed to create Skylander file:\n"
"%1\n"
@@ -5200,7 +5351,7 @@ msgstr ""
"Falha ao excluir Memory Card do NetPlay. Verifique suas permissões de "
"gravação."
-#: Source/Core/DolphinQt/GameList/GameList.cpp:841
+#: Source/Core/DolphinQt/GameList/GameList.cpp:854
msgid "Failed to delete the selected file."
msgstr "Falha ao excluir o arquivo selecionado."
@@ -5210,36 +5361,36 @@ msgstr ""
"Falha ao descarregar o driver do kernel para o redirecionamento Bluetooth: "
"{0}"
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:343
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:346
msgid "Failed to download codes."
msgstr "Falha ao baixar os códigos."
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:738
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:737
msgid "Failed to dump %1: Can't open file"
msgstr "Falha no despejo de %1: Não foi possível abrir o arquivo"
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:745
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:744
msgid "Failed to dump %1: Failed to write to file"
msgstr "Falha no despejo de %1: Falha ao escrever no arquivo"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:488
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:489
msgctxt ""
msgid "Failed to export %n out of %1 save file(s)."
msgstr "Falha ao exportar %n de %1 arquivo(s) de jogo(s) salvo(s)."
-#: Source/Core/DolphinQt/GameList/GameList.cpp:576
+#: Source/Core/DolphinQt/GameList/GameList.cpp:584
msgid "Failed to export the following save files:"
msgstr "Falha ao exportar os seguintes dados salvos:"
-#: Source/Core/DolphinQt/MenuBar.cpp:1204
+#: Source/Core/DolphinQt/MenuBar.cpp:1190
msgid "Failed to extract certificates from NAND"
msgstr "Falha ao extrair os certificados da NAND"
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386
msgid "Failed to extract file."
msgstr "Falha ao extrair arquivo."
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:261
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:262
msgid "Failed to extract system data."
msgstr "Falha ao extrair dados do sistema."
@@ -5257,18 +5408,18 @@ msgstr ""
msgid "Failed to find one or more D3D symbols"
msgstr "Falha ao localizar um ou mais símbolos do Direct3D"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:565
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:566
msgid "Failed to import \"%1\"."
msgstr "Falha ao importar \"%1\"."
-#: Source/Core/DolphinQt/MenuBar.cpp:1109
+#: Source/Core/DolphinQt/MenuBar.cpp:1091
msgid ""
"Failed to import save file. Please launch the game once, then try again."
msgstr ""
"Falha ao importar o arquivo de dados salvos. Por favor, inicie o jogo "
"correspondente pelo menos uma vez, depois tente novamente."
-#: Source/Core/DolphinQt/MenuBar.cpp:1103
+#: Source/Core/DolphinQt/MenuBar.cpp:1085
msgid ""
"Failed to import save file. The given file appears to be corrupted or is not "
"a valid Wii save."
@@ -5276,7 +5427,7 @@ msgstr ""
"Falha ao importar o arquivo de dados salvos. O arquivo fornecido pode estar "
"corrompido ou não contém dados salvos válidos do Wii."
-#: Source/Core/DolphinQt/MenuBar.cpp:1116
+#: Source/Core/DolphinQt/MenuBar.cpp:1098
msgid ""
"Failed to import save file. Your NAND may be corrupt, or something is "
"preventing access to files within it. Try repairing your NAND (Tools -> "
@@ -5287,7 +5438,7 @@ msgstr ""
"NAND (Ferramentas -> Gerenciar NAND -> Verificar NAND...) , então importe os "
"dados salvos novamente."
-#: Source/Core/DolphinQt/MainWindow.cpp:1108
+#: Source/Core/DolphinQt/MainWindow.cpp:1110
msgid "Failed to init core"
msgstr "Falha ao inicializar o núcleo"
@@ -5305,16 +5456,16 @@ msgstr ""
msgid "Failed to initialize renderer classes"
msgstr "Falha ao inicializar as classes do renderizador"
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:204
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:205
msgid "Failed to install pack: %1"
msgstr "Falha ao instalar pacote: %1"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:619
-#: Source/Core/DolphinQt/MenuBar.cpp:1074
+#: Source/Core/DolphinQt/GameList/GameList.cpp:628
+#: Source/Core/DolphinQt/MenuBar.cpp:1056
msgid "Failed to install this title to the NAND."
msgstr "Falha ao instalar esse software na NAND."
-#: Source/Core/DolphinQt/MainWindow.cpp:1594
+#: Source/Core/DolphinQt/MainWindow.cpp:1607
msgid ""
"Failed to listen on port %1. Is another instance of the NetPlay server "
"running?"
@@ -5322,8 +5473,8 @@ msgstr ""
"Falha ao acessar a porta %1. Existe outra instância do servidor NetPlay em "
"execução?"
-#: Source/Core/DolphinQt/MenuBar.cpp:1321
-#: Source/Core/DolphinQt/MenuBar.cpp:1376
+#: Source/Core/DolphinQt/MenuBar.cpp:1307
+#: Source/Core/DolphinQt/MenuBar.cpp:1363
msgid "Failed to load RSO module at %1"
msgstr "Falha ao carregar o módulo RSO em %1"
@@ -5335,15 +5486,15 @@ msgstr "Falha ao carregar d3d11.dll"
msgid "Failed to load dxgi.dll"
msgstr "Falha ao carregar dxgi.dll"
-#: Source/Core/DolphinQt/MenuBar.cpp:1608
+#: Source/Core/DolphinQt/MenuBar.cpp:1595
msgid "Failed to load map file '%1'"
msgstr "Falha ao carregar o arquivo de mapa '%1'"
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:720
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:842
msgid "Failed to load the Skylander file!"
msgstr "Falha ao carregar arquivo do Skylander!"
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:721
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:843
msgid "Failed to load the Skylander file(%1)!\n"
msgstr "Falha ao carregar arquivo do Skylander (%1)!\n"
@@ -5359,8 +5510,12 @@ msgstr ""
"Falha ao carregar {0}. Se você estiver usando o Windows 7, tente instalar o "
"pacote de atualização KB4019990."
-#: Source/Core/DolphinQt/GBAWidget.cpp:576
-#: Source/Core/DolphinQt/MainWindow.cpp:1670
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:663
+msgid "Failed to modify Skylander!"
+msgstr "Falha ao modificar o Skylander!"
+
+#: Source/Core/DolphinQt/GBAWidget.cpp:578
+#: Source/Core/DolphinQt/MainWindow.cpp:1690
#: Source/Core/DolphinQt/RenderWidget.cpp:123
msgid "Failed to open '%1'"
msgstr "Falha ao abrir '%1'"
@@ -5390,19 +5545,19 @@ msgstr ""
"Falha ao abrir arquivo em um editor externo.\n"
"Verifique se há um aplicativo registrado para abrir arquivos INI."
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:861
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:863
msgid "Failed to open file."
msgstr "Falha ao abrir o arquivo."
-#: Source/Core/DolphinQt/MainWindow.cpp:1593
+#: Source/Core/DolphinQt/MainWindow.cpp:1606
msgid "Failed to open server"
msgstr "Falha ao abrir o servidor"
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:164
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:166
msgid "Failed to open the Infinity file!"
msgstr "Falha ao abrir arquivo do Infinity!"
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:165
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:167
msgid ""
"Failed to open the Infinity file(%1)!\n"
"File may already be in use on the base."
@@ -5410,11 +5565,11 @@ msgstr ""
"Falha ao carregar arquivo do Infinity (%1)!\n"
"O arquivo pode já estar sendo utilizado na base."
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:696
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:818
msgid "Failed to open the Skylander file!"
msgstr "Falha ao abrir arquivo do Skylander!"
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:697
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:819
msgid ""
"Failed to open the Skylander file(%1)!\n"
"File may already be in use on the portal."
@@ -5422,12 +5577,12 @@ msgstr ""
"Falha ao carregar arquivo do Skylander (%1)!\n"
"O arquivo pode já estar sendo utilizado no portal."
-#: Source/Core/DolphinQt/ConvertDialog.cpp:472
+#: Source/Core/DolphinQt/ConvertDialog.cpp:474
msgid "Failed to open the input file \"%1\"."
msgstr "Falha ao abrir o arquivo de entrada \"%1\"."
-#: Source/Core/DiscIO/CompressedBlob.cpp:282 Source/Core/DiscIO/FileBlob.cpp:53
-#: Source/Core/DiscIO/WIABlob.cpp:2037
+#: Source/Core/DiscIO/CompressedBlob.cpp:287 Source/Core/DiscIO/FileBlob.cpp:58
+#: Source/Core/DiscIO/WIABlob.cpp:2043
msgid ""
"Failed to open the output file \"{0}\".\n"
"Check that you have permissions to write the target folder and that the "
@@ -5450,27 +5605,27 @@ msgstr "Falha ao converter o valor fornecido no tipo de dados de destino."
msgid "Failed to read DFF file."
msgstr "Falha na leitura do arquivo DFF."
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:863
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:865
msgid "Failed to read from file."
msgstr "Falha ao ler do arquivo."
-#: Source/Core/DiscIO/CompressedBlob.cpp:373 Source/Core/DiscIO/FileBlob.cpp:93
-#: Source/Core/DiscIO/WIABlob.cpp:2052
+#: Source/Core/DiscIO/CompressedBlob.cpp:378 Source/Core/DiscIO/FileBlob.cpp:98
+#: Source/Core/DiscIO/WIABlob.cpp:2058
msgid "Failed to read from the input file \"{0}\"."
msgstr "Falha na leitura do arquivo de entrada \"{0}\"."
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:423
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:641
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:424
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:642
msgid "Failed to read selected savefile(s) from memory card."
msgstr ""
"Falha ao ler o(s) arquivo(s) de jogo(s) salvo(s) selecionado(s) do Memory "
"Card."
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:173
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:175
msgid "Failed to read the Infinity file!"
msgstr "Falha ao ler arquivo do Infinity!"
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:174
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:176
msgid ""
"Failed to read the Infinity file(%1)!\n"
"File was too small."
@@ -5478,11 +5633,11 @@ msgstr ""
"Falha ao ler arquivo do Infinity (%1)!\n"
"O arquivo é muito pequeno."
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:706
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:828
msgid "Failed to read the Skylander file!"
msgstr "Falha ao ler arquivo do Skylander!"
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:707
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:829
msgid ""
"Failed to read the Skylander file(%1)!\n"
"File was too small."
@@ -5494,11 +5649,11 @@ msgstr ""
msgid "Failed to read {0}"
msgstr "Falha ao ler {0}"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:668
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:669
msgid "Failed to remove file."
msgstr "Falha ao excluir arquivo."
-#: Source/Core/DolphinQt/ConvertDialog.cpp:453
+#: Source/Core/DolphinQt/ConvertDialog.cpp:455
msgid ""
"Failed to remove junk data from file \"%1\".\n"
"\n"
@@ -5508,7 +5663,7 @@ msgstr ""
"\n"
"Deseja convertê-lo sem remover os dados não utilizados?"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:647
+#: Source/Core/DolphinQt/GameList/GameList.cpp:658
msgid "Failed to remove this title from the NAND."
msgstr "Falha ao remover esse software da NAND."
@@ -5530,27 +5685,38 @@ msgstr ""
"Falha ao redefinir a pasta de redirecionamento do NetPlay. Verifique as "
"permissões de gravação."
-#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:241
+#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:237
msgid "Failed to save FIFO log."
msgstr "Falha ao salvar o log FIFO."
-#: Source/Core/DolphinQt/MenuBar.cpp:1598
+#: Source/Core/DolphinQt/MenuBar.cpp:1585
msgid "Failed to save code map to path '%1'"
msgstr "Falha ao salvar o mapa de códigos no local '%1'"
-#: Source/Core/DolphinQt/MenuBar.cpp:1642
+#: Source/Core/DolphinQt/MenuBar.cpp:1629
msgid "Failed to save signature file '%1'"
msgstr "Falha ao salvar o arquivo de assinatura '%1'"
-#: Source/Core/DolphinQt/MenuBar.cpp:1621
+#: Source/Core/DolphinQt/MenuBar.cpp:1608
msgid "Failed to save symbol map to path '%1'"
msgstr "Falha ao salvar o mapa de símbolos no local '%1'"
-#: Source/Core/DolphinQt/MenuBar.cpp:1723
+#: Source/Core/DolphinQt/MenuBar.cpp:1710
msgid "Failed to save to signature file '%1'"
msgstr "Falha ao salvar no arquivo de assinatura '%1'"
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:225
+#: Source/Core/Core/Core.cpp:548
+msgid ""
+"Failed to sync SD card with folder. All changes made this session will be "
+"discarded on next boot if you do not manually re-issue a resync in Config > "
+"Wii > SD Card Settings > Convert File to Folder Now!"
+msgstr ""
+"Falhou em sincronizar o cartão SD com a pasta. Todas as mudanças feitas "
+"nesta sessão serão descartadas na próxima inicialização se você não re-"
+"emitir manualmente uma ressincronização em Config > Wii > Configurações do "
+"Cartão SD > Converter o Arquivo em Pasta Agora!"
+
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:226
msgid "Failed to uninstall pack: %1"
msgstr "Falha ao desinstalar pacote: %1"
@@ -5570,9 +5736,9 @@ msgstr "Falha ao salvar dados salvos do Wii."
msgid "Failed to write config file!"
msgstr "Falha ao salvar o arquivo de configuração!"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:573
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:676
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:691
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:574
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:677
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:692
msgid "Failed to write modified memory card to disk."
msgstr "Falha ao salvar o Memory Card modificado no disco."
@@ -5580,12 +5746,12 @@ msgstr "Falha ao salvar o Memory Card modificado no disco."
msgid "Failed to write redirected save."
msgstr "Falha ao gravar os dados salvos redirecionados."
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:447
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:448
msgid "Failed to write savefile to disk."
msgstr "Falha ao salvar arquivo de jogo salvo no disco."
-#: Source/Core/DiscIO/CompressedBlob.cpp:377 Source/Core/DiscIO/FileBlob.cpp:99
-#: Source/Core/DiscIO/WIABlob.cpp:2056
+#: Source/Core/DiscIO/CompressedBlob.cpp:382
+#: Source/Core/DiscIO/FileBlob.cpp:104 Source/Core/DiscIO/WIABlob.cpp:2062
msgid ""
"Failed to write the output file \"{0}\".\n"
"Check that you have enough space available on the target drive."
@@ -5593,22 +5759,22 @@ msgstr ""
"Falha ao salvar o arquivo de saída \"{0}\".\n"
"Verifique se você tem espaço livre suficiente na unidade de destino."
-#: Source/Core/DolphinQt/GameList/GameList.cpp:617
-#: Source/Core/DolphinQt/GameList/GameList.cpp:645
-#: Source/Core/DolphinQt/GameList/GameList.cpp:840
-#: Source/Core/DolphinQt/MenuBar.cpp:1074
+#: Source/Core/DolphinQt/GameList/GameList.cpp:626
+#: Source/Core/DolphinQt/GameList/GameList.cpp:656
+#: Source/Core/DolphinQt/GameList/GameList.cpp:853
+#: Source/Core/DolphinQt/MenuBar.cpp:1056
msgid "Failure"
msgstr "Falha"
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:183
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:184
msgid "Fair Input Delay"
msgstr "Host Imparcial"
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:199
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:200
msgid "Fallback Region"
msgstr "Configurações de Região"
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:210
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:211
msgid "Fallback Region:"
msgstr "Região Padrão:"
@@ -5634,17 +5800,21 @@ msgstr ""
msgid "Field of View"
msgstr "Campo de Visualização"
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:233
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:235
msgid "Figure Number:"
msgstr "Número da Figura:"
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:380
+msgid "Figure type"
+msgstr "Tipo de Figura"
+
#: Source/Core/DolphinQt/Config/InfoWidget.cpp:46
msgid "File Details"
msgstr "Detalhes do Arquivo"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:991
+#: Source/Core/DolphinQt/GameList/GameList.cpp:1005
#: Source/Core/DolphinQt/GameList/GameListModel.cpp:229
-#: Source/Core/DolphinQt/MenuBar.cpp:652
+#: Source/Core/DolphinQt/MenuBar.cpp:644
msgid "File Format"
msgstr "Formato"
@@ -5656,20 +5826,20 @@ msgstr "Formato do Arquivo:"
msgid "File Info"
msgstr "Informações do Arquivo"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:986
+#: Source/Core/DolphinQt/GameList/GameList.cpp:1000
#: Source/Core/DolphinQt/GameList/GameListModel.cpp:223
-#: Source/Core/DolphinQt/MenuBar.cpp:647
+#: Source/Core/DolphinQt/MenuBar.cpp:639
msgid "File Name"
msgstr "Nome do Arquivo"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:987
+#: Source/Core/DolphinQt/GameList/GameList.cpp:1001
#: Source/Core/DolphinQt/GameList/GameListModel.cpp:225
-#: Source/Core/DolphinQt/MenuBar.cpp:648
+#: Source/Core/DolphinQt/MenuBar.cpp:640
msgid "File Path"
msgstr "Local"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:990
-#: Source/Core/DolphinQt/MenuBar.cpp:651
+#: Source/Core/DolphinQt/GameList/GameList.cpp:1004
+#: Source/Core/DolphinQt/MenuBar.cpp:643
msgid "File Size"
msgstr "Tamanho"
@@ -5677,15 +5847,15 @@ msgstr "Tamanho"
msgid "File Size:"
msgstr "Tamanho do Arquivo:"
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:349
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:352
msgid "File contained no codes."
msgstr "O arquivo não continha códigos."
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:149
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:150
msgid "Filename"
msgstr "Nome do arquivo"
-#: Source/Core/DiscIO/CompressedBlob.cpp:289
+#: Source/Core/DiscIO/CompressedBlob.cpp:294
msgid "Files opened, ready to compress."
msgstr "Arquivos abertos, pronto para comprimir."
@@ -5697,13 +5867,13 @@ msgstr ""
"Os arquivos especificados no arquivo M3U \"{0}\" não foram encontrados:\n"
"{1}"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:833
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:835
msgid "Filesize does not match any known GameCube Memory Card size."
msgstr ""
"O tamanho do arquivo não combina com qualquer tamanho conhecido do Memory "
"Card do GameCube."
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:836
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:838
msgid "Filesize in header mismatches actual card size."
msgstr ""
"O tamanho de arquivo no cabeçalho não corresponde com o tamanho real do "
@@ -5713,7 +5883,7 @@ msgstr ""
msgid "Filesystem"
msgstr "Sistema de Arquivos"
-#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:102
+#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:103
msgid "Filters"
msgstr "Filtros"
@@ -5729,7 +5899,7 @@ msgstr "Achar o &Anterior"
msgid "Finish Calibration"
msgstr "Concluir Calibração"
-#: Source/Core/DolphinQt/WiiUpdate.cpp:109
+#: Source/Core/DolphinQt/WiiUpdate.cpp:110
msgid ""
"Finishing the update...\n"
"This can take a while."
@@ -5739,19 +5909,19 @@ msgstr ""
#. i18n: One of the elements in the Skylanders games. Japanese: 火. For official translations
#. in other languages, check the SuperChargers manual at https://support.activision.com/manuals
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:333
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:349
msgid "Fire"
msgstr "Fogo"
-#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:40
+#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:41
msgid "First Person"
msgstr "Primeira Pessoa"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:127
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:128
msgid "Fix Checksums"
msgstr "Corrigir checksums"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:690
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:691
msgid "Fix Checksums Failed"
msgstr "Falha ao Corrigir Checksums"
@@ -5761,7 +5931,7 @@ msgstr "Alinhamento Fixo"
#. i18n: These are the kinds of flags that a CPU uses (e.g. carry),
#. not the kinds of flags that represent e.g. countries
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:166
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167
#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:87
msgid "Flags"
msgstr "Bandeiras"
@@ -5770,12 +5940,12 @@ msgstr "Bandeiras"
#. i18n: Floating-point (non-integer) number
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:138
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:198
-#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:152
+#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:153
#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97
msgid "Float"
msgstr "Flutuação"
-#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:565
+#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:566
msgid "Follow &branch"
msgstr "Seguir &vertente"
@@ -5801,35 +5971,35 @@ msgstr ""
"Para instruções de configuração, consulte essa página."
-#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:57
+#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:58
msgid "Force 16:9"
msgstr "Forçar 16:9"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:117
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:152
msgid "Force 24-Bit Color"
msgstr "Forçar Cores de 24 Bits"
-#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:57
+#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:58
msgid "Force 4:3"
msgstr "Forçar 4:3"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:96
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:115
msgid "Force Linear"
msgstr "Forçar Linear"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:103
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:122
msgid "Force Linear and 16x Anisotropic"
msgstr "Forçar Linear e 16x Anisotrópico"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:97
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:116
msgid "Force Linear and 2x Anisotropic"
msgstr "Forçar Linear e 2x Anisotrópico"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:99
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:118
msgid "Force Linear and 4x Anisotropic"
msgstr "Forçar Linear e 4x Anisotrópico"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:101
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:120
msgid "Force Linear and 8x Anisotropic"
msgstr "Forçar Linear e 8x Anisotrópico"
@@ -5837,7 +6007,7 @@ msgstr "Forçar Linear e 8x Anisotrópico"
msgid "Force Listen Port:"
msgstr "Forçar Porta de Escuta:"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:95
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:114
msgid "Force Nearest"
msgstr "Forçar Pelo Mais Próximo"
@@ -5853,7 +6023,7 @@ msgstr ""
"Opção ativada pois o backend %1 não suporta shaders de "
"geometria."
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:474
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:556
msgid ""
"Forces the game to output graphics for any aspect ratio. Use with \"Aspect "
"Ratio\" set to \"Force 16:9\" to force 4:3-only games to run at 16:9."
@@ -5871,7 +6041,7 @@ msgstr ""
"Gecko.
Na dúvida, mantenha essa opção desativada."
"dolphin_emphasis>"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:503
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:585
msgid ""
"Forces the game to render the RGB color channels in 24-bit, thereby "
"increasing quality by reducing color banding.
Has no impact on "
@@ -5884,7 +6054,7 @@ msgstr ""
"
Na dúvida, mantenha essa opção ativada."
"dolphin_emphasis>"
-#: Source/Core/DolphinQt/ConvertDialog.cpp:59
+#: Source/Core/DolphinQt/ConvertDialog.cpp:60
msgid "Format:"
msgstr "Formato:"
@@ -5950,19 +6120,19 @@ msgstr "Quadros a Gravar:"
msgid "France"
msgstr "França"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:311
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:312
msgid "Free Blocks: %1"
msgstr "Blocos Livres: %1"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:312
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:313
msgid "Free Files: %1"
msgstr "Arquivos Livres: %1"
-#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:42
+#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:43
msgid "Free Look Control Type"
msgstr "Tipo de Controle do Olhar Livre"
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:468
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:470
msgid "Free Look Controller %1"
msgstr "Controle de Olhar Livre %1"
@@ -5970,7 +6140,7 @@ msgstr "Controle de Olhar Livre %1"
msgid "Free Look Settings"
msgstr "Configurações do Olhar Livre"
-#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:54
+#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:55
msgid ""
"Free Look allows for manipulation of the in-game camera. Different camera "
"types are available from the dropdown.
Disabling the "
@@ -3430,7 +3517,7 @@ msgid ""
"checked."
msgstr ""
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:96
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:97
msgid "Disc"
msgstr "Disc"
@@ -3464,25 +3551,25 @@ msgstr ""
msgid "Distance of travel from neutral position."
msgstr ""
-#: Source/Core/DolphinQt/Main.cpp:259
+#: Source/Core/DolphinQt/Main.cpp:264
msgid "Do you authorize Dolphin to report information to Dolphin's developers?"
msgstr ""
-#: Source/Core/DolphinQt/MainWindow.cpp:1692
+#: Source/Core/DolphinQt/MainWindow.cpp:1712
msgid "Do you want to add \"%1\" to the list of Game Paths?"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1241
+#: Source/Core/DolphinQt/MenuBar.cpp:1227
msgid "Do you want to clear the list of symbol names?"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:658
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:659
#, c-format
msgctxt ""
msgid "Do you want to delete the %n selected save file(s)?"
msgstr ""
-#: Source/Core/DolphinQt/MainWindow.cpp:933
+#: Source/Core/DolphinQt/MainWindow.cpp:935
msgid "Do you want to stop the current emulation?"
msgstr "Vrei să oprești emularea curentă?"
@@ -3494,35 +3581,35 @@ msgstr ""
msgid "Dolby Pro Logic II Decoder"
msgstr ""
-#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:219
-#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:230
+#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:215
+#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:226
msgid "Dolphin FIFO Log (*.dff)"
msgstr ""
-#: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:327
+#: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:326
msgid "Dolphin Game Mod Preset"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1536
-#: Source/Core/DolphinQt/MenuBar.cpp:1553
-#: Source/Core/DolphinQt/MenuBar.cpp:1572
+#: Source/Core/DolphinQt/MenuBar.cpp:1523
+#: Source/Core/DolphinQt/MenuBar.cpp:1540
+#: Source/Core/DolphinQt/MenuBar.cpp:1559
msgid "Dolphin Map File (*.map)"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:73
+#: Source/Core/DolphinQt/MenuBar.cpp:74
msgid "Dolphin Signature CSV File"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:73
+#: Source/Core/DolphinQt/MenuBar.cpp:74
msgid "Dolphin Signature File"
msgstr ""
-#: Source/Core/DolphinQt/MainWindow.cpp:1772
-#: Source/Core/DolphinQt/MainWindow.cpp:1843
+#: Source/Core/DolphinQt/MainWindow.cpp:1823
+#: Source/Core/DolphinQt/MainWindow.cpp:1894
msgid "Dolphin TAS Movies (*.dtm)"
msgstr " Filme TAS Dolphin (*.dtm)"
-#: Source/Core/DolphinQt/ConvertDialog.cpp:326
+#: Source/Core/DolphinQt/ConvertDialog.cpp:327
msgid ""
"Dolphin can't convert NKit files to non-NKit files. Converting an NKit file "
"in Dolphin will result in another NKit file.\n"
@@ -3533,13 +3620,13 @@ msgid ""
"Do you want to continue anyway?"
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:279
+#: Source/Core/DolphinQt/GameList/GameList.cpp:280
msgid ""
"Dolphin could not find any GameCube/Wii ISOs or WADs.\n"
"Double-click here to set a games directory..."
msgstr ""
-#: Source/Core/DolphinQt/ConvertDialog.cpp:526
+#: Source/Core/DolphinQt/ConvertDialog.cpp:529
msgid "Dolphin failed to complete the requested action."
msgstr ""
@@ -3551,7 +3638,7 @@ msgstr ""
msgid "Dolphin is a free and open-source GameCube and Wii emulator."
msgstr ""
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:998
msgid "Dolphin is too old for traversal server"
msgstr ""
@@ -3565,7 +3652,7 @@ msgstr ""
msgid "Dolphin is unable to verify unlicensed discs."
msgstr ""
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:217
msgid ""
"Dolphin will use this for titles whose region cannot be determined "
"automatically."
@@ -3580,15 +3667,15 @@ msgstr ""
msgid "Domain"
msgstr ""
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:193
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:194
msgid "Don't Update"
msgstr ""
-#: Source/Core/DolphinQt/NKitWarningDialog.cpp:53
+#: Source/Core/DolphinQt/NKitWarningDialog.cpp:56
msgid "Don't show this again"
msgstr ""
-#: Source/Core/DiscIO/CompressedBlob.cpp:369
+#: Source/Core/DiscIO/CompressedBlob.cpp:374
msgid "Done compressing disc image."
msgstr ""
@@ -3601,37 +3688,37 @@ msgstr ""
#. i18n: A double precision floating point number
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:139
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:199
-#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:154
+#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:155
msgid "Double"
msgstr ""
#: Source/Core/Core/FreeLookManager.cpp:89
#: Source/Core/Core/HW/WiimoteEmu/Extension/Guitar.cpp:80
#: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:35
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:43
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:44
#: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:21
#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUAccelerometer.cpp:19
#: Source/Core/InputCommon/ControllerEmu/ControllerEmu.h:24
msgid "Down"
msgstr "Jos"
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:86
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:87
msgid "Download Codes"
msgstr ""
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:88
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:89
msgid "Download Codes from the WiiRD Database"
msgstr ""
-#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:148
+#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:153
msgid "Download Game Covers from GameTDB.com for Use in Grid Mode"
msgstr ""
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:370
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:373
msgid "Download complete"
msgstr ""
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:371
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:374
msgid "Downloaded %1 codes. (added %2)"
msgstr ""
@@ -3654,7 +3741,7 @@ msgstr ""
msgid "Dual View"
msgstr ""
-#: Source/Core/Core/HW/EXI/EXI_Device.h:95
+#: Source/Core/Core/HW/EXI/EXI_Device.h:94
msgid "Dummy"
msgstr "Dummy"
@@ -3674,7 +3761,7 @@ msgstr ""
msgid "Dump &MRAM"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:814
+#: Source/Core/DolphinQt/MenuBar.cpp:806
msgid "Dump Audio"
msgstr "Dump Audio"
@@ -3686,7 +3773,7 @@ msgstr ""
msgid "Dump EFB Target"
msgstr "Dump Destinație EFB"
-#: Source/Core/DolphinQt/MenuBar.cpp:808
+#: Source/Core/DolphinQt/MenuBar.cpp:800
msgid "Dump Frames"
msgstr "Dump Cadre"
@@ -3759,12 +3846,12 @@ msgid "Duration of Turbo Button Release (frames):"
msgstr ""
#: Source/Core/DiscIO/Enums.cpp:95
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174
msgid "Dutch"
msgstr "Olandeză"
-#: Source/Core/DolphinQt/MenuBar.cpp:215
+#: Source/Core/DolphinQt/MenuBar.cpp:207
msgid "E&xit"
msgstr "I&sire"
@@ -3780,7 +3867,7 @@ msgid ""
"driver."
msgstr ""
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:185
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:186
msgid ""
"Each player sends their own inputs to the game, with equal buffer size for "
"all players, configured by the host.\n"
@@ -3794,7 +3881,7 @@ msgstr "Actualizări Anterioare Memorie"
#. i18n: One of the elements in the Skylanders games. Japanese: 土. For official translations
#. in other languages, check the SuperChargers manual at https://support.activision.com/manuals
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:336
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:352
msgid "Earth"
msgstr ""
@@ -3807,7 +3894,7 @@ msgstr ""
msgid "Edit Breakpoint"
msgstr ""
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:426
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:430
msgid "Edit..."
msgstr ""
@@ -3841,7 +3928,7 @@ msgstr ""
#. i18n: Elements are a trait of Skylanders figures. For official translations of this term,
#. check the Skylanders SuperChargers manual at https://support.activision.com/manuals
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:289
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:300
msgid "Element"
msgstr ""
@@ -3849,11 +3936,11 @@ msgstr ""
msgid "Embedded Frame Buffer (EFB)"
msgstr ""
-#: Source/Core/Core/State.cpp:541
+#: Source/Core/Core/State.cpp:629
msgid "Empty"
msgstr ""
-#: Source/Core/Core/Core.cpp:246
+#: Source/Core/Core/Core.cpp:247
msgid "Emu Thread already running"
msgstr "Firul Emu rulează deja"
@@ -3861,15 +3948,15 @@ msgstr "Firul Emu rulează deja"
msgid "Emulate Disc Speed"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:60
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:61
msgid "Emulate Infinity Base"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:146
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:157
msgid "Emulate Skylander Portal"
msgstr ""
-#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:110
+#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:111
msgid "Emulate the Wii's Bluetooth adapter"
msgstr ""
@@ -3879,11 +3966,11 @@ msgid ""
"Defaults to True"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:230
+#: Source/Core/DolphinQt/MenuBar.cpp:222
msgid "Emulated USB Devices"
msgstr ""
-#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:141
+#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:142
msgid "Emulated Wii Remote"
msgstr ""
@@ -3903,12 +3990,12 @@ msgstr ""
msgid "Emulation must be started to record."
msgstr ""
-#: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:29
-#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:33
+#: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:30
+#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:34
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:120
-#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:129
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:402
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:419
+#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:130
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:406
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:423
msgid "Enable"
msgstr ""
@@ -3916,6 +4003,10 @@ msgstr ""
msgid "Enable API Validation Layers"
msgstr ""
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:83
+msgid "Enable Achievement Badges"
+msgstr ""
+
#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:60
msgid "Enable Achievements"
msgstr ""
@@ -3924,15 +4015,19 @@ msgstr ""
msgid "Enable Audio Stretching"
msgstr ""
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:142
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:143
msgid "Enable Cheats"
msgstr "Activare Trucuri"
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:155
+#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:53
+msgid "Enable Controller Inpu&t"
+msgstr ""
+
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:161
msgid "Enable Custom RTC"
msgstr ""
-#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:149
+#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:154
msgid "Enable Debugging UI"
msgstr ""
@@ -3940,19 +4035,19 @@ msgstr ""
msgid "Enable Dual Core"
msgstr "Activare Nucleu Dublu"
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:139
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:140
msgid "Enable Dual Core (speedup)"
msgstr "Activare Nucleu Dublu (accelerare)"
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:88
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:94
msgid "Enable Emulated CPU Clock Override"
msgstr ""
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:118
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:124
msgid "Enable Emulated Memory Size Override"
msgstr ""
-#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:78
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:88
msgid "Enable Encore Achievements"
msgstr ""
@@ -3969,10 +4064,14 @@ msgid "Enable Leaderboards"
msgstr ""
#: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:88
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:66
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:68
msgid "Enable MMU"
msgstr "Activare MMU"
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:78
+msgid "Enable Progress Notifications"
+msgstr ""
+
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:156
msgid "Enable Progressive Scan"
msgstr "Activare Scanare Progresivă"
@@ -3986,15 +4085,15 @@ msgid "Enable Rich Presence"
msgstr ""
#: Source/Core/DolphinQt/Config/Mapping/GCPadWiiUConfigDialog.cpp:39
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:353
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:352
msgid "Enable Rumble"
msgstr ""
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:157
msgid "Enable Screen Saver"
msgstr "Activare Economizor Ecran"
-#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:113
+#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:114
msgid "Enable Speaker Data"
msgstr "Activare Date Vorbitor"
@@ -4002,11 +4101,11 @@ msgstr "Activare Date Vorbitor"
msgid "Enable Unofficial Achievements"
msgstr ""
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:230
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:231
msgid "Enable Usage Statistics Reporting"
msgstr ""
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158
msgid "Enable WiiConnect24 via WiiLink"
msgstr ""
@@ -4014,10 +4113,17 @@ msgstr ""
msgid "Enable Wireframe"
msgstr "Activare Wireframe"
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:77
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:82
msgid "Enable Write-Back Cache (slow)"
msgstr ""
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:85
+msgid ""
+"Enable achievement badges.
Displays icons for the player, game, and "
+"achievements. Simple visual option, but will require a small amount of extra "
+"memory and time to download the images."
+msgstr ""
+
#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:64
msgid ""
"Enable competing in RetroAchievements leaderboards.
Displays a brief popup "
+"message whenever the player makes progress on an achievement that tracks an "
+"accumulated value, such as 60 out of 120 stars."
+msgstr ""
+
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:90
+msgid ""
"Enable unlocking achievements in Encore Mode.
Encore Mode re-enables "
"achievements the player has already unlocked on the site so that the player "
"will be notified if they meet the unlock conditions again, useful for custom "
@@ -4078,7 +4191,7 @@ msgid ""
"= Compatible, OFF = Fast)"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:514
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:596
msgid ""
"Enables detection of arbitrary mipmaps, which some games use for special "
"distance-based effects.
May have false positives that result in "
@@ -4089,11 +4202,12 @@ msgid ""
"dolphin_emphasis>"
msgstr ""
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:79
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:84
msgid ""
-"Enables emulation of the CPU write-back cache.\n"
-"Enabling will have a significant impact on performance.\n"
-"This should be left disabled unless absolutely needed."
+"Enables emulation of the CPU write-back cache. Enabling will have a "
+"significant impact on performance. This should be left disabled unless "
+"absolutely needed.
If unsure, leave this unchecked."
+""
msgstr ""
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:365
@@ -4111,7 +4225,7 @@ msgid ""
"this unchecked."
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:522
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:604
msgid ""
"Enables scRGB HDR output (if supported by your graphics backend and "
"monitor). Fullscreen might be required.
This gives post process "
@@ -4134,7 +4248,6 @@ msgid ""
msgstr ""
#: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:100
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:68
msgid ""
"Enables the Memory Management Unit, needed for some games. (ON = Compatible, "
"OFF = Fast)"
@@ -4142,7 +4255,14 @@ msgstr ""
"Activează Unitatea de Gestionare Memorie, necesară pentru unele jocuri. "
"(PORNIT = Compatibil, OPRIT = Rapid)"
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:193
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:70
+msgid ""
+"Enables the Memory Management Unit, needed for some games. (ON = Compatible, "
+"OFF = Fast)
If unsure, leave this unchecked."
+"dolphin_emphasis>"
+msgstr ""
+
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190
msgid ""
"Enables the WiiLink service for WiiConnect24 channels.\n"
"WiiLink is an alternate provider for the discontinued WiiConnect24 Channels "
@@ -4169,7 +4289,7 @@ msgstr ""
msgid "Encoding"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:615
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:616
msgid ""
"Encountered the following errors while opening save files:\n"
"%1\n"
@@ -4182,12 +4302,12 @@ msgid "Enet Didn't Initialize"
msgstr ""
#: Source/Core/DiscIO/Enums.cpp:80
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:85
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:169
msgid "English"
msgstr "Engleză"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:59
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:61
#: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:61
msgid "Enhancements"
msgstr "Îmbunătățiri"
@@ -4218,84 +4338,84 @@ msgstr ""
msgid "Enter the DNS server to use:"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1300
+#: Source/Core/DolphinQt/MenuBar.cpp:1286
msgid "Enter the RSO module address:"
msgstr ""
#: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:194
#: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:250
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:261
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:262
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386
#: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:265
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:343
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:349
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:346
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:352
#: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:46
-#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:521
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:256
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:295
-#: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:232
-#: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:259
-#: Source/Core/DolphinQt/ConvertDialog.cpp:424
-#: Source/Core/DolphinQt/ConvertDialog.cpp:471
-#: Source/Core/DolphinQt/ConvertDialog.cpp:525
+#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:539
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:255
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:296
+#: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:229
+#: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:256
+#: Source/Core/DolphinQt/ConvertDialog.cpp:426
+#: Source/Core/DolphinQt/ConvertDialog.cpp:473
+#: Source/Core/DolphinQt/ConvertDialog.cpp:528
#: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:255
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:638
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:644
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:653
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:665
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:684
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:690
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:705
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:713
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:737
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:744
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:637
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:643
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:652
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:664
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:683
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:689
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:704
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:712
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:736
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:743
#: Source/Core/DolphinQt/Debugger/RegisterColumn.cpp:86
#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:282
#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:431
-#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:241
-#: Source/Core/DolphinQt/GBAWidget.cpp:576
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:346
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:376
-#: Source/Core/DolphinQt/Main.cpp:209 Source/Core/DolphinQt/Main.cpp:225
-#: Source/Core/DolphinQt/Main.cpp:232 Source/Core/DolphinQt/MainWindow.cpp:295
-#: Source/Core/DolphinQt/MainWindow.cpp:303
-#: Source/Core/DolphinQt/MainWindow.cpp:1108
-#: Source/Core/DolphinQt/MainWindow.cpp:1494
-#: Source/Core/DolphinQt/MainWindow.cpp:1501
-#: Source/Core/DolphinQt/MainWindow.cpp:1561
-#: Source/Core/DolphinQt/MainWindow.cpp:1568
-#: Source/Core/DolphinQt/MainWindow.cpp:1670
-#: Source/Core/DolphinQt/MenuBar.cpp:1204
-#: Source/Core/DolphinQt/MenuBar.cpp:1284
+#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:237
+#: Source/Core/DolphinQt/GBAWidget.cpp:578
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:347
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:377
+#: Source/Core/DolphinQt/Main.cpp:211 Source/Core/DolphinQt/Main.cpp:227
+#: Source/Core/DolphinQt/Main.cpp:234 Source/Core/DolphinQt/MainWindow.cpp:297
+#: Source/Core/DolphinQt/MainWindow.cpp:305
+#: Source/Core/DolphinQt/MainWindow.cpp:1110
+#: Source/Core/DolphinQt/MainWindow.cpp:1507
+#: Source/Core/DolphinQt/MainWindow.cpp:1514
+#: Source/Core/DolphinQt/MainWindow.cpp:1574
+#: Source/Core/DolphinQt/MainWindow.cpp:1581
+#: Source/Core/DolphinQt/MainWindow.cpp:1690
+#: Source/Core/DolphinQt/MenuBar.cpp:1190
+#: Source/Core/DolphinQt/MenuBar.cpp:1270
+#: Source/Core/DolphinQt/MenuBar.cpp:1293
#: Source/Core/DolphinQt/MenuBar.cpp:1307
-#: Source/Core/DolphinQt/MenuBar.cpp:1321
-#: Source/Core/DolphinQt/MenuBar.cpp:1352
-#: Source/Core/DolphinQt/MenuBar.cpp:1376
-#: Source/Core/DolphinQt/MenuBar.cpp:1597
-#: Source/Core/DolphinQt/MenuBar.cpp:1608
-#: Source/Core/DolphinQt/MenuBar.cpp:1620
-#: Source/Core/DolphinQt/MenuBar.cpp:1642
-#: Source/Core/DolphinQt/MenuBar.cpp:1668
-#: Source/Core/DolphinQt/MenuBar.cpp:1722
-#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:315
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:477
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:738
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:980
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1098
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1108
-#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:334
-#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:340
-#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:347
+#: Source/Core/DolphinQt/MenuBar.cpp:1339
+#: Source/Core/DolphinQt/MenuBar.cpp:1363
+#: Source/Core/DolphinQt/MenuBar.cpp:1584
+#: Source/Core/DolphinQt/MenuBar.cpp:1595
+#: Source/Core/DolphinQt/MenuBar.cpp:1607
+#: Source/Core/DolphinQt/MenuBar.cpp:1629
+#: Source/Core/DolphinQt/MenuBar.cpp:1655
+#: Source/Core/DolphinQt/MenuBar.cpp:1709
+#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:316
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:479
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:740
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:982
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1100
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1110
+#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:332
+#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:338
+#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:345
#: Source/Core/DolphinQt/RenderWidget.cpp:123
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:203
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:224
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:423
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:439
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:460
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:481
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:525
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:562
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:585
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:204
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:225
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:433
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:449
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:470
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:491
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:535
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:572
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:595
#: Source/Core/DolphinQt/Translation.cpp:322
msgid "Error"
msgstr "Eroare"
@@ -4304,13 +4424,13 @@ msgstr "Eroare"
msgid "Error Opening Adapter: %1"
msgstr ""
-#: Source/Core/Core/NetPlayServer.cpp:1493
+#: Source/Core/Core/NetPlayServer.cpp:1497
msgid "Error collecting save data!"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:260
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:526
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:533
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:262
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:613
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:620
msgid "Error converting value"
msgstr ""
@@ -4324,15 +4444,15 @@ msgstr ""
msgid "Error obtaining session list: %1"
msgstr ""
-#: Source/Core/DolphinQt/MainWindow.cpp:296
+#: Source/Core/DolphinQt/MainWindow.cpp:298
msgid "Error occurred while loading some texture packs"
msgstr ""
-#: Source/Core/Core/NetPlayClient.cpp:1847
+#: Source/Core/Core/NetPlayClient.cpp:1851
msgid "Error processing codes."
msgstr ""
-#: Source/Core/Core/NetPlayClient.cpp:1819
+#: Source/Core/Core/NetPlayClient.cpp:1823
msgid "Error processing data."
msgstr ""
@@ -4340,11 +4460,11 @@ msgstr ""
msgid "Error reading file: {0}"
msgstr ""
-#: Source/Core/Core/NetPlayServer.cpp:1529
+#: Source/Core/Core/NetPlayServer.cpp:1533
msgid "Error synchronizing cheat codes!"
msgstr ""
-#: Source/Core/Core/NetPlayServer.cpp:1515
+#: Source/Core/Core/NetPlayServer.cpp:1519
msgid "Error synchronizing save data!"
msgstr ""
@@ -4415,7 +4535,7 @@ msgstr ""
msgid "Euphoria"
msgstr "Euforia"
-#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:282
+#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:274
#: Source/Core/UICommon/NetPlayIndex.cpp:249
msgid "Europe"
msgstr ""
@@ -4444,11 +4564,11 @@ msgstr ""
msgid "Excluded: %1"
msgstr ""
-#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:73
+#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:72
msgid "Excluded: 0"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:107
+#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108
msgid "Exclusive Ubershaders"
msgstr ""
@@ -4496,14 +4616,14 @@ msgstr ""
msgid "Experimental"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:294
+#: Source/Core/DolphinQt/MenuBar.cpp:286
msgid "Export All Wii Saves"
msgstr "Exportă Toate Salvările Wii"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:422
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:447
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:492
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:499
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:423
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:448
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:493
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:500
msgid "Export Failed"
msgstr ""
@@ -4511,42 +4631,42 @@ msgstr ""
msgid "Export Recording"
msgstr "Export Înregistrare"
-#: Source/Core/DolphinQt/MenuBar.cpp:753
+#: Source/Core/DolphinQt/MenuBar.cpp:745
msgid "Export Recording..."
msgstr "Export Înregistrare..."
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:437
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:438
msgid "Export Save File"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:454
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:455
msgid "Export Save Files"
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:470
+#: Source/Core/DolphinQt/GameList/GameList.cpp:473
msgid "Export Wii Save"
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:388
+#: Source/Core/DolphinQt/GameList/GameList.cpp:389
msgid "Export Wii Saves"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:117
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:118
msgid "Export as .&gcs..."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:118
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:119
msgid "Export as .&sav..."
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1133
+#: Source/Core/DolphinQt/MenuBar.cpp:1115
#, c-format
msgctxt ""
msgid "Exported %n save(s)"
msgstr ""
#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:268
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:432
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:434
#: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:47
msgid "Extension"
msgstr "Extensie"
@@ -4559,7 +4679,7 @@ msgstr ""
msgid "Extension Motion Simulation"
msgstr ""
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:520
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:522
msgid "External"
msgstr ""
@@ -4567,35 +4687,35 @@ msgstr ""
msgid "External Frame Buffer (XFB)"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:271
+#: Source/Core/DolphinQt/MenuBar.cpp:263
msgid "Extract Certificates from NAND"
msgstr ""
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:268
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:269
msgid "Extract Entire Disc..."
msgstr ""
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:292
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:293
msgid "Extract Entire Partition..."
msgstr ""
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:299
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:300
msgid "Extract File..."
msgstr "Extrage Fișier..."
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:241
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:242
msgid "Extract Files..."
msgstr ""
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:251
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:252
msgid "Extract System Data..."
msgstr ""
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:355
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:356
msgid "Extracting All Files..."
msgstr ""
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:356
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357
msgid "Extracting Directory..."
msgstr ""
@@ -4605,7 +4725,7 @@ msgid "FD"
msgstr ""
#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:37
-#: Source/Core/DolphinQt/MenuBar.cpp:228
+#: Source/Core/DolphinQt/MenuBar.cpp:220
msgid "FIFO Player"
msgstr "Jucător FIFO"
@@ -4613,17 +4733,17 @@ msgstr "Jucător FIFO"
msgid "Failed loading XML."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:347
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:348
msgid ""
"Failed opening memory card:\n"
"%1"
msgstr ""
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:454
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:456
msgid "Failed to add this session to the NetPlay index: %1"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1669
+#: Source/Core/DolphinQt/MenuBar.cpp:1656
msgid "Failed to append to signature file '%1'"
msgstr ""
@@ -4631,11 +4751,11 @@ msgstr ""
msgid "Failed to claim interface for BT passthrough: {0}"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:574
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:676
msgid "Failed to clear Skylander!"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:575
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:677
msgid "Failed to clear the Skylander from slot(%1)!"
msgstr ""
@@ -4643,7 +4763,7 @@ msgstr ""
msgid "Failed to connect to Redump.org"
msgstr ""
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:981
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:983
msgid "Failed to connect to server: %1"
msgstr ""
@@ -4664,15 +4784,15 @@ msgstr ""
msgid "Failed to create DXGI factory"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:289
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:291
msgid "Failed to create Infinity file"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:678
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:798
msgid "Failed to create Skylander file!"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:679
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:799
msgid ""
"Failed to create Skylander file:\n"
"%1\n"
@@ -4688,7 +4808,7 @@ msgstr ""
msgid "Failed to delete NetPlay memory card. Verify your write permissions."
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:841
+#: Source/Core/DolphinQt/GameList/GameList.cpp:854
msgid "Failed to delete the selected file."
msgstr ""
@@ -4696,36 +4816,36 @@ msgstr ""
msgid "Failed to detach kernel driver for BT passthrough: {0}"
msgstr ""
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:343
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:346
msgid "Failed to download codes."
msgstr "Descărcarea codurilor a eșuat."
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:738
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:737
msgid "Failed to dump %1: Can't open file"
msgstr ""
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:745
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:744
msgid "Failed to dump %1: Failed to write to file"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:488
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:489
msgctxt ""
msgid "Failed to export %n out of %1 save file(s)."
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:576
+#: Source/Core/DolphinQt/GameList/GameList.cpp:584
msgid "Failed to export the following save files:"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1204
+#: Source/Core/DolphinQt/MenuBar.cpp:1190
msgid "Failed to extract certificates from NAND"
msgstr ""
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386
msgid "Failed to extract file."
msgstr ""
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:261
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:262
msgid "Failed to extract system data."
msgstr ""
@@ -4740,29 +4860,29 @@ msgstr ""
msgid "Failed to find one or more D3D symbols"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:565
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:566
msgid "Failed to import \"%1\"."
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1109
+#: Source/Core/DolphinQt/MenuBar.cpp:1091
msgid ""
"Failed to import save file. Please launch the game once, then try again."
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1103
+#: Source/Core/DolphinQt/MenuBar.cpp:1085
msgid ""
"Failed to import save file. The given file appears to be corrupted or is not "
"a valid Wii save."
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1116
+#: Source/Core/DolphinQt/MenuBar.cpp:1098
msgid ""
"Failed to import save file. Your NAND may be corrupt, or something is "
"preventing access to files within it. Try repairing your NAND (Tools -> "
"Manage NAND -> Check NAND...), then import the save again."
msgstr ""
-#: Source/Core/DolphinQt/MainWindow.cpp:1108
+#: Source/Core/DolphinQt/MainWindow.cpp:1110
msgid "Failed to init core"
msgstr ""
@@ -4777,23 +4897,23 @@ msgstr ""
msgid "Failed to initialize renderer classes"
msgstr ""
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:204
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:205
msgid "Failed to install pack: %1"
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:619
-#: Source/Core/DolphinQt/MenuBar.cpp:1074
+#: Source/Core/DolphinQt/GameList/GameList.cpp:628
+#: Source/Core/DolphinQt/MenuBar.cpp:1056
msgid "Failed to install this title to the NAND."
msgstr ""
-#: Source/Core/DolphinQt/MainWindow.cpp:1594
+#: Source/Core/DolphinQt/MainWindow.cpp:1607
msgid ""
"Failed to listen on port %1. Is another instance of the NetPlay server "
"running?"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1321
-#: Source/Core/DolphinQt/MenuBar.cpp:1376
+#: Source/Core/DolphinQt/MenuBar.cpp:1307
+#: Source/Core/DolphinQt/MenuBar.cpp:1363
msgid "Failed to load RSO module at %1"
msgstr ""
@@ -4805,15 +4925,15 @@ msgstr ""
msgid "Failed to load dxgi.dll"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1608
+#: Source/Core/DolphinQt/MenuBar.cpp:1595
msgid "Failed to load map file '%1'"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:720
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:842
msgid "Failed to load the Skylander file!"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:721
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:843
msgid "Failed to load the Skylander file(%1)!\n"
msgstr ""
@@ -4827,8 +4947,12 @@ msgid ""
"update package."
msgstr ""
-#: Source/Core/DolphinQt/GBAWidget.cpp:576
-#: Source/Core/DolphinQt/MainWindow.cpp:1670
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:663
+msgid "Failed to modify Skylander!"
+msgstr ""
+
+#: Source/Core/DolphinQt/GBAWidget.cpp:578
+#: Source/Core/DolphinQt/MainWindow.cpp:1690
#: Source/Core/DolphinQt/RenderWidget.cpp:123
msgid "Failed to open '%1'"
msgstr ""
@@ -4855,40 +4979,40 @@ msgid ""
"Make sure there's an application assigned to open INI files."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:861
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:863
msgid "Failed to open file."
msgstr ""
-#: Source/Core/DolphinQt/MainWindow.cpp:1593
+#: Source/Core/DolphinQt/MainWindow.cpp:1606
msgid "Failed to open server"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:164
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:166
msgid "Failed to open the Infinity file!"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:165
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:167
msgid ""
"Failed to open the Infinity file(%1)!\n"
"File may already be in use on the base."
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:696
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:818
msgid "Failed to open the Skylander file!"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:697
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:819
msgid ""
"Failed to open the Skylander file(%1)!\n"
"File may already be in use on the portal."
msgstr ""
-#: Source/Core/DolphinQt/ConvertDialog.cpp:472
+#: Source/Core/DolphinQt/ConvertDialog.cpp:474
msgid "Failed to open the input file \"%1\"."
msgstr ""
-#: Source/Core/DiscIO/CompressedBlob.cpp:282 Source/Core/DiscIO/FileBlob.cpp:53
-#: Source/Core/DiscIO/WIABlob.cpp:2037
+#: Source/Core/DiscIO/CompressedBlob.cpp:287 Source/Core/DiscIO/FileBlob.cpp:58
+#: Source/Core/DiscIO/WIABlob.cpp:2043
msgid ""
"Failed to open the output file \"{0}\".\n"
"Check that you have permissions to write the target folder and that the "
@@ -4908,35 +5032,35 @@ msgstr ""
msgid "Failed to read DFF file."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:863
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:865
msgid "Failed to read from file."
msgstr ""
-#: Source/Core/DiscIO/CompressedBlob.cpp:373 Source/Core/DiscIO/FileBlob.cpp:93
-#: Source/Core/DiscIO/WIABlob.cpp:2052
+#: Source/Core/DiscIO/CompressedBlob.cpp:378 Source/Core/DiscIO/FileBlob.cpp:98
+#: Source/Core/DiscIO/WIABlob.cpp:2058
msgid "Failed to read from the input file \"{0}\"."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:423
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:641
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:424
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:642
msgid "Failed to read selected savefile(s) from memory card."
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:173
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:175
msgid "Failed to read the Infinity file!"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:174
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:176
msgid ""
"Failed to read the Infinity file(%1)!\n"
"File was too small."
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:706
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:828
msgid "Failed to read the Skylander file!"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:707
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:829
msgid ""
"Failed to read the Skylander file(%1)!\n"
"File was too small."
@@ -4946,18 +5070,18 @@ msgstr ""
msgid "Failed to read {0}"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:668
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:669
msgid "Failed to remove file."
msgstr ""
-#: Source/Core/DolphinQt/ConvertDialog.cpp:453
+#: Source/Core/DolphinQt/ConvertDialog.cpp:455
msgid ""
"Failed to remove junk data from file \"%1\".\n"
"\n"
"Would you like to convert it without removing junk data?"
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:647
+#: Source/Core/DolphinQt/GameList/GameList.cpp:658
msgid "Failed to remove this title from the NAND."
msgstr ""
@@ -4973,27 +5097,34 @@ msgstr ""
msgid "Failed to reset NetPlay redirect folder. Verify your write permissions."
msgstr ""
-#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:241
+#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:237
msgid "Failed to save FIFO log."
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1598
+#: Source/Core/DolphinQt/MenuBar.cpp:1585
msgid "Failed to save code map to path '%1'"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1642
+#: Source/Core/DolphinQt/MenuBar.cpp:1629
msgid "Failed to save signature file '%1'"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1621
+#: Source/Core/DolphinQt/MenuBar.cpp:1608
msgid "Failed to save symbol map to path '%1'"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1723
+#: Source/Core/DolphinQt/MenuBar.cpp:1710
msgid "Failed to save to signature file '%1'"
msgstr ""
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:225
+#: Source/Core/Core/Core.cpp:548
+msgid ""
+"Failed to sync SD card with folder. All changes made this session will be "
+"discarded on next boot if you do not manually re-issue a resync in Config > "
+"Wii > SD Card Settings > Convert File to Folder Now!"
+msgstr ""
+
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:226
msgid "Failed to uninstall pack: %1"
msgstr ""
@@ -5013,9 +5144,9 @@ msgstr ""
msgid "Failed to write config file!"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:573
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:676
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:691
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:574
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:677
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:692
msgid "Failed to write modified memory card to disk."
msgstr ""
@@ -5023,33 +5154,33 @@ msgstr ""
msgid "Failed to write redirected save."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:447
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:448
msgid "Failed to write savefile to disk."
msgstr ""
-#: Source/Core/DiscIO/CompressedBlob.cpp:377 Source/Core/DiscIO/FileBlob.cpp:99
-#: Source/Core/DiscIO/WIABlob.cpp:2056
+#: Source/Core/DiscIO/CompressedBlob.cpp:382
+#: Source/Core/DiscIO/FileBlob.cpp:104 Source/Core/DiscIO/WIABlob.cpp:2062
msgid ""
"Failed to write the output file \"{0}\".\n"
"Check that you have enough space available on the target drive."
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:617
-#: Source/Core/DolphinQt/GameList/GameList.cpp:645
-#: Source/Core/DolphinQt/GameList/GameList.cpp:840
-#: Source/Core/DolphinQt/MenuBar.cpp:1074
+#: Source/Core/DolphinQt/GameList/GameList.cpp:626
+#: Source/Core/DolphinQt/GameList/GameList.cpp:656
+#: Source/Core/DolphinQt/GameList/GameList.cpp:853
+#: Source/Core/DolphinQt/MenuBar.cpp:1056
msgid "Failure"
msgstr ""
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:183
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:184
msgid "Fair Input Delay"
msgstr ""
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:199
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:200
msgid "Fallback Region"
msgstr ""
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:210
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:211
msgid "Fallback Region:"
msgstr ""
@@ -5073,17 +5204,21 @@ msgstr ""
msgid "Field of View"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:233
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:235
msgid "Figure Number:"
msgstr ""
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:380
+msgid "Figure type"
+msgstr ""
+
#: Source/Core/DolphinQt/Config/InfoWidget.cpp:46
msgid "File Details"
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:991
+#: Source/Core/DolphinQt/GameList/GameList.cpp:1005
#: Source/Core/DolphinQt/GameList/GameListModel.cpp:229
-#: Source/Core/DolphinQt/MenuBar.cpp:652
+#: Source/Core/DolphinQt/MenuBar.cpp:644
msgid "File Format"
msgstr ""
@@ -5095,20 +5230,20 @@ msgstr ""
msgid "File Info"
msgstr "Info Fişier "
-#: Source/Core/DolphinQt/GameList/GameList.cpp:986
+#: Source/Core/DolphinQt/GameList/GameList.cpp:1000
#: Source/Core/DolphinQt/GameList/GameListModel.cpp:223
-#: Source/Core/DolphinQt/MenuBar.cpp:647
+#: Source/Core/DolphinQt/MenuBar.cpp:639
msgid "File Name"
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:987
+#: Source/Core/DolphinQt/GameList/GameList.cpp:1001
#: Source/Core/DolphinQt/GameList/GameListModel.cpp:225
-#: Source/Core/DolphinQt/MenuBar.cpp:648
+#: Source/Core/DolphinQt/MenuBar.cpp:640
msgid "File Path"
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:990
-#: Source/Core/DolphinQt/MenuBar.cpp:651
+#: Source/Core/DolphinQt/GameList/GameList.cpp:1004
+#: Source/Core/DolphinQt/MenuBar.cpp:643
msgid "File Size"
msgstr ""
@@ -5116,15 +5251,15 @@ msgstr ""
msgid "File Size:"
msgstr ""
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:349
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:352
msgid "File contained no codes."
msgstr "Fișierul nu a conținut coduri."
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:149
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:150
msgid "Filename"
msgstr ""
-#: Source/Core/DiscIO/CompressedBlob.cpp:289
+#: Source/Core/DiscIO/CompressedBlob.cpp:294
msgid "Files opened, ready to compress."
msgstr ""
@@ -5134,11 +5269,11 @@ msgid ""
"{1}"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:833
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:835
msgid "Filesize does not match any known GameCube Memory Card size."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:836
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:838
msgid "Filesize in header mismatches actual card size."
msgstr ""
@@ -5146,7 +5281,7 @@ msgstr ""
msgid "Filesystem"
msgstr "Sistem de fișiere"
-#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:102
+#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:103
msgid "Filters"
msgstr ""
@@ -5162,7 +5297,7 @@ msgstr ""
msgid "Finish Calibration"
msgstr ""
-#: Source/Core/DolphinQt/WiiUpdate.cpp:109
+#: Source/Core/DolphinQt/WiiUpdate.cpp:110
msgid ""
"Finishing the update...\n"
"This can take a while."
@@ -5170,19 +5305,19 @@ msgstr ""
#. i18n: One of the elements in the Skylanders games. Japanese: 火. For official translations
#. in other languages, check the SuperChargers manual at https://support.activision.com/manuals
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:333
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:349
msgid "Fire"
msgstr ""
-#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:40
+#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:41
msgid "First Person"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:127
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:128
msgid "Fix Checksums"
msgstr "Remediere Sume de verificare"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:690
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:691
msgid "Fix Checksums Failed"
msgstr ""
@@ -5192,7 +5327,7 @@ msgstr ""
#. i18n: These are the kinds of flags that a CPU uses (e.g. carry),
#. not the kinds of flags that represent e.g. countries
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:166
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167
#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:87
msgid "Flags"
msgstr ""
@@ -5201,12 +5336,12 @@ msgstr ""
#. i18n: Floating-point (non-integer) number
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:138
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:198
-#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:152
+#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:153
#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97
msgid "Float"
msgstr ""
-#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:565
+#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:566
msgid "Follow &branch"
msgstr ""
@@ -5226,35 +5361,35 @@ msgid ""
"\">refer to this page
."
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:57
+#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:58
msgid "Force 16:9"
msgstr "Forțare 16:9"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:117
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:152
msgid "Force 24-Bit Color"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:57
+#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:58
msgid "Force 4:3"
msgstr "Forțare 4:3"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:96
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:115
msgid "Force Linear"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:103
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:122
msgid "Force Linear and 16x Anisotropic"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:97
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:116
msgid "Force Linear and 2x Anisotropic"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:99
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:118
msgid "Force Linear and 4x Anisotropic"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:101
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:120
msgid "Force Linear and 8x Anisotropic"
msgstr ""
@@ -5262,7 +5397,7 @@ msgstr ""
msgid "Force Listen Port:"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:95
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:114
msgid "Force Nearest"
msgstr ""
@@ -5274,7 +5409,7 @@ msgstr ""
msgid "Forced on because %1 doesn't support geometry shaders."
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:474
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:556
msgid ""
"Forces the game to output graphics for any aspect ratio. Use with \"Aspect "
"Ratio\" set to \"Force 16:9\" to force 4:3-only games to run at 16:9."
@@ -5284,7 +5419,7 @@ msgid ""
""
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:503
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:585
msgid ""
"Forces the game to render the RGB color channels in 24-bit, thereby "
"increasing quality by reducing color banding.
Has no impact on "
@@ -5292,7 +5427,7 @@ msgid ""
"unsure, leave this checked."
msgstr ""
-#: Source/Core/DolphinQt/ConvertDialog.cpp:59
+#: Source/Core/DolphinQt/ConvertDialog.cpp:60
msgid "Format:"
msgstr ""
@@ -5358,19 +5493,19 @@ msgstr ""
msgid "France"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:311
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:312
msgid "Free Blocks: %1"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:312
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:313
msgid "Free Files: %1"
msgstr ""
-#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:42
+#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:43
msgid "Free Look Control Type"
msgstr ""
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:468
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:470
msgid "Free Look Controller %1"
msgstr ""
@@ -5378,7 +5513,7 @@ msgstr ""
msgid "Free Look Settings"
msgstr ""
-#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:54
+#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:55
msgid ""
"Free Look allows for manipulation of the in-game camera. Different camera "
"types are available from the dropdown.
Если не уверены – "
"оставьте выключенным."
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:508
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:590
msgid ""
"Disables the blending of adjacent rows when copying the EFB. This is known "
"in some games as \"deflickering\" or \"smoothing\".
Disabling the "
@@ -3638,7 +3725,7 @@ msgstr ""
"
Если не уверены – оставьте включенным."
"dolphin_emphasis>"
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:96
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:97
msgid "Disc"
msgstr "Диск"
@@ -3677,25 +3764,25 @@ msgstr "Расстояние"
msgid "Distance of travel from neutral position."
msgstr "Проходимое расстояние из исходной позиции."
-#: Source/Core/DolphinQt/Main.cpp:259
+#: Source/Core/DolphinQt/Main.cpp:264
msgid "Do you authorize Dolphin to report information to Dolphin's developers?"
msgstr "Вы разрешаете отправку данной информации разработчикам Dolphin?"
-#: Source/Core/DolphinQt/MainWindow.cpp:1692
+#: Source/Core/DolphinQt/MainWindow.cpp:1712
msgid "Do you want to add \"%1\" to the list of Game Paths?"
msgstr "Вы хотите добавить \"%1\" в список путей к играм?"
-#: Source/Core/DolphinQt/MenuBar.cpp:1241
+#: Source/Core/DolphinQt/MenuBar.cpp:1227
msgid "Do you want to clear the list of symbol names?"
msgstr "Вы хотите очистить список имён символов?"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:658
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:659
#, c-format
msgctxt ""
msgid "Do you want to delete the %n selected save file(s)?"
msgstr "Вы хотите удалить выбранные файлы сохранений (%n шт.)?"
-#: Source/Core/DolphinQt/MainWindow.cpp:933
+#: Source/Core/DolphinQt/MainWindow.cpp:935
msgid "Do you want to stop the current emulation?"
msgstr "Вы хотите остановить текущую эмуляцию?"
@@ -3707,35 +3794,35 @@ msgstr ""
msgid "Dolby Pro Logic II Decoder"
msgstr "Декодер Dolby Pro Logic II"
-#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:219
-#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:230
+#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:215
+#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:226
msgid "Dolphin FIFO Log (*.dff)"
msgstr "Лог Dolphin FIFO (*.dff)"
-#: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:327
+#: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:326
msgid "Dolphin Game Mod Preset"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1536
-#: Source/Core/DolphinQt/MenuBar.cpp:1553
-#: Source/Core/DolphinQt/MenuBar.cpp:1572
+#: Source/Core/DolphinQt/MenuBar.cpp:1523
+#: Source/Core/DolphinQt/MenuBar.cpp:1540
+#: Source/Core/DolphinQt/MenuBar.cpp:1559
msgid "Dolphin Map File (*.map)"
msgstr "Файл карты Dolphin (*.map)"
-#: Source/Core/DolphinQt/MenuBar.cpp:73
+#: Source/Core/DolphinQt/MenuBar.cpp:74
msgid "Dolphin Signature CSV File"
msgstr "CSV-файл с сигнатурами Dolphin"
-#: Source/Core/DolphinQt/MenuBar.cpp:73
+#: Source/Core/DolphinQt/MenuBar.cpp:74
msgid "Dolphin Signature File"
msgstr "Файл с сигнатурами Dolphin"
-#: Source/Core/DolphinQt/MainWindow.cpp:1772
-#: Source/Core/DolphinQt/MainWindow.cpp:1843
+#: Source/Core/DolphinQt/MainWindow.cpp:1823
+#: Source/Core/DolphinQt/MainWindow.cpp:1894
msgid "Dolphin TAS Movies (*.dtm)"
msgstr "TAS-ролики (*.dtm)"
-#: Source/Core/DolphinQt/ConvertDialog.cpp:326
+#: Source/Core/DolphinQt/ConvertDialog.cpp:327
msgid ""
"Dolphin can't convert NKit files to non-NKit files. Converting an NKit file "
"in Dolphin will result in another NKit file.\n"
@@ -3746,7 +3833,7 @@ msgid ""
"Do you want to continue anyway?"
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:279
+#: Source/Core/DolphinQt/GameList/GameList.cpp:280
msgid ""
"Dolphin could not find any GameCube/Wii ISOs or WADs.\n"
"Double-click here to set a games directory..."
@@ -3754,7 +3841,7 @@ msgstr ""
"Dolphin не может найти ISO или WAD от GameCube/Wii.\n"
"Щелкните дважды по этой надписи, чтобы указать путь к играм..."
-#: Source/Core/DolphinQt/ConvertDialog.cpp:526
+#: Source/Core/DolphinQt/ConvertDialog.cpp:529
msgid "Dolphin failed to complete the requested action."
msgstr "Dolphin не удалось выполнить запрошенное действие."
@@ -3767,7 +3854,7 @@ msgid "Dolphin is a free and open-source GameCube and Wii emulator."
msgstr ""
"Dolphin – бесплатный эмулятор GameCube и Wii с открытым исходным кодом."
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:998
msgid "Dolphin is too old for traversal server"
msgstr "Слишком старая версия Dolphin для подключения к промежуточному серверу"
@@ -3783,7 +3870,7 @@ msgstr ""
msgid "Dolphin is unable to verify unlicensed discs."
msgstr "Dolphin не может проверить нелицензионные диски."
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:217
msgid ""
"Dolphin will use this for titles whose region cannot be determined "
"automatically."
@@ -3800,15 +3887,15 @@ msgstr "На данный момент поддержка читов в Dolphin
msgid "Domain"
msgstr "Домен"
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:193
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:194
msgid "Don't Update"
msgstr "Не обновлять"
-#: Source/Core/DolphinQt/NKitWarningDialog.cpp:53
+#: Source/Core/DolphinQt/NKitWarningDialog.cpp:56
msgid "Don't show this again"
msgstr "Не показывать снова"
-#: Source/Core/DiscIO/CompressedBlob.cpp:369
+#: Source/Core/DiscIO/CompressedBlob.cpp:374
msgid "Done compressing disc image."
msgstr "Сжатие образа диска завершено."
@@ -3821,37 +3908,37 @@ msgstr ""
#. i18n: A double precision floating point number
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:139
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:199
-#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:154
+#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:155
msgid "Double"
msgstr "Double"
#: Source/Core/Core/FreeLookManager.cpp:89
#: Source/Core/Core/HW/WiimoteEmu/Extension/Guitar.cpp:80
#: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:35
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:43
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:44
#: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:21
#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUAccelerometer.cpp:19
#: Source/Core/InputCommon/ControllerEmu/ControllerEmu.h:24
msgid "Down"
msgstr "Вниз"
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:86
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:87
msgid "Download Codes"
msgstr "Скачать коды"
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:88
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:89
msgid "Download Codes from the WiiRD Database"
msgstr "Скачать коды из базы данных WiiRD"
-#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:148
+#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:153
msgid "Download Game Covers from GameTDB.com for Use in Grid Mode"
msgstr "Загружать обложки игр с GameTDB.com для показа в виде сетки"
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:370
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:373
msgid "Download complete"
msgstr "Загрузка завершена"
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:371
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:374
msgid "Downloaded %1 codes. (added %2)"
msgstr "Скачано %1 кодов. (добавлено %2)"
@@ -3874,7 +3961,7 @@ msgstr "Двухъядерный режим"
msgid "Dual View"
msgstr ""
-#: Source/Core/Core/HW/EXI/EXI_Device.h:95
+#: Source/Core/Core/HW/EXI/EXI_Device.h:94
msgid "Dummy"
msgstr "Заглушка"
@@ -3894,7 +3981,7 @@ msgstr "Дампить &FakeVMEM"
msgid "Dump &MRAM"
msgstr "Дампить &MRAM"
-#: Source/Core/DolphinQt/MenuBar.cpp:814
+#: Source/Core/DolphinQt/MenuBar.cpp:806
msgid "Dump Audio"
msgstr "Дампить звук"
@@ -3906,7 +3993,7 @@ msgstr "Дампить основные текстуры"
msgid "Dump EFB Target"
msgstr "Дампить конечный EFB"
-#: Source/Core/DolphinQt/MenuBar.cpp:808
+#: Source/Core/DolphinQt/MenuBar.cpp:800
msgid "Dump Frames"
msgstr "Дампить кадры"
@@ -3988,12 +4075,12 @@ msgid "Duration of Turbo Button Release (frames):"
msgstr "Длительность отпускания турбо-кнопки (в кадрах):"
#: Source/Core/DiscIO/Enums.cpp:95
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174
msgid "Dutch"
msgstr "Голландский"
-#: Source/Core/DolphinQt/MenuBar.cpp:215
+#: Source/Core/DolphinQt/MenuBar.cpp:207
msgid "E&xit"
msgstr "&Закрыть"
@@ -4012,7 +4099,7 @@ msgstr ""
"{1} -- Если вы недавно обновили Dolphin, то, скорее всего, необходимо "
"перезагрузить компьютер, чтобы Windows обнаружил новый драйвер."
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:185
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:186
msgid ""
"Each player sends their own inputs to the game, with equal buffer size for "
"all players, configured by the host.\n"
@@ -4030,7 +4117,7 @@ msgstr "Ранние обновления памяти"
#. i18n: One of the elements in the Skylanders games. Japanese: 土. For official translations
#. in other languages, check the SuperChargers manual at https://support.activision.com/manuals
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:336
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:352
msgid "Earth"
msgstr ""
@@ -4043,7 +4130,7 @@ msgstr "Восточная Азия"
msgid "Edit Breakpoint"
msgstr ""
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:426
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:430
msgid "Edit..."
msgstr ""
@@ -4077,7 +4164,7 @@ msgstr "Извлечь диск"
#. i18n: Elements are a trait of Skylanders figures. For official translations of this term,
#. check the Skylanders SuperChargers manual at https://support.activision.com/manuals
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:289
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:300
msgid "Element"
msgstr ""
@@ -4085,11 +4172,11 @@ msgstr ""
msgid "Embedded Frame Buffer (EFB)"
msgstr "Встроенный буфер кадров (EFB)"
-#: Source/Core/Core/State.cpp:541
+#: Source/Core/Core/State.cpp:629
msgid "Empty"
msgstr "Пусто"
-#: Source/Core/Core/Core.cpp:246
+#: Source/Core/Core/Core.cpp:247
msgid "Emu Thread already running"
msgstr "Процесс эмулятора уже запущен"
@@ -4097,15 +4184,15 @@ msgstr "Процесс эмулятора уже запущен"
msgid "Emulate Disc Speed"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:60
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:61
msgid "Emulate Infinity Base"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:146
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:157
msgid "Emulate Skylander Portal"
msgstr ""
-#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:110
+#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:111
msgid "Emulate the Wii's Bluetooth adapter"
msgstr "Эмулировать Bluetooth-адаптер Wii"
@@ -4115,11 +4202,11 @@ msgid ""
"Defaults to True"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:230
+#: Source/Core/DolphinQt/MenuBar.cpp:222
msgid "Emulated USB Devices"
msgstr ""
-#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:141
+#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:142
msgid "Emulated Wii Remote"
msgstr "Эмулируемый Wii Remote"
@@ -4142,12 +4229,12 @@ msgstr "Скорость эмуляции"
msgid "Emulation must be started to record."
msgstr ""
-#: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:29
-#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:33
+#: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:30
+#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:34
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:120
-#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:129
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:402
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:419
+#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:130
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:406
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:423
msgid "Enable"
msgstr "Включить"
@@ -4155,6 +4242,10 @@ msgstr "Включить"
msgid "Enable API Validation Layers"
msgstr "Включить слои проверки API"
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:83
+msgid "Enable Achievement Badges"
+msgstr ""
+
#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:60
msgid "Enable Achievements"
msgstr ""
@@ -4163,15 +4254,19 @@ msgstr ""
msgid "Enable Audio Stretching"
msgstr "Включить растяжение звука"
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:142
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:143
msgid "Enable Cheats"
msgstr "Включить чит-коды"
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:155
+#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:53
+msgid "Enable Controller Inpu&t"
+msgstr ""
+
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:161
msgid "Enable Custom RTC"
msgstr "Включить переопределение времени"
-#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:149
+#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:154
msgid "Enable Debugging UI"
msgstr ""
@@ -4179,19 +4274,19 @@ msgstr ""
msgid "Enable Dual Core"
msgstr "Включить двухядерный режим"
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:139
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:140
msgid "Enable Dual Core (speedup)"
msgstr "Включить двухядерный режим (ускорение)"
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:88
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:94
msgid "Enable Emulated CPU Clock Override"
msgstr "Переопределять частоту эмулируемого ЦП"
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:118
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:124
msgid "Enable Emulated Memory Size Override"
msgstr "Включить переопределение эмулируемого размера памяти"
-#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:78
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:88
msgid "Enable Encore Achievements"
msgstr ""
@@ -4208,10 +4303,14 @@ msgid "Enable Leaderboards"
msgstr ""
#: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:88
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:66
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:68
msgid "Enable MMU"
msgstr "Включить MMU"
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:78
+msgid "Enable Progress Notifications"
+msgstr ""
+
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:156
msgid "Enable Progressive Scan"
msgstr "Включить прогрессивную развёртку"
@@ -4225,15 +4324,15 @@ msgid "Enable Rich Presence"
msgstr ""
#: Source/Core/DolphinQt/Config/Mapping/GCPadWiiUConfigDialog.cpp:39
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:353
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:352
msgid "Enable Rumble"
msgstr "Включить вибрацию"
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:157
msgid "Enable Screen Saver"
msgstr "Включить скринсейвер"
-#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:113
+#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:114
msgid "Enable Speaker Data"
msgstr "Включить данные динамика"
@@ -4241,11 +4340,11 @@ msgstr "Включить данные динамика"
msgid "Enable Unofficial Achievements"
msgstr ""
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:230
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:231
msgid "Enable Usage Statistics Reporting"
msgstr "Включить отправку статистики об использовании"
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158
msgid "Enable WiiConnect24 via WiiLink"
msgstr ""
@@ -4253,10 +4352,17 @@ msgstr ""
msgid "Enable Wireframe"
msgstr "Включить каркас моделей"
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:77
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:82
msgid "Enable Write-Back Cache (slow)"
msgstr ""
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:85
+msgid ""
+"Enable achievement badges.
Displays icons for the player, game, and "
+"achievements. Simple visual option, but will require a small amount of extra "
+"memory and time to download the images."
+msgstr ""
+
#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:64
msgid ""
"Enable competing in RetroAchievements leaderboards.
Displays a brief popup "
+"message whenever the player makes progress on an achievement that tracks an "
+"accumulated value, such as 60 out of 120 stars."
+msgstr ""
+
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:90
+msgid ""
"Enable unlocking achievements in Encore Mode.
Encore Mode re-enables "
"achievements the player has already unlocked on the site so that the player "
"will be notified if they meet the unlock conditions again, useful for custom "
@@ -4322,7 +4435,7 @@ msgstr ""
"result flag), необходимого для небольшого количества игр. (ВКЛ = лучше "
"совместимость, ВЫКЛ = выше скорость)"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:514
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:596
msgid ""
"Enables detection of arbitrary mipmaps, which some games use for special "
"distance-based effects.
May have false positives that result in "
@@ -4342,11 +4455,12 @@ msgstr ""
"
Если не уверены – оставьте включенным."
"dolphin_emphasis>"
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:79
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:84
msgid ""
-"Enables emulation of the CPU write-back cache.\n"
-"Enabling will have a significant impact on performance.\n"
-"This should be left disabled unless absolutely needed."
+"Enables emulation of the CPU write-back cache. Enabling will have a "
+"significant impact on performance. This should be left disabled unless "
+"absolutely needed.
If unsure, leave this unchecked."
+""
msgstr ""
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:365
@@ -4372,7 +4486,7 @@ msgstr ""
"вызывает проблем в большинстве игр.
Если не уверены "
"– оставьте выключенным."
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:522
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:604
msgid ""
"Enables scRGB HDR output (if supported by your graphics backend and "
"monitor). Fullscreen might be required.
This gives post process "
@@ -4400,7 +4514,6 @@ msgstr ""
"dolphin_emphasis>"
#: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:100
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:68
msgid ""
"Enables the Memory Management Unit, needed for some games. (ON = Compatible, "
"OFF = Fast)"
@@ -4408,7 +4521,14 @@ msgstr ""
"Активирует устройство управления памятью (MMU), требуется для некоторых игр. "
"(ВКЛ = лучше совместимость, ВЫКЛ = выше скорость)"
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:193
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:70
+msgid ""
+"Enables the Memory Management Unit, needed for some games. (ON = Compatible, "
+"OFF = Fast)
If unsure, leave this unchecked."
+"dolphin_emphasis>"
+msgstr ""
+
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190
msgid ""
"Enables the WiiLink service for WiiConnect24 channels.\n"
"WiiLink is an alternate provider for the discontinued WiiConnect24 Channels "
@@ -4443,7 +4563,7 @@ msgstr ""
msgid "Encoding"
msgstr "Кодировка"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:615
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:616
msgid ""
"Encountered the following errors while opening save files:\n"
"%1\n"
@@ -4460,12 +4580,12 @@ msgid "Enet Didn't Initialize"
msgstr "Enet не был инициализирован"
#: Source/Core/DiscIO/Enums.cpp:80
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:85
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:169
msgid "English"
msgstr "Английский"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:59
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:61
#: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:61
msgid "Enhancements"
msgstr "Улучшения"
@@ -4496,84 +4616,84 @@ msgstr "Введите пароль"
msgid "Enter the DNS server to use:"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1300
+#: Source/Core/DolphinQt/MenuBar.cpp:1286
msgid "Enter the RSO module address:"
msgstr "Введите адрес модуля RSO:"
#: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:194
#: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:250
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:261
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:262
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386
#: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:265
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:343
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:349
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:346
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:352
#: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:46
-#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:521
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:256
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:295
-#: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:232
-#: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:259
-#: Source/Core/DolphinQt/ConvertDialog.cpp:424
-#: Source/Core/DolphinQt/ConvertDialog.cpp:471
-#: Source/Core/DolphinQt/ConvertDialog.cpp:525
+#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:539
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:255
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:296
+#: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:229
+#: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:256
+#: Source/Core/DolphinQt/ConvertDialog.cpp:426
+#: Source/Core/DolphinQt/ConvertDialog.cpp:473
+#: Source/Core/DolphinQt/ConvertDialog.cpp:528
#: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:255
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:638
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:644
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:653
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:665
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:684
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:690
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:705
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:713
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:737
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:744
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:637
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:643
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:652
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:664
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:683
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:689
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:704
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:712
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:736
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:743
#: Source/Core/DolphinQt/Debugger/RegisterColumn.cpp:86
#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:282
#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:431
-#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:241
-#: Source/Core/DolphinQt/GBAWidget.cpp:576
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:346
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:376
-#: Source/Core/DolphinQt/Main.cpp:209 Source/Core/DolphinQt/Main.cpp:225
-#: Source/Core/DolphinQt/Main.cpp:232 Source/Core/DolphinQt/MainWindow.cpp:295
-#: Source/Core/DolphinQt/MainWindow.cpp:303
-#: Source/Core/DolphinQt/MainWindow.cpp:1108
-#: Source/Core/DolphinQt/MainWindow.cpp:1494
-#: Source/Core/DolphinQt/MainWindow.cpp:1501
-#: Source/Core/DolphinQt/MainWindow.cpp:1561
-#: Source/Core/DolphinQt/MainWindow.cpp:1568
-#: Source/Core/DolphinQt/MainWindow.cpp:1670
-#: Source/Core/DolphinQt/MenuBar.cpp:1204
-#: Source/Core/DolphinQt/MenuBar.cpp:1284
+#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:237
+#: Source/Core/DolphinQt/GBAWidget.cpp:578
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:347
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:377
+#: Source/Core/DolphinQt/Main.cpp:211 Source/Core/DolphinQt/Main.cpp:227
+#: Source/Core/DolphinQt/Main.cpp:234 Source/Core/DolphinQt/MainWindow.cpp:297
+#: Source/Core/DolphinQt/MainWindow.cpp:305
+#: Source/Core/DolphinQt/MainWindow.cpp:1110
+#: Source/Core/DolphinQt/MainWindow.cpp:1507
+#: Source/Core/DolphinQt/MainWindow.cpp:1514
+#: Source/Core/DolphinQt/MainWindow.cpp:1574
+#: Source/Core/DolphinQt/MainWindow.cpp:1581
+#: Source/Core/DolphinQt/MainWindow.cpp:1690
+#: Source/Core/DolphinQt/MenuBar.cpp:1190
+#: Source/Core/DolphinQt/MenuBar.cpp:1270
+#: Source/Core/DolphinQt/MenuBar.cpp:1293
#: Source/Core/DolphinQt/MenuBar.cpp:1307
-#: Source/Core/DolphinQt/MenuBar.cpp:1321
-#: Source/Core/DolphinQt/MenuBar.cpp:1352
-#: Source/Core/DolphinQt/MenuBar.cpp:1376
-#: Source/Core/DolphinQt/MenuBar.cpp:1597
-#: Source/Core/DolphinQt/MenuBar.cpp:1608
-#: Source/Core/DolphinQt/MenuBar.cpp:1620
-#: Source/Core/DolphinQt/MenuBar.cpp:1642
-#: Source/Core/DolphinQt/MenuBar.cpp:1668
-#: Source/Core/DolphinQt/MenuBar.cpp:1722
-#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:315
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:477
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:738
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:980
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1098
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1108
-#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:334
-#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:340
-#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:347
+#: Source/Core/DolphinQt/MenuBar.cpp:1339
+#: Source/Core/DolphinQt/MenuBar.cpp:1363
+#: Source/Core/DolphinQt/MenuBar.cpp:1584
+#: Source/Core/DolphinQt/MenuBar.cpp:1595
+#: Source/Core/DolphinQt/MenuBar.cpp:1607
+#: Source/Core/DolphinQt/MenuBar.cpp:1629
+#: Source/Core/DolphinQt/MenuBar.cpp:1655
+#: Source/Core/DolphinQt/MenuBar.cpp:1709
+#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:316
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:479
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:740
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:982
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1100
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1110
+#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:332
+#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:338
+#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:345
#: Source/Core/DolphinQt/RenderWidget.cpp:123
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:203
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:224
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:423
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:439
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:460
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:481
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:525
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:562
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:585
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:204
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:225
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:433
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:449
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:470
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:491
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:535
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:572
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:595
#: Source/Core/DolphinQt/Translation.cpp:322
msgid "Error"
msgstr "Ошибка"
@@ -4582,13 +4702,13 @@ msgstr "Ошибка"
msgid "Error Opening Adapter: %1"
msgstr "Ошибка открытия адаптера: %1"
-#: Source/Core/Core/NetPlayServer.cpp:1493
+#: Source/Core/Core/NetPlayServer.cpp:1497
msgid "Error collecting save data!"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:260
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:526
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:533
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:262
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:613
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:620
msgid "Error converting value"
msgstr ""
@@ -4601,15 +4721,15 @@ msgstr ""
msgid "Error obtaining session list: %1"
msgstr "Ошибка при получении списка сессий: %1"
-#: Source/Core/DolphinQt/MainWindow.cpp:296
+#: Source/Core/DolphinQt/MainWindow.cpp:298
msgid "Error occurred while loading some texture packs"
msgstr ""
-#: Source/Core/Core/NetPlayClient.cpp:1847
+#: Source/Core/Core/NetPlayClient.cpp:1851
msgid "Error processing codes."
msgstr "Ошибка обработки кодов."
-#: Source/Core/Core/NetPlayClient.cpp:1819
+#: Source/Core/Core/NetPlayClient.cpp:1823
msgid "Error processing data."
msgstr "Ошибка обработки данных."
@@ -4617,11 +4737,11 @@ msgstr "Ошибка обработки данных."
msgid "Error reading file: {0}"
msgstr "Ошибка чтения файла: {0}"
-#: Source/Core/Core/NetPlayServer.cpp:1529
+#: Source/Core/Core/NetPlayServer.cpp:1533
msgid "Error synchronizing cheat codes!"
msgstr "Ошибка синхронизации чит-кодов!"
-#: Source/Core/Core/NetPlayServer.cpp:1515
+#: Source/Core/Core/NetPlayServer.cpp:1519
msgid "Error synchronizing save data!"
msgstr "Ошибка синхронизации сохранений!"
@@ -4698,7 +4818,7 @@ msgstr "В {0} неиспользуемых блоках раздела {1} на
msgid "Euphoria"
msgstr "Эйфория"
-#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:282
+#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:274
#: Source/Core/UICommon/NetPlayIndex.cpp:249
msgid "Europe"
msgstr "Европа"
@@ -4727,11 +4847,11 @@ msgstr ""
msgid "Excluded: %1"
msgstr ""
-#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:73
+#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:72
msgid "Excluded: 0"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:107
+#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108
msgid "Exclusive Ubershaders"
msgstr "Только убершейдеры"
@@ -4779,14 +4899,14 @@ msgstr "Ожидалось название переменной."
msgid "Experimental"
msgstr "Экспериментальные"
-#: Source/Core/DolphinQt/MenuBar.cpp:294
+#: Source/Core/DolphinQt/MenuBar.cpp:286
msgid "Export All Wii Saves"
msgstr "Экспортировать все сохранения Wii"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:422
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:447
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:492
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:499
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:423
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:448
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:493
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:500
msgid "Export Failed"
msgstr "Не удалось экспортировать"
@@ -4794,42 +4914,42 @@ msgstr "Не удалось экспортировать"
msgid "Export Recording"
msgstr "Экспорт записи"
-#: Source/Core/DolphinQt/MenuBar.cpp:753
+#: Source/Core/DolphinQt/MenuBar.cpp:745
msgid "Export Recording..."
msgstr "Экспорт записи..."
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:437
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:438
msgid "Export Save File"
msgstr "Экспортировать файл сохранения"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:454
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:455
msgid "Export Save Files"
msgstr "Экспорт файлов сохранений"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:470
+#: Source/Core/DolphinQt/GameList/GameList.cpp:473
msgid "Export Wii Save"
msgstr "Экспортировать сохранение Wii"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:388
+#: Source/Core/DolphinQt/GameList/GameList.cpp:389
msgid "Export Wii Saves"
msgstr "Экспортировать сохранения Wii"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:117
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:118
msgid "Export as .&gcs..."
msgstr "Экспорт в .&gcs..."
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:118
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:119
msgid "Export as .&sav..."
msgstr "Экспорт в .&sav..."
-#: Source/Core/DolphinQt/MenuBar.cpp:1133
+#: Source/Core/DolphinQt/MenuBar.cpp:1115
#, c-format
msgctxt ""
msgid "Exported %n save(s)"
msgstr "Экспортировано сохранений: %n"
#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:268
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:432
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:434
#: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:47
msgid "Extension"
msgstr "Расширение"
@@ -4842,7 +4962,7 @@ msgstr "Данные движения расширения"
msgid "Extension Motion Simulation"
msgstr "Симуляция движения расширения"
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:520
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:522
msgid "External"
msgstr "Внешний адрес"
@@ -4850,35 +4970,35 @@ msgstr "Внешний адрес"
msgid "External Frame Buffer (XFB)"
msgstr "Внешний буфер кадров (XFB)"
-#: Source/Core/DolphinQt/MenuBar.cpp:271
+#: Source/Core/DolphinQt/MenuBar.cpp:263
msgid "Extract Certificates from NAND"
msgstr "Извлечь сертификаты из NAND"
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:268
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:269
msgid "Extract Entire Disc..."
msgstr "Извлечь весь диск..."
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:292
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:293
msgid "Extract Entire Partition..."
msgstr "Извлечь весь раздел..."
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:299
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:300
msgid "Extract File..."
msgstr "Извлечь файл..."
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:241
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:242
msgid "Extract Files..."
msgstr "Извлечь файлы..."
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:251
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:252
msgid "Extract System Data..."
msgstr "Извлечь системные данные..."
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:355
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:356
msgid "Extracting All Files..."
msgstr "Извлечение всех файлов..."
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:356
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357
msgid "Extracting Directory..."
msgstr "Извлечение папки..."
@@ -4888,7 +5008,7 @@ msgid "FD"
msgstr "ФД"
#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:37
-#: Source/Core/DolphinQt/MenuBar.cpp:228
+#: Source/Core/DolphinQt/MenuBar.cpp:220
msgid "FIFO Player"
msgstr "Проигрыватель FIFO"
@@ -4896,7 +5016,7 @@ msgstr "Проигрыватель FIFO"
msgid "Failed loading XML."
msgstr "Не удалось загрузить XML."
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:347
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:348
msgid ""
"Failed opening memory card:\n"
"%1"
@@ -4904,11 +5024,11 @@ msgstr ""
"Не удалось открыть карту памяти:\n"
"%1"
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:454
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:456
msgid "Failed to add this session to the NetPlay index: %1"
msgstr "Не удалось добавить сессию в индекс сетевой игры: %1"
-#: Source/Core/DolphinQt/MenuBar.cpp:1669
+#: Source/Core/DolphinQt/MenuBar.cpp:1656
msgid "Failed to append to signature file '%1'"
msgstr "Не удалось добавить данные в файл с сигнатурами '%1'"
@@ -4916,11 +5036,11 @@ msgstr "Не удалось добавить данные в файл с сиг
msgid "Failed to claim interface for BT passthrough: {0}"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:574
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:676
msgid "Failed to clear Skylander!"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:575
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:677
msgid "Failed to clear the Skylander from slot(%1)!"
msgstr ""
@@ -4928,7 +5048,7 @@ msgstr ""
msgid "Failed to connect to Redump.org"
msgstr "Не удалось подключиться к Redump.org"
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:981
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:983
msgid "Failed to connect to server: %1"
msgstr "Не удалось подключиться к серверу: %1"
@@ -4949,15 +5069,15 @@ msgstr "Не удалось создать глобальные ресурсы D
msgid "Failed to create DXGI factory"
msgstr "Не удалось создать фабрику DXGI"
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:289
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:291
msgid "Failed to create Infinity file"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:678
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:798
msgid "Failed to create Skylander file!"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:679
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:799
msgid ""
"Failed to create Skylander file:\n"
"%1\n"
@@ -4975,7 +5095,7 @@ msgstr ""
"Не удалось удалить карту памяти сетевой игры. Проверьте, что у вас есть "
"права на запись."
-#: Source/Core/DolphinQt/GameList/GameList.cpp:841
+#: Source/Core/DolphinQt/GameList/GameList.cpp:854
msgid "Failed to delete the selected file."
msgstr "Не удалось удалить выбранный файл."
@@ -4983,36 +5103,36 @@ msgstr "Не удалось удалить выбранный файл."
msgid "Failed to detach kernel driver for BT passthrough: {0}"
msgstr "Не удалось отключить драйвер ядра для проброса BT: {0}"
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:343
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:346
msgid "Failed to download codes."
msgstr "Не удалось скачать коды."
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:738
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:737
msgid "Failed to dump %1: Can't open file"
msgstr "Не удалось сдампить %1: невозможно открыть файл"
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:745
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:744
msgid "Failed to dump %1: Failed to write to file"
msgstr "Не удалось сдампить %1: ошибка записи в файл"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:488
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:489
msgctxt ""
msgid "Failed to export %n out of %1 save file(s)."
msgstr "Не удалось экспортировать %n из %1 сохранений."
-#: Source/Core/DolphinQt/GameList/GameList.cpp:576
+#: Source/Core/DolphinQt/GameList/GameList.cpp:584
msgid "Failed to export the following save files:"
msgstr "Не удалось экспортировать следующие файлы сохранений:"
-#: Source/Core/DolphinQt/MenuBar.cpp:1204
+#: Source/Core/DolphinQt/MenuBar.cpp:1190
msgid "Failed to extract certificates from NAND"
msgstr "Не удалось извлечь сертификаты из NAND"
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386
msgid "Failed to extract file."
msgstr "Не удалось извлечь файл."
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:261
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:262
msgid "Failed to extract system data."
msgstr "Не удалось извлечь системные данные."
@@ -5030,18 +5150,18 @@ msgstr ""
msgid "Failed to find one or more D3D symbols"
msgstr "Не удалось найти один или более символ D3D"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:565
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:566
msgid "Failed to import \"%1\"."
msgstr "Не удалось импортировать \"%1\"."
-#: Source/Core/DolphinQt/MenuBar.cpp:1109
+#: Source/Core/DolphinQt/MenuBar.cpp:1091
msgid ""
"Failed to import save file. Please launch the game once, then try again."
msgstr ""
"Не удалось импортировать файл сохранения. Пожалуйста, запустите игру, а "
"потом попробуйте ещё раз."
-#: Source/Core/DolphinQt/MenuBar.cpp:1103
+#: Source/Core/DolphinQt/MenuBar.cpp:1085
msgid ""
"Failed to import save file. The given file appears to be corrupted or is not "
"a valid Wii save."
@@ -5049,7 +5169,7 @@ msgstr ""
"Не удалось импортировать файл сохранения. Похоже, что данный файл повреждён "
"или не является корректным сохранением Wii."
-#: Source/Core/DolphinQt/MenuBar.cpp:1116
+#: Source/Core/DolphinQt/MenuBar.cpp:1098
msgid ""
"Failed to import save file. Your NAND may be corrupt, or something is "
"preventing access to files within it. Try repairing your NAND (Tools -> "
@@ -5060,7 +5180,7 @@ msgstr ""
"ваш NAND (Инструменты -> Управлять NAND -> Проверить NAND...), затем "
"импортируйте файл сохранения ещё раз."
-#: Source/Core/DolphinQt/MainWindow.cpp:1108
+#: Source/Core/DolphinQt/MainWindow.cpp:1110
msgid "Failed to init core"
msgstr "Не удалось инициализировать ядро"
@@ -5075,16 +5195,16 @@ msgstr ""
msgid "Failed to initialize renderer classes"
msgstr "Не удалось инициализировать классы рендеринга"
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:204
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:205
msgid "Failed to install pack: %1"
msgstr "Не удалось установить набор: %1"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:619
-#: Source/Core/DolphinQt/MenuBar.cpp:1074
+#: Source/Core/DolphinQt/GameList/GameList.cpp:628
+#: Source/Core/DolphinQt/MenuBar.cpp:1056
msgid "Failed to install this title to the NAND."
msgstr "Не удалось установить этот продукт в NAND."
-#: Source/Core/DolphinQt/MainWindow.cpp:1594
+#: Source/Core/DolphinQt/MainWindow.cpp:1607
msgid ""
"Failed to listen on port %1. Is another instance of the NetPlay server "
"running?"
@@ -5092,8 +5212,8 @@ msgstr ""
"Не удалось инициализировать прослушивание порта %1. У вас запущен ещё один "
"сервер сетевой игры?"
-#: Source/Core/DolphinQt/MenuBar.cpp:1321
-#: Source/Core/DolphinQt/MenuBar.cpp:1376
+#: Source/Core/DolphinQt/MenuBar.cpp:1307
+#: Source/Core/DolphinQt/MenuBar.cpp:1363
msgid "Failed to load RSO module at %1"
msgstr "Не удалось загрузить модуль RSO на %1"
@@ -5105,15 +5225,15 @@ msgstr "Не удалось загрузить d3d11.dll"
msgid "Failed to load dxgi.dll"
msgstr "Не удалось загрузить dxgi.dll"
-#: Source/Core/DolphinQt/MenuBar.cpp:1608
+#: Source/Core/DolphinQt/MenuBar.cpp:1595
msgid "Failed to load map file '%1'"
msgstr "Не удалось загрузить файл с картой '%1'"
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:720
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:842
msgid "Failed to load the Skylander file!"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:721
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:843
msgid "Failed to load the Skylander file(%1)!\n"
msgstr ""
@@ -5129,8 +5249,12 @@ msgstr ""
"Не удалось загрузить {0}. Если вы пользуетесь Windows 7, попробуйте "
"установить пакет обновления KB4019990."
-#: Source/Core/DolphinQt/GBAWidget.cpp:576
-#: Source/Core/DolphinQt/MainWindow.cpp:1670
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:663
+msgid "Failed to modify Skylander!"
+msgstr ""
+
+#: Source/Core/DolphinQt/GBAWidget.cpp:578
+#: Source/Core/DolphinQt/MainWindow.cpp:1690
#: Source/Core/DolphinQt/RenderWidget.cpp:123
msgid "Failed to open '%1'"
msgstr "Не удалось открыть '%1'"
@@ -5161,40 +5285,40 @@ msgstr ""
"Убедитесь, что у вас есть приложение, на которое назначено открытие INI-"
"файлов."
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:861
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:863
msgid "Failed to open file."
msgstr "Не удалось открыть файл."
-#: Source/Core/DolphinQt/MainWindow.cpp:1593
+#: Source/Core/DolphinQt/MainWindow.cpp:1606
msgid "Failed to open server"
msgstr "Не удалось открыть сервер"
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:164
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:166
msgid "Failed to open the Infinity file!"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:165
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:167
msgid ""
"Failed to open the Infinity file(%1)!\n"
"File may already be in use on the base."
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:696
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:818
msgid "Failed to open the Skylander file!"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:697
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:819
msgid ""
"Failed to open the Skylander file(%1)!\n"
"File may already be in use on the portal."
msgstr ""
-#: Source/Core/DolphinQt/ConvertDialog.cpp:472
+#: Source/Core/DolphinQt/ConvertDialog.cpp:474
msgid "Failed to open the input file \"%1\"."
msgstr "Не удалось открыть входной файл \"%1\"."
-#: Source/Core/DiscIO/CompressedBlob.cpp:282 Source/Core/DiscIO/FileBlob.cpp:53
-#: Source/Core/DiscIO/WIABlob.cpp:2037
+#: Source/Core/DiscIO/CompressedBlob.cpp:287 Source/Core/DiscIO/FileBlob.cpp:58
+#: Source/Core/DiscIO/WIABlob.cpp:2043
msgid ""
"Failed to open the output file \"{0}\".\n"
"Check that you have permissions to write the target folder and that the "
@@ -5217,35 +5341,35 @@ msgstr ""
msgid "Failed to read DFF file."
msgstr "Не удалось прочесть DFF-файл."
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:863
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:865
msgid "Failed to read from file."
msgstr "Не удалось прочитать данные из файла."
-#: Source/Core/DiscIO/CompressedBlob.cpp:373 Source/Core/DiscIO/FileBlob.cpp:93
-#: Source/Core/DiscIO/WIABlob.cpp:2052
+#: Source/Core/DiscIO/CompressedBlob.cpp:378 Source/Core/DiscIO/FileBlob.cpp:98
+#: Source/Core/DiscIO/WIABlob.cpp:2058
msgid "Failed to read from the input file \"{0}\"."
msgstr "Не удалось прочесть входной файл \"{0}\"."
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:423
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:641
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:424
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:642
msgid "Failed to read selected savefile(s) from memory card."
msgstr "Не удалось прочитать выбранные файлы сохранений с карты памяти."
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:173
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:175
msgid "Failed to read the Infinity file!"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:174
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:176
msgid ""
"Failed to read the Infinity file(%1)!\n"
"File was too small."
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:706
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:828
msgid "Failed to read the Skylander file!"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:707
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:829
msgid ""
"Failed to read the Skylander file(%1)!\n"
"File was too small."
@@ -5255,11 +5379,11 @@ msgstr ""
msgid "Failed to read {0}"
msgstr "Не удалось прочесть {0}"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:668
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:669
msgid "Failed to remove file."
msgstr "Не удалось удалить файл."
-#: Source/Core/DolphinQt/ConvertDialog.cpp:453
+#: Source/Core/DolphinQt/ConvertDialog.cpp:455
msgid ""
"Failed to remove junk data from file \"%1\".\n"
"\n"
@@ -5269,7 +5393,7 @@ msgstr ""
"\n"
"Вы хотите продолжить конвертацию без удаления мусорных данных?"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:647
+#: Source/Core/DolphinQt/GameList/GameList.cpp:658
msgid "Failed to remove this title from the NAND."
msgstr "Не удалось удалить этот продукт из NAND."
@@ -5289,27 +5413,34 @@ msgstr ""
msgid "Failed to reset NetPlay redirect folder. Verify your write permissions."
msgstr ""
-#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:241
+#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:237
msgid "Failed to save FIFO log."
msgstr "Не удалось сохранить лог FIFO."
-#: Source/Core/DolphinQt/MenuBar.cpp:1598
+#: Source/Core/DolphinQt/MenuBar.cpp:1585
msgid "Failed to save code map to path '%1'"
msgstr "Не удалось сохранить карту кода по пути '%1'"
-#: Source/Core/DolphinQt/MenuBar.cpp:1642
+#: Source/Core/DolphinQt/MenuBar.cpp:1629
msgid "Failed to save signature file '%1'"
msgstr "Не удалось сохранить файл сигнатуры '%1'"
-#: Source/Core/DolphinQt/MenuBar.cpp:1621
+#: Source/Core/DolphinQt/MenuBar.cpp:1608
msgid "Failed to save symbol map to path '%1'"
msgstr "Не удалось сохранить карту символов по пути '%1'"
-#: Source/Core/DolphinQt/MenuBar.cpp:1723
+#: Source/Core/DolphinQt/MenuBar.cpp:1710
msgid "Failed to save to signature file '%1'"
msgstr "Не удалось сохранить файл с сигнатурами '%1'"
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:225
+#: Source/Core/Core/Core.cpp:548
+msgid ""
+"Failed to sync SD card with folder. All changes made this session will be "
+"discarded on next boot if you do not manually re-issue a resync in Config > "
+"Wii > SD Card Settings > Convert File to Folder Now!"
+msgstr ""
+
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:226
msgid "Failed to uninstall pack: %1"
msgstr "Не удалось деактивировать набор: %1"
@@ -5329,9 +5460,9 @@ msgstr "Не удалось записать сохранение Wii."
msgid "Failed to write config file!"
msgstr "Не удалось записать файл с конфигурацией!"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:573
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:676
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:691
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:574
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:677
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:692
msgid "Failed to write modified memory card to disk."
msgstr "Не удалось записать изменённую карту памяти на диск."
@@ -5339,12 +5470,12 @@ msgstr "Не удалось записать изменённую карту п
msgid "Failed to write redirected save."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:447
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:448
msgid "Failed to write savefile to disk."
msgstr "Не удалось записать файл сохранения на диск."
-#: Source/Core/DiscIO/CompressedBlob.cpp:377 Source/Core/DiscIO/FileBlob.cpp:99
-#: Source/Core/DiscIO/WIABlob.cpp:2056
+#: Source/Core/DiscIO/CompressedBlob.cpp:382
+#: Source/Core/DiscIO/FileBlob.cpp:104 Source/Core/DiscIO/WIABlob.cpp:2062
msgid ""
"Failed to write the output file \"{0}\".\n"
"Check that you have enough space available on the target drive."
@@ -5352,22 +5483,22 @@ msgstr ""
"Не удалось записать выходной файл \"{0}\".\n"
"Проверьте, достаточно ли у вас свободного места на выбранном диске."
-#: Source/Core/DolphinQt/GameList/GameList.cpp:617
-#: Source/Core/DolphinQt/GameList/GameList.cpp:645
-#: Source/Core/DolphinQt/GameList/GameList.cpp:840
-#: Source/Core/DolphinQt/MenuBar.cpp:1074
+#: Source/Core/DolphinQt/GameList/GameList.cpp:626
+#: Source/Core/DolphinQt/GameList/GameList.cpp:656
+#: Source/Core/DolphinQt/GameList/GameList.cpp:853
+#: Source/Core/DolphinQt/MenuBar.cpp:1056
msgid "Failure"
msgstr "Ошибка"
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:183
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:184
msgid "Fair Input Delay"
msgstr "Честная задержка ввода"
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:199
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:200
msgid "Fallback Region"
msgstr "Резервный регион"
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:210
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:211
msgid "Fallback Region:"
msgstr "Резервный регион:"
@@ -5393,17 +5524,21 @@ msgstr ""
msgid "Field of View"
msgstr "Поле зрения"
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:233
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:235
msgid "Figure Number:"
msgstr ""
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:380
+msgid "Figure type"
+msgstr ""
+
#: Source/Core/DolphinQt/Config/InfoWidget.cpp:46
msgid "File Details"
msgstr "Информация о файле"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:991
+#: Source/Core/DolphinQt/GameList/GameList.cpp:1005
#: Source/Core/DolphinQt/GameList/GameListModel.cpp:229
-#: Source/Core/DolphinQt/MenuBar.cpp:652
+#: Source/Core/DolphinQt/MenuBar.cpp:644
msgid "File Format"
msgstr "Формат файла"
@@ -5415,20 +5550,20 @@ msgstr "Формат файла:"
msgid "File Info"
msgstr "Информация о файле"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:986
+#: Source/Core/DolphinQt/GameList/GameList.cpp:1000
#: Source/Core/DolphinQt/GameList/GameListModel.cpp:223
-#: Source/Core/DolphinQt/MenuBar.cpp:647
+#: Source/Core/DolphinQt/MenuBar.cpp:639
msgid "File Name"
msgstr "Имя файла"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:987
+#: Source/Core/DolphinQt/GameList/GameList.cpp:1001
#: Source/Core/DolphinQt/GameList/GameListModel.cpp:225
-#: Source/Core/DolphinQt/MenuBar.cpp:648
+#: Source/Core/DolphinQt/MenuBar.cpp:640
msgid "File Path"
msgstr "Путь к файлу"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:990
-#: Source/Core/DolphinQt/MenuBar.cpp:651
+#: Source/Core/DolphinQt/GameList/GameList.cpp:1004
+#: Source/Core/DolphinQt/MenuBar.cpp:643
msgid "File Size"
msgstr "Размер файла"
@@ -5436,15 +5571,15 @@ msgstr "Размер файла"
msgid "File Size:"
msgstr "Размер файла:"
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:349
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:352
msgid "File contained no codes."
msgstr "Файл не содержит кодов."
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:149
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:150
msgid "Filename"
msgstr "Имя файла"
-#: Source/Core/DiscIO/CompressedBlob.cpp:289
+#: Source/Core/DiscIO/CompressedBlob.cpp:294
msgid "Files opened, ready to compress."
msgstr "Файлы открыты и готовы к сжатию."
@@ -5456,13 +5591,13 @@ msgstr ""
"Не найдены следующие файлы, указанные в M3U-файле \"{0}\":\n"
"{1}"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:833
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:835
msgid "Filesize does not match any known GameCube Memory Card size."
msgstr ""
"Размер файла не совпадает с размером ни одной известной карты памяти "
"GameCube."
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:836
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:838
msgid "Filesize in header mismatches actual card size."
msgstr "Размер файла в заголовке не совпадает с настоящим размером карты."
@@ -5470,7 +5605,7 @@ msgstr "Размер файла в заголовке не совпадает с
msgid "Filesystem"
msgstr "Файловая система"
-#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:102
+#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:103
msgid "Filters"
msgstr "Фильтры"
@@ -5486,7 +5621,7 @@ msgstr "Искать &ранее"
msgid "Finish Calibration"
msgstr "Завершить калибровку"
-#: Source/Core/DolphinQt/WiiUpdate.cpp:109
+#: Source/Core/DolphinQt/WiiUpdate.cpp:110
msgid ""
"Finishing the update...\n"
"This can take a while."
@@ -5496,19 +5631,19 @@ msgstr ""
#. i18n: One of the elements in the Skylanders games. Japanese: 火. For official translations
#. in other languages, check the SuperChargers manual at https://support.activision.com/manuals
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:333
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:349
msgid "Fire"
msgstr ""
-#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:40
+#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:41
msgid "First Person"
msgstr "От первого лица"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:127
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:128
msgid "Fix Checksums"
msgstr "Исправить контр. суммы"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:690
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:691
msgid "Fix Checksums Failed"
msgstr "Не удалось исправить контрольные суммы"
@@ -5518,7 +5653,7 @@ msgstr ""
#. i18n: These are the kinds of flags that a CPU uses (e.g. carry),
#. not the kinds of flags that represent e.g. countries
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:166
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167
#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:87
msgid "Flags"
msgstr "Флаги"
@@ -5527,12 +5662,12 @@ msgstr "Флаги"
#. i18n: Floating-point (non-integer) number
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:138
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:198
-#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:152
+#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:153
#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97
msgid "Float"
msgstr "Float"
-#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:565
+#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:566
msgid "Follow &branch"
msgstr "Перейти к &ветке"
@@ -5554,35 +5689,35 @@ msgid ""
"\">refer to this page."
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:57
+#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:58
msgid "Force 16:9"
msgstr "Принудительно 16:9"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:117
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:152
msgid "Force 24-Bit Color"
msgstr "Принудительная 24-битная палитра"
-#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:57
+#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:58
msgid "Force 4:3"
msgstr "Принудительно 4:3"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:96
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:115
msgid "Force Linear"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:103
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:122
msgid "Force Linear and 16x Anisotropic"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:97
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:116
msgid "Force Linear and 2x Anisotropic"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:99
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:118
msgid "Force Linear and 4x Anisotropic"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:101
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:120
msgid "Force Linear and 8x Anisotropic"
msgstr ""
@@ -5590,7 +5725,7 @@ msgstr ""
msgid "Force Listen Port:"
msgstr "Принудительно слушать порт:"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:95
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:114
msgid "Force Nearest"
msgstr ""
@@ -5602,7 +5737,7 @@ msgstr ""
msgid "Forced on because %1 doesn't support geometry shaders."
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:474
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:556
msgid ""
"Forces the game to output graphics for any aspect ratio. Use with \"Aspect "
"Ratio\" set to \"Force 16:9\" to force 4:3-only games to run at 16:9."
@@ -5619,7 +5754,7 @@ msgstr ""
"
Если не уверены – оставьте выключенным."
"dolphin_emphasis>"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:503
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:585
msgid ""
"Forces the game to render the RGB color channels in 24-bit, thereby "
"increasing quality by reducing color banding.
Has no impact on "
@@ -5632,7 +5767,7 @@ msgstr ""
"
Если не уверены – оставьте включенным."
"dolphin_emphasis>"
-#: Source/Core/DolphinQt/ConvertDialog.cpp:59
+#: Source/Core/DolphinQt/ConvertDialog.cpp:60
msgid "Format:"
msgstr "Формат:"
@@ -5698,19 +5833,19 @@ msgstr "Кадров для записи:"
msgid "France"
msgstr "Франция"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:311
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:312
msgid "Free Blocks: %1"
msgstr "Свободных блоков: %1"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:312
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:313
msgid "Free Files: %1"
msgstr "Свободных файлов: %1"
-#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:42
+#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:43
msgid "Free Look Control Type"
msgstr "Тип управления свободным обзором"
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:468
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:470
msgid "Free Look Controller %1"
msgstr "Контроллер свободного обзора %1"
@@ -5718,7 +5853,7 @@ msgstr "Контроллер свободного обзора %1"
msgid "Free Look Settings"
msgstr "Настройки свободного обзора"
-#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:54
+#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:55
msgid ""
"Free Look allows for manipulation of the in-game camera. Different camera "
"types are available from the dropdown.
Disabling the "
@@ -3430,7 +3517,7 @@ msgid ""
"checked."
msgstr ""
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:96
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:97
msgid "Disc"
msgstr "Disk"
@@ -3464,25 +3551,25 @@ msgstr ""
msgid "Distance of travel from neutral position."
msgstr ""
-#: Source/Core/DolphinQt/Main.cpp:259
+#: Source/Core/DolphinQt/Main.cpp:264
msgid "Do you authorize Dolphin to report information to Dolphin's developers?"
msgstr ""
-#: Source/Core/DolphinQt/MainWindow.cpp:1692
+#: Source/Core/DolphinQt/MainWindow.cpp:1712
msgid "Do you want to add \"%1\" to the list of Game Paths?"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1241
+#: Source/Core/DolphinQt/MenuBar.cpp:1227
msgid "Do you want to clear the list of symbol names?"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:658
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:659
#, c-format
msgctxt ""
msgid "Do you want to delete the %n selected save file(s)?"
msgstr ""
-#: Source/Core/DolphinQt/MainWindow.cpp:933
+#: Source/Core/DolphinQt/MainWindow.cpp:935
msgid "Do you want to stop the current emulation?"
msgstr ""
@@ -3494,35 +3581,35 @@ msgstr ""
msgid "Dolby Pro Logic II Decoder"
msgstr ""
-#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:219
-#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:230
+#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:215
+#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:226
msgid "Dolphin FIFO Log (*.dff)"
msgstr ""
-#: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:327
+#: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:326
msgid "Dolphin Game Mod Preset"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1536
-#: Source/Core/DolphinQt/MenuBar.cpp:1553
-#: Source/Core/DolphinQt/MenuBar.cpp:1572
+#: Source/Core/DolphinQt/MenuBar.cpp:1523
+#: Source/Core/DolphinQt/MenuBar.cpp:1540
+#: Source/Core/DolphinQt/MenuBar.cpp:1559
msgid "Dolphin Map File (*.map)"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:73
+#: Source/Core/DolphinQt/MenuBar.cpp:74
msgid "Dolphin Signature CSV File"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:73
+#: Source/Core/DolphinQt/MenuBar.cpp:74
msgid "Dolphin Signature File"
msgstr ""
-#: Source/Core/DolphinQt/MainWindow.cpp:1772
-#: Source/Core/DolphinQt/MainWindow.cpp:1843
+#: Source/Core/DolphinQt/MainWindow.cpp:1823
+#: Source/Core/DolphinQt/MainWindow.cpp:1894
msgid "Dolphin TAS Movies (*.dtm)"
msgstr ""
-#: Source/Core/DolphinQt/ConvertDialog.cpp:326
+#: Source/Core/DolphinQt/ConvertDialog.cpp:327
msgid ""
"Dolphin can't convert NKit files to non-NKit files. Converting an NKit file "
"in Dolphin will result in another NKit file.\n"
@@ -3533,13 +3620,13 @@ msgid ""
"Do you want to continue anyway?"
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:279
+#: Source/Core/DolphinQt/GameList/GameList.cpp:280
msgid ""
"Dolphin could not find any GameCube/Wii ISOs or WADs.\n"
"Double-click here to set a games directory..."
msgstr ""
-#: Source/Core/DolphinQt/ConvertDialog.cpp:526
+#: Source/Core/DolphinQt/ConvertDialog.cpp:529
msgid "Dolphin failed to complete the requested action."
msgstr ""
@@ -3551,7 +3638,7 @@ msgstr ""
msgid "Dolphin is a free and open-source GameCube and Wii emulator."
msgstr ""
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:998
msgid "Dolphin is too old for traversal server"
msgstr ""
@@ -3565,7 +3652,7 @@ msgstr ""
msgid "Dolphin is unable to verify unlicensed discs."
msgstr ""
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:217
msgid ""
"Dolphin will use this for titles whose region cannot be determined "
"automatically."
@@ -3580,15 +3667,15 @@ msgstr ""
msgid "Domain"
msgstr ""
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:193
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:194
msgid "Don't Update"
msgstr ""
-#: Source/Core/DolphinQt/NKitWarningDialog.cpp:53
+#: Source/Core/DolphinQt/NKitWarningDialog.cpp:56
msgid "Don't show this again"
msgstr ""
-#: Source/Core/DiscIO/CompressedBlob.cpp:369
+#: Source/Core/DiscIO/CompressedBlob.cpp:374
msgid "Done compressing disc image."
msgstr ""
@@ -3601,37 +3688,37 @@ msgstr ""
#. i18n: A double precision floating point number
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:139
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:199
-#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:154
+#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:155
msgid "Double"
msgstr ""
#: Source/Core/Core/FreeLookManager.cpp:89
#: Source/Core/Core/HW/WiimoteEmu/Extension/Guitar.cpp:80
#: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:35
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:43
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:44
#: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:21
#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUAccelerometer.cpp:19
#: Source/Core/InputCommon/ControllerEmu/ControllerEmu.h:24
msgid "Down"
msgstr ""
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:86
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:87
msgid "Download Codes"
msgstr ""
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:88
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:89
msgid "Download Codes from the WiiRD Database"
msgstr ""
-#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:148
+#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:153
msgid "Download Game Covers from GameTDB.com for Use in Grid Mode"
msgstr ""
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:370
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:373
msgid "Download complete"
msgstr ""
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:371
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:374
msgid "Downloaded %1 codes. (added %2)"
msgstr ""
@@ -3654,7 +3741,7 @@ msgstr ""
msgid "Dual View"
msgstr ""
-#: Source/Core/Core/HW/EXI/EXI_Device.h:95
+#: Source/Core/Core/HW/EXI/EXI_Device.h:94
msgid "Dummy"
msgstr ""
@@ -3674,7 +3761,7 @@ msgstr ""
msgid "Dump &MRAM"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:814
+#: Source/Core/DolphinQt/MenuBar.cpp:806
msgid "Dump Audio"
msgstr ""
@@ -3686,7 +3773,7 @@ msgstr ""
msgid "Dump EFB Target"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:808
+#: Source/Core/DolphinQt/MenuBar.cpp:800
msgid "Dump Frames"
msgstr ""
@@ -3759,12 +3846,12 @@ msgid "Duration of Turbo Button Release (frames):"
msgstr ""
#: Source/Core/DiscIO/Enums.cpp:95
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174
msgid "Dutch"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:215
+#: Source/Core/DolphinQt/MenuBar.cpp:207
msgid "E&xit"
msgstr ""
@@ -3780,7 +3867,7 @@ msgid ""
"driver."
msgstr ""
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:185
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:186
msgid ""
"Each player sends their own inputs to the game, with equal buffer size for "
"all players, configured by the host.\n"
@@ -3794,7 +3881,7 @@ msgstr ""
#. i18n: One of the elements in the Skylanders games. Japanese: 土. For official translations
#. in other languages, check the SuperChargers manual at https://support.activision.com/manuals
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:336
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:352
msgid "Earth"
msgstr ""
@@ -3807,7 +3894,7 @@ msgstr ""
msgid "Edit Breakpoint"
msgstr ""
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:426
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:430
msgid "Edit..."
msgstr ""
@@ -3841,7 +3928,7 @@ msgstr ""
#. i18n: Elements are a trait of Skylanders figures. For official translations of this term,
#. check the Skylanders SuperChargers manual at https://support.activision.com/manuals
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:289
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:300
msgid "Element"
msgstr ""
@@ -3849,11 +3936,11 @@ msgstr ""
msgid "Embedded Frame Buffer (EFB)"
msgstr ""
-#: Source/Core/Core/State.cpp:541
+#: Source/Core/Core/State.cpp:629
msgid "Empty"
msgstr ""
-#: Source/Core/Core/Core.cpp:246
+#: Source/Core/Core/Core.cpp:247
msgid "Emu Thread already running"
msgstr ""
@@ -3861,15 +3948,15 @@ msgstr ""
msgid "Emulate Disc Speed"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:60
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:61
msgid "Emulate Infinity Base"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:146
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:157
msgid "Emulate Skylander Portal"
msgstr ""
-#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:110
+#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:111
msgid "Emulate the Wii's Bluetooth adapter"
msgstr ""
@@ -3879,11 +3966,11 @@ msgid ""
"Defaults to True"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:230
+#: Source/Core/DolphinQt/MenuBar.cpp:222
msgid "Emulated USB Devices"
msgstr ""
-#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:141
+#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:142
msgid "Emulated Wii Remote"
msgstr ""
@@ -3903,12 +3990,12 @@ msgstr ""
msgid "Emulation must be started to record."
msgstr ""
-#: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:29
-#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:33
+#: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:30
+#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:34
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:120
-#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:129
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:402
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:419
+#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:130
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:406
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:423
msgid "Enable"
msgstr ""
@@ -3916,6 +4003,10 @@ msgstr ""
msgid "Enable API Validation Layers"
msgstr ""
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:83
+msgid "Enable Achievement Badges"
+msgstr ""
+
#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:60
msgid "Enable Achievements"
msgstr ""
@@ -3924,15 +4015,19 @@ msgstr ""
msgid "Enable Audio Stretching"
msgstr ""
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:142
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:143
msgid "Enable Cheats"
msgstr ""
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:155
+#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:53
+msgid "Enable Controller Inpu&t"
+msgstr ""
+
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:161
msgid "Enable Custom RTC"
msgstr ""
-#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:149
+#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:154
msgid "Enable Debugging UI"
msgstr ""
@@ -3940,19 +4035,19 @@ msgstr ""
msgid "Enable Dual Core"
msgstr ""
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:139
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:140
msgid "Enable Dual Core (speedup)"
msgstr ""
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:88
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:94
msgid "Enable Emulated CPU Clock Override"
msgstr ""
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:118
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:124
msgid "Enable Emulated Memory Size Override"
msgstr ""
-#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:78
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:88
msgid "Enable Encore Achievements"
msgstr ""
@@ -3969,10 +4064,14 @@ msgid "Enable Leaderboards"
msgstr ""
#: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:88
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:66
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:68
msgid "Enable MMU"
msgstr ""
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:78
+msgid "Enable Progress Notifications"
+msgstr ""
+
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:156
msgid "Enable Progressive Scan"
msgstr ""
@@ -3986,15 +4085,15 @@ msgid "Enable Rich Presence"
msgstr ""
#: Source/Core/DolphinQt/Config/Mapping/GCPadWiiUConfigDialog.cpp:39
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:353
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:352
msgid "Enable Rumble"
msgstr ""
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:157
msgid "Enable Screen Saver"
msgstr ""
-#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:113
+#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:114
msgid "Enable Speaker Data"
msgstr ""
@@ -4002,11 +4101,11 @@ msgstr ""
msgid "Enable Unofficial Achievements"
msgstr ""
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:230
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:231
msgid "Enable Usage Statistics Reporting"
msgstr ""
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158
msgid "Enable WiiConnect24 via WiiLink"
msgstr ""
@@ -4014,10 +4113,17 @@ msgstr ""
msgid "Enable Wireframe"
msgstr ""
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:77
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:82
msgid "Enable Write-Back Cache (slow)"
msgstr ""
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:85
+msgid ""
+"Enable achievement badges.
Displays icons for the player, game, and "
+"achievements. Simple visual option, but will require a small amount of extra "
+"memory and time to download the images."
+msgstr ""
+
#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:64
msgid ""
"Enable competing in RetroAchievements leaderboards.
Displays a brief popup "
+"message whenever the player makes progress on an achievement that tracks an "
+"accumulated value, such as 60 out of 120 stars."
+msgstr ""
+
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:90
+msgid ""
"Enable unlocking achievements in Encore Mode.
Encore Mode re-enables "
"achievements the player has already unlocked on the site so that the player "
"will be notified if they meet the unlock conditions again, useful for custom "
@@ -4078,7 +4191,7 @@ msgid ""
"= Compatible, OFF = Fast)"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:514
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:596
msgid ""
"Enables detection of arbitrary mipmaps, which some games use for special "
"distance-based effects.
May have false positives that result in "
@@ -4089,11 +4202,12 @@ msgid ""
"dolphin_emphasis>"
msgstr ""
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:79
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:84
msgid ""
-"Enables emulation of the CPU write-back cache.\n"
-"Enabling will have a significant impact on performance.\n"
-"This should be left disabled unless absolutely needed."
+"Enables emulation of the CPU write-back cache. Enabling will have a "
+"significant impact on performance. This should be left disabled unless "
+"absolutely needed.
If unsure, leave this unchecked."
+""
msgstr ""
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:365
@@ -4111,7 +4225,7 @@ msgid ""
"this unchecked."
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:522
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:604
msgid ""
"Enables scRGB HDR output (if supported by your graphics backend and "
"monitor). Fullscreen might be required.
This gives post process "
@@ -4134,13 +4248,19 @@ msgid ""
msgstr ""
#: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:100
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:68
msgid ""
"Enables the Memory Management Unit, needed for some games. (ON = Compatible, "
"OFF = Fast)"
msgstr ""
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:193
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:70
+msgid ""
+"Enables the Memory Management Unit, needed for some games. (ON = Compatible, "
+"OFF = Fast)
If unsure, leave this unchecked."
+"dolphin_emphasis>"
+msgstr ""
+
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190
msgid ""
"Enables the WiiLink service for WiiConnect24 channels.\n"
"WiiLink is an alternate provider for the discontinued WiiConnect24 Channels "
@@ -4167,7 +4287,7 @@ msgstr ""
msgid "Encoding"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:615
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:616
msgid ""
"Encountered the following errors while opening save files:\n"
"%1\n"
@@ -4180,12 +4300,12 @@ msgid "Enet Didn't Initialize"
msgstr ""
#: Source/Core/DiscIO/Enums.cpp:80
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:85
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:169
msgid "English"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:59
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:61
#: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:61
msgid "Enhancements"
msgstr ""
@@ -4216,84 +4336,84 @@ msgstr ""
msgid "Enter the DNS server to use:"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1300
+#: Source/Core/DolphinQt/MenuBar.cpp:1286
msgid "Enter the RSO module address:"
msgstr ""
#: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:194
#: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:250
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:261
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:262
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386
#: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:265
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:343
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:349
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:346
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:352
#: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:46
-#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:521
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:256
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:295
-#: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:232
-#: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:259
-#: Source/Core/DolphinQt/ConvertDialog.cpp:424
-#: Source/Core/DolphinQt/ConvertDialog.cpp:471
-#: Source/Core/DolphinQt/ConvertDialog.cpp:525
+#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:539
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:255
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:296
+#: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:229
+#: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:256
+#: Source/Core/DolphinQt/ConvertDialog.cpp:426
+#: Source/Core/DolphinQt/ConvertDialog.cpp:473
+#: Source/Core/DolphinQt/ConvertDialog.cpp:528
#: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:255
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:638
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:644
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:653
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:665
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:684
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:690
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:705
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:713
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:737
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:744
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:637
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:643
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:652
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:664
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:683
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:689
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:704
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:712
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:736
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:743
#: Source/Core/DolphinQt/Debugger/RegisterColumn.cpp:86
#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:282
#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:431
-#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:241
-#: Source/Core/DolphinQt/GBAWidget.cpp:576
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:346
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:376
-#: Source/Core/DolphinQt/Main.cpp:209 Source/Core/DolphinQt/Main.cpp:225
-#: Source/Core/DolphinQt/Main.cpp:232 Source/Core/DolphinQt/MainWindow.cpp:295
-#: Source/Core/DolphinQt/MainWindow.cpp:303
-#: Source/Core/DolphinQt/MainWindow.cpp:1108
-#: Source/Core/DolphinQt/MainWindow.cpp:1494
-#: Source/Core/DolphinQt/MainWindow.cpp:1501
-#: Source/Core/DolphinQt/MainWindow.cpp:1561
-#: Source/Core/DolphinQt/MainWindow.cpp:1568
-#: Source/Core/DolphinQt/MainWindow.cpp:1670
-#: Source/Core/DolphinQt/MenuBar.cpp:1204
-#: Source/Core/DolphinQt/MenuBar.cpp:1284
+#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:237
+#: Source/Core/DolphinQt/GBAWidget.cpp:578
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:347
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:377
+#: Source/Core/DolphinQt/Main.cpp:211 Source/Core/DolphinQt/Main.cpp:227
+#: Source/Core/DolphinQt/Main.cpp:234 Source/Core/DolphinQt/MainWindow.cpp:297
+#: Source/Core/DolphinQt/MainWindow.cpp:305
+#: Source/Core/DolphinQt/MainWindow.cpp:1110
+#: Source/Core/DolphinQt/MainWindow.cpp:1507
+#: Source/Core/DolphinQt/MainWindow.cpp:1514
+#: Source/Core/DolphinQt/MainWindow.cpp:1574
+#: Source/Core/DolphinQt/MainWindow.cpp:1581
+#: Source/Core/DolphinQt/MainWindow.cpp:1690
+#: Source/Core/DolphinQt/MenuBar.cpp:1190
+#: Source/Core/DolphinQt/MenuBar.cpp:1270
+#: Source/Core/DolphinQt/MenuBar.cpp:1293
#: Source/Core/DolphinQt/MenuBar.cpp:1307
-#: Source/Core/DolphinQt/MenuBar.cpp:1321
-#: Source/Core/DolphinQt/MenuBar.cpp:1352
-#: Source/Core/DolphinQt/MenuBar.cpp:1376
-#: Source/Core/DolphinQt/MenuBar.cpp:1597
-#: Source/Core/DolphinQt/MenuBar.cpp:1608
-#: Source/Core/DolphinQt/MenuBar.cpp:1620
-#: Source/Core/DolphinQt/MenuBar.cpp:1642
-#: Source/Core/DolphinQt/MenuBar.cpp:1668
-#: Source/Core/DolphinQt/MenuBar.cpp:1722
-#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:315
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:477
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:738
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:980
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1098
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1108
-#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:334
-#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:340
-#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:347
+#: Source/Core/DolphinQt/MenuBar.cpp:1339
+#: Source/Core/DolphinQt/MenuBar.cpp:1363
+#: Source/Core/DolphinQt/MenuBar.cpp:1584
+#: Source/Core/DolphinQt/MenuBar.cpp:1595
+#: Source/Core/DolphinQt/MenuBar.cpp:1607
+#: Source/Core/DolphinQt/MenuBar.cpp:1629
+#: Source/Core/DolphinQt/MenuBar.cpp:1655
+#: Source/Core/DolphinQt/MenuBar.cpp:1709
+#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:316
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:479
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:740
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:982
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1100
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1110
+#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:332
+#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:338
+#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:345
#: Source/Core/DolphinQt/RenderWidget.cpp:123
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:203
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:224
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:423
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:439
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:460
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:481
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:525
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:562
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:585
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:204
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:225
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:433
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:449
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:470
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:491
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:535
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:572
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:595
#: Source/Core/DolphinQt/Translation.cpp:322
msgid "Error"
msgstr "Error"
@@ -4302,13 +4422,13 @@ msgstr "Error"
msgid "Error Opening Adapter: %1"
msgstr ""
-#: Source/Core/Core/NetPlayServer.cpp:1493
+#: Source/Core/Core/NetPlayServer.cpp:1497
msgid "Error collecting save data!"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:260
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:526
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:533
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:262
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:613
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:620
msgid "Error converting value"
msgstr ""
@@ -4320,15 +4440,15 @@ msgstr ""
msgid "Error obtaining session list: %1"
msgstr ""
-#: Source/Core/DolphinQt/MainWindow.cpp:296
+#: Source/Core/DolphinQt/MainWindow.cpp:298
msgid "Error occurred while loading some texture packs"
msgstr ""
-#: Source/Core/Core/NetPlayClient.cpp:1847
+#: Source/Core/Core/NetPlayClient.cpp:1851
msgid "Error processing codes."
msgstr ""
-#: Source/Core/Core/NetPlayClient.cpp:1819
+#: Source/Core/Core/NetPlayClient.cpp:1823
msgid "Error processing data."
msgstr ""
@@ -4336,11 +4456,11 @@ msgstr ""
msgid "Error reading file: {0}"
msgstr ""
-#: Source/Core/Core/NetPlayServer.cpp:1529
+#: Source/Core/Core/NetPlayServer.cpp:1533
msgid "Error synchronizing cheat codes!"
msgstr ""
-#: Source/Core/Core/NetPlayServer.cpp:1515
+#: Source/Core/Core/NetPlayServer.cpp:1519
msgid "Error synchronizing save data!"
msgstr ""
@@ -4411,7 +4531,7 @@ msgstr ""
msgid "Euphoria"
msgstr ""
-#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:282
+#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:274
#: Source/Core/UICommon/NetPlayIndex.cpp:249
msgid "Europe"
msgstr ""
@@ -4440,11 +4560,11 @@ msgstr ""
msgid "Excluded: %1"
msgstr ""
-#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:73
+#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:72
msgid "Excluded: 0"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:107
+#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108
msgid "Exclusive Ubershaders"
msgstr ""
@@ -4492,14 +4612,14 @@ msgstr ""
msgid "Experimental"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:294
+#: Source/Core/DolphinQt/MenuBar.cpp:286
msgid "Export All Wii Saves"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:422
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:447
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:492
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:499
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:423
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:448
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:493
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:500
msgid "Export Failed"
msgstr ""
@@ -4507,42 +4627,42 @@ msgstr ""
msgid "Export Recording"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:753
+#: Source/Core/DolphinQt/MenuBar.cpp:745
msgid "Export Recording..."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:437
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:438
msgid "Export Save File"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:454
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:455
msgid "Export Save Files"
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:470
+#: Source/Core/DolphinQt/GameList/GameList.cpp:473
msgid "Export Wii Save"
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:388
+#: Source/Core/DolphinQt/GameList/GameList.cpp:389
msgid "Export Wii Saves"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:117
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:118
msgid "Export as .&gcs..."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:118
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:119
msgid "Export as .&sav..."
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1133
+#: Source/Core/DolphinQt/MenuBar.cpp:1115
#, c-format
msgctxt ""
msgid "Exported %n save(s)"
msgstr ""
#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:268
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:432
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:434
#: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:47
msgid "Extension"
msgstr ""
@@ -4555,7 +4675,7 @@ msgstr ""
msgid "Extension Motion Simulation"
msgstr ""
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:520
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:522
msgid "External"
msgstr ""
@@ -4563,35 +4683,35 @@ msgstr ""
msgid "External Frame Buffer (XFB)"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:271
+#: Source/Core/DolphinQt/MenuBar.cpp:263
msgid "Extract Certificates from NAND"
msgstr ""
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:268
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:269
msgid "Extract Entire Disc..."
msgstr ""
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:292
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:293
msgid "Extract Entire Partition..."
msgstr ""
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:299
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:300
msgid "Extract File..."
msgstr ""
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:241
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:242
msgid "Extract Files..."
msgstr ""
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:251
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:252
msgid "Extract System Data..."
msgstr ""
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:355
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:356
msgid "Extracting All Files..."
msgstr ""
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:356
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357
msgid "Extracting Directory..."
msgstr ""
@@ -4601,7 +4721,7 @@ msgid "FD"
msgstr ""
#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:37
-#: Source/Core/DolphinQt/MenuBar.cpp:228
+#: Source/Core/DolphinQt/MenuBar.cpp:220
msgid "FIFO Player"
msgstr ""
@@ -4609,17 +4729,17 @@ msgstr ""
msgid "Failed loading XML."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:347
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:348
msgid ""
"Failed opening memory card:\n"
"%1"
msgstr ""
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:454
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:456
msgid "Failed to add this session to the NetPlay index: %1"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1669
+#: Source/Core/DolphinQt/MenuBar.cpp:1656
msgid "Failed to append to signature file '%1'"
msgstr ""
@@ -4627,11 +4747,11 @@ msgstr ""
msgid "Failed to claim interface for BT passthrough: {0}"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:574
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:676
msgid "Failed to clear Skylander!"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:575
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:677
msgid "Failed to clear the Skylander from slot(%1)!"
msgstr ""
@@ -4639,7 +4759,7 @@ msgstr ""
msgid "Failed to connect to Redump.org"
msgstr ""
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:981
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:983
msgid "Failed to connect to server: %1"
msgstr ""
@@ -4660,15 +4780,15 @@ msgstr ""
msgid "Failed to create DXGI factory"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:289
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:291
msgid "Failed to create Infinity file"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:678
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:798
msgid "Failed to create Skylander file!"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:679
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:799
msgid ""
"Failed to create Skylander file:\n"
"%1\n"
@@ -4684,7 +4804,7 @@ msgstr ""
msgid "Failed to delete NetPlay memory card. Verify your write permissions."
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:841
+#: Source/Core/DolphinQt/GameList/GameList.cpp:854
msgid "Failed to delete the selected file."
msgstr ""
@@ -4692,36 +4812,36 @@ msgstr ""
msgid "Failed to detach kernel driver for BT passthrough: {0}"
msgstr ""
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:343
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:346
msgid "Failed to download codes."
msgstr ""
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:738
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:737
msgid "Failed to dump %1: Can't open file"
msgstr ""
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:745
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:744
msgid "Failed to dump %1: Failed to write to file"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:488
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:489
msgctxt ""
msgid "Failed to export %n out of %1 save file(s)."
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:576
+#: Source/Core/DolphinQt/GameList/GameList.cpp:584
msgid "Failed to export the following save files:"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1204
+#: Source/Core/DolphinQt/MenuBar.cpp:1190
msgid "Failed to extract certificates from NAND"
msgstr ""
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386
msgid "Failed to extract file."
msgstr ""
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:261
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:262
msgid "Failed to extract system data."
msgstr ""
@@ -4736,29 +4856,29 @@ msgstr ""
msgid "Failed to find one or more D3D symbols"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:565
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:566
msgid "Failed to import \"%1\"."
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1109
+#: Source/Core/DolphinQt/MenuBar.cpp:1091
msgid ""
"Failed to import save file. Please launch the game once, then try again."
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1103
+#: Source/Core/DolphinQt/MenuBar.cpp:1085
msgid ""
"Failed to import save file. The given file appears to be corrupted or is not "
"a valid Wii save."
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1116
+#: Source/Core/DolphinQt/MenuBar.cpp:1098
msgid ""
"Failed to import save file. Your NAND may be corrupt, or something is "
"preventing access to files within it. Try repairing your NAND (Tools -> "
"Manage NAND -> Check NAND...), then import the save again."
msgstr ""
-#: Source/Core/DolphinQt/MainWindow.cpp:1108
+#: Source/Core/DolphinQt/MainWindow.cpp:1110
msgid "Failed to init core"
msgstr ""
@@ -4773,23 +4893,23 @@ msgstr ""
msgid "Failed to initialize renderer classes"
msgstr ""
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:204
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:205
msgid "Failed to install pack: %1"
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:619
-#: Source/Core/DolphinQt/MenuBar.cpp:1074
+#: Source/Core/DolphinQt/GameList/GameList.cpp:628
+#: Source/Core/DolphinQt/MenuBar.cpp:1056
msgid "Failed to install this title to the NAND."
msgstr ""
-#: Source/Core/DolphinQt/MainWindow.cpp:1594
+#: Source/Core/DolphinQt/MainWindow.cpp:1607
msgid ""
"Failed to listen on port %1. Is another instance of the NetPlay server "
"running?"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1321
-#: Source/Core/DolphinQt/MenuBar.cpp:1376
+#: Source/Core/DolphinQt/MenuBar.cpp:1307
+#: Source/Core/DolphinQt/MenuBar.cpp:1363
msgid "Failed to load RSO module at %1"
msgstr ""
@@ -4801,15 +4921,15 @@ msgstr ""
msgid "Failed to load dxgi.dll"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1608
+#: Source/Core/DolphinQt/MenuBar.cpp:1595
msgid "Failed to load map file '%1'"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:720
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:842
msgid "Failed to load the Skylander file!"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:721
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:843
msgid "Failed to load the Skylander file(%1)!\n"
msgstr ""
@@ -4823,8 +4943,12 @@ msgid ""
"update package."
msgstr ""
-#: Source/Core/DolphinQt/GBAWidget.cpp:576
-#: Source/Core/DolphinQt/MainWindow.cpp:1670
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:663
+msgid "Failed to modify Skylander!"
+msgstr ""
+
+#: Source/Core/DolphinQt/GBAWidget.cpp:578
+#: Source/Core/DolphinQt/MainWindow.cpp:1690
#: Source/Core/DolphinQt/RenderWidget.cpp:123
msgid "Failed to open '%1'"
msgstr ""
@@ -4851,40 +4975,40 @@ msgid ""
"Make sure there's an application assigned to open INI files."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:861
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:863
msgid "Failed to open file."
msgstr ""
-#: Source/Core/DolphinQt/MainWindow.cpp:1593
+#: Source/Core/DolphinQt/MainWindow.cpp:1606
msgid "Failed to open server"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:164
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:166
msgid "Failed to open the Infinity file!"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:165
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:167
msgid ""
"Failed to open the Infinity file(%1)!\n"
"File may already be in use on the base."
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:696
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:818
msgid "Failed to open the Skylander file!"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:697
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:819
msgid ""
"Failed to open the Skylander file(%1)!\n"
"File may already be in use on the portal."
msgstr ""
-#: Source/Core/DolphinQt/ConvertDialog.cpp:472
+#: Source/Core/DolphinQt/ConvertDialog.cpp:474
msgid "Failed to open the input file \"%1\"."
msgstr ""
-#: Source/Core/DiscIO/CompressedBlob.cpp:282 Source/Core/DiscIO/FileBlob.cpp:53
-#: Source/Core/DiscIO/WIABlob.cpp:2037
+#: Source/Core/DiscIO/CompressedBlob.cpp:287 Source/Core/DiscIO/FileBlob.cpp:58
+#: Source/Core/DiscIO/WIABlob.cpp:2043
msgid ""
"Failed to open the output file \"{0}\".\n"
"Check that you have permissions to write the target folder and that the "
@@ -4904,35 +5028,35 @@ msgstr ""
msgid "Failed to read DFF file."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:863
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:865
msgid "Failed to read from file."
msgstr ""
-#: Source/Core/DiscIO/CompressedBlob.cpp:373 Source/Core/DiscIO/FileBlob.cpp:93
-#: Source/Core/DiscIO/WIABlob.cpp:2052
+#: Source/Core/DiscIO/CompressedBlob.cpp:378 Source/Core/DiscIO/FileBlob.cpp:98
+#: Source/Core/DiscIO/WIABlob.cpp:2058
msgid "Failed to read from the input file \"{0}\"."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:423
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:641
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:424
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:642
msgid "Failed to read selected savefile(s) from memory card."
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:173
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:175
msgid "Failed to read the Infinity file!"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:174
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:176
msgid ""
"Failed to read the Infinity file(%1)!\n"
"File was too small."
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:706
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:828
msgid "Failed to read the Skylander file!"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:707
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:829
msgid ""
"Failed to read the Skylander file(%1)!\n"
"File was too small."
@@ -4942,18 +5066,18 @@ msgstr ""
msgid "Failed to read {0}"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:668
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:669
msgid "Failed to remove file."
msgstr ""
-#: Source/Core/DolphinQt/ConvertDialog.cpp:453
+#: Source/Core/DolphinQt/ConvertDialog.cpp:455
msgid ""
"Failed to remove junk data from file \"%1\".\n"
"\n"
"Would you like to convert it without removing junk data?"
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:647
+#: Source/Core/DolphinQt/GameList/GameList.cpp:658
msgid "Failed to remove this title from the NAND."
msgstr ""
@@ -4969,27 +5093,34 @@ msgstr ""
msgid "Failed to reset NetPlay redirect folder. Verify your write permissions."
msgstr ""
-#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:241
+#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:237
msgid "Failed to save FIFO log."
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1598
+#: Source/Core/DolphinQt/MenuBar.cpp:1585
msgid "Failed to save code map to path '%1'"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1642
+#: Source/Core/DolphinQt/MenuBar.cpp:1629
msgid "Failed to save signature file '%1'"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1621
+#: Source/Core/DolphinQt/MenuBar.cpp:1608
msgid "Failed to save symbol map to path '%1'"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1723
+#: Source/Core/DolphinQt/MenuBar.cpp:1710
msgid "Failed to save to signature file '%1'"
msgstr ""
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:225
+#: Source/Core/Core/Core.cpp:548
+msgid ""
+"Failed to sync SD card with folder. All changes made this session will be "
+"discarded on next boot if you do not manually re-issue a resync in Config > "
+"Wii > SD Card Settings > Convert File to Folder Now!"
+msgstr ""
+
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:226
msgid "Failed to uninstall pack: %1"
msgstr ""
@@ -5009,9 +5140,9 @@ msgstr ""
msgid "Failed to write config file!"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:573
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:676
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:691
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:574
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:677
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:692
msgid "Failed to write modified memory card to disk."
msgstr ""
@@ -5019,33 +5150,33 @@ msgstr ""
msgid "Failed to write redirected save."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:447
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:448
msgid "Failed to write savefile to disk."
msgstr ""
-#: Source/Core/DiscIO/CompressedBlob.cpp:377 Source/Core/DiscIO/FileBlob.cpp:99
-#: Source/Core/DiscIO/WIABlob.cpp:2056
+#: Source/Core/DiscIO/CompressedBlob.cpp:382
+#: Source/Core/DiscIO/FileBlob.cpp:104 Source/Core/DiscIO/WIABlob.cpp:2062
msgid ""
"Failed to write the output file \"{0}\".\n"
"Check that you have enough space available on the target drive."
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:617
-#: Source/Core/DolphinQt/GameList/GameList.cpp:645
-#: Source/Core/DolphinQt/GameList/GameList.cpp:840
-#: Source/Core/DolphinQt/MenuBar.cpp:1074
+#: Source/Core/DolphinQt/GameList/GameList.cpp:626
+#: Source/Core/DolphinQt/GameList/GameList.cpp:656
+#: Source/Core/DolphinQt/GameList/GameList.cpp:853
+#: Source/Core/DolphinQt/MenuBar.cpp:1056
msgid "Failure"
msgstr ""
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:183
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:184
msgid "Fair Input Delay"
msgstr ""
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:199
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:200
msgid "Fallback Region"
msgstr ""
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:210
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:211
msgid "Fallback Region:"
msgstr ""
@@ -5069,17 +5200,21 @@ msgstr ""
msgid "Field of View"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:233
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:235
msgid "Figure Number:"
msgstr ""
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:380
+msgid "Figure type"
+msgstr ""
+
#: Source/Core/DolphinQt/Config/InfoWidget.cpp:46
msgid "File Details"
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:991
+#: Source/Core/DolphinQt/GameList/GameList.cpp:1005
#: Source/Core/DolphinQt/GameList/GameListModel.cpp:229
-#: Source/Core/DolphinQt/MenuBar.cpp:652
+#: Source/Core/DolphinQt/MenuBar.cpp:644
msgid "File Format"
msgstr ""
@@ -5091,20 +5226,20 @@ msgstr ""
msgid "File Info"
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:986
+#: Source/Core/DolphinQt/GameList/GameList.cpp:1000
#: Source/Core/DolphinQt/GameList/GameListModel.cpp:223
-#: Source/Core/DolphinQt/MenuBar.cpp:647
+#: Source/Core/DolphinQt/MenuBar.cpp:639
msgid "File Name"
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:987
+#: Source/Core/DolphinQt/GameList/GameList.cpp:1001
#: Source/Core/DolphinQt/GameList/GameListModel.cpp:225
-#: Source/Core/DolphinQt/MenuBar.cpp:648
+#: Source/Core/DolphinQt/MenuBar.cpp:640
msgid "File Path"
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:990
-#: Source/Core/DolphinQt/MenuBar.cpp:651
+#: Source/Core/DolphinQt/GameList/GameList.cpp:1004
+#: Source/Core/DolphinQt/MenuBar.cpp:643
msgid "File Size"
msgstr ""
@@ -5112,15 +5247,15 @@ msgstr ""
msgid "File Size:"
msgstr ""
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:349
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:352
msgid "File contained no codes."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:149
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:150
msgid "Filename"
msgstr ""
-#: Source/Core/DiscIO/CompressedBlob.cpp:289
+#: Source/Core/DiscIO/CompressedBlob.cpp:294
msgid "Files opened, ready to compress."
msgstr ""
@@ -5130,11 +5265,11 @@ msgid ""
"{1}"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:833
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:835
msgid "Filesize does not match any known GameCube Memory Card size."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:836
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:838
msgid "Filesize in header mismatches actual card size."
msgstr ""
@@ -5142,7 +5277,7 @@ msgstr ""
msgid "Filesystem"
msgstr ""
-#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:102
+#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:103
msgid "Filters"
msgstr ""
@@ -5158,7 +5293,7 @@ msgstr ""
msgid "Finish Calibration"
msgstr ""
-#: Source/Core/DolphinQt/WiiUpdate.cpp:109
+#: Source/Core/DolphinQt/WiiUpdate.cpp:110
msgid ""
"Finishing the update...\n"
"This can take a while."
@@ -5166,19 +5301,19 @@ msgstr ""
#. i18n: One of the elements in the Skylanders games. Japanese: 火. For official translations
#. in other languages, check the SuperChargers manual at https://support.activision.com/manuals
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:333
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:349
msgid "Fire"
msgstr ""
-#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:40
+#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:41
msgid "First Person"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:127
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:128
msgid "Fix Checksums"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:690
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:691
msgid "Fix Checksums Failed"
msgstr ""
@@ -5188,7 +5323,7 @@ msgstr ""
#. i18n: These are the kinds of flags that a CPU uses (e.g. carry),
#. not the kinds of flags that represent e.g. countries
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:166
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167
#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:87
msgid "Flags"
msgstr ""
@@ -5197,12 +5332,12 @@ msgstr ""
#. i18n: Floating-point (non-integer) number
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:138
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:198
-#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:152
+#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:153
#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97
msgid "Float"
msgstr ""
-#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:565
+#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:566
msgid "Follow &branch"
msgstr ""
@@ -5222,35 +5357,35 @@ msgid ""
"\">refer to this page."
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:57
+#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:58
msgid "Force 16:9"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:117
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:152
msgid "Force 24-Bit Color"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:57
+#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:58
msgid "Force 4:3"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:96
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:115
msgid "Force Linear"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:103
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:122
msgid "Force Linear and 16x Anisotropic"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:97
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:116
msgid "Force Linear and 2x Anisotropic"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:99
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:118
msgid "Force Linear and 4x Anisotropic"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:101
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:120
msgid "Force Linear and 8x Anisotropic"
msgstr ""
@@ -5258,7 +5393,7 @@ msgstr ""
msgid "Force Listen Port:"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:95
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:114
msgid "Force Nearest"
msgstr ""
@@ -5270,7 +5405,7 @@ msgstr ""
msgid "Forced on because %1 doesn't support geometry shaders."
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:474
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:556
msgid ""
"Forces the game to output graphics for any aspect ratio. Use with \"Aspect "
"Ratio\" set to \"Force 16:9\" to force 4:3-only games to run at 16:9."
@@ -5280,7 +5415,7 @@ msgid ""
""
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:503
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:585
msgid ""
"Forces the game to render the RGB color channels in 24-bit, thereby "
"increasing quality by reducing color banding.
Has no impact on "
@@ -5288,7 +5423,7 @@ msgid ""
"unsure, leave this checked."
msgstr ""
-#: Source/Core/DolphinQt/ConvertDialog.cpp:59
+#: Source/Core/DolphinQt/ConvertDialog.cpp:60
msgid "Format:"
msgstr ""
@@ -5354,19 +5489,19 @@ msgstr ""
msgid "France"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:311
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:312
msgid "Free Blocks: %1"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:312
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:313
msgid "Free Files: %1"
msgstr ""
-#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:42
+#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:43
msgid "Free Look Control Type"
msgstr ""
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:468
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:470
msgid "Free Look Controller %1"
msgstr ""
@@ -5374,7 +5509,7 @@ msgstr ""
msgid "Free Look Settings"
msgstr ""
-#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:54
+#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:55
msgid ""
"Free Look allows for manipulation of the in-game camera. Different camera "
"types are available from the dropdown.
Om du är "
"osäker kan du lämna detta omarkerat."
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:508
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:590
msgid ""
"Disables the blending of adjacent rows when copying the EFB. This is known "
"in some games as \"deflickering\" or \"smoothing\".
Disabling the "
@@ -3678,7 +3765,7 @@ msgstr ""
"skarpare. Orsakar få grafiska problem.
Om du är "
"osäker kan du lämna detta markerat."
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:96
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:97
msgid "Disc"
msgstr "Skiva"
@@ -3716,26 +3803,26 @@ msgstr "Avstånd"
msgid "Distance of travel from neutral position."
msgstr "Förflyttningsavstånd från neutral position."
-#: Source/Core/DolphinQt/Main.cpp:259
+#: Source/Core/DolphinQt/Main.cpp:264
msgid "Do you authorize Dolphin to report information to Dolphin's developers?"
msgstr ""
"Godkänner du att Dolphin rapporterar information till Dolphins utvecklare?"
-#: Source/Core/DolphinQt/MainWindow.cpp:1692
+#: Source/Core/DolphinQt/MainWindow.cpp:1712
msgid "Do you want to add \"%1\" to the list of Game Paths?"
msgstr "Vill du lägga till \"%1\" i listan av spelsökvägar?"
-#: Source/Core/DolphinQt/MenuBar.cpp:1241
+#: Source/Core/DolphinQt/MenuBar.cpp:1227
msgid "Do you want to clear the list of symbol names?"
msgstr "Vill du tömma symbolnamnlistan?"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:658
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:659
#, c-format
msgctxt ""
msgid "Do you want to delete the %n selected save file(s)?"
msgstr "Vill du radera denna/dessa %n markerade sparfil(er)?"
-#: Source/Core/DolphinQt/MainWindow.cpp:933
+#: Source/Core/DolphinQt/MainWindow.cpp:935
msgid "Do you want to stop the current emulation?"
msgstr "Vill du stoppa den aktuella emuleringen?"
@@ -3747,35 +3834,35 @@ msgstr "Vill du försöka reparera NAND-minnet?"
msgid "Dolby Pro Logic II Decoder"
msgstr "Dolby Pro Logic II-dekoder"
-#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:219
-#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:230
+#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:215
+#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:226
msgid "Dolphin FIFO Log (*.dff)"
msgstr "Dolphin-FIFO-logg (*.dff)"
-#: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:327
+#: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:326
msgid "Dolphin Game Mod Preset"
msgstr "Förinställd Dolphin-spelmod"
-#: Source/Core/DolphinQt/MenuBar.cpp:1536
-#: Source/Core/DolphinQt/MenuBar.cpp:1553
-#: Source/Core/DolphinQt/MenuBar.cpp:1572
+#: Source/Core/DolphinQt/MenuBar.cpp:1523
+#: Source/Core/DolphinQt/MenuBar.cpp:1540
+#: Source/Core/DolphinQt/MenuBar.cpp:1559
msgid "Dolphin Map File (*.map)"
msgstr "Dolphin-map-fil (*.map)"
-#: Source/Core/DolphinQt/MenuBar.cpp:73
+#: Source/Core/DolphinQt/MenuBar.cpp:74
msgid "Dolphin Signature CSV File"
msgstr "Dolphin-signatur-CSV-fil"
-#: Source/Core/DolphinQt/MenuBar.cpp:73
+#: Source/Core/DolphinQt/MenuBar.cpp:74
msgid "Dolphin Signature File"
msgstr "Dolphin-signaturfil"
-#: Source/Core/DolphinQt/MainWindow.cpp:1772
-#: Source/Core/DolphinQt/MainWindow.cpp:1843
+#: Source/Core/DolphinQt/MainWindow.cpp:1823
+#: Source/Core/DolphinQt/MainWindow.cpp:1894
msgid "Dolphin TAS Movies (*.dtm)"
msgstr "Dolphin-TAS-filmer (*.dtm)"
-#: Source/Core/DolphinQt/ConvertDialog.cpp:326
+#: Source/Core/DolphinQt/ConvertDialog.cpp:327
msgid ""
"Dolphin can't convert NKit files to non-NKit files. Converting an NKit file "
"in Dolphin will result in another NKit file.\n"
@@ -3794,7 +3881,7 @@ msgstr ""
"\n"
"Vill du fortsätta ändå?"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:279
+#: Source/Core/DolphinQt/GameList/GameList.cpp:280
msgid ""
"Dolphin could not find any GameCube/Wii ISOs or WADs.\n"
"Double-click here to set a games directory..."
@@ -3802,7 +3889,7 @@ msgstr ""
"Dolphin kunde inte hitta några ISO/WAD-filer för GameCube/Wii.\n"
"Dubbelklicka här för att ställa in en spelmapp…"
-#: Source/Core/DolphinQt/ConvertDialog.cpp:526
+#: Source/Core/DolphinQt/ConvertDialog.cpp:529
msgid "Dolphin failed to complete the requested action."
msgstr "Dolphin kunde inte slutföra den begärda åtgärden."
@@ -3815,7 +3902,7 @@ msgid "Dolphin is a free and open-source GameCube and Wii emulator."
msgstr ""
"Dolphin är en GameCube- och Wii-emulator som är open source och fri mjukvara."
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:998
msgid "Dolphin is too old for traversal server"
msgstr "Dolphin är för gammal för traverseringsservern"
@@ -3831,7 +3918,7 @@ msgstr ""
msgid "Dolphin is unable to verify unlicensed discs."
msgstr "Dolphin kan inte verifiera olicensierade skivor."
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:217
msgid ""
"Dolphin will use this for titles whose region cannot be determined "
"automatically."
@@ -3847,15 +3934,15 @@ msgstr "Dolphins fusksystem är avstängt just nu."
msgid "Domain"
msgstr "Domän"
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:193
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:194
msgid "Don't Update"
msgstr "Uppdatera inte"
-#: Source/Core/DolphinQt/NKitWarningDialog.cpp:53
+#: Source/Core/DolphinQt/NKitWarningDialog.cpp:56
msgid "Don't show this again"
msgstr "Visa inte detta igen"
-#: Source/Core/DiscIO/CompressedBlob.cpp:369
+#: Source/Core/DiscIO/CompressedBlob.cpp:374
msgid "Done compressing disc image."
msgstr "Skivavbildningen har komprimerats."
@@ -3868,37 +3955,37 @@ msgstr "Dörrar låsta"
#. i18n: A double precision floating point number
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:139
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:199
-#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:154
+#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:155
msgid "Double"
msgstr "Double"
#: Source/Core/Core/FreeLookManager.cpp:89
#: Source/Core/Core/HW/WiimoteEmu/Extension/Guitar.cpp:80
#: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:35
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:43
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:44
#: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:21
#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUAccelerometer.cpp:19
#: Source/Core/InputCommon/ControllerEmu/ControllerEmu.h:24
msgid "Down"
msgstr "Ner"
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:86
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:87
msgid "Download Codes"
msgstr "Ladda ner koder"
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:88
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:89
msgid "Download Codes from the WiiRD Database"
msgstr "Ladda ner koder från WiiRD-databasen"
-#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:148
+#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:153
msgid "Download Game Covers from GameTDB.com for Use in Grid Mode"
msgstr "Ladda ned spelomslag från GameTDB.com att använda i rutnätsläget"
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:370
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:373
msgid "Download complete"
msgstr "Nedladdning slutförd"
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:371
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:374
msgid "Downloaded %1 codes. (added %2)"
msgstr "Laddade ner %1 koder. (Lade till %2)"
@@ -3921,7 +4008,7 @@ msgstr "Dubbla kärnor"
msgid "Dual View"
msgstr "Dubbel vy"
-#: Source/Core/Core/HW/EXI/EXI_Device.h:95
+#: Source/Core/Core/HW/EXI/EXI_Device.h:94
msgid "Dummy"
msgstr "Dummy"
@@ -3941,7 +4028,7 @@ msgstr "Dumpa &FakeVMEM"
msgid "Dump &MRAM"
msgstr "Dumpa &MRAM"
-#: Source/Core/DolphinQt/MenuBar.cpp:814
+#: Source/Core/DolphinQt/MenuBar.cpp:806
msgid "Dump Audio"
msgstr "Dumpa ljud"
@@ -3953,7 +4040,7 @@ msgstr "Dumpa bastexturer"
msgid "Dump EFB Target"
msgstr "Dumpa EFB-mål"
-#: Source/Core/DolphinQt/MenuBar.cpp:808
+#: Source/Core/DolphinQt/MenuBar.cpp:800
msgid "Dump Frames"
msgstr "Dumpa bildrutor"
@@ -4035,12 +4122,12 @@ msgid "Duration of Turbo Button Release (frames):"
msgstr "Varaktighet för turboknappsläppning (bildrutor):"
#: Source/Core/DiscIO/Enums.cpp:95
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174
msgid "Dutch"
msgstr "Nederländska"
-#: Source/Core/DolphinQt/MenuBar.cpp:215
+#: Source/Core/DolphinQt/MenuBar.cpp:207
msgid "E&xit"
msgstr "A&vsluta"
@@ -4060,7 +4147,7 @@ msgstr ""
"krävs förmodligen en omstart nu för att få Windows att hitta den nya "
"drivrutinen."
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:185
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:186
msgid ""
"Each player sends their own inputs to the game, with equal buffer size for "
"all players, configured by the host.\n"
@@ -4078,7 +4165,7 @@ msgstr "Tidiga minnesuppdateringar"
#. i18n: One of the elements in the Skylanders games. Japanese: 土. For official translations
#. in other languages, check the SuperChargers manual at https://support.activision.com/manuals
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:336
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:352
msgid "Earth"
msgstr "Jord"
@@ -4091,7 +4178,7 @@ msgstr "Östasien"
msgid "Edit Breakpoint"
msgstr "Redigera brytpunkt"
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:426
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:430
msgid "Edit..."
msgstr "Redigera..."
@@ -4125,7 +4212,7 @@ msgstr "Mata ut skiva"
#. i18n: Elements are a trait of Skylanders figures. For official translations of this term,
#. check the Skylanders SuperChargers manual at https://support.activision.com/manuals
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:289
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:300
msgid "Element"
msgstr "Element"
@@ -4133,11 +4220,11 @@ msgstr "Element"
msgid "Embedded Frame Buffer (EFB)"
msgstr "Inbäddad bildrutebuffert (EFB)"
-#: Source/Core/Core/State.cpp:541
+#: Source/Core/Core/State.cpp:629
msgid "Empty"
msgstr "Tom"
-#: Source/Core/Core/Core.cpp:246
+#: Source/Core/Core/Core.cpp:247
msgid "Emu Thread already running"
msgstr "Emuleringstråd körs redan"
@@ -4145,15 +4232,15 @@ msgstr "Emuleringstråd körs redan"
msgid "Emulate Disc Speed"
msgstr "Emulera skivhastighet"
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:60
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:61
msgid "Emulate Infinity Base"
msgstr "Emulera Infinitybas"
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:146
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:157
msgid "Emulate Skylander Portal"
msgstr "Emulera Skylanderportal"
-#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:110
+#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:111
msgid "Emulate the Wii's Bluetooth adapter"
msgstr "Emulera Wii:ns Bluetoothadapter"
@@ -4163,11 +4250,11 @@ msgid ""
"Defaults to True"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:230
+#: Source/Core/DolphinQt/MenuBar.cpp:222
msgid "Emulated USB Devices"
msgstr "Emulerade USB-enheter"
-#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:141
+#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:142
msgid "Emulated Wii Remote"
msgstr "Emulerad Wii-fjärrkontroll"
@@ -4190,12 +4277,12 @@ msgstr "Emuleringshastighet"
msgid "Emulation must be started to record."
msgstr "Emulering måste ha startats för att spela in."
-#: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:29
-#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:33
+#: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:30
+#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:34
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:120
-#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:129
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:402
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:419
+#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:130
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:406
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:423
msgid "Enable"
msgstr "Aktivera"
@@ -4203,6 +4290,10 @@ msgstr "Aktivera"
msgid "Enable API Validation Layers"
msgstr "Aktivera API-valideringslager"
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:83
+msgid "Enable Achievement Badges"
+msgstr ""
+
#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:60
msgid "Enable Achievements"
msgstr "Aktivera prestationer"
@@ -4211,15 +4302,19 @@ msgstr "Aktivera prestationer"
msgid "Enable Audio Stretching"
msgstr "Aktivera ljudsträckning"
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:142
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:143
msgid "Enable Cheats"
msgstr "Aktivera fusk"
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:155
+#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:53
+msgid "Enable Controller Inpu&t"
+msgstr ""
+
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:161
msgid "Enable Custom RTC"
msgstr "Aktivera egen realtidsklocka"
-#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:149
+#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:154
msgid "Enable Debugging UI"
msgstr "Aktivera felsökningsgränssnitt"
@@ -4227,19 +4322,19 @@ msgstr "Aktivera felsökningsgränssnitt"
msgid "Enable Dual Core"
msgstr "Aktivera dubbla kärnor"
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:139
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:140
msgid "Enable Dual Core (speedup)"
msgstr "Aktivera dubbla kärnor (höjer prestandan)"
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:88
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:94
msgid "Enable Emulated CPU Clock Override"
msgstr "Åsidosätt den emulerade CPU:ns hastighet"
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:118
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:124
msgid "Enable Emulated Memory Size Override"
msgstr "Åsidosätt den emulerade minnesstorleken"
-#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:78
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:88
msgid "Enable Encore Achievements"
msgstr "Aktivera reprisprestationer"
@@ -4256,10 +4351,14 @@ msgid "Enable Leaderboards"
msgstr ""
#: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:88
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:66
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:68
msgid "Enable MMU"
msgstr "Aktivera MMU"
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:78
+msgid "Enable Progress Notifications"
+msgstr ""
+
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:156
msgid "Enable Progressive Scan"
msgstr "Aktivera Progressive scan"
@@ -4273,15 +4372,15 @@ msgid "Enable Rich Presence"
msgstr ""
#: Source/Core/DolphinQt/Config/Mapping/GCPadWiiUConfigDialog.cpp:39
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:353
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:352
msgid "Enable Rumble"
msgstr "Vibration"
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:157
msgid "Enable Screen Saver"
msgstr "Aktivera skärmsläckare"
-#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:113
+#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:114
msgid "Enable Speaker Data"
msgstr "Aktivera högtalardata"
@@ -4289,11 +4388,11 @@ msgstr "Aktivera högtalardata"
msgid "Enable Unofficial Achievements"
msgstr "Aktivera inofficiella prestationer"
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:230
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:231
msgid "Enable Usage Statistics Reporting"
msgstr "Aktivera statistikrapportering"
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158
msgid "Enable WiiConnect24 via WiiLink"
msgstr "Aktivera WiiConnect24 via WiiLink"
@@ -4301,10 +4400,17 @@ msgstr "Aktivera WiiConnect24 via WiiLink"
msgid "Enable Wireframe"
msgstr "Aktivera Wireframe"
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:77
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:82
msgid "Enable Write-Back Cache (slow)"
msgstr "Aktivera cache för skrivningar (långsamt)"
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:85
+msgid ""
+"Enable achievement badges.
Displays icons for the player, game, and "
+"achievements. Simple visual option, but will require a small amount of extra "
+"memory and time to download the images."
+msgstr ""
+
#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:64
msgid ""
"Enable competing in RetroAchievements leaderboards.
Displays a brief popup "
+"message whenever the player makes progress on an achievement that tracks an "
+"accumulated value, such as 60 out of 120 stars."
+msgstr ""
+
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:90
+msgid ""
"Enable unlocking achievements in Encore Mode.
Encore Mode re-enables "
"achievements the player has already unlocked on the site so that the player "
"will be notified if they meet the unlock conditions again, useful for custom "
@@ -4375,7 +4488,7 @@ msgstr ""
"Aktiverar beräkning av Floating Point Result Flag. Behövs för vissa spel. "
"(PÅ = kompatibel, AV = snabb)"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:514
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:596
msgid ""
"Enables detection of arbitrary mipmaps, which some games use for special "
"distance-based effects.
May have false positives that result in "
@@ -4394,15 +4507,13 @@ msgstr ""
"texturdekodning.
Om du är osäker kan du lämna detta "
"markerat."
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:79
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:84
msgid ""
-"Enables emulation of the CPU write-back cache.\n"
-"Enabling will have a significant impact on performance.\n"
-"This should be left disabled unless absolutely needed."
+"Enables emulation of the CPU write-back cache. Enabling will have a "
+"significant impact on performance. This should be left disabled unless "
+"absolutely needed.
If unsure, leave this unchecked."
+""
msgstr ""
-"Emulerar CPU:ns cache när data ska skrivas till minnet.\n"
-"Att aktivera detta har stor påverkan på prestandan.\n"
-"Aktivera bara detta om det absolut behövs."
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:365
msgid ""
@@ -4427,7 +4538,7 @@ msgstr ""
"flesta spel har inga problem med detta.
Om du är "
"osäker kan du lämna detta omarkerat."
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:522
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:604
msgid ""
"Enables scRGB HDR output (if supported by your graphics backend and "
"monitor). Fullscreen might be required.
This gives post process "
@@ -4461,7 +4572,6 @@ msgstr ""
"detta omarkerat."
#: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:100
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:68
msgid ""
"Enables the Memory Management Unit, needed for some games. (ON = Compatible, "
"OFF = Fast)"
@@ -4469,7 +4579,14 @@ msgstr ""
"Aktiverar minneshanterarenheten som behövs för några spel. (PÅ = Kompatibel, "
"AV = Snabb)"
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:193
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:70
+msgid ""
+"Enables the Memory Management Unit, needed for some games. (ON = Compatible, "
+"OFF = Fast)
If unsure, leave this unchecked."
+"dolphin_emphasis>"
+msgstr ""
+
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190
msgid ""
"Enables the WiiLink service for WiiConnect24 channels.\n"
"WiiLink is an alternate provider for the discontinued WiiConnect24 Channels "
@@ -4507,7 +4624,7 @@ msgstr ""
msgid "Encoding"
msgstr "Teckenkodning"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:615
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:616
msgid ""
"Encountered the following errors while opening save files:\n"
"%1\n"
@@ -4524,12 +4641,12 @@ msgid "Enet Didn't Initialize"
msgstr "Enet initialiserades inte"
#: Source/Core/DiscIO/Enums.cpp:80
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:85
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:169
msgid "English"
msgstr "Engelska"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:59
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:61
#: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:61
msgid "Enhancements"
msgstr "Förbättringar"
@@ -4560,84 +4677,84 @@ msgstr "Ange lösenord"
msgid "Enter the DNS server to use:"
msgstr "Ange DNS-server:"
-#: Source/Core/DolphinQt/MenuBar.cpp:1300
+#: Source/Core/DolphinQt/MenuBar.cpp:1286
msgid "Enter the RSO module address:"
msgstr "Ange RSO-moduladressen:"
#: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:194
#: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:250
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:261
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:262
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386
#: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:265
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:343
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:349
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:346
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:352
#: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:46
-#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:521
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:256
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:295
-#: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:232
-#: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:259
-#: Source/Core/DolphinQt/ConvertDialog.cpp:424
-#: Source/Core/DolphinQt/ConvertDialog.cpp:471
-#: Source/Core/DolphinQt/ConvertDialog.cpp:525
+#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:539
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:255
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:296
+#: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:229
+#: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:256
+#: Source/Core/DolphinQt/ConvertDialog.cpp:426
+#: Source/Core/DolphinQt/ConvertDialog.cpp:473
+#: Source/Core/DolphinQt/ConvertDialog.cpp:528
#: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:255
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:638
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:644
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:653
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:665
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:684
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:690
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:705
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:713
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:737
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:744
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:637
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:643
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:652
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:664
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:683
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:689
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:704
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:712
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:736
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:743
#: Source/Core/DolphinQt/Debugger/RegisterColumn.cpp:86
#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:282
#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:431
-#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:241
-#: Source/Core/DolphinQt/GBAWidget.cpp:576
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:346
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:376
-#: Source/Core/DolphinQt/Main.cpp:209 Source/Core/DolphinQt/Main.cpp:225
-#: Source/Core/DolphinQt/Main.cpp:232 Source/Core/DolphinQt/MainWindow.cpp:295
-#: Source/Core/DolphinQt/MainWindow.cpp:303
-#: Source/Core/DolphinQt/MainWindow.cpp:1108
-#: Source/Core/DolphinQt/MainWindow.cpp:1494
-#: Source/Core/DolphinQt/MainWindow.cpp:1501
-#: Source/Core/DolphinQt/MainWindow.cpp:1561
-#: Source/Core/DolphinQt/MainWindow.cpp:1568
-#: Source/Core/DolphinQt/MainWindow.cpp:1670
-#: Source/Core/DolphinQt/MenuBar.cpp:1204
-#: Source/Core/DolphinQt/MenuBar.cpp:1284
+#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:237
+#: Source/Core/DolphinQt/GBAWidget.cpp:578
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:347
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:377
+#: Source/Core/DolphinQt/Main.cpp:211 Source/Core/DolphinQt/Main.cpp:227
+#: Source/Core/DolphinQt/Main.cpp:234 Source/Core/DolphinQt/MainWindow.cpp:297
+#: Source/Core/DolphinQt/MainWindow.cpp:305
+#: Source/Core/DolphinQt/MainWindow.cpp:1110
+#: Source/Core/DolphinQt/MainWindow.cpp:1507
+#: Source/Core/DolphinQt/MainWindow.cpp:1514
+#: Source/Core/DolphinQt/MainWindow.cpp:1574
+#: Source/Core/DolphinQt/MainWindow.cpp:1581
+#: Source/Core/DolphinQt/MainWindow.cpp:1690
+#: Source/Core/DolphinQt/MenuBar.cpp:1190
+#: Source/Core/DolphinQt/MenuBar.cpp:1270
+#: Source/Core/DolphinQt/MenuBar.cpp:1293
#: Source/Core/DolphinQt/MenuBar.cpp:1307
-#: Source/Core/DolphinQt/MenuBar.cpp:1321
-#: Source/Core/DolphinQt/MenuBar.cpp:1352
-#: Source/Core/DolphinQt/MenuBar.cpp:1376
-#: Source/Core/DolphinQt/MenuBar.cpp:1597
-#: Source/Core/DolphinQt/MenuBar.cpp:1608
-#: Source/Core/DolphinQt/MenuBar.cpp:1620
-#: Source/Core/DolphinQt/MenuBar.cpp:1642
-#: Source/Core/DolphinQt/MenuBar.cpp:1668
-#: Source/Core/DolphinQt/MenuBar.cpp:1722
-#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:315
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:477
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:738
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:980
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1098
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1108
-#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:334
-#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:340
-#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:347
+#: Source/Core/DolphinQt/MenuBar.cpp:1339
+#: Source/Core/DolphinQt/MenuBar.cpp:1363
+#: Source/Core/DolphinQt/MenuBar.cpp:1584
+#: Source/Core/DolphinQt/MenuBar.cpp:1595
+#: Source/Core/DolphinQt/MenuBar.cpp:1607
+#: Source/Core/DolphinQt/MenuBar.cpp:1629
+#: Source/Core/DolphinQt/MenuBar.cpp:1655
+#: Source/Core/DolphinQt/MenuBar.cpp:1709
+#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:316
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:479
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:740
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:982
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1100
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1110
+#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:332
+#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:338
+#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:345
#: Source/Core/DolphinQt/RenderWidget.cpp:123
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:203
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:224
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:423
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:439
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:460
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:481
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:525
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:562
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:585
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:204
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:225
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:433
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:449
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:470
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:491
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:535
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:572
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:595
#: Source/Core/DolphinQt/Translation.cpp:322
msgid "Error"
msgstr "Fel"
@@ -4646,13 +4763,13 @@ msgstr "Fel"
msgid "Error Opening Adapter: %1"
msgstr "Ett fel uppstod när adaptern skulle öppnas: %1"
-#: Source/Core/Core/NetPlayServer.cpp:1493
+#: Source/Core/Core/NetPlayServer.cpp:1497
msgid "Error collecting save data!"
msgstr "Fel uppstod när spardata samlades in!"
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:260
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:526
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:533
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:262
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:613
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:620
msgid "Error converting value"
msgstr "Misslyckades att konvertera värde"
@@ -4666,15 +4783,15 @@ msgstr ""
msgid "Error obtaining session list: %1"
msgstr "Ett fel uppstod när sessionslistan skulle hämtas: %1"
-#: Source/Core/DolphinQt/MainWindow.cpp:296
+#: Source/Core/DolphinQt/MainWindow.cpp:298
msgid "Error occurred while loading some texture packs"
msgstr "Ett fel uppstod när vissa texturpaket laddades"
-#: Source/Core/Core/NetPlayClient.cpp:1847
+#: Source/Core/Core/NetPlayClient.cpp:1851
msgid "Error processing codes."
msgstr "Fel uppstod när koder behandlades."
-#: Source/Core/Core/NetPlayClient.cpp:1819
+#: Source/Core/Core/NetPlayClient.cpp:1823
msgid "Error processing data."
msgstr "Fel uppstod när data behandlades."
@@ -4682,11 +4799,11 @@ msgstr "Fel uppstod när data behandlades."
msgid "Error reading file: {0}"
msgstr "Fel uppstod när fil lästes: {0}"
-#: Source/Core/Core/NetPlayServer.cpp:1529
+#: Source/Core/Core/NetPlayServer.cpp:1533
msgid "Error synchronizing cheat codes!"
msgstr "Ett fel uppstod med att synkronisera fuskkoder!"
-#: Source/Core/Core/NetPlayServer.cpp:1515
+#: Source/Core/Core/NetPlayServer.cpp:1519
msgid "Error synchronizing save data!"
msgstr "Fel uppstod när spardata synkroniserades!"
@@ -4763,7 +4880,7 @@ msgstr "Fel hittades i {0} oanvända block i {1}-partitionen."
msgid "Euphoria"
msgstr "Euphoria"
-#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:282
+#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:274
#: Source/Core/UICommon/NetPlayIndex.cpp:249
msgid "Europe"
msgstr "Europa"
@@ -4792,11 +4909,11 @@ msgstr ""
msgid "Excluded: %1"
msgstr "Exkluderade: %1"
-#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:73
+#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:72
msgid "Excluded: 0"
msgstr "Exkluderade: 0"
-#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:107
+#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108
msgid "Exclusive Ubershaders"
msgstr "Exklusiva übershaders"
@@ -4844,14 +4961,14 @@ msgstr "Variabelnamn förväntades."
msgid "Experimental"
msgstr "Experimentell"
-#: Source/Core/DolphinQt/MenuBar.cpp:294
+#: Source/Core/DolphinQt/MenuBar.cpp:286
msgid "Export All Wii Saves"
msgstr "Exportera alla Wii-sparningar"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:422
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:447
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:492
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:499
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:423
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:448
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:493
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:500
msgid "Export Failed"
msgstr "Exportering misslyckades"
@@ -4859,42 +4976,42 @@ msgstr "Exportering misslyckades"
msgid "Export Recording"
msgstr "Exportera inspelning"
-#: Source/Core/DolphinQt/MenuBar.cpp:753
+#: Source/Core/DolphinQt/MenuBar.cpp:745
msgid "Export Recording..."
msgstr "Exportera inspelning..."
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:437
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:438
msgid "Export Save File"
msgstr "Exportera sparfil"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:454
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:455
msgid "Export Save Files"
msgstr "Exportera sparfiler"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:470
+#: Source/Core/DolphinQt/GameList/GameList.cpp:473
msgid "Export Wii Save"
msgstr "Exportera Wii-sparning"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:388
+#: Source/Core/DolphinQt/GameList/GameList.cpp:389
msgid "Export Wii Saves"
msgstr "Exportera Wii-sparningar"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:117
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:118
msgid "Export as .&gcs..."
msgstr "Exportera som .&gcs..."
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:118
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:119
msgid "Export as .&sav..."
msgstr "Exportera som .&sav..."
-#: Source/Core/DolphinQt/MenuBar.cpp:1133
+#: Source/Core/DolphinQt/MenuBar.cpp:1115
#, c-format
msgctxt ""
msgid "Exported %n save(s)"
msgstr "Exporterade %n sparfil(er)"
#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:268
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:432
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:434
#: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:47
msgid "Extension"
msgstr "Extern kontroll"
@@ -4907,7 +5024,7 @@ msgstr "Rörelseinmatning för extern kontroll"
msgid "Extension Motion Simulation"
msgstr "Rörelsesimulering för extern kontroll"
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:520
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:522
msgid "External"
msgstr "Extern"
@@ -4915,35 +5032,35 @@ msgstr "Extern"
msgid "External Frame Buffer (XFB)"
msgstr "Extern bildrutebuffert (XFB)"
-#: Source/Core/DolphinQt/MenuBar.cpp:271
+#: Source/Core/DolphinQt/MenuBar.cpp:263
msgid "Extract Certificates from NAND"
msgstr "Extrahera certifikat från NAND-minne"
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:268
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:269
msgid "Extract Entire Disc..."
msgstr "Extrahera hela skivan..."
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:292
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:293
msgid "Extract Entire Partition..."
msgstr "Extrahera hela partitionen..."
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:299
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:300
msgid "Extract File..."
msgstr "Extrahera fil..."
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:241
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:242
msgid "Extract Files..."
msgstr "Extrahera filer..."
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:251
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:252
msgid "Extract System Data..."
msgstr "Extrahera systemdata..."
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:355
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:356
msgid "Extracting All Files..."
msgstr "Extraherar alla filer..."
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:356
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357
msgid "Extracting Directory..."
msgstr "Extraherar katalog..."
@@ -4953,7 +5070,7 @@ msgid "FD"
msgstr "FD"
#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:37
-#: Source/Core/DolphinQt/MenuBar.cpp:228
+#: Source/Core/DolphinQt/MenuBar.cpp:220
msgid "FIFO Player"
msgstr "FIFO-spelare"
@@ -4961,7 +5078,7 @@ msgstr "FIFO-spelare"
msgid "Failed loading XML."
msgstr "Misslyckades att ladda XML."
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:347
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:348
msgid ""
"Failed opening memory card:\n"
"%1"
@@ -4969,11 +5086,11 @@ msgstr ""
"Misslyckades att öppna minneskortet:\n"
"%1"
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:454
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:456
msgid "Failed to add this session to the NetPlay index: %1"
msgstr "Misslyckades att lägga till denna session i nätspelsindex: %1"
-#: Source/Core/DolphinQt/MenuBar.cpp:1669
+#: Source/Core/DolphinQt/MenuBar.cpp:1656
msgid "Failed to append to signature file '%1'"
msgstr "Misslyckades att lägga till i signaturfilen \"%1\""
@@ -4981,11 +5098,11 @@ msgstr "Misslyckades att lägga till i signaturfilen \"%1\""
msgid "Failed to claim interface for BT passthrough: {0}"
msgstr "Misslyckades att göra anspråk på interface för BT-genomsläpp: {0}"
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:574
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:676
msgid "Failed to clear Skylander!"
msgstr "Misslyckades att rensa Skylander!"
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:575
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:677
msgid "Failed to clear the Skylander from slot(%1)!"
msgstr "Misslyckades att rensa Skylander från plats(%1)!"
@@ -4993,7 +5110,7 @@ msgstr "Misslyckades att rensa Skylander från plats(%1)!"
msgid "Failed to connect to Redump.org"
msgstr "Misslyckades att ansluta till Redump.org"
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:981
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:983
msgid "Failed to connect to server: %1"
msgstr "Misslyckades att ansluta till server: %1"
@@ -5014,15 +5131,15 @@ msgstr "Misslyckades att skapa globala resurser för D3D12"
msgid "Failed to create DXGI factory"
msgstr "Misslyckades att skapa DXGI-fabrik"
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:289
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:291
msgid "Failed to create Infinity file"
msgstr "Misslyckades att skapa Infinityfil"
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:678
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:798
msgid "Failed to create Skylander file!"
msgstr "Misslyckades att skapa Skylanderfil!"
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:679
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:799
msgid ""
"Failed to create Skylander file:\n"
"%1\n"
@@ -5045,7 +5162,7 @@ msgstr ""
"Misslyckades att radera minneskort för nätspel. Bekräfta dina "
"skrivbehörigheter."
-#: Source/Core/DolphinQt/GameList/GameList.cpp:841
+#: Source/Core/DolphinQt/GameList/GameList.cpp:854
msgid "Failed to delete the selected file."
msgstr "Misslyckades att radera den valda filen."
@@ -5053,36 +5170,36 @@ msgstr "Misslyckades att radera den valda filen."
msgid "Failed to detach kernel driver for BT passthrough: {0}"
msgstr "Misslyckades att koppla loss kärnans drivrutin för BT-genomsläpp: {0}"
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:343
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:346
msgid "Failed to download codes."
msgstr "Misslyckades att ladda ner koder."
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:738
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:737
msgid "Failed to dump %1: Can't open file"
msgstr "Misslyckades att dumpa %1: Kan inte öppna filen"
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:745
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:744
msgid "Failed to dump %1: Failed to write to file"
msgstr "Misslyckades att dumpa %1: Kunde inte skriva till filen"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:488
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:489
msgctxt ""
msgid "Failed to export %n out of %1 save file(s)."
msgstr "Misslyckades med att exportera %n av %1 sparfil(er)."
-#: Source/Core/DolphinQt/GameList/GameList.cpp:576
+#: Source/Core/DolphinQt/GameList/GameList.cpp:584
msgid "Failed to export the following save files:"
msgstr "Misslyckades att exportera följande sparfiler:"
-#: Source/Core/DolphinQt/MenuBar.cpp:1204
+#: Source/Core/DolphinQt/MenuBar.cpp:1190
msgid "Failed to extract certificates from NAND"
msgstr "Misslyckades att extrahera certifikat från NAND-minnet"
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386
msgid "Failed to extract file."
msgstr "Misslyckades att extrahera filen."
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:261
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:262
msgid "Failed to extract system data."
msgstr "Misslyckades att extrahera systemdata."
@@ -5100,18 +5217,18 @@ msgstr ""
msgid "Failed to find one or more D3D symbols"
msgstr "Misslyckades att hitta en eller flera D3D-symboler"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:565
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:566
msgid "Failed to import \"%1\"."
msgstr "Misslyckades att importera \"%1\"."
-#: Source/Core/DolphinQt/MenuBar.cpp:1109
+#: Source/Core/DolphinQt/MenuBar.cpp:1091
msgid ""
"Failed to import save file. Please launch the game once, then try again."
msgstr ""
"Misslyckades att importera sparfil. Starta spelet en gång och prova sedan "
"igen."
-#: Source/Core/DolphinQt/MenuBar.cpp:1103
+#: Source/Core/DolphinQt/MenuBar.cpp:1085
msgid ""
"Failed to import save file. The given file appears to be corrupted or is not "
"a valid Wii save."
@@ -5119,7 +5236,7 @@ msgstr ""
"Misslyckades att importera sparfil. Den givna filen verkar vara skadad eller "
"är inte en giltig Wii-sparfil."
-#: Source/Core/DolphinQt/MenuBar.cpp:1116
+#: Source/Core/DolphinQt/MenuBar.cpp:1098
msgid ""
"Failed to import save file. Your NAND may be corrupt, or something is "
"preventing access to files within it. Try repairing your NAND (Tools -> "
@@ -5130,7 +5247,7 @@ msgstr ""
"minnet (Verktyg -> Hantera NAND -> Kontrollera NAND-minne...) och importera "
"sedan sparfilen igen."
-#: Source/Core/DolphinQt/MainWindow.cpp:1108
+#: Source/Core/DolphinQt/MainWindow.cpp:1110
msgid "Failed to init core"
msgstr "Misslyckades att initialisera kärnan"
@@ -5148,23 +5265,23 @@ msgstr ""
msgid "Failed to initialize renderer classes"
msgstr "Misslyckades att initialisera renderarklasser"
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:204
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:205
msgid "Failed to install pack: %1"
msgstr "Misslyckades att installera paket: %1"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:619
-#: Source/Core/DolphinQt/MenuBar.cpp:1074
+#: Source/Core/DolphinQt/GameList/GameList.cpp:628
+#: Source/Core/DolphinQt/MenuBar.cpp:1056
msgid "Failed to install this title to the NAND."
msgstr "Misslyckades att installera denna titel till NAND-minnet."
-#: Source/Core/DolphinQt/MainWindow.cpp:1594
+#: Source/Core/DolphinQt/MainWindow.cpp:1607
msgid ""
"Failed to listen on port %1. Is another instance of the NetPlay server "
"running?"
msgstr "Misslyckades att lyssna på port %1. Körs nätspelsservern redan?"
-#: Source/Core/DolphinQt/MenuBar.cpp:1321
-#: Source/Core/DolphinQt/MenuBar.cpp:1376
+#: Source/Core/DolphinQt/MenuBar.cpp:1307
+#: Source/Core/DolphinQt/MenuBar.cpp:1363
msgid "Failed to load RSO module at %1"
msgstr "Misslyckades att ladda RSO-model vid %1"
@@ -5176,15 +5293,15 @@ msgstr "Misslyckades att ladda d3d11.dll"
msgid "Failed to load dxgi.dll"
msgstr "Misslyckades att ladda dxgi.dll"
-#: Source/Core/DolphinQt/MenuBar.cpp:1608
+#: Source/Core/DolphinQt/MenuBar.cpp:1595
msgid "Failed to load map file '%1'"
msgstr "Misslyckades att läsa map-filen \"%1\""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:720
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:842
msgid "Failed to load the Skylander file!"
msgstr "Misslyckades att ladda Skylanderfilen!"
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:721
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:843
msgid "Failed to load the Skylander file(%1)!\n"
msgstr "Misslyckades att ladda Skylanderfilen(%1)!\n"
@@ -5200,8 +5317,12 @@ msgstr ""
"Misslyckades att läsa in {0}. Om du använder Windows 7, prova att installera "
"uppdateringspaketet KB4019990."
-#: Source/Core/DolphinQt/GBAWidget.cpp:576
-#: Source/Core/DolphinQt/MainWindow.cpp:1670
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:663
+msgid "Failed to modify Skylander!"
+msgstr ""
+
+#: Source/Core/DolphinQt/GBAWidget.cpp:578
+#: Source/Core/DolphinQt/MainWindow.cpp:1690
#: Source/Core/DolphinQt/RenderWidget.cpp:123
msgid "Failed to open '%1'"
msgstr "Misslyckades att öppna '%1'"
@@ -5230,19 +5351,19 @@ msgstr ""
"Misslyckades att öppna filen i en extern editor.\n"
"Se till att det finns en applikation inställd för att öppna INI-filer."
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:861
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:863
msgid "Failed to open file."
msgstr "Kunde inte öppna fil."
-#: Source/Core/DolphinQt/MainWindow.cpp:1593
+#: Source/Core/DolphinQt/MainWindow.cpp:1606
msgid "Failed to open server"
msgstr "Misslyckades att öppna servern"
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:164
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:166
msgid "Failed to open the Infinity file!"
msgstr "Misslyckades att öppna Infinityfilen!"
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:165
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:167
msgid ""
"Failed to open the Infinity file(%1)!\n"
"File may already be in use on the base."
@@ -5250,11 +5371,11 @@ msgstr ""
"Misslyckades att öppna Infinityfilen(%1)!\n"
"Filen kanske redan används på basen."
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:696
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:818
msgid "Failed to open the Skylander file!"
msgstr "Misslyckades att öppna Skylanderfilen!"
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:697
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:819
msgid ""
"Failed to open the Skylander file(%1)!\n"
"File may already be in use on the portal."
@@ -5262,12 +5383,12 @@ msgstr ""
"Misslyckades att öppna Skylanderfilen(%1)!\n"
"Filen kanske redan används på portalen."
-#: Source/Core/DolphinQt/ConvertDialog.cpp:472
+#: Source/Core/DolphinQt/ConvertDialog.cpp:474
msgid "Failed to open the input file \"%1\"."
msgstr "Misslyckades att öppna indatafilen \"%1\"."
-#: Source/Core/DiscIO/CompressedBlob.cpp:282 Source/Core/DiscIO/FileBlob.cpp:53
-#: Source/Core/DiscIO/WIABlob.cpp:2037
+#: Source/Core/DiscIO/CompressedBlob.cpp:287 Source/Core/DiscIO/FileBlob.cpp:58
+#: Source/Core/DiscIO/WIABlob.cpp:2043
msgid ""
"Failed to open the output file \"{0}\".\n"
"Check that you have permissions to write the target folder and that the "
@@ -5290,25 +5411,25 @@ msgstr "Misslyckades att tolka angivet värde som måldatatypen."
msgid "Failed to read DFF file."
msgstr "Misslyckades att läsa DFF-fil."
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:863
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:865
msgid "Failed to read from file."
msgstr "Kunde inte läsa från fil."
-#: Source/Core/DiscIO/CompressedBlob.cpp:373 Source/Core/DiscIO/FileBlob.cpp:93
-#: Source/Core/DiscIO/WIABlob.cpp:2052
+#: Source/Core/DiscIO/CompressedBlob.cpp:378 Source/Core/DiscIO/FileBlob.cpp:98
+#: Source/Core/DiscIO/WIABlob.cpp:2058
msgid "Failed to read from the input file \"{0}\"."
msgstr "Misslyckades att läsa från indatafilen \"{0}\"."
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:423
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:641
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:424
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:642
msgid "Failed to read selected savefile(s) from memory card."
msgstr "Kunde inte läsa vald(a) sparfil(er) från minneskort."
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:173
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:175
msgid "Failed to read the Infinity file!"
msgstr "Misslyckades att läsa Infinityfilen!"
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:174
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:176
msgid ""
"Failed to read the Infinity file(%1)!\n"
"File was too small."
@@ -5316,11 +5437,11 @@ msgstr ""
"Misslyckades att läsa Infinityfilen(%1)!\n"
"Filen var för liten."
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:706
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:828
msgid "Failed to read the Skylander file!"
msgstr "Misslyckades att läsa Skylanderfilen!"
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:707
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:829
msgid ""
"Failed to read the Skylander file(%1)!\n"
"File was too small."
@@ -5332,11 +5453,11 @@ msgstr ""
msgid "Failed to read {0}"
msgstr "Misslyckades att läsa {0}"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:668
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:669
msgid "Failed to remove file."
msgstr "Kunde inte ta bort fil."
-#: Source/Core/DolphinQt/ConvertDialog.cpp:453
+#: Source/Core/DolphinQt/ConvertDialog.cpp:455
msgid ""
"Failed to remove junk data from file \"%1\".\n"
"\n"
@@ -5346,7 +5467,7 @@ msgstr ""
"\n"
"Vill du konvertera den utan att ta bort skräpdata?"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:647
+#: Source/Core/DolphinQt/GameList/GameList.cpp:658
msgid "Failed to remove this title from the NAND."
msgstr "Kunde inte ta bort denna titel från NAND-minnet."
@@ -5368,27 +5489,34 @@ msgstr ""
"Misslyckades att nollställa nätspelsomdirigeringsmappen. Kontrollera "
"skrivrättigheterna."
-#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:241
+#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:237
msgid "Failed to save FIFO log."
msgstr "Misslyckades att spara FIFO-logg."
-#: Source/Core/DolphinQt/MenuBar.cpp:1598
+#: Source/Core/DolphinQt/MenuBar.cpp:1585
msgid "Failed to save code map to path '%1'"
msgstr "Misslyckades att spara kod-map till sökvägen \"%1\""
-#: Source/Core/DolphinQt/MenuBar.cpp:1642
+#: Source/Core/DolphinQt/MenuBar.cpp:1629
msgid "Failed to save signature file '%1'"
msgstr "Misslyckades att spara signaturfilen \"%1\""
-#: Source/Core/DolphinQt/MenuBar.cpp:1621
+#: Source/Core/DolphinQt/MenuBar.cpp:1608
msgid "Failed to save symbol map to path '%1'"
msgstr "Misslyckades att spara symbol-map till sökvägen \"%1\""
-#: Source/Core/DolphinQt/MenuBar.cpp:1723
+#: Source/Core/DolphinQt/MenuBar.cpp:1710
msgid "Failed to save to signature file '%1'"
msgstr "Misslyckades att spara till signaturfilen \"%1\""
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:225
+#: Source/Core/Core/Core.cpp:548
+msgid ""
+"Failed to sync SD card with folder. All changes made this session will be "
+"discarded on next boot if you do not manually re-issue a resync in Config > "
+"Wii > SD Card Settings > Convert File to Folder Now!"
+msgstr ""
+
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:226
msgid "Failed to uninstall pack: %1"
msgstr "Misslyckades att avinstallera paket: %1"
@@ -5408,9 +5536,9 @@ msgstr "Misslyckades att skriva Wii-sparning."
msgid "Failed to write config file!"
msgstr "Kunde inte skriva inställningsfil!"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:573
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:676
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:691
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:574
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:677
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:692
msgid "Failed to write modified memory card to disk."
msgstr "Kunde inte skriva ändrat minneskort till disk."
@@ -5418,12 +5546,12 @@ msgstr "Kunde inte skriva ändrat minneskort till disk."
msgid "Failed to write redirected save."
msgstr "Misslyckades att skriva omdirigerad sparning."
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:447
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:448
msgid "Failed to write savefile to disk."
msgstr "Kunde inte skriva sparfil till disk."
-#: Source/Core/DiscIO/CompressedBlob.cpp:377 Source/Core/DiscIO/FileBlob.cpp:99
-#: Source/Core/DiscIO/WIABlob.cpp:2056
+#: Source/Core/DiscIO/CompressedBlob.cpp:382
+#: Source/Core/DiscIO/FileBlob.cpp:104 Source/Core/DiscIO/WIABlob.cpp:2062
msgid ""
"Failed to write the output file \"{0}\".\n"
"Check that you have enough space available on the target drive."
@@ -5431,22 +5559,22 @@ msgstr ""
"Misslyckades att skriva till utdatafilen \"{0}\".\n"
"Kontrollera att det finns tillräckligt med utrymme på målenheten."
-#: Source/Core/DolphinQt/GameList/GameList.cpp:617
-#: Source/Core/DolphinQt/GameList/GameList.cpp:645
-#: Source/Core/DolphinQt/GameList/GameList.cpp:840
-#: Source/Core/DolphinQt/MenuBar.cpp:1074
+#: Source/Core/DolphinQt/GameList/GameList.cpp:626
+#: Source/Core/DolphinQt/GameList/GameList.cpp:656
+#: Source/Core/DolphinQt/GameList/GameList.cpp:853
+#: Source/Core/DolphinQt/MenuBar.cpp:1056
msgid "Failure"
msgstr "Misslyckades"
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:183
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:184
msgid "Fair Input Delay"
msgstr "Rättvis latens"
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:199
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:200
msgid "Fallback Region"
msgstr "Region"
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:210
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:211
msgid "Fallback Region:"
msgstr "Region:"
@@ -5472,17 +5600,21 @@ msgstr ""
msgid "Field of View"
msgstr "Synfält"
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:233
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:235
msgid "Figure Number:"
msgstr "Figurnummer:"
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:380
+msgid "Figure type"
+msgstr ""
+
#: Source/Core/DolphinQt/Config/InfoWidget.cpp:46
msgid "File Details"
msgstr "Fildetaljer"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:991
+#: Source/Core/DolphinQt/GameList/GameList.cpp:1005
#: Source/Core/DolphinQt/GameList/GameListModel.cpp:229
-#: Source/Core/DolphinQt/MenuBar.cpp:652
+#: Source/Core/DolphinQt/MenuBar.cpp:644
msgid "File Format"
msgstr "Filformat"
@@ -5494,20 +5626,20 @@ msgstr "Filformat:"
msgid "File Info"
msgstr "Filinformation"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:986
+#: Source/Core/DolphinQt/GameList/GameList.cpp:1000
#: Source/Core/DolphinQt/GameList/GameListModel.cpp:223
-#: Source/Core/DolphinQt/MenuBar.cpp:647
+#: Source/Core/DolphinQt/MenuBar.cpp:639
msgid "File Name"
msgstr "Filnamn"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:987
+#: Source/Core/DolphinQt/GameList/GameList.cpp:1001
#: Source/Core/DolphinQt/GameList/GameListModel.cpp:225
-#: Source/Core/DolphinQt/MenuBar.cpp:648
+#: Source/Core/DolphinQt/MenuBar.cpp:640
msgid "File Path"
msgstr "Sökväg"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:990
-#: Source/Core/DolphinQt/MenuBar.cpp:651
+#: Source/Core/DolphinQt/GameList/GameList.cpp:1004
+#: Source/Core/DolphinQt/MenuBar.cpp:643
msgid "File Size"
msgstr "Filstorlek"
@@ -5515,15 +5647,15 @@ msgstr "Filstorlek"
msgid "File Size:"
msgstr "Filstorlek:"
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:349
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:352
msgid "File contained no codes."
msgstr "Filen innehöll inga koder."
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:149
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:150
msgid "Filename"
msgstr "Filnamn"
-#: Source/Core/DiscIO/CompressedBlob.cpp:289
+#: Source/Core/DiscIO/CompressedBlob.cpp:294
msgid "Files opened, ready to compress."
msgstr "Filerna har öppnats. Redo att komprimera."
@@ -5535,11 +5667,11 @@ msgstr ""
"Filer angivna i M3U-filen \"{0}\" hittades inte:\n"
"{1}"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:833
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:835
msgid "Filesize does not match any known GameCube Memory Card size."
msgstr "Filstorleken matchar inte någon känd storlek för GameCube-minneskort."
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:836
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:838
msgid "Filesize in header mismatches actual card size."
msgstr "Filstorleken i headern matchar inte minneskortets faktiska storlek."
@@ -5547,7 +5679,7 @@ msgstr "Filstorleken i headern matchar inte minneskortets faktiska storlek."
msgid "Filesystem"
msgstr "Filsystem"
-#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:102
+#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:103
msgid "Filters"
msgstr "Filter"
@@ -5563,7 +5695,7 @@ msgstr "Hitta &föregående"
msgid "Finish Calibration"
msgstr "Slutför kalibrering"
-#: Source/Core/DolphinQt/WiiUpdate.cpp:109
+#: Source/Core/DolphinQt/WiiUpdate.cpp:110
msgid ""
"Finishing the update...\n"
"This can take a while."
@@ -5573,19 +5705,19 @@ msgstr ""
#. i18n: One of the elements in the Skylanders games. Japanese: 火. For official translations
#. in other languages, check the SuperChargers manual at https://support.activision.com/manuals
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:333
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:349
msgid "Fire"
msgstr "Eld"
-#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:40
+#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:41
msgid "First Person"
msgstr "Första person"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:127
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:128
msgid "Fix Checksums"
msgstr "Fixa kontrollsummor"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:690
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:691
msgid "Fix Checksums Failed"
msgstr "Kunde inte laga kontrollsummor"
@@ -5595,7 +5727,7 @@ msgstr ""
#. i18n: These are the kinds of flags that a CPU uses (e.g. carry),
#. not the kinds of flags that represent e.g. countries
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:166
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167
#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:87
msgid "Flags"
msgstr "Flaggor"
@@ -5604,12 +5736,12 @@ msgstr "Flaggor"
#. i18n: Floating-point (non-integer) number
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:138
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:198
-#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:152
+#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:153
#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97
msgid "Float"
msgstr "Float"
-#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:565
+#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:566
msgid "Follow &branch"
msgstr "Följ &gren"
@@ -5633,35 +5765,35 @@ msgstr ""
"För instruktioner, se "
"den här sidan."
-#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:57
+#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:58
msgid "Force 16:9"
msgstr "Tvinga 16:9"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:117
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:152
msgid "Force 24-Bit Color"
msgstr "24-bitars färg"
-#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:57
+#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:58
msgid "Force 4:3"
msgstr "Tvinga 4:3"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:96
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:115
msgid "Force Linear"
msgstr "Tvinga linjär"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:103
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:122
msgid "Force Linear and 16x Anisotropic"
msgstr "Tvinga linjär och 16x anisotropisk"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:97
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:116
msgid "Force Linear and 2x Anisotropic"
msgstr "Tvinga linjär och 2x anisotropisk"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:99
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:118
msgid "Force Linear and 4x Anisotropic"
msgstr "Tvinga linjär och 4x anisotropisk"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:101
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:120
msgid "Force Linear and 8x Anisotropic"
msgstr "Tvinga linjär och 8x anisotropisk"
@@ -5669,7 +5801,7 @@ msgstr "Tvinga linjär och 8x anisotropisk"
msgid "Force Listen Port:"
msgstr "Lyssna på port:"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:95
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:114
msgid "Force Nearest"
msgstr "Tvinga närmsta"
@@ -5681,7 +5813,7 @@ msgstr "Kan inte sättas på eftersom %1 inte stöder VS-expansion."
msgid "Forced on because %1 doesn't support geometry shaders."
msgstr "Kan inte stängas av eftersom %1 inte stöder geometrishaders."
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:474
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:556
msgid ""
"Forces the game to output graphics for any aspect ratio. Use with \"Aspect "
"Ratio\" set to \"Force 16:9\" to force 4:3-only games to run at 16:9."
@@ -5697,7 +5829,7 @@ msgstr ""
"någon AR/Gecko-kod för bredbildsformat används.
Om "
"du är osäker kan du lämna detta omarkerat."
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:503
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:585
msgid ""
"Forces the game to render the RGB color channels in 24-bit, thereby "
"increasing quality by reducing color banding.
Has no impact on "
@@ -5709,7 +5841,7 @@ msgstr ""
"prestandan och orsakar få grafikproblem.
Om du är "
"osäker kan du lämna detta markerat."
-#: Source/Core/DolphinQt/ConvertDialog.cpp:59
+#: Source/Core/DolphinQt/ConvertDialog.cpp:60
msgid "Format:"
msgstr "Format:"
@@ -5775,19 +5907,19 @@ msgstr "Bildrutor att spela in:"
msgid "France"
msgstr "Frankrike"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:311
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:312
msgid "Free Blocks: %1"
msgstr "Lediga block: %1"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:312
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:313
msgid "Free Files: %1"
msgstr "Lediga filer: %1"
-#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:42
+#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:43
msgid "Free Look Control Type"
msgstr "Fri vy-kontrolltyp"
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:468
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:470
msgid "Free Look Controller %1"
msgstr "Fri vy-kontroll %1"
@@ -5795,7 +5927,7 @@ msgstr "Fri vy-kontroll %1"
msgid "Free Look Settings"
msgstr "Fri vy-inställningar"
-#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:54
+#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:55
msgid ""
"Free Look allows for manipulation of the in-game camera. Different camera "
"types are available from the dropdown.
Disabling the "
@@ -3469,7 +3556,7 @@ msgid ""
"checked."
msgstr ""
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:96
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:97
msgid "Disc"
msgstr "Disk"
@@ -3503,25 +3590,25 @@ msgstr ""
msgid "Distance of travel from neutral position."
msgstr ""
-#: Source/Core/DolphinQt/Main.cpp:259
+#: Source/Core/DolphinQt/Main.cpp:264
msgid "Do you authorize Dolphin to report information to Dolphin's developers?"
msgstr ""
-#: Source/Core/DolphinQt/MainWindow.cpp:1692
+#: Source/Core/DolphinQt/MainWindow.cpp:1712
msgid "Do you want to add \"%1\" to the list of Game Paths?"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1241
+#: Source/Core/DolphinQt/MenuBar.cpp:1227
msgid "Do you want to clear the list of symbol names?"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:658
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:659
#, c-format
msgctxt ""
msgid "Do you want to delete the %n selected save file(s)?"
msgstr ""
-#: Source/Core/DolphinQt/MainWindow.cpp:933
+#: Source/Core/DolphinQt/MainWindow.cpp:935
msgid "Do you want to stop the current emulation?"
msgstr "Emülasyonu durdurmak istiyor musunuz?"
@@ -3533,35 +3620,35 @@ msgstr ""
msgid "Dolby Pro Logic II Decoder"
msgstr ""
-#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:219
-#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:230
+#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:215
+#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:226
msgid "Dolphin FIFO Log (*.dff)"
msgstr ""
-#: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:327
+#: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:326
msgid "Dolphin Game Mod Preset"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1536
-#: Source/Core/DolphinQt/MenuBar.cpp:1553
-#: Source/Core/DolphinQt/MenuBar.cpp:1572
+#: Source/Core/DolphinQt/MenuBar.cpp:1523
+#: Source/Core/DolphinQt/MenuBar.cpp:1540
+#: Source/Core/DolphinQt/MenuBar.cpp:1559
msgid "Dolphin Map File (*.map)"
msgstr "Dolphin Harita Dosyası (*.map)"
-#: Source/Core/DolphinQt/MenuBar.cpp:73
+#: Source/Core/DolphinQt/MenuBar.cpp:74
msgid "Dolphin Signature CSV File"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:73
+#: Source/Core/DolphinQt/MenuBar.cpp:74
msgid "Dolphin Signature File"
msgstr ""
-#: Source/Core/DolphinQt/MainWindow.cpp:1772
-#: Source/Core/DolphinQt/MainWindow.cpp:1843
+#: Source/Core/DolphinQt/MainWindow.cpp:1823
+#: Source/Core/DolphinQt/MainWindow.cpp:1894
msgid "Dolphin TAS Movies (*.dtm)"
msgstr "Dolphin TAS Filmleri (*.dtm)"
-#: Source/Core/DolphinQt/ConvertDialog.cpp:326
+#: Source/Core/DolphinQt/ConvertDialog.cpp:327
msgid ""
"Dolphin can't convert NKit files to non-NKit files. Converting an NKit file "
"in Dolphin will result in another NKit file.\n"
@@ -3572,7 +3659,7 @@ msgid ""
"Do you want to continue anyway?"
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:279
+#: Source/Core/DolphinQt/GameList/GameList.cpp:280
msgid ""
"Dolphin could not find any GameCube/Wii ISOs or WADs.\n"
"Double-click here to set a games directory..."
@@ -3580,7 +3667,7 @@ msgstr ""
"Dolphin, herhangi bir GameCube/Wii ISO veya WAD bulamadı.\n"
"Oyun dizini ayarlamak için burayı çift tıklayın..."
-#: Source/Core/DolphinQt/ConvertDialog.cpp:526
+#: Source/Core/DolphinQt/ConvertDialog.cpp:529
msgid "Dolphin failed to complete the requested action."
msgstr ""
@@ -3592,7 +3679,7 @@ msgstr ""
msgid "Dolphin is a free and open-source GameCube and Wii emulator."
msgstr ""
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:998
msgid "Dolphin is too old for traversal server"
msgstr "Dolphin geçiş sunucusu için çok eski"
@@ -3606,7 +3693,7 @@ msgstr ""
msgid "Dolphin is unable to verify unlicensed discs."
msgstr ""
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:217
msgid ""
"Dolphin will use this for titles whose region cannot be determined "
"automatically."
@@ -3621,15 +3708,15 @@ msgstr "Dolphin'in hile sistemi şu anda devre dışı."
msgid "Domain"
msgstr ""
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:193
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:194
msgid "Don't Update"
msgstr ""
-#: Source/Core/DolphinQt/NKitWarningDialog.cpp:53
+#: Source/Core/DolphinQt/NKitWarningDialog.cpp:56
msgid "Don't show this again"
msgstr ""
-#: Source/Core/DiscIO/CompressedBlob.cpp:369
+#: Source/Core/DiscIO/CompressedBlob.cpp:374
msgid "Done compressing disc image."
msgstr "Disk imajı sıkıştırılma işlemi tamamlandı."
@@ -3642,37 +3729,37 @@ msgstr ""
#. i18n: A double precision floating point number
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:139
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:199
-#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:154
+#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:155
msgid "Double"
msgstr ""
#: Source/Core/Core/FreeLookManager.cpp:89
#: Source/Core/Core/HW/WiimoteEmu/Extension/Guitar.cpp:80
#: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:35
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:43
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:44
#: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:21
#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUAccelerometer.cpp:19
#: Source/Core/InputCommon/ControllerEmu/ControllerEmu.h:24
msgid "Down"
msgstr "Aşağı"
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:86
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:87
msgid "Download Codes"
msgstr ""
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:88
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:89
msgid "Download Codes from the WiiRD Database"
msgstr ""
-#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:148
+#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:153
msgid "Download Game Covers from GameTDB.com for Use in Grid Mode"
msgstr ""
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:370
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:373
msgid "Download complete"
msgstr ""
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:371
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:374
msgid "Downloaded %1 codes. (added %2)"
msgstr ""
@@ -3695,7 +3782,7 @@ msgstr ""
msgid "Dual View"
msgstr ""
-#: Source/Core/Core/HW/EXI/EXI_Device.h:95
+#: Source/Core/Core/HW/EXI/EXI_Device.h:94
msgid "Dummy"
msgstr "Kukla"
@@ -3715,7 +3802,7 @@ msgstr ""
msgid "Dump &MRAM"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:814
+#: Source/Core/DolphinQt/MenuBar.cpp:806
msgid "Dump Audio"
msgstr "Sesi Dök"
@@ -3727,7 +3814,7 @@ msgstr ""
msgid "Dump EFB Target"
msgstr "EFB Hedef Dökümü"
-#: Source/Core/DolphinQt/MenuBar.cpp:808
+#: Source/Core/DolphinQt/MenuBar.cpp:800
msgid "Dump Frames"
msgstr "Kareleri Dök"
@@ -3800,12 +3887,12 @@ msgid "Duration of Turbo Button Release (frames):"
msgstr ""
#: Source/Core/DiscIO/Enums.cpp:95
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174
msgid "Dutch"
msgstr "Flemenkçe"
-#: Source/Core/DolphinQt/MenuBar.cpp:215
+#: Source/Core/DolphinQt/MenuBar.cpp:207
msgid "E&xit"
msgstr "&Çıkış"
@@ -3821,7 +3908,7 @@ msgid ""
"driver."
msgstr ""
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:185
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:186
msgid ""
"Each player sends their own inputs to the game, with equal buffer size for "
"all players, configured by the host.\n"
@@ -3835,7 +3922,7 @@ msgstr "Erken Hafıza Güncellemeleri"
#. i18n: One of the elements in the Skylanders games. Japanese: 土. For official translations
#. in other languages, check the SuperChargers manual at https://support.activision.com/manuals
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:336
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:352
msgid "Earth"
msgstr ""
@@ -3848,7 +3935,7 @@ msgstr ""
msgid "Edit Breakpoint"
msgstr ""
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:426
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:430
msgid "Edit..."
msgstr ""
@@ -3882,7 +3969,7 @@ msgstr ""
#. i18n: Elements are a trait of Skylanders figures. For official translations of this term,
#. check the Skylanders SuperChargers manual at https://support.activision.com/manuals
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:289
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:300
msgid "Element"
msgstr ""
@@ -3890,11 +3977,11 @@ msgstr ""
msgid "Embedded Frame Buffer (EFB)"
msgstr "Yerleşik Çerçeve Arabellği (EFB)"
-#: Source/Core/Core/State.cpp:541
+#: Source/Core/Core/State.cpp:629
msgid "Empty"
msgstr "Boş"
-#: Source/Core/Core/Core.cpp:246
+#: Source/Core/Core/Core.cpp:247
msgid "Emu Thread already running"
msgstr "Emülasyon işlemi zaten çalışıyor"
@@ -3902,15 +3989,15 @@ msgstr "Emülasyon işlemi zaten çalışıyor"
msgid "Emulate Disc Speed"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:60
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:61
msgid "Emulate Infinity Base"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:146
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:157
msgid "Emulate Skylander Portal"
msgstr ""
-#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:110
+#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:111
msgid "Emulate the Wii's Bluetooth adapter"
msgstr "Wii'nin Bluetooth adaptörünü taklit et"
@@ -3920,11 +4007,11 @@ msgid ""
"Defaults to True"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:230
+#: Source/Core/DolphinQt/MenuBar.cpp:222
msgid "Emulated USB Devices"
msgstr ""
-#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:141
+#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:142
msgid "Emulated Wii Remote"
msgstr "Taklit Wii Remote"
@@ -3944,12 +4031,12 @@ msgstr ""
msgid "Emulation must be started to record."
msgstr ""
-#: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:29
-#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:33
+#: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:30
+#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:34
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:120
-#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:129
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:402
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:419
+#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:130
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:406
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:423
msgid "Enable"
msgstr ""
@@ -3957,6 +4044,10 @@ msgstr ""
msgid "Enable API Validation Layers"
msgstr "API Doğrulama Katmanlarını Etkinleştir"
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:83
+msgid "Enable Achievement Badges"
+msgstr ""
+
#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:60
msgid "Enable Achievements"
msgstr ""
@@ -3965,15 +4056,19 @@ msgstr ""
msgid "Enable Audio Stretching"
msgstr "Ses Geciktirmeyi Etkinleştir"
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:142
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:143
msgid "Enable Cheats"
msgstr "Hilelere İzin Ver"
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:155
+#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:53
+msgid "Enable Controller Inpu&t"
+msgstr ""
+
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:161
msgid "Enable Custom RTC"
msgstr "Özel RTC'yi Etkinleştir"
-#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:149
+#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:154
msgid "Enable Debugging UI"
msgstr ""
@@ -3981,19 +4076,19 @@ msgstr ""
msgid "Enable Dual Core"
msgstr "Çift Çekirdeğe İzin Ver"
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:139
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:140
msgid "Enable Dual Core (speedup)"
msgstr "Çift Çekirdeğe İzin Ver (Hızı Artırır)"
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:88
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:94
msgid "Enable Emulated CPU Clock Override"
msgstr ""
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:118
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:124
msgid "Enable Emulated Memory Size Override"
msgstr ""
-#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:78
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:88
msgid "Enable Encore Achievements"
msgstr ""
@@ -4010,10 +4105,14 @@ msgid "Enable Leaderboards"
msgstr ""
#: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:88
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:66
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:68
msgid "Enable MMU"
msgstr "MMU'ya İzin Ver"
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:78
+msgid "Enable Progress Notifications"
+msgstr ""
+
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:156
msgid "Enable Progressive Scan"
msgstr "Progresif Taramaya İzin Ver"
@@ -4027,15 +4126,15 @@ msgid "Enable Rich Presence"
msgstr ""
#: Source/Core/DolphinQt/Config/Mapping/GCPadWiiUConfigDialog.cpp:39
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:353
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:352
msgid "Enable Rumble"
msgstr ""
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:157
msgid "Enable Screen Saver"
msgstr "Ekran Koruyucusuna İzin Ver"
-#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:113
+#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:114
msgid "Enable Speaker Data"
msgstr "Hoparlör verisine izin ver"
@@ -4043,11 +4142,11 @@ msgstr "Hoparlör verisine izin ver"
msgid "Enable Unofficial Achievements"
msgstr ""
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:230
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:231
msgid "Enable Usage Statistics Reporting"
msgstr "İstatistik Raporlamayı Etkinleştir"
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158
msgid "Enable WiiConnect24 via WiiLink"
msgstr ""
@@ -4055,10 +4154,17 @@ msgstr ""
msgid "Enable Wireframe"
msgstr "Wireframe modu"
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:77
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:82
msgid "Enable Write-Back Cache (slow)"
msgstr ""
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:85
+msgid ""
+"Enable achievement badges.
Displays icons for the player, game, and "
+"achievements. Simple visual option, but will require a small amount of extra "
+"memory and time to download the images."
+msgstr ""
+
#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:64
msgid ""
"Enable competing in RetroAchievements leaderboards.
Displays a brief popup "
+"message whenever the player makes progress on an achievement that tracks an "
+"accumulated value, such as 60 out of 120 stars."
+msgstr ""
+
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:90
+msgid ""
"Enable unlocking achievements in Encore Mode.
Encore Mode re-enables "
"achievements the player has already unlocked on the site so that the player "
"will be notified if they meet the unlock conditions again, useful for custom "
@@ -4123,7 +4236,7 @@ msgstr ""
"Birkaç oyun için gerekli olan Kayar Nokta Sonuç Bayrağı hesaplamasını "
"etkinleştirir. (AÇIK = Uyumlu, Kapalı = Hızlı)"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:514
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:596
msgid ""
"Enables detection of arbitrary mipmaps, which some games use for special "
"distance-based effects.
May have false positives that result in "
@@ -4134,11 +4247,12 @@ msgid ""
"dolphin_emphasis>"
msgstr ""
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:79
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:84
msgid ""
-"Enables emulation of the CPU write-back cache.\n"
-"Enabling will have a significant impact on performance.\n"
-"This should be left disabled unless absolutely needed."
+"Enables emulation of the CPU write-back cache. Enabling will have a "
+"significant impact on performance. This should be left disabled unless "
+"absolutely needed.
If unsure, leave this unchecked."
+""
msgstr ""
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:365
@@ -4156,7 +4270,7 @@ msgid ""
"this unchecked."
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:522
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:604
msgid ""
"Enables scRGB HDR output (if supported by your graphics backend and "
"monitor). Fullscreen might be required.
This gives post process "
@@ -4179,7 +4293,6 @@ msgid ""
msgstr ""
#: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:100
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:68
msgid ""
"Enables the Memory Management Unit, needed for some games. (ON = Compatible, "
"OFF = Fast)"
@@ -4187,7 +4300,14 @@ msgstr ""
"Hafıza Yönetim Ünitesini etkinleştirir. Bazı oyunlarda gereklidir. (Açık = "
"Uyumlu, Kapalı = Hızlı)"
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:193
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:70
+msgid ""
+"Enables the Memory Management Unit, needed for some games. (ON = Compatible, "
+"OFF = Fast)
If unsure, leave this unchecked."
+"dolphin_emphasis>"
+msgstr ""
+
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190
msgid ""
"Enables the WiiLink service for WiiConnect24 channels.\n"
"WiiLink is an alternate provider for the discontinued WiiConnect24 Channels "
@@ -4214,7 +4334,7 @@ msgstr ""
msgid "Encoding"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:615
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:616
msgid ""
"Encountered the following errors while opening save files:\n"
"%1\n"
@@ -4227,12 +4347,12 @@ msgid "Enet Didn't Initialize"
msgstr ""
#: Source/Core/DiscIO/Enums.cpp:80
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:85
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:169
msgid "English"
msgstr "İngilizce"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:59
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:61
#: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:61
msgid "Enhancements"
msgstr "Geliştirmeler"
@@ -4263,84 +4383,84 @@ msgstr ""
msgid "Enter the DNS server to use:"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1300
+#: Source/Core/DolphinQt/MenuBar.cpp:1286
msgid "Enter the RSO module address:"
msgstr "RSO modül adresini girin:"
#: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:194
#: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:250
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:261
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:262
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386
#: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:265
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:343
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:349
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:346
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:352
#: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:46
-#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:521
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:256
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:295
-#: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:232
-#: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:259
-#: Source/Core/DolphinQt/ConvertDialog.cpp:424
-#: Source/Core/DolphinQt/ConvertDialog.cpp:471
-#: Source/Core/DolphinQt/ConvertDialog.cpp:525
+#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:539
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:255
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:296
+#: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:229
+#: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:256
+#: Source/Core/DolphinQt/ConvertDialog.cpp:426
+#: Source/Core/DolphinQt/ConvertDialog.cpp:473
+#: Source/Core/DolphinQt/ConvertDialog.cpp:528
#: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:255
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:638
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:644
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:653
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:665
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:684
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:690
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:705
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:713
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:737
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:744
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:637
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:643
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:652
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:664
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:683
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:689
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:704
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:712
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:736
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:743
#: Source/Core/DolphinQt/Debugger/RegisterColumn.cpp:86
#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:282
#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:431
-#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:241
-#: Source/Core/DolphinQt/GBAWidget.cpp:576
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:346
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:376
-#: Source/Core/DolphinQt/Main.cpp:209 Source/Core/DolphinQt/Main.cpp:225
-#: Source/Core/DolphinQt/Main.cpp:232 Source/Core/DolphinQt/MainWindow.cpp:295
-#: Source/Core/DolphinQt/MainWindow.cpp:303
-#: Source/Core/DolphinQt/MainWindow.cpp:1108
-#: Source/Core/DolphinQt/MainWindow.cpp:1494
-#: Source/Core/DolphinQt/MainWindow.cpp:1501
-#: Source/Core/DolphinQt/MainWindow.cpp:1561
-#: Source/Core/DolphinQt/MainWindow.cpp:1568
-#: Source/Core/DolphinQt/MainWindow.cpp:1670
-#: Source/Core/DolphinQt/MenuBar.cpp:1204
-#: Source/Core/DolphinQt/MenuBar.cpp:1284
+#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:237
+#: Source/Core/DolphinQt/GBAWidget.cpp:578
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:347
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:377
+#: Source/Core/DolphinQt/Main.cpp:211 Source/Core/DolphinQt/Main.cpp:227
+#: Source/Core/DolphinQt/Main.cpp:234 Source/Core/DolphinQt/MainWindow.cpp:297
+#: Source/Core/DolphinQt/MainWindow.cpp:305
+#: Source/Core/DolphinQt/MainWindow.cpp:1110
+#: Source/Core/DolphinQt/MainWindow.cpp:1507
+#: Source/Core/DolphinQt/MainWindow.cpp:1514
+#: Source/Core/DolphinQt/MainWindow.cpp:1574
+#: Source/Core/DolphinQt/MainWindow.cpp:1581
+#: Source/Core/DolphinQt/MainWindow.cpp:1690
+#: Source/Core/DolphinQt/MenuBar.cpp:1190
+#: Source/Core/DolphinQt/MenuBar.cpp:1270
+#: Source/Core/DolphinQt/MenuBar.cpp:1293
#: Source/Core/DolphinQt/MenuBar.cpp:1307
-#: Source/Core/DolphinQt/MenuBar.cpp:1321
-#: Source/Core/DolphinQt/MenuBar.cpp:1352
-#: Source/Core/DolphinQt/MenuBar.cpp:1376
-#: Source/Core/DolphinQt/MenuBar.cpp:1597
-#: Source/Core/DolphinQt/MenuBar.cpp:1608
-#: Source/Core/DolphinQt/MenuBar.cpp:1620
-#: Source/Core/DolphinQt/MenuBar.cpp:1642
-#: Source/Core/DolphinQt/MenuBar.cpp:1668
-#: Source/Core/DolphinQt/MenuBar.cpp:1722
-#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:315
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:477
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:738
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:980
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1098
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1108
-#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:334
-#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:340
-#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:347
+#: Source/Core/DolphinQt/MenuBar.cpp:1339
+#: Source/Core/DolphinQt/MenuBar.cpp:1363
+#: Source/Core/DolphinQt/MenuBar.cpp:1584
+#: Source/Core/DolphinQt/MenuBar.cpp:1595
+#: Source/Core/DolphinQt/MenuBar.cpp:1607
+#: Source/Core/DolphinQt/MenuBar.cpp:1629
+#: Source/Core/DolphinQt/MenuBar.cpp:1655
+#: Source/Core/DolphinQt/MenuBar.cpp:1709
+#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:316
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:479
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:740
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:982
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1100
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1110
+#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:332
+#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:338
+#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:345
#: Source/Core/DolphinQt/RenderWidget.cpp:123
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:203
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:224
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:423
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:439
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:460
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:481
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:525
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:562
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:585
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:204
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:225
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:433
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:449
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:470
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:491
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:535
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:572
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:595
#: Source/Core/DolphinQt/Translation.cpp:322
msgid "Error"
msgstr "Hata"
@@ -4349,13 +4469,13 @@ msgstr "Hata"
msgid "Error Opening Adapter: %1"
msgstr ""
-#: Source/Core/Core/NetPlayServer.cpp:1493
+#: Source/Core/Core/NetPlayServer.cpp:1497
msgid "Error collecting save data!"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:260
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:526
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:533
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:262
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:613
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:620
msgid "Error converting value"
msgstr ""
@@ -4367,15 +4487,15 @@ msgstr "Seçili dili yüklerken hata. Sistem varsayılanlarına geri dönülüyo
msgid "Error obtaining session list: %1"
msgstr ""
-#: Source/Core/DolphinQt/MainWindow.cpp:296
+#: Source/Core/DolphinQt/MainWindow.cpp:298
msgid "Error occurred while loading some texture packs"
msgstr ""
-#: Source/Core/Core/NetPlayClient.cpp:1847
+#: Source/Core/Core/NetPlayClient.cpp:1851
msgid "Error processing codes."
msgstr ""
-#: Source/Core/Core/NetPlayClient.cpp:1819
+#: Source/Core/Core/NetPlayClient.cpp:1823
msgid "Error processing data."
msgstr ""
@@ -4383,11 +4503,11 @@ msgstr ""
msgid "Error reading file: {0}"
msgstr ""
-#: Source/Core/Core/NetPlayServer.cpp:1529
+#: Source/Core/Core/NetPlayServer.cpp:1533
msgid "Error synchronizing cheat codes!"
msgstr ""
-#: Source/Core/Core/NetPlayServer.cpp:1515
+#: Source/Core/Core/NetPlayServer.cpp:1519
msgid "Error synchronizing save data!"
msgstr ""
@@ -4458,7 +4578,7 @@ msgstr ""
msgid "Euphoria"
msgstr "Euphoria"
-#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:282
+#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:274
#: Source/Core/UICommon/NetPlayIndex.cpp:249
msgid "Europe"
msgstr "Avrupa"
@@ -4487,11 +4607,11 @@ msgstr ""
msgid "Excluded: %1"
msgstr ""
-#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:73
+#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:72
msgid "Excluded: 0"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:107
+#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108
msgid "Exclusive Ubershaders"
msgstr ""
@@ -4539,14 +4659,14 @@ msgstr ""
msgid "Experimental"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:294
+#: Source/Core/DolphinQt/MenuBar.cpp:286
msgid "Export All Wii Saves"
msgstr "Tüm Wii Kayıtlarını Ver"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:422
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:447
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:492
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:499
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:423
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:448
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:493
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:500
msgid "Export Failed"
msgstr ""
@@ -4554,42 +4674,42 @@ msgstr ""
msgid "Export Recording"
msgstr "Çekimi Ver"
-#: Source/Core/DolphinQt/MenuBar.cpp:753
+#: Source/Core/DolphinQt/MenuBar.cpp:745
msgid "Export Recording..."
msgstr "Çekimi Ver..."
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:437
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:438
msgid "Export Save File"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:454
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:455
msgid "Export Save Files"
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:470
+#: Source/Core/DolphinQt/GameList/GameList.cpp:473
msgid "Export Wii Save"
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:388
+#: Source/Core/DolphinQt/GameList/GameList.cpp:389
msgid "Export Wii Saves"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:117
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:118
msgid "Export as .&gcs..."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:118
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:119
msgid "Export as .&sav..."
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1133
+#: Source/Core/DolphinQt/MenuBar.cpp:1115
#, c-format
msgctxt ""
msgid "Exported %n save(s)"
msgstr ""
#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:268
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:432
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:434
#: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:47
msgid "Extension"
msgstr "Uzantı"
@@ -4602,7 +4722,7 @@ msgstr ""
msgid "Extension Motion Simulation"
msgstr ""
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:520
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:522
msgid "External"
msgstr ""
@@ -4610,35 +4730,35 @@ msgstr ""
msgid "External Frame Buffer (XFB)"
msgstr "Harici Çerçeve Arabelleği (XFB)"
-#: Source/Core/DolphinQt/MenuBar.cpp:271
+#: Source/Core/DolphinQt/MenuBar.cpp:263
msgid "Extract Certificates from NAND"
msgstr ""
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:268
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:269
msgid "Extract Entire Disc..."
msgstr ""
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:292
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:293
msgid "Extract Entire Partition..."
msgstr ""
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:299
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:300
msgid "Extract File..."
msgstr "Dosyayı Genişlet..."
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:241
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:242
msgid "Extract Files..."
msgstr ""
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:251
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:252
msgid "Extract System Data..."
msgstr ""
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:355
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:356
msgid "Extracting All Files..."
msgstr ""
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:356
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357
msgid "Extracting Directory..."
msgstr ""
@@ -4648,7 +4768,7 @@ msgid "FD"
msgstr ""
#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:37
-#: Source/Core/DolphinQt/MenuBar.cpp:228
+#: Source/Core/DolphinQt/MenuBar.cpp:220
msgid "FIFO Player"
msgstr "FIFO Oynatıcısı"
@@ -4656,17 +4776,17 @@ msgstr "FIFO Oynatıcısı"
msgid "Failed loading XML."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:347
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:348
msgid ""
"Failed opening memory card:\n"
"%1"
msgstr ""
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:454
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:456
msgid "Failed to add this session to the NetPlay index: %1"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1669
+#: Source/Core/DolphinQt/MenuBar.cpp:1656
msgid "Failed to append to signature file '%1'"
msgstr ""
@@ -4674,11 +4794,11 @@ msgstr ""
msgid "Failed to claim interface for BT passthrough: {0}"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:574
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:676
msgid "Failed to clear Skylander!"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:575
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:677
msgid "Failed to clear the Skylander from slot(%1)!"
msgstr ""
@@ -4686,7 +4806,7 @@ msgstr ""
msgid "Failed to connect to Redump.org"
msgstr ""
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:981
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:983
msgid "Failed to connect to server: %1"
msgstr ""
@@ -4707,15 +4827,15 @@ msgstr ""
msgid "Failed to create DXGI factory"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:289
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:291
msgid "Failed to create Infinity file"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:678
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:798
msgid "Failed to create Skylander file!"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:679
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:799
msgid ""
"Failed to create Skylander file:\n"
"%1\n"
@@ -4731,7 +4851,7 @@ msgstr ""
msgid "Failed to delete NetPlay memory card. Verify your write permissions."
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:841
+#: Source/Core/DolphinQt/GameList/GameList.cpp:854
msgid "Failed to delete the selected file."
msgstr ""
@@ -4739,36 +4859,36 @@ msgstr ""
msgid "Failed to detach kernel driver for BT passthrough: {0}"
msgstr ""
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:343
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:346
msgid "Failed to download codes."
msgstr "Kod indirme başarısız."
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:738
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:737
msgid "Failed to dump %1: Can't open file"
msgstr ""
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:745
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:744
msgid "Failed to dump %1: Failed to write to file"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:488
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:489
msgctxt ""
msgid "Failed to export %n out of %1 save file(s)."
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:576
+#: Source/Core/DolphinQt/GameList/GameList.cpp:584
msgid "Failed to export the following save files:"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1204
+#: Source/Core/DolphinQt/MenuBar.cpp:1190
msgid "Failed to extract certificates from NAND"
msgstr ""
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386
msgid "Failed to extract file."
msgstr ""
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:261
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:262
msgid "Failed to extract system data."
msgstr ""
@@ -4783,29 +4903,29 @@ msgstr ""
msgid "Failed to find one or more D3D symbols"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:565
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:566
msgid "Failed to import \"%1\"."
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1109
+#: Source/Core/DolphinQt/MenuBar.cpp:1091
msgid ""
"Failed to import save file. Please launch the game once, then try again."
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1103
+#: Source/Core/DolphinQt/MenuBar.cpp:1085
msgid ""
"Failed to import save file. The given file appears to be corrupted or is not "
"a valid Wii save."
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1116
+#: Source/Core/DolphinQt/MenuBar.cpp:1098
msgid ""
"Failed to import save file. Your NAND may be corrupt, or something is "
"preventing access to files within it. Try repairing your NAND (Tools -> "
"Manage NAND -> Check NAND...), then import the save again."
msgstr ""
-#: Source/Core/DolphinQt/MainWindow.cpp:1108
+#: Source/Core/DolphinQt/MainWindow.cpp:1110
msgid "Failed to init core"
msgstr ""
@@ -4820,23 +4940,23 @@ msgstr ""
msgid "Failed to initialize renderer classes"
msgstr ""
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:204
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:205
msgid "Failed to install pack: %1"
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:619
-#: Source/Core/DolphinQt/MenuBar.cpp:1074
+#: Source/Core/DolphinQt/GameList/GameList.cpp:628
+#: Source/Core/DolphinQt/MenuBar.cpp:1056
msgid "Failed to install this title to the NAND."
msgstr ""
-#: Source/Core/DolphinQt/MainWindow.cpp:1594
+#: Source/Core/DolphinQt/MainWindow.cpp:1607
msgid ""
"Failed to listen on port %1. Is another instance of the NetPlay server "
"running?"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1321
-#: Source/Core/DolphinQt/MenuBar.cpp:1376
+#: Source/Core/DolphinQt/MenuBar.cpp:1307
+#: Source/Core/DolphinQt/MenuBar.cpp:1363
msgid "Failed to load RSO module at %1"
msgstr ""
@@ -4848,15 +4968,15 @@ msgstr ""
msgid "Failed to load dxgi.dll"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1608
+#: Source/Core/DolphinQt/MenuBar.cpp:1595
msgid "Failed to load map file '%1'"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:720
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:842
msgid "Failed to load the Skylander file!"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:721
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:843
msgid "Failed to load the Skylander file(%1)!\n"
msgstr ""
@@ -4870,8 +4990,12 @@ msgid ""
"update package."
msgstr ""
-#: Source/Core/DolphinQt/GBAWidget.cpp:576
-#: Source/Core/DolphinQt/MainWindow.cpp:1670
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:663
+msgid "Failed to modify Skylander!"
+msgstr ""
+
+#: Source/Core/DolphinQt/GBAWidget.cpp:578
+#: Source/Core/DolphinQt/MainWindow.cpp:1690
#: Source/Core/DolphinQt/RenderWidget.cpp:123
msgid "Failed to open '%1'"
msgstr ""
@@ -4898,40 +5022,40 @@ msgid ""
"Make sure there's an application assigned to open INI files."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:861
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:863
msgid "Failed to open file."
msgstr ""
-#: Source/Core/DolphinQt/MainWindow.cpp:1593
+#: Source/Core/DolphinQt/MainWindow.cpp:1606
msgid "Failed to open server"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:164
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:166
msgid "Failed to open the Infinity file!"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:165
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:167
msgid ""
"Failed to open the Infinity file(%1)!\n"
"File may already be in use on the base."
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:696
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:818
msgid "Failed to open the Skylander file!"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:697
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:819
msgid ""
"Failed to open the Skylander file(%1)!\n"
"File may already be in use on the portal."
msgstr ""
-#: Source/Core/DolphinQt/ConvertDialog.cpp:472
+#: Source/Core/DolphinQt/ConvertDialog.cpp:474
msgid "Failed to open the input file \"%1\"."
msgstr ""
-#: Source/Core/DiscIO/CompressedBlob.cpp:282 Source/Core/DiscIO/FileBlob.cpp:53
-#: Source/Core/DiscIO/WIABlob.cpp:2037
+#: Source/Core/DiscIO/CompressedBlob.cpp:287 Source/Core/DiscIO/FileBlob.cpp:58
+#: Source/Core/DiscIO/WIABlob.cpp:2043
msgid ""
"Failed to open the output file \"{0}\".\n"
"Check that you have permissions to write the target folder and that the "
@@ -4951,35 +5075,35 @@ msgstr ""
msgid "Failed to read DFF file."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:863
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:865
msgid "Failed to read from file."
msgstr ""
-#: Source/Core/DiscIO/CompressedBlob.cpp:373 Source/Core/DiscIO/FileBlob.cpp:93
-#: Source/Core/DiscIO/WIABlob.cpp:2052
+#: Source/Core/DiscIO/CompressedBlob.cpp:378 Source/Core/DiscIO/FileBlob.cpp:98
+#: Source/Core/DiscIO/WIABlob.cpp:2058
msgid "Failed to read from the input file \"{0}\"."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:423
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:641
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:424
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:642
msgid "Failed to read selected savefile(s) from memory card."
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:173
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:175
msgid "Failed to read the Infinity file!"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:174
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:176
msgid ""
"Failed to read the Infinity file(%1)!\n"
"File was too small."
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:706
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:828
msgid "Failed to read the Skylander file!"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:707
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:829
msgid ""
"Failed to read the Skylander file(%1)!\n"
"File was too small."
@@ -4989,18 +5113,18 @@ msgstr ""
msgid "Failed to read {0}"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:668
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:669
msgid "Failed to remove file."
msgstr ""
-#: Source/Core/DolphinQt/ConvertDialog.cpp:453
+#: Source/Core/DolphinQt/ConvertDialog.cpp:455
msgid ""
"Failed to remove junk data from file \"%1\".\n"
"\n"
"Would you like to convert it without removing junk data?"
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:647
+#: Source/Core/DolphinQt/GameList/GameList.cpp:658
msgid "Failed to remove this title from the NAND."
msgstr ""
@@ -5016,27 +5140,34 @@ msgstr ""
msgid "Failed to reset NetPlay redirect folder. Verify your write permissions."
msgstr ""
-#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:241
+#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:237
msgid "Failed to save FIFO log."
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1598
+#: Source/Core/DolphinQt/MenuBar.cpp:1585
msgid "Failed to save code map to path '%1'"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1642
+#: Source/Core/DolphinQt/MenuBar.cpp:1629
msgid "Failed to save signature file '%1'"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1621
+#: Source/Core/DolphinQt/MenuBar.cpp:1608
msgid "Failed to save symbol map to path '%1'"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1723
+#: Source/Core/DolphinQt/MenuBar.cpp:1710
msgid "Failed to save to signature file '%1'"
msgstr ""
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:225
+#: Source/Core/Core/Core.cpp:548
+msgid ""
+"Failed to sync SD card with folder. All changes made this session will be "
+"discarded on next boot if you do not manually re-issue a resync in Config > "
+"Wii > SD Card Settings > Convert File to Folder Now!"
+msgstr ""
+
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:226
msgid "Failed to uninstall pack: %1"
msgstr ""
@@ -5056,9 +5187,9 @@ msgstr ""
msgid "Failed to write config file!"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:573
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:676
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:691
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:574
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:677
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:692
msgid "Failed to write modified memory card to disk."
msgstr ""
@@ -5066,33 +5197,33 @@ msgstr ""
msgid "Failed to write redirected save."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:447
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:448
msgid "Failed to write savefile to disk."
msgstr ""
-#: Source/Core/DiscIO/CompressedBlob.cpp:377 Source/Core/DiscIO/FileBlob.cpp:99
-#: Source/Core/DiscIO/WIABlob.cpp:2056
+#: Source/Core/DiscIO/CompressedBlob.cpp:382
+#: Source/Core/DiscIO/FileBlob.cpp:104 Source/Core/DiscIO/WIABlob.cpp:2062
msgid ""
"Failed to write the output file \"{0}\".\n"
"Check that you have enough space available on the target drive."
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:617
-#: Source/Core/DolphinQt/GameList/GameList.cpp:645
-#: Source/Core/DolphinQt/GameList/GameList.cpp:840
-#: Source/Core/DolphinQt/MenuBar.cpp:1074
+#: Source/Core/DolphinQt/GameList/GameList.cpp:626
+#: Source/Core/DolphinQt/GameList/GameList.cpp:656
+#: Source/Core/DolphinQt/GameList/GameList.cpp:853
+#: Source/Core/DolphinQt/MenuBar.cpp:1056
msgid "Failure"
msgstr ""
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:183
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:184
msgid "Fair Input Delay"
msgstr ""
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:199
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:200
msgid "Fallback Region"
msgstr ""
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:210
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:211
msgid "Fallback Region:"
msgstr ""
@@ -5116,17 +5247,21 @@ msgstr ""
msgid "Field of View"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:233
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:235
msgid "Figure Number:"
msgstr ""
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:380
+msgid "Figure type"
+msgstr ""
+
#: Source/Core/DolphinQt/Config/InfoWidget.cpp:46
msgid "File Details"
msgstr "Dosya Ayrıntıları"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:991
+#: Source/Core/DolphinQt/GameList/GameList.cpp:1005
#: Source/Core/DolphinQt/GameList/GameListModel.cpp:229
-#: Source/Core/DolphinQt/MenuBar.cpp:652
+#: Source/Core/DolphinQt/MenuBar.cpp:644
msgid "File Format"
msgstr "Dosya Biçimi"
@@ -5138,20 +5273,20 @@ msgstr "Dosya Biçimi:"
msgid "File Info"
msgstr "Dosya Bilgisi"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:986
+#: Source/Core/DolphinQt/GameList/GameList.cpp:1000
#: Source/Core/DolphinQt/GameList/GameListModel.cpp:223
-#: Source/Core/DolphinQt/MenuBar.cpp:647
+#: Source/Core/DolphinQt/MenuBar.cpp:639
msgid "File Name"
msgstr "Dosya Adı"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:987
+#: Source/Core/DolphinQt/GameList/GameList.cpp:1001
#: Source/Core/DolphinQt/GameList/GameListModel.cpp:225
-#: Source/Core/DolphinQt/MenuBar.cpp:648
+#: Source/Core/DolphinQt/MenuBar.cpp:640
msgid "File Path"
msgstr "Dosya Yolu"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:990
-#: Source/Core/DolphinQt/MenuBar.cpp:651
+#: Source/Core/DolphinQt/GameList/GameList.cpp:1004
+#: Source/Core/DolphinQt/MenuBar.cpp:643
msgid "File Size"
msgstr "Dosya Boyutu"
@@ -5159,15 +5294,15 @@ msgstr "Dosya Boyutu"
msgid "File Size:"
msgstr "Dosya Boyutu:"
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:349
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:352
msgid "File contained no codes."
msgstr "Dosya kod içermemektedir."
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:149
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:150
msgid "Filename"
msgstr ""
-#: Source/Core/DiscIO/CompressedBlob.cpp:289
+#: Source/Core/DiscIO/CompressedBlob.cpp:294
msgid "Files opened, ready to compress."
msgstr "Dosyalar açıldı, sıkıştırılmaya hazır."
@@ -5177,11 +5312,11 @@ msgid ""
"{1}"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:833
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:835
msgid "Filesize does not match any known GameCube Memory Card size."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:836
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:838
msgid "Filesize in header mismatches actual card size."
msgstr ""
@@ -5189,7 +5324,7 @@ msgstr ""
msgid "Filesystem"
msgstr "Dosya sistemi"
-#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:102
+#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:103
msgid "Filters"
msgstr ""
@@ -5205,7 +5340,7 @@ msgstr "Bul &Önceki"
msgid "Finish Calibration"
msgstr "Kalibrasyonu Bitir"
-#: Source/Core/DolphinQt/WiiUpdate.cpp:109
+#: Source/Core/DolphinQt/WiiUpdate.cpp:110
msgid ""
"Finishing the update...\n"
"This can take a while."
@@ -5213,19 +5348,19 @@ msgstr ""
#. i18n: One of the elements in the Skylanders games. Japanese: 火. For official translations
#. in other languages, check the SuperChargers manual at https://support.activision.com/manuals
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:333
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:349
msgid "Fire"
msgstr ""
-#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:40
+#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:41
msgid "First Person"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:127
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:128
msgid "Fix Checksums"
msgstr "Sağlamayı Düzelt"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:690
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:691
msgid "Fix Checksums Failed"
msgstr ""
@@ -5235,7 +5370,7 @@ msgstr ""
#. i18n: These are the kinds of flags that a CPU uses (e.g. carry),
#. not the kinds of flags that represent e.g. countries
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:166
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167
#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:87
msgid "Flags"
msgstr "Bayraklar"
@@ -5244,12 +5379,12 @@ msgstr "Bayraklar"
#. i18n: Floating-point (non-integer) number
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:138
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:198
-#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:152
+#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:153
#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97
msgid "Float"
msgstr ""
-#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:565
+#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:566
msgid "Follow &branch"
msgstr ""
@@ -5269,35 +5404,35 @@ msgid ""
"\">refer to this page
."
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:57
+#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:58
msgid "Force 16:9"
msgstr "16:9'a Zorla"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:117
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:152
msgid "Force 24-Bit Color"
msgstr "24-Bit Renge Zorla"
-#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:57
+#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:58
msgid "Force 4:3"
msgstr "4:3'e Zorla"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:96
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:115
msgid "Force Linear"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:103
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:122
msgid "Force Linear and 16x Anisotropic"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:97
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:116
msgid "Force Linear and 2x Anisotropic"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:99
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:118
msgid "Force Linear and 4x Anisotropic"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:101
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:120
msgid "Force Linear and 8x Anisotropic"
msgstr ""
@@ -5305,7 +5440,7 @@ msgstr ""
msgid "Force Listen Port:"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:95
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:114
msgid "Force Nearest"
msgstr ""
@@ -5317,7 +5452,7 @@ msgstr ""
msgid "Forced on because %1 doesn't support geometry shaders."
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:474
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:556
msgid ""
"Forces the game to output graphics for any aspect ratio. Use with \"Aspect "
"Ratio\" set to \"Force 16:9\" to force 4:3-only games to run at 16:9."
@@ -5327,7 +5462,7 @@ msgid ""
""
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:503
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:585
msgid ""
"Forces the game to render the RGB color channels in 24-bit, thereby "
"increasing quality by reducing color banding.
Has no impact on "
@@ -5335,7 +5470,7 @@ msgid ""
"unsure, leave this checked."
msgstr ""
-#: Source/Core/DolphinQt/ConvertDialog.cpp:59
+#: Source/Core/DolphinQt/ConvertDialog.cpp:60
msgid "Format:"
msgstr "Biçim:"
@@ -5401,19 +5536,19 @@ msgstr ""
msgid "France"
msgstr "Fransa"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:311
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:312
msgid "Free Blocks: %1"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:312
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:313
msgid "Free Files: %1"
msgstr ""
-#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:42
+#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:43
msgid "Free Look Control Type"
msgstr ""
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:468
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:470
msgid "Free Look Controller %1"
msgstr ""
@@ -5421,7 +5556,7 @@ msgstr ""
msgid "Free Look Settings"
msgstr ""
-#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:54
+#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:55
msgid ""
"Free Look allows for manipulation of the in-game camera. Different camera "
"types are available from the dropdown.
如无法确定,请不要选中此项。"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:508
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:590
msgid ""
"Disables the blending of adjacent rows when copying the EFB. This is known "
"in some games as \"deflickering\" or \"smoothing\".
Displays icons for the player, game, and "
+"achievements. Simple visual option, but will require a small amount of extra "
+"memory and time to download the images."
+msgstr ""
+"启用成就徽章。
Displays a brief popup "
+"message whenever the player makes progress on an achievement that tracks an "
+"accumulated value, such as 60 out of 120 stars."
+msgstr ""
+"启用成就进度通知。
每当玩家在需要累积值的成就上取得进展时,显示一条简"
+"短的弹出消息,例如已获得 120 颗星中的 60 颗星。"
+
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:90
+msgid ""
"Enable unlocking achievements in Encore Mode.
Encore Mode re-enables "
"achievements the player has already unlocked on the site so that the player "
"will be notified if they meet the unlock conditions again, useful for custom "
@@ -4335,7 +4466,7 @@ msgid ""
"= Compatible, OFF = Fast)"
msgstr "启用浮点结果标记运算,一些游戏需要。(开 = 兼容,关 = 快速)"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:514
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:596
msgid ""
"Enables detection of arbitrary mipmaps, which some games use for special "
"distance-based effects.
May have false positives that result in "
@@ -4348,18 +4479,19 @@ msgstr ""
"启用对非常规多级纹理的检测。一些游戏使用这一技术实现基于距离的特殊效果。"
"
如无法确定,请选中此项。"
"dolphin_emphasis>"
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:79
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:84
msgid ""
-"Enables emulation of the CPU write-back cache.\n"
-"Enabling will have a significant impact on performance.\n"
-"This should be left disabled unless absolutely needed."
+"Enables emulation of the CPU write-back cache. Enabling will have a "
+"significant impact on performance. This should be left disabled unless "
+"absolutely needed.
If unsure, leave this unchecked."
+""
msgstr ""
-"启用 CPU 回写缓存的模拟。\n"
-"启用后将对性能产生重大影响。\n"
-"如非必要,请保持禁用。"
+"启用 CPU 回写缓存的模拟。 启用后将对性能产生重大影响。 如非必要,请保持"
+"禁用。
如无法确定,请不要选中此项。"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:522
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:604
msgid ""
"Enables scRGB HDR output (if supported by your graphics backend and "
"monitor). Fullscreen might be required.
This gives post process "
@@ -4393,7 +4525,7 @@ msgstr ""
"启用 scRGB HDR 输出(如果您的图形后端和显示器支持)。可能需要全屏。
这"
"为后处理着色器提供了更多的准确性空间,允许“AutoHDR”后处理着色器工作,并允许完"
"全显示 PAL 和 NTSC-J 色彩空间。
请注意,游戏仍然在内部以 SDR 渲染。"
-"
如果 不确定,请不要选中此项。"
+"
如无法确定,请不要选中此项。"
#: Source/Core/DolphinQt/Settings/AudioPane.cpp:151
msgid "Enables stretching of the audio to match emulation speed."
@@ -4407,17 +4539,25 @@ msgid ""
""
msgstr ""
"启用 GPU 而非 CPU 进行纹理解码。
这将在某些场景下,或 CPU 成为瓶颈的系"
-"统中带来性能提升。
如果不确定,请不要选中此项。"
+"统中带来性能提升。
如无法确定,请不要选中此项。"
"dolphin_emphasis>"
#: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:100
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:68
msgid ""
"Enables the Memory Management Unit, needed for some games. (ON = Compatible, "
"OFF = Fast)"
msgstr "启用内存管理单元。一些游戏需要(开 = 兼容,关 = 快速)"
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:193
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:70
+msgid ""
+"Enables the Memory Management Unit, needed for some games. (ON = Compatible, "
+"OFF = Fast)
If unsure, leave this unchecked."
+"dolphin_emphasis>"
+msgstr ""
+"启用内存管理单元,某些游戏需要启用此项。(开 = 兼容,关 = 快"
+"速)
如无法确定,请不要选中此项。"
+
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190
msgid ""
"Enables the WiiLink service for WiiConnect24 channels.\n"
"WiiLink is an alternate provider for the discontinued WiiConnect24 Channels "
@@ -4437,7 +4577,7 @@ msgid ""
"unsure, leave this unchecked."
msgstr ""
"启用由视频后端调用的 API 验证,这可以帮助调试图形问题。在 Vulkan 和 D3D 后"
-"端,这也为已编译的着色器启用调试符号。
如果不确定,"
+"端,这也为已编译的着色器启用调试符号。
如无法确定,"
"请不要选中此项。"
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:344
@@ -4445,7 +4585,7 @@ msgid ""
"Encodes frame dumps using the FFV1 codec.
If "
"unsure, leave this unchecked."
msgstr ""
-"使用 FFV1 编解码器编码转储的帧。
如果不确定,请不要"
+"使用 FFV1 编解码器编码转储的帧。
如无法确定,请不要"
"选中此项。"
#. i18n: Character encoding
@@ -4453,7 +4593,7 @@ msgstr ""
msgid "Encoding"
msgstr "编码"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:615
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:616
msgid ""
"Encountered the following errors while opening save files:\n"
"%1\n"
@@ -4470,12 +4610,12 @@ msgid "Enet Didn't Initialize"
msgstr "Enet 没有初始化"
#: Source/Core/DiscIO/Enums.cpp:80
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:85
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:169
msgid "English"
msgstr "英语"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:59
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:61
#: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:61
msgid "Enhancements"
msgstr "增强"
@@ -4506,84 +4646,84 @@ msgstr "输入密码"
msgid "Enter the DNS server to use:"
msgstr "输入要使用的 DNS 服务器:"
-#: Source/Core/DolphinQt/MenuBar.cpp:1300
+#: Source/Core/DolphinQt/MenuBar.cpp:1286
msgid "Enter the RSO module address:"
msgstr "请输入 RSO 模块地址:"
#: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:194
#: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:250
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:261
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:262
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386
#: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:265
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:343
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:349
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:346
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:352
#: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:46
-#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:521
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:256
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:295
-#: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:232
-#: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:259
-#: Source/Core/DolphinQt/ConvertDialog.cpp:424
-#: Source/Core/DolphinQt/ConvertDialog.cpp:471
-#: Source/Core/DolphinQt/ConvertDialog.cpp:525
+#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:539
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:255
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:296
+#: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:229
+#: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:256
+#: Source/Core/DolphinQt/ConvertDialog.cpp:426
+#: Source/Core/DolphinQt/ConvertDialog.cpp:473
+#: Source/Core/DolphinQt/ConvertDialog.cpp:528
#: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:255
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:638
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:644
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:653
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:665
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:684
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:690
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:705
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:713
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:737
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:744
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:637
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:643
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:652
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:664
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:683
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:689
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:704
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:712
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:736
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:743
#: Source/Core/DolphinQt/Debugger/RegisterColumn.cpp:86
#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:282
#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:431
-#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:241
-#: Source/Core/DolphinQt/GBAWidget.cpp:576
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:346
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:376
-#: Source/Core/DolphinQt/Main.cpp:209 Source/Core/DolphinQt/Main.cpp:225
-#: Source/Core/DolphinQt/Main.cpp:232 Source/Core/DolphinQt/MainWindow.cpp:295
-#: Source/Core/DolphinQt/MainWindow.cpp:303
-#: Source/Core/DolphinQt/MainWindow.cpp:1108
-#: Source/Core/DolphinQt/MainWindow.cpp:1494
-#: Source/Core/DolphinQt/MainWindow.cpp:1501
-#: Source/Core/DolphinQt/MainWindow.cpp:1561
-#: Source/Core/DolphinQt/MainWindow.cpp:1568
-#: Source/Core/DolphinQt/MainWindow.cpp:1670
-#: Source/Core/DolphinQt/MenuBar.cpp:1204
-#: Source/Core/DolphinQt/MenuBar.cpp:1284
+#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:237
+#: Source/Core/DolphinQt/GBAWidget.cpp:578
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:347
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:377
+#: Source/Core/DolphinQt/Main.cpp:211 Source/Core/DolphinQt/Main.cpp:227
+#: Source/Core/DolphinQt/Main.cpp:234 Source/Core/DolphinQt/MainWindow.cpp:297
+#: Source/Core/DolphinQt/MainWindow.cpp:305
+#: Source/Core/DolphinQt/MainWindow.cpp:1110
+#: Source/Core/DolphinQt/MainWindow.cpp:1507
+#: Source/Core/DolphinQt/MainWindow.cpp:1514
+#: Source/Core/DolphinQt/MainWindow.cpp:1574
+#: Source/Core/DolphinQt/MainWindow.cpp:1581
+#: Source/Core/DolphinQt/MainWindow.cpp:1690
+#: Source/Core/DolphinQt/MenuBar.cpp:1190
+#: Source/Core/DolphinQt/MenuBar.cpp:1270
+#: Source/Core/DolphinQt/MenuBar.cpp:1293
#: Source/Core/DolphinQt/MenuBar.cpp:1307
-#: Source/Core/DolphinQt/MenuBar.cpp:1321
-#: Source/Core/DolphinQt/MenuBar.cpp:1352
-#: Source/Core/DolphinQt/MenuBar.cpp:1376
-#: Source/Core/DolphinQt/MenuBar.cpp:1597
-#: Source/Core/DolphinQt/MenuBar.cpp:1608
-#: Source/Core/DolphinQt/MenuBar.cpp:1620
-#: Source/Core/DolphinQt/MenuBar.cpp:1642
-#: Source/Core/DolphinQt/MenuBar.cpp:1668
-#: Source/Core/DolphinQt/MenuBar.cpp:1722
-#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:315
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:477
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:738
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:980
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1098
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1108
-#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:334
-#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:340
-#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:347
+#: Source/Core/DolphinQt/MenuBar.cpp:1339
+#: Source/Core/DolphinQt/MenuBar.cpp:1363
+#: Source/Core/DolphinQt/MenuBar.cpp:1584
+#: Source/Core/DolphinQt/MenuBar.cpp:1595
+#: Source/Core/DolphinQt/MenuBar.cpp:1607
+#: Source/Core/DolphinQt/MenuBar.cpp:1629
+#: Source/Core/DolphinQt/MenuBar.cpp:1655
+#: Source/Core/DolphinQt/MenuBar.cpp:1709
+#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:316
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:479
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:740
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:982
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1100
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1110
+#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:332
+#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:338
+#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:345
#: Source/Core/DolphinQt/RenderWidget.cpp:123
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:203
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:224
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:423
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:439
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:460
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:481
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:525
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:562
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:585
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:204
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:225
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:433
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:449
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:470
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:491
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:535
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:572
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:595
#: Source/Core/DolphinQt/Translation.cpp:322
msgid "Error"
msgstr "错误"
@@ -4592,13 +4732,13 @@ msgstr "错误"
msgid "Error Opening Adapter: %1"
msgstr "打开适配器时出错: %1"
-#: Source/Core/Core/NetPlayServer.cpp:1493
+#: Source/Core/Core/NetPlayServer.cpp:1497
msgid "Error collecting save data!"
msgstr "收集存档数据时出错!"
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:260
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:526
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:533
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:262
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:613
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:620
msgid "Error converting value"
msgstr "转换值时出错"
@@ -4610,15 +4750,15 @@ msgstr "加载选定语言错误。正在退回系统默认。"
msgid "Error obtaining session list: %1"
msgstr "获取会话列表时出错: %1"
-#: Source/Core/DolphinQt/MainWindow.cpp:296
+#: Source/Core/DolphinQt/MainWindow.cpp:298
msgid "Error occurred while loading some texture packs"
msgstr "加载一些纹理包时发生错误"
-#: Source/Core/Core/NetPlayClient.cpp:1847
+#: Source/Core/Core/NetPlayClient.cpp:1851
msgid "Error processing codes."
msgstr "处理代码时出错。"
-#: Source/Core/Core/NetPlayClient.cpp:1819
+#: Source/Core/Core/NetPlayClient.cpp:1823
msgid "Error processing data."
msgstr "处理数据时出错。"
@@ -4626,11 +4766,11 @@ msgstr "处理数据时出错。"
msgid "Error reading file: {0}"
msgstr "读取文件时出错:{0}"
-#: Source/Core/Core/NetPlayServer.cpp:1529
+#: Source/Core/Core/NetPlayServer.cpp:1533
msgid "Error synchronizing cheat codes!"
msgstr "同步保存金手指代码时出错!"
-#: Source/Core/Core/NetPlayServer.cpp:1515
+#: Source/Core/Core/NetPlayServer.cpp:1519
msgid "Error synchronizing save data!"
msgstr "同步存档数据时出错!"
@@ -4707,7 +4847,7 @@ msgstr "在 {1} 分区未使用的 {0} 区块中发现错误。"
msgid "Euphoria"
msgstr "Euphoria"
-#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:282
+#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:274
#: Source/Core/UICommon/NetPlayIndex.cpp:249
msgid "Europe"
msgstr "欧洲"
@@ -4748,11 +4888,11 @@ msgstr ""
msgid "Excluded: %1"
msgstr "已排除: %1"
-#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:73
+#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:72
msgid "Excluded: 0"
msgstr "已排除: 0"
-#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:107
+#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108
msgid "Exclusive Ubershaders"
msgstr "专用超着色器"
@@ -4800,14 +4940,14 @@ msgstr "建议使用的变量名称。"
msgid "Experimental"
msgstr "实验性"
-#: Source/Core/DolphinQt/MenuBar.cpp:294
+#: Source/Core/DolphinQt/MenuBar.cpp:286
msgid "Export All Wii Saves"
msgstr "导出所有 Wii 存档"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:422
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:447
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:492
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:499
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:423
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:448
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:493
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:500
msgid "Export Failed"
msgstr "导出失败"
@@ -4815,42 +4955,42 @@ msgstr "导出失败"
msgid "Export Recording"
msgstr "导出录制"
-#: Source/Core/DolphinQt/MenuBar.cpp:753
+#: Source/Core/DolphinQt/MenuBar.cpp:745
msgid "Export Recording..."
msgstr "导出录制..."
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:437
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:438
msgid "Export Save File"
msgstr "导出存档文件"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:454
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:455
msgid "Export Save Files"
msgstr "导出存档文件"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:470
+#: Source/Core/DolphinQt/GameList/GameList.cpp:473
msgid "Export Wii Save"
msgstr "导出 Wii 存档"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:388
+#: Source/Core/DolphinQt/GameList/GameList.cpp:389
msgid "Export Wii Saves"
msgstr "导出 Wii 存档"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:117
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:118
msgid "Export as .&gcs..."
msgstr "导出为 .gcs...(&G)"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:118
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:119
msgid "Export as .&sav..."
msgstr "导出为 .sav...(&S)"
-#: Source/Core/DolphinQt/MenuBar.cpp:1133
+#: Source/Core/DolphinQt/MenuBar.cpp:1115
#, c-format
msgctxt ""
msgid "Exported %n save(s)"
msgstr "已导出 %n 个存档"
#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:268
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:432
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:434
#: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:47
msgid "Extension"
msgstr "扩展"
@@ -4863,7 +5003,7 @@ msgstr "扩展体感输入"
msgid "Extension Motion Simulation"
msgstr "扩展体感模拟"
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:520
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:522
msgid "External"
msgstr "外部"
@@ -4871,35 +5011,35 @@ msgstr "外部"
msgid "External Frame Buffer (XFB)"
msgstr "外部帧缓冲 (XFB)"
-#: Source/Core/DolphinQt/MenuBar.cpp:271
+#: Source/Core/DolphinQt/MenuBar.cpp:263
msgid "Extract Certificates from NAND"
msgstr "从 NAND 中提取证书"
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:268
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:269
msgid "Extract Entire Disc..."
msgstr "提取整个光盘..."
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:292
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:293
msgid "Extract Entire Partition..."
msgstr "提取整个分区..."
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:299
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:300
msgid "Extract File..."
msgstr "提取文件..."
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:241
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:242
msgid "Extract Files..."
msgstr "提取文件..."
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:251
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:252
msgid "Extract System Data..."
msgstr "提取系统数据"
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:355
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:356
msgid "Extracting All Files..."
msgstr "正在提取所有文件..."
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:356
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357
msgid "Extracting Directory..."
msgstr "正在提取目录..."
@@ -4909,7 +5049,7 @@ msgid "FD"
msgstr "文件描述符"
#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:37
-#: Source/Core/DolphinQt/MenuBar.cpp:228
+#: Source/Core/DolphinQt/MenuBar.cpp:220
msgid "FIFO Player"
msgstr "FIFO 回放器"
@@ -4917,7 +5057,7 @@ msgstr "FIFO 回放器"
msgid "Failed loading XML."
msgstr "加载 XML 文件失败。"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:347
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:348
msgid ""
"Failed opening memory card:\n"
"%1"
@@ -4925,11 +5065,11 @@ msgstr ""
"打开存储卡失败:\n"
"%1"
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:454
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:456
msgid "Failed to add this session to the NetPlay index: %1"
msgstr "无法将此会话添加到联机索引: %1"
-#: Source/Core/DolphinQt/MenuBar.cpp:1669
+#: Source/Core/DolphinQt/MenuBar.cpp:1656
msgid "Failed to append to signature file '%1'"
msgstr "附加到签名文件 '%1' 失败"
@@ -4937,11 +5077,11 @@ msgstr "附加到签名文件 '%1' 失败"
msgid "Failed to claim interface for BT passthrough: {0}"
msgstr "申请蓝牙直通接口失败: {0}"
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:574
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:676
msgid "Failed to clear Skylander!"
msgstr "清除 Skylander 失败!"
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:575
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:677
msgid "Failed to clear the Skylander from slot(%1)!"
msgstr "清除插槽 (%1) 的 Skylander 失败!"
@@ -4949,7 +5089,7 @@ msgstr "清除插槽 (%1) 的 Skylander 失败!"
msgid "Failed to connect to Redump.org"
msgstr "连接 Redump.org 失败"
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:981
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:983
msgid "Failed to connect to server: %1"
msgstr "连接服务器失败: %1"
@@ -4970,15 +5110,15 @@ msgstr "创建 D3D12 全局资源失败"
msgid "Failed to create DXGI factory"
msgstr "创建 DXGI 工厂失败"
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:289
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:291
msgid "Failed to create Infinity file"
msgstr "创建 Infinity 文件失败"
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:678
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:798
msgid "Failed to create Skylander file!"
msgstr "创建 Skylander 文件失败!"
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:679
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:799
msgid ""
"Failed to create Skylander file:\n"
"%1\n"
@@ -4997,7 +5137,7 @@ msgstr "删除联机 GBA{0} 存档文件失败。请验证你的写入权限。"
msgid "Failed to delete NetPlay memory card. Verify your write permissions."
msgstr "删除联机存储卡失败。请验证你的写入权限。"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:841
+#: Source/Core/DolphinQt/GameList/GameList.cpp:854
msgid "Failed to delete the selected file."
msgstr "无法删除所选文件。"
@@ -5005,36 +5145,36 @@ msgstr "无法删除所选文件。"
msgid "Failed to detach kernel driver for BT passthrough: {0}"
msgstr "分离蓝牙直通内核驱动失败: {0}"
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:343
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:346
msgid "Failed to download codes."
msgstr "下载代码失败。"
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:738
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:737
msgid "Failed to dump %1: Can't open file"
msgstr "转储 %1 失败:无法打开文件"
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:745
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:744
msgid "Failed to dump %1: Failed to write to file"
msgstr "转储 %1 失败:无法写入文件"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:488
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:489
msgctxt ""
msgid "Failed to export %n out of %1 save file(s)."
msgstr "在 %1 个存档文件中 %n 个导出失败。"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:576
+#: Source/Core/DolphinQt/GameList/GameList.cpp:584
msgid "Failed to export the following save files:"
msgstr "导出以下存档文件失败:"
-#: Source/Core/DolphinQt/MenuBar.cpp:1204
+#: Source/Core/DolphinQt/MenuBar.cpp:1190
msgid "Failed to extract certificates from NAND"
msgstr "从 NAND 中提取证书失败"
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386
msgid "Failed to extract file."
msgstr "提取文件失败。"
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:261
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:262
msgid "Failed to extract system data."
msgstr "提取系统数据失败。"
@@ -5052,22 +5192,22 @@ msgstr ""
msgid "Failed to find one or more D3D symbols"
msgstr "无法找到一个或多个 D3D 符号"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:565
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:566
msgid "Failed to import \"%1\"."
msgstr "导入 \"%1\" 失败。"
-#: Source/Core/DolphinQt/MenuBar.cpp:1109
+#: Source/Core/DolphinQt/MenuBar.cpp:1091
msgid ""
"Failed to import save file. Please launch the game once, then try again."
msgstr "导入存档文件失败。请运行一次游戏,然后重试。"
-#: Source/Core/DolphinQt/MenuBar.cpp:1103
+#: Source/Core/DolphinQt/MenuBar.cpp:1085
msgid ""
"Failed to import save file. The given file appears to be corrupted or is not "
"a valid Wii save."
msgstr "导入存档文件失败。给定的文件似乎已损坏或不是有效的 Wii 存档。"
-#: Source/Core/DolphinQt/MenuBar.cpp:1116
+#: Source/Core/DolphinQt/MenuBar.cpp:1098
msgid ""
"Failed to import save file. Your NAND may be corrupt, or something is "
"preventing access to files within it. Try repairing your NAND (Tools -> "
@@ -5076,7 +5216,7 @@ msgstr ""
"导入存档文件失败。您的 NAND 可能已损坏,或某些因素阻止访问里面的文件。请尝试"
"修复 NAND(工具 -> 管理 NAND -> 校验 NAND...),然后再次导入存档。"
-#: Source/Core/DolphinQt/MainWindow.cpp:1108
+#: Source/Core/DolphinQt/MainWindow.cpp:1110
msgid "Failed to init core"
msgstr "初始化核心失败"
@@ -5094,23 +5234,23 @@ msgstr ""
msgid "Failed to initialize renderer classes"
msgstr "初始化渲染器类失败"
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:204
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:205
msgid "Failed to install pack: %1"
msgstr "安装包失败: %1"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:619
-#: Source/Core/DolphinQt/MenuBar.cpp:1074
+#: Source/Core/DolphinQt/GameList/GameList.cpp:628
+#: Source/Core/DolphinQt/MenuBar.cpp:1056
msgid "Failed to install this title to the NAND."
msgstr "无法将该游戏安装到 NAND。"
-#: Source/Core/DolphinQt/MainWindow.cpp:1594
+#: Source/Core/DolphinQt/MainWindow.cpp:1607
msgid ""
"Failed to listen on port %1. Is another instance of the NetPlay server "
"running?"
msgstr "监听端口 %1 失败。是否有另一个联机服务器的实例正在运行?"
-#: Source/Core/DolphinQt/MenuBar.cpp:1321
-#: Source/Core/DolphinQt/MenuBar.cpp:1376
+#: Source/Core/DolphinQt/MenuBar.cpp:1307
+#: Source/Core/DolphinQt/MenuBar.cpp:1363
msgid "Failed to load RSO module at %1"
msgstr "无法在 %1 处加载 RSO 模块"
@@ -5122,15 +5262,15 @@ msgstr "载入 d3d11.dll 失败"
msgid "Failed to load dxgi.dll"
msgstr "载入 dxgi.dll 失败"
-#: Source/Core/DolphinQt/MenuBar.cpp:1608
+#: Source/Core/DolphinQt/MenuBar.cpp:1595
msgid "Failed to load map file '%1'"
msgstr "载入映射文件 '%1' 失败"
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:720
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:842
msgid "Failed to load the Skylander file!"
msgstr "载入 Skylander 文件失败!"
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:721
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:843
msgid "Failed to load the Skylander file(%1)!\n"
msgstr "载入 Skylander 文件 (%1) 失败!\n"
@@ -5144,8 +5284,12 @@ msgid ""
"update package."
msgstr "加载 {0} 失败。如果你使用的是 Windows 7,请尝试安装 KB4019990 更新包。"
-#: Source/Core/DolphinQt/GBAWidget.cpp:576
-#: Source/Core/DolphinQt/MainWindow.cpp:1670
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:663
+msgid "Failed to modify Skylander!"
+msgstr "修改 Skylander 失败!"
+
+#: Source/Core/DolphinQt/GBAWidget.cpp:578
+#: Source/Core/DolphinQt/MainWindow.cpp:1690
#: Source/Core/DolphinQt/RenderWidget.cpp:123
msgid "Failed to open '%1'"
msgstr "无法打开 '%1'"
@@ -5174,19 +5318,19 @@ msgstr ""
"无法在外部编辑器中打开文件。\n"
"请确保已关联了应用程序来打开 INI 文件。"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:861
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:863
msgid "Failed to open file."
msgstr "打开文件失败。"
-#: Source/Core/DolphinQt/MainWindow.cpp:1593
+#: Source/Core/DolphinQt/MainWindow.cpp:1606
msgid "Failed to open server"
msgstr "打开服务器失败"
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:164
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:166
msgid "Failed to open the Infinity file!"
msgstr "打开 Infinity 文件失败!"
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:165
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:167
msgid ""
"Failed to open the Infinity file(%1)!\n"
"File may already be in use on the base."
@@ -5194,11 +5338,11 @@ msgstr ""
"打开 Infinity 文件 (%1) 失败!\n"
"此 Skylander 可能已在传送门上。"
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:696
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:818
msgid "Failed to open the Skylander file!"
msgstr "打开 Skylander 文件失败!"
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:697
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:819
msgid ""
"Failed to open the Skylander file(%1)!\n"
"File may already be in use on the portal."
@@ -5206,12 +5350,12 @@ msgstr ""
"打开 Skylander 文件 (%1) 失败!\n"
"此 Skylander 可能已在传送门上。"
-#: Source/Core/DolphinQt/ConvertDialog.cpp:472
+#: Source/Core/DolphinQt/ConvertDialog.cpp:474
msgid "Failed to open the input file \"%1\"."
msgstr "打开输入文件 \"%1\" 失败。"
-#: Source/Core/DiscIO/CompressedBlob.cpp:282 Source/Core/DiscIO/FileBlob.cpp:53
-#: Source/Core/DiscIO/WIABlob.cpp:2037
+#: Source/Core/DiscIO/CompressedBlob.cpp:287 Source/Core/DiscIO/FileBlob.cpp:58
+#: Source/Core/DiscIO/WIABlob.cpp:2043
msgid ""
"Failed to open the output file \"{0}\".\n"
"Check that you have permissions to write the target folder and that the "
@@ -5233,25 +5377,25 @@ msgstr "将给定值解析为目标数据类型失败。"
msgid "Failed to read DFF file."
msgstr "读取 DFF 文件失败。"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:863
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:865
msgid "Failed to read from file."
msgstr "从文件读取失败。"
-#: Source/Core/DiscIO/CompressedBlob.cpp:373 Source/Core/DiscIO/FileBlob.cpp:93
-#: Source/Core/DiscIO/WIABlob.cpp:2052
+#: Source/Core/DiscIO/CompressedBlob.cpp:378 Source/Core/DiscIO/FileBlob.cpp:98
+#: Source/Core/DiscIO/WIABlob.cpp:2058
msgid "Failed to read from the input file \"{0}\"."
msgstr "从输入文件 “{0}” 读取失败。"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:423
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:641
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:424
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:642
msgid "Failed to read selected savefile(s) from memory card."
msgstr "从存储卡读取所选的存档文件失败。"
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:173
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:175
msgid "Failed to read the Infinity file!"
msgstr "读取 Infinity 文件失败!"
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:174
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:176
msgid ""
"Failed to read the Infinity file(%1)!\n"
"File was too small."
@@ -5259,11 +5403,11 @@ msgstr ""
"读取 Infinity 文件 (%1) 失败!\n"
"文件过小。"
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:706
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:828
msgid "Failed to read the Skylander file!"
msgstr "读取 Skylander 文件失败!"
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:707
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:829
msgid ""
"Failed to read the Skylander file(%1)!\n"
"File was too small."
@@ -5275,11 +5419,11 @@ msgstr ""
msgid "Failed to read {0}"
msgstr "读取 {0} 失败"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:668
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:669
msgid "Failed to remove file."
msgstr "移除文件失败。"
-#: Source/Core/DolphinQt/ConvertDialog.cpp:453
+#: Source/Core/DolphinQt/ConvertDialog.cpp:455
msgid ""
"Failed to remove junk data from file \"%1\".\n"
"\n"
@@ -5289,7 +5433,7 @@ msgstr ""
"\n"
"是否要在不移除垃圾数据的情况下进行转换?"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:647
+#: Source/Core/DolphinQt/GameList/GameList.cpp:658
msgid "Failed to remove this title from the NAND."
msgstr "将该游戏从 NAND 中移除失败。"
@@ -5305,27 +5449,36 @@ msgstr "重置联机 NAND 文件夹失败。请验证你的写入权限。"
msgid "Failed to reset NetPlay redirect folder. Verify your write permissions."
msgstr "重置联机重定向文件夹失败。请验证你的写入权限。"
-#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:241
+#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:237
msgid "Failed to save FIFO log."
msgstr "保存 FIFO 日志失败。"
-#: Source/Core/DolphinQt/MenuBar.cpp:1598
+#: Source/Core/DolphinQt/MenuBar.cpp:1585
msgid "Failed to save code map to path '%1'"
msgstr "保存代码映射到路径 '%1' 失败"
-#: Source/Core/DolphinQt/MenuBar.cpp:1642
+#: Source/Core/DolphinQt/MenuBar.cpp:1629
msgid "Failed to save signature file '%1'"
msgstr "保存签名文件 '%1' 失败"
-#: Source/Core/DolphinQt/MenuBar.cpp:1621
+#: Source/Core/DolphinQt/MenuBar.cpp:1608
msgid "Failed to save symbol map to path '%1'"
msgstr "保存符号映射到路径 '%1' 失败"
-#: Source/Core/DolphinQt/MenuBar.cpp:1723
+#: Source/Core/DolphinQt/MenuBar.cpp:1710
msgid "Failed to save to signature file '%1'"
msgstr "保存到签名文件 '%1' 失败"
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:225
+#: Source/Core/Core/Core.cpp:548
+msgid ""
+"Failed to sync SD card with folder. All changes made this session will be "
+"discarded on next boot if you do not manually re-issue a resync in Config > "
+"Wii > SD Card Settings > Convert File to Folder Now!"
+msgstr ""
+"无法将 SD 卡与文件夹同步。如果您不在“设置 > Wii > SD 卡设置 > 立即将文件转换"
+"为文件夹”中手动重新发起同步,在下次启动时,此会话的所有更改都将被丢弃!"
+
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:226
msgid "Failed to uninstall pack: %1"
msgstr "卸载包失败: %1"
@@ -5345,9 +5498,9 @@ msgstr "写入 Wii 存档失败。"
msgid "Failed to write config file!"
msgstr "写入配置文件失败!"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:573
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:676
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:691
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:574
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:677
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:692
msgid "Failed to write modified memory card to disk."
msgstr "修改过的存储卡写入磁盘失败。"
@@ -5355,12 +5508,12 @@ msgstr "修改过的存储卡写入磁盘失败。"
msgid "Failed to write redirected save."
msgstr "写入重定向存档失败。"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:447
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:448
msgid "Failed to write savefile to disk."
msgstr "存档文件写入磁盘失败。"
-#: Source/Core/DiscIO/CompressedBlob.cpp:377 Source/Core/DiscIO/FileBlob.cpp:99
-#: Source/Core/DiscIO/WIABlob.cpp:2056
+#: Source/Core/DiscIO/CompressedBlob.cpp:382
+#: Source/Core/DiscIO/FileBlob.cpp:104 Source/Core/DiscIO/WIABlob.cpp:2062
msgid ""
"Failed to write the output file \"{0}\".\n"
"Check that you have enough space available on the target drive."
@@ -5368,22 +5521,22 @@ msgstr ""
"无法写入输出文件 “{0}”。\n"
"请检查目标驱动器是否有足够多的可用空间。"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:617
-#: Source/Core/DolphinQt/GameList/GameList.cpp:645
-#: Source/Core/DolphinQt/GameList/GameList.cpp:840
-#: Source/Core/DolphinQt/MenuBar.cpp:1074
+#: Source/Core/DolphinQt/GameList/GameList.cpp:626
+#: Source/Core/DolphinQt/GameList/GameList.cpp:656
+#: Source/Core/DolphinQt/GameList/GameList.cpp:853
+#: Source/Core/DolphinQt/MenuBar.cpp:1056
msgid "Failure"
msgstr "失败"
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:183
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:184
msgid "Fair Input Delay"
msgstr "公平输入延迟"
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:199
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:200
msgid "Fallback Region"
msgstr "备用区域"
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:210
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:211
msgid "Fallback Region:"
msgstr "备用区域:"
@@ -5408,17 +5561,21 @@ msgstr ""
msgid "Field of View"
msgstr "视野"
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:233
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:235
msgid "Figure Number:"
msgstr "角色编号:"
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:380
+msgid "Figure type"
+msgstr "角色类型"
+
#: Source/Core/DolphinQt/Config/InfoWidget.cpp:46
msgid "File Details"
msgstr "文件详细信息"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:991
+#: Source/Core/DolphinQt/GameList/GameList.cpp:1005
#: Source/Core/DolphinQt/GameList/GameListModel.cpp:229
-#: Source/Core/DolphinQt/MenuBar.cpp:652
+#: Source/Core/DolphinQt/MenuBar.cpp:644
msgid "File Format"
msgstr "文件格式"
@@ -5430,20 +5587,20 @@ msgstr "文件格式:"
msgid "File Info"
msgstr "文件信息"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:986
+#: Source/Core/DolphinQt/GameList/GameList.cpp:1000
#: Source/Core/DolphinQt/GameList/GameListModel.cpp:223
-#: Source/Core/DolphinQt/MenuBar.cpp:647
+#: Source/Core/DolphinQt/MenuBar.cpp:639
msgid "File Name"
msgstr "文件名"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:987
+#: Source/Core/DolphinQt/GameList/GameList.cpp:1001
#: Source/Core/DolphinQt/GameList/GameListModel.cpp:225
-#: Source/Core/DolphinQt/MenuBar.cpp:648
+#: Source/Core/DolphinQt/MenuBar.cpp:640
msgid "File Path"
msgstr "文件路径"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:990
-#: Source/Core/DolphinQt/MenuBar.cpp:651
+#: Source/Core/DolphinQt/GameList/GameList.cpp:1004
+#: Source/Core/DolphinQt/MenuBar.cpp:643
msgid "File Size"
msgstr "文件大小"
@@ -5451,15 +5608,15 @@ msgstr "文件大小"
msgid "File Size:"
msgstr "文件大小:"
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:349
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:352
msgid "File contained no codes."
msgstr "文件未包含代码。"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:149
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:150
msgid "Filename"
msgstr "文件名"
-#: Source/Core/DiscIO/CompressedBlob.cpp:289
+#: Source/Core/DiscIO/CompressedBlob.cpp:294
msgid "Files opened, ready to compress."
msgstr "文件已打开,准备压缩。"
@@ -5471,11 +5628,11 @@ msgstr ""
"找不到 M3U 文件 “{0}” 中指定的下列文件:\n"
"{1}"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:833
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:835
msgid "Filesize does not match any known GameCube Memory Card size."
msgstr "文件大小与任何已知的 GameCube 存储卡大小都不匹配。"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:836
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:838
msgid "Filesize in header mismatches actual card size."
msgstr "标头中的文件大小与实际卡大小不匹配。"
@@ -5483,7 +5640,7 @@ msgstr "标头中的文件大小与实际卡大小不匹配。"
msgid "Filesystem"
msgstr "文件系统"
-#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:102
+#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:103
msgid "Filters"
msgstr "过滤"
@@ -5499,7 +5656,7 @@ msgstr "查找上一个(&P)"
msgid "Finish Calibration"
msgstr "完成校准"
-#: Source/Core/DolphinQt/WiiUpdate.cpp:109
+#: Source/Core/DolphinQt/WiiUpdate.cpp:110
msgid ""
"Finishing the update...\n"
"This can take a while."
@@ -5509,19 +5666,19 @@ msgstr ""
#. i18n: One of the elements in the Skylanders games. Japanese: 火. For official translations
#. in other languages, check the SuperChargers manual at https://support.activision.com/manuals
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:333
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:349
msgid "Fire"
msgstr "火"
-#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:40
+#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:41
msgid "First Person"
msgstr "第一人称"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:127
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:128
msgid "Fix Checksums"
msgstr "修正校验和"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:690
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:691
msgid "Fix Checksums Failed"
msgstr "修正校验和失败"
@@ -5531,7 +5688,7 @@ msgstr "固定对齐"
#. i18n: These are the kinds of flags that a CPU uses (e.g. carry),
#. not the kinds of flags that represent e.g. countries
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:166
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167
#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:87
msgid "Flags"
msgstr "标记"
@@ -5540,12 +5697,12 @@ msgstr "标记"
#. i18n: Floating-point (non-integer) number
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:138
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:198
-#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:152
+#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:153
#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97
msgid "Float"
msgstr "浮点"
-#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:565
+#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:566
msgid "Follow &branch"
msgstr "跟随分支(&B)"
@@ -5569,35 +5726,35 @@ msgstr ""
"有关设置说明,请参阅此页"
"面。"
-#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:57
+#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:58
msgid "Force 16:9"
msgstr "强制 16:9"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:117
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:152
msgid "Force 24-Bit Color"
msgstr "强制 24 位色"
-#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:57
+#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:58
msgid "Force 4:3"
msgstr "强制 4:3"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:96
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:115
msgid "Force Linear"
msgstr "强制线性"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:103
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:122
msgid "Force Linear and 16x Anisotropic"
msgstr "强制线性和 16x 各向异性"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:97
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:116
msgid "Force Linear and 2x Anisotropic"
msgstr "强制线性和 2x 各向异性"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:99
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:118
msgid "Force Linear and 4x Anisotropic"
msgstr "强制线性和 4x 各向异性"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:101
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:120
msgid "Force Linear and 8x Anisotropic"
msgstr "强制线性和 8x 各向异性"
@@ -5605,7 +5762,7 @@ msgstr "强制线性和 8x 各向异性"
msgid "Force Listen Port:"
msgstr "强制监听端口:"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:95
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:114
msgid "Force Nearest"
msgstr "强制邻近"
@@ -5617,7 +5774,7 @@ msgstr "已强制关闭,因为 %1 不支持顶点着色器扩展。"
msgid "Forced on because %1 doesn't support geometry shaders."
msgstr "已强制打开,因为 %1 不支持几何着色器。"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:474
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:556
msgid ""
"Forces the game to output graphics for any aspect ratio. Use with \"Aspect "
"Ratio\" set to \"Force 16:9\" to force 4:3-only games to run at 16:9."
@@ -5629,9 +5786,9 @@ msgstr ""
"强制游戏输出任何比例的图像。配合“强制 16:9”的“长宽比”设置可使仅用于 4:3 比例"
"的游戏在 16:9 下运行。
如无法确定,请不要选中此项。"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:503
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:585
msgid ""
"Forces the game to render the RGB color channels in 24-bit, thereby "
"increasing quality by reducing color banding.
Has no impact on "
@@ -5639,10 +5796,10 @@ msgid ""
"unsure, leave this checked."
msgstr ""
"强制游戏渲染 24 位的 RGB 颜色通道,从而通过减少渐变色带来提高质量。
Disabling the "
@@ -3435,7 +3522,7 @@ msgid ""
"checked."
msgstr ""
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:96
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:97
msgid "Disc"
msgstr "光碟"
@@ -3469,25 +3556,25 @@ msgstr ""
msgid "Distance of travel from neutral position."
msgstr ""
-#: Source/Core/DolphinQt/Main.cpp:259
+#: Source/Core/DolphinQt/Main.cpp:264
msgid "Do you authorize Dolphin to report information to Dolphin's developers?"
msgstr ""
-#: Source/Core/DolphinQt/MainWindow.cpp:1692
+#: Source/Core/DolphinQt/MainWindow.cpp:1712
msgid "Do you want to add \"%1\" to the list of Game Paths?"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1241
+#: Source/Core/DolphinQt/MenuBar.cpp:1227
msgid "Do you want to clear the list of symbol names?"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:658
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:659
#, c-format
msgctxt ""
msgid "Do you want to delete the %n selected save file(s)?"
msgstr ""
-#: Source/Core/DolphinQt/MainWindow.cpp:933
+#: Source/Core/DolphinQt/MainWindow.cpp:935
msgid "Do you want to stop the current emulation?"
msgstr "您要停止目前的模擬嗎?"
@@ -3499,35 +3586,35 @@ msgstr ""
msgid "Dolby Pro Logic II Decoder"
msgstr ""
-#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:219
-#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:230
+#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:215
+#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:226
msgid "Dolphin FIFO Log (*.dff)"
msgstr ""
-#: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:327
+#: Source/Core/DolphinQt/RiivolutionBootWidget.cpp:326
msgid "Dolphin Game Mod Preset"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1536
-#: Source/Core/DolphinQt/MenuBar.cpp:1553
-#: Source/Core/DolphinQt/MenuBar.cpp:1572
+#: Source/Core/DolphinQt/MenuBar.cpp:1523
+#: Source/Core/DolphinQt/MenuBar.cpp:1540
+#: Source/Core/DolphinQt/MenuBar.cpp:1559
msgid "Dolphin Map File (*.map)"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:73
+#: Source/Core/DolphinQt/MenuBar.cpp:74
msgid "Dolphin Signature CSV File"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:73
+#: Source/Core/DolphinQt/MenuBar.cpp:74
msgid "Dolphin Signature File"
msgstr ""
-#: Source/Core/DolphinQt/MainWindow.cpp:1772
-#: Source/Core/DolphinQt/MainWindow.cpp:1843
+#: Source/Core/DolphinQt/MainWindow.cpp:1823
+#: Source/Core/DolphinQt/MainWindow.cpp:1894
msgid "Dolphin TAS Movies (*.dtm)"
msgstr "Dolphin TAS 影片 (*.dtm)"
-#: Source/Core/DolphinQt/ConvertDialog.cpp:326
+#: Source/Core/DolphinQt/ConvertDialog.cpp:327
msgid ""
"Dolphin can't convert NKit files to non-NKit files. Converting an NKit file "
"in Dolphin will result in another NKit file.\n"
@@ -3538,13 +3625,13 @@ msgid ""
"Do you want to continue anyway?"
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:279
+#: Source/Core/DolphinQt/GameList/GameList.cpp:280
msgid ""
"Dolphin could not find any GameCube/Wii ISOs or WADs.\n"
"Double-click here to set a games directory..."
msgstr ""
-#: Source/Core/DolphinQt/ConvertDialog.cpp:526
+#: Source/Core/DolphinQt/ConvertDialog.cpp:529
msgid "Dolphin failed to complete the requested action."
msgstr ""
@@ -3556,7 +3643,7 @@ msgstr ""
msgid "Dolphin is a free and open-source GameCube and Wii emulator."
msgstr ""
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:996
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:998
msgid "Dolphin is too old for traversal server"
msgstr ""
@@ -3570,7 +3657,7 @@ msgstr ""
msgid "Dolphin is unable to verify unlicensed discs."
msgstr ""
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:216
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:217
msgid ""
"Dolphin will use this for titles whose region cannot be determined "
"automatically."
@@ -3585,15 +3672,15 @@ msgstr ""
msgid "Domain"
msgstr ""
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:193
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:194
msgid "Don't Update"
msgstr ""
-#: Source/Core/DolphinQt/NKitWarningDialog.cpp:53
+#: Source/Core/DolphinQt/NKitWarningDialog.cpp:56
msgid "Don't show this again"
msgstr ""
-#: Source/Core/DiscIO/CompressedBlob.cpp:369
+#: Source/Core/DiscIO/CompressedBlob.cpp:374
msgid "Done compressing disc image."
msgstr ""
@@ -3606,37 +3693,37 @@ msgstr ""
#. i18n: A double precision floating point number
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:139
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:199
-#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:154
+#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:155
msgid "Double"
msgstr ""
#: Source/Core/Core/FreeLookManager.cpp:89
#: Source/Core/Core/HW/WiimoteEmu/Extension/Guitar.cpp:80
#: Source/Core/Core/HW/WiimoteEmu/Extension/Shinkansen.cpp:35
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:43
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:44
#: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:21
#: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUAccelerometer.cpp:19
#: Source/Core/InputCommon/ControllerEmu/ControllerEmu.h:24
msgid "Down"
msgstr "下"
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:86
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:87
msgid "Download Codes"
msgstr ""
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:88
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:89
msgid "Download Codes from the WiiRD Database"
msgstr ""
-#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:148
+#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:153
msgid "Download Game Covers from GameTDB.com for Use in Grid Mode"
msgstr ""
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:370
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:373
msgid "Download complete"
msgstr ""
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:371
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:374
msgid "Downloaded %1 codes. (added %2)"
msgstr ""
@@ -3659,7 +3746,7 @@ msgstr ""
msgid "Dual View"
msgstr ""
-#: Source/Core/Core/HW/EXI/EXI_Device.h:95
+#: Source/Core/Core/HW/EXI/EXI_Device.h:94
msgid "Dummy"
msgstr "空"
@@ -3679,7 +3766,7 @@ msgstr ""
msgid "Dump &MRAM"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:814
+#: Source/Core/DolphinQt/MenuBar.cpp:806
msgid "Dump Audio"
msgstr "轉儲聲音"
@@ -3691,7 +3778,7 @@ msgstr ""
msgid "Dump EFB Target"
msgstr "轉儲 EFB 目標"
-#: Source/Core/DolphinQt/MenuBar.cpp:808
+#: Source/Core/DolphinQt/MenuBar.cpp:800
msgid "Dump Frames"
msgstr "轉儲畫格"
@@ -3764,12 +3851,12 @@ msgid "Duration of Turbo Button Release (frames):"
msgstr ""
#: Source/Core/DiscIO/Enums.cpp:95
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:87
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:177
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:174
msgid "Dutch"
msgstr "Dutch"
-#: Source/Core/DolphinQt/MenuBar.cpp:215
+#: Source/Core/DolphinQt/MenuBar.cpp:207
msgid "E&xit"
msgstr "離開(&X)"
@@ -3785,7 +3872,7 @@ msgid ""
"driver."
msgstr ""
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:185
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:186
msgid ""
"Each player sends their own inputs to the game, with equal buffer size for "
"all players, configured by the host.\n"
@@ -3799,7 +3886,7 @@ msgstr ""
#. i18n: One of the elements in the Skylanders games. Japanese: 土. For official translations
#. in other languages, check the SuperChargers manual at https://support.activision.com/manuals
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:336
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:352
msgid "Earth"
msgstr ""
@@ -3812,7 +3899,7 @@ msgstr ""
msgid "Edit Breakpoint"
msgstr ""
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:426
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:430
msgid "Edit..."
msgstr ""
@@ -3846,7 +3933,7 @@ msgstr ""
#. i18n: Elements are a trait of Skylanders figures. For official translations of this term,
#. check the Skylanders SuperChargers manual at https://support.activision.com/manuals
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:289
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:300
msgid "Element"
msgstr ""
@@ -3854,11 +3941,11 @@ msgstr ""
msgid "Embedded Frame Buffer (EFB)"
msgstr ""
-#: Source/Core/Core/State.cpp:541
+#: Source/Core/Core/State.cpp:629
msgid "Empty"
msgstr ""
-#: Source/Core/Core/Core.cpp:246
+#: Source/Core/Core/Core.cpp:247
msgid "Emu Thread already running"
msgstr "模擬器線程已經執行中"
@@ -3866,15 +3953,15 @@ msgstr "模擬器線程已經執行中"
msgid "Emulate Disc Speed"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:60
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:61
msgid "Emulate Infinity Base"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:146
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:157
msgid "Emulate Skylander Portal"
msgstr ""
-#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:110
+#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:111
msgid "Emulate the Wii's Bluetooth adapter"
msgstr ""
@@ -3884,11 +3971,11 @@ msgid ""
"Defaults to True"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:230
+#: Source/Core/DolphinQt/MenuBar.cpp:222
msgid "Emulated USB Devices"
msgstr ""
-#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:141
+#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:142
msgid "Emulated Wii Remote"
msgstr ""
@@ -3908,12 +3995,12 @@ msgstr ""
msgid "Emulation must be started to record."
msgstr ""
-#: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:29
-#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:33
+#: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp:30
+#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:34
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:120
-#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:129
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:402
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:419
+#: Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp:130
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:406
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:423
msgid "Enable"
msgstr ""
@@ -3921,6 +4008,10 @@ msgstr ""
msgid "Enable API Validation Layers"
msgstr ""
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:83
+msgid "Enable Achievement Badges"
+msgstr ""
+
#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:60
msgid "Enable Achievements"
msgstr ""
@@ -3929,15 +4020,19 @@ msgstr ""
msgid "Enable Audio Stretching"
msgstr ""
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:142
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:143
msgid "Enable Cheats"
msgstr "開啟作弊"
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:155
+#: Source/Core/DolphinQt/TAS/TASInputWindow.cpp:53
+msgid "Enable Controller Inpu&t"
+msgstr ""
+
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:161
msgid "Enable Custom RTC"
msgstr ""
-#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:149
+#: Source/Core/DolphinQt/Settings/InterfacePane.cpp:154
msgid "Enable Debugging UI"
msgstr ""
@@ -3945,19 +4040,19 @@ msgstr ""
msgid "Enable Dual Core"
msgstr "開啟雙核心"
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:139
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:140
msgid "Enable Dual Core (speedup)"
msgstr "開啟雙核心 (加速)"
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:88
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:94
msgid "Enable Emulated CPU Clock Override"
msgstr ""
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:118
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:124
msgid "Enable Emulated Memory Size Override"
msgstr ""
-#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:78
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:88
msgid "Enable Encore Achievements"
msgstr ""
@@ -3974,10 +4069,14 @@ msgid "Enable Leaderboards"
msgstr ""
#: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:88
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:66
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:68
msgid "Enable MMU"
msgstr "開啟 MMU"
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:78
+msgid "Enable Progress Notifications"
+msgstr ""
+
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:156
msgid "Enable Progressive Scan"
msgstr "開啟逐行掃瞄"
@@ -3991,15 +4090,15 @@ msgid "Enable Rich Presence"
msgstr ""
#: Source/Core/DolphinQt/Config/Mapping/GCPadWiiUConfigDialog.cpp:39
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:353
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:352
msgid "Enable Rumble"
msgstr ""
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:160
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:157
msgid "Enable Screen Saver"
msgstr ""
-#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:113
+#: Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp:114
msgid "Enable Speaker Data"
msgstr ""
@@ -4007,11 +4106,11 @@ msgstr ""
msgid "Enable Unofficial Achievements"
msgstr ""
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:230
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:231
msgid "Enable Usage Statistics Reporting"
msgstr ""
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:161
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:158
msgid "Enable WiiConnect24 via WiiLink"
msgstr ""
@@ -4019,10 +4118,17 @@ msgstr ""
msgid "Enable Wireframe"
msgstr "開啟線框"
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:77
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:82
msgid "Enable Write-Back Cache (slow)"
msgstr ""
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:85
+msgid ""
+"Enable achievement badges.
Displays icons for the player, game, and "
+"achievements. Simple visual option, but will require a small amount of extra "
+"memory and time to download the images."
+msgstr ""
+
#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:64
msgid ""
"Enable competing in RetroAchievements leaderboards.
Displays a brief popup "
+"message whenever the player makes progress on an achievement that tracks an "
+"accumulated value, such as 60 out of 120 stars."
+msgstr ""
+
+#: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:90
+msgid ""
"Enable unlocking achievements in Encore Mode.
Encore Mode re-enables "
"achievements the player has already unlocked on the site so that the player "
"will be notified if they meet the unlock conditions again, useful for custom "
@@ -4083,7 +4196,7 @@ msgid ""
"= Compatible, OFF = Fast)"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:514
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:596
msgid ""
"Enables detection of arbitrary mipmaps, which some games use for special "
"distance-based effects.
May have false positives that result in "
@@ -4094,11 +4207,12 @@ msgid ""
"dolphin_emphasis>"
msgstr ""
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:79
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:84
msgid ""
-"Enables emulation of the CPU write-back cache.\n"
-"Enabling will have a significant impact on performance.\n"
-"This should be left disabled unless absolutely needed."
+"Enables emulation of the CPU write-back cache. Enabling will have a "
+"significant impact on performance. This should be left disabled unless "
+"absolutely needed.
If unsure, leave this unchecked."
+""
msgstr ""
#: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:365
@@ -4116,7 +4230,7 @@ msgid ""
"this unchecked."
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:522
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:604
msgid ""
"Enables scRGB HDR output (if supported by your graphics backend and "
"monitor). Fullscreen might be required.
This gives post process "
@@ -4139,13 +4253,19 @@ msgid ""
msgstr ""
#: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:100
-#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:68
msgid ""
"Enables the Memory Management Unit, needed for some games. (ON = Compatible, "
"OFF = Fast)"
msgstr "開啟記憶體管理單元,某些遊戲需要。(ON = 兼容、OFF = 快速)"
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:193
+#: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:70
+msgid ""
+"Enables the Memory Management Unit, needed for some games. (ON = Compatible, "
+"OFF = Fast)
If unsure, leave this unchecked."
+"dolphin_emphasis>"
+msgstr ""
+
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:190
msgid ""
"Enables the WiiLink service for WiiConnect24 channels.\n"
"WiiLink is an alternate provider for the discontinued WiiConnect24 Channels "
@@ -4172,7 +4292,7 @@ msgstr ""
msgid "Encoding"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:615
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:616
msgid ""
"Encountered the following errors while opening save files:\n"
"%1\n"
@@ -4185,12 +4305,12 @@ msgid "Enet Didn't Initialize"
msgstr ""
#: Source/Core/DiscIO/Enums.cpp:80
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:85
-#: Source/Core/DolphinQt/Settings/WiiPane.cpp:172
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:86
+#: Source/Core/DolphinQt/Settings/WiiPane.cpp:169
msgid "English"
msgstr "English"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:59
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:61
#: Source/Core/DolphinQt/Config/Graphics/GraphicsWindow.cpp:61
msgid "Enhancements"
msgstr "增強"
@@ -4221,84 +4341,84 @@ msgstr ""
msgid "Enter the DNS server to use:"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1300
+#: Source/Core/DolphinQt/MenuBar.cpp:1286
msgid "Enter the RSO module address:"
msgstr ""
#: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:194
#: Source/Core/DolphinQt/Config/CheatCodeEditor.cpp:250
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:261
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:262
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386
#: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:265
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:343
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:349
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:346
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:352
#: Source/Core/DolphinQt/Config/LogConfigWidget.cpp:46
-#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:521
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:256
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:295
-#: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:232
-#: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:259
-#: Source/Core/DolphinQt/ConvertDialog.cpp:424
-#: Source/Core/DolphinQt/ConvertDialog.cpp:471
-#: Source/Core/DolphinQt/ConvertDialog.cpp:525
+#: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:539
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:255
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:296
+#: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:229
+#: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:256
+#: Source/Core/DolphinQt/ConvertDialog.cpp:426
+#: Source/Core/DolphinQt/ConvertDialog.cpp:473
+#: Source/Core/DolphinQt/ConvertDialog.cpp:528
#: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:255
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:638
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:644
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:653
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:665
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:684
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:690
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:705
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:713
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:737
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:744
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:637
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:643
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:652
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:664
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:683
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:689
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:704
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:712
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:736
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:743
#: Source/Core/DolphinQt/Debugger/RegisterColumn.cpp:86
#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:282
#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:431
-#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:241
-#: Source/Core/DolphinQt/GBAWidget.cpp:576
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:346
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:376
-#: Source/Core/DolphinQt/Main.cpp:209 Source/Core/DolphinQt/Main.cpp:225
-#: Source/Core/DolphinQt/Main.cpp:232 Source/Core/DolphinQt/MainWindow.cpp:295
-#: Source/Core/DolphinQt/MainWindow.cpp:303
-#: Source/Core/DolphinQt/MainWindow.cpp:1108
-#: Source/Core/DolphinQt/MainWindow.cpp:1494
-#: Source/Core/DolphinQt/MainWindow.cpp:1501
-#: Source/Core/DolphinQt/MainWindow.cpp:1561
-#: Source/Core/DolphinQt/MainWindow.cpp:1568
-#: Source/Core/DolphinQt/MainWindow.cpp:1670
-#: Source/Core/DolphinQt/MenuBar.cpp:1204
-#: Source/Core/DolphinQt/MenuBar.cpp:1284
+#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:237
+#: Source/Core/DolphinQt/GBAWidget.cpp:578
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:347
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:377
+#: Source/Core/DolphinQt/Main.cpp:211 Source/Core/DolphinQt/Main.cpp:227
+#: Source/Core/DolphinQt/Main.cpp:234 Source/Core/DolphinQt/MainWindow.cpp:297
+#: Source/Core/DolphinQt/MainWindow.cpp:305
+#: Source/Core/DolphinQt/MainWindow.cpp:1110
+#: Source/Core/DolphinQt/MainWindow.cpp:1507
+#: Source/Core/DolphinQt/MainWindow.cpp:1514
+#: Source/Core/DolphinQt/MainWindow.cpp:1574
+#: Source/Core/DolphinQt/MainWindow.cpp:1581
+#: Source/Core/DolphinQt/MainWindow.cpp:1690
+#: Source/Core/DolphinQt/MenuBar.cpp:1190
+#: Source/Core/DolphinQt/MenuBar.cpp:1270
+#: Source/Core/DolphinQt/MenuBar.cpp:1293
#: Source/Core/DolphinQt/MenuBar.cpp:1307
-#: Source/Core/DolphinQt/MenuBar.cpp:1321
-#: Source/Core/DolphinQt/MenuBar.cpp:1352
-#: Source/Core/DolphinQt/MenuBar.cpp:1376
-#: Source/Core/DolphinQt/MenuBar.cpp:1597
-#: Source/Core/DolphinQt/MenuBar.cpp:1608
-#: Source/Core/DolphinQt/MenuBar.cpp:1620
-#: Source/Core/DolphinQt/MenuBar.cpp:1642
-#: Source/Core/DolphinQt/MenuBar.cpp:1668
-#: Source/Core/DolphinQt/MenuBar.cpp:1722
-#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:315
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:477
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:738
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:980
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1098
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1108
-#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:334
-#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:340
-#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:347
+#: Source/Core/DolphinQt/MenuBar.cpp:1339
+#: Source/Core/DolphinQt/MenuBar.cpp:1363
+#: Source/Core/DolphinQt/MenuBar.cpp:1584
+#: Source/Core/DolphinQt/MenuBar.cpp:1595
+#: Source/Core/DolphinQt/MenuBar.cpp:1607
+#: Source/Core/DolphinQt/MenuBar.cpp:1629
+#: Source/Core/DolphinQt/MenuBar.cpp:1655
+#: Source/Core/DolphinQt/MenuBar.cpp:1709
+#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:316
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:479
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:740
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:982
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1100
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1110
+#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:332
+#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:338
+#: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:345
#: Source/Core/DolphinQt/RenderWidget.cpp:123
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:203
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:224
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:423
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:439
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:460
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:481
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:525
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:562
-#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:585
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:204
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:225
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:433
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:449
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:470
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:491
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:535
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:572
+#: Source/Core/DolphinQt/Settings/GameCubePane.cpp:595
#: Source/Core/DolphinQt/Translation.cpp:322
msgid "Error"
msgstr "錯誤"
@@ -4307,13 +4427,13 @@ msgstr "錯誤"
msgid "Error Opening Adapter: %1"
msgstr ""
-#: Source/Core/Core/NetPlayServer.cpp:1493
+#: Source/Core/Core/NetPlayServer.cpp:1497
msgid "Error collecting save data!"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:260
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:526
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:533
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:262
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:613
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:620
msgid "Error converting value"
msgstr ""
@@ -4325,15 +4445,15 @@ msgstr "讀取選擇的語系出錯。返回使用系統預設值。"
msgid "Error obtaining session list: %1"
msgstr ""
-#: Source/Core/DolphinQt/MainWindow.cpp:296
+#: Source/Core/DolphinQt/MainWindow.cpp:298
msgid "Error occurred while loading some texture packs"
msgstr ""
-#: Source/Core/Core/NetPlayClient.cpp:1847
+#: Source/Core/Core/NetPlayClient.cpp:1851
msgid "Error processing codes."
msgstr ""
-#: Source/Core/Core/NetPlayClient.cpp:1819
+#: Source/Core/Core/NetPlayClient.cpp:1823
msgid "Error processing data."
msgstr ""
@@ -4341,11 +4461,11 @@ msgstr ""
msgid "Error reading file: {0}"
msgstr ""
-#: Source/Core/Core/NetPlayServer.cpp:1529
+#: Source/Core/Core/NetPlayServer.cpp:1533
msgid "Error synchronizing cheat codes!"
msgstr ""
-#: Source/Core/Core/NetPlayServer.cpp:1515
+#: Source/Core/Core/NetPlayServer.cpp:1519
msgid "Error synchronizing save data!"
msgstr ""
@@ -4416,7 +4536,7 @@ msgstr ""
msgid "Euphoria"
msgstr "Euphoria"
-#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:282
+#: Source/Core/DiscIO/Enums.cpp:24 Source/Core/DolphinQt/MenuBar.cpp:274
#: Source/Core/UICommon/NetPlayIndex.cpp:249
msgid "Europe"
msgstr ""
@@ -4445,11 +4565,11 @@ msgstr ""
msgid "Excluded: %1"
msgstr ""
-#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:73
+#: Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp:72
msgid "Excluded: 0"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:107
+#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:108
msgid "Exclusive Ubershaders"
msgstr ""
@@ -4497,14 +4617,14 @@ msgstr ""
msgid "Experimental"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:294
+#: Source/Core/DolphinQt/MenuBar.cpp:286
msgid "Export All Wii Saves"
msgstr "匯出全部 Wii 存檔"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:422
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:447
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:492
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:499
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:423
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:448
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:493
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:500
msgid "Export Failed"
msgstr ""
@@ -4512,42 +4632,42 @@ msgstr ""
msgid "Export Recording"
msgstr "匯出錄像"
-#: Source/Core/DolphinQt/MenuBar.cpp:753
+#: Source/Core/DolphinQt/MenuBar.cpp:745
msgid "Export Recording..."
msgstr "匯出錄像..."
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:437
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:438
msgid "Export Save File"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:454
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:455
msgid "Export Save Files"
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:470
+#: Source/Core/DolphinQt/GameList/GameList.cpp:473
msgid "Export Wii Save"
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:388
+#: Source/Core/DolphinQt/GameList/GameList.cpp:389
msgid "Export Wii Saves"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:117
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:118
msgid "Export as .&gcs..."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:118
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:119
msgid "Export as .&sav..."
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1133
+#: Source/Core/DolphinQt/MenuBar.cpp:1115
#, c-format
msgctxt ""
msgid "Exported %n save(s)"
msgstr ""
#: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:268
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:432
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:434
#: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuGeneral.cpp:47
msgid "Extension"
msgstr "擴充"
@@ -4560,7 +4680,7 @@ msgstr ""
msgid "Extension Motion Simulation"
msgstr ""
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:520
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:522
msgid "External"
msgstr ""
@@ -4568,35 +4688,35 @@ msgstr ""
msgid "External Frame Buffer (XFB)"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:271
+#: Source/Core/DolphinQt/MenuBar.cpp:263
msgid "Extract Certificates from NAND"
msgstr ""
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:268
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:269
msgid "Extract Entire Disc..."
msgstr ""
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:292
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:293
msgid "Extract Entire Partition..."
msgstr ""
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:299
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:300
msgid "Extract File..."
msgstr "提取檔案..."
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:241
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:242
msgid "Extract Files..."
msgstr ""
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:251
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:252
msgid "Extract System Data..."
msgstr ""
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:355
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:356
msgid "Extracting All Files..."
msgstr ""
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:356
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:357
msgid "Extracting Directory..."
msgstr ""
@@ -4606,7 +4726,7 @@ msgid "FD"
msgstr ""
#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:37
-#: Source/Core/DolphinQt/MenuBar.cpp:228
+#: Source/Core/DolphinQt/MenuBar.cpp:220
msgid "FIFO Player"
msgstr ""
@@ -4614,17 +4734,17 @@ msgstr ""
msgid "Failed loading XML."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:347
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:348
msgid ""
"Failed opening memory card:\n"
"%1"
msgstr ""
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:454
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:456
msgid "Failed to add this session to the NetPlay index: %1"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1669
+#: Source/Core/DolphinQt/MenuBar.cpp:1656
msgid "Failed to append to signature file '%1'"
msgstr ""
@@ -4632,11 +4752,11 @@ msgstr ""
msgid "Failed to claim interface for BT passthrough: {0}"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:574
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:676
msgid "Failed to clear Skylander!"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:575
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:677
msgid "Failed to clear the Skylander from slot(%1)!"
msgstr ""
@@ -4644,7 +4764,7 @@ msgstr ""
msgid "Failed to connect to Redump.org"
msgstr ""
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:981
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:983
msgid "Failed to connect to server: %1"
msgstr ""
@@ -4665,15 +4785,15 @@ msgstr ""
msgid "Failed to create DXGI factory"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:289
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:291
msgid "Failed to create Infinity file"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:678
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:798
msgid "Failed to create Skylander file!"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:679
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:799
msgid ""
"Failed to create Skylander file:\n"
"%1\n"
@@ -4689,7 +4809,7 @@ msgstr ""
msgid "Failed to delete NetPlay memory card. Verify your write permissions."
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:841
+#: Source/Core/DolphinQt/GameList/GameList.cpp:854
msgid "Failed to delete the selected file."
msgstr ""
@@ -4697,36 +4817,36 @@ msgstr ""
msgid "Failed to detach kernel driver for BT passthrough: {0}"
msgstr ""
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:343
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:346
msgid "Failed to download codes."
msgstr "下載代碼失敗。"
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:738
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:737
msgid "Failed to dump %1: Can't open file"
msgstr ""
-#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:745
+#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:744
msgid "Failed to dump %1: Failed to write to file"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:488
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:489
msgctxt ""
msgid "Failed to export %n out of %1 save file(s)."
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:576
+#: Source/Core/DolphinQt/GameList/GameList.cpp:584
msgid "Failed to export the following save files:"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1204
+#: Source/Core/DolphinQt/MenuBar.cpp:1190
msgid "Failed to extract certificates from NAND"
msgstr ""
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:384
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:386
msgid "Failed to extract file."
msgstr ""
-#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:261
+#: Source/Core/DolphinQt/Config/FilesystemWidget.cpp:262
msgid "Failed to extract system data."
msgstr ""
@@ -4741,29 +4861,29 @@ msgstr ""
msgid "Failed to find one or more D3D symbols"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:565
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:566
msgid "Failed to import \"%1\"."
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1109
+#: Source/Core/DolphinQt/MenuBar.cpp:1091
msgid ""
"Failed to import save file. Please launch the game once, then try again."
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1103
+#: Source/Core/DolphinQt/MenuBar.cpp:1085
msgid ""
"Failed to import save file. The given file appears to be corrupted or is not "
"a valid Wii save."
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1116
+#: Source/Core/DolphinQt/MenuBar.cpp:1098
msgid ""
"Failed to import save file. Your NAND may be corrupt, or something is "
"preventing access to files within it. Try repairing your NAND (Tools -> "
"Manage NAND -> Check NAND...), then import the save again."
msgstr ""
-#: Source/Core/DolphinQt/MainWindow.cpp:1108
+#: Source/Core/DolphinQt/MainWindow.cpp:1110
msgid "Failed to init core"
msgstr ""
@@ -4778,23 +4898,23 @@ msgstr ""
msgid "Failed to initialize renderer classes"
msgstr ""
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:204
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:205
msgid "Failed to install pack: %1"
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:619
-#: Source/Core/DolphinQt/MenuBar.cpp:1074
+#: Source/Core/DolphinQt/GameList/GameList.cpp:628
+#: Source/Core/DolphinQt/MenuBar.cpp:1056
msgid "Failed to install this title to the NAND."
msgstr ""
-#: Source/Core/DolphinQt/MainWindow.cpp:1594
+#: Source/Core/DolphinQt/MainWindow.cpp:1607
msgid ""
"Failed to listen on port %1. Is another instance of the NetPlay server "
"running?"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1321
-#: Source/Core/DolphinQt/MenuBar.cpp:1376
+#: Source/Core/DolphinQt/MenuBar.cpp:1307
+#: Source/Core/DolphinQt/MenuBar.cpp:1363
msgid "Failed to load RSO module at %1"
msgstr ""
@@ -4806,15 +4926,15 @@ msgstr ""
msgid "Failed to load dxgi.dll"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1608
+#: Source/Core/DolphinQt/MenuBar.cpp:1595
msgid "Failed to load map file '%1'"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:720
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:842
msgid "Failed to load the Skylander file!"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:721
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:843
msgid "Failed to load the Skylander file(%1)!\n"
msgstr ""
@@ -4828,8 +4948,12 @@ msgid ""
"update package."
msgstr ""
-#: Source/Core/DolphinQt/GBAWidget.cpp:576
-#: Source/Core/DolphinQt/MainWindow.cpp:1670
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:663
+msgid "Failed to modify Skylander!"
+msgstr ""
+
+#: Source/Core/DolphinQt/GBAWidget.cpp:578
+#: Source/Core/DolphinQt/MainWindow.cpp:1690
#: Source/Core/DolphinQt/RenderWidget.cpp:123
msgid "Failed to open '%1'"
msgstr ""
@@ -4856,40 +4980,40 @@ msgid ""
"Make sure there's an application assigned to open INI files."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:861
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:863
msgid "Failed to open file."
msgstr ""
-#: Source/Core/DolphinQt/MainWindow.cpp:1593
+#: Source/Core/DolphinQt/MainWindow.cpp:1606
msgid "Failed to open server"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:164
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:166
msgid "Failed to open the Infinity file!"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:165
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:167
msgid ""
"Failed to open the Infinity file(%1)!\n"
"File may already be in use on the base."
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:696
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:818
msgid "Failed to open the Skylander file!"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:697
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:819
msgid ""
"Failed to open the Skylander file(%1)!\n"
"File may already be in use on the portal."
msgstr ""
-#: Source/Core/DolphinQt/ConvertDialog.cpp:472
+#: Source/Core/DolphinQt/ConvertDialog.cpp:474
msgid "Failed to open the input file \"%1\"."
msgstr ""
-#: Source/Core/DiscIO/CompressedBlob.cpp:282 Source/Core/DiscIO/FileBlob.cpp:53
-#: Source/Core/DiscIO/WIABlob.cpp:2037
+#: Source/Core/DiscIO/CompressedBlob.cpp:287 Source/Core/DiscIO/FileBlob.cpp:58
+#: Source/Core/DiscIO/WIABlob.cpp:2043
msgid ""
"Failed to open the output file \"{0}\".\n"
"Check that you have permissions to write the target folder and that the "
@@ -4909,35 +5033,35 @@ msgstr ""
msgid "Failed to read DFF file."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:863
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:865
msgid "Failed to read from file."
msgstr ""
-#: Source/Core/DiscIO/CompressedBlob.cpp:373 Source/Core/DiscIO/FileBlob.cpp:93
-#: Source/Core/DiscIO/WIABlob.cpp:2052
+#: Source/Core/DiscIO/CompressedBlob.cpp:378 Source/Core/DiscIO/FileBlob.cpp:98
+#: Source/Core/DiscIO/WIABlob.cpp:2058
msgid "Failed to read from the input file \"{0}\"."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:423
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:641
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:424
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:642
msgid "Failed to read selected savefile(s) from memory card."
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:173
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:175
msgid "Failed to read the Infinity file!"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:174
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:176
msgid ""
"Failed to read the Infinity file(%1)!\n"
"File was too small."
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:706
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:828
msgid "Failed to read the Skylander file!"
msgstr ""
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:707
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:829
msgid ""
"Failed to read the Skylander file(%1)!\n"
"File was too small."
@@ -4947,18 +5071,18 @@ msgstr ""
msgid "Failed to read {0}"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:668
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:669
msgid "Failed to remove file."
msgstr ""
-#: Source/Core/DolphinQt/ConvertDialog.cpp:453
+#: Source/Core/DolphinQt/ConvertDialog.cpp:455
msgid ""
"Failed to remove junk data from file \"%1\".\n"
"\n"
"Would you like to convert it without removing junk data?"
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:647
+#: Source/Core/DolphinQt/GameList/GameList.cpp:658
msgid "Failed to remove this title from the NAND."
msgstr ""
@@ -4974,27 +5098,34 @@ msgstr ""
msgid "Failed to reset NetPlay redirect folder. Verify your write permissions."
msgstr ""
-#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:241
+#: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:237
msgid "Failed to save FIFO log."
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1598
+#: Source/Core/DolphinQt/MenuBar.cpp:1585
msgid "Failed to save code map to path '%1'"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1642
+#: Source/Core/DolphinQt/MenuBar.cpp:1629
msgid "Failed to save signature file '%1'"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1621
+#: Source/Core/DolphinQt/MenuBar.cpp:1608
msgid "Failed to save symbol map to path '%1'"
msgstr ""
-#: Source/Core/DolphinQt/MenuBar.cpp:1723
+#: Source/Core/DolphinQt/MenuBar.cpp:1710
msgid "Failed to save to signature file '%1'"
msgstr ""
-#: Source/Core/DolphinQt/ResourcePackManager.cpp:225
+#: Source/Core/Core/Core.cpp:548
+msgid ""
+"Failed to sync SD card with folder. All changes made this session will be "
+"discarded on next boot if you do not manually re-issue a resync in Config > "
+"Wii > SD Card Settings > Convert File to Folder Now!"
+msgstr ""
+
+#: Source/Core/DolphinQt/ResourcePackManager.cpp:226
msgid "Failed to uninstall pack: %1"
msgstr ""
@@ -5014,9 +5145,9 @@ msgstr ""
msgid "Failed to write config file!"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:573
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:676
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:691
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:574
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:677
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:692
msgid "Failed to write modified memory card to disk."
msgstr ""
@@ -5024,33 +5155,33 @@ msgstr ""
msgid "Failed to write redirected save."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:447
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:448
msgid "Failed to write savefile to disk."
msgstr ""
-#: Source/Core/DiscIO/CompressedBlob.cpp:377 Source/Core/DiscIO/FileBlob.cpp:99
-#: Source/Core/DiscIO/WIABlob.cpp:2056
+#: Source/Core/DiscIO/CompressedBlob.cpp:382
+#: Source/Core/DiscIO/FileBlob.cpp:104 Source/Core/DiscIO/WIABlob.cpp:2062
msgid ""
"Failed to write the output file \"{0}\".\n"
"Check that you have enough space available on the target drive."
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:617
-#: Source/Core/DolphinQt/GameList/GameList.cpp:645
-#: Source/Core/DolphinQt/GameList/GameList.cpp:840
-#: Source/Core/DolphinQt/MenuBar.cpp:1074
+#: Source/Core/DolphinQt/GameList/GameList.cpp:626
+#: Source/Core/DolphinQt/GameList/GameList.cpp:656
+#: Source/Core/DolphinQt/GameList/GameList.cpp:853
+#: Source/Core/DolphinQt/MenuBar.cpp:1056
msgid "Failure"
msgstr ""
-#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:183
+#: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:184
msgid "Fair Input Delay"
msgstr ""
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:199
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:200
msgid "Fallback Region"
msgstr ""
-#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:210
+#: Source/Core/DolphinQt/Settings/GeneralPane.cpp:211
msgid "Fallback Region:"
msgstr ""
@@ -5074,17 +5205,21 @@ msgstr ""
msgid "Field of View"
msgstr ""
-#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:233
+#: Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp:235
msgid "Figure Number:"
msgstr ""
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:380
+msgid "Figure type"
+msgstr ""
+
#: Source/Core/DolphinQt/Config/InfoWidget.cpp:46
msgid "File Details"
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:991
+#: Source/Core/DolphinQt/GameList/GameList.cpp:1005
#: Source/Core/DolphinQt/GameList/GameListModel.cpp:229
-#: Source/Core/DolphinQt/MenuBar.cpp:652
+#: Source/Core/DolphinQt/MenuBar.cpp:644
msgid "File Format"
msgstr ""
@@ -5096,20 +5231,20 @@ msgstr ""
msgid "File Info"
msgstr "檔案資訊"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:986
+#: Source/Core/DolphinQt/GameList/GameList.cpp:1000
#: Source/Core/DolphinQt/GameList/GameListModel.cpp:223
-#: Source/Core/DolphinQt/MenuBar.cpp:647
+#: Source/Core/DolphinQt/MenuBar.cpp:639
msgid "File Name"
msgstr "檔案名稱"
-#: Source/Core/DolphinQt/GameList/GameList.cpp:987
+#: Source/Core/DolphinQt/GameList/GameList.cpp:1001
#: Source/Core/DolphinQt/GameList/GameListModel.cpp:225
-#: Source/Core/DolphinQt/MenuBar.cpp:648
+#: Source/Core/DolphinQt/MenuBar.cpp:640
msgid "File Path"
msgstr ""
-#: Source/Core/DolphinQt/GameList/GameList.cpp:990
-#: Source/Core/DolphinQt/MenuBar.cpp:651
+#: Source/Core/DolphinQt/GameList/GameList.cpp:1004
+#: Source/Core/DolphinQt/MenuBar.cpp:643
msgid "File Size"
msgstr "檔案大小"
@@ -5117,15 +5252,15 @@ msgstr "檔案大小"
msgid "File Size:"
msgstr ""
-#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:349
+#: Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp:352
msgid "File contained no codes."
msgstr "檔案未含有代碼。"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:149
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:150
msgid "Filename"
msgstr ""
-#: Source/Core/DiscIO/CompressedBlob.cpp:289
+#: Source/Core/DiscIO/CompressedBlob.cpp:294
msgid "Files opened, ready to compress."
msgstr "檔案已開啟, 準備壓縮。"
@@ -5135,11 +5270,11 @@ msgid ""
"{1}"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:833
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:835
msgid "Filesize does not match any known GameCube Memory Card size."
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:836
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:838
msgid "Filesize in header mismatches actual card size."
msgstr ""
@@ -5147,7 +5282,7 @@ msgstr ""
msgid "Filesystem"
msgstr "檔案系統"
-#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:102
+#: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:103
msgid "Filters"
msgstr ""
@@ -5163,7 +5298,7 @@ msgstr ""
msgid "Finish Calibration"
msgstr ""
-#: Source/Core/DolphinQt/WiiUpdate.cpp:109
+#: Source/Core/DolphinQt/WiiUpdate.cpp:110
msgid ""
"Finishing the update...\n"
"This can take a while."
@@ -5171,19 +5306,19 @@ msgstr ""
#. i18n: One of the elements in the Skylanders games. Japanese: 火. For official translations
#. in other languages, check the SuperChargers manual at https://support.activision.com/manuals
-#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:333
+#: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:349
msgid "Fire"
msgstr ""
-#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:40
+#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:41
msgid "First Person"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:127
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:128
msgid "Fix Checksums"
msgstr "修正校驗"
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:690
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:691
msgid "Fix Checksums Failed"
msgstr ""
@@ -5193,7 +5328,7 @@ msgstr ""
#. i18n: These are the kinds of flags that a CPU uses (e.g. carry),
#. not the kinds of flags that represent e.g. countries
-#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:166
+#: Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp:167
#: Source/Core/DolphinQt/Debugger/JITWidget.cpp:87
msgid "Flags"
msgstr ""
@@ -5202,12 +5337,12 @@ msgstr ""
#. i18n: Floating-point (non-integer) number
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:138
#: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:198
-#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:152
+#: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:153
#: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:97
msgid "Float"
msgstr ""
-#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:565
+#: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:566
msgid "Follow &branch"
msgstr ""
@@ -5227,35 +5362,35 @@ msgid ""
"\">refer to this page
."
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:57
+#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:58
msgid "Force 16:9"
msgstr "強制 16:9"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:117
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:152
msgid "Force 24-Bit Color"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:57
+#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:58
msgid "Force 4:3"
msgstr "強制 4:3"
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:96
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:115
msgid "Force Linear"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:103
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:122
msgid "Force Linear and 16x Anisotropic"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:97
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:116
msgid "Force Linear and 2x Anisotropic"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:99
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:118
msgid "Force Linear and 4x Anisotropic"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:101
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:120
msgid "Force Linear and 8x Anisotropic"
msgstr ""
@@ -5263,7 +5398,7 @@ msgstr ""
msgid "Force Listen Port:"
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:95
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:114
msgid "Force Nearest"
msgstr ""
@@ -5275,7 +5410,7 @@ msgstr ""
msgid "Forced on because %1 doesn't support geometry shaders."
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:474
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:556
msgid ""
"Forces the game to output graphics for any aspect ratio. Use with \"Aspect "
"Ratio\" set to \"Force 16:9\" to force 4:3-only games to run at 16:9."
@@ -5285,7 +5420,7 @@ msgid ""
""
msgstr ""
-#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:503
+#: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:585
msgid ""
"Forces the game to render the RGB color channels in 24-bit, thereby "
"increasing quality by reducing color banding.
Has no impact on "
@@ -5293,7 +5428,7 @@ msgid ""
"unsure, leave this checked."
msgstr ""
-#: Source/Core/DolphinQt/ConvertDialog.cpp:59
+#: Source/Core/DolphinQt/ConvertDialog.cpp:60
msgid "Format:"
msgstr ""
@@ -5359,19 +5494,19 @@ msgstr ""
msgid "France"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:311
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:312
msgid "Free Blocks: %1"
msgstr ""
-#: Source/Core/DolphinQt/GCMemcardManager.cpp:312
+#: Source/Core/DolphinQt/GCMemcardManager.cpp:313
msgid "Free Files: %1"
msgstr ""
-#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:42
+#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:43
msgid "Free Look Control Type"
msgstr ""
-#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:468
+#: Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp:470
msgid "Free Look Controller %1"
msgstr ""
@@ -5379,7 +5514,7 @@ msgstr ""
msgid "Free Look Settings"
msgstr ""
-#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:54
+#: Source/Core/DolphinQt/Config/FreeLookWidget.cpp:55
msgid ""
"Free Look allows for manipulation of the in-game camera. Different camera "
"types are available from the dropdown.